@charset "UTF-8";
/**************************************************************
* A (more) Modern CSS Reset
*
* Published: 18 September 2023
* https://piccalil.li/blog/a-more-modern-css-reset/
*
* update: 全スタイルに:where()を追記
*
**************************************************************/
/* Box sizing rules */
:where(*,
*::before,
*::after) {
  box-sizing: border-box;
}

/* Prevent font size inflation */
:where(html) {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
:where(body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd) {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
:where(ul[role=list],
ol[role=list]) {
  list-style: none;
}

/* Set core body defaults */
:where(body) {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
/*:where(h1, h2, h3, h4,
button, input, label) {
  line-height: 1.1;
}*/
/* Balance text wrapping on headings */
/*:where(h1, h2, h3, h4) {
  text-wrap: balance;
}*/
/* A elements that don't have a class get default styles */
:where(a:not([class])) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
:where(img,
picture) {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
:where(input, button,
textarea, select) {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
:where(textarea:not([rows])) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:where(:target) {
  scroll-margin-block: 5ex;
}

/* 全てのリストのスタイルをリセット */
:where(ul, ol) {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

/* 全てのaタグの装飾をリセット */
:where(a) {
  color: inherit;
  text-decoration: none;
}

/* ボタン・フォーム要素のリセット */
:where(button, input, select, textarea) {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  appearance: none;
  outline: none;
  font: inherit;
  color: inherit;
}

/* テーブルのリセット */
:where(table) {
  border-collapse: collapse;
  width: 100%;
}

:where(th, td) {
  padding: 0;
  text-align: left;
}

/* ミックスイン */
/* 関数 */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.u-text-gradation {
  background: linear-gradient(90deg, #D10C72 0%, #FE393A 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.u-parentheses {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}
.u-parentheses::before, .u-parentheses::after {
  content: "";
  width: 18px;
  height: 2.5px;
  background-color: #D10C72;
  transform-origin: center center;
}
.u-parentheses::before {
  transform: translateY(-50%) rotate(60deg);
}
.u-parentheses::after {
  transform: translateY(-50%) rotate(-60deg);
}

.u-fs-14 {
  font-size: 0.875rem;
}

.u-fs-12 {
  font-size: 0.75rem;
}

.u-mb-block {
  display: none;
}
@media (max-width: 768px) {
  .u-mb-block {
    display: block;
  }
}

.u-grid--2col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  align-items: stretch;
  gap: 40px;
}
@media (max-width: 768px) {
  .u-grid--2col {
    gap: 20px;
  }
}

.u-grid--2col > * {
  align-self: stretch;
}

.u-grid--1col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.u-icon-blank::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url("../../assets/images/common/icon/blank.svg") no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  margin-left: 0.5em;
  margin-right: 0.5em;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.u-flex {
  display: flex;
}

.u-inline-flex {
  display: inline-flex;
}

.u-flex-row {
  flex-direction: row;
}

.u-flex-row-reverse {
  flex-direction: row-reverse;
}

.u-flex-col {
  flex-direction: column;
}

.u-flex-col-reverse {
  flex-direction: column-reverse;
}

.u-flex-wrap {
  flex-wrap: wrap;
}

.u-flex-nowrap {
  flex-wrap: nowrap;
}

.u-flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.u-justify-start {
  justify-content: flex-start;
}

.u-justify-center {
  justify-content: center;
}

.u-justify-end {
  justify-content: flex-end;
}

.u-justify-between {
  justify-content: space-between;
}

.u-justify-around {
  justify-content: space-around;
}

.u-justify-evenly {
  justify-content: space-evenly;
}

.u-items-start {
  align-items: flex-start;
}

.u-items-center {
  align-items: center;
}

.u-items-end {
  align-items: flex-end;
}

.u-items-baseline {
  align-items: baseline;
}

.u-items-stretch {
  align-items: stretch;
}

.u-content-start {
  align-content: flex-start;
}

.u-content-center {
  align-content: center;
}

.u-content-end {
  align-content: flex-end;
}

.u-content-between {
  align-content: space-between;
}

.u-content-around {
  align-content: space-around;
}

.u-content-stretch {
  align-content: stretch;
}

.u-flex-1 {
  flex: 1 1 0%;
}

.u-flex-auto {
  flex: auto;
}

.u-flex-initial {
  flex: initial;
}

.u-flex-none {
  flex: none;
}

.u-self-auto {
  align-self: auto;
}

.u-self-start {
  align-self: flex-start;
}

.u-self-center {
  align-self: center;
}

.u-self-end {
  align-self: flex-end;
}

.u-self-stretch {
  align-self: stretch;
}

.u-p-0 {
  padding: 0px !important;
}

.u-p-4 {
  padding: 4px !important;
}

.u-p-8 {
  padding: 8px !important;
}

.u-p-16 {
  padding: 16px !important;
}

.u-p-24 {
  padding: 24px !important;
}

.u-p-32 {
  padding: 32px !important;
}

.u-py-4 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.u-py-8 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.u-py-16 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.u-py-24 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.u-py-32 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.u-px-4 {
  padding-left: 4px !important;
  padding-right: 4px !important;
}

.u-px-8 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.u-px-16 {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.u-px-24 {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.u-px-32 {
  padding-left: 32px !important;
  padding-right: 32px !important;
}

.u-pt-4 {
  padding-top: 4px !important;
}

.u-pt-8 {
  padding-top: 8px !important;
}

.u-pt-16 {
  padding-top: 16px !important;
}

.u-pt-24 {
  padding-top: 24px !important;
}

.u-pt-32 {
  padding-top: 32px !important;
}

.u-pt-160 {
  padding-top: 160px !important;
}

.u-pb-4 {
  padding-bottom: 4px !important;
}

.u-pb-8 {
  padding-bottom: 8px !important;
}

.u-pb-16 {
  padding-bottom: 16px !important;
}

.u-pb-24 {
  padding-bottom: 24px !important;
}

.u-pb-32 {
  padding-bottom: 32px !important;
}

.u-pb-80 {
  padding-bottom: 80px !important;
}

.u-pb-160 {
  padding-bottom: 160px !important;
}

.u-pl-4 {
  padding-left: 4px !important;
}

.u-pl-8 {
  padding-left: 8px !important;
}

.u-pl-16 {
  padding-left: 16px !important;
}

.u-pl-24 {
  padding-left: 24px !important;
}

.u-pl-32 {
  padding-left: 32px !important;
}

.u-pr-4 {
  padding-right: 4px !important;
}

.u-pr-8 {
  padding-right: 8px !important;
}

.u-pr-16 {
  padding-right: 16px !important;
}

.u-pr-24 {
  padding-right: 24px !important;
}

.u-pr-32 {
  padding-right: 32px !important;
}

.u-color-primary {
  color: #D10C72 !important;
}

.u-bg-thin-light-pink {
  background-color: #FFE6F3 !important;
}

.u-bg-gray {
  background-color: #F7F7F7 !important;
}

.u-bg-yellow {
  background-color: #F3F2C6 !important;
}

.u-bg-white {
  background-color: #fff !important;
}

.u-bg-secondary {
  background: linear-gradient(90deg, #D10C72 0%, #FE393A 60%) !important;
}

.u-bg-gradation-green {
  background: linear-gradient(90deg, #0CB2BA 0%, #0FE874 100%) !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", Futura, Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

h1 {
  font-size: 3.375rem;
}

h2 {
  font-size: 2.875rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 2rem;
}
@media (max-width: 768px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  position: relative;
  font-size: 1.625rem;
  padding-left: 12px;
}
h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 30px;
  background: linear-gradient(90deg, #D10C72 0%, #FE393A 60%);
}
@media (max-width: 768px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  h5 {
    font-size: 18px;
  }
}

h6 {
  font-size: 1rem;
  background-color: #F2F2F2;
  padding: 10px;
}

p {
  font-size: 1rem;
  line-height: 2;
}

a {
  color: #D10C72;
  transition: opacity 0.3s;
  text-decoration: underline;
  cursor: pointer !important;
}
a:hover {
  opacity: 0.6;
}

b {
  display: block;
  font-weight: normal;
  font-size: 0.75rem;
  margin-top: 10px;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  line-height: 1;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none;
}

hr {
  border-top: 0.5px solid #E8E8E8;
  margin: 40px 0;
}

en {
  font-family: Futura;
}

picture {
  margin-bottom: 40px;
}

.js-accordion__trigger {
  cursor: pointer;
}

.js-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}

.js-accordion__item.is-open .js-accordion__content {
  max-height: 1000px;
}

/* fade-in effect */
:root {
  --fade-duration: 0.8s;
  --fade-delay: 0s;
}

.js-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--fade-duration) ease-out var(--fade-delay), transform var(--fade-duration) ease-out var(--fade-delay);
}

.section__title--visible {
  opacity: 1;
  transform: translateY(0);
}

.c-primary-button {
  max-width: 328px;
  background: linear-gradient(90deg, #D10C72 0%, #FE393A 60%, #FE393A 60%, #D10C72 100%);
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  padding: 20px;
  height: 62px;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-position 0.3s ease;
  background-size: 200% 100%;
  background-position: left center;
}
@media (max-width: 768px) {
  .c-primary-button {
    max-width: 100%;
  }
}
.c-primary-button:hover, .c-primary-button:focus {
  opacity: 1;
  background-position: right center;
}

.c-secondary-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 0;
  transition: color 0.3s ease, filter 0.3s ease;
  opacity: 1 !important;
  background: #fff;
  color: #D10C72;
  font-size: 0.875rem;
  font-weight: bold;
  padding: 0 20px;
  height: 62px;
  border-radius: 999px;
  text-decoration: none;
}
.c-secondary-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #D10C72;
  transition: width 0.3s ease;
  z-index: -1;
}
.c-secondary-button::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  background: url("../../assets/images/common/icon/blank.svg") no-repeat center/contain;
  transition: filter 0.3s ease;
  z-index: 0;
}
.c-secondary-button:hover, .c-secondary-button:focus {
  color: #fff !important;
  opacity: 1 !important;
}
.c-secondary-button:hover::before, .c-secondary-button:focus::before {
  width: 100%;
}
.c-secondary-button:hover::after, .c-secondary-button:focus::after {
  filter: brightness(0) invert(1);
}

.c-naked-button {
  color: #333 !important;
  text-decoration: none !important;
}
.c-naked-button::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  background: url("../../assets/images/common/icon/right-arrow.svg") no-repeat center/contain;
  transition: filter 0.3s ease;
  z-index: 0;
}

.c-profile-card {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 768px) {
  .c-profile-card {
    flex-direction: column;
    padding: 20px 20px 80px;
    align-items: center;
  }
}
.c-profile-card__head {
  display: flex;
  margin-bottom: 16px;
}
.c-profile-card__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  margin-right: 16px;
}
@media (max-width: 768px) {
  .c-profile-card__avatar {
    width: 100px;
    height: 100px;
  }
}
.c-profile-card__info {
  display: flex;
  flex-direction: column;
}
.c-profile-card__name {
  font-size: 1.625rem;
  font-weight: bold;
  color: #31C1A6;
}
.c-profile-card__role {
  font-size: 0.875rem;
  color: #333;
  padding: 8px;
}
.c-profile-card__topic {
  font-size: 1.25rem;
  font-weight: bold;
}
.c-profile-card__catch {
  font-weight: bold;
}
.c-profile-card__list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0;
  flex: 1;
}
.c-profile-card__list li + li {
  margin-top: 8px;
}
.c-profile-card__corner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(90deg, #D10C72 0%, #FE393A 60%);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-profile-card__icon {
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  right: 10px;
  bottom: 11px;
}

.c-step-cards {
  display: flex;
  flex-direction: column;
  gap: 68px;
}
.c-step-cards > .c-step-card:nth-child(odd) .c-step-card__number {
  left: 40px;
}
.c-step-cards > .c-step-card:nth-child(even) .c-step-card__number {
  right: 40px;
}

.c-step-card {
  position: relative;
  display: flex;
  gap: 60px;
  min-width: 0;
}
@media (max-width: 768px) {
  .c-step-card {
    display: block;
  }
}
.c-step-card--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .c-step-card--reverse {
    flex-direction: column;
  }
}
.c-step-card__number {
  position: absolute;
  top: -100px;
  font-size: min(9.375vw, 7.5rem);
  font-weight: bold;
  font-family: Futura;
  background: linear-gradient(90deg, #D10C72 0%, #FE393A 60%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  z-index: 100;
}
@media (max-width: 768px) {
  .c-step-card__number {
    font-size: 60px;
    top: -50px;
  }
}
.c-step-card__media {
  position: relative;
  flex: 0 1 40%;
  max-width: 450px;
  min-width: 200px;
}
@media (max-width: 768px) {
  .c-step-card__media {
    max-width: 100%;
    min-width: 0;
  }
}
.c-step-card__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  position: relative;
  z-index: 2;
}
.c-step-card:nth-child(odd) .c-step-card__media {
  margin-right: 20px;
}
.c-step-card:nth-child(even) .c-step-card__media {
  margin-left: 20px;
}
.c-step-card:nth-child(odd) .c-step-card__media::before, .c-step-card:nth-child(even) .c-step-card__media::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 21.54453125vw;
  max-height: 277px;
  border-radius: 8px;
  z-index: 1;
  background: linear-gradient(90deg, #D10C72 0%, #FE393A 60%);
}
@media (max-width: 768px) {
  .c-step-card:nth-child(odd) .c-step-card__media::before, .c-step-card:nth-child(even) .c-step-card__media::before {
    max-height: none;
    height: 100%;
  }
}
.c-step-card:nth-child(odd) .c-step-card__media::before {
  left: 20px;
}
.c-step-card:nth-child(even) .c-step-card__media::before {
  left: -20px;
}
.c-step-card__content {
  flex: 1;
}
@media (max-width: 768px) {
  .c-step-card__content {
    margin-top: 40px;
  }
}
.c-step-card__text {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .c-step-card__text {
    margin-top: 10px;
  }
}

.c-related__info {
  padding-right: 80px;
  padding-left: 80px;
}
@media (max-width: 768px) {
  .c-related__info {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.c-related__info__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 60px 0;
}
.c-related__info__title {
  margin-bottom: 40px;
}
.c-related__info__title h5 {
  background: linear-gradient(90deg, #D10C72 0%, #FE393A 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-align: center;
}
.c-related__info__card {
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  .c-related__info__card {
    flex-direction: column;
  }
}
.c-related__info__card a {
  text-decoration: none !important;
}
.c-related__banner__inner {
  padding: 120px 0 80px;
}
@media (max-width: 768px) {
  .c-related__banner__inner {
    padding: 60px 0 40px;
  }
}
.c-related__banner__magazine {
  background-color: #FFF3F5;
  text-align: center;
  padding: 30px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .c-related__banner__magazine {
    margin-bottom: 40px;
  }
}
.c-related__banner__magazine a {
  text-decoration: underline;
}
.c-related__banner__images {
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  .c-related__banner__images {
    flex-direction: column;
  }
}
.c-related__banner__images__line {
  flex: 0 0 433px;
  max-width: 433px;
  width: 100%;
}
.c-related__banner__images__campus {
  flex: 0 0 677px;
  max-width: 677px;
  width: 100%;
}

.c-caption {
  font-size: 0.875rem;
  font-weight: bold;
  margin-top: 10px;
}

.c-faq__heading {
  margin-top: 80px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .c-faq__heading {
    margin-top: 40px;
  }
}
.c-faq .c-faq__heading:not(:first-of-type) {
  margin-top: 80px;
}
.c-faq__item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}
.c-faq__item.is-open .c-faq__question::after {
  content: "-";
}
.c-faq__item.is-open .c-faq__answer {
  max-height: 1000px;
}
.c-faq__item .c-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 30px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .c-faq__item .c-faq__question {
    padding: 15px 50px 15px 15px;
  }
}
.c-faq__item .c-faq__question::marker, .c-faq__item .c-faq__question::-webkit-details-marker {
  display: none;
}
.c-faq__item .c-faq__question__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 1rem;
}
.c-faq__item .c-faq__question__inner i {
  color: #B1AD06;
}
.c-faq__item .c-faq__answer {
  position: relative;
  max-height: 0;
  overflow: hidden;
  padding: 0 30px 0 58px;
  transition: max-height 0.3s ease;
}
@media (max-width: 768px) {
  .c-faq__item .c-faq__answer {
    padding: 0 30px 0 40px;
  }
}
.c-faq__item .c-faq__answer__inner {
  padding-bottom: 20px;
}
.c-faq__item .c-faq__answer__inner i {
  position: absolute;
  left: 30px;
  top: 4px;
  background: linear-gradient(90deg, #D10C72 0%, #FE393A 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-align: center;
}
@media (max-width: 768px) {
  .c-faq__item .c-faq__answer__inner i {
    left: 15px;
    top: 0.35em;
  }
}
.c-faq__item .c-faq__answer__inner p {
  margin-bottom: 10px;
}
.c-faq__item i {
  font-style: normal;
  font-size: 1.625rem;
  font-family: Futura;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 768px) {
  .c-faq__item i {
    font-size: 20px;
    margin-bottom: -5px;
  }
}

.js-accordion__trigger {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.js-accordion__trigger::before, .js-accordion__trigger::after {
  content: "";
  position: absolute;
  background: #D10C72;
  transition: opacity 0.2s, transform 0.2s;
}
.js-accordion__trigger::before {
  top: 50%;
  right: 20px;
  width: 23px;
  height: 3px;
  transform: translateY(-50%);
}
.js-accordion__trigger::after {
  right: 30px;
  top: 50%;
  width: 3px;
  height: 23px;
  transform: translateY(-50%);
  opacity: 1;
}
.js-accordion__item.is-open .js-accordion__trigger::after {
  opacity: 0;
}

.c-bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 10px;
}
.c-bullet-list > li {
  position: relative;
  font-size: 1rem;
  padding-left: 16px;
  margin-bottom: 6px;
}
.c-bullet-list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  background: linear-gradient(90deg, #D10C72 0%, #FE393A 60%);
  border-radius: 50%;
}

.c-preference-list {
  margin-bottom: 40px;
}
.c-preference-list__item {
  display: grid;
  grid-template-columns: 367px 1fr;
  column-gap: 60px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
@media (max-width: 768px) {
  .c-preference-list__item {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.c-preference-list .c-preference-list__item:not(:first-of-type) {
  padding-top: 20px;
}
.c-preference-list__term {
  font-size: 1rem;
  font-weight: bold;
}
.c-preference-list__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.c-tag {
  display: inline-flex;
  padding: 2px 6px;
  font-size: 0.875rem;
  font-weight: bold;
  color: #fff;
  justify-content: center;
  align-items: center;
}
.c-tag--pink {
  background: #D10C72;
}
.c-tag--orange {
  background: #F25555;
}
.c-tag--green {
  background: #31C1A6;
}
.c-tag--yellow {
  background: #B1AD06;
}

.c-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 0;
}

.c-text ~ .c-text {
  margin-bottom: 20px;
}

.c-icon-title {
  display: flex;
  align-items: center;
}

.c-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .c-table {
    display: block;
    border: none;
  }
}
@media (max-width: 768px) {
  .c-table__row {
    display: block;
    border: 1px solid #D10C72;
    overflow: hidden;
  }
  .c-table__row:not(:first-child) {
    margin-top: -1px;
  }
}
.c-table__header, .c-table__cell {
  border: 1px solid #D10C72;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .c-table__header, .c-table__cell {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #D10C72;
    padding: 12px 16px;
  }
}
.c-table__header {
  width: max-content;
  max-width: 250px;
  text-align: center;
  background-color: #FFECF0;
  color: #D10C72;
  text-align: center;
  padding: 20px 30px;
  white-space: normal;
  overflow-wrap: break-word;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .c-table__header {
    width: auto;
    max-width: 100%;
    padding: 8px 16px 4px;
  }
}
.c-table__cell {
  padding: 20px;
}
@media (max-width: 768px) {
  .c-table__cell {
    padding: 4px 16px 12px;
  }
  .c-table__cell:last-child {
    border-bottom: none;
  }
}

.c-tag-list {
  background-color: #FF7592;
  padding: 40px;
  border-radius: 8px;
  color: #fff;
}
@media (max-width: 768px) {
  .c-tag-list {
    padding: 40px 20px;
  }
}
.c-tag-list__title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .c-tag-list__title {
    text-align: center;
  }
}
.c-tag-list__title .c-tag-list__icon {
  width: 32px;
  height: 32px;
}
.c-tag-list__items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.c-tag-list__item a.u-icon-blank {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background-color: #fff;
  color: #D10C72;
  font-size: 0.875rem;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  height: 40px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.c-tag-list__item a.u-icon-blank:hover, .c-tag-list__item a.u-icon-blank:focus {
  background: linear-gradient(90deg, #D10C72 0%, #FE393A 60%);
  color: #fff;
  opacity: 1;
}
.c-tag-list__item a.u-icon-blank:hover::after, .c-tag-list__item a.u-icon-blank:focus::after {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.c-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  z-index: 1000;
}
.c-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}
.c-modal__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
}
.c-modal__dialog {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 80px;
  max-width: 960px;
  width: 90%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  z-index: 1001;
}
.c-modal__dialog.is-open .c-modal__dialog__dialog {
  transform: scale(1);
}
@media (max-width: 768px) {
  .c-modal__dialog {
    width: calc(100% - 15px);
    padding: 40px 20px;
  }
}
.c-modal__close {
  position: absolute;
  width: 23px;
  top: 55px;
  right: 14px;
  font-size: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
}
.c-modal__content {
  margin-top: 16px;
  overflow-y: auto;
  max-height: calc(80vh - 48px);
}
.c-modal__profile {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .c-modal__profile {
    flex-direction: column;
    align-items: center;
  }
}
.c-modal__profile__value {
  font-size: 1rem;
}
.c-modal__profile__corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(90deg, #D10C72 0%, #FE393A 60%);
  clip-path: polygon(0 0, 100% 100%, 100% 0);
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-modal__profile__corner__icon {
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  right: 10px;
  bottom: 11px;
}
.c-modal__profile__avatar {
  flex: 1 1 0;
  width: 100%;
  max-width: 250px;
}
.c-modal__profile__avatar img {
  border-radius: 8px;
}
.c-modal__profile__content {
  flex: 1 1 0;
}
.c-modal__profile__title {
  margin-bottom: 10px;
  font-size: 1.375rem;
  line-height: 1.6;
  color: #31C1A6;
}
.c-modal__profile__name {
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: bold;
}
.c-modal__profile__separator {
  border: none;
  border-top: 1px solid #DDD;
  margin: 0 0 24px;
}
.c-modal__profile__details {
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-modal__profile__detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.c-modal__profile__detail:last-child {
  margin-bottom: 0;
}
.c-modal__profile__detail .c-modal__profile__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #31C1A6;
  font-size: 0.875rem;
  width: 64px;
  height: 28px;
  color: #FFF;
  font-weight: bold;
  white-space: nowrap;
  margin-right: 20px;
  flex-shrink: 0;
  line-height: 1;
}
.c-modal__profile__detail .c-modal__profile__value {
  flex: 1;
  line-height: 1.6;
  word-break: break-word;
}

.l-header {
  height: 60px;
}
.l-header__title {
  max-width: 198px;
}

.l-footer {
  color: #fff;
  background: linear-gradient(90deg, #D10C72 0%, #FE393A 60%);
  height: 60px;
}
.l-footer__copyright {
  text-align: center;
}
@media (max-width: 768px) {
  .l-footer__copyright {
    font-size: 10px;
  }
}

.p-block {
  padding-right: 80px;
  padding-left: 80px;
}
@media (max-width: 768px) {
  .p-block {
    padding-right: 15.5px;
    padding-left: 15.5px;
  }
}
.p-block__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.video-sp,
.video-pc,
.video-last-frame-sp,
.video-last-frame-pc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #fff;
}

.video-sp,
.video-pc {
  z-index: 2;
  opacity: 1;
  transition: opacity 0.5s ease;
  display: block;
}

.video-last-frame-sp,
.video-last-frame-pc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  display: none;
}

@media (max-width: 768px) {
  .video-pc {
    display: none;
  }
  .video-sp {
    display: block;
  }
  .video-last-frame-sp {
    display: block;
  }
}
@media (min-width: 1024px) {
  .video-sp {
    display: none;
  }
  .video-pc {
    display: block;
  }
  .video-last-frame-pc {
    display: block;
  }
}
.section-nav {
  position: sticky;
  top: 0;
  background: #fff;
  overflow-x: auto;
  width: 100%;
  padding: 0 8px;
  -webkit-overflow-scrolling: touch;
  min-height: 56px;
  z-index: 1000;
}
@media (max-width: 768px) {
  .section-nav {
    padding: 0 8px;
    min-height: 44px;
  }
}
.section-nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: max-content;
}
@media (min-width: 1024px) {
  .section-nav__list {
    padding-left: calc((100vw - 1120px) / 2);
  }
}
.section-nav__list .swiper-slide {
  width: auto !important;
  flex: 0 0 auto;
}
.section-nav__item,
.section-nav .swiper-slide {
  flex: 0 0 auto;
  width: auto;
  margin-right: 30px;
}
@media (max-width: 768px) {
  .section-nav__item,
  .section-nav .swiper-slide {
    margin-right: 1.2rem;
  }
}
.section-nav__item:last-child,
.section-nav .swiper-slide:last-child {
  margin-right: 0;
}
.section-nav__a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 0;
  white-space: nowrap;
  color: #333;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  transition: color 0.3s ease;
  border-bottom: 0.2rem solid transparent;
  text-decoration: none;
  height: 100%;
  text-align: center;
}
@media (max-width: 768px) {
  .section-nav__a {
    padding: 10px 0;
  }
}
.section-nav__a:hover {
  color: #D10C72;
  opacity: 1;
}
.section-nav__a.is-current {
  color: #D10C72;
  border-color: #D10C72;
}
.section-nav__a.is-current:hover {
  opacity: 1;
}
.section-nav__a:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 0.65rem;
  vertical-align: middle;
  background: url("../../assets/images/common/icon/arrow-circle-down.svg") no-repeat center center/contain;
}
@media (max-width: 768px) {
  .section-nav__a:after {
    width: 1.1rem;
    height: 1.1rem;
    margin-left: 0.3rem;
  }
}

.assist-nav {
  z-index: 1000;
  pointer-events: none;
}

.assist-nav__inner {
  pointer-events: auto;
}

.title-card {
  display: flex;
  gap: 56px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .title-card {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
.title-card__content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 40px;
}
@media (max-width: 768px) {
  .title-card__content {
    width: 100%;
  }
}
.title-card__content p {
  font-weight: bold;
}
.title-card__item {
  max-width: 703px;
}

.gradation-green-section .admission-policy__panel__head {
  background: linear-gradient(90deg, #0CB2BA 0%, #0FE874 100%) !important;
}
.gradation-green-section h4::before {
  background: linear-gradient(90deg, #0CB2BA 0%, #0FE874 100%) !important;
}

.future-design {
  padding: 120px 0 200px;
  margin-bottom: -80px;
}
@media (max-width: 768px) {
  .future-design {
    padding: 60px 0 140px;
    margin-bottom: -80px;
  }
}
.future-design__main {
  position: relative;
}
.future-design__copy {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .future-design__copy h2 {
    font-size: 30px;
    text-align: center;
  }
}
.future-design__img {
  position: absolute;
  max-width: 461px;
  width: 36.015625vw;
  right: 0;
  top: 50px;
  z-index: 2;
}
@media (max-width: 768px) {
  .future-design__img {
    max-width: 345px;
    width: 100%;
    position: initial;
    margin: 0 auto 40px;
  }
}
.future-design__primary-button {
  margin-bottom: 79px;
}
@media (max-width: 768px) {
  .future-design__primary-button {
    margin-bottom: 40px;
  }
}
.future-design__sns {
  display: flex;
  gap: 30px;
  font-weight: bold;
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .future-design__sns {
    gap: 10px;
    padding: 15px;
    flex-direction: column;
    align-items: center;
  }
}
.future-design__sns__links {
  display: flex;
  align-items: center;
  gap: 30px;
  border-left: solid 1px #D10C72;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .future-design__sns__links {
    gap: 30px;
    border: none;
    padding-left: 0;
  }
}
.future-design__button-group {
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  .future-design__button-group {
    flex-direction: column;
    max-width: 295px;
    margin: 0 auto;
  }
}

.demanded-learning {
  padding: 160px 0;
}
@media (max-width: 768px) {
  .demanded-learning {
    padding: 100px 0 90px;
  }
}
.demanded-learning .title-card {
  color: #fff;
}
@media (max-width: 768px) {
  .demanded-learning .title-card {
    position: relative;
    padding-bottom: 94.1333333333vw;
  }
}
.demanded-learning .title-card__item picture {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .demanded-learning .title-card__item picture {
    position: absolute;
    bottom: 40px;
    margin-right: 35%;
  }
}
.demanded-learning .title-card__img {
  max-width: 168px;
}
@media (max-width: 768px) {
  .demanded-learning .title-card__img {
    max-width: 100%;
    position: absolute;
    right: 15px;
    bottom: 70px;
    margin-left: 70%;
  }
}
.demanded-learning__head {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .demanded-learning__head {
    margin-bottom: 0;
  }
}
.demanded-learning__content {
  position: relative;
}
.demanded-learning__content .item-megaphone {
  position: absolute;
  width: 46.7px;
  left: 10px;
  top: -25px;
}
@media (max-width: 768px) {
  .demanded-learning__content .item-megaphone {
    width: 33px;
    top: -17px;
  }
}
.demanded-learning__panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .demanded-learning__panel {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
  }
}
.demanded-learning__panel__item {
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .demanded-learning__panel__item {
    padding: 20px;
  }
}
.demanded-learning__panel__item .icon-person-search {
  width: 31px;
}
@media (max-width: 768px) {
  .demanded-learning__panel__item .icon-person-search {
    width: 21.7px;
  }
}
.demanded-learning__panel__item .icon-briefcase {
  width: 37px;
}
@media (max-width: 768px) {
  .demanded-learning__panel__item .icon-briefcase {
    width: 25.9px;
  }
}
.demanded-learning__panel__item .icon-book-pencil {
  width: 36px;
}
@media (max-width: 768px) {
  .demanded-learning__panel__item .icon-book-pencil {
    width: 25.2px;
  }
}
.demanded-learning__panel__item h4 {
  padding-left: 8px;
}
.demanded-learning__panel__item h4::before {
  display: none;
}
.demanded-learning__panel__item h5 {
  color: #D10C72;
}
.demanded-learning--diagonal {
  background: #EC617E;
  clip-path: polygon(0 1%, 100% 0, 100% 99%, 0 100%);
}

.curriculum-features {
  padding: 100px 0 120px;
  position: relative;
}
@media (max-width: 768px) {
  .curriculum-features__head {
    margin-bottom: 73px;
  }
}
.curriculum-features .title-card__img {
  max-width: 250px;
}
.curriculum-features__item {
  position: absolute;
  width: 58px;
  left: 35px;
  bottom: -55px;
  z-index: 1;
}
@media (max-width: 768px) {
  .curriculum-features__item {
    width: 38px;
  }
}

.faculty-expertise {
  padding: 160px 0;
}
@media (max-width: 768px) {
  .faculty-expertise {
    padding: 100px 0 90px;
  }
}
.faculty-expertise .title-card {
  color: #fff !important;
  margin-bottom: 27px;
}
@media (max-width: 768px) {
  .faculty-expertise .title-card {
    margin-bottom: 40px;
  }
}
.faculty-expertise .title-card__img {
  max-width: 234px;
}
@media (max-width: 768px) {
  .faculty-expertise .title-card__img {
    max-width: 184px;
  }
}
.faculty-expertise--diagonal {
  background: #31C1A6;
  clip-path: polygon(0 1%, 100% 0, 100% 99%, 0 100%);
}

.alumni-ai {
  padding: 78px 0 120px;
}
.alumni-ai .title-card__img {
  max-width: 328px;
}
.alumni-ai__main {
  text-align: center;
  margin-top: 1em;
}
.alumni-ai__main p {
  letter-spacing: 0.25em;
  font-size: 18px;
}

.admission-policy {
  padding: 160px 0 160px;
}
@media (max-width: 768px) {
  .admission-policy {
    padding: 100px 0;
  }
}
.admission-policy__head {
  text-align: center;
  color: #fff;
  margin-bottom: 140px;
}
@media (max-width: 768px) {
  .admission-policy__head {
    margin-bottom: 40px;
  }
}
.admission-policy__main {
  display: grid;
  gap: 80px;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .admission-policy__main {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.admission-policy__panel {
  position: relative;
}
.admission-policy__panel__item {
  position: absolute;
}
.admission-policy__panel .item-design {
  width: 68px;
  left: 31px;
  top: -40px;
}
@media (max-width: 768px) {
  .admission-policy__panel .item-design {
    width: 48px;
    left: 12.37px;
    top: -23px;
  }
}
.admission-policy__panel .item-student-laptop {
  width: 119px;
  right: 52px;
  top: -50px;
}
@media (max-width: 768px) {
  .admission-policy__panel .item-student-laptop {
    width: 65px;
    right: 17px;
    top: -50px;
  }
}
.admission-policy__panel__head {
  width: 100%;
  color: #fff;
  padding: 20px 40px;
  border-radius: 8px 8px 0 0;
  transition: border-radius 0.1s;
}
@media (max-width: 768px) {
  .admission-policy__panel__head {
    padding: 20px;
  }
}
.admission-policy__panel__content {
  background-color: #fff;
  padding: 40px;
  border-radius: 0 0 8px 8px;
}
@media (max-width: 768px) {
  .admission-policy__panel__content {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .admission-policy__panel__content picture {
    margin-bottom: 30px;
  }
}
.admission-policy h5 {
  font-size: 1.375rem;
  line-height: 1.6;
  background: linear-gradient(90deg, #0CB2BA 0%, #0FE874 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.admission-policy--diagonal {
  background: #EC617E;
  clip-path: polygon(0 1%, 100% 0, 100% 99%, 0 100%);
}

.js-accordion__item:not(.is-open) .admission-policy__panel__head {
  border-radius: 8px;
}

.environment {
  padding: 140px 0;
}
@media (max-width: 768px) {
  .environment {
    padding: 60px 0;
  }
}
.environment .title-card__img {
  max-width: 178px;
}
.environment__head {
  margin-bottom: 105px;
}
.environment__hero {
  width: 100vw;
  position: relative;
  margin-left: -50vw;
  left: 50%;
  margin-right: -50vw;
  background: linear-gradient(90deg, #D10C72 0%, #FE393A 60%);
  color: #fff;
}
.environment__hero__kv {
  position: inherit;
  top: -60px;
  max-width: 1280px;
  padding-right: 80px;
  border-radius: 0 8px 8px 0;
}
@media (max-width: 768px) {
  .environment__hero__kv {
    padding-right: 25px;
  }
}
.environment__hero__kv img {
  object-fit: cover;
  border-radius: inherit;
}
.environment__hero__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1280px;
  padding: 20px 80px 40px;
  margin: 0 auto;
  margin-top: -60px;
}
@media (max-width: 768px) {
  .environment__hero__content {
    padding: 20px 15px 20px;
  }
}
.environment__hero__guides {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 768px) {
  .environment__hero__guides {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
}
.environment__hero__guides__label {
  justify-content: center;
  align-items: center;
  padding: 0 8px;
  font-size: 1.375rem;
  flex-shrink: 0;
  height: 41px;
  border: solid 1px #fff;
}
.environment__main {
  margin-top: 120px;
  display: grid;
  gap: 80px;
}
@media (max-width: 768px) {
  .environment__main {
    margin-top: 60px;
  }
}
.environment__profile {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .environment__profile {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
.environment__profile__aside {
  flex: 0 0 180px;
  text-align: center;
}
@media (max-width: 768px) {
  .environment__profile__aside {
    flex: none;
    max-width: 100px;
  }
}
.environment__profile__avatar {
  border-radius: 50%;
  object-fit: cover;
}
.environment__profile__name {
  margin-top: 10px;
  font-weight: bold;
}
.environment__profile__content {
  flex: 1 1 auto;
  min-width: 0;
}
.environment__profile__text {
  margin-bottom: 40px;
}
.environment__gallery {
  margin-bottom: 20px;
}
.environment__gallery img {
  border-radius: 8px;
}
.environment__gallery--grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .environment__gallery--grid2 {
    grid-template-columns: 1fr;
  }
}
.environment__gallery--grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .environment__gallery--grid3 {
    grid-template-columns: 1fr;
  }
}
.environment__summary-card {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  overflow: hidden;
  border-radius: 0.5rem;
  background: linear-gradient(90deg, #D10C72 0%, #FE393A 60%);
}
.environment__summary-card__aside {
  flex: 1 1 auto;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: #fff;
}
@media (max-width: 768px) {
  .environment__summary-card__aside {
    margin-bottom: 1rem;
  }
}
.environment__summary-card__person {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  gap: 20px;
}
.environment__summary-card__person img {
  width: 80px;
  border-radius: 100%;
}
.environment__summary-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.environment__summary-card__message {
  margin: 0;
  line-height: 1.4;
}
.environment__summary-card__message strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.environment__summary-card__image {
  flex: 1 1 50%;
  max-width: 640px;
  min-width: 200px;
  width: 100%;
  height: 100%;
}
@media (max-width: 900px) {
  .environment__summary-card__image {
    max-width: 100%;
    width: 100%;
    min-width: 0;
    height: auto;
  }
}
.environment__summary-card__image img {
  object-fit: cover;
  height: 100%;
}
@media (max-width: 768px) {
  .environment__summary-card__image img {
    height: auto;
  }
}

.qa {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .qa {
    padding: 60px 0 40px;
  }
}
.qa__head {
  text-align: center;
  color: #B1AD06;
  margin-bottom: 40px;
}
.qa i,
.qa en {
  font-family: Roboto;
}

.kv {
  background: linear-gradient(90deg, #D10C72 0%, #FE393A 60%);
  text-align: center;
  padding: 51px;
  color: #fff;
}
@media (max-width: 768px) {
  .kv {
    padding: 40px 15px;
  }
}
.kv h2 {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .kv h2 {
    font-size: 24px;
  }
}

.main-container {
  background-color: #FFF3F5;
  padding: 40px 0 200px;
}
@media (max-width: 768px) {
  .main-container {
    padding: 40px 0 100px;
  }
}

.c-company-card {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 613px;
  margin: 0 auto;
  gap: 20px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .c-company-card {
    padding: 15px;
    margin-bottom: 40px;
  }
}
.c-company-card__avatar {
  flex: 0 0 100px;
  width: 100%;
  max-width: 100px;
}
.c-company-card__avatar img {
  border-radius: 50%;
}
.c-company-card__body {
  flex: 1 1 0;
  min-width: 0;
}
.c-company-card__company {
  margin: 0;
  font-size: 1.25rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .c-company-card__company {
    font-size: 18px;
  }
}
.c-company-card__position {
  margin-top: 5px;
  font-size: 0.875rem;
}
.c-company-card__name {
  margin-top: 5px;
  font-weight: bold;
}
.c-company-card__name span {
  padding-left: 0.5em;
  font-weight: normal;
}

.interview {
  display: grid;
  gap: 80px;
}
@media (max-width: 768px) {
  .interview {
    gap: 40px;
  }
}
.interview__title {
  padding-left: 0;
  color: #D10C72;
}
.interview__title::before {
  display: none;
}
