@charset "UTF-8";
/*!
team member > interview-header
------------------------------
*/
.interview-header__content {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  max-width: 1080px;
  width: 100%;
  margin: var(--space-120) auto;
}
.interview-header__photo {
  position: relative;
  max-width: 100%;
  width: clamp(400px, 46.66vw, 560px);
  margin-right: 40px;
  z-index: 1;
}
.interview-header__photo::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  max-width: 100%;
  width: calc(clamp(400px, 46.66vw, 560px) - 40px);
  height: calc(clamp(400px, 46.66vw, 560px) - 40px);
  background-color: var(--color-main);
  z-index: -1;
}
.interview-header__text {
  flex-grow: 0;
  max-width: 100%;
  width: clamp(400px, 46.66vw, 560px);
  height: auto;
  margin-top: var(--space-120);
  padding: clamp(24px, 3.33vw, 40px);
  border-radius: 4px;
  border: 1px solid var(--color-gray-3);
  background-color: var(--color-base);
  box-shadow: 0px 1px 4px 0px rgba(122, 150, 205, 0.08);
  transform: translate(40px, 40px);
  z-index: 2;
}
.interview-header__text h2 {
  margin-bottom: 8px;
  font-weight: bold;
  font-size: clamp(2rem, 6.25vw, 3rem);
}
.interview-header__text h2 span {
  font-size: clamp(1.25rem, 3.13vw, 1.5rem);
}
.interview-header__text h3 {
  margin-bottom: 8px;
  font-size: clamp(1.25rem, 3.13vw, 1.5rem);
}

/* lg */
@media (max-width: 1279px) {}

/* md */
@media (max-width: 959px) {}

/* sm */
@media (max-width: 767px) {
  .interview-header__content {
    flex-direction: column;
    row-gap: 40px;
  }
  .interview-header__photo {
    max-width: 90%;
    margin: 0 auto;
  }
  .interview-header__photo::after {
    bottom: -16px;
    right: -16px;
    height: 300px;
  }
  .interview-header__text {
    width: calc(100% - 32px);
    margin: 0 16px;
    transform: translate(0, 0);
  }
}

/* xs */
@media (max-width: 567px) {
  .interview-header__text h2,
  .interview-header__text h3 {
    text-align: center;
  }
}

/* xxs */
@media (max-width: 427px) {}


/*!
team member > content
------------------------------
*/
.content {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-80) 0;
  background: linear-gradient(180deg, #A1C4FD -24.63%, #C2E9FB 103.06%);
}
.content-card {
  display: flex;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  background-color: var(--color-base);
}
.content-card._reverse {
  flex-direction: row-reverse;
}
.content-card + .content-card {
  margin-top: 40px;
}
.content-card__photo {
  flex-shrink: 0;
  width: clamp(400px, 46.66vw, 560px);
  height: 440px;
}
.content-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-card__text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 32px 24px;
  background-color: var(--color-base);
}
.no-photo.content-card {
  background-color: transparent;
}
.no-photo.content-card::after {
  content: "";
  flex-shrink: 0;
  width: clamp(400px, 46.66vw, 560px);
  height: 440px;
}
.content-card__text h3 {
  margin-bottom: 16px;
  font-weight: bold;
  font-size: clamp(1.25rem, 4.16vw, 2rem);
}
.content-card__text p {
  font-size: clamp(1.125rem, 2.6vw, 1.25rem);
  line-height: 1.8;
}

/* lg */
@media (max-width: 1279px) {}

/* md */
@media (max-width: 959px) {}

/* sm */
@media (max-width: 767px) {
  .content-card,
  .content-card._reverse {
    flex-direction: column;
  }
  .content-card__photo {
    width: 100%;
    padding: 24px 16px;
  }
  .no-photo.content-card::after {
    height: 0;
  }
  .no-photo .content-card__text {
    padding-top: 24px;
  }
}

/* xs */
@media (max-width: 567px) {}

/* xxs */
@media (max-width: 427px) {}


/*!
team member > other-interview
------------------------------
*/
.other-interview {
  padding: var(--space-120) 16px;
}
.other-interview__list {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.other-interview__list > a {
  max-width: 100%;
  width: 480px;
  height: 300px;
}
.interview-card {
  position: relative;
}
.interview-card__photo img {
  height: 300px;
  object-fit: cover;
}
.interview-card__title {
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: calc(100% - 48px);
  transform: translate(-50%, 50%);
}
.interview-card__title span:first-child {
  border-right: none;
  font-size: clamp(0.875rem, 1.3vw, 1rem);
}
.interview-card__title span:nth-child(2) {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}

/* lg */
@media (max-width: 1279px) {}

/* md */
@media (max-width: 959px) {}

/* sm */
@media (max-width: 767px) {
  .other-interview__list {
    flex-direction: column;
    align-items: center;
    row-gap: 80px;
  }
  .interview-card__title {
    flex-direction: column;
    gap: 8px;
  }
}

/* xs */
@media (max-width: 567px) {}

/* xxs */
@media (max-width: 427px) {}