/* ----------------------------------
   Interview page
----------------------------------- */

/* HERO は about / roles と同じ .about-hero を再利用 */

/* 一覧カード */
.interview-cards {
  margin-top: clamp(24px, 4vw, 32px);
}

.interview-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.interview-card .thumb {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 16px;
  aspect-ratio: 4 / 3;
}

.interview-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.interview-card:hover .thumb img {
  transform: scale(1.05);
}

.interview-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.interview-role {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.interview-name {
  font-size: 1.1rem;
  font-weight: 700;
}

.interview-copy {
  font-weight: 600;
}

.interview-lead {
  font-size: .9rem;
  line-height: 1.8;
}

.interview-link {
  margin-top: 8px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--accent-strong);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.interview-link::after {
  content: '→';
  font-size: .9rem;
}

/* 代表インタビュー（#president-interview）は既存スタイルを活かす前提で、必要なところだけ微調整 */

#president-interview {
  padding-block: clamp(56px, 7vw, 72px);
}

#president-interview .interview-header {
  max-width: 720px;
  margin: 0 auto clamp(32px, 4vw, 40px);
}

#president-interview .row .person .body p {
  margin-bottom: 1em;
}

/* モバイルの余白少しゆったりめに */
@media (max-width: 768px) {
  #interview-hero .about-hero-inner,
  #interview-list .wrap,
  #president-interview .wrap {
    padding-inline: 18px;
  }
}


/* ==================================================
   INTERVIEW PAGE POLISH
   ================================================== */

/* HERO image: full-width visual with glass label */
.page-interview #interview-hero .about-hero-inner {
  display: block;
}

.page-interview #interview-hero .about-hero-copy {
  max-width: 720px;
  margin: 0 0 32px;
}


.page-interview #interview-hero .about-hero-visual {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.page-interview #interview-hero .about-hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page-interview #interview-hero .hero-mission-label {
  position: absolute;
  right: clamp(16px, 4vw, 32px);
  bottom: clamp(16px, 4vw, 32px);
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Round corners & spacing for photos on interview page */
.page-interview .interview-photo img,
.page-interview .people .person img,
.page-interview .president-intro img,
.page-interview #interview-hero .about-hero-visual img {
  border-radius: 18px;
}

.page-interview .interview-photo {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-interview .interview-photo img {
  width: 100%;
  display: block;
}

/* Q&A block styling */
.page-interview .interview-detail .interview-body {
  gap: clamp(24px, 4vw, 40px);
}

.page-interview .interview-text h3 {
  margin-top: 32px;
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  position: relative;
  padding-left: 1.6em;
}

.page-interview .interview-text h3::before {
  content: "Q.";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--color-accent);
}

.page-interview .interview-text h3::after {
  content: "";
  position: absolute;
  left: 1.6em;
  bottom: -4px;
  width: 56px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-accent), rgba(63, 189, 145, 0));
}

.page-interview .interview-text p {
  margin-top: 0.6em;
  line-height: 1.9;
}

.page-interview .interview-text p + p {
  margin-top: 0.8em;
}

/* Profile card-like frame */
.page-interview .interview-profile {
  margin-top: 32px;
  padding: 20px 24px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.page-interview .interview-profile-title {
  margin: 0 0 16px;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.page-interview .profile-list {
  display: grid;
  grid-template-columns: minmax(0, 140px) minmax(0, 1fr);
  row-gap: 6px;
  column-gap: 16px;
  margin: 0 0 16px;
  font-size: 0.95rem;
}

.page-interview .profile-list dt {
  font-weight: 600;
  color: var(--color-heading);
}

.page-interview .profile-list dd {
  margin: 0;
}

.page-interview .profile-intro {
  margin: 8px 0 0;
  font-size: 0.95rem;
}

@media (max-width: 768px) {/* =========================================
   INTERVIEW: PRESIDENT NAME (サブ行)
   ========================================= */
.page-interview .president-detail .interview-header .sub {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: none;
  color: var(--color-heading);
}

.page-interview .president-detail .interview-header .sub::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-accent);
}

/* =========================================
   INTERVIEW: 写真＋キャプション
   ========================================= */
.page-interview .interview-photo figure {
  margin: 0 0 18px;
}

.page-interview .interview-photo figure:last-child {
  margin-bottom: 0;
}

.page-interview .interview-photo img {
  display: block;
  width: 100%;
  border-radius: 18px;
}

.page-interview .interview-photo figcaption {
  margin-top: 6px;
  font-size: 0.85rem;
  color: rgba(15, 23, 42, 0.65);
}

/* =========================================
   INTERVIEW: Q&A 見出しを Q付きに限定
   ========================================= */

/* いったん、前回の「全ての h3 に Q. をつける」ルールを打ち消す */
.page-interview .interview-text h3::before,
.page-interview .interview-text h3::after {
  content: none;
}

/* Q&A 用の見出しだけにクラスを付けてスタイルする */
.page-interview .interview-text h3.qa-title {
  margin-top: 32px;
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  position: relative;
  padding-left: 1.6em;
}

.page-interview .interview-text h3.qa-title::before {
  content: "Q.";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--color-accent);
}

.page-interview .interview-text h3.qa-title::after {
  content: "";
  position: absolute;
  left: 1.6em;
  bottom: -4px;
  width: 56px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--color-accent),
    rgba(63, 189, 145, 0)
  );
}

/* Q&A以外の h3 は、余白だけ軽く整える（必要なら） */
.page-interview .interview-text h3:not(.qa-title) {
  margin-top: 28px;
  margin-bottom: 8px;
  font-size: 1.05rem;
  font-weight: 600;
}

/* =========================================
   INTERVIEW ENTRY CTA
   ========================================= */
#interview-entry-cta {
  margin: clamp(40px, 7vw, 72px) 0 0;
}

#interview-entry-cta .wrap.narrow {
  max-width: 880px;
}

#interview-entry-cta .cta-band {
  border-radius: 24px;
  padding: clamp(20px, 5vw, 28px) clamp(20px, 6vw, 32px);
  background: radial-gradient(
      circle at 0 0,
      rgba(63, 189, 145, 0.24),
      transparent 55%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(15, 23, 42, 0.95),
      rgba(15, 23, 42, 1)
    );
  color: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.4);
}

#interview-entry-cta .cta-band .h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

#interview-entry-cta .cta-band p {
  margin: 0 0 16px;
  opacity: 0.9;
}

#interview-entry-cta .cta {
  justify-content: center;
  gap: 12px;
}

#interview-entry-cta .cta .btn-ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

#interview-entry-cta .cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

#interview-entry-cta .cta .btn-entry {
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.1);
}

@media (max-width: 768px) {
  #interview-entry-cta .cta-band {
    text-align: left;
  }

  #interview-entry-cta .cta {
    flex-direction: column;
  }

  #interview-entry-cta .cta a {
    width: 100%;
    text-align: center;
  }
}


  .page-interview #interview-hero .about-hero-visual {
    border-radius: 18px;
  }

  .page-interview .interview-detail .interview-body {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-interview .interview-photo {
    max-width: 520px;
    margin-inline: auto;
  }

  .page-interview .profile-list {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* SP：会社セクションの related-links をボタン風に統一 */
@media (max-width: 768px) {
  /* リンクリスト自体の間隔 */
  #company .card .related-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 14px 0 8px;
    padding: 0 16px;   /* 左右に16pxぶんの余白を追加（お好みで調整可） */
  }

  #company .card .related-links li {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  /* ベースのボタンスタイル（全リンク共通） */
  #company .card .related-links a {
    display: block;
    width: 100%;       /* カード内での「ボタン幅」はそのまま */
    text-align: center;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 500;
    font-size: .95rem;
    text-decoration: none;
    white-space: normal;
    word-break: break-word;
    box-shadow: 0 1px 1px rgba(0,0,0,.03);
    border: 1px solid transparent;
  }
}

  /* 1枚目カード（不動産） */
  #company .card:nth-of-type(1) .related-links a {
    background: linear-gradient(180deg, #f9fbfa, #f4f8f6);
    border-color: rgba(0,80,50,.12);
    color: #084c31;
  }

  #company .card:nth-of-type(1) .related-links a:hover {
    background: linear-gradient(180deg, #f6fbf8, #eef6f2);
    border-color: rgba(0,80,50,.2);
    color: #0b6;
  }

  /* 2枚目カード（旅行） */
  #company .card:nth-of-type(2) .related-links a {
    background: linear-gradient(180deg, #f8fbfc, #f3f7fb);
    border-color: rgba(30,80,160,.12);
    color: #1d4d80;
  }

  #company .card:nth-of-type(2) .related-links a:hover {
    background: linear-gradient(180deg, #f5f9fc, #edf4fa);
    border-color: rgba(30,80,160,.22);
    color: #0078c8;
  }

  /* 3枚目カード（宿泊） */
  #company .card:nth-of-type(3) .related-links a {
    background: linear-gradient(180deg, #fdfbf9, #faf7f4);
    border-color: rgba(140,100,40,.12);
    color: #755f3a;
  }

  #company .card:nth-of-type(3) .related-links a:hover {
    background: linear-gradient(180deg, #fdfaf6, #f7f3ee);
    border-color: rgba(140,100,40,.22);
    color: #b48a53;
  }

  /* 4枚目カード（飲食） */
  #company .card:nth-of-type(4) .related-links a {
    background: linear-gradient(180deg, #fffaf7, #fef6f1);
    border-color: rgba(180,90,0,.12);
    color: #a25400;
  }

  #company .card:nth-of-type(4) .related-links a:hover {
    background: linear-gradient(180deg, #fff8f3, #fdf3eb);
    border-color: rgba(180,90,0,.22);
    color: #d67200;
  }
}

/* =========================================================
   INTERVIEW PAGE (Flat Design System Ver.)
   - about / roles と完全統一したデザインルール
   - 余白・角丸・影・写真スタイル・タイポを共通化
   ========================================================= */

/* --------------------------------------
   基本設定
-------------------------------------- */

.page-interview main {
  padding-bottom: 80px;
  background: #ffffff;
}

.wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------
   HERO
-------------------------------------- */

#interview-hero {
  padding: 72px 0 56px;
  background: #fff;
}

#interview-hero .hero-kicker {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0b74c5;
  margin-bottom: 0.8rem;
}

#interview-hero .hero-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.6rem;
}

#interview-hero .hero-sub {
  font-size: 1rem;
  color: #333;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

#interview-hero .hero-lead {
  font-size: 0.98rem;
  color: #555;
  line-height: 1.9;
  max-width: 640px;
}

/* --------------------------------------
   人物一覧カード（PERSON）
-------------------------------------- */

.people {
  padding: 40px 0 32px;
  background: #fff;
}

.people .sec-head {
  margin-bottom: 24px;
}

/* person card */
.person {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.person:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.09);
}

.person img {
  width: 100%;
  display: block;
  border-radius: 0;
}

.person .msg {
  padding: 14px 16px 18px;
}

.person .bubble {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.person-meta {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.6;
}

/* クレジット */
.person-photo {
  position: relative;
}

.person-photo .photo-credit {
  font-size: 0.72rem;
  color: rgba(0,0,0,0.55);
  padding: 4px 8px 0;
}

/* --------------------------------------
   Interview Detail Section
-------------------------------------- */

.interview-detail {
  padding: 56px 0;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.interview-detail:first-of-type {
  border-top: none;
}

/* section head */
.interview-header .eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0b74c5;
  margin-bottom: 0.6rem;
}

.interview-header .h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 0.7rem;
}

.interview-header .sub {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2px;
}

/* layout */
.interview-body.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 36px;
}

/* --------------------------------------
   Photo style（about と統一）
-------------------------------------- */

.interview-photo img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  box-shadow: 0 12px 26px rgba(0,0,0,0.08);
  transition: box-shadow .25s ease, transform .25s ease;
}

.interview-detail:hover .interview-photo img {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.14);
}

/* --------------------------------------
   Interview Text
-------------------------------------- */

.interview-text {
  font-size: 0.98rem;
  line-height: 1.9;
  color: #333;
}

.interview-text h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 26px 0 8px;
}

.interview-text h3:first-of-type {
  margin-top: 0;
}

.interview-text p {
  margin-bottom: 14px;
}

/* --------------------------------------
   Profile Card（about と共通ルール化）
-------------------------------------- */

.interview-profile {
  margin-top: 26px;
  padding: 20px 22px;
  background: #f7f9fb;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.8;
}

.interview-profile-title {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}

.profile-list dt {
  font-weight: 600;
  min-width: 6em;
  display: inline-block;
  margin-bottom: 4px;
}

.profile-list dd {
  margin-bottom: 4px;
  display: inline;
}

/* --------------------------------------
   代表インタビュー：サマリーカード
   about の card と完全統一
-------------------------------------- */

.president-intro {
  padding: 48px 0 24px;
}

.president-summary-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  max-width: 720px;
  margin: 0 auto;
}

.president-summary-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}

.president-thumb {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  overflow: hidden;
  background: #f0f2f4;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.president-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.president-summary-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #0b74c5;
}

.president-summary-title {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 2px;
}

.president-summary-meta {
  font-size: 0.82rem;
  color: #666;
}

/* --------------------------------------
   Responsive
-------------------------------------- */

@media (max-width: 960px) {
  .interview-body.grid-2 {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  #interview-hero {
    padding: 56px 0 40px;
  }

  .president-summary-link {
    align-items: flex-start;
  }

  .president-thumb {
    width: 60px;
    height: 60px;
  }
}
