/* ==========================================================
   もりトラベル 共通スタイル
   紺（navy）× 金（gold）の上質系トーン
   ========================================================== */

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

:root {
  --navy:       #0f2444;
  --navy-mid:   #1a3a64;
  --navy-light: #2a5080;
  --silver:     #8a9ab0;
  --silver-pale:#e8edf4;
  --gold:       #b89840;
  --gold-light: #d4b060;
  --gold-pale:  #fdf8ee;
  --white:      #ffffff;
  --off-white:  #f7f8fa;
  --text:       #1a1a2e;
  --mid:        #5a6678;
  --light:      #9aa8bc;
  --border:     #dde3ec;
  --line-green: #06C755;
  --serif-jp:   'Noto Serif JP', serif;
  --serif-en:   'Cormorant Garamond', Georgia, serif;
  --sans:       'Noto Sans JP', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--white); color: var(--text); overflow-x: hidden; }

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 32px 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(15,36,68,0.06);
}
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}
.nav-logo img { height: 44px; width: auto; display: block; }
.logo-jp { font-family: var(--serif-jp); font-size: 22px; font-weight: 300; color: var(--navy); letter-spacing: 0.06em; display: block; }
.logo-en { font-family: var(--serif-en); font-size: 10px; font-weight: 300; letter-spacing: 0.35em; color: var(--silver); display: block; margin-top: 2px; text-transform: uppercase; }

.nav-menu {
  display: flex;
  list-style: none;
  align-items: stretch;
}
.nav-menu li { display: flex; }
.nav-menu a {
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #111;
  text-decoration: none;
  transition: color 0.3s;
  border-bottom: 2px solid transparent;
}
.nav-menu a:hover { color: var(--navy); border-bottom-color: var(--navy); }
.nav-menu a.active { color: var(--navy); border-bottom-color: var(--gold); }
.nav-line-btn {
  display: flex !important;
  align-items: center;
  padding: 0 28px !important;
  background: var(--line-green) !important;
  color: var(--white) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
  gap: 8px;
  border-bottom: none !important;
  transition: background 0.3s !important;
}
.nav-line-btn:hover { background: #05b34a !important; }

/* ── ハンバーガー（スマホ） ── */
.hamburger {
  display: none;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--border);
  padding: 10px 16px;
  margin: 12px 0;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--navy);
  font-weight: 400;
}
.ham-icon { font-size: 20px; line-height: 1; }

.sp-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  position: sticky;
  top: 73px;
  z-index: 99;
}
.sp-menu.open { display: flex; }
.sp-menu a {
  padding: 18px 28px;
  font-size: 15px;
  font-weight: 400;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.05em;
}
.sp-menu a:hover { background: var(--off-white); }
.sp-line-btn {
  display: flex !important;
  align-items: center;
  gap: 10px;
  background: var(--line-green) !important;
  color: var(--white) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  padding: 22px 28px !important;
  justify-content: center;
}
.sp-line-btn:hover { background: #05b34a !important; }

/* ── 下層ページ ヒーロー ── */
.page-hero {
  background: var(--navy);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,152,64,0.5), transparent);
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; padding: 0 64px; }
.page-hero-eyebrow {
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.page-hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.page-hero h1 {
  font-family: var(--serif-jp);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 200;
  color: var(--white);
  line-height: 1.7;
}
.page-hero-lead {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 200;
  line-height: 2.4;
  color: rgba(255,255,255,0.6);
}

/* ── セクション共通 ── */
.sec { padding: 96px 0; }
.sec-inner { max-width: 1100px; margin: 0 auto; padding: 0 64px; }
.sec-hd { margin-bottom: 60px; }
.sec-hd.center { text-align: center; }
.sec-hd.center .sec-rule { margin: 18px auto 0; }
.sec-eyebrow {
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sec-hd.center .sec-eyebrow { justify-content: center; }
.sec-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--gold); flex-shrink: 0; }
.sec-hd.center .sec-eyebrow::before { display: none; }
.sec-title {
  font-family: var(--serif-jp);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 200;
  line-height: 1.7;
  color: var(--navy);
}
.sec-rule { width: 32px; height: 1px; background: var(--gold); margin-top: 18px; }
.sec-sub { font-size: 13px; font-weight: 200; color: var(--mid); line-height: 2.2; margin-top: 16px; }

/* ── トップ HERO ── */
.hero {
  position: relative;
  height: 88vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
}
.hero-left { width: 52%; position: relative; overflow: hidden; flex-shrink: 0; }
.hero-left img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: imgZoom 14s ease-out forwards;
}
@keyframes imgZoom { from { transform: scale(1.06); } to { transform: scale(1.0); } }
.hero-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--navy) 100%),
              linear-gradient(to bottom, rgba(15,36,68,0.2) 0%, transparent 40%);
}
.hero-right {
  width: 48%;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px 72px 72px;
  position: relative;
}
.hero-right::before {
  content: '';
  position: absolute;
  top: 48px;
  left: -1px;
  bottom: 48px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(184,152,64,0.4), transparent);
}
.hero-eyebrow {
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: var(--serif-jp);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 200;
  color: var(--white);
  line-height: 1.75;
  margin-bottom: 28px;
}
.hero-title em { font-style: normal; color: var(--gold-light); }
.hero-desc {
  font-size: 13px;
  font-weight: 200;
  line-height: 2.4;
  color: rgba(255,255,255,0.62);
  margin-bottom: 48px;
  border-left: 1px solid rgba(184,152,64,0.3);
  padding-left: 20px;
}
.hero-cta-group { display: flex; flex-direction: column; gap: 14px; }
.btn-gold-fill {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gold);
  color: var(--white);
  padding: 16px 28px;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-gold-fill:hover { background: var(--gold-light); }
.btn-gold-fill span { font-size: 16px; }
.btn-navy-outline {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.65);
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 200;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-navy-outline:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }
.hero-note {
  margin-top: 28px;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-weight: 200;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-note::before { content: ''; width: 16px; height: 1px; background: rgba(255,255,255,0.2); }

/* ── 信頼バンド ── */
.trust {
  background: var(--navy-mid);
  padding: 0 64px;
  display: flex;
  justify-content: center;
}
.trust-item {
  flex: 1;
  max-width: 260px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 20px; flex-shrink: 0; }
.trust-text { font-size: 12px; font-weight: 200; color: rgba(255,255,255,0.6); letter-spacing: 0.08em; line-height: 1.7; }
.trust-text strong { color: rgba(255,255,255,0.88); font-weight: 300; display: block; }

/* ── サービス（トップ・一覧共通） ── */
.services-bg { background: var(--off-white); }
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-bottom: 1px;
}
.svc-row:last-child { margin-bottom: 0; }
.svc-img { overflow: hidden; position: relative; min-height: 320px; }
.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.svc-row:hover .svc-img img { transform: scale(1.04); }
.svc-body {
  background: var(--white);
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc-row:nth-child(even) .svc-img { order: 2; }
.svc-row:nth-child(even) .svc-body { order: 1; }
.svc-num {
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: 0.45em;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.svc-num::after { content: ''; flex: 1; height: 1px; background: var(--gold-pale); max-width: 48px; }
.svc-name {
  font-family: var(--serif-jp);
  font-size: 24px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 20px;
}
.svc-desc {
  font-size: 13px;
  font-weight: 200;
  line-height: 2.3;
  color: var(--mid);
  margin-bottom: 32px;
}
.svc-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 200;
  letter-spacing: 0.15em;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  padding-bottom: 3px;
  text-decoration: none;
  transition: color 0.3s, border-color 0.3s;
  align-self: flex-start;
}
.svc-tag:hover { color: var(--gold); border-color: var(--gold); }

/* サービス詳細ページ用 */
.svc-detail { padding: 88px 0; border-bottom: 1px solid var(--border); }
.svc-detail:last-of-type { border-bottom: none; }
.svc-detail-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 64px;
  align-items: start;
}
.svc-detail-grid.reverse { grid-template-columns: 6fr 5fr; }
.svc-detail-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.svc-point-list { list-style: none; margin: 28px 0 32px; }
.svc-point-list li {
  font-size: 13px;
  font-weight: 200;
  color: var(--mid);
  line-height: 2.1;
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
}
.svc-point-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}
.svc-detail-sub {
  font-family: var(--serif-jp);
  font-size: 15px;
  font-weight: 300;
  color: var(--navy);
  margin: 32px 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.svc-detail-sub::before { content: ''; width: 14px; height: 1px; background: var(--gold); }

/* ── PHILOSOPHY ── */
.philosophy { background: var(--navy); padding: 100px 0; }
.philosophy-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: center;
}
.phil-label {
  font-family: var(--serif-en);
  font-size: 11px;
  color: var(--gold-light);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  letter-spacing: 0.3em;
}
.phil-en {
  font-family: var(--serif-en);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 32px;
}
.phil-jp { font-size: 13px; font-weight: 200; line-height: 2.8; color: rgba(255,255,255,0.55); }
.phil-rule { width: 32px; height: 1px; background: rgba(184,152,64,0.4); margin: 28px 0; }
.phil-name { font-family: var(--serif-en); font-size: 13px; font-weight: 300; letter-spacing: 0.25em; color: var(--gold-light); }

/* ── STORY（代表について） ── */
.story-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: start;
}
.story-visual { position: relative; }
.story-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.story-visual-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.story-visual-tag p { font-size: 13px; font-weight: 300; color: var(--white); }
.story-visual-tag span { font-size: 11px; color: var(--gold-light); letter-spacing: 0.1em; }
.story-copy .sec-hd { margin-bottom: 32px; }
.story-body { font-size: 14px; font-weight: 200; line-height: 2.8; color: var(--mid); }
.story-body p + p { margin-top: 20px; }
.story-body strong { color: var(--text); font-weight: 300; }
.story-credentials { margin-top: 40px; display: flex; flex-direction: column; gap: 10px; }
.credential {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 200;
  color: var(--mid);
}
.credential::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.credential strong { color: var(--navy); font-weight: 300; }

/* ── FOR WHO ── */
.forwho-bg { background: var(--silver-pale); }
.forwho-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.forwho-card {
  background: var(--white);
  padding: 36px 28px 40px;
  border-top: 2px solid var(--border);
  transition: border-top-color 0.3s, box-shadow 0.3s;
}
.forwho-card:hover { border-top-color: var(--navy); box-shadow: 0 8px 32px rgba(15,36,68,0.08); }
.forwho-card h3 {
  font-family: var(--serif-jp);
  font-size: 16px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 16px;
}
.forwho-card p { font-size: 13px; font-weight: 200; line-height: 2.2; color: var(--mid); }
.forwho-icon { font-size: 28px; margin-bottom: 16px; }

/* ── FLOW ── */
.flow-list { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.flow-list::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--border);
}
.flow-item { text-align: center; padding: 0 20px; }
.flow-dot {
  width: 56px;
  height: 56px;
  border: 1px solid var(--navy);
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--serif-en);
  font-size: 20px;
  font-weight: 300;
  color: var(--navy);
  position: relative;
  z-index: 1;
  transition: background 0.3s, color 0.3s;
}
.flow-item:hover .flow-dot { background: var(--navy); color: var(--white); }
.flow-item h3 { font-family: var(--serif-jp); font-size: 15px; font-weight: 300; color: var(--navy); margin-bottom: 12px; }
.flow-item p { font-size: 12px; font-weight: 200; line-height: 2.2; color: var(--mid); }

/* 流れページ（詳細版・縦） */
.flow-steps { display: flex; flex-direction: column; gap: 0; }
.flow-step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.flow-step:last-child { border-bottom: none; }
.flow-step-num {
  font-family: var(--serif-en);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  padding-top: 4px;
}
.flow-step h3 { font-family: var(--serif-jp); font-size: 18px; font-weight: 300; color: var(--navy); margin-bottom: 12px; }
.flow-step p { font-size: 13px; font-weight: 200; line-height: 2.3; color: var(--mid); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  gap: 16px;
  text-align: left;
  padding: 26px 8px;
  font-family: var(--serif-jp);
  font-size: 15px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.8;
}
.faq-q::before {
  content: 'Q';
  font-family: var(--serif-en);
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.faq-a {
  padding: 0 8px 28px 42px;
  font-size: 13px;
  font-weight: 200;
  line-height: 2.3;
  color: var(--mid);
}
.faq-a a { color: var(--navy-light); }

/* ── VOICES ── */
.voices-bg { background: var(--off-white); }
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); }
.voice-card { background: var(--white); padding: 40px 32px; }
.voice-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 18px; }
.voice-body { font-size: 13px; font-weight: 200; line-height: 2.4; color: var(--mid); margin-bottom: 28px; }
.voice-foot { padding-top: 20px; border-top: 1px solid var(--border); }
.voice-name { font-family: var(--serif-jp); font-size: 14px; font-weight: 300; color: var(--navy); }
.voice-profile { font-size: 11px; color: var(--light); margin-top: 4px; letter-spacing: 0.05em; }

/* ── CTA ── */
.cta-section { background: var(--navy); }
.cta-wrap { display: grid; grid-template-columns: 1fr 1fr; }
.cta-visual { position: relative; min-height: 480px; overflow: hidden; }
.cta-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cta-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 40%, var(--navy) 100%);
}
.cta-content {
  background: var(--navy);
  padding: 80px 72px 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-eyebrow {
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.cta-title {
  font-family: var(--serif-jp);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 200;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 24px;
}
.cta-rule { width: 28px; height: 1px; background: var(--gold); margin-bottom: 28px; }
.cta-sub { font-size: 13px; font-weight: 200; line-height: 2.5; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.cta-free {
  font-size: 12px;
  font-weight: 200;
  color: rgba(255,255,255,0.35);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-free strong { color: rgba(255,255,255,0.7); font-weight: 300; }
.cta-free::before { content: ''; width: 16px; height: 1px; background: rgba(255,255,255,0.2); }
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--line-green);
  color: var(--white);
  padding: 18px 44px;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: opacity 0.3s, transform 0.3s;
  align-self: flex-start;
}
.btn-line:hover { opacity: 0.88; transform: translateY(-2px); }
.cta-note { margin-top: 16px; font-size: 11px; color: rgba(255,255,255,0.25); font-weight: 200; }

/* ── 会社概要テーブル ── */
.company-table { width: 100%; border-collapse: collapse; }
.company-table tr { border-bottom: 1px solid var(--border); }
.company-table tr:first-child { border-top: 1px solid var(--border); }
.company-table th {
  width: 220px;
  padding: 28px 24px 28px 0;
  text-align: left;
  vertical-align: top;
  font-family: var(--serif-jp);
  font-size: 14px;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: 0.05em;
}
.company-table td {
  padding: 28px 0;
  font-size: 14px;
  font-weight: 200;
  line-height: 2.1;
  color: var(--mid);
}
.company-table td a {
  color: var(--navy-light);
  text-decoration: none;
  border-bottom: 1px solid var(--silver-pale);
  transition: color 0.3s, border-color 0.3s;
}
.company-table td a:hover { color: var(--gold); border-color: var(--gold); }

/* ── 法的ページ（特商法・プライバシー） ── */
.legal-body { max-width: 860px; margin: 0 auto; padding: 0 64px; }
.legal-intro { font-size: 13px; font-weight: 200; line-height: 2.4; color: var(--mid); margin-bottom: 48px; }
.legal-table { width: 100%; border-collapse: collapse; }
.legal-table tr { border-bottom: 1px solid var(--border); }
.legal-table tr:first-child { border-top: 1px solid var(--border); }
.legal-table th {
  width: 220px;
  padding: 24px 24px 24px 0;
  text-align: left;
  vertical-align: top;
  font-family: var(--serif-jp);
  font-size: 13px;
  font-weight: 300;
  color: var(--navy);
}
.legal-table td { padding: 24px 0; font-size: 13px; font-weight: 200; line-height: 2.2; color: var(--mid); }
.legal-sec { margin-bottom: 44px; }
.legal-sec h2 {
  font-family: var(--serif-jp);
  font-size: 17px;
  font-weight: 300;
  color: var(--navy);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.legal-sec p, .legal-sec li { font-size: 13px; font-weight: 200; line-height: 2.3; color: var(--mid); }
.legal-sec ul { padding-left: 20px; margin-top: 8px; }
.legal-sec a { color: var(--navy-light); }
.legal-date { font-size: 12px; color: var(--light); margin-top: 48px; }

/* ── ドキュメントリンク ── */
.doc-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 8px; }
.doc-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: var(--white);
}
.doc-link:hover { border-color: var(--gold); box-shadow: 0 6px 24px rgba(15,36,68,0.07); }
.doc-link-icon { font-size: 20px; }
.doc-link-name { font-family: var(--serif-jp); font-size: 14px; font-weight: 300; color: var(--navy); }
.doc-link-type { font-size: 11px; color: var(--light); margin-top: 2px; }

/* ── FOOTER ── */
footer { background: #080f1c; padding: 72px 0 36px; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 64px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ft-logo-jp { font-family: var(--serif-jp); font-size: 20px; font-weight: 200; color: var(--white); margin-bottom: 4px; }
.ft-logo-en { font-family: var(--serif-en); font-size: 10px; letter-spacing: 0.4em; color: var(--gold); margin-bottom: 20px; text-transform: uppercase; }
.ft-about { font-size: 12px; font-weight: 200; color: rgba(255,255,255,0.3); line-height: 2.3; }
.footer-col h4 {
  font-family: var(--serif-en);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 12px;
  font-weight: 200;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 11px;
  color: rgba(255,255,255,0.18);
  font-weight: 200;
}
.footer-reg { color: rgba(255,255,255,0.28); }

/* ── フェード演出 ── */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── レスポンシブ ── */
@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }

  .hero { flex-direction: column; height: auto; }
  .hero-left { width: 100%; height: 280px; }
  .hero-right { width: 100%; padding: 48px 24px; }
  .trust { padding: 0 24px; flex-wrap: wrap; }
  .trust-item { max-width: none; flex: 1 1 45%; }

  .page-hero-inner, .sec-inner, .philosophy-inner, .footer-inner, .legal-body { padding: 0 24px; }
  .page-hero { padding: 52px 0 44px; }
  .sec { padding: 64px 0; }

  .svc-row { grid-template-columns: 1fr; }
  .svc-row:nth-child(even) .svc-img { order: 0; }
  .svc-row:nth-child(even) .svc-body { order: 1; }
  .svc-body { padding: 36px 28px; }
  .svc-detail-grid, .svc-detail-grid.reverse { grid-template-columns: 1fr; gap: 32px; }

  .story-layout { grid-template-columns: 1fr; gap: 40px; }
  .forwho-grid { grid-template-columns: 1fr; }
  .flow-list { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .flow-list::before { display: none; }
  .flow-step { grid-template-columns: 56px 1fr; gap: 20px; }
  .voice-grid { grid-template-columns: 1fr; }

  .cta-wrap { grid-template-columns: 1fr; }
  .cta-visual { display: none; }
  .cta-content { padding: 64px 24px; }

  .company-table th, .legal-table th { width: 120px; font-size: 12px; padding-right: 16px; }
  .doc-links { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .philosophy-inner { grid-template-columns: 1fr; gap: 32px; }
  .phil-label { writing-mode: horizontal-tb; }
}
