/* ============================================
   TADAIMA — style.css
   カラー: ネイビー × ゴールド（パターンA）
   ============================================ */

/* ── CSS Variables ── */
:root {
  --navy:       #14213D;
  --navy-mid:   #1E3057;
  --navy-light: #2B4275;
  --gold:       #C9A96E;
  --gold-light: #E8D5B0;
  --gold-pale:  #F7F1E6;
  --off-white:  #F5F3EE;
  --white:      #FEFEFE;
  --text:       #14213D;
  --text-mid:   #3D4F6E;
  --text-muted: #7A849A;
  --border:     rgba(20, 33, 61, 0.12);

  --font-min:   'Shippori Mincho B1', serif;
  --font-sans:  'Noto Sans JP', sans-serif;
  --font-en:    'Cormorant Garamond', serif;

  --max-w: 1160px;
  --header-h: 72px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--off-white);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }

/* ── Utility ── */
.br-pc { display: block; }
.br-sp { display: none; }

/* ── Fade-in ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-in.is-visible { opacity: 1; transform: none; }

/* ── Section common ── */
.section-label {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: #B8924A;
  font-weight: 300;
  display: block;
  margin-bottom: 8px;
}
.section-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
}
.section-heading {
  font-family: var(--font-min);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}
.section-header {
  margin-bottom: 48px;
}
.section-header--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
}
.btn--primary {
  background: var(--navy);
  color: var(--white);
  border: 1.5px solid var(--navy);
}
.btn--primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(20, 33, 61, 0.3);
}
.btn--outline:hover {
  border-color: var(--navy);
  background: rgba(20, 33, 61, 0.04);
}
.btn--white {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--white);
  font-weight: 700;
}
.btn--white:hover {
  background: var(--gold-pale);
  border-color: var(--gold-pale);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn--outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border: 1.5px solid var(--gold);
  font-weight: 700;
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn--cta {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--white);
  font-weight: 700;
  padding: 16px 48px;
  letter-spacing: 0.1em;
}
.btn--cta:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--gold);
}

/* ── Link arrow ── */
.link-arrow {
  font-size: 12px;
  color: var(--navy);
  letter-spacing: 0.05em;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: gap 0.2s, color 0.2s;
}
.link-arrow::after { content: '→'; }
.link-arrow:hover { color: var(--gold); gap: 10px; }


/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.header--scrolled {
  box-shadow: 0 2px 16px rgba(20, 33, 61, 0.07);
}
.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  font-family: var(--font-min);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.header__logo:hover { color: var(--gold); }
.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.header__nav-link {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--text-mid);
  font-weight: 300;
  transition: color 0.2s;
  position: relative;
}
.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s var(--ease-out);
}
.header__nav-link:hover { color: var(--navy); }
.header__nav-link:hover::after { width: 100%; }
.header__nav-link--cta {
  background: var(--navy);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 3px;
  letter-spacing: 0.05em;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
}
.header__nav-link--cta::after { display: none; }
.header__nav-link--cta:hover { background: var(--navy-mid); color: var(--white); }
.header__burger { display: none; }


/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.mobile-menu__link {
  font-family: var(--font-min);
  font-size: 24px;
  color: var(--white);
  letter-spacing: 0.15em;
  transition: color 0.2s;
}
.mobile-menu__link:hover { color: var(--gold); }


/* ============================================
   HERO — 左右分割（PC）/ 1枚画像（モバイル）
   ============================================ */

/* ── モバイル（デフォルト）── */
.hero {
  margin-top: var(--header-h);
  position: relative;
  height: calc(100vh - var(--header-h));
  min-height: 500px;
  overflow: hidden;
}

/* モバイル：右パネル（エステ）を全面背景として使用 */
.hero__panel {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__panel--left  { display: none; }
.hero__panel--right { display: block; }

.hero__panel-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(14, 24, 48, 0.1);
}
.hero__panel-label { display: none; }
.hero__panel-tag {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  font-weight: 300;
  display: block;
}
.hero__panel-name {
  font-family: var(--font-min);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  display: block;
}

/* モバイル用：全面ネイビーオーバーレイ */
.hero__mobile-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(14, 24, 48, 0.52);
  z-index: 1;
}

/* テキスト：モバイルで中央に絶対配置 */
.hero__center {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  width: 88%;
  padding: 0;
  background: none;
  border: none;
}
.hero__label {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  display: block;
  margin-bottom: 16px;
}
.hero__heading {
  font-family: var(--font-min);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.hero__heading em {
  font-style: normal;
  color: var(--gold);
  position: relative;
  display: inline-block;
}
.hero__heading em::after {
  content: '';
  position: absolute;
  bottom: 1px; left: 0; right: 0;
  height: 1.5px;
  background: rgba(201,169,110,0.45);
}
.hero__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.hero__actions .btn { width: 88%; }

/* モバイル用：下部2事業ラベル */
.hero__mobile-labels {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  display: flex;
  align-items: stretch;
  border-top: 1px solid rgba(201,169,110,0.25);
  background: rgba(14, 24, 48, 0.65);
}
.hero__mobile-label {
  flex: 1;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__mobile-label-divider {
  width: 1px;
  background: rgba(201,169,110,0.3);
}

.hero__divider     { display: none; }
.hero__scroll-hint { display: none; }

/* ── PC（769px以上） ── */
@media (min-width: 769px) {
  .hero {
    display: flex;
    flex-direction: row;
    height: calc(100vh - var(--header-h));
    min-height: 560px;
    position: relative;
    overflow: hidden;
  }
  /* 両パネルを横並びに戻す */
  .hero__panel {
    position: relative;
    top: auto; left: auto; right: auto; bottom: auto;
    flex: 1;
    height: 100%;
    transition: flex 0.5s var(--ease-out);
  }
  .hero__panel--left  { display: block; }
  .hero__panel--right { display: block; }
  .hero__panel:hover  { flex: 1.08; }
  .hero__panel:hover .hero__panel-overlay { background: rgba(14,24,48,0.05); }

  /* パネルラベル復元 */
  .hero__panel-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px 36px;
    border-top: 1px solid rgba(255,255,255,0.12);
    background: linear-gradient(to top, rgba(14,24,48,0.72) 0%, rgba(14,24,48,0.4) 60%, transparent 100%);
  }
  .hero__panel-name { font-size: 16px; }

  /* モバイル専用要素を非表示 */
  .hero__mobile-overlay { display: none; }
  .hero__mobile-labels  { display: none; }

  .hero__center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    width: 72vw;
    max-width: 560px;
    padding: 40px 48px;
    background: rgba(14, 24, 48, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(201,169,110,0.3);
    border-radius: 4px;
    text-align: center;
  }
  .hero__heading {
    font-size: clamp(24px, 3.5vw, 40px);
    margin-bottom: 32px;
  }
  .hero__actions {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
  }
  .hero__actions .btn { width: auto; }

  .hero__divider {
    display: block;
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: var(--gold);
    opacity: 0.7;
    z-index: 10;
  }
  .hero__divider::before,
  .hero__divider::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
  }
  .hero__divider::before { top: 40px; }
  .hero__divider::after  { bottom: 40px; }

  .hero__scroll-hint {
    display: flex;
    position: absolute;
    bottom: 28px; left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 20;
  }
  .hero__scroll-hint span {
    font-family: var(--font-en);
    font-size: 9px;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.35);
  }
  .hero__scroll-line {
    width: 1px;
    height: 36px;
    background: var(--gold);
    animation: scroll-drop 1.8s var(--ease-out) infinite;
    transform-origin: top;
  }
  @keyframes scroll-drop {
    0%   { transform: scaleY(0); opacity: 1; }
    60%  { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(1); opacity: 0; }
  }
}





.mission {
  background: var(--navy);
  padding: 120px 40px;
}
.mission__inner {
  max-width: 760px;
  margin: 0 auto;
}
.mission__label-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.mission__line {
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}
.mission .section-label {
  color: rgba(201,169,110,0.75);
  margin-bottom: 0;
}
.mission__heading {
  font-family: var(--font-min);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.mission__heading em {
  font-style: normal;
  color: var(--gold);
}
.mission__sub {
  font-family: var(--font-min);
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.15em;
  margin-bottom: 40px;
  font-weight: 400;
}
.mission__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 44px;
}
.mission__body p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 2.2;
  font-weight: 300;
}
.mission .link-arrow {
  color: var(--gold-light);
  border-color: var(--gold);
}
.mission .link-arrow:hover { color: var(--gold); }

@media (max-width: 768px) {
  .mission { padding: 80px 20px; }
  .mission__heading { font-size: 28px; }
  .mission__body p { font-size: 14px; }
}


/* ============================================
   BUSINESS
   ============================================ */
.business {
  background: var(--off-white);
  padding: 100px 40px;
}
.business__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.business__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* カード */
.biz-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 28px 32px;
  position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  overflow: hidden;
}
.biz-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.3s;
}
.biz-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(20, 33, 61, 0.08);
}
.biz-card:hover::before { background: var(--gold); }

/* テキストエリア */
.biz-card__body-wrap {
  display: contents;
}

.biz-card__icon {
  color: var(--navy);
  margin-bottom: 20px;
  opacity: 0.7;
}
.biz-card__title {
  font-family: var(--font-min);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.4;
}
.biz-card__en {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 16px;
}
.biz-card__body {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 24px;
}
.biz-card__link {
  font-size: 12px;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.biz-card__link:hover {
  color: var(--gold);
  padding-left: 4px;
}


/* ============================================
   NEWS
   ============================================ */
.news {
  background: var(--white);
  padding: 120px 40px;
  border-top: 1px solid var(--border);
}
.news__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.news__list {
  border-top: 1px solid var(--border);
}
.news__item {
  border-bottom: 1px solid var(--border);
}
.news__link {
  display: grid;
  grid-template-columns: 88px 48px 1fr;
  align-items: baseline;
  column-gap: 12px;
  padding: 20px 0;
  transition: padding-left 0.2s;
}
.news__link:hover { padding-left: 8px; }
.news__date {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #4A5568;
  font-weight: 300;
  white-space: nowrap;
}
.news__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 6px;
  border-radius: 2px;
  white-space: nowrap;
  text-align: center;
}
.news__tag--seitai  { background: rgba(20,33,61,0.08);  color: var(--navy); }
.news__tag--esthe   { background: rgba(201,169,110,0.2); color: #8B6030; }
.news__tag--it      { background: rgba(20,33,61,0.05);  color: var(--text-mid); }
.news__tag--company { background: rgba(20,33,61,0.05);  color: var(--text-muted); }
.news__title {
  font-size: 14px;
  color: var(--text);
  font-weight: 400;
  line-height: 1.7;
  transition: color 0.2s;
}
.news__link:hover .news__title { color: var(--navy-mid); }


/* ============================================
   OUR SALON
   ============================================ */
.salon {
  background: #EDE8DF;
  padding: 100px 40px;
}
.salon__inner {
  max-width: 1040px;
  margin: 0 auto;
}
.salon__subtitle { display: none; }

/* カード：左右分割 */
.salon__card {
  display: flex;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(20,33,61,0.07);
  margin-bottom: 28px;
  transition: box-shadow 0.3s var(--ease-out);
}
.salon__card:last-child { margin-bottom: 0; }
.salon__card:hover {
  box-shadow: 0 12px 40px rgba(20,33,61,0.12);
}

/* 画像：左側 */
.salon__card-img {
  flex: 0 0 42%;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s var(--ease-out);
  overflow: hidden;
}
.salon__card:hover .salon__card-img { transform: scale(1.03); }

/* 逆順（画像右） */
.salon__card--reverse { flex-direction: row-reverse; }

/* テキスト側 */
.salon__card-body {
  flex: 1;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* タグ */
.salon__card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: rgba(201,169,110,0.12);
  color: #8B6030;
  border: 1px solid rgba(201,169,110,0.35);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.salon__card-tag--esthe {
  background: rgba(201,169,110,0.12);
  color: #8B6030;
  border-color: rgba(201,169,110,0.35);
}

/* タイトル */
.salon__card-title {
  font-family: var(--font-min);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
  border-bottom: 2px solid var(--gold-light);
  display: inline-block;
  padding-bottom: 6px;
}
.salon__card-title--sm {
  font-size: 18px;
}
.salon__card-kana {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* 本文 */
.salon__card-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.95;
  font-weight: 300;
  margin: 18px 0 24px;
}
.salon__card-desc strong {
  color: var(--navy);
  font-weight: 500;
}

/* 特徴タグ */
.salon__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin-bottom: 32px;
}
.salon__tags li {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid var(--gold-light);
  padding: 5px 14px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.salon__tags--navy li {
  color: var(--navy);
  border-color: rgba(20,33,61,0.2);
}

/* ボタン */
.salon__card-btn {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  border-radius: 4px;
  align-self: flex-start;
  transition: background 0.25s var(--ease-out);
}
.salon__card-btn:hover { background: var(--navy-mid); }
.salon__card-btn--navy {
  background: var(--navy);
}

@media (max-width: 768px) {
  .salon { padding: 72px 20px; }
  .salon__card {
    flex-direction: column;
  }
  .salon__card--reverse {
    flex-direction: column;
  }
  .salon__card-img {
    flex: none;
    width: 100%;
    min-height: 240px;
  }
  .salon__card-body { padding: 28px 24px 32px; }
  .salon__card-title { font-size: 20px; }
  .salon__card-btn { width: 100%; text-align: center; }
}


/* ============================================
   GROWTH
   ============================================ */
.growth {
  background: #1E2D45;
  padding: 100px 40px;
}
.growth__inner {
  max-width: 860px;
  margin: 0 auto;
}
.growth__label-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.growth__label-line {
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.growth__label {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(201,169,110,0.75);
  font-weight: 300;
}
.growth__heading {
  font-family: var(--font-min);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}
.growth__heading em {
  font-style: normal;
  color: var(--gold);
}

/* 本文グリッド：左テキスト・右タグ＋ボタン */
.growth__body-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 60px;
  align-items: start;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 44px;
}
.growth__message {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.growth__message p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 2.1;
  font-weight: 300;
  margin: 0;
}
.growth__message strong {
  color: var(--gold-light);
  font-weight: 500;
}

/* 右側：タグ＋ボタン */
.growth__aside {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 4px;
}
.growth__tags {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.growth__tags li {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 14px;
  letter-spacing: 0.05em;
  font-weight: 300;
}
.growth__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.growth__actions .btn--primary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  text-align: center;
}
.growth__actions .btn--primary:hover {
  background: var(--gold-pale);
  border-color: var(--gold-pale);
}
.growth__actions .btn--outline {
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.25);
  text-align: center;
}
.growth__actions .btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: transparent;
}

@media (max-width: 768px) {
  .growth { padding: 72px 20px; }
  .growth__body-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .growth__actions .btn { width: 100%; text-align: center; }
}


/* ============================================
   CTA
   ============================================ */
.cta {
  background: var(--navy);
  padding: 100px 40px;
  text-align: center;
}
.cta__inner { max-width: 640px; margin: 0 auto; }
.cta__label {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold);
  opacity: 0.8;
  display: block;
  margin-bottom: 24px;
}
.cta__heading {
  font-family: var(--font-min);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}
.cta__body {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 40px;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0D1826;
  color: rgba(255, 255, 255, 0.5);
  padding: 64px 40px 40px;
}
.footer__inner { max-width: var(--max-w); margin: 0 auto; }
.footer__top {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}
.footer__logo {
  font-family: var(--font-min);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.footer__tagline {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__nav-heading {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer__nav-link {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer__nav-link:hover { color: var(--gold-light); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__address {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.3);
}
.footer__copy {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .br-pc { display: none; }
  .br-sp { display: block; }

  .header__inner { padding: 0 20px; }
  .header__nav { display: none; }
  .header__burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px; height: 16px;
    background: none; border: none;
    cursor: pointer; padding: 0;
  }
  .header__burger span {
    display: block;
    height: 1.5px;
    background: var(--navy);
    transition: all 0.3s;
    transform-origin: center;
  }
  .header__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .header__burger.active span:nth-child(2) { opacity: 0; }
  .header__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mission { padding: 72px 20px; }
  .mission__heading { font-size: 28px; }

  .business { padding: 72px 20px; }
  .business__grid { grid-template-columns: 1fr; gap: 16px; }
  .biz-card { padding: 28px 24px; }

  .news { padding: 72px 20px; }
  .news__link {
    grid-template-columns: 76px 44px 1fr;
    column-gap: 8px;
  }

  .section-header--row { flex-direction: column; align-items: flex-start; gap: 16px; }

  .cta { padding: 72px 20px; }

  .footer { padding: 48px 20px 32px; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__nav { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .business__grid { gap: 12px; }
  .footer__nav { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .btn { text-align: center; }
}


/* ============================================
   CONTACT PAGES（form / confirm / finish 共通）
   ============================================ */
.contact-page {
  background: #EDE8DF;
  min-height: 100vh;
  padding-top: var(--header-h);
  display: flex;
  flex-direction: column;
}
.contact-page-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 32px 100px;
}
.contact-page-header {
  margin-bottom: 40px;
  max-width: 868px;
  margin-left: auto;
  margin-right: auto;
}
.contact-page-header .section-label { display: block; margin-bottom: 8px; }
.contact-page-title {
  font-family: var(--font-min);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 10px;
}
.contact-page-lead {
  font-size: 13px;
  color: #3D4F6E;
  line-height: 1.9;
  font-weight: 300;
}

/* 2カラムグリッド */
.contact-shell {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: start;
  max-width: 868px;
  margin: 0 auto;
}
.contact-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* フォームカード */
.form-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 36px 40px;
  box-shadow: 0 4px 24px rgba(20,33,61,0.07);
  max-width: 560px;
}
.form-card-title {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.form-card-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201,169,110,0.3);
}
.form-group { margin-bottom: 22px; }
.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 7px;
  letter-spacing: 0.05em;
}
.form-required {
  font-size: 9px;
  font-weight: 700;
  color: var(--white);
  background: var(--gold);
  padding: 2px 7px;
  border-radius: 2px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--navy);
  background: #F9F8F5;
  border: 1px solid rgba(20,33,61,0.15);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
}
.form-textarea {
  height: 150px;
  resize: vertical;
  line-height: 1.8;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2314213D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: #F9F8F5;
  cursor: pointer;
}
.form-select:focus { background-color: var(--white); }
.form-error {
  margin-top: 6px;
  font-size: 12px;
  color: #C0392B;
}
.form-divider {
  height: 1px;
  background: rgba(20,33,61,0.07);
  margin: 24px 0;
}
.privacy-box {
  background: #F5F3EE;
  border: 1px solid rgba(20,33,61,0.08);
  border-radius: 4px;
  padding: 14px 16px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.9;
  height: 90px;
  overflow-y: auto;
  margin-bottom: 12px;
}
.privacy-check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 400;
}
.privacy-check-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
}
.form-submit-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.btn-submit {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 14px 48px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  -webkit-appearance: none;
}
.btn-submit:hover { background: var(--navy-mid); transform: translateY(-1px); }
.form-note { font-size: 11px; color: var(--text-muted); }

/* サイドバー */
.contact-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.side-card {
  background: var(--white);
  border-radius: 8px;
  padding: 24px 24px 26px;
  box-shadow: 0 2px 12px rgba(20,33,61,0.05);
}
.side-card-label {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 12px;
  display: block;
}
.side-card-title {
  font-family: var(--font-min);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.flow-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.flow-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(20,33,61,0.06);
}
.flow-item:last-child { border-bottom: none; }
.flow-num {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}
.flow-text strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.flow-text span {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================
   CONFIRM PAGE
   ============================================ */
.confirm-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 36px 40px;
  box-shadow: 0 4px 24px rgba(20,33,61,0.07);
  max-width: 560px;
  margin: 0 auto;
}
.confirm-card-title {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.confirm-card-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201,169,110,0.3);
}
.confirm-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 36px;
}
.confirm-table tr { border-bottom: 1px solid rgba(20,33,61,0.07); }
.confirm-table th {
  width: 140px;
  padding: 16px 16px 16px 0;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  vertical-align: top;
  text-align: left;
  white-space: nowrap;
}
.confirm-table td {
  padding: 16px 0;
  font-size: 14px;
  color: var(--navy);
  line-height: 1.8;
  font-weight: 300;
  vertical-align: top;
}
.confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-confirm {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 14px 52px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  -webkit-appearance: none;
}
.btn-confirm:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-back {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 14px 36px;
  border: 1px solid rgba(20,33,61,0.2);
  border-radius: 3px;
  cursor: pointer;
  transition: border-color 0.25s;
  -webkit-appearance: none;
}
.btn-back:hover { border-color: var(--navy); }

/* ============================================
   FINISH PAGE
   ============================================ */
.finish-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 80px 24px 100px;
  text-align: center;
}
.finish-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.finish-icon svg { width: 24px; height: 24px; color: var(--gold); }
.finish-label {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-weight: 300;
  display: block;
  margin-bottom: 16px;
}
.finish-card {
  background: var(--white);
  border-radius: 8px;
  padding: 40px 36px 44px;
  box-shadow: 0 4px 24px rgba(20,33,61,0.07);
  margin-bottom: 32px;
}
.finish-title {
  font-family: var(--font-min);
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 20px;
}
.finish-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 20px;
  opacity: 0.5;
}
.finish-body {
  font-size: 14px;
  color: #3D4F6E;
  line-height: 2;
  font-weight: 300;
  margin-bottom: 16px;
}
.finish-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.9;
}
.btn-home {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 14px 48px;
  border-radius: 3px;
  transition: background 0.25s, transform 0.2s;
}
.btn-home:hover { background: var(--navy-mid); transform: translateY(-1px); }

/* レスポンシブ */
@media (max-width: 900px) {
  .contact-shell { grid-template-columns: 1fr; }
  .contact-side { flex-direction: row; flex-wrap: wrap; }
  .side-card { flex: 1 1 240px; }
}
@media (max-width: 640px) {
  .contact-page-inner { padding: 48px 16px 72px; }
  .form-card { padding: 24px 20px 28px; }
  .confirm-card { padding: 24px 20px 28px; }
  .finish-wrap { padding: 60px 16px 72px; }
  .finish-card { padding: 28px 24px 32px; }
  .contact-side { flex-direction: column; }
  .btn-submit, .btn-home { width: 100%; text-align: center; }
  .form-submit-wrap { flex-direction: column; align-items: stretch; }
  .confirm-table th { width: 100px; font-size: 10px; }
  .confirm-actions { flex-direction: column-reverse; }
  .btn-confirm, .btn-back { width: 100%; text-align: center; }
}

/* ============================================
   COMPANY PAGE
   ============================================ */
/* ページヘッダー */
    .company-hero {
      background: var(--navy);
      padding: 80px 40px 72px;
      margin-top: var(--header-h);
    }
    .company-hero__inner {
      max-width: var(--max-w);
      margin: 0 auto;
    }
    .company-hero__label {
      font-family: var(--font-en);
      font-size: 11px;
      letter-spacing: 0.3em;
      color: rgba(201,169,110,0.75);
      font-weight: 300;
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 20px;
    }
    .company-hero__label::before {
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background: var(--gold);
      opacity: 0.6;
    }
    .company-hero__title {
      font-family: var(--font-min);
      font-size: clamp(30px, 5vw, 48px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.4;
      margin-bottom: 16px;
    }
    .company-hero__desc {
      font-size: 14px;
      color: rgba(255,255,255,0.5);
      font-weight: 300;
      letter-spacing: 0.05em;
    }

    /* ページ内ナビ */
    .company-nav {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: var(--header-h);
      z-index: 10;
    }
    .company-nav__inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      gap: 0;
    }
    .company-nav__link {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      padding: 16px 24px;
      border-bottom: 2px solid transparent;
      transition: color 0.2s, border-color 0.2s;
    }
    .company-nav__link:hover {
      color: var(--navy);
      border-bottom-color: var(--gold);
    }

    /* 共通セクション */
    .company-section {
      padding: 96px 40px;
    }
    .company-section--beige { background: #EDE8DF; }
    .company-section--white { background: var(--white); }
    .company-section--navy  { background: var(--navy); }
    .company-section__inner {
      max-width: var(--max-w);
      margin: 0 auto;
    }
    .company-section__header {
      margin-bottom: 56px;
    }

    /* ── MISSION ── */
    .mission-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .mission-main__heading {
      font-family: var(--font-min);
      font-size: clamp(26px, 4vw, 40px);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.5;
      margin-bottom: 8px;
    }
    .mission-main__heading em {
      font-style: normal;
      color: var(--gold);
    }
    .mission-main__sub {
      font-family: var(--font-min);
      font-size: 13px;
      color: var(--text-muted);
      letter-spacing: 0.15em;
      margin-bottom: 32px;
    }
    .mission-main__body {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .mission-main__body p {
      font-size: 15px;
      color: var(--text-mid);
      line-height: 2.1;
      font-weight: 300;
    }
    .mission-values {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .mission-value {
      border-left: 2px solid var(--gold);
      padding: 4px 0 4px 20px;
    }
    .mission-value__en {
      font-family: var(--font-en);
      font-size: 11px;
      letter-spacing: 0.2em;
      color: var(--gold);
      font-weight: 300;
      margin-bottom: 6px;
      display: block;
    }
    .mission-value__title {
      font-family: var(--font-min);
      font-size: 18px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .mission-value__body {
      font-size: 13px;
      color: var(--text-mid);
      line-height: 1.9;
      font-weight: 300;
    }

    /* ── PHILOSOPHY：エッセイ ── */
    .philosophy-essay {
      max-width: 720px;
      margin: 0 auto 80px;
      text-align: center;
    }
    .philosophy-essay__kicker {
      font-family: var(--font-min);
      font-size: 11px;
      letter-spacing: 0.3em;
      color: var(--text-muted);
      margin-bottom: 20px;
      display: block;
    }
    .philosophy-essay__heading {
      font-family: var(--font-min);
      font-size: clamp(22px, 3.5vw, 32px);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.5;
      margin-bottom: 32px;
    }
    .philosophy-essay__heading em {
      font-style: normal;
      color: var(--gold);
      border-bottom: 1.5px solid var(--gold-light);
      padding-bottom: 2px;
    }
    .philosophy-essay__body {
      font-size: 15px;
      color: var(--navy);
      line-height: 2.2;
      font-weight: 400;
      text-align: left;
    }
    .philosophy-essay__body p + p { margin-top: 20px; }

    /* ── PHILOSOPHY：事業の繋がり図 ── */
    .philosophy-connect {
      background: var(--navy);
      border-radius: 12px;
      padding: 52px 48px;
      margin-bottom: 80px;
    }
    .philosophy-connect__title {
      font-family: var(--font-en);
      font-size: 11px;
      font-weight: 300;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.3em;
      text-align: center;
      margin-bottom: 12px;
    }
    .philosophy-connect__headline {
      font-family: var(--font-min);
      font-size: clamp(16px, 2vw, 22px);
      font-weight: 700;
      color: var(--white);
      text-align: center;
      letter-spacing: 0.05em;
      margin-bottom: 44px;
    }
    .philosophy-connect__diagram {
      display: grid;
      grid-template-columns: 1fr 60px 1fr 60px 1fr;
      align-items: center;
      gap: 0;
      margin-bottom: 40px;
    }
    .connect-node {
      text-align: center;
      padding: 24px 20px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(201,169,110,0.2);
      border-radius: 8px;
    }
    .connect-node__en {
      font-family: var(--font-en);
      font-size: 10px;
      letter-spacing: 0.2em;
      color: var(--gold);
      font-weight: 300;
      display: block;
      margin-bottom: 8px;
    }
    .connect-node__title {
      font-family: var(--font-min);
      font-size: 15px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }
    .connect-node__body {
      font-size: 11px;
      color: rgba(255,255,255,0.45);
      line-height: 1.7;
      font-weight: 300;
    }
    .connect-arrow {
      text-align: center;
      color: var(--gold);
      opacity: 0.6;
      font-size: 28px;
      font-weight: 300;
    }
    .philosophy-connect__center {
      text-align: center;
      margin-top: 8px;
    }
    .philosophy-connect__center-label {
      display: inline-block;
      background: rgba(201,169,110,0.15);
      border: 1px solid rgba(201,169,110,0.35);
      border-radius: 20px;
      padding: 10px 28px;
      font-family: var(--font-min);
      font-size: 14px;
      font-weight: 700;
      color: var(--gold-light);
      letter-spacing: 0.05em;
    }

    /* ── PHILOSOPHY：代表メッセージ ── */
    .philosophy-message {
      max-width: 760px;
      margin: 0 auto;
    }
    .philosophy-message__lead {
      font-family: var(--font-min);
      font-size: clamp(18px, 2.5vw, 26px);
      font-weight: 700;
      color: var(--navy);
      line-height: 1.6;
      margin-bottom: 32px;
      padding-left: 20px;
      border-left: 3px solid var(--gold);
    }
    .philosophy-message__text {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 2.1;
      font-weight: 300;
    }
    .philosophy-message__text p + p { margin-top: 18px; }
    .philosophy-message__sig {
      margin-top: 36px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: baseline;
      gap: 16px;
    }
    .philosophy-message__sig-role {
      font-size: 11px;
      color: var(--text-muted);
      letter-spacing: 0.1em;
    }
    .philosophy-message__sig-name {
      font-family: var(--font-min);
      font-size: 20px;
      font-weight: 700;
      color: var(--navy);
    }

    /* ── MISSION / VISION / VALUE ── */
    .mission-values {
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin-top: 60px;
      padding-top: 60px;
      border-top: 1px solid var(--border);
    }
    .mission-value {
      border-left: 2px solid var(--gold);
      padding: 4px 0 4px 20px;
    }
    .mission-value__en {
      font-family: var(--font-en);
      font-size: 11px;
      letter-spacing: 0.2em;
      color: var(--gold);
      font-weight: 300;
      margin-bottom: 6px;
      display: block;
    }
    .mission-value__title {
      font-family: var(--font-min);
      font-size: 18px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .mission-value__body {
      font-size: 13px;
      color: var(--text-mid);
      line-height: 1.9;
      font-weight: 300;
    }
    .mission-values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    @media (max-width: 900px) {
      .philosophy-connect__diagram { grid-template-columns: 1fr; gap: 8px; }
      .connect-arrow { transform: rotate(90deg); }
      .mission-values-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .philosophy-connect { padding: 36px 24px; }
    }

    /* ── OVERVIEW ── */
    .overview-table {
      width: 100%;
      border-collapse: collapse;
      max-width: 860px;
    }
    .overview-table tr {
      border-bottom: 1px solid var(--border);
    }
    .overview-table tr:first-child {
      border-top: 1px solid var(--border);
    }
    .overview-table th {
      width: 180px;
      padding: 22px 24px 22px 0;
      font-size: 12px;
      font-weight: 500;
      color: var(--text-muted);
      letter-spacing: 0.08em;
      vertical-align: top;
      text-align: left;
      white-space: nowrap;
    }
    .overview-table td {
      padding: 22px 0;
      font-size: 14px;
      color: var(--text);
      line-height: 1.85;
      font-weight: 300;
      vertical-align: top;
    }
    .overview-table td strong {
      font-weight: 500;
      color: var(--navy);
    }
    .overview-date {
      font-size: 11px;
      color: var(--text-muted);
      margin-top: 12px;
      text-align: right;
      max-width: 860px;
    }

    /* ── HISTORY ── */
    .history-timeline {
      position: relative;
      max-width: 760px;
    }
    .history-timeline::before {
      content: '';
      position: absolute;
      left: 96px;
      top: 0;
      bottom: 0;
      width: 1px;
      background: var(--border);
    }
    .history-item {
      display: grid;
      grid-template-columns: 96px 1fr;
      gap: 0 40px;
      padding: 28px 0;
      border-bottom: 1px solid var(--border);
      position: relative;
    }
    .history-item:first-child { padding-top: 0; }
    .history-item:last-child { border-bottom: none; }
    .history-item::after {
      content: '';
      position: absolute;
      left: 90px;
      top: 34px;
      width: 13px;
      height: 13px;
      border-radius: 50%;
      background: var(--white);
      border: 2px solid var(--gold);
    }
    .history-item:first-child::after { top: 6px; }
    .history-year {
      font-family: var(--font-en);
      font-size: 13px;
      font-weight: 500;
      color: var(--gold);
      letter-spacing: 0.05em;
      padding-top: 2px;
      text-align: right;
      padding-right: 20px;
    }
    .history-content__title {
      font-family: var(--font-min);
      font-size: 15px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
    }
    .history-content__body {
      font-size: 13px;
      color: var(--text-mid);
      line-height: 1.85;
      font-weight: 300;
    }

    @media (max-width: 900px) {
      .mission-grid { grid-template-columns: 1fr; gap: 48px; }
    }
    @media (max-width: 768px) {
      .company-hero { padding: 60px 20px 52px; }
      .company-nav__inner { padding: 0 16px; overflow-x: auto; }
      .company-nav__link { padding: 14px 16px; white-space: nowrap; }
      .company-section { padding: 72px 20px; }
      .overview-table th { width: 120px; font-size: 11px; }
      .history-timeline::before { left: 72px; }
      .history-item { grid-template-columns: 72px 1fr; gap: 0 24px; }
      .history-item::after { left: 66px; }
    }

/* ============================================
   POLICY PAGE
   ============================================ */
.privacy-inner {
  max-width: 800px;
  margin: 0 auto;
}
.privacy-policy-block {
  padding-bottom: 72px;
  margin-bottom: 72px;
  border-bottom: 2px solid var(--border);
}
.privacy-policy-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.privacy-block-title {
  font-family: var(--font-min);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.privacy-intro {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 2;
  font-weight: 300;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.privacy-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.privacy-section:last-of-type { border-bottom: none; }
.privacy-heading {
  font-family: var(--font-min);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}
.privacy-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 2;
  font-weight: 300;
  margin-bottom: 12px;
}
.privacy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.privacy-list li {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  padding-left: 18px;
  position: relative;
}
.privacy-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.privacy-contact {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px 24px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.privacy-contact p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
}
.privacy-contact strong { font-weight: 700; color: var(--navy); }
.privacy-link {
  color: var(--gold);
  border-bottom: 1px solid rgba(201,169,110,0.4);
  transition: border-color 0.2s;
}
.privacy-link:hover { border-color: var(--gold); }
.privacy-date {
  font-size: 12px;
  color: var(--text-muted);
  text-align: right;
  margin-top: 40px;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .privacy-inner { padding: 0; }
}

/* ============================================
   BUSINESS PAGE
   ============================================ */
/* ── イントロ ── */
.biz-intro {
  background: #EDE8DF;
  padding: 64px 40px;
  border-bottom: 1px solid var(--border);
}
.biz-intro__inner {
  max-width: 760px;
  margin: 0 auto;
}
.biz-intro__kicker {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 16px;
  display: block;
}
.biz-intro__heading {
  font-family: var(--font-min);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 20px;
}
.biz-intro__heading em {
  font-style: normal;
  color: var(--gold);
  display: block;
}
.biz-intro__divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin-bottom: 20px;
}
.biz-intro__body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 2.1;
  font-weight: 300;
}
@media (max-width: 768px) {
  .biz-intro { padding: 48px 20px; }
}

/* ── 交互レイアウト（view.html スタイル） ── */
.biz-alt-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 40px;
  display: flex;
  align-items: center;
  gap: 80px;
}
.biz-alt-container--rev { flex-direction: row-reverse; }

.biz-alt-image {
  flex: 1 1 50%;
}
.biz-alt-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.biz-alt-text { flex: 1 1 50%; }

.biz-alt-num {
  font-family: var(--font-min);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--navy);
  font-weight: 700;
  display: inline-block;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 3px 12px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.biz-alt-en {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  font-weight: 300;
  display: block;
  margin-bottom: 6px;
}
.biz-alt-heading {
  font-family: var(--font-min);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.biz-alt-heading strong {
  font-weight: 800;
  color: var(--navy);
}
.biz-alt-lead {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.6;
  border-left: 2px solid var(--gold);
  border-radius: 0;
  padding: 4px 0 4px 14px;
  margin-bottom: 20px;
}
.biz-alt-body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 2;
  font-weight: 300;
  margin-bottom: 32px;
}
.biz-alt-body p {
  margin-bottom: 12px;
}
.biz-alt-body p:last-child { margin-bottom: 0; }
.biz-alt-list {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.biz-alt-list li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 300;
  line-height: 1.7;
}
.biz-alt-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* シナジーセクション */
.biz-synergy {
  background: #1E2D45;
  padding: 100px 40px;
  text-align: center;
}
.biz-synergy__inner { max-width: 760px; margin: 0 auto; }
.biz-synergy__label {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(201,169,110,0.6);
  font-weight: 300;
  display: block;
  margin-bottom: 24px;
}
.biz-synergy__heading {
  font-family: var(--font-min);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}
.biz-synergy__heading em {
  font-style: normal;
}
.biz-synergy__gold {
  font-style: normal;
  color: var(--gold);
}
.biz-synergy__body {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 2.1;
  font-weight: 300;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .biz-alt-container,
  .biz-alt-container--rev { flex-direction: column; gap: 40px; padding: 72px 20px; }
}
@media (max-width: 768px) {
  .biz-synergy { padding: 72px 20px; }
}

.biz-alt-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.biz-alt-link {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  border: 1px solid rgba(20,33,61,0.25);
  padding: 9px 20px;
  border-radius: 2px;
  letter-spacing: 0.05em;
  transition: background 0.2s, border-color 0.2s;
}
.biz-alt-link:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.biz-section--beige .biz-alt-link {
  border-color: rgba(20,33,61,0.2);
}
