/* ============================================================
   Hanawa Theme — main.css
   ============================================================ */

/* -------------------- 青柳衡山フォント (代表署名用) --------------------
   フォントファイルを assets/fonts/ に配置してください
   .woff2 → .woff → .ttf の順でフォールバック
*/
@font-face {
  font-family: "AoyagiKouzan";
  src: url("../fonts/AoyagiKouzanFontT.woff2") format("woff2"),
       url("../fonts/AoyagiKouzanFontT.woff")  format("woff"),
       url("../fonts/AoyagiKouzanFontT.ttf")   format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* -------------------- design tokens -------------------- */
:root {
  --color-navy:        #0b2a5e;
  --color-navy-deep:   #07204a;
  --color-navy-light:  #1c3d7a;
  --color-yellow:      #ffe554;
  --color-yellow-soft: #fff7c8;
  --color-yellow-bg:   #fff8d4;
  --color-blue-soft:   #eaf1fa;
  --color-text:        #1a1a1a;
  --color-text-soft:   #4a4a4a;
  --color-muted:       #888;
  --color-line:        #e2e2e2;
  --color-white:       #ffffff;

  --font-jp: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic UI", sans-serif;
  --font-en: "Cormorant Garamond", "Times New Roman", serif;

  --container:    1280px;
  --container-px: clamp(20px, 5vw, 80px);

  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .05);
  --shadow:    0 8px 24px rgba(11, 42, 94, .12);
}

/* -------------------- reset / base -------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-jp);
  font-weight: 400;
  color: var(--color-text);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .75; }
button { font: inherit; cursor: pointer; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

/* -------------------- layout -------------------- */
.l-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
.l-main { overflow: hidden; }

/* -------------------- section heading -------------------- */
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 56px;
}
.section-heading--center {
  align-items: center;
  text-align: center;
}
.section-heading__en {
  font-family: var(--font-jp);
  font-size: clamp(12px, 1.4vw, 20px);
  font-weight: 500;
  color: var(--color-navy);
  letter-spacing: .04em;
}
.section-heading__jp {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--color-text);
}

/* -------------------- buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 56px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .08em;
  transition: transform .2s, background .2s, color .2s;
}
.btn--outline {
  background: var(--color-white);
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}
.btn--outline:hover { background: var(--color-navy); color: var(--color-white); opacity: 1; }
.btn--primary {
  background: var(--color-yellow);
  color: var(--color-navy-deep);
  border: 2px solid var(--color-yellow);
}
.btn--primary:hover { transform: translateY(-2px); opacity: 1; }
.section-foot { margin-top: 64px; text-align: center; }

/* ============================================================
   Header (Figma 1191:465)
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--color-line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100px;
  padding-left: clamp(16px, 2vw, 24px);
  padding-right: 0;
  max-width: 1440px;
  margin-inline: auto;
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-header__logo {
  height: 74px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.site-header__logo-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  background: var(--color-navy);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-jp);
  font-size: 36px;
  font-weight: 700;
}
.site-header__company { display: flex; flex-direction: column; line-height: 1.2; }
.site-header__company-name { font-size: 22px; font-weight: 700; letter-spacing: .04em; }
.site-header__company-sub { font-size: 13px; color: var(--color-text-soft); margin-top: 2px; }

.site-nav { margin-left: auto; }
.site-nav__list {
  display: flex;
  gap: clamp(20px, 3vw, 44px);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .04em;
}

.site-header__entry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 100px;
  background: var(--color-navy);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  flex-shrink: 0;
}
.site-header__entry:hover { background: var(--color-navy-deep); opacity: 1; }

.site-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
  margin-right: 16px;
}
.site-header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  margin: 0 auto;
  transition: transform .2s;
}

/* ハンバーガーメニュー（縦50%程度のドロップダウン） */
.site-nav-mobile {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  height: 50vh;
  z-index: 200;
  background-image: url("../images/bg_hamburger.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}
.site-nav-mobile[hidden] { display: none; }

.site-nav-mobile__inner {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.site-nav-mobile__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.site-nav-mobile__list li { padding: 0; border: 0; }
.site-nav-mobile__list a {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
}
.site-nav-mobile__entry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 260px;
  padding: 14px 24px;
  background: var(--color-navy-deep);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  border-radius: 4px;
  margin-top: 8px;
}
.site-nav-mobile__entry:hover { opacity: .9; }
.site-nav-mobile__close {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 12px 24px;
  cursor: pointer;
  margin-top: 8px;
}
.site-nav-mobile__close:hover { opacity: .8; }

@media (max-width: 1024px) {
  .site-nav, .site-header__entry { display: none; }
  .site-header__toggle { display: flex; }
  .site-header__inner { height: 72px; padding-right: 8px; }
  .site-header__logo, .site-header__logo-fallback { height: 48px; }
  .site-header__logo-fallback { width: 48px; font-size: 24px; }
  .site-header__company-name { font-size: 16px; }
  .site-header__company-sub { font-size: 11px; }
}

/* ============================================================
   MV (assets/images/MV.png をフル幅表示)
   ============================================================ */
.mv {
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0; /* img下の余白を消す */
}
.mv__image {
  width: 100%;
  height: auto;
  display: block;
}
.mv__sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   About (Figma node 1136:930 / bg_about.png)
   ============================================================ */
.about {
  position: relative;
  color: #fff;
  padding: 80px 24px;
  background-image: url("../images/bg_about.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Figmaの 1440 × 566 = 約 0.39 のアスペクト比 */
  min-height: clamp(420px, 39.3vw, 566px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1129px;
  margin-inline: auto;
  text-align: center;
}
.about__heading-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
}
.about__en {
  font-family: var(--font-jp);
  font-size: clamp(12px, 1.4vw, 20px);
  font-weight: 500;
  letter-spacing: .04em;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}
.about__jp {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  letter-spacing: .12em;
  color: #fff;
  line-height: 1.3;
}
.about__lead {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 28px;
  line-height: 1.6;
}
.about__body {
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 2;
  color: rgba(255, 255, 255, .92);
}
.about__body p + p { margin-top: .6em; }

@media (max-width: 767px) {
  .about {
    background-image: url("../images/bg_about_sp.png");
    padding: 60px 24px;
    min-height: auto;
  }
  .about__body { text-align: left; }
}

/* ============================================================
   Interview Section (TOP / Figma 1136:1404)
   ============================================================ */
.interview-section {
  padding: 80px 0 100px;
  background: var(--color-navy);
  color: #fff;
}
.interview-section__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
  margin-bottom: 56px;
}
.interview-section__en {
  font-family: var(--font-jp);
  font-size: clamp(12px, 1.4vw, 20px);
  font-weight: 500;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1;
}
.interview-section__jp {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  letter-spacing: .12em;
  color: #fff;
  line-height: 1.3;
}

.interview-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.interview-list--page { gap: 32px; }

/* タブレット: 2カラム */
@media (max-width: 1024px) {
  .interview-list { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
/* スマホ: 2カラム（gap縮小） */
@media (max-width: 767px) {
  .interview-list { gap: 24px; }
}

.interview-card {}
.interview-card__link {
  display: block;
  text-align: center;
  transition: transform .25s ease;
  color: inherit;
}
.interview-card__link:hover { transform: translateY(-4px); opacity: 1; }

/* サムネイル（画像側で形状を作る想定） */
.interview-card__thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  margin-bottom: 24px;
  background: transparent;
}
.interview-card__thumb img {
  width: 100%; height: 100%; object-fit: contain;
}
.interview-card__placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #5872a3, #2d4675);
}

/* 役職バッジ（白枠・角なし） */
.interview-card__role {
  display: block;
  width: fit-content;
  min-width: 180px;
  margin: 0 auto 12px;
  padding: 10px 16px;
  background: #fff;
  color: var(--color-navy);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
  text-align: center;
}
/* 氏名バッジ（白枠・角なし） */
.interview-card__name {
  display: block;
  width: fit-content;
  min-width: 180px;
  margin: 0 auto;
  padding: 10px 16px;
  background: #fff;
  color: var(--color-navy);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
  text-align: center;
}

/* 一覧を見るボタン */
.interview-section__foot {
  margin-top: 56px;
  text-align: center;
}
.interview-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 400px;
  padding: 22px 48px;
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .12em;
  border-radius: 4px;
  transition: background .2s, color .2s;
}
.interview-section__btn:hover {
  background: #fff;
  color: var(--color-navy);
  opacity: 1;
}

@media (max-width: 767px) {
  .interview-section__btn { min-width: 0; width: 100%; max-width: 320px; padding: 18px 24px; }
  .interview-card__role,
  .interview-card__name { min-width: 0; width: 100%; max-width: 240px; }
}

/* ============================================================
   Company Data (Figma 1270:924)
   ============================================================ */
.company-data {
  padding: 80px 0 100px;
  background: #fff;
}
.data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) { .data-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 767px)  { .data-grid { grid-template-columns: 1fr;          gap: 20px; } }

.data-card {
  background: #fff;
  border: 10px solid transparent;
  border-image: linear-gradient(135deg, #00264A 0%, #00498F 100%) 1;
  padding: 32px 16px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  aspect-ratio: 406 / 354;
}
.data-card__label {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: .08em;
}
.data-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex: 1;
  min-height: 0;
  padding: 8px 0;
}
.data-card__icon img {
  max-width: 60%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.data-card__icon--chart img {
  max-width: 90%;
}
.data-card__value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  color: var(--color-navy);
}
.data-card__num {
  font-family: var(--font-jp);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
}
.data-card__unit {
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 700;
}
.data-card__note {
  font-size: 11px;
  color: var(--color-muted);
  margin-top: -4px;
}
.data-card--chart { justify-content: flex-start; gap: 8px; }
.data-card--chart .data-card__icon { padding: 0; }

/* ============================================================
   Workplace (Figma 1270:651)
   ============================================================ */
.workplace { padding: 80px 0 100px; background: #fff; }
.workplace__list { display: flex; flex-direction: column; gap: 32px; }
.workplace-card {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
  overflow: hidden;
}

/* 紺ヘッダー帯 */
.workplace-card__title {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 40px;
  background: linear-gradient(135deg, #00264A 0%, #00498F 100%);
  color: #fff;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: .08em;
}
.workplace-card__mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  object-fit: contain;
}

/* 白コンテンツ枠（桜の透かし背景） */
.workplace-card__items {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
  padding: 32px 40px;
  background-image: url("../images/bg_workplace_txt.png");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  font-size: clamp(14px, 2vw, 24px);
  font-weight: bold;
  color: var(--color-text);
}
.workplace-card__items li {
  position: relative;
  padding-left: 32px;
}
/* 各項目前のマーク */
.workplace-card__items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-image: url("../images/before_txt_mark.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .workplace-card__title { padding: 16px 20px; gap: 12px; }
  .workplace-card__mark { width: 28px; height: 28px; }
  .workplace-card__items {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 20px;
    background-image: url("../images/bg_workplace_txt_sp.png");
  }
  .workplace-card__items li { padding-left: 28px; }
  .workplace-card__items li::before { width: 18px; height: 18px; }
}

/* ============================================================
   Flow (Figma 1191:1542)
   ============================================================ */
.flow { padding: 80px 0 100px; background: #fff; }

.flow__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  max-width: 972px;
  margin: 0 auto;
  align-items: start;
}

.flow-col__image {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 767px) {
  .flow__columns {
    gap: 16px;
  }
}

/* ============================================================
   Top Message
   PC: bg_topmessage.png をフル背景（左側に代表写真）
   SP: 上下2ブロックそれぞれ別背景
   ============================================================ */
.top-message {
  position: relative;
  background-image: url("../images/bg_topmessage.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: clamp(60px, 8vw, 120px) clamp(24px, 5vw, 80px);
}
.top-message__heading {
  text-align: center;
  margin: 0 auto 56px;
  width: 100%;
}
.top-message__hero { display: none; }
.top-message__content {
  width: 100%;
  max-width: 760px;
  margin-left: auto;
}
.top-message__en {
  display: block;
  font-family: var(--font-jp);
  font-size: clamp(12px, 1.4vw, 20px);
  font-weight: 500;
  color: var(--color-navy);
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.top-message__jp {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--color-text);
}
.top-message__lead {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: .04em;
  margin-bottom: 32px;
  line-height: 1.5;
  background: linear-gradient(89deg, #00264A 0%, #2993F7 99.91%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
}
.top-message__text {
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.6;
  color: var(--color-text);
}
.top-message__text p + p { margin-top: 1em; }
.top-message__name {
  margin-top: 32px;
  font-family: var(--font-jp);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 700;
  text-align: right;
}
.top-message__name-aoyagi {
  font-family: "AoyagiKouzan", var(--font-jp);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  letter-spacing: .08em;
  margin-left: 12px;
}

/* SP: 上下2ブロック構成、それぞれ別背景 */
@media (max-width: 1024px) {
  .top-message {
    background-image: none;
    padding: 0;
    display: block;
  }
  .top-message__hero {
    display: block;
    background-image: url("../images/sp_bg_message_01.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 440 / 500;
    margin: 0;
    max-width: none;
  }
  .top-message__heading {
    padding: 32px 24px 24px;
    margin: 0;
    background: #fff;
  }
  .top-message__content {
    background-image: url("../images/sp_bg_message_logo.png");
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
    padding: 48px 24px 64px;
    margin: 0;
    max-width: none;
    text-align: center;
  }
  .top-message__lead {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .top-message__text {
    font-size: 14px;
    line-height: 1.9;
  }
  .top-message__name {
    text-align: center;
    margin-top: 32px;
  }
}

/* ============================================================
   Business (Figma 1136:940 / SP 1120:999)
   ============================================================ */
.business { padding: 80px 0 0; background: #fff; }
.business__list { display: flex; flex-direction: column; }

/* PC: 2カラム交互配置（テキスト3 : 画像7） */
.business-row {
  display: grid;
  grid-template-columns: 3fr 7fr; /* テキスト | 画像 */
  align-items: center;
  min-height: 300px;
}
.business-row--reverse {
  grid-template-columns: 7fr 3fr; /* 画像 | テキスト */
}
.business-row--reverse .business-row__body  { order: 2; }
.business-row--reverse .business-row__image { order: 1; }

.business-row__image {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.business-row__image picture,
.business-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.business-row__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px clamp(20px, 5vw, 80px);
  background: #fff;
}
/* PC専用: テキストブロックを画像側に寄せる（タブレット・SPには適用しない） */
@media (min-width: 1025px) {
  /* デフォルト（1段目・3段目）: テキストが左、画像が右 → テキストの右余白を消す */
  .business-row:not(.business-row--reverse) .business-row__body {
    padding-right: 0;
  }
  /* リバース（2段目）: 画像が左、テキストが右 → テキストの左余白を消す */
  .business-row--reverse .business-row__body {
    padding-left: 0;
  }
}

.business-row__title {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: .12em;
  margin-bottom: 24px;
}
.business-row__lead {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  color: #fff;
  background: var(--color-navy);
  display: inline-block;
  padding: 14px clamp(10px, 1.5vw, 20px);
  margin-bottom: 24px;
  line-height: 1.6;
}
.business-row__desc {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--color-text);
  line-height: 1.9;
}

/* タブレット・SP: 画像TOP → テキストBOTTOM 縦並び（順序固定） */
@media (max-width: 1024px) {
  .business-row,
  .business-row--reverse {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .business-row__image,
  .business-row--reverse .business-row__image {
    order: 1;
    height: auto;
  }
  .business-row__body,
  .business-row--reverse .business-row__body {
    order: 2;
    padding: 32px 20px 40px;
    width: 80%;
  }
  .business-row__image img { height: auto; }
  /* leadバッジ幅を統一（flexの中央配置を上書きしてストレッチ） */
  .business-row .business-row__lead {
    display: block;
    width: 100%;
    align-self: stretch;
    box-sizing: border-box;
    text-align: center;
  }
}

/* ============================================================
   FAQ (Figma 1136:1283)
   ============================================================ */
.faq { padding: 80px 0 100px; background: #f5f5f7; }
.faq-list {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {}

/* Q行: 紺色2pxボーダーの白い角丸ボックス */
.faq-item__q {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 28px 40px;
  background: #fff;
  border: 2px solid var(--color-navy);
  border-radius: 8px;
  text-align: left;
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: opacity .2s;
}
.faq-item__q:hover { opacity: .85; }

.faq-item__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}
.faq-item__badge--a { background: #d93636; color: #fff; }

.faq-item__icon {
  width: 24px; height: 24px;
  position: relative;
  flex-shrink: 0;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 18px; height: 2px;
  background: var(--color-navy);
  transform: translate(-50%, -50%);
  transition: transform .25s;
}
.faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item__q[aria-expanded="true"] .faq-item__icon::after { transform: translate(-50%, -50%) rotate(0); }

/* A行ラッパ: max-heightをJSで動的設定（カクツキ・ディレイなし） */
.faq-item__a-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item__a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 20px 40px 4px;
}
.faq-item__answer {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.9;
  color: var(--color-text);
}

@media (max-width: 767px) {
  .faq { padding: 60px 0 80px; }
  .faq-list { gap: 16px; padding: 0 20px; }
  .faq-item__q { padding: 20px 20px; gap: 16px; }
  .faq-item__a { padding: 16px 20px 4px; gap: 16px; }
}

/* ============================================================
   Shiryou (Speaker Deck埋め込み)
   ============================================================ */
.shiryou { padding: 80px 0 100px; background: #fff; }
.shiryou .section-heading { margin-bottom: 40px; }
.shiryou__embed {
  max-width: 1081px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 5px 40px rgba(0, 0, 0, .2);
  background: rgba(0, 0, 0, .1);
}
.shiryou__embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

@media (max-width: 767px) {
  .shiryou { padding: 60px 0 80px; }
  .shiryou__embed { box-shadow: 0 4px 20px rgba(0, 0, 0, .15); }
}

/* ============================================================
   CTA (Figma 1270:642 / SP 1120:1357)
   ============================================================ */
.cta {
  background-image: url("../images/bg_cta.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  position: relative;
  aspect-ratio: 1440 / 525;
  display: flex;
  align-items: center;
}
.cta__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.cta__text {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .04em;
  color: #fff;
}
.cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  padding: 18px 32px;
  background: #fff;
  color: var(--color-navy);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
  letter-spacing: .08em;
  border-radius: 4px;
  transition: opacity .2s, transform .2s;
}
.cta__btn:hover {
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .cta { aspect-ratio: 440 / 160; }
  .cta__inner {
    gap: 16px;
    padding: 0 24px;
    align-items: center;
    text-align: center;
  }
  .cta__text { font-size: clamp(13px, 2.4vw, 18px); line-height: 1.5; }
  .cta__btn { min-width: 0; width: clamp(160px, 40vw, 240px); padding: 12px 16px; font-size: clamp(13px, 1.6vw, 15px); }
}

/* ============================================================
   Footer (Figma 1191:844)
   ============================================================ */
.site-footer {
  background: var(--color-navy);
  color: #fff;
  padding: 80px 0 32px;
}
.site-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

/* 左カラム: フッター用ロゴ画像（footer_logo.png） */
.site-footer__brand {
  margin-bottom: 28px;
}
.site-footer__brand-img {
  display: block;
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: 50px;
}
.site-footer__address {
  font-size: 13px;
  line-height: 2.1;
  color: rgba(255,255,255,.85);
  letter-spacing: .04em;
}

/* 右カラム: メニュー2列 */
.site-footer__col--nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.site-footer__menu li {
  padding: 4px 0;
  font-size: 14px;
  letter-spacing: .06em;
  font-weight: bold;
}
.site-footer__menu a { color: rgba(255,255,255,.9); }
.site-footer__menu a:hover { color: var(--color-yellow); opacity: 1; }

/* 下部: 区切り線 + コピーライト */
.site-footer__bottom {
  margin-top: 48px;
  max-width: 1440px;
  margin-inline: auto;
  padding: 26px clamp(24px, 5vw, 80px) 0;
  border-top: 1px solid rgba(255,255,255,.2);
  font-size: 12px;
  color: rgba(255,255,255,.7);
  text-align: center;
  letter-spacing: .04em;
}

@media (max-width: 1024px) {
  .site-footer { padding: 60px 0 24px; }
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .site-footer__col--nav { gap: 16px; }
}

@media (max-width: 767px) {
  .site-footer__col--nav { grid-template-columns: 1fr; gap: 8px; }
  .site-footer__menu li { padding: 6px 0; font-size: 13px; }
}

/* ============================================================
   Interview Page 下層 (Figma 955:6646)
   ============================================================ */
.interview-page { padding-bottom: 0; }

/* MV: mv_interview-all.png */
.interview-hero {
  position: relative;
  background-image: url("../images/mv_interview-all.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  aspect-ratio: 1440 / 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.interview-hero__inner {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.interview-hero__en {
  font-family: var(--font-jp);
  font-size: clamp(20px, 2.4vw, 32px);
  color: #fff;
  font-weight: 500;
  letter-spacing: .08em;
}
.interview-hero__jp {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 700;
  letter-spacing: .12em;
  color: #fff;
}

/* 一覧セクション: bg_interview_list.png */
.interview-list-section {
  padding: 80px 0 120px;
  background-image: url("../images/bg_interview_list.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--color-navy);
  color: #fff;
}
.interview-list-section__lead {
  text-align: center;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 500;
  letter-spacing: .06em;
  margin-bottom: 64px;
  color: #fff;
}

@media (max-width: 1024px) {
  .interview-hero { aspect-ratio: 440 / 240; }
  .interview-list-section { padding: 60px 0 80px; }
  .interview-list-section__lead { margin-bottom: 40px; font-size: 14px; }
}

/* ============================================================
   Privacy Page (下層)
   ============================================================ */
.privacy-page { padding-bottom: 0; }

.privacy-hero {
  background: var(--color-navy);
  color: #fff;
  text-align: center;
  padding: clamp(48px, 6vw, 80px) 24px;
}
.privacy-hero__inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.privacy-hero__en {
  font-family: var(--font-jp);
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(255,255,255,.85);
}
.privacy-hero__jp {
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 700;
  letter-spacing: .12em;
}

.privacy-content {
  padding: 80px 0 100px;
  background: #fff;
}
.privacy-content .l-container { max-width: 880px; }
.privacy-content__intro {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 2;
  margin-bottom: 48px;
}

.privacy-block {
  padding: 32px 0;
  border-top: 1px solid var(--color-line);
}
.privacy-block:last-child { border-bottom: 1px solid var(--color-line); }
.privacy-block__title {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.privacy-block p {
  font-size: clamp(14px, 1.05vw, 15px);
  line-height: 1.9;
  color: var(--color-text);
}
.privacy-block__list {
  margin-top: 12px;
  padding-left: 20px;
  list-style: disc;
}
.privacy-block__list li {
  font-size: clamp(14px, 1.05vw, 15px);
  line-height: 1.9;
  padding: 4px 0;
}
.privacy-block__contact a { color: var(--color-navy); text-decoration: underline; }

@media (max-width: 767px) {
  .privacy-content { padding: 56px 0 72px; }
  .privacy-block { padding: 24px 0; }
}

/* ============================================================
   Misc
   ============================================================ */
.interview-list__empty,
.faq-list__empty {
  text-align: center;
  color: var(--color-muted);
  padding: 40px 0;
}
