/* ==========================================================================
   SPECIAL TALK 01 ページ（普通のSIerとNeoSIerの違いとは）
   ========================================================================== */

.st-detail {
  padding-top: 84px; /* 固定ヘッダーの高さ分のオフセット */
}

/* ===========================
   HERO
=========================== */

.st-detail-hero {
  position: relative;
  width: 100%;
  /* height: 90vh; */
  height: 700px;
  overflow: hidden;
  background: var(--color-main);
}

.st-detail-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.st-detail-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.st-detail-hero__panel {
  position: absolute;
  inset: 0;
  background: var(--color-main);
  clip-path: polygon(43% 0, 100% 0, 100% 100%, 56% 100%);
  display: flex;
  align-items: center;
}

.st-detail-hero__content {
  margin-left: auto;
  width: max-content;
  padding: 0 6vw 0 12vw;
  color: var(--color-white);
}

@media  (min-width: 1150px) {
    .st-detail-hero__content {
        padding: 0 10vw 0 12vw;
    }
}

.st-detail-hero__en {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  margin-bottom: 0.5rem;
}

.st-detail-hero__en-sub {
  font-size: 1.5rem;
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
  font-family: var(--font-serif);
}

.st-detail-hero__title {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.st-detail-hero__profile {
  display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex-direction: column;
}

.st-detail-hero__position {
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.st-detail-hero__name {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
}

.st-detail-hero__name__ja {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.st-detail-hero__name__en {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

/* ===========================
   INTRODUCTION
=========================== */

.st-detail-intro {
  padding: 120px 40px;
  background: var(--color-light-blue);
}

.st-detail-intro__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.st-detail-intro__heading {
  flex: 1;
  text-align: left;
  padding-right: 60px;
}

.st-detail-intro__en {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--color-main);
  margin-bottom: 1rem;
}

.st-detail-intro__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  line-height: 2.2;
}

.st-detail-intro__lead {
  flex: 1;
  text-align: justify;
  padding-left: 60px;
  font-size: 0.9375rem;
  letter-spacing: 0.2em;
  line-height: 2;
  color: var(--color-black);
  margin-top: 250px;
}

/* タブレット帯: 左カラムが狭く INTRODUCTION が単語の途中で折り返すため縮める */

@media (min-width: 768px) and (max-width: 1099px) {
  .st-detail-intro__en {
    font-size: clamp(1.5rem, 2.9vw, 2.5rem);
  }
}

/* ===========================
   PROFILE
=========================== */

.st-detail-profile {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vw;
  max-height: 800px;
  width: 100%;
}

/* 背景画像（元はPHP側でstyle="background-image:..."を直書きしていたものをCSSに移動） */

.st-detail-profile--st01 {
  background-image: url('../images/st01_person.webp');
}

.st-detail-profile--st02 {
  background-image: url('../images/st02_person.webp');
}

.st-detail-profile--st03 {
  background-image: url('../images/st03_person.webp');
}

/* .st-detail-profile__inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
} */

.st-detail-profile__content {
    position: absolute;
    top: 15%;
    left: 0;
}

.st-detail-profile__card {
  display: inline-block;
  background: var(--color-white);
  border-radius: 0px 20px 20px 0;
  padding: 4rem 2.5rem 4rem 120px;
  margin-bottom: 2.5rem;
}

.st-detail-profile__position {
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--color-black);
  margin-bottom: 0.5rem;
  font-family: var(--font-serif);
}

.st-detail-profile__name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-black);
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.st-detail-profile__name-en {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.st-detail-profile__bio {
  font-size: 0.9375rem;
  text-align: justify;
  letter-spacing: 0.1em;
  line-height: 2;
  color: var(--color-black);
  max-width: 370px;
}

/* ===========================
   目次（アンカーリンク）
=========================== */

.st-detail-toc {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 40px;
}

.st-detail-toc ul {
  list-style: none;
}

.st-detail-toc li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0.5rem;
  border-bottom: 1px solid #b9b9b9;
  text-decoration: none;
  color: var(--color-black);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

/* シェブロンアイコン：CSSのみで再現 */

.st-detail-toc li a::after {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-main);
  border-right: 2px solid var(--color-main);
  transform: rotate(135deg);
}

/* ===========================
   Q&A ブロック（共通）
=========================== */

.st-detail-qa {
  max-width: 780px;
  margin: 0 auto;
  padding: 70px 40px;
  scroll-margin-top: 84px;
}

.st-detail-qa__label {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--color-main);
  flex-shrink: 0;
}

.st-detail-qa__q {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-family: var(--font-serif);
  color: var(--color-main);
  border-bottom: var(--color-main) 2px solid;
}

.st-detail-qa__a {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.st-detail-qa__a-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  line-height: 2.2;
}

.st-detail-qa__img {
  margin-bottom: 2.5rem;
  border-radius: 20px;
  overflow: hidden;
}

/* Q3末尾の全幅画像 */

.st-detail-qa__img--full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  margin-top: 120px;
  margin-bottom: 0;
}

.st-detail-qa__box {
  background: var(--color-light-blue);
  border-radius: 12px;
  padding: 120px 2rem;
  margin-bottom: 2.5rem;
}

.st-detail-qa__box-title {
  display: block;
  margin: 0 auto 2rem;
  background: var(--color-main);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 16px;
  padding: 1.5rem 0;
}

.st-detail-qa__box-list {
  list-style: none;
  padding: 0 1rem;
}

.st-detail-qa__box-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  line-height: 2.1;
}

.st-detail-qa__box-list li::before {
  content: '・';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-black);
}

.st-detail-qa__body p {
  font-size: 0.9375rem;
  letter-spacing: 0.15em;
  text-align: justify;
  line-height: 2;
  color: var(--color-black);
  margin-bottom: 1.5rem;
}

.st-detail-qa__body p:last-child {
  margin-bottom: 0;
}

/* ===========================
   HERO：対談型（2名並び）
=========================== */

.st-03 .st-detail-hero--talk {
  height: 700px;
}

/* 画面幅1024pxまで */

@media (min-width: 768px) and (max-width: 1024px) {
    .st-03 .st-detail-hero--talk {
        height: 650px;
      }
}

.st-03 .st-detail-hero__content {
  padding: 0 3vw 0 8vw;
}

@media screen and (min-width: 1300px) {
  .st-03 .st-detail-hero__content {
    padding: 0 7vw 0 8vw;
}
}


/* 画面幅1099pxまで */

@media (min-width: 768px) and (max-width: 1099px) {
    .st-03 .st-detail-hero__content {
        padding: 0 2vw 0 8vw;
      }
}

.st-03 .st-detail-hero__img img {
  object-position: -22vw center;
}

/* 画面幅1099pxまで */

@media (min-width: 768px) and (max-width: 1099px) {
    .st-03 .st-detail-hero__img img {
      object-position: -25vw center;
    }
}

/* 画面幅1200px以上 */

@media (min-width: 1200px) {
    .st-03 .st-detail-hero__img img {
      object-position: -15vw center;
    }
}

.st-detail-hero--talk .st-detail-hero__panel {
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 62% 100%);
}

.st-03 .st-detail-hero__name {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-direction: column;
}

/* 2名プロフィールの横並びコンテナ */

.st-detail-hero__profiles {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
}

/* 各人物ブロック */

.st-detail-hero__profile-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.st-03 .st-detail-hero__position {
  font-size: 0.75rem;
}

.st-03 .st-detail-hero__name__ja {
  font-size: 1.5rem;
}

.st-03 .st-detail-hero__name__en {
  font-size: 0.75rem;
}

/* ×マーク（HERO） */

.st-detail-hero__cross {
  display: block;
  width: 40px;
  height: 54px;
  background: url('../images/st-close.svg') no-repeat center center / contain;
  flex-shrink: 0;
  align-self: center;
  margin-top: 30px;
}

/* ===========================
   PROFILE：対談型（2名横並び）
=========================== */

.st-detail-profile--talk {
  height: 80vw;
  max-height: 1000px;
}

/* 2枚カードを横並びにするコンテナ
   - position: absolute を引き継ぎつつ、left:0 を解除して中央寄せに変更
   - 下端を写真エリアの下部に合わせてオーバーラップ気味に配置 */

.st-detail-profile__content--talk {
  position: absolute;
  top: auto;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  display: flex;
  align-items: stretch;     /* カードの高さを同じに揃える */
  justify-content: center;
  gap: 2rem;
}

/* 各カード：四隅すべて丸角・固定幅・左端のパディング戻す */

.st-detail-profile__content--talk .st-detail-profile__card {
  flex: 1;
  border-radius: 20px;
  padding: 3rem 4rem;
  margin-bottom: 0;

  /* カード内を縦flexにして要素の縦位置を揃える */
  display: flex;
  flex-direction: column;
}

/* positionは行数が左右で異なるため、min-heightで2行分を確保し
   nameの上端を常に同じ高さに揃える */

.st-detail-profile__content--talk .st-detail-profile__position {
  min-height: 3em;    /* 2行分の高さを最小値として確保 */
  margin-bottom: 0;
  font-size: 0.75rem;
}

/* nameの下マージンを固定してbioの上端を左右で揃える */

.st-detail-profile__content--talk .st-detail-profile__name {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.st-detail-profile__content--talk .st-detail-profile__name-en {
  font-size: 0.75rem;
}

/* bioはflexで残りスペースを埋める */

.st-detail-profile__content--talk .st-detail-profile__bio {
  flex: 1;
  font-size: 0.75rem;
}

/* ×マーク（PROFILE） */

.st-detail-profile__cross {
  display: block;
  width: 48px;
  height: 64px;
  flex-shrink: 0;
  align-self: center;   /* stretchの影響を受けず縦中央に固定 */
  background: url('../images/st-close.svg') no-repeat center center / contain;
}


/* ==========================================================================
   SP（〜768px）※SPECIALTALK01spカンプ基準（01〜03共通部分）
   ========================================================================== */

@media (max-width: 767px) {

  .st-detail {
    padding-top: 52px;
  }

  /* ─── HERO：写真全面＋青パネルを斜めカットで重ねる（カンプ st01_1st.png 実測） ─── */

  .st-detail-hero {
    height: 0;
    padding-top: 165%; /* st01_mv_sp.webp（1500×2476）と同じ比率＝トリミング無しで一致 */
    overflow: hidden;
    background: transparent;
  }

  .st-detail-hero__img {
    position: absolute;
    inset: 0;
    height: 100%;
  }

  .st-detail-hero__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .st-detail-hero__panel {
    position: absolute;
    inset: 0;
    display: block;
    clip-path: polygon(0 0, 100% 0, 100% 48%, 0 57%);
    padding: 28px 24px 0;
  }

  .st-detail-hero__content {
    margin-left: 0;
    width: 100%;
    padding: 0;
  }

  .st-detail-hero__en {
    font-size: 1.875rem;
    margin-bottom: 0;
  }

  .st-detail-hero__en-sub {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }

  .st-detail-hero__title {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .st-detail-hero__profile{
    gap: 5px;
  }
  .st-detail-hero__position{
    font-size: 0.875rem;
  }

  .st-detail-hero__name__ja {
    font-size: 1.5rem;
  }

  .st-detail-hero__name__en {
    font-size: 0.75rem;
}

  /* ─── INTRODUCTION：縦積み ─── */

  .st-detail-intro {
    padding: 90px 25px;
  }

  .st-detail-intro__inner {
    flex-direction: column;
  }

  .st-detail-intro__heading {
    flex: none;
    padding-right: 0;
  }

  .st-detail-intro__en {
    font-size: 2rem;
  }

  .st-detail-intro__title {
    font-size: 1.5rem;
  }

  .st-detail-intro__lead {
    flex: none;
    padding-left: 0;
    margin-top: 60px;
    font-size: 0.875rem;
  }

  /* ─── PROFILE：縦長のSP用画像に、カードを重ねて表示 ─── */

  .st-detail-profile {
    height: auto;
    min-height: min(230vw, 862.5px);
    background-size: cover;
    background-position: center bottom;
    padding: 0;
  }

    @media (min-width: 601px) {
    .st-detail-profile {
      min-height: 1000px;
    }
  }

  /* SP用の縦長画像に差し替え（書き出し次第、要ファイル配置） */

  .st-detail-profile--st01 {
    background-image: url('../images/st01_person_sp.webp');
  }

  .st-detail-profile--st02 {
    background-image: url('../images/st02_person_sp.webp');
  }

  .st-detail-profile--st03 {
    background-image: url('../images/st03_person_sp.webp');
  }

  .st-detail-profile__content {
    top: 3%;
    width: 100%;
    padding: 0 24px;
  }

  .st-detail-profile__card {
    display: block;
    width: 100%;
    border-radius: 20px;
    margin: 0;
    padding: 30px 20px;
  }

  .st-detail-profile__position {
    font-size: 0.875rem;
  }

  .st-detail-profile__name {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }

  .st-detail-profile__name-en {
    font-size: 0.75rem;
}

  .st-detail-profile__bio {
    max-width: none;
    font-size: 0.875rem;
  }

  /* ─── 目次 ─── */

  .st-detail-toc {
    padding: 40px 25px;
  }

  .st-detail-toc li a {
    font-size: 1rem;
    padding: 1.75rem 0.25rem;
  }

  /* ─── Q&A ─── */

  .st-detail-qa {
    padding: 60px 20px 0;
    scroll-margin-top: 52px;
  }

  .st-detail-qa__label {
    font-size: 1.875rem;
    font-weight: 400;
    margin-top: -2px;
  }

  .st-detail-qa__q {
    font-size: 1.25rem;
    padding-bottom: 10px;
    gap: 8px;
  }
  .st-detail-qa__a{
    gap: 8px;
    margin-bottom: 15px;
  }

  .st-detail-qa__a-text {
    font-size: 1.125rem;
    padding-bottom: 10px;
  }

  .st-detail-qa__body p {
    font-size: 0.875rem;
  }

  .st-detail-qa__box {
    padding: 60px 24px;
  }

  .st-detail-qa__box-title {
    font-size: 0.9375rem;
    padding: 1.25rem 1rem;
  }

  .st-detail-qa__box-list {
    padding: 0 0.5rem;
  }

  .st-detail-qa__box-list li {
    font-size: 0.875rem;
  }

  .st-detail-qa__img--full{
    margin-top: 60px;
  }


    /* ─── st03（対談型） ─── */

  .st-03 .st-detail-hero__content {
    padding: 0;
  }
  .st-03 .st-detail-hero__img img{
    object-position: center top;
  }

  .st-03 .st-detail-hero__profiles{
    gap: 15px;
  }


  /* ─── st03（対談型）HERO：2名プロフィール横並び＋× ─── */
  /* パネルに2名分のプロフィールが入るため、01/02より縦長にする
     （SP用画像 st03_mv_sp.webp は縦長・2名を下半分に配置して書き出す） */

  .st-03 .st-detail-hero {
    padding-top: 192%;
  }

  .st-03 .st-detail-hero__panel {
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 57%);
    padding: 28px 0px 0 24px;
  }

  .st-03 .st-detail-hero__title {
    margin-bottom: 28px;
  }

  .st-detail-hero__profiles {
    gap: 10px;
  }

  .st-03 .st-detail-hero__position {
    font-size: 0.725rem;
    line-height: 1.5;
  }

  .st-03 .st-detail-hero__name__ja {
    font-size: 1.25rem;
  }

  .st-03 .st-detail-hero__name__en {
    font-size: 0.625rem;
  }

  .st-detail-hero__cross {
    width: 36px;
    height: 32px;
    margin-top: 60px;
  }

  .st-03 .st-detail-hero__name{
    gap: 5px;
  }

  /* ─── st03（対談型）PROFILE：2枚カードを縦積み＋×、下に2名写真 ─── */
  /* SP用背景画像 st03_person_sp.webp（2名立ち姿・縦長）はカードの下に見える想定 */

  .st-detail-profile--talk {
    height: auto;
    min-height: min(310vw, 1095px);
    background-position: center bottom;
  }

  @media (min-width: 601px) {
    .st-detail-profile--talk {
      min-height: 1230px;
    }
  }

  .st-detail-profile__content--talk {
    position: absolute;
    top: 3%;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0 24px;
  }

  .st-detail-profile__content--talk .st-detail-profile__card {
    flex: none;
    width: 100%;
    padding: 30px 20px;
  }

  .st-detail-profile__content--talk .st-detail-profile__position {
    min-height: 0;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }

  .st-detail-profile__content--talk .st-detail-profile__name {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .st-detail-profile__content--talk .st-detail-profile__name-en {
    font-size: 0.75rem;
  }

  .st-detail-profile__content--talk .st-detail-profile__bio {
    max-width: none;
    font-size: 0.875rem;
  }

  .st-detail-profile__cross {
    width: 40px;
    height: 54px;
    margin: 18px 0;
  }
}


/* ==========================================================================
   ヘッダーがSP版になる帯（〜949px）: 固定ヘッダー高さ52pxに合わせる
   （common.css のヘッダー切替と同じ境界）
   ========================================================================== */

@media (max-width: 949px) {

  .st-detail {
    padding-top: 52px;
  }

  .st-detail-qa {
    scroll-margin-top: 52px;
  }
}


/* ==========================================================================
   縦持ちタブレット帯（768px〜949px）
   ========================================================================== */

@media (min-width: 768px) and (max-width: 949px) {

  /* HERO: 斜めパネルの幅が狭く文字がはみ出すため、文字とパディングを縮める */

  .st-detail-hero {
    height: 500px;
  }

  .st-detail-hero__content {
    padding: 0 5vw 0 10vw;
  }

  .st-detail-hero__en {
    font-size: 1.75rem;
  }

  .st-detail-hero__en-sub {
    font-size: 1.125rem;
  }

  .st-detail-hero__title {
    font-size: 1.35rem;
    margin-bottom: 2rem;
  }

  .st-detail-hero__name__ja {
    font-size: 1.5rem;
  }

  .st-detail-hero__position {
    font-size: 0.875rem;
  }

  /* INTRODUCTION: 2カラムだと見出しが数文字ごとに折り返して縦長になるため
     SPと同じ縦積みにする */

  .st-detail-intro__inner {
    flex-direction: column;
  }

  .st-detail-intro__heading {
    flex: none;
    padding-right: 0;
  }

  .st-detail-intro__lead {
    flex: none;
    padding-left: 0;
    margin-top: 48px;
  }

  /* PROFILE(st01/02): PC用画像（左＝無地・右＝人物）を比率そのまま表示し、
     カードを左の余白に収まるサイズへ縮小（PCと同じ画像とレイアウトの関係を保つ）。
     st03（対談型・2名立ち姿）だけはSP用縦長画像を使う（後述の専用ルール参照） */

  .st-detail-profile {
    height: auto;
    min-height: 0;
  }

  .st-detail-profile--st01,
  .st-detail-profile--st02 {
    aspect-ratio: 2200 / 1400;
  }

  .st-detail-profile--st03 {
    background-image: url('../images/st03_person_sp.webp');
    background-position: center bottom;
  }

  .st-detail-profile__content {
    top: 8%;
  }

  .st-detail-profile__card {
    padding: 2rem 1.75rem 2rem 32px;
  }

  .st-detail-profile__name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .st-detail-profile__bio {
    font-size: 0.8125rem;
    max-width: 300px;
  }
}


/* ==========================================================================
   縦持ちタブレット帯（768px〜949px）st03（対談型）専用
   ========================================================================== */

@media (min-width: 768px) and (max-width: 949px) {

  /* HERO: 2名の対談は斜めパネルだと片方が隠れるため、SPと同じ
     「上に横帯テキスト＋下に2名写真」の縦積みレイアウトにする。
     画像は2名を収めた縦位置画像 st03_mv_sp.webp（picture側で〜949px配信） */

  .st-03 .st-detail-hero--talk {
    height: 0;
    padding-top: 155%;
  }

  .st-detail-hero--talk .st-detail-hero__panel {
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 43%);
    padding: 44px 40px 0;
    display: block;
  }

  .st-03 .st-detail-hero__content {
    margin-left: 0;
    width: 100%;
    padding: 0;
  }

  /* 2名とも見えるよう写真は下端基準 */

  .st-03 .st-detail-hero__img img {
    object-position: center bottom;
  }

  .st-03 .st-detail-hero__title {
    margin-bottom: 28px;
  }

  .st-03 .st-detail-hero__position {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .st-03 .st-detail-hero__name__ja {
    font-size: 1.35rem;
  }

  .st-03 .st-detail-hero__name__en {
    font-size: 0.7rem;
  }

  .st-detail-hero__profiles {
    gap: 24px;
  }

  .st-detail-hero__cross {
    width: 40px;
    height: 40px;
    margin-top: 24px;
  }

  /* PROFILE: 2枚カードは下端配置だと2名の立ち姿を隠すため上部へ。
     カードの余白も詰めて名前の折り返しを防ぐ */

  .st-detail-profile--talk {
    min-height: min(130vw, 1400px);
  }

  .st-detail-profile__content--talk {
    top: 3%;
    bottom: auto;
    width: 94%;
  }

  .st-detail-profile__content--talk .st-detail-profile__card {
    padding: 2rem 1.5rem;
  }
}
