

:root {
  
  --paper:      #f4f4f2;   
  --paper-2:    #eaeae6;   
  --paper-3:    #e2e2dc;
  --ink:        #1c1e1b;
  --ink-soft:   #565853;
  --ink-faint:  #6e706a;
  --field:      #1e2823;   
  --field-2:    #161d18;   
  --on-field:   #eeefe9;
  --on-field-soft: #c2c5bd;
  --accent:     #2c5240;   
  --accent-soft:#4a7a60;
  --line:       rgba(28, 30, 27, 0.13);
  --line-strong:rgba(28, 30, 27, 0.28);
  --line-light: rgba(238, 239, 233, 0.18);

  
  --font-display: "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --font-gothic: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;

  --fs-hero:      clamp(2.05rem, 1.3rem + 2.2vw, 3.05rem);
  --fs-display:   clamp(1.85rem, 1.2rem + 2.2vw, 2.95rem);
  --fs-statement: clamp(1.65rem, 1.05rem + 2.1vw, 2.7rem);
  --fs-h3:        clamp(1.18rem, 1.05rem + 0.5vw, 1.5rem);
  --fs-lead:      clamp(1rem, 0.96rem + 0.3vw, 1.15rem);
  --fs-body:      1.0rem;
  --fs-small:     0.82rem;
  --fs-label:     0.72rem;

  
  --container: 1240px;
  --gutter: clamp(1.25rem, 0.4rem + 4vw, 5rem);
  --section-y: clamp(4.5rem, 2.8rem + 5vw, 8rem);
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-gothic);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 2.0;
  letter-spacing: 0.02em;
  color: var(--ink);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-break: strict;
  word-break: normal;
  overflow-wrap: anywhere;
}
p { text-wrap: pretty; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol, dl, dd, figure, blockquote { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

::selection { background: rgba(44, 82, 64, 0.18); }

.skip-link {
  position: fixed; top: 1rem; left: 1rem; z-index: 200;
  background: var(--field); color: var(--on-field);
  padding: 0.7em 1.2em; font-size: 0.85rem; letter-spacing: 0.06em;
  clip-path: inset(100%); white-space: nowrap;
}
.skip-link:focus { clip-path: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); position: relative; }
.section.band { background-color: var(--paper-2); }
.section.dark { background: var(--field); color: var(--on-field); }
.section[id] { scroll-margin-top: calc(var(--header-h) + 8px); }
#contact { scroll-margin-top: 0; }

.sec-head { margin-bottom: clamp(2.25rem, 1.6rem + 2vw, 3.4rem); }
.sec-kicker { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.sec-num { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; letter-spacing: 0.06em; color: var(--accent); }
.sec-rule { width: 2.75rem; height: 1px; background: var(--accent); opacity: 0.65; }
.sec-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-display);
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.sec-lead {
  margin-top: 1.5rem;
  max-width: 42ch;
  color: var(--ink-soft);
  line-height: 2.05;
  text-wrap: balance;
}
.sec-head-light .sec-num { color: var(--accent-soft); }
.sec-head-light .sec-rule { background: var(--accent-soft); }
.sec-lead-solo { margin-top: 0; } 

.nf-lead { color: var(--ink-soft); line-height: 2.05; max-width: 38em; }
.nf-actions { margin-top: 2.4rem; }

.btn {
  display: inline-flex; align-items: center; gap: 0.7em;
  font-family: var(--font-gothic);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  padding: 1.05em 1.9em;
  border-radius: 1px;
  transition: background 0.45s var(--ease), color 0.45s var(--ease), transform 0.45s var(--ease);
}
.btn::after {
  content: "→"; font-family: var(--font-gothic);
  transition: transform 0.45s var(--ease);
}
.btn:hover::after { transform: translateX(5px); }
.btn-solid { background: var(--field); color: var(--paper); }
.btn-solid:hover { background: #2a3a31; }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: #fff; }

.link-underline {
  position: relative;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  padding-bottom: 0.35em;
}
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--line-strong);
  transform: scaleX(1); transform-origin: right;
  transition: transform 0.5s var(--ease), background 0.5s var(--ease);
}
.link-underline:hover::after { background: var(--accent); transform: scaleX(1.0); }
.link-underline { background-image: none; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.5s var(--ease), height 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(244, 244, 242, 0.9);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
  height: 64px;
}
.header-inner {
  width: 100%; max-width: var(--container); margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: clamp(1.1rem, 2vw, 2rem);
}

.brand { display: flex; align-items: center; gap: 0.75rem; color: var(--ink); flex: 0 1 auto; min-width: 0; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; flex-shrink: 0;
  font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; line-height: 1;
  color: var(--ink); border: 1px solid var(--accent); border-radius: 2px;
}
.site-header.is-scrolled .brand-mark { width: 36px; height: 36px; font-size: 1.2rem; }
.brand-logo { display: inline-flex; align-items: center; height: 40px; flex-shrink: 0; transition: height 0.5s var(--ease); }
.brand-logo img { height: 100%; width: auto; max-width: min(240px, 48vw); object-fit: contain; }
.site-header.is-scrolled .brand-logo { height: 34px; }

.brand-text.brand-text-overlay { display: none; }
body.has-hero-full .site-header:not(.is-scrolled) .brand-logo { display: none; }
body.has-hero-full .site-header:not(.is-scrolled) .brand-text-overlay { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.brand-ja { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; letter-spacing: 0.05em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.brand-en { font-size: 0.58rem; letter-spacing: 0.22em; color: var(--ink-soft); margin-top: 0.2em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }

.site-nav { display: flex; gap: clamp(0.9rem, 1.7vw, 2.1rem); }
.site-nav a {
  position: relative; font-size: 0.92rem; letter-spacing: 0.04em; padding: 0.4em 0;
  color: var(--ink); white-space: nowrap;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0.1em; width: 100%; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.site-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 1.5rem; flex-shrink: 0; }
.site-nav { flex-shrink: 0; }
.header-tel { display: flex; flex-direction: column; align-items: flex-end; gap: 0.28rem; line-height: 1; }
.header-tel-label { font-size: 0.62rem; letter-spacing: 0.22em; color: var(--ink-soft); }
.header-tel-num { font-family: var(--font-display); font-weight: 700; font-size: 1.16rem; letter-spacing: 0; line-height: 1; white-space: nowrap; }
.header-cta { padding: 0.85em 1.5em; font-size: 0.85rem; white-space: nowrap; }
.header-cta::after { content: none; }

body.has-hero-full .site-header:not(.is-scrolled) .brand-ja,
body.has-hero-full .site-header:not(.is-scrolled) .brand-en,
body.has-hero-full .site-header:not(.is-scrolled) .site-nav a,
body.has-hero-full .site-header:not(.is-scrolled) .header-tel-label,
body.has-hero-full .site-header:not(.is-scrolled) .header-tel-num { color: #fff; }
body.has-hero-full .site-header:not(.is-scrolled) .brand-mark { color: #fff; border-color: rgba(255, 255, 255, 0.55); }
body.has-hero-full .site-header:not(.is-scrolled) .nav-toggle span { background: #fff; }
body.has-hero-full .site-header:not(.is-scrolled) .site-nav a::after { background: var(--accent-soft); }

.nav-toggle { display: none; width: 30px; height: 22px; position: relative; flex-shrink: 0; }
.nav-toggle span {
  position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--ink);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 2px; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 18px; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.hero { position: relative; background-color: var(--paper); overflow: hidden; }
.hero-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header-h) + clamp(2rem, 6vh, 5rem)) var(--gutter) clamp(3rem, 7vh, 6rem) max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  max-width: none;
}
.hero-copy > * { max-width: 35rem; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-size: var(--fs-label); letter-spacing: 0.24em; color: var(--ink-soft);
  margin-bottom: 2rem;
}
.hero-eyebrow .rule { width: 3rem; height: 1px; background: var(--accent); display: inline-block; }
.hero-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--fs-hero); line-height: 1.5; letter-spacing: 0.04em;
  text-wrap: balance; word-break: keep-all; overflow-wrap: normal;
}
.hero-lead {
  margin-top: 1.9rem; color: var(--ink-soft); line-height: 2.1;
  text-wrap: pretty;
}
.hero-actions { margin-top: 2.6rem; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.hero-stats {
  margin-top: clamp(2.5rem, 5vh, 4rem); padding-top: 1.8rem;
  border-top: 1px solid var(--line);
  display: flex; gap: clamp(1.5rem, 4vw, 3.5rem); flex-wrap: wrap;
}
.hero-stats div { display: flex; flex-direction: column; gap: 0.55rem; }
.hero-stats dt { font-size: 0.78rem; letter-spacing: 0.14em; color: var(--ink-soft); }
.hero-stats dd { display: flex; align-items: baseline; gap: 0.12em; }
.hero-stats .num { font-family: var(--font-display); font-weight: 700; font-size: 2.1rem; line-height: 1; letter-spacing: 0.01em; }
.hero-stats .unit { font-family: var(--font-display); font-size: 1rem; color: var(--ink); }

.hero-vtag {
  position: absolute; top: clamp(5rem, 16vh, 9rem); right: clamp(1.5rem, 3vw, 2.6rem);
  writing-mode: vertical-rl; font-family: var(--font-display); font-weight: 500;
  font-size: 0.95rem; letter-spacing: 0.42em; color: var(--ink-soft);
  padding: 0.4em 0; z-index: 3;
}
.hero .hero-vtag { color: #fff; text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35); }

.hero-full { position: relative; min-height: clamp(600px, 90vh, 940px); display: flex; align-items: center; overflow: hidden; color: #fff; background: var(--field); }
.hero-full::before { display: none; }
.hero-full .hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-full .hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-full::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(100deg, color-mix(in srgb, var(--field) 92%, transparent) 0%, color-mix(in srgb, var(--field) 78%, transparent) 33%, color-mix(in srgb, var(--field) 34%, transparent) 58%, color-mix(in srgb, var(--field) 6%, transparent) 100%);
}
.hero-full .hero-inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(3rem, 10vh, 6rem); }
.hero-full .hero-copy { max-width: 40rem; align-items: flex-start; }
.hero-full .hero-copy > * { max-width: 100%; width: 100%; }
.hero-full .hero-eyebrow { color: rgba(255,255,255,0.82); margin-bottom: 1.6rem; }
.hero-full .hero-eyebrow .rule { background: var(--accent-soft); }

.hero-full .hero-title { color: #fff; font-size: clamp(1.95rem, 1.2rem + 2vw, 2.95rem); line-height: 1.5; letter-spacing: 0.02em; word-break: keep-all; overflow-wrap: normal; line-break: strict; text-wrap: wrap; text-shadow: 0 2px 30px rgba(0,0,0,0.3); }
.hero-full .hero-lead { color: rgba(255,255,255,0.9); }
.hero-full .hero-actions { gap: 2.2rem; }
.hero-full .btn-solid { background: var(--accent); color: #fff; }
.hero-full .btn-solid:hover { background: var(--accent-soft); }
.hero-full .link-underline { color: #fff; }
.hero-full .link-underline::after { background: rgba(255,255,255,0.6); }
.hero-full .hero-stats { border-top: 1px solid rgba(255,255,255,0.28); }
.hero-full .hero-stats dt { color: rgba(255,255,255,0.78); }
.hero-full .hero-stats .num { color: #fff; }
.hero-full .hero-stats .unit { color: rgba(255,255,255,0.82); }
.hero-full .hero-vtag { color: #fff; text-shadow: 0 1px 14px rgba(0,0,0,0.4); top: clamp(5rem,16vh,9rem); }

.philo-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.philosophy .sec-head { display: none; }
.philo-inner > .sec-kicker { justify-content: center; margin-bottom: clamp(1.8rem, 1rem + 2vw, 2.8rem); }
.philo-statement {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.75rem, 1.05rem + 2.4vw, 2.95rem);
  line-height: 1.7; letter-spacing: 0.06em; text-wrap: balance;
}
.philo-rule { width: 1px; height: clamp(2.4rem, 4vw, 3.4rem); background: var(--line-strong); margin: clamp(1.8rem, 3vw, 2.8rem) 0; }
.philo-text { display: flex; flex-direction: column; gap: 1.5rem; color: var(--ink-soft); max-width: 38em; text-align: left; line-height: 2.05; }

.service-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(2rem, 5vw, 5rem); }
.service-list li[id] { scroll-margin-top: calc(var(--header-h) + 16px); }
.service-item {
  display: grid; grid-template-columns: clamp(76px, 9.5vw, 110px) 1fr; gap: clamp(1.3rem, 2.5vw, 2.1rem);
  align-items: start;
  padding-block: clamp(1.9rem, 3vw, 2.8rem);
  border-top: 1px solid var(--line);
}
.service-item.no-illust { grid-template-columns: 1fr; }
.service-illust { padding-top: 0.2rem; }
.service-illust img { width: 100%; height: auto; }
.service-index {
  display: block; font-family: var(--font-display); font-weight: 700; font-size: 0.82rem;
  color: var(--accent); letter-spacing: 0.14em; margin-bottom: 0.55rem;
}

.service-title { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-h3); line-height: 1.45; word-break: normal; word-break: auto-phrase; }
.service-desc { margin-top: 0.95rem; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.95; }

.service-list-compact .service-item { align-items: center; }

.reasons-teaser { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 4vw, 3.5rem); }
.rt-item { border-top: 1px solid var(--line-strong); padding-top: 1.4rem; }
.rt-num { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.9rem; color: var(--accent); letter-spacing: 0.02em; margin-bottom: 0.85rem; }
.rt-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.08rem, 0.98rem + 0.5vw, 1.32rem); line-height: 1.55; }

.reason-rows { display: flex; flex-direction: column; gap: clamp(3.5rem, 7vw, 7rem); }
.reason-row { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.reason-row:nth-child(even) .reason-figure { order: 2; }
.reason-figure { overflow: hidden; }
.reason-figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 1.4s var(--ease); }
.reason-row:hover .reason-figure img { transform: scale(1.04); }
.reason-num { font-family: var(--font-display); font-weight: 500; font-size: 2.6rem; line-height: 1; color: var(--accent); letter-spacing: 0.02em; }
.reason-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.4rem, 1rem + 1.2vw, 2rem); line-height: 1.55; margin-top: 1.1rem; margin-bottom: 1.4rem; letter-spacing: 0.02em; }
.reason-text p:last-child { color: var(--ink-soft); line-height: 2.05; max-width: 40ch; }

.message-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.message-figure { position: relative; }
.message-figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.message-figure::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px var(--line-light); pointer-events: none; }
.message-lead { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-statement); line-height: 1.6; letter-spacing: 0.03em; margin-bottom: 2rem; color: #fff; }
.message-body p { color: var(--on-field-soft); line-height: 1.95; margin-top: 1.4rem; max-width: 31em; letter-spacing: 0.01em; }
.message-body p.message-lead { margin-top: 0; }
.message-sign { display: flex; align-items: baseline; gap: 1rem; margin-top: 2.6rem !important; }
.sign-role { font-size: 0.72rem; letter-spacing: 0.2em; color: var(--on-field-soft); }
.sign-name { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; letter-spacing: 0.1em; color: var(--on-field); }

.flow-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); gap: 0 clamp(1rem, 2vw, 1.8rem); }
.flow-step { padding: 2.2rem 0 0; border-top: 1px solid var(--line-strong); position: relative; }
.flow-illust { height: 56px; margin-bottom: 1.2rem; }
.flow-illust img { height: 100%; width: auto; }
.flow-num { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); display: flex; align-items: baseline; gap: 0.5em; }
.flow-num span { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; letter-spacing: 0.02em; color: var(--accent); }
.flow-title { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-h3); margin-top: 1rem; margin-bottom: 0.9rem; }
.flow-desc { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.95; }

.photo-band { margin: 0; }
.photo-band img { width: 100%; height: clamp(240px, 36vh, 420px); object-fit: cover; display: block; }

.fee-table { border-top: 1px solid var(--line-strong); }
.fee-row { display: grid; grid-template-columns: 1.1fr 1.7fr 1fr; gap: 1.5rem; align-items: baseline; padding-block: 1.5rem; border-bottom: 1px solid var(--line); }
.fee-row-head { padding-block: 1rem; }
.fee-row-head span { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); }
.fee-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.fee-cond { color: var(--ink-soft); font-size: 0.88rem; line-height: 1.8; }
.fee-price { text-align: right; }
.fee-price .num { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; letter-spacing: 0.01em; }
.fee-price .unit { font-size: 0.8rem; color: var(--ink-soft); margin-left: 0.2em; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.2rem; align-items: center;
  padding-block: 1.7rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--accent); line-height: 1; }
.faq-text { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.02rem, 0.95rem + 0.3vw, 1.2rem); line-height: 1.6; }
.faq-icon { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--ink); transition: transform 0.4s var(--ease), opacity 0.4s var(--ease); }
.faq-icon::before { top: 50%; left: 0; width: 100%; height: 1px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; width: 1px; height: 100%; transform: translateX(-50%); }
.faq-item[open] .faq-icon::after { opacity: 0; transform: translateX(-50%) scaleY(0); }
.faq-answer { overflow: hidden; padding: 0 0 0 calc(1.2rem + 1.2em); }
.faq-answer p { color: var(--ink-soft); line-height: 2.05; padding-bottom: 1.9rem; max-width: 60ch; }

.office-info > div { display: grid; grid-template-columns: 7.5rem 1fr; gap: 1rem; padding-block: 1.3rem; border-bottom: 1px solid var(--line); }
.office-info > div:first-child { border-top: 1px solid var(--line); }
.office-info dt { font-size: 0.78rem; letter-spacing: 0.14em; color: var(--ink-soft); padding-top: 0.25em; }
.office-info dd { line-height: 1.9; }
.office-info dd a { border-bottom: 1px solid var(--line-strong); padding-bottom: 1px; }
.office-info dd a:hover { border-color: var(--accent); color: var(--accent); }

.cta { background: var(--field); color: var(--on-field); padding-block: clamp(5rem, 4rem + 5vw, 9rem); position: relative; overflow: hidden; }
.cta::before {
  content: ""; position: absolute; right: -8%; top: -40%; width: 48vw; height: 180%;
  background: radial-gradient(closest-side, rgba(74, 122, 96, 0.13), transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; }
.cta-eyebrow { font-size: var(--fs-label); letter-spacing: 0.3em; color: #93b7a3; margin-bottom: 1.8rem; }
.cta-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 1.3rem + 2.6vw, 3.4rem); line-height: 1.45; letter-spacing: 0.03em; color: #fff; }
.cta-lead { margin-top: 1.8rem; color: var(--on-field-soft); line-height: 2.05; max-width: 34em; text-wrap: balance; }
.cta-actions { margin-top: 3rem; display: flex; align-items: center; gap: clamp(1.5rem, 4vw, 3.5rem); flex-wrap: wrap; }
.cta-tel { display: flex; flex-direction: column; gap: 0.2rem; }
.cta-tel-label { font-size: 0.66rem; letter-spacing: 0.2em; color: var(--on-field-soft); }
.cta-tel-num { font-family: var(--font-display); font-weight: 700; font-size: 2rem; letter-spacing: 0.02em; line-height: 1.2; color: #fff; }
.cta-tel-time { font-size: 0.76rem; color: var(--on-field-soft); }

.site-footer { background: var(--field-2); color: var(--on-field); padding-top: clamp(3.5rem, 5vw, 5.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; padding-bottom: 3.5rem; }
.footer-brand .brand-mark { color: var(--on-field); border-color: var(--accent-soft); }
.footer-name { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; letter-spacing: 0.08em; margin-top: 1rem; }
.footer-en { font-size: 0.6rem; letter-spacing: 0.22em; color: var(--on-field-soft); margin-top: 0.5rem; }

.preview-note {
  font-size: 0.78rem; color: var(--on-field-soft); line-height: 1.9;
  padding: 1.1rem 0; border-bottom: 1px solid var(--line-light);
}
.footer-addr { font-size: 0.86rem; color: var(--on-field-soft); margin-top: 1.4rem; line-height: 1.9; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem 2rem; align-content: start; }
.footer-nav a { font-size: 0.9rem; color: var(--on-field-soft); transition: color 0.3s var(--ease); width: max-content; }
.footer-nav a:hover { color: var(--on-field); }
.footer-base { display: flex; justify-content: space-between; align-items: center; padding-block: 2rem; border-top: 1px solid var(--line-light); }
.footer-copy { font-size: 0.7rem; letter-spacing: 0.12em; color: var(--on-field-soft); }
.footer-top { font-size: 0.66rem; letter-spacing: 0.22em; color: var(--on-field-soft); display: inline-flex; align-items: center; gap: 0.6em; white-space: nowrap; }
.footer-top::before { content: "↑"; }
.footer-top:hover { color: var(--accent-soft); }

html.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.95s var(--ease), transform 0.95s var(--ease); }
html.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1200px) {
  .site-nav, .header-tel { display: none; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .message-grid { grid-template-columns: 1fr; }
  .message-figure { max-width: 340px; }
  .flow-steps { grid-template-columns: 1fr 1fr; }
  .flow-step { padding-left: clamp(1rem, 2vw, 1.8rem); padding-right: clamp(1rem, 2vw, 1.8rem); }
}

@media (max-width: 760px) {
  :root { --header-h: 62px; }
  .hero-copy { padding: calc(var(--header-h) + 3rem) var(--gutter) 3rem; order: 2; }
  .hero-copy > * { max-width: none; }
  .hero-vtag { display: none; } 
  .cta-lead br { display: none; } 
  .hero-eyebrow { font-size: 0.64rem; letter-spacing: 0.14em; gap: 0.7rem; }
  .hero-eyebrow .rule { width: 1.6rem; }
  .hero-title { font-size: clamp(1.6rem, 1.1rem + 2.6vw, 1.95rem); line-height: 1.6; }
  .hero-lead { margin-top: 1.6rem; }
  .service-list { grid-template-columns: 1fr; }
  .service-item:first-child { border-top: 1px solid var(--line); }
  .reasons-teaser { grid-template-columns: 1fr; }
  .reason-row { grid-template-columns: 1fr; gap: 1.6rem; }
  .reason-row:nth-child(even) .reason-figure { order: 0; }
  .fee-row { grid-template-columns: 1fr auto; gap: 0.4rem 1.2rem; }
  .fee-cond { grid-column: 1 / -1; order: 3; }
  .fee-row-head { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-base { flex-direction: column; align-items: flex-start; gap: 0.9rem; }
}

@media (max-width: 480px) {
  .flow-steps { grid-template-columns: 1fr; }
  .hero-actions { gap: 1.2rem; }
  .cta-actions { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .reason-row:hover .reason-figure img { transform: none; }
  * { transition-duration: 0.01ms !important; }
}

.mobile-nav {
  position: fixed; inset: 0; z-index: 90;
  background: var(--paper);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), visibility 0.5s;
}

@media (max-height: 540px) {
  .mobile-nav { justify-content: flex-start; padding-top: calc(var(--header-h) + 1rem); }
}
body.nav-open .mobile-nav { opacity: 1; visibility: visible; transform: none; }
.mobile-nav a.m-link {
  font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; letter-spacing: 0.06em;
  padding: 0.55rem 0; display: flex; align-items: baseline; gap: 1rem; border-bottom: 1px solid var(--line);
}
.mobile-nav a.m-link .m-en { font-family: var(--font-gothic); font-size: 0.62rem; letter-spacing: 0.2em; color: var(--ink-faint); text-transform: uppercase; }
.mobile-nav .m-foot { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
.mobile-nav .m-tel { font-family: var(--font-display); font-weight: 700; font-size: 1.8rem; }
.mobile-nav .m-tel span { display: block; font-family: var(--font-gothic); font-size: 0.62rem; letter-spacing: 0.2em; color: var(--ink-soft); }
.mobile-nav a.m-link[aria-current="page"] { color: var(--accent); }

.site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.footer-nav a[aria-current="page"] { color: var(--on-field); }

.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(3rem, 6vw, 5.5rem)) 0 clamp(2.75rem, 5vw, 4.25rem);
  background-color: var(--paper-2);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-en { font-size: var(--fs-label); letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.1rem; }
.page-hero-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.95rem, 1.3rem + 2.3vw, 3.1rem); letter-spacing: 0.045em; line-height: 1.4; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 0.55em; font-size: 0.74rem; letter-spacing: 0.06em; color: var(--ink-soft); margin-top: 1.7rem; }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--ink-faint); }
.breadcrumb [aria-current="page"] { color: var(--ink); }

.more-link {
  display: inline-flex; align-items: center; gap: 0.7em;
  font-size: 0.9rem; letter-spacing: 0.06em; color: var(--ink);
  padding-bottom: 0.35em; border-bottom: 1px solid var(--line-strong);
  transition: border-color 0.4s var(--ease), gap 0.4s var(--ease);
}
.more-link::after { content: "→"; transition: transform 0.4s var(--ease); }
.more-link:hover { border-color: var(--accent); }
.more-link:hover::after { transform: translateX(5px); }
.more-link-light { color: var(--on-field); border-color: var(--line-light); }
.more-link-light:hover { border-color: var(--accent-soft); }
.sec-foot { margin-top: clamp(2.5rem, 4vw, 3.75rem); }
.sec-foot.center { text-align: center; }

a.service-item { color: inherit; transition: background 0.4s var(--ease); }
a.service-item:hover { background: rgba(28, 29, 25, 0.025); }
a.service-item:hover .service-title { color: var(--accent); }
a.service-item:hover .service-index { color: var(--accent); }

.news-list { border-top: 1px solid var(--line); }
.news-item {
  display: grid; grid-template-columns: 8.5rem 6.5rem 1fr; gap: 1.6rem; align-items: baseline;
  padding-block: 1.5rem; border-bottom: 1px solid var(--line); color: inherit;
  transition: background 0.4s var(--ease);
}
a.news-item:hover { background: rgba(28, 29, 25, 0.025); }
a.news-item:hover .news-title { color: var(--accent); }
.news-date { font-family: var(--font-display); font-size: 0.98rem; color: var(--ink-soft); letter-spacing: 0.05em; }
.news-cat { justify-self: start; font-size: 0.66rem; letter-spacing: 0.14em; color: var(--accent); border: 1px solid var(--accent); padding: 0.3em 0.8em; line-height: 1; }
.news-title { font-size: 0.98rem; line-height: 1.75; }

.timeline { border-left: 1px solid var(--line-strong); margin-left: 0.4rem; padding-top: 0.3rem; }
.timeline-item { position: relative; padding: 0 0 2.4rem 2.4rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ""; position: absolute; left: -4.5px; top: 0.5em; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.timeline-year { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: 0.03em; }
.timeline-text { color: var(--ink-soft); margin-top: 0.5rem; line-height: 1.95; max-width: 46em; }

.contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
.contact-note { color: var(--ink-soft); line-height: 2.05; margin-bottom: 2.5rem; }
.form-field { margin-bottom: 1.7rem; }
.form-label { display: flex; align-items: center; gap: 0.7em; font-size: 0.86rem; letter-spacing: 0.06em; margin-bottom: 0.7rem; }
.form-req { font-size: 0.6rem; letter-spacing: 0.08em; color: #fff; background: var(--accent); padding: 0.2em 0.55em; line-height: 1; }
.form-opt { font-size: 0.66rem; letter-spacing: 0.08em; color: var(--ink-soft); border: 1px solid var(--line-strong); padding: 0.2em 0.55em; line-height: 1; }
.form-field input, .form-field textarea {
  width: 100%; font: inherit; font-size: 0.96rem; color: var(--ink); background: #fbf9f4;
  border: 1px solid var(--line-strong); border-radius: 1px; padding: 0.95em 1.05em;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--ink-faint); }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--accent); background: #fff; }
.form-field textarea { min-height: 9.5rem; resize: vertical; line-height: 1.9; }
.form-consent { display: flex; gap: 0.7em; align-items: flex-start; font-size: 0.86rem; color: var(--ink-soft); line-height: 1.8; margin-bottom: 2rem; }
.form-consent input { width: 1.1em; height: 1.1em; margin-top: 0.4em; accent-color: var(--field); flex-shrink: 0; }
.consent-link { border-bottom: 1px solid var(--line-strong); }
.consent-link:hover { color: var(--accent); border-color: var(--accent); }
.form-submit { width: 100%; justify-content: center; border: none; cursor: pointer; font-size: 1rem; padding: 1.2em; }
.contact-aside { background: var(--paper-2); padding: clamp(1.8rem, 3vw, 2.6rem); }
.contact-aside h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin-bottom: 1.4rem; }
.contact-aside .aside-tel { font-family: var(--font-display); font-weight: 700; font-size: 1.95rem; letter-spacing: 0.01em; line-height: 1.2; display: block; }
.contact-aside .aside-time { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.5rem; }
.contact-aside .aside-rule { height: 1px; background: var(--line); margin: 1.8rem 0; }
.contact-aside p { color: var(--ink-soft); line-height: 2; font-size: 0.92rem; }

.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.access-figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.voice-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 26rem), 1fr)); gap: clamp(1.4rem, 2.5vw, 2.2rem); }
.voice-card { background: var(--paper); border: 1px solid var(--line); padding: clamp(1.7rem, 3vw, 2.5rem); display: flex; flex-direction: column; }
.section.band .voice-card { background: #faf8f2; }
.voice-quote { font-family: var(--font-display); font-weight: 500; font-size: 1.1rem; line-height: 1.95; letter-spacing: 0.02em; text-wrap: pretty; }
.voice-attr { margin-top: auto; padding-top: 1.6rem; display: flex; align-items: center; gap: 1rem; }
.voice-attr img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.voice-attr-text { display: flex; flex-direction: column; gap: 0.25rem; }
.voice-company { font-size: 0.8rem; color: var(--ink-soft); letter-spacing: 0.04em; line-height: 1.5; }
.voice-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; }

.voice-monogram { width: 60px; height: 60px; border-radius: 50%; border: 1px solid var(--accent); color: var(--accent); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; flex-shrink: 0; }

.reason-row.no-figure { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(1.5rem, 5vw, 5rem); align-items: start; padding-top: clamp(1.9rem, 3vw, 2.8rem); border-top: 1px solid var(--line); }
.reason-row.no-figure .reason-text { display: contents; }
.reason-row.no-figure .reason-num { grid-column: 1; grid-row: 1; margin: 0; }
.reason-row.no-figure .reason-title { grid-column: 1; grid-row: 2; margin: 0.7rem 0 0; }
.reason-row.no-figure .reason-text p:last-child { grid-column: 2; grid-row: 1 / span 2; max-width: 46ch; margin: 0; }
.message.no-figure .message-grid { grid-template-columns: 1fr; max-width: 52rem; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .news-item { grid-template-columns: auto 1fr; gap: 0.5rem 1.1rem; padding-block: 1.3rem; }
  .news-title { grid-column: 1 / -1; }
}
