*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1A2744;
  --navy-deep: #0F1A30;
  /* 決定稿のブランド原色に合わせ、teal=青 / coral=赤 として再マッピング */
  --teal: #00A0E8;
  --teal-mid: #008FCF;
  --teal-light: #D6F0FF;
  --coral: #E60012;
  --coral-light: #FFEDEE;
  --red: #E60012;
  --gold: #D4B500;
  --white: #FFFFFF;
  --off-white: #F1F1F1;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;
}

/* 0.5.154: Mobile HERO typography and bottom alignment. */
@media (max-width: 768px) {
  .page-template-page-about .page-hero {
    align-items: flex-end !important;
    padding-bottom: 24px !important;
  }

  .page-template-page-about .page-hero h1 {
    font-size: 26px !important;
  }
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Hero（決定稿準拠：集合写真＋濃色テキスト） ────────────── */
.page-hero {
  margin-top: var(--header-height);
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: flex; align-items: flex-end;
  padding: 0;
  background: #1a2744 url('../img/hero-poster-default.avif') center 58% / cover no-repeat;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: none;
}
.page-hero .hero-bg-media::after { background: transparent; }
.hero-inner {
  max-width: none; margin: 0; width: 100%;
  padding: 0 64px 42px;
  position: relative; z-index: 1;
}
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.85); font-size: var(--font-caption); text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,0.6); font-size: var(--font-caption); }
.breadcrumb .current { color: #fff; font-weight: var(--weight-semibold); }
.page-hero h1 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: var(--weight-black); color: #fff;
  line-height: 1.15; letter-spacing: var(--tracking-tight);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.page-hero h1 span {
  display: block; font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: var(--weight-bold); color: #fff; letter-spacing: 0.18em;
  margin-bottom: 10px; font-family: 'Outfit', sans-serif; text-transform: uppercase;
}
.page-hero p {
  color: rgba(255,255,255,0.92); font-size: var(--font-lead); max-width: 620px; font-weight: var(--weight-medium);
}

/* ── Section Tabs ────────────────────────────── */
.section-nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky; top: var(--header-height); z-index: 50;
}
.section-nav-inner {
  width: 100%; max-width: 100%; min-width: 0; margin: 0;
  padding: 0 64px;
  display: flex; gap: 0; justify-content: space-between; overflow-x: auto;
}
.section-nav a {
  display: block; padding: 16px 28px;
  font-size: 0.83rem; font-weight: var(--weight-medium);
  color: var(--gray-600); text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all .2s;
}
.section-nav a:hover { color: var(--navy); border-bottom-color: var(--gray-300); }
.section-nav a.active { color: var(--teal); font-weight: var(--weight-bold); border-bottom-color: var(--teal); }

/* ── Common layout ───────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

section { padding: 100px 0; }
/* 背景は各セクションで明示指定（#vp/#attitude/#history/#access=off-white, #philosophy=青）。
   自動ストライプはヒーロー画像を潰すため使用しない。 */

.section-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem; font-weight: var(--weight-bold); letter-spacing: var(--tracking-label-wide);
  color: var(--teal); text-transform: uppercase;
  margin-bottom: 16px;
}

/* Keep in-page anchor markers stationary while the rest of each section reveals. */
html.ast-motion-ready .page-template-page-about section[id] .section-label.ast-reveal-item {
  transform: none;
}
.section-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: var(--weight-black); color: #000;
  line-height: var(--lh-heading); letter-spacing: var(--tracking-tight);
  margin-bottom: 20px;
}
.section-lead {
  font-size: var(--font-lead); color: #000;
  max-width: 600px; line-height: 1.8;
}

/* ── Philosophy（決定稿準拠：鮮やかな青背景） ───────────────── */
#philosophy {
  background: var(--teal);
  position: relative; overflow: hidden;
  padding: 280px 0;
  min-height: 1580px;
}
.philosophy-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px;
  align-items: center;
}
.philosophy-text .section-label { color: rgba(255,255,255,0.85); }
.philosophy-text .section-title { color: var(--white); }
.philosophy-text p { color: rgba(255,255,255,0.92); font-size: 0.97rem; line-height: var(--lh-lead); }
.philosophy-cards { display: flex; flex-direction: column; gap: 24px; }

/* カード基本形（白カード）。MISSION（白背景）とVALUE（青背景）で共通利用 */
.phil-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px; padding: 30px 34px;
  box-shadow: 0 2px 16px rgba(15,26,48,0.05);
  transition: transform .3s, box-shadow .3s;
}
.phil-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(15,26,48,0.10); }
.phil-card-num {
  font-family: 'Outfit', sans-serif;
  font-size: var(--font-card-title); font-weight: 800; letter-spacing: 0.02em;
  color: var(--teal); margin-bottom: 6px;
}
.phil-card h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.1rem; font-weight: var(--weight-bold); color: var(--navy);
  margin-bottom: 8px;
}
.phil-card p { font-size: 0.9rem; color: #111; line-height: var(--lh-body); }

/* MISSION：番号「01/」を横並びの大きめ表示に */
#mission { background: var(--off-white); }
#mission .philosophy-cards { gap: 18px; }
#mission .phil-card { display: grid; grid-template-columns: 64px 1fr; column-gap: 8px; align-items: start; }
#mission .phil-card-num { grid-row: span 2; font-size: 1.5rem; color: var(--teal); }
#mission .phil-card-num::after { content: '/'; margin-left: 2px; }
#mission .phil-card h3 { font-size: 1.12rem; }

/* VALUE：ラベルは赤 */
#philosophy .phil-card-num { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; color: var(--coral); }

/* ── CEO Message ─────────────────────────────── */
.ceo-grid {
  display: grid; grid-template-columns: 260px 1fr; gap: 56px;
  align-items: start;
}
.ceo-grid > *,
.ceo-message { min-width: 0; max-width: 100%; }
#ceo .container,
#vp .container { max-width: 1040px; }
.ceo-img-wrap {
  position: relative;
}
.ceo-photo {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; object-position: center top;
  border-radius: 8px; display: block;
  box-shadow: 0 4px 18px rgba(15,26,48,0.10);
}
.ceo-name-plate {
  margin-top: 20px; text-align: center;
}
.ceo-name-plate .role { font-size: var(--font-caption); color: var(--teal); font-weight: var(--weight-semibold); letter-spacing: 0.1em; }
.ceo-name-plate h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.4rem; font-weight: var(--weight-black); color: var(--navy); margin-top: 4px;
}
.ceo-name-plate .name-en { font-family: 'Outfit', sans-serif; font-size: 0.85rem; color: var(--gray-400); }

.ceo-message { overflow-wrap: anywhere; }
.ceo-message .big-quote {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: var(--weight-black); color: var(--navy);
  line-height: 1.3; letter-spacing: var(--tracking-tight);
  margin-bottom: 36px; padding-top: 44px; padding-bottom: 36px;
  border-bottom: 2px solid var(--gray-200);
  position: relative;
}
.ceo-message .big-quote::before {
  content: '"';
  font-family: 'Outfit', sans-serif;
  font-size: 4.5rem; font-weight: var(--weight-bold); color: #FFD500;
  position: absolute; top: -6px; left: 0;
  line-height: var(--lh-tight); pointer-events: none;
}
.ceo-message p {
  font-size: 0.96rem; color: #111; line-height: var(--lh-long);
  margin-bottom: 20px;
}
.ceo-signature {
  margin-top: 36px; display: flex; align-items: center; gap: 16px;
}
.ceo-signature-line { flex: 1; height: 1px; background: var(--gray-200); }
.ceo-signature span { font-size: 0.85rem; color: var(--gray-400); white-space: nowrap; }

/* ── History ─────────────────────────────────── */
#vp { background: #fff !important; }
#attitude { background: #fff !important; padding-bottom: 300px; }
#attitude .container > div[style*="margin-top"] { gap: 28px !important; }
#attitude .container > div[style*="margin-top"] > div { min-height: 190px; }
#history { background: var(--off-white); }
.history-grid {
  display: grid; grid-template-columns: 240px 1fr; gap: 0;
}
.history-side {
  position: relative; padding-right: 40px;
}
.history-side::after {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--teal), var(--navy));
}
.history-side-label {
  font-family: 'Outfit', sans-serif;
  font-size: 4rem; font-weight: 800; color: var(--navy);
  line-height: var(--lh-tight); opacity: 0.08; position: absolute; top: 0; left: 0;
}
.history-main { padding-left: 40px; }

.timeline { position: relative; }
.timeline-item {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 0; margin-bottom: 0;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute; left: 120px; top: 10px; bottom: -10px; width: 1px;
  background: var(--gray-200);
}
.timeline-item:last-child::before { display: none; }
.timeline-year {
  padding: 10px 24px 44px 0; text-align: right;
}
.timeline-year span {
  font-family: 'Outfit', sans-serif;
  font-size: var(--font-body); font-weight: var(--weight-bold); color: var(--teal);
}
.timeline-content {
  padding: 4px 0 44px 24px; position: relative;
}
.timeline-content::before {
  content: '';
  position: absolute; left: -5px; top: 12px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--teal); border: 2px solid var(--white);
  box-shadow: 0 0 0 3px var(--teal-light);
}
.timeline-content.major::before {
  background: var(--coral); box-shadow: 0 0 0 3px rgba(230,0,18,0.2);
  width: 14px; height: 14px; left: -7px; top: 10px;
}
.timeline-content h4 {
  font-weight: var(--weight-bold); font-size: 0.97rem; color: var(--navy);
  margin-bottom: 4px;
}
.timeline-content p { font-size: 0.86rem; color: #111; }
.milestone-badge {
  display: inline-block;
  background: var(--coral); color: var(--white);
  font-size: 0.68rem; font-weight: var(--weight-bold); padding: 2px 8px; border-radius: 4px;
  margin-bottom: 6px; letter-spacing: 0.05em;
}

/* ── Overview Table ──────────────────────────── */
#overview { }
.overview-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
.overview-table { border-collapse: collapse; width: 100%; }
.overview-table tr { border-bottom: 1px solid var(--gray-200); }
.overview-table tr:first-child { border-top: 1px solid var(--gray-200); }
.overview-table th {
  width: 160px; padding: 18px 0; vertical-align: top;
  font-size: var(--font-ui-sm); font-weight: var(--weight-semibold); color: var(--teal);
  letter-spacing: 0.05em; text-align: left;
}
.overview-table td {
  padding: 18px 0 18px 20px;
  font-size: 0.9rem; color: #111; vertical-align: top;
}
.overview-table td strong { color: var(--navy); font-weight: var(--weight-bold); }

/* ── Access ──────────────────────────────────── */
#access { background: #fff; }
.access-grid {
  display: grid; grid-template-columns: 560px 1fr; gap: 60px; align-items: start;
}
.access-grid > * { min-width: 0; }
.map-placeholder {
  aspect-ratio: 560 / 445;
  background: #6b7280;
  border-radius: 12px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white); font-weight: var(--weight-medium);
}
.map-placeholder .access-map {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  display: block;
  flex: 1 1 auto;
}

.access-info { }
.access-info h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.2rem; font-weight: var(--weight-bold); color: var(--navy); margin-bottom: 20px;
}
.access-route {
  background: var(--white); border-radius: 12px; padding: 24px;
  margin-bottom: 16px; border: 1px solid var(--gray-200);
}
.access-route .transport {
  display: flex; align-items: center; gap: 10px;
  font-size: 1rem; font-weight: var(--weight-bold); color: var(--teal);
  letter-spacing: 0.08em; margin-bottom: 8px;
}
.transport-icon {
  width: 30px; height: 30px;
  background: none; color: var(--teal);
  display: flex; align-items: center; justify-content: center;
}
.transport-icon svg { display: block; }
.access-route p { font-size: 1rem; color: #111; }
.access-address {
  background: var(--teal); color: var(--white);
  border: 1px solid transparent; border-radius: 12px; padding: 24px;
}
.access-address .transport {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px;
}
.access-address .transport-icon {
  flex: 0 0 30px;
  color: var(--white);
}
.access-address p { font-size: 1rem; opacity: 0.95; line-height: 1.8; }
.access-address strong { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.85); letter-spacing: 0.1em; margin-bottom: 4px; }
.access-address .transport strong { margin-bottom: 0; font-size: 1rem; }

/* ── CTA Banner ──────────────────────────────── */
.cta-banner {
  background: var(--coral);
  padding: 140px 0;
  position: relative; overflow: hidden;
}
.cta-inner {
  position: relative; z-index: 1;
  text-align: center;
}
.cta-inner h2 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: var(--weight-black); color: var(--white); margin-bottom: 16px;
}
.cta-inner p { color: rgba(255,255,255,0.7); font-size: 0.97rem; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  width: 384px; max-width: 100%; box-sizing: border-box;
  background: var(--white); color: var(--coral);
  font-weight: var(--weight-bold); font-size: 0.98rem;
  padding: 20px 24px; border-radius: 6px;
  text-decoration: none; transition: all .2s;
  letter-spacing: 0.02em;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.18); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  width: 384px; max-width: 100%; box-sizing: border-box;
  border: 2px solid #fff; color: var(--white);
  font-weight: var(--weight-bold); font-size: 0.98rem;
  padding: 20px 24px; border-radius: 6px;
  text-decoration: none; transition: all .2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.interview-text-link {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 24px;
  padding: 0 0 6px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: var(--weight-bold);
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.interview-text-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .2s ease;
}

.interview-text-link:hover {
  color: var(--teal);
}

.interview-text-link:hover::after {
  transform: scaleX(1);
}

/* ── Legacy mock footer selectors（共通 .ast-footer には当てない） ───────────────── */
footer:not(.ast-footer) {
  background: var(--navy-deep);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem; font-weight: 800; color: var(--white);
  letter-spacing: 0.05em; margin-bottom: 16px; display: block;
}
.footer-logo span { color: var(--teal); }
.footer-brand p { font-size: 0.83rem; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 260px; }
.footer-nav h4 {
  font-size: 0.75rem; font-weight: var(--weight-bold); letter-spacing: var(--tracking-label);
  color: var(--teal-light); text-transform: uppercase; margin-bottom: 16px;
}
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a {
  font-size: 0.83rem; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color .2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.75rem; color: rgba(255,255,255,0.35); text-decoration: none; }

@media (max-width: 900px) {
  .section-nav { overflow: hidden; }
  .section-nav-inner { padding: 0 20px; justify-content: flex-start; overflow-x: auto; }
  .access-grid { grid-template-columns: 1fr !important; gap: 32px; }
}

/* ---- モバイル対応（追加） ---- */
@media (max-width: 768px) {
  .page-hero { padding: 90px 20px 50px; }
  .container, .wrap { padding-left: 20px; padding-right: 20px; }
  .philosophy-inner, .ceo-grid, .history-grid, .overview-grid, .access-grid { grid-template-columns: 1fr !important; gap: 32px; }
  #philosophy { min-height: 0; padding: 120px 0; }
  #attitude { padding-bottom: 120px; }
  .ceo-img-wrap { max-width: 260px; margin: 0 auto; }
  .ceo-photo { width: 260px; max-width: 100%; }
  .overview-table th,
  .overview-table td { display: block; width: 100%; padding-left: 0; }
  .overview-table th { padding: 16px 0 4px; }
  .overview-table td { padding: 0 0 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ceo-message .big-quote,
  .ceo-message p,
  .ceo-signature span { white-space: normal; overflow-wrap: anywhere; }
}

/* ===== 決定稿追補 0.5.7：about全体の圧縮を解消 ===== */
.page-template-page-about section { padding-top: 128px; padding-bottom: 128px; }
.page-template-page-about #philosophy { padding-top: 280px; padding-bottom: 280px; }
.page-template-page-about #attitude { padding-top: 140px; padding-bottom: 300px; }
.page-template-page-about #history { padding-top: 140px; padding-bottom: 140px; }
.page-template-page-about #overview { padding-top: 140px; padding-bottom: 140px; }
.page-template-page-about #access { padding-top: 140px; padding-bottom: 140px; }
.page-template-page-about .ceo-message p { line-height: 2.08; }
.page-template-page-about .phil-card { padding-top: 34px; padding-bottom: 34px; }
.page-template-page-about .timeline-content { padding-bottom: 52px; }
.page-template-page-about .overview-table th,
.page-template-page-about .overview-table td { padding-top: 22px; padding-bottom: 22px; }
.page-template-page-about .cta-banner { padding-top: 150px; padding-bottom: 150px; }

/* ===== 決定稿追補 0.5.10：About個別の幅・余白・枠寸法を再補正 ===== */
.page-template-page-about .page-hero {
  padding: 0;
  min-height: 478px;
  align-items: flex-end;
}
.page-template-page-about .page-hero .hero-inner { padding: 0 64px 42px; }

.page-template-page-about #ceo .container,
.page-template-page-about #vp .container { max-width: 1120px; }
.page-template-page-about .ceo-grid { grid-template-columns: 274px minmax(0, 1fr); gap: 52px; margin-left: 18px; }
.page-template-page-about .ceo-message .big-quote { color: #000; }
.page-template-page-about .ceo-message p { color: #000; font-size: var(--font-body); line-height: var(--lh-long); }
.page-template-page-about #ceo { padding-top: 128px; padding-bottom: 56px; }
.page-template-page-about #vp { padding-top: 78px; padding-bottom: 118px; }

.page-template-page-about .philosophy-inner {
  grid-template-columns: minmax(0, 500px) 495px;
  justify-content: start;
}

.page-template-page-about #overview .container,
.page-template-page-about #access .container { max-width: 1280px; }
.page-template-page-about .access-grid { grid-template-columns: 595px minmax(0, 1fr); gap: 60px; }
.page-template-page-about .map-placeholder { aspect-ratio: 595 / 470; }

@media (max-width: 768px) {
  .page-template-page-about .page-hero {
    margin-top: 0;
    padding: calc(var(--header-height) + 90px) 20px 50px;
    min-height: 0;
  }
  .page-template-page-about .page-hero .hero-inner { padding: 0; }
}

/* ===== 0.5.44：HEROをヘッダー＋インページメニュー込みで100vhに補正 ===== */
@media (min-width: 769px) {
  .page-template-page-about {
    --about-section-nav-height: 58px;
  }

  .page-template-page-about .page-hero {
    height: calc(100vh - var(--header-height) - var(--about-section-nav-height));
    height: calc(100svh - var(--header-height) - var(--about-section-nav-height));
    min-height: calc(100vh - var(--header-height) - var(--about-section-nav-height));
    align-items: center;
    background-color: #dfe3e8;
  }

  .page-template-page-about .page-hero::before {
    background: none;
    z-index: 1;
  }

  .page-template-page-about .page-hero .hero-bg-media::after {
    background: transparent;
  }

  .page-template-page-about .page-hero .hero-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px 68px;
  }

  .page-template-page-about .breadcrumb {
    margin-bottom: 32px;
  }

  .page-template-page-about .breadcrumb a,
  .page-template-page-about .breadcrumb span {
    color: var(--gray-600);
  }

  .page-template-page-about .breadcrumb .current {
    color: var(--red);
  }

  .page-template-page-about .page-hero h1 {
    color: var(--navy);
    font-size: clamp(2.55rem, 4.28vw, 3.78rem);
    line-height: 1.12;
    letter-spacing: var(--tracking-none);
    text-shadow: none;
    margin-bottom: 24px;
  }

  .page-template-page-about .page-hero h1 span {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--font-label);
    font-weight: var(--weight-bold);
    letter-spacing: .25em;
    color: var(--red);
    margin-bottom: 16px;
    text-transform: none;
  }

  .page-template-page-about .page-hero p {
    color: #1F2937;
    font-weight: var(--weight-semibold);
    line-height: 1.95;
  }

  .page-template-page-about .section-nav {
    height: var(--about-section-nav-height);
  }

  .page-template-page-about .section-nav-inner {
    height: 100%;
    align-items: stretch;
  }

  .page-template-page-about .section-nav a {
    display: flex;
    align-items: center;
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }
}

/* HERO動画の白フェードを解除。既存の黒フェードは維持する。 */
.page-template-page-about .page-hero::before {
  background: none;
}
.page-template-page-about .page-hero .hero-bg-media::after {
  background: transparent;
}

/* ===== 0.5.60：モバイル指摘反映 ===== */
@media (max-width: 768px) {
  .page-template-page-about #philosophy {
    min-height: 0;
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .page-template-page-about #attitude {
    padding-bottom: 78px;
  }

  .page-template-page-about #overview {
    padding-bottom: 76px;
  }

  .page-template-page-about .attitude-split-grid,
  .page-template-page-about .attitude-rule-grid {
    grid-template-columns: 1fr !important;
  }

  .page-template-page-about #overview .overview-grid {
    gap: 0;
  }

  .page-template-page-about .overview-table + .overview-table tr:first-child {
    border-top: 0;
  }

  .page-template-page-about .overview-table th,
  .page-template-page-about .overview-table td {
    border-bottom: 0;
  }

  .page-template-page-about .overview-table tr {
    border-bottom: 1px solid var(--gray-200);
  }

  .page-template-page-about .overview-table tr:first-child {
    border-top: 1px solid var(--gray-200);
  }

  .page-template-page-about .overview-table + .overview-table tr:first-child {
    border-top: 0;
  }

  .page-template-page-about .cta-banner {
    padding-top: 92px;
    padding-bottom: 92px;
  }
}

/* ===== 0.5.61：モバイルHEROを下メニュー込み100svhへ統一 ===== */
@media (max-width: 768px) {
  .page-template-page-about {
    --about-section-nav-height: 58px;
  }

  .page-template-page-about .page-hero {
    height: calc(100vh - var(--about-section-nav-height));
    height: calc(100svh - var(--about-section-nav-height));
    min-height: calc(100vh - var(--about-section-nav-height));
    min-height: calc(100svh - var(--about-section-nav-height));
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 42px) 20px 42px;
    background-color: #dfe3e8;
  }

  .page-template-page-about .page-hero::before {
    background: none;
    z-index: 1;
  }

  .page-template-page-about .page-hero .hero-bg-media::after {
    background: transparent;
  }

  .page-template-page-about .page-hero .hero-inner {
    padding: 0;
    z-index: 2;
  }

  .page-template-page-about .breadcrumb a,
  .page-template-page-about .breadcrumb span {
    color: var(--gray-600);
  }

  .page-template-page-about .breadcrumb .current {
    color: var(--red);
  }

  .page-template-page-about .page-hero h1 {
    color: var(--navy);
    text-shadow: none;
  }

  .page-template-page-about .page-hero h1 span {
    color: var(--red);
    text-shadow: none;
  }

  .page-template-page-about .page-hero p {
    color: #1F2937;
    font-weight: var(--weight-semibold);
    text-shadow: none;
  }

  .page-template-page-about .section-nav {
    height: var(--about-section-nav-height);
  }

  .page-template-page-about .section-nav-inner {
    height: 100%;
    align-items: stretch;
  }

  .page-template-page-about .section-nav a {
    display: flex;
    align-items: center;
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }
}
