:root {
  --navy: #355f9d;
  --navy-deep: #17191f;
  --blue: #6387c4;
  --blue-pale: #edf3fb;
  --yellow: #f5cf2e;
  --yellow-dark: #dfb817;
  --yellow-ink: #967000;
  --ink: #181a20;
  --muted: #5e6672;
  --line: #dfe4eb;
  --warm: #fbfaf6;
  --white: #ffffff;
  --font-brand: "Noto Sans JP", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  --container: min(1440px, calc(100vw - 96px));
  --header-height: 88px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-brand);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
body.is-intro, body.is-menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.brand-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--warm);
  transition: opacity .58s ease, visibility .58s;
}
.brand-intro::before {
  position: absolute;
  right: -18vw;
  bottom: -42vh;
  width: min(78vw, 1100px);
  aspect-ratio: 1;
  border: clamp(80px, 12vw, 170px) solid rgba(53, 95, 157, .06);
  border-radius: 50%;
  content: "";
  opacity: 0;
  transform: scale(.82);
  animation: introRing .9s .12s var(--ease) forwards;
}
.brand-intro.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.brand-intro.is-hidden .brand-intro__inner { opacity: 0; transform: translateY(-10px); }
.brand-intro__shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 38vw;
  height: 100%;
  background: var(--blue-pale);
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%);
  transform: translateX(100%);
  animation: introShape .85s .08s var(--ease) forwards;
}
.brand-intro__inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(520px, 78vw);
  transition: opacity .28s ease, transform .45s var(--ease);
}
.brand-intro__eyebrow {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .34em;
  opacity: 0;
  transform: translateY(5px);
  animation: introEyebrow .45s .25s var(--ease) forwards;
}
.brand-intro__logo {
  width: min(360px, 67vw);
  opacity: 0;
  transform: translateY(10px) scale(.97);
  animation: introLogo .65s .32s var(--ease) forwards;
}
.brand-intro__logo img { width: 100%; height: auto; }
.brand-intro__copy {
  margin: 20px 0 14px;
  color: var(--navy);
  font-size: clamp(15px, 1.45vw, 18px);
  font-weight: 900;
  letter-spacing: .18em;
  opacity: 0;
  transform: translateY(5px);
  animation: introCopy .5s .72s var(--ease) forwards;
}
.brand-intro__copy span {
  position: relative;
  display: inline-block;
  margin: 0 .08em;
  color: var(--ink);
}
.brand-intro__copy span::after {
  position: absolute;
  right: -.06em;
  bottom: .08em;
  left: -.08em;
  z-index: -1;
  height: .42em;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  animation: introHighlight .42s 1.02s var(--ease) forwards;
}
.brand-intro__line {
  width: min(160px, 38vw);
  height: 3px;
  overflow: hidden;
  background: rgba(53, 95, 157, .12);
}
.brand-intro__line span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue) 0 78%, var(--yellow) 78%);
  transform: scaleX(0);
  transform-origin: left;
  animation: introLine .62s .84s var(--ease) forwards;
}
.brand-intro__edge {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(8px, 1vw, 16px);
  height: 100%;
  background: var(--yellow);
  transform: scaleY(0);
  transform-origin: top;
  animation: introEdge .72s .18s var(--ease) forwards;
}
@keyframes introShape { to { transform: translateX(0); } }
@keyframes introRing { to { opacity: 1; transform: scale(1); } }
@keyframes introEyebrow { to { opacity: 1; transform: translateY(0); } }
@keyframes introLogo { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes introCopy { to { opacity: 1; transform: translateY(0); } }
@keyframes introHighlight { to { transform: scaleX(1); } }
@keyframes introLine { to { transform: scaleX(1); } }
@keyframes introEdge { to { transform: scaleY(1); } }

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(53, 95, 157, .1);
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  transition: box-shadow .3s ease, height .3s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(24, 26, 32, .08); }
.site-header__inner { display: flex; align-items: center; width: var(--container); height: 100%; margin: auto; }
.brand { display: flex; flex: 0 0 auto; align-items: center; gap: 16px; }
.brand img { width: 160px; height: auto; }
.brand > span { padding-left: 16px; border-left: 1px solid var(--line); color: #4f5662; font-size: 10px; font-weight: 800; line-height: 1.55; letter-spacing: .04em; }
.desktop-nav { display: flex; align-self: stretch; align-items: center; gap: clamp(12px, 1.35vw, 24px); margin-left: auto; padding: 0 22px; }
.desktop-nav a { position: relative; display: grid; align-items: center; height: 100%; color: var(--ink); font-size: 13px; font-weight: 800; white-space: nowrap; }
.desktop-nav a::after { position: absolute; right: 0; bottom: 0; left: 0; height: 3px; background: var(--blue); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: stretch; align-self: stretch; margin-left: 0; }
.header-phone { display: flex; align-items: center; gap: 8px; padding: 0 18px; color: var(--navy); white-space: nowrap; }
.header-phone svg { width: 20px; }
.header-phone span { display: grid; }
.header-phone strong { font-family: var(--font-brand); font-size: 17px; font-weight: 900; font-variant-numeric: tabular-nums; line-height: 1.25; letter-spacing: .02em; }
.header-phone small { color: var(--muted); font-size: 9px; font-weight: 700; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; font-size: 14px; font-weight: 800; line-height: 1.4; transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s var(--ease); }
.button:hover { transform: translateY(-2px); }
.button--contact { color: var(--navy-deep); background: var(--yellow); }
.button--contact:hover { background: var(--yellow-dark); }
.button--navy { color: var(--white); background: var(--navy); }
.header-contact { gap: 8px; padding: 0 24px; }
.header-contact svg { width: 21px; }
.menu-button, .mobile-menu { display: none; }

.hero { position: relative; min-height: 820px; padding-top: var(--header-height); overflow: hidden; background: linear-gradient(105deg, #fff 0%, var(--warm) 56%, var(--blue-pale) 100%); }
.hero__wash { position: absolute; top: 80px; right: -12vw; width: 62vw; height: 62vw; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.9), rgba(226,235,248,.58) 55%, transparent 70%); }
.hero__inner { position: relative; display: grid; grid-template-columns: minmax(0, .95fr) minmax(500px, .85fr); width: var(--container); min-height: 650px; margin: auto; }
.hero__content { position: relative; z-index: 2; align-self: center; padding: 72px 36px 120px 12px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 18px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .22em; }
.eyebrow::before { width: 38px; height: 1px; background: currentColor; content: ""; }
.hero h1 { margin: 0; color: var(--navy-deep); font-family: var(--font-brand); font-size: clamp(44px, 3.4vw, 56px); font-weight: 900; line-height: 1.38; letter-spacing: .015em; }
.hero h1 span { color: var(--navy-deep); background: linear-gradient(transparent 66%, rgba(245, 207, 46, .82) 66%); }
.hero__lead { margin: 22px 0 0; color: #414852; font-size: 16px; font-weight: 650; line-height: 2; letter-spacing: .02em; }
.hero__trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; max-width: 690px; margin-top: 28px; border: 1px solid rgba(53,95,157,.1); background: rgba(255,255,255,.88); box-shadow: 0 14px 40px rgba(53,95,157,.07); }
.hero__trust > div { display: flex; align-items: center; gap: 10px; min-height: 78px; padding: 14px 16px; border-right: 1px solid var(--line); }
.hero__trust > div:last-child { border: 0; }
.hero__trust svg { flex: 0 0 auto; width: 25px; color: var(--blue); }
.hero__trust p { display: grid; margin: 0; line-height: 1.45; }
.hero__trust strong { color: var(--navy); font-size: 12px; }
.hero__trust span { color: var(--muted); font-size: 10px; }
.hero__actions { display: flex; align-items: center; gap: 28px; margin-top: 28px; }
.button--large { gap: 34px; min-height: 60px; padding: 0 28px; box-shadow: 0 12px 26px rgba(245,207,46,.26); }
.button--large span { font-size: 20px; transition: transform .25s ease; }
.button--large:hover span { transform: translateX(4px); }
.text-link { padding: 8px 0; border-bottom: 1px solid var(--navy); color: var(--navy); font-size: 13px; font-weight: 800; }
.text-link span { display: inline-block; margin-left: 8px; }

.hero__visual { position: relative; align-self: stretch; }
.hero__photo { position: absolute; inset: 0 -7vw 0 0; margin: 0; overflow: hidden; clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%); }
.hero__photo::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(251,250,246,.92), transparent 22%), linear-gradient(0deg, rgba(23,25,31,.54), transparent 30%); content: ""; pointer-events: none; }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 34%; }
.hero__photo figcaption { position: absolute; right: 7vw; bottom: 94px; z-index: 2; display: grid; max-width: 330px; padding-left: 18px; border-left: 3px solid var(--yellow); color: #fff; font-size: 12px; text-shadow: 0 1px 8px rgba(0,0,0,.3); }
.hero__photo figcaption span { font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.hero__badge { position: absolute; z-index: 3; top: 46px; left: -26px; display: grid; place-content: center; width: 126px; height: 126px; border: 1px solid rgba(99,135,196,.42); border-radius: 50%; color: var(--navy); background: rgba(255,255,255,.94); text-align: center; box-shadow: 0 10px 32px rgba(53,95,157,.12); }
.hero__badge::after { position: absolute; inset: 7px; border: 1px solid rgba(99,135,196,.24); border-radius: inherit; content: ""; }
.hero__badge small { font-size: 9px; font-weight: 800; letter-spacing: .2em; }
.hero__badge strong { font-size: 18px; line-height: 1.4; }
.hero__badge span { font-size: 11px; }
.hero-services { position: absolute; right: 4vw; bottom: 24px; z-index: 5; display: grid; grid-template-columns: repeat(4, minmax(130px, 1fr)); gap: 10px; width: min(650px, 52vw); }
.hero-services a { position: relative; height: 122px; border: 3px solid #fff; overflow: hidden; background: var(--navy); box-shadow: 0 8px 24px rgba(53,95,157,.18); }
.hero-services img { width: 100%; height: 100%; object-fit: cover; opacity: .86; transition: transform .45s var(--ease), opacity .3s; }
.hero-services span { position: absolute; right: 0; bottom: 0; left: 0; padding: 20px 8px 7px; color: #fff; background: linear-gradient(transparent, rgba(23,25,31,.9)); font-size: 10px; font-weight: 800; text-align: center; }
.hero-services a:hover img { opacity: 1; transform: scale(1.045); }

.section { padding: 100px 0; }
.section__inner { width: var(--container); margin: auto; }
.section-heading { display: grid; grid-template-columns: minmax(260px, .75fr) 1fr auto; align-items: end; gap: 42px; margin-bottom: 46px; }
.section-heading > div > span { display: block; margin-bottom: 4px; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .22em; }
.section-heading h2 { margin: 0; color: var(--navy-deep); font-family: var(--font-brand); font-size: clamp(36px, 3vw, 48px); font-weight: 900; line-height: 1.3; letter-spacing: .025em; }
.section-heading p { margin: 0 0 3px; color: var(--muted); font-size: 13px; font-weight: 600; line-height: 1.9; }
.outline-link { display: inline-flex; align-items: center; gap: 28px; min-height: 46px; padding: 0 18px; border: 1px solid #92a7c0; color: var(--navy); font-size: 12px; font-weight: 800; }
.outline-link span { font-size: 16px; transition: transform .25s ease; }
.outline-link:hover span { transform: translateX(4px); }

.service { background: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); background: var(--line); }
.service-card { min-width: 0; background: var(--white); }
.service-card > a { display: grid; grid-template-columns: 42% 58%; min-height: 255px; }
.service-card__image { position: relative; overflow: hidden; background: #dfe7ee; }
.service-card__image::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23,25,31,.04), rgba(23,25,31,.3)); content: ""; }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.service-card:nth-child(1) .service-card__image img { object-position: 50% 42%; }
.service-card:nth-child(3) .service-card__image img { object-position: 50% center; }
.service-card__image > span { position: absolute; top: 12px; left: 14px; z-index: 2; color: #fff; font-family: var(--font-brand); font-size: 12px; font-weight: 900; font-variant-numeric: tabular-nums; letter-spacing: .08em; }
.service-card__body { position: relative; display: flex; flex-direction: column; align-items: flex-start; padding: 26px 24px 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card__icon { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 12px; color: var(--navy); }
.service-card__icon svg { width: 38px; height: 38px; stroke-width: 1.5; }
.service-card h3 { margin: 0; color: var(--navy-deep); font-family: var(--font-brand); font-size: 19px; font-weight: 900; line-height: 1.4; letter-spacing: .01em; }
.service-card p { margin: 10px 0 16px; color: var(--muted); font-size: 11px; line-height: 1.8; }
.service-card__arrow { margin-top: auto; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .04em; }
.service-card:hover .service-card__image img { transform: scale(1.05); }
.service-card:hover h3 { color: var(--navy); }
.service-card--cta { position: relative; overflow: hidden; background: var(--blue-pale); }
.service-card--cta::before { position: absolute; right: -84px; bottom: -94px; width: 250px; height: 250px; border: 58px solid rgba(53,95,157,.06); border-radius: 50%; content: ""; }
.service-card--cta > a { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; min-height: 255px; padding: 34px 38px; }
.service-card--cta__eyebrow { color: var(--blue); font-size: 8px; font-weight: 900; letter-spacing: .18em; }
.service-card--cta h3 { margin-top: 9px; color: var(--navy-deep); font-size: 22px; line-height: 1.55; }
.service-card--cta p { max-width: 360px; margin: 12px 0 22px; color: var(--muted); font-size: 11px; line-height: 1.85; }
.service-card--cta__link { display: flex; align-items: center; justify-content: space-between; width: 100%; margin-top: auto; padding-top: 14px; border-top: 1px solid rgba(53,95,157,.22); color: var(--navy); font-size: 10px; font-weight: 900; }
.service-card--cta__link b { font-size: 17px; transition: transform .25s var(--ease); }
.service-card--cta:hover h3 { color: var(--navy-deep); }
.service-card--cta:hover .service-card--cta__link b { transform: translateX(5px); }

.works { background: var(--warm); }
.works-grid { display: grid; grid-template-columns: 1.25fr .875fr .875fr; gap: 12px; }
.works-card { min-width: 0; background: #fff; box-shadow: 0 16px 42px rgba(53,95,157,.08); }
.works-card a { display: grid; height: 100%; }
.works-card figure { position: relative; height: 290px; margin: 0; overflow: hidden; background: #dfe7ee; }
.works-card--large figure { height: 360px; }
.works-card figure::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(23,25,31,.25), transparent 48%); content: ""; }
.works-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.works-card:first-child img { object-position: 50% 48%; }
.works-card:nth-child(2) img { object-position: 50% 64%; }
.works-card:nth-child(3) img { object-position: 50% 58%; }
.works-card a:hover img { transform: scale(1.04); }
.works-card a > div { position: relative; padding: 26px 28px 28px; }
.works-card a > div::after { position: absolute; top: 30px; right: 26px; color: var(--blue); content: "→"; font-size: 18px; transition: transform .25s var(--ease); }
.works-card a:hover > div::after { transform: translateX(5px); }
.works-card span { color: var(--blue); font-size: 8px; font-weight: 900; letter-spacing: .18em; }
.works-card h3 { margin: 6px 34px 0 0; color: var(--navy-deep); font-size: 21px; font-weight: 900; line-height: 1.45; }
.works-card p { margin: 10px 0 0; color: var(--muted); font-size: 11px; line-height: 1.8; }

.price { position: relative; overflow: hidden; color: #fff; background: linear-gradient(145deg, var(--navy), #294c80); }
.price::before { position: absolute; top: -260px; right: -150px; width: 620px; height: 620px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; content: ""; box-shadow: 0 0 0 100px rgba(255,255,255,.018), 0 0 0 200px rgba(255,255,255,.012); }
.price .section__inner { position: relative; }
.price-heading h2 { color: #fff; }
.price-heading > div > span { color: var(--yellow); }
.price-heading p { color: rgba(255,255,255,.72); }
.price-heading .outline-link { border-color: rgba(255,255,255,.4); color: #fff; }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.price-card { padding: 34px 38px 28px; color: var(--ink); background: #fff; }
.price-card__title { display: flex; align-items: center; gap: 14px; padding-bottom: 20px; border-bottom: 2px solid var(--navy); }
.price-card__title > span { color: var(--yellow-ink); font-size: 12px; font-weight: 900; }
.price-card h3 { margin: 0; color: var(--navy); font-size: 22px; font-weight: 900; }
.price-card dl { margin: 0; }
.price-card dl > div { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 18px; min-height: 62px; border-bottom: 1px solid var(--line); }
.price-card dt { color: #424954; font-size: 12px; font-weight: 750; }
.price-card dd { margin: 0; color: var(--navy-deep); font-size: 12px; font-weight: 900; white-space: nowrap; }
.price-card dd strong { color: var(--navy); font-size: 21px; font-variant-numeric: tabular-nums; }
.price-note { margin: 18px 0 0; color: rgba(255,255,255,.7); font-size: 10px; text-align: right; }

.why { display: grid; grid-template-columns: minmax(420px, .86fr) minmax(0, 1.14fr); padding: 0; background: var(--warm); }
.why__image { position: relative; min-height: 790px; overflow: hidden; }
.why__image::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(23,25,31,.48), transparent 42%); content: ""; }
.why__image img { width: 100%; height: 100%; object-fit: cover; }
.why__image > div { position: absolute; right: 0; bottom: 0; z-index: 2; width: 48%; padding: 34px; color: #fff; background: var(--navy); }
.why__image span { font-family: var(--font-brand); font-size: 22px; font-weight: 800; line-height: 1.7; letter-spacing: .04em; }
.why__content { padding: 90px clamp(44px, 6vw, 100px) 80px; }
.section-heading--stacked { display: grid; grid-template-columns: 1fr; gap: 22px; margin-bottom: 38px; }
.section-heading--stacked h2 { font-size: clamp(40px, 4vw, 58px); }
.reason-list { border-top: 1px solid #cdd6df; }
.reason-list article { display: grid; grid-template-columns: 66px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid #cdd6df; }
.reason-list article > span { color: var(--yellow-ink); font-family: var(--font-brand); font-size: 18px; font-weight: 900; font-variant-numeric: tabular-nums; }
.reason-list h3 { margin: 0; color: var(--navy-deep); font-family: var(--font-brand); font-size: 21px; font-weight: 900; letter-spacing: .02em; }
.reason-list p { margin: 7px 0 0; color: var(--muted); font-size: 12px; line-height: 1.9; }
.area { position: relative; overflow: hidden; padding-top: 90px; background: #f4f7fb; }
.area::before { position: absolute; top: 0; right: 0; left: 0; height: 6px; background: linear-gradient(90deg, var(--blue) 0 72%, var(--yellow) 72%); content: ""; }
.area::after { position: absolute; top: 90px; right: -120px; color: rgba(99,135,196,.055); font-size: 170px; font-weight: 900; letter-spacing: -.04em; content: "FUKUOKA"; }
.area-heading { position: relative; z-index: 1; grid-template-columns: minmax(430px, .8fr) 1fr; margin-bottom: 34px; }
.area-heading h2 { line-height: 1.18; }
.area-panel { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(420px, .93fr) minmax(0, 1.07fr); min-height: 600px; overflow: hidden; background: #fff; box-shadow: 0 24px 70px rgba(53,95,157,.12); }
.area-map { display: grid; align-content: center; margin: 0; padding: 40px; background: #fff; }
.area-map__media { position: relative; aspect-ratio: 1.3; overflow: hidden; background: #fff; }
.area-map__media img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; }
.area-map__media::after { position: absolute; top: 0; left: 0; display: flex; align-items: center; width: 56%; height: 16%; padding-left: 18px; color: var(--navy-deep); background: #fff; font-size: 11px; font-weight: 900; content: "受付時間　9:00〜18:00"; }
.area-map figcaption { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.area-map figcaption span { color: var(--blue); font-size: 8px; font-weight: 900; letter-spacing: .18em; }
.area-map figcaption p { margin: 0; color: var(--muted); font-size: 10px; font-weight: 700; }
.area-detail { display: flex; flex-direction: column; padding: 52px 58px 48px; color: #fff; background: linear-gradient(145deg, var(--navy), #284b7f); }
.area-detail__title { display: flex; align-items: center; gap: 18px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.2); }
.area-detail__title svg { width: 38px; color: var(--yellow); stroke-width: 2; }
.area-detail__title div { display: grid; }
.area-detail__title small { color: rgba(255,255,255,.7); font-size: 10px; font-weight: 900; letter-spacing: .13em; }
.area-detail__title h3 { margin: 2px 0 0; font-size: 34px; font-weight: 900; line-height: 1.25; }
.area-detail__places { margin: 24px 0 0; font-size: 15px; font-weight: 800; line-height: 2; }
.area-detail__other { margin: 16px 0 0; padding: 14px 18px; border-left: 4px solid var(--yellow); color: var(--navy-deep); background: var(--yellow); font-size: 12px; font-weight: 900; }
.area-guides { margin-top: 24px; border-top: 1px solid rgba(255,255,255,.18); }
.area-guides article { display: grid; grid-template-columns: 38px 1fr; gap: 14px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.area-guides article > span { color: var(--yellow); font-size: 13px; font-weight: 900; }
.area-guides strong { display: block; font-size: 12px; font-weight: 900; }
.area-guides p { margin: 4px 0 0; color: rgba(255,255,255,.7); font-size: 10px; line-height: 1.8; }
.area-detail__cta { align-self: flex-start; gap: 30px; margin-top: auto; }
.area-scenes { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 10px; }
.area-scenes figure { position: relative; height: 190px; margin: 0; overflow: hidden; background: var(--navy-deep); }
.area-scenes img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.area-scenes figure:nth-child(1) img { object-position: 50% 42%; }
.area-scenes figure:nth-child(2) img { object-position: 50% 58%; }
.area-scenes figure:nth-child(3) img { object-position: 50% 62%; }
.area-scenes figure::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(23,25,31,.8), transparent 58%); content: ""; }
.area-scenes figure:hover img { transform: scale(1.04); }
.area-scenes figcaption { position: absolute; right: 20px; bottom: 16px; left: 20px; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 16px; color: #fff; }
.area-scenes small { color: var(--yellow); font-size: 8px; font-weight: 900; letter-spacing: .16em; }
.area-scenes span { font-size: 12px; font-weight: 900; }

.voice { display: grid; grid-template-columns: minmax(430px, .9fr) minmax(0, 1.1fr); min-height: 700px; background: var(--warm); }
.voice__media { position: relative; min-height: 700px; overflow: hidden; background: var(--navy-deep); }
.voice__photo { position: absolute; margin: 0; overflow: hidden; }
.voice__photo img { width: 100%; height: 100%; object-fit: cover; }
.voice__photo--main { inset: 0 18% 0 0; }
.voice__photo--main::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(23,25,31,.58), transparent 46%); content: ""; }
.voice__photo--sub { right: 0; bottom: 0; width: 42%; height: 42%; border-top: 8px solid var(--warm); border-left: 8px solid var(--warm); }
.voice__photo--sub img { object-position: 50% 58%; }
.voice__media-label { position: absolute; bottom: 52px; left: clamp(28px, 5vw, 72px); z-index: 2; display: grid; max-width: 280px; padding-left: 20px; border-left: 4px solid var(--yellow); color: #fff; }
.voice__media-label span { color: var(--yellow); font-size: 8px; font-weight: 900; letter-spacing: .2em; }
.voice__media-label strong { margin-top: 8px; font-size: 22px; font-weight: 900; line-height: 1.6; }
.voice__content { padding: 70px clamp(46px, 6vw, 104px) 54px; }
.voice__content .section-heading--stacked { margin-bottom: 28px; }
.voice-list { border-top: 1px solid #cfd6df; }
.voice-list blockquote { display: grid; grid-template-columns: 42px 1fr; gap: 0 16px; margin: 0; padding: 24px 0 22px; border-bottom: 1px solid #cfd6df; }
.voice-list__mark { grid-row: 1 / 3; color: var(--yellow-ink); font-size: 42px; font-weight: 900; line-height: 1; }
.voice-list blockquote > p { margin: 0; color: var(--navy-deep); font-size: 17px; font-weight: 900; line-height: 1.7; }
.voice-list blockquote footer { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 14px; margin-top: 11px; }
.voice-list blockquote footer strong { color: var(--navy); font-size: 10px; }
.voice-list blockquote footer time, .voice-list blockquote footer span { color: var(--muted); font-size: 8px; font-weight: 700; }

.faq { background: #fff; }
.faq-layout { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr); gap: clamp(48px, 7vw, 110px); }
.faq-layout > .section-heading { align-content: start; align-self: start; margin: 0; }
.faq-layout .outline-link { justify-self: start; margin-top: 8px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: grid; grid-template-columns: 34px 1fr 24px; align-items: center; gap: 14px; padding: 23px 4px; color: var(--navy-deep); font-size: 15px; font-weight: 900; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span, .faq-list details > div > span { color: var(--blue); font-size: 18px; font-weight: 900; }
.faq-list summary::after { color: var(--blue); content: "+"; font-size: 24px; font-weight: 500; line-height: 1; text-align: center; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details > div { display: grid; grid-template-columns: 34px 1fr; gap: 14px; padding: 0 42px 24px 4px; }
.faq-list details > div > span { color: var(--yellow-ink); }
.faq-list details p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.9; }

.journal { background: var(--blue-pale); }
.journal-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); gap: 16px; }
.news-panel { padding: 58px 62px; background: #fff; }
.news-panel .section-heading { margin-bottom: 26px; }
.news-list { border-top: 1px solid var(--line); }
.news-list a { display: grid; grid-template-columns: 96px 126px 1fr 24px; align-items: center; gap: 18px; min-height: 84px; border-bottom: 1px solid var(--line); }
.news-list time { color: var(--muted); font-size: 10px; font-weight: 800; font-variant-numeric: tabular-nums; }
.news-list a > span { color: var(--blue); font-size: 8px; font-weight: 900; letter-spacing: .08em; }
.news-list strong { color: var(--navy-deep); font-size: 12px; font-weight: 800; line-height: 1.7; }
.news-list b { color: var(--blue); font-size: 16px; transition: transform .25s var(--ease); }
.news-list a:hover b { transform: translateX(4px); }
.news-more { margin-top: 24px; }
.recruit-card { position: relative; display: flex; flex-direction: column; overflow: hidden; padding: 58px 48px; color: #fff; background: var(--navy-deep); }
.recruit-card::after { position: absolute; right: -110px; bottom: -110px; width: 310px; height: 310px; border: 70px solid rgba(255,255,255,.04); border-radius: 50%; content: ""; }
.recruit-card > span { color: var(--yellow); font-size: 9px; font-weight: 900; letter-spacing: .22em; }
.recruit-card h2 { margin: 14px 0 22px; font-size: clamp(30px, 3vw, 42px); font-weight: 900; line-height: 1.4; }
.recruit-card > p { margin: 0; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.9; }
.recruit-card dl { margin: 26px 0 14px; border-top: 1px solid rgba(255,255,255,.18); }
.recruit-card dl > div { display: grid; grid-template-columns: 90px 1fr; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.recruit-card dt { color: rgba(255,255,255,.62); font-size: 10px; font-weight: 800; }
.recruit-card dd { margin: 0; font-size: 12px; font-weight: 900; }
.recruit-card small { color: rgba(255,255,255,.58); font-size: 9px; line-height: 1.7; }
.recruit-card .button { position: relative; z-index: 1; align-self: flex-start; gap: 24px; margin-top: auto; }

.contact-section { position: relative; overflow: hidden; color: #fff; background: var(--navy-deep); }
.contact-section::before { position: absolute; top: -300px; right: -180px; width: 680px; height: 680px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; content: ""; box-shadow: 0 0 0 110px rgba(255,255,255,.02), 0 0 0 220px rgba(255,255,255,.015); }
.contact-section__inner { position: relative; display: grid; grid-template-columns: minmax(360px, .74fr) minmax(0, 1.26fr); gap: 80px; width: var(--container); margin: auto; padding: 104px 0 54px; }
.contact-copy > span { color: var(--yellow); font-size: 10px; font-weight: 900; letter-spacing: .24em; }
.contact-copy h2 { margin: 12px 0 24px; font-size: clamp(38px, 3.5vw, 54px); font-weight: 900; line-height: 1.35; letter-spacing: .02em; }
.contact-copy p { margin: 0; color: rgba(255,255,255,.68); font-size: 13px; font-weight: 650; line-height: 2; }
.contact-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-self: center; }
.contact-option { position: relative; display: grid; align-content: center; min-height: 250px; padding: 34px; overflow: hidden; background: #fff; transition: transform .3s var(--ease); }
.contact-option:hover { transform: translateY(-5px); }
.contact-option__icon { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 30px; border-radius: 50%; }
.contact-option__icon svg { width: 24px; }
.contact-option small { font-size: 10px; font-weight: 900; letter-spacing: .08em; }
.contact-option strong { margin: 7px 0; font-size: clamp(20px, 2vw, 30px); font-weight: 900; line-height: 1.35; }
.contact-option__meta { font-size: 10px; font-weight: 800; }
.contact-option--phone { color: var(--navy); }
.contact-option--phone .contact-option__icon { color: #fff; background: var(--navy); }
.contact-option--mail { color: var(--navy-deep); background: var(--yellow); }
.contact-option--mail .contact-option__icon { color: var(--yellow); background: var(--navy-deep); }
.contact-address { display: flex; grid-column: 1 / -1; align-items: center; gap: 26px; margin-top: 6px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.14); }
.contact-address span { color: var(--yellow); font-size: 8px; font-weight: 900; letter-spacing: .18em; }
.contact-address p { margin: 0; color: rgba(255,255,255,.72); font-size: 11px; }

.site-footer { background: #fff; }
.site-footer__inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 50px; width: var(--container); min-height: 128px; margin: auto; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 125px; height: auto; }
.footer-brand span { padding-left: 14px; border-left: 1px solid var(--line); color: var(--muted); font-size: 8px; font-weight: 800; line-height: 1.6; }
.site-footer nav { display: flex; justify-content: center; gap: 24px; }
.site-footer nav a { color: #4b535e; font-size: 10px; font-weight: 800; }
.site-footer__inner > small { color: #818792; font-size: 9px; font-weight: 800; }
.mobile-sticky { display: none; }

.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.js .service-card:nth-child(2), .js .reason-list article:nth-child(2) { transition-delay: .08s; }
.js .service-card:nth-child(3), .js .reason-list article:nth-child(3) { transition-delay: .16s; }
.js .service-card:nth-child(4) { transition-delay: .08s; }
.js .service-card:nth-child(5) { transition-delay: .16s; }
.js .service-card:nth-child(6) { transition-delay: .24s; }

@media (max-width: 1260px) {
  :root { --container: min(1160px, calc(100vw - 48px)); }
  .brand > span, .header-phone small { display: none; }
  .brand img { width: 138px; }
  .desktop-nav { gap: 16px; padding: 0 16px; }
  .desktop-nav a { font-size: 12px; }
  .header-phone { padding: 0 12px; }
  .header-contact { padding: 0 16px; }
  .hero__inner { grid-template-columns: minmax(0, 1fr) minmax(430px, .82fr); }
  .hero h1 { font-size: clamp(42px, 3.9vw, 52px); }
  .hero__trust > div { padding: 12px 10px; }
  .hero-services { right: 24px; width: min(700px, 62vw); }
  .service-card > a { grid-template-columns: 40% 60%; }
}

@media (max-width: 1020px) {
  :root { --header-height: 74px; }
  .desktop-nav, .header-phone, .header-contact { display: none; }
  .brand img { width: 138px; }
  .brand > span { display: block; }
  .header-actions { margin-left: auto; }
  .menu-button { display: grid; align-content: center; justify-items: center; width: 66px; border: 0; background: var(--navy); cursor: pointer; }
  .menu-button span { width: 24px; height: 1px; margin: 3px 0; background: #fff; transition: transform .25s, opacity .25s; }
  .menu-button b { margin-top: 4px; color: #fff; font-size: 7px; letter-spacing: .12em; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu { position: fixed; top: var(--header-height); right: 0; bottom: auto; left: 0; z-index: 90; display: grid; align-content: start; width: 100%; height: calc(100dvh - var(--header-height)); padding: 30px 24px 100px; overflow: auto; background: rgba(255,255,255,.98); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .25s, visibility .25s, transform .25s; }
  .mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-menu nav { display: grid; grid-template-columns: repeat(2, 1fr); width: min(680px, 100%); margin: 0 auto; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
  .mobile-menu nav a { display: flex; gap: 14px; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--navy); font-weight: 800; }
  .mobile-menu nav span { color: var(--yellow-ink); font-family: var(--font-brand); font-size: 12px; font-weight: 900; font-variant-numeric: tabular-nums; }
  .mobile-menu__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: min(680px, 100%); margin: 22px auto; }

  .hero { min-height: auto; }
  .hero__inner { grid-template-columns: 1.05fr .95fr; min-height: 670px; width: 100%; padding-left: 24px; }
  .hero__content { padding: 60px 20px 150px 0; }
  .hero h1 { font-size: clamp(38px, 5vw, 52px); }
  .hero__lead { font-size: 14px; }
  .hero__trust { grid-template-columns: 1fr; max-width: 380px; }
  .hero__trust > div { min-height: auto; padding: 10px 14px; border-right: 0; border-bottom: 1px solid var(--line); }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 12px; }
  .hero__photo { inset: 0; clip-path: polygon(16% 0,100% 0,100% 100%,0 100%); }
  .hero__photo figcaption { right: 24px; bottom: 160px; }
  .hero-services { right: 24px; bottom: 24px; left: 24px; width: auto; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .works-grid { grid-template-columns: 1fr 1fr; }
  .works-card--large { grid-column: 1 / -1; }
  .works-card--large a { grid-template-columns: 1.15fr .85fr; }
  .works-card--large figure { height: 310px; }
  .price-card { padding: 30px 28px 24px; }
  .why { grid-template-columns: .8fr 1.2fr; }
  .why__content { padding: 70px 40px; }
  .why__image { min-height: 820px; }
  .area-heading { grid-template-columns: 1fr 1fr; }
  .area-panel { grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr); min-height: 560px; }
  .area-map { padding: 26px; }
  .area-detail { padding: 38px 34px; }
  .area-detail__places { font-size: 13px; }
  .area-scenes figure { height: 160px; }
  .voice { grid-template-columns: .8fr 1.2fr; min-height: 680px; }
  .voice__media { min-height: 680px; }
  .voice__content { padding: 58px 40px 48px; }
  .voice-list blockquote > p { font-size: 15px; }
  .faq-layout { grid-template-columns: .68fr 1.32fr; gap: 44px; }
  .journal-layout { grid-template-columns: 1fr; }
  .news-panel { padding: 52px 44px; }
  .recruit-card { min-height: 430px; }
  .contact-section__inner { grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr); gap: 36px; }
  .contact-options { grid-template-columns: 1fr; }
  .contact-option { min-height: 185px; padding: 24px 28px; }
  .contact-option__icon { position: absolute; top: 24px; right: 24px; margin: 0; }
  .site-footer__inner { grid-template-columns: 1fr auto; gap: 24px; padding: 28px 0; }
  .site-footer nav { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; flex-wrap: wrap; }
}

@media (max-width: 720px) {
  :root { --container: calc(100vw - 36px); --header-height: 66px; }
  body { padding-bottom: 68px; font-size: 15px; }
  .site-header__inner { width: 100%; padding-left: 16px; }
  .brand { gap: 10px; }
  .brand img { width: 112px; }
  .brand > span { padding-left: 10px; font-size: 7px; line-height: 1.45; }
  .menu-button { width: 62px; }
  .mobile-menu nav { grid-template-columns: 1fr; }
  .mobile-menu nav a { padding: 17px; }
  .mobile-menu__actions { grid-template-columns: 1fr; }

  .hero { padding-top: var(--header-height); background: var(--warm); }
  .hero__wash { display: none; }
  .hero__inner { display: flex; flex-direction: column; min-height: auto; padding: 0; }
  .hero__content { order: 2; padding: 34px 18px 28px; }
  .eyebrow { margin-bottom: 10px; font-size: 9px; }
  .eyebrow::before { width: 24px; }
  .hero h1 { font-size: clamp(31px, 9.3vw, 42px); line-height: 1.48; letter-spacing: .02em; }
  .hero__lead { margin-top: 16px; font-size: 13px; line-height: 1.9; }
  .desktop-only { display: none; }
  .hero__visual { order: 1; min-height: 46vh; }
  .hero__photo { clip-path: none; }
  .hero__photo::after { background: linear-gradient(0deg, rgba(23,25,31,.52), transparent 42%); }
  .hero__photo img { object-position: 50% 30%; }
  .hero__photo figcaption { right: 18px; bottom: 16px; left: 18px; max-width: none; font-size: 10px; }
  .hero__badge { top: auto; right: 16px; bottom: -38px; left: auto; width: 94px; height: 94px; }
  .hero__badge strong { font-size: 14px; }
  .hero__badge span { font-size: 9px; }
  .hero__trust { grid-template-columns: repeat(3, 1fr); max-width: none; margin-top: 22px; box-shadow: none; }
  .hero__trust > div { display: grid; justify-items: center; gap: 6px; padding: 12px 5px; border-right: 1px solid var(--line); border-bottom: 0; text-align: center; }
  .hero__trust svg { width: 22px; }
  .hero__trust strong { font-size: 9px; line-height: 1.45; }
  .hero__trust span { display: none; }
  .hero__actions { gap: 10px; margin-top: 20px; }
  .button--large { width: 100%; min-height: 56px; padding: 0 18px; font-size: 13px; }
  .text-link { align-self: center; }
  .hero-services { position: relative; right: auto; bottom: auto; left: auto; order: 3; display: flex; width: 100%; padding: 0 18px 28px; overflow: auto; scrollbar-width: none; scroll-snap-type: x mandatory; }
  .hero-services::-webkit-scrollbar { display: none; }
  .hero-services a { flex: 0 0 132px; height: 104px; scroll-snap-align: start; }

  .section { padding: 72px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 12px; margin-bottom: 28px; }
  .section-heading h2 { font-size: 34px; }
  .section-heading p { font-size: 12px; }
  .outline-link { justify-self: start; margin-top: 6px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card > a { grid-template-columns: 42% 58%; min-height: 226px; }
  .service-card__body { padding: 20px 16px; }
  .service-card__icon { width: 34px; height: 34px; margin-bottom: 8px; }
  .service-card__icon svg { width: 32px; }
  .service-card h3 { font-size: 17px; }
  .service-card p { font-size: 10px; line-height: 1.75; }
  .service-card--cta > a { min-height: 226px; padding: 28px 24px; }
  .service-card--cta h3 { font-size: 20px; }
  .works-grid { grid-template-columns: 1fr; gap: 10px; }
  .works-card--large { grid-column: auto; }
  .works-card--large a { grid-template-columns: 1fr; }
  .works-card figure, .works-card--large figure { height: 240px; }
  .works-card a > div { padding: 22px 20px 24px; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card { padding: 26px 20px 20px; }
  .price-card dl > div { grid-template-columns: 1fr; gap: 3px; padding: 12px 0; }
  .price-card dd { white-space: normal; }
  .price-card dd strong { font-size: 18px; }
  .price-note { text-align: left; }

  .why { grid-template-columns: 1fr; }
  .why__image { min-height: 340px; }
  .why__image > div { width: auto; padding: 18px 22px; }
  .why__image span { font-size: 16px; }
  .why__content { padding: 64px 18px 72px; }
  .section-heading--stacked h2 { font-size: 39px; }
  .reason-list article { grid-template-columns: 42px 1fr; gap: 10px; padding: 22px 0; }
  .reason-list h3 { font-size: 18px; }
  .area { padding-top: 72px; }
  .area::after { top: 100px; right: -20px; font-size: 72px; }
  .area-heading { grid-template-columns: 1fr; }
  .area-panel { grid-template-columns: 1fr; min-height: auto; }
  .area-map { padding: 22px 18px 20px; }
  .area-map__media { aspect-ratio: 1.24; }
  .area-map__media::after { width: 60%; padding-left: 8px; font-size: 9px; }
  .area-map figcaption { align-items: flex-start; flex-direction: column; gap: 3px; margin-top: 10px; padding-top: 10px; }
  .area-detail { padding: 32px 22px 30px; }
  .area-detail__title svg { width: 30px; }
  .area-detail__title h3 { font-size: 29px; }
  .area-detail__places { font-size: 12px; line-height: 2; }
  .area-detail__other { font-size: 10px; line-height: 1.7; }
  .area-guides article { grid-template-columns: 30px 1fr; gap: 10px; }
  .area-detail__cta { width: 100%; margin-top: 24px; }
  .area-scenes { grid-template-columns: repeat(3, 78vw); margin-right: -18px; padding-right: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .area-scenes::-webkit-scrollbar { display: none; }
  .area-scenes figure { height: 150px; scroll-snap-align: start; }

  .voice { grid-template-columns: 1fr; min-height: auto; }
  .voice__media { min-height: 430px; }
  .voice__photo--main { inset: 0 14% 0 0; }
  .voice__photo--sub { width: 44%; height: 40%; border-width: 6px; }
  .voice__media-label { bottom: 28px; left: 18px; max-width: 210px; padding-left: 14px; }
  .voice__media-label strong { font-size: 16px; }
  .voice__content { padding: 64px 18px 58px; }
  .voice-list blockquote { grid-template-columns: 34px 1fr; gap: 0 10px; padding: 20px 0; }
  .voice-list__mark { font-size: 34px; }
  .voice-list blockquote > p { font-size: 14px; }

  .faq-layout { grid-template-columns: 1fr; gap: 34px; }
  .faq-list summary { grid-template-columns: 28px 1fr 22px; gap: 10px; padding: 20px 0; font-size: 13px; }
  .faq-list details > div { grid-template-columns: 28px 1fr; gap: 10px; padding: 0 30px 20px 0; }
  .news-panel { padding: 52px 18px; }
  .news-list a { grid-template-columns: 82px 1fr 18px; gap: 8px 12px; padding: 15px 0; }
  .news-list a > span { grid-column: 2; grid-row: 1; }
  .news-list strong { grid-column: 1 / 3; grid-row: 2; }
  .news-list b { grid-column: 3; grid-row: 1 / 3; }
  .recruit-card { min-height: 500px; padding: 48px 26px; }
  .recruit-card .button { width: 100%; margin-top: 34px; }

  .contact-section__inner { grid-template-columns: 1fr; gap: 36px; padding: 76px 0 38px; }
  .contact-copy h2 { font-size: 36px; }
  .contact-options { grid-template-columns: 1fr; gap: 8px; }
  .contact-option { min-height: 190px; padding: 28px 24px; }
  .contact-option__icon { top: 24px; right: 24px; width: 44px; height: 44px; }
  .contact-option strong { font-size: 23px; }
  .contact-address { align-items: flex-start; flex-direction: column; gap: 8px; }
  .contact-address p { line-height: 1.8; }

  .site-footer__inner { grid-template-columns: 1fr; gap: 24px; padding: 34px 0 92px; }
  .site-footer nav { grid-column: auto; grid-row: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding-top: 22px; border-top: 1px solid var(--line); }
  .footer-brand img { width: 112px; }

  .mobile-sticky { position: fixed; right: 0; bottom: 0; left: 0; z-index: 110; display: grid; grid-template-columns: .88fr 1.12fr; min-height: 68px; padding-bottom: env(safe-area-inset-bottom); background: #fff; box-shadow: 0 -6px 24px rgba(53,95,157,.14); }
  .mobile-sticky a { display: flex; align-items: center; justify-content: center; gap: 8px; color: #fff; background: var(--navy); }
  .mobile-sticky a:last-child { color: var(--navy-deep); background: var(--yellow); }
  .mobile-sticky svg { width: 22px; }
  .mobile-sticky span { display: grid; font-size: 12px; font-weight: 800; line-height: 1.35; }
  .mobile-sticky small { font-size: 8px; font-weight: 600; opacity: .85; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
