@charset "UTF-8";



/* --- レイアウト：2カラムのフル幅ヒーロー --- */
.sInterviewHero {
  position: relative;
  display: grid;
  grid-template-columns: 44.6% 1fr;
  overflow: clip;
  aspect-ratio: 1280/530;
}

@media screen and (max-width: 540px) {
  .sInterviewHero {
    aspect-ratio: auto;
  }
}

.sInterviewHero__photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 570/530;
  object-fit: cover;
  object-position: 30% 50%;
  display: block;
}

/* 右：青パネル（背景＋装飾パターン） */
.sInterviewHero__panel {
  position: relative;
  background: url(../img/pages/interview/bg-pc.jpg);
  background-size: 100%;

}

@media screen and (max-width: 540px) {
  .sInterviewHero__panel {
    background: url(../img/pages/interview/bg-sp.jpg);
    background-size: cover;
  }
}

/* パネル内の余白＆幅 */
.sInterviewHero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 2.7rem;
  height: 100%;
}

@media screen and (max-width: 540px) {
  .sInterviewHero__inner {
    padding: 3.7rem 1.3rem 3.25rem 1.3rem;
  }
}

/* タイポ */
.sInterviewHero__eyebrow {
  position: absolute;
  top: 7.5%;
  left: 6.2%;
  margin: 0 0 .75rem;
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 500;
  letter-spacing: .06em;
  color: rgba(251, 251, 251, 0.30);
}

@media screen and (max-width: 540px) {
  .sInterviewHero__eyebrow {
    top: 22px;
    left: 20px;
    font-size: 0.8125rem;
  }
}

.sInterviewHero__title {
  margin-bottom: 2rem;
  width: clamp(300px, 43.5vw, 600px);
}

@media screen and (max-width: 540px) {
  .sInterviewHero__title {
    margin-bottom: 1.2rem;
    width: clamp(200px, 82.56vw, 500px);
  }
}


.sInterviewHero__meta {
  margin: 0 0 .75rem;
  opacity: .85;
  font-size: clamp(12px, 1.6vw, 14px);
  font-weight: 400;
  color: #FFF;
}

@media screen and (max-width: 540px) {
  .sInterviewHero__meta {
    color: #FBFBFB;
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}

.sInterviewHero__name {
  margin: .5rem 0 0;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  color: #FFF;
}

@media screen and (max-width: 540px) {
  .sInterviewHero__name {
    color: #FBFBFB;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}

/* 装飾パターン（紙飛行機シルエットなどを薄く） */
.sInterviewHero__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 80% 30%, rgba(255, 255, 255, .08), transparent 60%),
    url("/img/interview/pattern-planes.svg") center/70% no-repeat;
  /* 単色SVG推奨 */
  opacity: .35;
  /* 濃ければ下げる */
  pointer-events: none;
}

/* --- レスポンシブ：SPは上下に積む --- */
@media (max-width: 540px) {
  .sInterviewHero {
    grid-template-columns: 1fr;
  }


}


/*---------------------------------------------

	 リード

---------------------------------------------*/
.sInterviewRead {
  padding: 5.6875rem 0;
  text-align: center;
  font-weight: 350;
  line-height: 200%;
  background: #E4E9F3;
}

@media screen and (max-width: 540px) {
  .sInterviewRead {
    padding: 2rem 1.3rem;
    font-size: 0.8125rem;
    font-weight: 350;
    line-height: 170%;
    text-align: left;
  }
}

/*---------------------------------------------

	 リード

---------------------------------------------*/
.sInterviewBody {
  padding: 6.25rem 0;

}

@media screen and (max-width: 540px) {
  .sInterviewBody {
    padding: 3.75rem 0 2.3rem 0;
  }
}

.cMediaRow {
  display: flex;
  gap: 3rem;
}

@media screen and (max-width: 540px) {
  .cMediaRow {
    flex-direction: column;
    gap: 1.5rem;
  }
}

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

@media screen and (max-width: 540px) {
  .cMediaRow--reverse {
    flex-direction: column;
  }
}

.cMediaRow.offtime {
  gap: 3rem;
}

@media screen and (max-width: 540px) {
  .cMediaRow.offtime {
    flex-direction: column-reverse;
    gap: 1.5rem
  }
}

.cMediaRow__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.3rem;
  flex-basis: 50%;
}

@media screen and (max-width: 540px) {
  .cMediaRow__text {
    gap: 0.75rem
  }
}

.offtime .cMediaRow__text {
  flex-basis: 52%;
}

.cMediaRow__figure {
  flex: 1;
  grid-area: image;
  margin-right: calc(50% - 50vw);
}

@media screen and (max-width: 540px) {
  .cMediaRow__figure {
    margin-right: auto;
  }
}

.cMediaRow--reverse .cMediaRow__figure {
  margin-left: calc(50% - 50vw);
  margin-right: auto;
}


@media screen and (max-width: 540px) {
  .cMediaRow--reverse .cMediaRow__figure {
    margin-left: auto;
  }

}

.cMediaRow__figure img {
  aspect-ratio: 588/447;
  width: 100%;
  height: auto;
  object-fit: cover;
}


.cMediaRow__figure.cMediaRow__figure--contained {
  margin-right: auto;
}

@media screen and (max-width: 540px) {
  .cMediaRow__figure.cMediaRow__figure--contained {
    width: 81%;
    margin: 0 auto;
  }
}

.cMediaRow__figure.cMediaRow__figure--contained img {
  aspect-ratio: 373 / 382;
}


/* 体裁例（任意） */
.cEyebrow {
  display: flex;
  padding: 0.25rem 1rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue, #25599A);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 180%;
  /* 2.7rem */
  border: 1px solid var(--blue, #25599A);
}


@media screen and (max-width: 540px) {
  .cEyebrow {
    padding: 0.25rem 0.75rem;
    gap: 0.3rem;
    font-size: 0.8125rem;
  }
}

.cEyebrowIcon {
  width: 1.66588rem;
}

@media screen and (max-width: 540px) {
  .cEyebrowIcon {
    width: 1.26925rem;
  }
}

.cH2 {
  font-size: clamp(20px, 2.5vw, 32px);
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: -0.05rem;
}

@media screen and (max-width: 540px) {
  .cH2 {
    font-size: 1.3125rem;
  }
}

.sInterviewBody .sInterviewBody__text {
  font-weight: 350;
  line-height: 220%;
}

@media screen and (max-width: 540px) {
  .sInterviewBody p {
    line-height: 170%;
  }
}

@media screen and (max-width: 540px) {
  .cSectionPhoto img {
    aspect-ratio: 390 / 200;
    object-fit: cover;
  }
}

/*---------------------------------------------

	 メッセージ

---------------------------------------------*/
.sMessagePanel {
  padding-bottom: 6.25rem;
}

@media screen and (max-width: 540px) {
  .sMessagePanel {
    padding-bottom: 3.5rem;
  }
}

/* 見出し */
.sMessagePanel__title {
  margin-bottom: 2rem;
  font-size: clamp(22px, 2.1875vw, 28px);
  color: #000;
  text-align: center;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
}

@media screen and (max-width: 540px) {
  .sMessagePanel__title {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
  }
}

/* 紙面パネル */
.sMessagePanel__sheet {
  position: relative;
  margin-bottom: 5rem;
  background: #E4E9F3;
  padding: 5rem 4.7rem 5rem 4rem;
  overflow: hidden;
}

@media screen and (max-width: 540px) {
  .sMessagePanel__sheet {
    margin-bottom: 2.5rem;
    padding: 2rem 1.75rem 2.2rem 1.75rem;
  }
}

/* 左上のスタンプ（装飾） */
.sMessagePanel__stamp {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(150px, 13.6vw, 176px);
}

@media screen and (max-width: 540px) {
  .sMessagePanel__stamp {
    width: 5.65344rem;
  }
}

/* 段落の“点線仕切り” */
.sMessagePanel__body {
  text-align: justify;
}

.sMessagePanel__body p {
  position: relative;
  font-size: 0.875rem;
  font-weight: 350;
  line-height: 250%;
  background-color: #E4E9F3;
  /* 背景色 */
  background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #E4E9F3 50%, #E4E9F3 100%),
    /* 点線1の色 */
    linear-gradient(180deg, #000 0.5px, transparent 0.5px);
  /* 点線2の色と太さ */
  background-size: 2px 100%,
    /* 点線1のサイズ */
    100% 2.5em;
  /* 点線2のサイズ */
  line-height: 2.5em;
  /* 文字の高さ */
  padding-bottom: 1px;
  /* 最終行の下にも罫線を引く */
}

@media screen and (max-width: 540px) {
  .sMessagePanel__body p {
    font-size: 0.8125rem;
    line-height: 200%;
    background-color: #E4E9F3;
    /* 背景色 */
    background-image: none;
  }
}

.sMessagePanel__body p::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: -1px;
  background-color: #E4E9F3;
}

/*---------------------------------------------

	 その他の先輩を見る

---------------------------------------------*/

.sOtherMembers {
  padding: 6rem 0;
  background: #F0F3F8;
}

@media screen and (max-width: 540px) {
  .sOtherMembers {
    padding: 3.5rem 0;
  }

}

.sOtherMembers__title {
  position: relative;
  margin-bottom: 2.5rem;
  font-size: clamp(20px, 1.875vw, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}

@media screen and (max-width: 540px) {
  .sOtherMembers__title {
    margin-bottom: 2rem;
    font-size: 1rem;
  }
}

.sOtherMembers__title:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1rem;
  /*線の上下位置*/
  display: inline-block;
  width: 60px;
  height: 1.5px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #25599A;
}

@media screen and (max-width: 540px) {
  .sOtherMembers__title:before {
    bottom: -.5rem;
  }
}

@media screen and (min-width: 540px) {

  .secInterview__content.sOtherMembers__content {
    justify-content: center;
  }



  .sOtherMembers__content .secInterview__card {
    width: 33%;
    margin-right: 0;
  }



  .sOtherMembers__content .secInterview__card {
    top: auto;
  }
}