/* ============================================================
   KONDO FP — スタイルシート
   ============================================================ */

/* 1. VARIABLES & RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* SP「。」改行: スマホのみ表示 */
.sp-only { display: none; }
@media (max-width: 760px) { .sp-only { display: inline; } }

:root {
  --navy:       #243d60;
  --navy-dark:  #112240;
  --navy-soft:  #2f4e7a;
  --navy-50:    #eef3f9;
  --gold:       #b47a12;
  --gold-2:     #8c6018;
  --gold-light: #e0ad3e;
  --gold-bg:    #fdf9ef;
  --bg:         #f5f0e8;
  --bg-soft:    #ebe3d3;
  --bg-paper:   #fbf7ee;
  --ink:        #162844;
  --ink-2:      #2a3448;
  --ink-muted:  #5b6478;
  --line:       #d8cfbd;
  --white:      #ffffff;

  --font-sans:    'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-serif:   'Noto Serif JP', '游明朝', 'Yu Mincho', serif;
  --font-display: 'Cormorant Garamond', 'Noto Serif JP', serif;

  --container: 1160px;
  --gutter:    clamp(20px, 4vw, 40px);
  --radius:    4px;

  --shadow-card:  0 1px 0 rgba(20,29,46,.04), 0 12px 32px -12px rgba(20,29,46,.16);
  --shadow-float: 0 20px 60px -20px rgba(20,29,46,.32);
}

html { font-size: 15px; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg-paper);
  line-height: 1.75;
  font-feature-settings: 'palt';
  -webkit-font-smoothing: antialiased;
  letter-spacing: .02em;
  overflow-x: hidden;
}

img  { display: block; max-width: 100%; height: auto; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; font-size: inherit; }

/* ============================================================
   PAGE CURTAIN
   ============================================================ */
#page-curtain {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 1.2s ease;
}
#page-curtain.out { opacity: 0; pointer-events: none; }
.pc-inner { text-align: center; color: #fff; display: flex; flex-direction: column; align-items: center; }
.pc-sub {
  font-family: var(--font-display); font-style: italic; font-size: .85rem;
  letter-spacing: .35em; color: rgba(255,255,255,.85);
  opacity: 0; animation: pcFadeIn .7s ease .15s forwards; margin: 0 0 1.5rem;
}
.pc-line {
  width: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-light), transparent);
  margin-bottom: 1.75rem;
  animation: pcLineGrow .55s cubic-bezier(.22,1,.36,1) .95s forwards;
}
@keyframes pcLineGrow { to { width: 80px; } }
.pc-name {
  font-family: var(--font-display); font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 600; letter-spacing: .08em;
  opacity: 0; transform: translateY(18px);
  animation: pcSlideIn .75s cubic-bezier(.22,1,.36,1) 1.25s forwards; margin: 0 0 1rem;
}
.pc-tagline {
  font-size: clamp(.82rem, 1.5vw, .95rem);
  color: rgba(255,255,255,.85); letter-spacing: .18em;
  opacity: 0; animation: pcFadeIn .7s ease 1.75s forwards;
}
@keyframes pcSlideIn { to { opacity: 1; transform: translateY(0); } }
@keyframes pcFadeIn  { to { opacity: 1; } }

/* ============================================================
   TOPNAV
   ============================================================ */
.topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid rgba(36,61,96,.08);
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.topnav.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom-color: rgba(36,61,96,.08);
  box-shadow: 0 4px 24px -8px rgba(18,34,64,.18);
}
.topnav.scrolled .topnav-logo img { filter: none; }
.topnav.scrolled .topnav-link { color: var(--navy); }
.topnav.scrolled .topnav-link:hover,
.topnav.scrolled .topnav-link.active { color: var(--gold); }
.topnav.scrolled .topnav-link::after { background: var(--gold); }
.topnav.scrolled .topnav-hamburger span { background: var(--navy); }
.topnav-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex; align-items: center; gap: 24px;
}
.topnav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.topnav-logo img { height: 40px; width: auto; filter: none; }
.topnav-nav { display: flex; gap: 0; margin-left: auto; }
.topnav-link {
  display: inline-flex; align-items: center;
  padding: 8px 16px; font-size: 13px; letter-spacing: .06em;
  color: var(--navy); transition: color .2s; position: relative;
}
.topnav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 16px; right: 16px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .25s;
}
.topnav-link:hover, .topnav-link.active { color: var(--gold); }
.topnav-link:hover::after, .topnav-link.active::after { transform: scaleX(1); transform-origin: left; }

.topnav-cta {
  margin-left: 12px; padding: 10px 20px;
  background: var(--gold); color: #fff;
  font-size: 13px; letter-spacing: .08em;
  border: 1px solid var(--gold);
  transition: background .2s, color .2s; flex-shrink: 0;
}
.topnav-cta:hover { background: var(--gold-light); border-color: var(--gold-light); }

.topnav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 40px; height: 40px; align-items: center; justify-content: center;
  margin-left: auto;
}
.topnav-hamburger span {
  display: block; width: 22px; height: 1.5px; background: var(--navy);
  transition: transform .3s, opacity .3s;
}
.topnav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.topnav-hamburger.open span:nth-child(2) { opacity: 0; }
.topnav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.topnav-mobile {
  display: none; flex-direction: column;
  background: rgba(18,34,64,.98);
  border-top: 1px solid rgba(180,122,18,.2);
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.22,1,.36,1);
}
.topnav-mobile.open { max-height: 400px; }
.topnav-mobile a {
  padding: 14px var(--gutter); font-size: 14px; color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.08); letter-spacing: .04em;
}
.topnav-mobile a:hover { color: var(--gold-light); background: rgba(255,255,255,.05); }
.topnav-mobile-line {
  color: #fff !important;
  background: #06c755 !important;
  display: flex !important; align-items: center; gap: 10px;
  border-bottom: none !important;
  margin: 8px var(--gutter);
  padding: 12px 16px !important;
}
.topnav-mobile-cta {
  margin: 8px var(--gutter) 20px;
  padding: 14px; text-align: center;
  background: var(--navy); color: var(--bg-paper) !important;
  font-size: 14px; letter-spacing: .08em;
  border-bottom: none !important;
}

@media (max-width: 860px) {
  .topnav-nav { display: none; }
  .topnav-inner { padding: 10px var(--gutter); gap: 12px; }
  .topnav-logo img { height: 32px; }
  .topnav-cta { display: inline-flex; margin-left: auto; padding: 8px 14px; font-size: 11.5px; }
  .topnav-hamburger { display: flex; }
  .topnav-mobile { display: flex; }
}
@media (max-width: 400px) { .topnav-cta { display: none; } }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container); margin: 0 auto;
  padding-left: var(--gutter); padding-right: var(--gutter);
}
.narrow { max-width: 800px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.narrow-sm { max-width: 640px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

.section { padding: clamp(64px, 10vw, 112px) 0; position: relative; z-index: 2; }
.section--alt    { background: var(--navy-50); position: relative; z-index: 2; }
.section--dark   { background: var(--navy-dark); position: relative; z-index: 2; }
.section--navy   { background: var(--navy); position: relative; z-index: 2; }
.section--paper  { background: var(--bg-paper); position: relative; z-index: 2; }
.section--white  { background: #ffffff; position: relative; z-index: 2; }
.section--dark-photo {
  position: relative;
  background: var(--navy-dark);
  overflow: hidden;
}
.section--dark-photo .section-bg {
  position: absolute; inset: 0;
}
.section--dark-photo .section-bg img,
.section--dark-photo .section-bg video {
  width: 100%; height: 100%; object-fit: cover;
}
/* Fixed (parallax) variant */
.section--dark-photo.section--fixed .section-bg {
  position: fixed;
}
.section--dark-photo .section-overlay {
  position: absolute; inset: 0;
  background: rgba(17,34,64,.85);
}
.section-content { position: relative; z-index: 1; }

.section-tag {
  font-family: var(--font-display); font-style: italic;
  font-size: 12px; letter-spacing: .2em; color: var(--gold);
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.section-tag::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.section-tag.light { color: var(--gold-light); }
.section-tag.light::before { background: var(--gold-light); }

.section-title {
  font-family: var(--font-serif); font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 600; color: var(--navy); line-height: 1.4;
  margin-bottom: 16px; letter-spacing: .02em;
}
.section-title.light { color: var(--gold-light); }
.section-title.white { color: #fff; }
.section-title::after {
  content: ''; display: block; width: 36px; height: 2px;
  background: var(--gold); margin-top: 16px;
}
.section-title.no-rule::after { display: none; }
.section-title.center { text-align: center; }
.section-title.center::after { margin: 16px auto 0; }

.section-lead {
  font-size: clamp(14px, 1.5vw, 16px); color: var(--ink-2);
  line-height: 1.9; margin-bottom: 40px; max-width: 620px;
}
.section-lead.center { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-lead.light { color: rgba(251,247,238,.9); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; font-size: 15px; letter-spacing: .04em;
  font-family: var(--font-sans); transition: background .2s, color .2s, border-color .2s;
  cursor: pointer; line-height: 1;
}
.btn-line {
  background: #06c755; color: #fff; border: none;
  font-weight: 600;
  transition: background .2s;
}
.btn-line:hover { background: #05b34c; }
.btn-line svg { flex-shrink: 0; }

/* ============================================================
   HERO (Full-height)
   ============================================================ */
/* ---- Global fixed video (hero / stats / team 共用) ---- */
#global-video-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
}
#global-video-bg video {
  width: 100%; height: 100%; object-fit: cover; object-position: center 100%;
}
/* Sections that reveal the global video */
.section--vid-reveal {
  position: relative; z-index: 1;
  background: transparent;
}
.section--vid-reveal .section-overlay {
  position: absolute; inset: 0;
  background: rgba(17,34,64,.82);
}
.section--vid-reveal .section-content { position: relative; z-index: 2; }

.hero {
  position: relative; z-index: 1;
  min-height: 100svh;
  background: transparent;
}
.hero-bg { display: none; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(17,34,64,.3) 0%, rgba(17,34,64,.6) 100%);
  pointer-events: none;
}
.hero-body {
  position: relative; z-index: 10;
  min-height: 100svh;
  display: flex; align-items: flex-start;
  padding: clamp(100px, 18vh, 160px) var(--gutter) clamp(60px, 10vh, 100px);
  max-width: var(--container); margin: 0 auto;
}
.hero-copy { max-width: 680px; }
.hero-eyebrow {
  font-family: var(--font-display); font-style: italic;
  font-size: 12px; letter-spacing: .28em; color: var(--gold-light);
  margin-bottom: 20px;
  opacity: 0; animation: pcFadeIn .8s ease 0.4s forwards;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(14px, 4.5vw, 46px);
  font-weight: 700; color: #fff;
  line-height: 1.45; margin-bottom: 20px; letter-spacing: .02em;
  white-space: nowrap;
  opacity: 0; animation: pcSlideIn .9s cubic-bezier(.22,1,.36,1) 0.7s forwards;
}
.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.8vw, 20px);
  color: rgba(255,255,255,.9); line-height: 1.85; margin-bottom: 12px;
  min-height: 1.85em;
  opacity: 0; animation: pcSlideIn .9s cubic-bezier(.22,1,.36,1) 1.0s forwards;
}
.hero-desc {
  font-size: clamp(13px, 1.4vw, 15px);
  color: rgba(255,255,255,.8); line-height: 1.9; margin-bottom: 36px;
  min-height: calc(1.9em * 2);
  opacity: 0; animation: pcFadeIn .8s ease 1.3s forwards;
}
.hero-name {
  display: inline-flex; flex-direction: column; gap: 4px;
  margin-top: 28px; padding: 14px 24px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .35);
  border-left: 3px solid rgba(255, 255, 255, .85);
  backdrop-filter: blur(6px);
  opacity: 0; animation: pcFadeIn .8s ease 1.5s forwards;
}
.hero-name-role {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(11px, 1.3vw, 14px); letter-spacing: .12em;
  color: var(--gold-light);
}
.hero-name-jp {
  font-family: var(--font-sans); color: #fff; font-weight: 700;
  font-size: clamp(20px, 2.6vw, 30px); letter-spacing: .14em;
}
@media (max-width: 759px) {
  .hero-name {
    display: inline-flex;
    position: absolute;
    top: 55%; right: var(--gutter);
    margin-top: 0; z-index: 11;
    padding: 10px 16px;
    align-items: flex-end; text-align: right;
  }
}
@media (min-width: 760px) {
  .hero-name {
    position: absolute;
    top: 60%; right: var(--gutter);
    margin-top: 0; z-index: 11;
    align-items: flex-end; text-align: right;
  }
}
.hero-cta-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  opacity: 0; animation: pcFadeIn .8s ease 1.6s forwards;
}
.hero-cta-row > *,
.cta-btn-row > * { flex: 1; justify-content: center; }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--gold-light); z-index: 10;
}
.hero-scroll-text {
  font-family: var(--font-display); font-style: italic;
  font-size: 10px; letter-spacing: .28em;
  animation: scrollFade 2.2s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  animation: scrollFade 2.2s ease-in-out infinite;
}
@keyframes scrollFade {
  0%, 100% { opacity: .4; transform: translateY(0); }
  50%       { opacity: 1;  transform: translateY(4px); }
}
@media (max-width: 640px) { .hero-scroll { display: none; } }

/* ============================================================
   CHECKLIST SECTION
   ============================================================ */
.checklist-section { background: #fff; padding: clamp(64px, 10vw, 112px) 0; position: relative; z-index: 2; }
.checklist-block { margin-bottom: clamp(56px, 8vw, 96px); }
.checklist-block:last-child { margin-bottom: 0; }
.checklist-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 10px;
}
.checklist-icon-wrap {
  position: relative;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.checklist-icon-wrap.gold { border: 1px solid rgba(180,122,18,.5); }
.checklist-icon-wrap.navy { border: 1px solid rgba(36,61,96,.5); }
.checklist-icon-wrap .dot {
  position: absolute; bottom: -2px; right: -2px;
  width: 10px; height: 10px; border-radius: 50%;
}
.checklist-icon-wrap.gold .dot { background: var(--gold); }
.checklist-icon-wrap.navy .dot { background: var(--navy); }
.checklist-icon {
  width: 20px; height: 20px;
}
.checklist-icon.gold { color: var(--gold); }
.checklist-icon.navy { color: var(--navy); }
.checklist-label {
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  font-family: var(--font-display); font-style: italic;
  margin-bottom: 4px;
}
.checklist-label.gold { color: var(--gold); }
.checklist-label.navy { color: var(--navy-soft); }
.checklist-title {
  font-family: var(--font-serif); font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700; color: var(--navy); letter-spacing: .05em;
}
.checklist-accent-bar {
  height: 4px; margin-bottom: clamp(32px, 5vw, 48px);
  position: relative;
}
.checklist-accent-bar.gold { background: linear-gradient(to right, var(--gold) 25%, rgba(180,122,18,.1) 70%, transparent); }
.checklist-accent-bar.navy { background: linear-gradient(to right, var(--navy) 25%, rgba(36,61,96,.1) 70%, transparent); }
.checklist-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px); align-items: start;
}
@media (max-width: 860px) { .checklist-layout { grid-template-columns: 1fr; } }
.checklist-layout.reverse { direction: rtl; }
.checklist-layout.reverse > * { direction: ltr; }
.checklist-photo {
  position: relative;
}
.checklist-photo-frame {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  box-shadow: 6px 8px 24px rgba(0,0,0,.2);
}
.checklist-photo-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s;
}
.checklist-photo-frame:hover img { transform: scale(1.05); }
.checklist-photo-deco {
  position: absolute; bottom: -10px; right: -10px;
  width: 100%; height: 100%;
  border: 2px solid rgba(180,122,18,.4);
  z-index: -1;
}
.checklist-photo-deco.navy { border-color: rgba(36,61,96,.3); }

.notebook-panel {
  background: #fefcf7;
  border-left: 3px solid rgba(180,122,18,.6);
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
  padding: clamp(16px, 2.5vw, 24px) clamp(16px, 3vw, 32px);
}
.notebook-panel.navy { border-left-color: rgba(36,61,96,.6); }

.check-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(216,207,189,.5);
  cursor: pointer;
}
.check-item:last-child { border-bottom: none; }
.check-box {
  flex-shrink: 0; margin-top: 2px;
  width: 22px; height: 22px;
  border: 2px solid rgba(36,61,96,.3);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s; border-radius: 3px;
}
.check-item.checked .check-box {
  background: var(--gold); border-color: var(--gold);
}
.check-box svg { display: none; }
.check-item.checked .check-box svg { display: block; }
.check-text {
  font-size: 14px; color: var(--ink-2); line-height: 1.75;
  transition: color .3s; white-space: pre-line;
}
.check-item.checked .check-text { color: var(--ink); font-weight: 600; }

.cta-banner {
  margin-top: clamp(24px, 4vw, 40px);
  background: var(--gold-bg);
  border: 1px solid rgba(180,122,18,.3);
  padding: clamp(24px, 4vw, 40px);
  text-align: center;
}
.cta-banner-text {
  font-size: clamp(13px, 1.5vw, 15px);
  color: var(--gold-2); margin-bottom: 20px; line-height: 1.7;
}
.cta-banner-btns {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center; align-items: stretch;
}
.cta-banner-btns .btn {
  flex: 1 1 220px; max-width: 280px;
  justify-content: center;
}

/* ============================================================
   REASONS (3 cards on dark bg)
   ============================================================ */
.reasons-section {
  position: relative;
  padding: clamp(64px, 10vw, 112px) 0;
}
.reasons-section::before,
.reasons-section::after {
  content: ''; display: block;
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(180,122,18,.3), transparent);
}
.reasons-section::before { top: 0; }
.reasons-section::after  { bottom: 0; }
.reasons-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 760px) { .reasons-grid { grid-template-columns: 1fr; } }
.reason-card {
  position: relative;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.08);
  padding: clamp(28px, 4vw, 40px);
  transition: border-color .4s, box-shadow .4s;
}
.reason-card::before {
  content: ''; position: absolute; top: 0; left: 28px; right: 28px; height: 2px;
  background: linear-gradient(to right, transparent, rgba(180,122,18,.5), transparent);
}
.reason-card:hover {
  border-color: rgba(180,122,18,.3);
  box-shadow: 0 8px 40px rgba(212,154,26,.08);
}
.reason-card-title {
  font-family: var(--font-serif); font-size: clamp(16px, 2vw, 20px);
  font-weight: 700; color: #fff; margin-bottom: 12px; line-height: 1.4;
}
.reason-card-line {
  width: 28px; height: 1px;
  background: linear-gradient(to right, rgba(180,122,18,.5), transparent);
  margin-bottom: 16px; transition: width .4s;
}
.reason-card:hover .reason-card-line { width: 44px; }
.reason-card-desc {
  font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.9;
  white-space: pre-line;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
@media (max-width: 860px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
  position: relative; aspect-ratio: 3/4;
  overflow: hidden; cursor: default;
}
.svc-card-bg {
  position: absolute; inset: 0;
}
.svc-card-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}
.svc-card:hover .svc-card-bg img { transform: scale(1.06); }
.svc-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(170deg, rgba(17,34,64,.45) 0%, rgba(17,34,64,.88) 100%);
  transition: background .3s;
}
.svc-card:hover .svc-card-overlay {
  background: linear-gradient(170deg, rgba(17,34,64,.55) 0%, rgba(17,34,64,.93) 100%);
}
.svc-card-body {
  position: absolute; inset: 0;
  padding: clamp(20px, 3vw, 32px);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.svc-card-title {
  font-family: var(--font-serif); font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 700; color: #fff; line-height: 1.45; margin-bottom: 10px;
  transition: color .3s; white-space: pre-line;
}
.svc-card:hover .svc-card-title { color: var(--gold-light); }
.svc-card-desc {
  font-size: 13px; color: rgba(255,255,255,.82); line-height: 1.85;
  display: none; white-space: pre-line;
}
@media (min-width: 640px) { .svc-card-desc { display: block; } }
.svc-card-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .5s;
}
.svc-card:hover .svc-card-line { transform: scaleX(1); }
@media (max-width: 480px) { .svc-card { aspect-ratio: 5/3; } }

.svc-more-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-serif); font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 700; color: var(--navy);
  border-bottom: 2px solid var(--gold); padding-bottom: 6px;
  transition: color .3s, border-color .3s;
}
.svc-more-link:hover { color: var(--gold); border-color: var(--gold-2); }
.svc-more-link svg { transition: transform .3s; }
.svc-more-link:hover svg { transform: translateX(4px); }

/* ============================================================
   STATS (dark photo bg)
   ============================================================ */
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-left: 3px solid var(--gold);
  padding: clamp(24px, 3.5vw, 40px) 20px; text-align: center;
  transition: background .3s;
}
.stat-card:hover { background: rgba(255,255,255,.15); }
.stat-num-wrap {
  display: flex; align-items: baseline; justify-content: center; gap: 4px;
  margin-bottom: 8px;
}
.stat-num {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(32px, 5vw, 56px);
  color: var(--gold-light); letter-spacing: -.01em; line-height: 1;
}
.stat-unit {
  font-size: clamp(14px, 1.6vw, 18px); font-weight: 600; color: #fff;
}
.stat-line {
  width: 32px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(180,122,18,.4), transparent);
  margin: 0 auto 8px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,.85); letter-spacing: .06em; }
.stats-header {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .stats-header {
    flex-direction: row; align-items: center;
    gap: clamp(40px, 6vw, 80px);
    margin-bottom: 48px;
  }
  .stats-header-copy { flex: 1; }
  .stats-header-photo { width: 480px; flex-shrink: 0; }
  .stats-header-photo img { width: 100%; height: auto; }
}
.stats-section-title {
  font-family: var(--font-serif); font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 700; color: var(--gold-light); margin-bottom: 12px;
}
.stats-section-desc {
  font-size: clamp(14px, 1.5vw, 16px); color: rgba(255,255,255,.85);
  line-height: 1.9; max-width: 480px;
}

/* ============================================================
   VOICES
   ============================================================ */
.voices-list {
  display: flex; flex-direction: column; gap: 24px;
  max-width: 800px; margin: 0 auto;
}
.voice-card {
  background: var(--navy-50);
  border: 1px solid rgba(216,207,189,.6);
  padding: clamp(24px, 3vw, 36px);
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.voice-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px -12px rgba(36,61,96,.22);
  border-color: rgba(180,122,18,.3);
}
.voice-category {
  font-family: var(--font-serif); font-size: 13px; font-weight: 700;
  color: var(--gold-2);
}
.voice-text {
  font-family: var(--font-serif); font-size: 14.5px;
  color: var(--ink-2); line-height: 2; flex: 1;
}
.voice-footer {
  display: flex; align-items: center; gap: 14px;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.voice-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--line);
  transition: border-color .3s;
}
.voice-card:hover .voice-avatar { border-color: rgba(180,122,18,.4); }
.voice-avatar img { width: 100%; height: 100%; object-fit: cover; }
.voice-meta-name {
  font-family: var(--font-sans); font-size: 14px; font-weight: 600;
  color: var(--navy); margin-bottom: 4px;
}
.voice-stars {
  display: flex; gap: 2px;
}
.voice-star {
  width: 14px; height: 14px; color: var(--gold-light);
  fill: var(--gold-light);
}

/* ============================================================
   CASE STUDY (Before / After)
   ============================================================ */
.case-study-customer {
  display: flex; align-items: center; gap: 16px;
  justify-content: center; margin-bottom: clamp(32px, 5vw, 56px);
}
.case-study-customer-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  overflow: hidden; border: 2px solid var(--gold);
  flex-shrink: 0;
}
.case-study-customer-avatar img {
  width: 100%; height: 100%; object-fit: cover;
}
.case-study-customer-name {
  font-family: var(--font-sans); font-size: 16px; font-weight: 700;
  color: var(--navy); margin-bottom: 4px;
}
.case-study-customer-attr { font-size: 13px; color: var(--ink-muted); }

.before-after {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: clamp(24px, 4vw, 40px);
}
@media (min-width: 640px) {
  .before-after { flex-direction: row; align-items: stretch; }
}
.before-card, .after-card {
  flex: 1; border-radius: 12px; padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
}
.before-card {
  background: #f3f4f6;
  border: 2px solid rgba(36,61,96,.3);
}
.after-card {
  background: var(--gold-bg);
  border: 2px solid var(--gold);
}
.before-after-arrow {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  padding: 12px 0;
}
@media (min-width: 640px) { .before-after-arrow { padding: 0 16px; } }
.before-after-arrow svg {
  width: 60px; height: 60px; color: var(--gold);
  transform: rotate(90deg);
}
@media (min-width: 640px) {
  .before-after-arrow svg { transform: rotate(0); }
}
.ba-label {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  text-align: center; margin-bottom: 20px;
  padding-bottom: 16px;
}
.before-card .ba-label { border-bottom: 2px solid rgba(36,61,96,.3); color: var(--navy-soft); }
.after-card  .ba-label { border-bottom: 2px solid var(--gold); color: var(--gold-2); }
.ba-list {
  display: flex; flex-direction: column; gap: 16px;
}
.ba-item {
  display: flex; align-items: flex-start; gap: 0;
  font-size: clamp(13px, 1.4vw, 15px); line-height: 1.75;
  border-left: 4px solid; padding-left: 14px;
}
.before-card .ba-item { border-color: rgba(36,61,96,.3); color: var(--navy-soft); }
.after-card  .ba-item { border-color: var(--gold); color: var(--gold-2); }

.result-card {
  background: #fff; border-radius: 12px;
  box-shadow: 0 4px 32px rgba(36,61,96,.12);
  padding: clamp(24px, 4vw, 40px);
}
.result-title {
  font-family: var(--font-serif); font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700; color: var(--navy); text-align: center;
  margin-bottom: clamp(24px, 4vw, 40px);
}
.result-charts {
  display: flex; flex-direction: column; gap: 24px;
  align-items: center;
}
@media (min-width: 640px) {
  .result-charts { flex-direction: row; align-items: center; }
}
.result-side { flex: 1; }
.result-chart { width: 100%; max-width: 320px; height: auto; margin: 0 auto 20px; }
.result-nums {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; text-align: center;
}
.result-num-box {
  border-radius: 8px; padding: 12px;
}
.result-num-box.before { background: var(--navy-50); }
.result-num-box.after  { background: var(--gold-bg); border: 1px solid rgba(180,122,18,.2); }
.result-num-label { font-size: 11px; margin-bottom: 4px; }
.result-num-box.before .result-num-label { color: var(--navy-soft); }
.result-num-box.after  .result-num-label { color: var(--gold-2); }
.result-num-val {
  font-weight: 700; font-size: clamp(15px, 1.8vw, 18px);
}
.result-num-box.before .result-num-val { color: var(--navy-soft); }
.result-num-box.after  .result-num-val { color: var(--gold-2); }
.result-arrow {
  flex-shrink: 0;
}
.result-arrow svg {
  width: 72px; height: 72px; color: var(--gold);
  transform: rotate(90deg);
}
@media (min-width: 640px) { .result-arrow svg { transform: rotate(0); } }
.result-summary {
  margin-top: 24px;
  background: var(--navy-dark); border-radius: 8px;
  padding: clamp(16px, 2.5vw, 24px) clamp(20px, 3vw, 28px);
}
.result-summary p {
  font-family: var(--font-sans); font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 600; color: #fff; line-height: 1.8;
}

/* ============================================================
   PROFILE SECTION
   ============================================================ */
.profile-section {
  display: flex; flex-direction: column; gap: 40px; align-items: center;
}
@media (min-width: 1024px) {
  .profile-section { flex-direction: row; gap: clamp(40px, 6vw, 80px); align-items: flex-start; }
}
.profile-photo-wrap {
  flex-shrink: 0; width: clamp(200px, 30vw, 288px); margin: 0 auto;
}
@media (min-width: 1024px) { .profile-photo-wrap { margin: 0; } }
.profile-photo-outer {
  position: relative;
}
.profile-photo-deco {
  position: absolute; bottom: -12px; right: -12px;
  width: 100%; height: 100%;
  border: 2px solid rgba(180,122,18,.4);
  z-index: 0;
}
.profile-photo-inner {
  position: relative; z-index: 1;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
}
.profile-photo-inner img {
  width: 100%; height: auto; object-fit: cover; object-position: top;
  display: block;
}
.profile-name-plate {
  background: var(--navy-dark); text-align: center;
  padding: 14px 16px;
}
.profile-name-plate .name-jp {
  font-family: var(--font-serif); font-size: 18px; font-weight: 700;
  color: #fff; letter-spacing: .1em; margin-bottom: 4px;
}
.profile-name-plate .name-en {
  font-family: var(--font-display); font-style: italic;
  font-size: 12px; color: var(--gold-light); letter-spacing: .15em;
}
.profile-copy { flex: 1; }
.profile-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px;
}
.profile-tag {
  font-size: 12px; color: var(--gold-2);
  background: var(--gold-bg);
  border: 1px solid rgba(180,122,18,.3);
  padding: 4px 12px; border-radius: 9999px; font-weight: 600;
}
.profile-bio {
  font-size: clamp(13px, 1.5vw, 15px); color: var(--ink-2);
  line-height: 2; margin-bottom: 20px;
}
.profile-divider {
  width: 48px; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 20px;
}
.media-label {
  font-family: var(--font-display); font-style: italic;
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--navy-soft); font-weight: 600; margin-bottom: 10px;
}
.media-tags {
  display: flex; flex-wrap: wrap; gap: 7px;
}
.media-tag {
  font-size: 12px; color: var(--navy-soft);
  background: var(--navy-50);
  border: 1px solid rgba(36,61,96,.2);
  padding: 5px 14px; border-radius: 9999px;
  transition: background .2s, color .2s, border-color .2s;
}
.media-tag:hover {
  background: var(--gold-bg); color: var(--gold-2);
  border-color: rgba(180,122,18,.3);
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 3vw, 32px); max-width: 720px; margin: 0 auto;
}
.team-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
}
@media (max-width: 640px) {
  .team-grid-3 { grid-template-columns: 1fr; max-width: 420px; }
}
.team-photo-card {
  transition: transform .4s; cursor: default;
}
.team-photo-card:nth-child(1) { transform: rotate(-2deg); }
.team-photo-card:nth-child(2) { transform: rotate(1deg); }
.team-photo-card:nth-child(3) { transform: rotate(2deg); }
.team-photo-card:nth-child(4) { transform: rotate(1deg); }
.team-photo-card:hover { transform: rotate(0) scale(1.04); }
.team-photo-frame {
  background: #fff; padding: 8px; box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.team-photo-frame .photo-wrap {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
}
.team-grid-3 .team-photo-frame .photo-wrap { aspect-ratio: auto; }
.team-photo-frame .photo-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.team-grid-3 .team-photo-frame .photo-wrap img { height: auto; }
.team-photo-caption {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(10px, 1.2vw, 13px); color: var(--ink-muted);
  text-align: center; padding: 8px 4px 4px; letter-spacing: .06em;
}

/* キーボードフォーカスの可視化 */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* チーム スライドショー */
.team-slideshow { cursor: pointer; }
.team-slideshow .team-photo-frame .photo-wrap img {
  transition: opacity .5s ease;
  filter: brightness(1.2);
}
.team-slideshow.is-fading .team-photo-frame .photo-wrap img { opacity: 0; }
.team-slide-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  margin: 0; padding: 28px 16px 12px;
  font-family: var(--font-sans); font-weight: 700;
  font-size: clamp(13px, 1.6vw, 16px); letter-spacing: .08em;
  color: #fff; text-align: center;
  background: linear-gradient(to top, rgba(17,34,64,.72), transparent);
  transition: opacity .5s ease;
}
.team-slideshow.is-fading .team-slide-caption { opacity: 0; }
.team-slideshow-hint {
  text-align: center; margin-top: 14px;
  font-size: 12px; letter-spacing: .12em;
  color: rgba(255,255,255,.7);
}
.team-slideshow-hint span { color: var(--gold-light); font-weight: 600; }
@media (prefers-reduced-motion: reduce) {
  .team-slideshow .team-photo-frame .photo-wrap img { transition: none; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-paper); border: 1px solid var(--line);
  border-left: 4px solid var(--navy-soft);
  box-shadow: var(--shadow-card);
  transition: border-color .25s, box-shadow .25s;
}
.faq-item.open { border-left-color: var(--gold); box-shadow: 0 8px 32px -8px rgba(36,61,96,.18); }
.faq-btn {
  width: 100%; text-align: left;
  display: flex; align-items: center; gap: 14px;
  padding: 22px 22px; cursor: pointer;
}
.faq-q {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg-soft); border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--font-display); font-style: italic;
  font-size: 14px; color: var(--gold); font-weight: 600;
  transition: background .25s, border-color .25s;
}
.faq-item.open .faq-q { background: var(--gold); color: var(--bg-paper); border-color: var(--gold); }
.faq-question {
  font-family: var(--font-serif); font-size: 15px; font-weight: 600;
  color: var(--navy); flex: 1; line-height: 1.6;
}
.faq-icon {
  width: 26px; height: 26px; flex-shrink: 0;
  border: 1px solid var(--line); border-radius: 50%;
  position: relative; transition: border-color .25s, background .25s;
}
.faq-item.open .faq-icon { border-color: var(--gold); background: rgba(180,122,18,.08); }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 10px; height: 1.5px; background: var(--ink-muted);
  transform: translate(-50%, -50%); transition: transform .3s, opacity .3s;
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .faq-icon::before { background: var(--gold); }
.faq-item.open .faq-icon::after  { transform: translate(-50%, -50%) rotate(0); opacity: 0; }
.faq-body { overflow: hidden; max-height: 0; transition: max-height .4s cubic-bezier(.22,1,.36,1); }
.faq-item.open .faq-body { max-height: 400px; }
.faq-body-inner { display: flex; gap: 16px; padding: 0 22px 22px 70px; }
.faq-a {
  font-family: var(--font-display); font-style: italic; font-size: 15px;
  color: var(--gold); font-weight: 600; flex-shrink: 0; margin-top: 2px;
}
.faq-body-inner p { font-size: 14px; color: var(--ink-2); line-height: 2; }

/* ============================================================
   COMPANY
   ============================================================ */
.company-table-wrap {
  border: 1px solid rgba(36,61,96,.2);
  border-radius: 8px; overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-card);
}
.company-table { width: 100%; }
.company-table tr:nth-child(even) { background: rgba(36,61,96,.03); }
.company-table th {
  text-align: left; font-size: 13px; font-weight: 600;
  color: var(--ink-muted); padding: 16px 20px;
  width: 160px; vertical-align: top; white-space: nowrap;
}
.company-table td {
  font-size: 14px; color: var(--navy); padding: 16px 20px;
}
.company-corporate-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-serif); font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 700; color: var(--navy);
  border-bottom: 2px solid var(--gold); padding-bottom: 6px;
  transition: color .3s, border-color .3s;
}
.company-corporate-link:hover { color: var(--gold); border-color: var(--gold-2); }
.company-corporate-link svg { transition: transform .3s; }
.company-corporate-link:hover svg { transform: translateX(4px); }
.map-link { color: var(--navy); font-size: .85em; text-decoration: underline; }
.map-link:hover { color: var(--gold); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 760px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px; overflow: hidden;
}
.pricing-card-head {
  background: rgba(255,255,255,.15);
  padding: 20px 24px;
}
.pricing-card-head h3 {
  font-family: var(--font-serif); font-size: 17px; font-weight: 700;
  color: #fff;
}
.pricing-card-body {
  padding: 24px;
}
.pricing-price {
  font-size: 13px; color: rgba(210,210,210,1); margin-bottom: 16px;
}
.pricing-price strong {
  font-size: 26px; font-weight: 700; color: #fff; margin: 0 4px;
}
.pricing-badge {
  background: var(--gold); border-radius: 6px;
  padding: 10px 14px;
  font-size: 13px; font-weight: 700;
  color: var(--navy-dark); text-align: center;
}
.pricing-note {
  font-size: 13px; color: rgba(180,180,180,1);
  margin-top: 8px; line-height: 1.6;
}

/* ============================================================
   FP ADVISORY
   ============================================================ */
.advisory-hero-img {
  position: relative; border-radius: 10px; overflow: hidden;
  margin-bottom: clamp(32px, 5vw, 56px);
  aspect-ratio: 21 / 9;
}
.advisory-hero-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.advisory-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 760px) { .advisory-grid { grid-template-columns: 1fr; } }
.advisory-card {
  border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
}
.advisory-card-head {
  padding: 20px 28px;
}
.advisory-card-head.personal { background: #5c4a3a; }
.advisory-card-head.corporate { background: var(--navy); }
.advisory-card-sub {
  font-size: 10px; letter-spacing: .2em; margin-bottom: 4px;
}
.advisory-card-head.personal .advisory-card-sub { color: #c4aa82; }
.advisory-card-head.corporate .advisory-card-sub { color: var(--gold-light); }
.advisory-card-title {
  font-family: var(--font-serif); font-size: clamp(18px, 2vw, 22px);
  font-weight: 700; color: #fff;
}
.advisory-card-body {
  padding: 24px 28px;
  background: #faf8f5;
  flex: 1;
}
.advisory-card.corporate .advisory-card-body { background: var(--navy-50); }
.advisory-price-row {
  display: flex; align-items: baseline; gap: 6px; margin-bottom: 10px;
}
.advisory-price-label { font-size: 13px; color: #8a7a6a; }
.advisory-price-num {
  font-size: clamp(28px, 4vw, 36px); font-weight: 700; color: #3d3028;
}
.advisory-card.corporate .advisory-price-num { color: var(--navy); }
.advisory-price-suffix { font-size: 13px; color: #5c4a3a; }
.advisory-card.corporate .advisory-price-suffix { color: var(--navy-soft); }
.advisory-year {
  background: #f0ebe3; border: 1px solid #ddd2c3;
  border-radius: 6px; padding: 10px 14px; margin-bottom: 10px;
}
.advisory-card.corporate .advisory-year { background: rgba(36,61,96,.08); border-color: rgba(36,61,96,.15); }
.advisory-year-text { font-size: 13px; }
.advisory-year-text strong { color: #8b6914; }
.advisory-card.corporate .advisory-year-text strong { color: var(--gold); }
.advisory-year-sub { font-size: 11px; color: #8a7a6a; margin-left: 8px; }
.advisory-cc-note { font-size: 11px; color: #8a7a6a; text-align: center; margin-bottom: 10px; }
.advisory-trial {
  background: linear-gradient(to right, #8b6914, #b8941e);
  border-radius: 6px; padding: 10px 14px; margin-bottom: 10px;
}
.advisory-trial p { color: #fff; font-size: 12px; text-align: center; }
.advisory-trial p:first-child { font-weight: 700; font-size: 11px; letter-spacing: .08em; }
.advisory-trial p:last-child { font-weight: 700; font-size: 14px; }
.advisory-bonus {
  background: #5c4a3a; border-radius: 6px;
  padding: 10px 14px; margin-bottom: 20px;
  font-size: 13px; font-weight: 700; color: #e8d5b0; text-align: center;
}
.advisory-card.corporate .advisory-bonus { background: var(--navy-soft); color: rgba(255,255,255,.9); }
.advisory-services { display: flex; flex-direction: column; gap: 12px; }
.advisory-service-item {
  background: #fff; border: 1px solid #e8e0d4;
  border-radius: 8px; padding: 14px 16px;
}
.advisory-card.corporate .advisory-service-item { border-color: rgba(36,61,96,.15); }
.advisory-service-title {
  font-size: 13px; font-weight: 700; color: #3d3028; margin-bottom: 6px;
  display: flex; align-items: center; gap: 8px;
}
.advisory-card.corporate .advisory-service-title { color: var(--navy); }
.advisory-service-icon {
  width: 22px; height: 22px; background: #8b6914; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.advisory-card.corporate .advisory-service-icon { background: var(--navy-soft); }
.advisory-service-icon svg { width: 12px; height: 12px; color: #fff; }
.advisory-service-text { font-size: 13px; color: #5c4a3a; line-height: 1.7; }
.advisory-card.corporate .advisory-service-text { color: var(--ink-2); }

/* ============================================================
   CONTACT PAGE — Parallax Hero
   ============================================================ */
.parallax-hero {
  position: relative; min-height: 360px;
  padding-top: 80px;
  display: flex; align-items: center;
  overflow: hidden;
}
@media (max-width: 640px) {
  .parallax-hero { min-height: 280px; padding-top: 64px; }
}
.parallax-hero .hero-bg {
  display: block; position: absolute; inset: 0;
}
.parallax-hero .hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.parallax-hero .hero-overlay { background: rgba(17,34,64,.7); }
.parallax-hero-body {
  position: relative; z-index: 1;
  padding: clamp(60px, 10vw, 100px) var(--gutter);
  text-align: center; width: 100%;
}
.parallax-hero-title {
  font-family: var(--font-serif); font-size: clamp(24px, 4vw, 40px);
  font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: .04em;
}
.parallax-hero-sub {
  font-size: clamp(13px, 1.5vw, 16px); color: rgba(255,255,255,.85);
  line-height: 1.8;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 64px); align-items: start;
}
@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-info-card {
  background: var(--bg-paper); border: 1px solid var(--line);
  padding: clamp(24px, 3.5vw, 40px); box-shadow: var(--shadow-card);
}
.contact-info-card-title {
  font-family: var(--font-serif); font-size: 18px; font-weight: 600;
  color: var(--navy); margin-bottom: 24px; padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.contact-info-row {
  display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start;
}
.contact-info-lbl {
  font-family: var(--font-display); font-style: italic;
  font-size: 11px; letter-spacing: .18em; color: var(--gold); display: block;
}
.contact-info-val {
  font-family: var(--font-serif); font-size: 16px; font-weight: 600;
  color: var(--navy); display: block; margin-top: 4px; letter-spacing: .04em;
}
.contact-free-badge {
  background: var(--navy); color: var(--bg-paper);
  padding: 16px 20px; margin-top: 24px; text-align: center;
  border-top: 3px solid var(--gold);
}
.contact-free-badge .badge-title {
  font-family: var(--font-serif); font-size: 17px; font-weight: 700;
  margin-bottom: 6px;
}
.contact-free-badge .badge-sub { font-size: 12px; color: rgba(251,247,238,.7); line-height: 1.6; }

.form-card {
  background: var(--bg-paper); border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-card);
}
.form-card-title {
  font-family: var(--font-serif); font-size: 18px; font-weight: 600;
  color: var(--navy); margin-bottom: 28px;
}
.form-row { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 13px; color: var(--ink-2);
  letter-spacing: .04em; margin-bottom: 8px; font-weight: 500;
}
.form-req {
  display: inline-block; font-size: 11px;
  background: var(--navy); color: var(--bg-paper);
  padding: 2px 7px; margin-left: 8px; letter-spacing: .06em;
}
.form-opt {
  display: inline-block; font-size: 11px;
  background: var(--bg-soft); color: var(--ink-muted);
  padding: 2px 7px; margin-left: 8px; letter-spacing: .06em;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line); background: var(--bg-paper);
  font-size: 14px; font-family: var(--font-sans); color: var(--ink);
  transition: border-color .2s; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-submit {
  width: 100%; padding: 16px;
  background: var(--navy); color: var(--bg-paper);
  font-size: 14px; letter-spacing: .12em; font-family: var(--font-sans);
  transition: background .2s; cursor: pointer; border: none; margin-top: 8px;
}
.form-submit:hover { background: var(--navy-dark); }
.form-submit:disabled { opacity: .65; cursor: not-allowed; }

/* ============================================================
   SERVICES PAGE — Process
   ============================================================ */
.process-timeline {
  position: relative;
  padding-left: 64px;
  display: flex; flex-direction: column; gap: 0;
}
.process-timeline::before {
  content: ''; position: absolute; left: 20px; top: 20px; bottom: 20px; width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(180,122,18,.2));
}
.process-step {
  position: relative; padding-bottom: clamp(28px, 4vw, 40px);
}
.process-step:last-child { padding-bottom: 0; }
.process-step-num {
  position: absolute; left: -48px; top: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold); color: var(--navy-dark);
  display: grid; place-items: center;
  font-family: var(--font-display); font-style: italic;
  font-size: 16px; font-weight: 700; letter-spacing: .04em;
  box-shadow: 0 0 0 6px rgba(180,122,18,.15);
}
.process-step-label {
  font-family: var(--font-display); font-style: italic;
  font-size: 11px; letter-spacing: .2em; color: var(--gold);
  margin-bottom: 6px;
}
.process-step-title {
  font-family: var(--font-serif); font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700; color: var(--navy); line-height: 1.5; margin-bottom: 8px;
}
.process-step-desc {
  font-size: 14px; color: var(--ink-2); line-height: 1.9;
}

/* Services page list */
.services-group { margin-bottom: clamp(40px, 6vw, 64px); }
.services-group:last-child { margin-bottom: 0; }
.services-group-title {
  font-family: var(--font-serif); font-size: clamp(17px, 2vw, 22px);
  font-weight: 700; color: var(--navy); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.services-group-title::before {
  content: ''; width: 4px; height: 20px; background: var(--gold); flex-shrink: 0;
}
.services-list {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 640px) { .services-list { grid-template-columns: 1fr; } }
.service-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--bg-paper); border: 1px solid var(--line);
  padding: 16px 18px; box-shadow: var(--shadow-card);
  transition: box-shadow .25s, transform .25s;
}
.service-item:hover { transform: translateY(-2px); box-shadow: 0 8px 32px -8px rgba(36,61,96,.18); }
.service-item-dot {
  width: 8px; height: 8px; background: var(--gold);
  transform: rotate(45deg); flex-shrink: 0; margin-top: 7px;
}
.service-item-content {}
.service-item-name {
  font-family: var(--font-serif); font-size: 15px; font-weight: 600;
  color: var(--navy); margin-bottom: 4px;
}
.service-item-desc { font-size: 12.5px; color: var(--ink-muted); line-height: 1.7; }

/* ============================================================
   FIXED CTA
   ============================================================ */
/* スマホ: 下部フルワイドバー */
.fixed-cta-mobile {
  display: flex; flex-direction: column;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
}
.fcta-mob-btns { display: flex; }
.fcta-mob-line,
.fcta-mob-mail {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 16px 8px;
  font-size: 13px; font-weight: 700; color: #fff;
  transition: filter .15s;
}
.fcta-mob-line { background: #06c755; }
.fcta-mob-line:hover { filter: brightness(1.08); }
.fcta-mob-mail { background: var(--gold); color: #fff; }
.fcta-mob-mail:hover { filter: brightness(1.1); }

/* PC: 右下フローティング縦並び */
.fixed-cta-pc { display: none; }

@media (min-width: 760px) {
  .fixed-cta-mobile { display: none; }
  .fixed-cta-pc {
    display: flex; flex-direction: column; gap: 12px;
    position: fixed; bottom: 24px; right: 24px; z-index: 90;
  }
  .fcta-pc-line,
  .fcta-pc-mail {
    display: inline-flex; align-items: center; gap: 10px;
    border-radius: 16px; font-weight: 700; color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: transform .2s, box-shadow .2s;
    overflow: hidden; position: relative; white-space: nowrap;
  }
  .fcta-pc-line:hover,
  .fcta-pc-mail:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
  }
  .fcta-pc-line {
    padding: 16px 28px;
    background: linear-gradient(135deg, #06c755 0%, #04a847 100%);
    font-size: 15px;
  }
  .fcta-pc-line:hover { background: linear-gradient(135deg, #05b34d 0%, #039940 100%); }
  .fcta-pc-mail {
    padding: 16px 28px;
    background: var(--gold);
    color: #fff; font-size: 15px;
  }
  .fcta-pc-mail:hover { background: var(--gold-light); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative; z-index: 10;
  background: #080f1e;
  color: rgba(251,247,238,.65);
  padding-top: 3px;
  padding-bottom: clamp(60px, 8vw, 80px);
}
.footer::before {
  content: ''; display: block; height: 1px;
  background: rgba(255,255,255,.12);
}
.footer-inner {
  max-width: var(--container); margin: 0 auto;
  padding: clamp(40px, 6vw, 64px) var(--gutter) clamp(28px, 4vw, 40px);
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px;
}
@media (max-width: 760px) { .footer-inner { grid-template-columns: 1fr; gap: 28px; } }
.footer-brand-name {
  font-family: var(--font-serif); font-size: 14px; font-weight: 600;
  color: var(--bg-paper); letter-spacing: .06em; margin-bottom: 8px;
}
.footer-text { font-size: 12.5px; line-height: 1.9; color: rgba(251,247,238,.9); }
.footer-h {
  font-family: var(--font-display); font-style: italic;
  font-size: 11px; letter-spacing: .22em; color: var(--gold-light);
  text-transform: uppercase; margin-bottom: 16px;
}
.footer-info-row {
  display: flex; gap: 12px; font-size: 13px;
  color: rgba(251,247,238,.85); margin-bottom: 8px;
}
.footer-info-lbl { color: var(--gold-light); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 20px var(--gutter);
  max-width: var(--container); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 11.5px; color: rgba(251,247,238,.6);
}
.footer-policy-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-policy-links a { color: rgba(251,247,238,.6); text-decoration: none; }
.footer-policy-links a:hover { color: var(--gold-light); }

/* ============================================================
   PARALLAX HERO — alternate bg/overlay class names
   ============================================================ */
.parallax-hero-bg {
  position: absolute; inset: 0; overflow: hidden;
}
.parallax-hero-bg img,
.parallax-hero-bg video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.parallax-hero-bg img { opacity: .25; }
.parallax-hero-bg video { opacity: 1; }
.parallax-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(17,34,64,.35) 0%, rgba(17,34,64,.55) 60%, rgba(17,34,64,.85) 100%);
  box-shadow: inset 0 -60px 80px -20px rgba(0,0,0,.55), inset 0 40px 80px -20px rgba(0,0,0,.4);
}
.parallax-hero-line {
  width: 48px; height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  margin: 14px auto 20px;
}

/* ============================================================
   STEPS TIMELINE (services page)
   ============================================================ */
.steps-timeline {
  display: flex; flex-direction: column; gap: 0;
  position: relative;
}
.steps-timeline::before {
  content: ''; position: absolute; left: 23px; top: 24px; bottom: 24px; width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(180,122,18,.1));
  z-index: 0;
}
.step-item {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 0 24px; align-items: start;
  padding-bottom: clamp(28px, 4vw, 40px);
  position: relative;
}
.step-item:last-child { padding-bottom: 0; }
.step-connector { display: none; }
.step-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--navy-dark);
  display: grid; place-items: center; flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(180,122,18,.12);
  position: relative; z-index: 1;
  grid-column: 1; grid-row: 1;
}
.step-circle svg { width: 22px; height: 22px; }
.step-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: clamp(18px, 2.5vw, 28px);
  box-shadow: 0 2px 16px rgba(36,61,96,.06);
  transition: box-shadow .3s;
  grid-column: 2; grid-row: 1;
  align-self: start; margin-top: 4px;
}
.step-card:hover { box-shadow: 0 8px 32px rgba(36,61,96,.12); }
.step-num {
  display: block; font-family: var(--font-display); font-style: italic;
  font-size: 11px; letter-spacing: .22em; color: var(--gold);
  margin-bottom: 8px;
}
.step-title {
  font-family: var(--font-serif); font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700; color: var(--navy); margin-bottom: 10px;
}
.step-desc { font-size: 14px; color: var(--ink-2); line-height: 1.9; }

/* Steps: desktop alternating layout */
@media (min-width: 760px) {
  .steps-timeline::before { left: calc(50% - 1px); }
  .step-item { grid-template-columns: 1fr 48px 1fr; }
  .step-circle { grid-column: 2; justify-self: center; }
  .step-card { grid-column: 3; margin-top: 0; }
  .step-item:nth-child(even) .step-card { grid-column: 1; }
}

/* ============================================================
   SERVICES LIST SECTION (dark bg)
   ============================================================ */
.services-list-section {
  background: var(--navy-dark); color: #fff;
  position: relative;
}
.services-list-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.services-group-title {
  font-family: var(--font-serif); font-size: clamp(18px, 2vw, 24px);
  font-weight: 700; color: var(--gold-light); margin-bottom: 10px;
}
.services-group-desc {
  font-size: 13.5px; color: rgba(255,255,255,.75); line-height: 1.8;
  margin-bottom: 24px;
}
.services-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
@media (max-width: 1024px) { .services-list { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 760px)  { .services-list { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px)  { .services-list { grid-template-columns: repeat(2, 1fr); } }
.service-tile {
  background: #f3f4f6; border: none;
  border-radius: 10px; padding: 20px 12px; text-align: center;
  transition: background .3s, transform .3s;
}
.service-tile:hover {
  background: #e5e7eb;
  transform: translateY(-3px);
}
.service-tile-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(180,122,18,.12); border: 1px solid rgba(180,122,18,.25);
  display: grid; place-items: center;
  margin: 0 auto 12px; color: var(--gold);
  transition: transform .3s;
}
.service-tile:hover .service-tile-icon { transform: scale(1.1); }
.service-tile-icon svg { width: 20px; height: 20px; }
.service-tile-name {
  font-size: 13px; font-weight: 600; color: var(--navy-dark);
  margin-bottom: 6px; line-height: 1.45;
}
.service-tile-desc { font-size: 11px; color: var(--ink-muted); line-height: 1.5; }

/* ============================================================
   PRICING BOX (services page)
   ============================================================ */
.pricing-box {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; box-shadow: 0 4px 32px rgba(36,61,96,.1);
}
.pricing-box-free {
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3.5vw, 40px);
  border-bottom: 1px solid var(--line);
}
.pricing-box-badge {
  display: inline-block; background: var(--gold); color: var(--navy-dark);
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px;
  letter-spacing: .06em; margin-bottom: 16px;
}
.pricing-box-title {
  font-family: var(--font-serif); font-size: clamp(18px, 2vw, 24px);
  font-weight: 700; color: var(--navy); margin-bottom: 6px;
}
.pricing-box-note { font-size: 13px; color: var(--ink-muted); margin-bottom: 16px; }
.pricing-box-price {
  font-family: var(--font-display); font-size: clamp(40px, 5vw, 56px);
  font-style: italic; font-weight: 700; color: var(--gold);
  margin-bottom: 8px;
}
.pricing-box-footnote { font-size: 12px; color: var(--ink-muted); }
.pricing-box-standard {
  padding: clamp(24px, 3.5vw, 40px);
  background: rgba(238,243,249,.4);
}
.pricing-box-std-title {
  font-family: var(--font-serif); font-size: 16px; font-weight: 600;
  color: var(--navy); margin-bottom: 20px;
}
.pricing-box-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  font-size: 14px; color: var(--ink-2);
}
.pricing-box-row.last { border-bottom: none; }
.pricing-box-amount {
  font-weight: 700; color: var(--navy); white-space: nowrap; margin-left: 16px;
}
.pricing-box-amount small { font-size: 12px; font-weight: 400; color: var(--ink-muted); }

/* ============================================================
   CONTACT SIDEBAR + FORM (contact page)
   ============================================================ */
.contact-sidebar { }
.contact-sidebar-title {
  font-family: var(--font-serif); font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700; color: var(--navy); margin-bottom: 24px;
}
.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  display: grid; place-items: center; color: var(--gold-light); flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(17,34,64,.2);
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-label { font-size: 11px; color: var(--ink-muted); margin-bottom: 4px; }
.contact-info-value {
  font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.5;
  transition: color .2s;
}
a.contact-info-value:hover { color: var(--gold); }

/* 無料特典カード */
.contact-free-card {
  border: 2px solid var(--gold-light);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(212,154,26,.12);
}
.contact-free-card-head {
  background: linear-gradient(to right, var(--gold), var(--gold-2));
  padding: 12px 20px;
  display: flex; align-items: center; gap: 10px;
}
.contact-free-card-gift {
  width: 28px; height: 28px; background: rgba(255,255,255,.2);
  border-radius: 50%; display: grid; place-items: center; flex-shrink: 0;
  color: #fff;
}
.contact-free-card-gift svg { width: 16px; height: 16px; }
.contact-free-card-label { color: #fff; font-weight: 700; font-size: 15px; letter-spacing: .04em; }
.contact-free-card-body {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 24px 20px; text-align: center;
}
.contact-free-price {
  font-family: var(--font-serif); font-size: 22px; font-weight: 700;
  color: #fff; margin-bottom: 6px;
}
.contact-free-price strong {
  font-family: var(--font-display); font-style: italic; font-size: 32px;
  color: var(--gold-light);
}
.contact-free-normal {
  font-size: 12px; color: rgba(224,173,62,.7); font-weight: 600; margin-bottom: 16px;
}
.contact-free-divider {
  width: 40px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(180,122,18,.4), transparent);
  margin: 0 auto 16px;
}
.contact-free-text {
  font-size: 13px; color: rgba(255,255,255,.85); line-height: 1.85;
}
.contact-free-text span { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 4px; display: block; }

/* Contact form wrapper */
.contact-form-wrap { }
.contact-form-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: clamp(24px, 3.5vw, 48px);
  box-shadow: 0 2px 16px rgba(36,61,96,.06);
  transition: box-shadow .3s;
}
.contact-form-card:hover { box-shadow: 0 8px 32px rgba(36,61,96,.1); }
.contact-form-title {
  font-family: var(--font-serif); font-size: 18px; font-weight: 600;
  color: var(--navy); margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-privacy {
  font-size: 12px; color: var(--ink-muted); margin-bottom: 20px; line-height: 1.7;
}
.form-privacy a { color: var(--navy); text-decoration: underline; }
.form-privacy a:hover { color: var(--gold); }

/* ============================================================
   BTN-GOLD arrow variant
   ============================================================ */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: #fff;
  font-size: 15px; font-weight: 600; letter-spacing: .04em;
  padding: 14px 32px; border-radius: 0;
  box-shadow: 0 4px 18px rgba(180,122,18,.35), 0 2px 6px rgba(0,0,0,.15);
  transition: background .25s, transform .25s, box-shadow .25s;
  border: none; cursor: pointer; text-decoration: none;
}
.btn-gold:hover {
  background: var(--gold-2); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(180,122,18,.45), 0 4px 10px rgba(0,0,0,.18);
}
.btn-gold svg { transition: transform .25s; }
.btn-gold:hover svg { transform: translateX(4px); }

/* ============================================================
   INTRO SECTION (index.html — hero直後)
   ============================================================ */
.intro-section { position: relative; z-index: 2; }

/* バナーヘッダー */
.intro-banner {
  position: relative; overflow: hidden;
  height: clamp(220px, 30vw, 360px);
  display: flex; align-items: center; justify-content: center;
}
.intro-banner-bg {
  position: absolute; inset: 0;
}
.intro-banner-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 60%;
}
.intro-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(17,34,64,.65) 0%, rgba(17,34,64,.80) 100%);
}
.intro-banner-body {
  position: relative; z-index: 1;
  text-align: center; color: #fff;
  padding: 0 var(--gutter);
}
.intro-banner-eyebrow {
  font-family: var(--font-display); font-style: italic;
  font-size: 12px; letter-spacing: .28em; color: var(--gold-light);
  margin-bottom: 12px;
}
.intro-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600; color: #fff;
  letter-spacing: .1em; margin-bottom: 16px;
}
.intro-banner-line {
  width: 40px; height: 1px; background: var(--gold-light);
  margin: 0 auto 16px;
}
.intro-banner-sub {
  font-size: clamp(13px, 1.5vw, 15px);
  color: rgba(255,255,255,.82); letter-spacing: .06em; line-height: 1.8;
}

/* コンテンツエリア */
.intro-content {
  background: #fff;
  padding: clamp(48px, 7vw, 80px) 0;
}

.intro-layout {
  display: grid; grid-template-columns: 340px 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
@media (max-width: 760px) {
  .intro-layout { grid-template-columns: 1fr; gap: 32px; }
  .intro-photo { max-width: 280px; margin-left: auto; margin-right: auto; }
  .intro-photo img {
    aspect-ratio: auto; object-fit: contain;
    box-shadow: 8px 8px 0 var(--bg-soft);
  }
}
.intro-photo {
  position: relative;
}
.intro-photo img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  display: block; border-radius: 2px;
  box-shadow: 12px 12px 0 var(--bg-soft);
}
.intro-eyebrow {
  font-family: var(--font-display); font-style: italic;
  font-size: 12px; letter-spacing: .28em; color: var(--gold);
  margin-bottom: 8px; display: block;
}
.intro-name {
  font-family: var(--font-serif); font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700; color: var(--navy-dark); letter-spacing: .06em;
  line-height: 1.2; margin-bottom: 10px;
}
.intro-position {
  font-size: 13px; color: var(--ink-muted); line-height: 1.8;
  margin-bottom: 20px;
}
.intro-bar {
  width: 40px; height: 3px; background: var(--gold); margin-bottom: 22px;
}
.intro-text {
  font-size: clamp(13.5px, 1.5vw, 15px); color: var(--ink-2);
  line-height: 2; margin-bottom: 24px;
}
.intro-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px;
}
.intro-more {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-serif); font-size: 14px; font-weight: 600;
  color: var(--navy); border-bottom: 2px solid var(--gold); padding-bottom: 4px;
  transition: color .2s, border-color .2s;
}
.intro-more:hover { color: var(--gold); border-color: var(--gold-2); }
.intro-more svg { transition: transform .2s; }
.intro-more:hover svg { transform: translateX(4px); }
@media (max-width: 760px) {
  .intro-eyebrow,
  .intro-name,
  .intro-position { text-align: center; }
  .intro-bar { margin-left: auto; margin-right: auto; }
  .intro-tags { justify-content: center; }
  .intro-more { display: flex; width: fit-content; margin-left: auto; margin-right: auto; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.parallax-hero-eyebrow {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(12px, 1.4vw, 15px); letter-spacing: .25em; color: var(--gold-light);
  margin-bottom: 10px;
}
.about-profile-layout {
  display: grid; grid-template-columns: 380px 1fr;
  gap: clamp(32px, 5vw, 64px); align-items: start;
}
@media (max-width: 860px) { .about-profile-layout { grid-template-columns: 1fr; } }
.about-photo-wrap {
  position: sticky; top: 100px;
}
@media (max-width: 860px) { .about-photo-wrap { position: static; } }
.about-photo-wrap img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: 4px; box-shadow: 0 12px 40px rgba(36,61,96,.15);
  display: block;
}
@media (max-width: 860px) { .about-photo-wrap img { aspect-ratio: 4/3; } }
.about-name-card {
  background: var(--navy); color: #fff;
  padding: 16px 20px; margin-top: -1px;
}
.about-name-jp {
  font-family: var(--font-serif); font-size: 20px; font-weight: 700;
  letter-spacing: .08em; margin-bottom: 4px;
}
.about-name-en {
  font-family: var(--font-display); font-style: italic;
  font-size: 13px; letter-spacing: .18em; color: var(--gold-light);
  margin-bottom: 4px;
}
.about-position { font-size: 12px; color: rgba(255,255,255,.7); }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.about-section-title {
  font-family: var(--font-serif); font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700; color: var(--navy); margin-bottom: 10px;
}
.about-section-bar {
  width: 40px; height: 3px; background: var(--gold); margin-bottom: 16px;
}
.about-lead {
  font-family: var(--font-serif); font-size: clamp(14px, 1.6vw, 17px);
  color: var(--gold-2); font-weight: 600; margin-bottom: 24px; line-height: 1.6;
}
.about-text {
  font-size: 14.5px; color: var(--ink-2); line-height: 2; margin-bottom: 16px;
}
.about-interview-link {
  margin-top: 28px;
}
.about-interview-link a {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid var(--line); padding: 14px 20px;
  background: #fff; border-radius: 8px;
  transition: border-color .2s, box-shadow .2s;
}
.about-interview-link a:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(180,122,18,.12); }
.about-interview-label { font-size: 14px; font-weight: 600; color: var(--navy); }
.about-interview-source { font-size: 11px; color: var(--ink-muted); }
.about-interview-link svg { color: var(--gold); flex-shrink: 0; }

/* About page stats row */
.about-stat-row {
  display: flex; gap: 0;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px; overflow: hidden;
}
.about-stat {
  flex: 1; padding: 18px 12px; text-align: center;
  border-right: 1px solid var(--line);
}
.about-stat:last-child { border-right: none; }
.about-stat-num {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(24px, 3vw, 36px); color: var(--gold); line-height: 1;
}
.about-stat-unit { font-size: 14px; color: var(--ink-2); font-weight: 600; }
.about-stat-label { font-size: 11px; color: var(--ink-muted); margin-top: 6px; line-height: 1.4; }

/* About chapter label */
.about-chapter-label {
  font-family: var(--font-display); font-style: italic;
  font-size: 11px; letter-spacing: .22em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 12px; display: block;
}

/* Interview chapter sections */
.interview-chapter { }
.interview-chapter-inner {
  max-width: 760px; margin: 0 auto; padding: 0 var(--gutter);
}
.interview-chapter-header { margin-bottom: clamp(28px, 4vw, 44px); }
.interview-chapter-num {
  font-family: var(--font-display); font-style: italic;
  font-size: 11px; letter-spacing: .25em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 12px; display: block;
}
.interview-chapter-title {
  font-family: var(--font-serif); font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700; color: var(--navy); line-height: 1.5;
}
.section--light .interview-chapter-title { color: var(--navy-dark); }
.interview-body { display: flex; flex-direction: column; gap: 0; }
.interview-text-block { }
.interview-text {
  font-size: clamp(14px, 1.5vw, 15.5px); color: var(--ink-2);
  line-height: 2.1; margin-bottom: 20px;
}
.interview-quote {
  margin: clamp(20px, 3vw, 32px) 0;
  padding: clamp(20px, 3vw, 32px) clamp(20px, 3vw, 36px);
  border-left: 4px solid var(--gold);
  background: var(--gold-bg);
  border-radius: 0 8px 8px 0;
  position: relative;
}
.interview-quote::before {
  content: '\201C';
  font-family: var(--font-display); font-style: italic;
  font-size: 64px; line-height: 1;
  color: var(--gold-light); opacity: .5;
  position: absolute; top: 8px; left: 16px;
  pointer-events: none;
}
.interview-quote p {
  font-family: var(--font-serif); font-size: clamp(14px, 1.6vw, 16px);
  color: var(--navy); line-height: 2; margin: 0;
  padding-left: 12px;
}
.section--light .interview-quote { background: #fff; }

/* Interview source link */
.interview-source-link { margin-top: clamp(28px, 4vw, 40px); }
.interview-source-label {
  font-family: var(--font-display); font-style: italic;
  font-size: 11px; letter-spacing: .2em; color: var(--gold);
  margin-bottom: 10px; display: block;
}
.interview-source-btn {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); padding: 14px 20px;
  background: #fff; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: var(--navy);
  transition: border-color .2s, box-shadow .2s;
}
.interview-source-btn:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(180,122,18,.12);
  color: var(--gold-2);
}
.interview-source-btn svg:first-child { color: var(--gold); flex-shrink: 0; }
.interview-source-btn svg:last-child { color: var(--ink-muted); flex-shrink: 0; }

/* Career timeline */
.career-timeline {
  position: relative; padding-left: 32px;
  display: flex; flex-direction: column; gap: 0;
}
.career-timeline::before {
  content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(180,122,18,.15));
}
.career-item {
  position: relative; padding-bottom: clamp(28px, 4vw, 40px);
}
.career-item:last-child { padding-bottom: 0; }
.career-dot {
  position: absolute; left: -28px; top: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--gold);
  z-index: 1;
}
.career-dot--current {
  background: var(--gold); box-shadow: 0 0 0 4px rgba(180,122,18,.2);
}
.career-period {
  font-family: var(--font-display); font-style: italic;
  font-size: 11px; letter-spacing: .2em; color: var(--gold);
  margin-bottom: 6px;
}
.career-title {
  font-family: var(--font-serif); font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 700; color: var(--navy); margin-bottom: 8px;
}
.career-desc { font-size: 14px; color: var(--ink-2); line-height: 1.9; }

/* Message section */
.section--dark-bg {
  background: var(--navy-dark);
}
.about-message {
  padding: clamp(32px, 5vw, 56px) clamp(28px, 4vw, 48px);
  border-left: 4px solid var(--gold);
  background: rgba(255,255,255,.04);
  border-radius: 0 8px 8px 0;
}
.about-message-deco {
  font-family: var(--font-display); font-style: italic;
  font-size: 72px; line-height: 1; color: rgba(180,122,18,.2);
  margin-bottom: 8px; user-select: none;
}
.about-message-deco::before { content: '"'; }
.about-message-lead {
  font-family: var(--font-serif); font-size: clamp(16px, 2vw, 22px);
  font-weight: 700; color: var(--gold-light); line-height: 1.6;
  margin-bottom: 20px;
}
.about-message-body {
  font-size: clamp(13.5px, 1.5vw, 15px); color: rgba(255,255,255,.85);
  line-height: 2; margin-bottom: 24px;
}
.about-message-sig {
  font-family: var(--font-serif); font-size: 16px; font-weight: 600;
  color: #fff; letter-spacing: .08em;
}

/* LINE button large */
.btn-line-lg {
  display: inline-flex; align-items: center; gap: 10px;
  background: #06c755; color: #fff;
  font-size: 15px; font-weight: 600; letter-spacing: .04em;
  padding: 14px 32px; border-radius: 0;
  box-shadow: 0 4px 18px rgba(6,199,85,.35), 0 2px 6px rgba(0,0,0,.15);
  transition: background .25s, transform .25s, box-shadow .25s;
  text-decoration: none;
}
.btn-line-lg:hover { background: #05b34c; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(6,199,85,.45), 0 4px 10px rgba(0,0,0,.18); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-photo {
  opacity: 0; transform: scale(.96);
  transition: opacity 1s cubic-bezier(.22,.61,.36,1), transform 1.1s cubic-bezier(.22,.61,.36,1);
}
.reveal-photo.visible { opacity: 1; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-photo { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   ABOUT PAGE — RICH ANIMATIONS
   ============================================================ */

/* Hero: floating orbs */
.about-hero { overflow: hidden; }
.about-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.about-orb-1 {
  width: clamp(260px, 36vw, 500px); height: clamp(260px, 36vw, 500px);
  background: radial-gradient(circle at center, rgba(180,122,18,.22) 0%, transparent 65%);
  top: -22%; left: -8%; filter: blur(52px);
  animation: orb-a 14s ease-in-out infinite alternate;
}
.about-orb-2 {
  width: clamp(160px, 22vw, 320px); height: clamp(160px, 22vw, 320px);
  background: radial-gradient(circle at center, rgba(251,247,238,.08) 0%, transparent 65%);
  bottom: -4%; right: 3%; filter: blur(40px);
  animation: orb-b 9s ease-in-out infinite alternate; animation-delay: -4s;
}
.about-orb-3 {
  width: clamp(100px, 15vw, 220px); height: clamp(100px, 15vw, 220px);
  background: radial-gradient(circle at center, rgba(180,122,18,.14) 0%, transparent 65%);
  top: 42%; left: 36%; filter: blur(34px);
  animation: orb-a 18s ease-in-out infinite alternate-reverse; animation-delay: -9s;
}
@keyframes orb-a { to { transform: translate(34px, -26px) scale(1.15); } }
@keyframes orb-b { to { transform: translate(-26px, 18px) scale(0.87); } }

/* Hero: staggered text entrance */
.about-hero .parallax-hero-title {
  animation: ah-title 1s cubic-bezier(.22,1,.36,1) .3s both;
}
.about-hero .parallax-hero-line {
  animation: ah-line .7s cubic-bezier(.22,1,.36,1) .88s both;
}
.about-hero .parallax-hero-sub {
  animation: ah-fade .9s cubic-bezier(.22,1,.36,1) 1.08s both;
}
@keyframes ah-title {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ah-line {
  from { opacity: 0; width: 0; }
  to   { opacity: 1; width: 48px; }
}
@keyframes ah-fade {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Profile photo: gold corner frame */
.about-photo-frame {
  position: relative; display: block;
}
.about-photo-frame::before,
.about-photo-frame::after {
  content: ''; position: absolute; z-index: 2; pointer-events: none;
  width: 30px; height: 30px;
  border-color: var(--gold); border-style: solid;
  transition: width .4s, height .4s;
}
.about-photo-frame::before { top: -10px; right: -10px; border-width: 2px 2px 0 0; }
.about-photo-frame::after  { bottom: -10px; left: -10px; border-width: 0 0 2px 2px; }
.about-photo-frame:hover::before,
.about-photo-frame:hover::after { width: 44px; height: 44px; }

/* Profile photo: float */
.about-photo-frame img {
  animation: photo-float 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes photo-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Profile tags: pop-in stagger */
.about-tags .profile-tag {
  animation: tag-pop .5s cubic-bezier(.34,1.56,.64,1) both;
}
.about-tags .profile-tag:nth-child(1) { animation-delay: .9s; }
.about-tags .profile-tag:nth-child(2) { animation-delay: 1.05s; }
.about-tags .profile-tag:nth-child(3) { animation-delay: 1.2s; }
.about-tags .profile-tag:nth-child(4) { animation-delay: 1.35s; }
@keyframes tag-pop {
  from { opacity: 0; transform: scale(.78) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Stats: shimmer gold gradient */
.about-stat-num {
  background: linear-gradient(90deg, var(--gold-2) 0%, #e8c06b 42%, var(--gold-2) 100%);
  background-size: 200%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: stat-shimmer 3.8s linear infinite;
}
@keyframes stat-shimmer { to { background-position: 200% center; } }

/* Chapter: decorative background number */
.chapter-deco-num {
  position: absolute; right: 0; top: -28px;
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: clamp(96px, 17vw, 220px); line-height: 1; letter-spacing: -.03em;
  color: rgba(180,122,18,.07); pointer-events: none; user-select: none;
  z-index: 0; white-space: nowrap;
}
.interview-chapter-inner { position: relative; overflow: hidden; }
.interview-chapter-header,
.interview-body { position: relative; z-index: 1; }

/* Career timeline: line draw on scroll */
.career-timeline::before {
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1.6s cubic-bezier(.22,1,.36,1);
}
.career-timeline.tl-ready::before { transform: scaleY(1); }

/* Career items: staggered reveal */
.career-item.reveal:nth-child(1) { transition-delay: .1s; }
.career-item.reveal:nth-child(2) { transition-delay: .24s; }
.career-item.reveal:nth-child(3) { transition-delay: .38s; }
.career-item.reveal:nth-child(4) { transition-delay: .52s; }

/* Career dot: pulse on current role */
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(180,122,18,.28); }
  50%       { box-shadow: 0 0 0 12px rgba(180,122,18,.05); }
}
.career-dot--current { animation: dot-pulse 2.4s ease-in-out infinite; }

/* Section–light: richer quote shadow */
.section--light .interview-quote {
  box-shadow: 0 4px 24px rgba(36,61,96,.07);
}

@media (prefers-reduced-motion: reduce) {
  .about-orb-1, .about-orb-2, .about-orb-3,
  .about-hero .parallax-hero-title,
  .about-hero .parallax-hero-line,
  .about-hero .parallax-hero-sub,
  .about-photo-frame img,
  .about-tags .profile-tag,
  .career-dot--current { animation: none; }
  .about-stat-num {
    -webkit-text-fill-color: var(--gold);
    color: var(--gold);
    background: none;
  }
}

/* Typewriter cursor */
.tw-cursor {
  display: inline-block;
  width: 2px;
  height: .9em;
  background: rgba(255,255,255,.85);
  vertical-align: text-bottom;
  margin-left: 1px;
  animation: tw-blink .7s step-end infinite;
}
@keyframes tw-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
.tw-cursor.done { animation: none; opacity: 0; }
