:root {
  /* N-fitsの正式グリーンと広報の黄色を用途別に絞ったWeb用パレット */
  --green-900: #185621;
  --green-800: #1d7027;
  --green-700: #238d27;
  --green-600: #2aa828;
  --green-300: #86d681;
  --green-100: #e8f7e6;
  --green-050: #f5fbf4;
  --yellow-500: #f9eb04;
  --yellow-100: #fffbd5;
  --slate-900: #24312b;
  --slate-800: #34413b;
  --ink: #24312b;
  --muted: #606d66;
  --line: #dfe6e1;
  --paper: #f6f8f6;
  --white: #fff;
  --shadow: 0 20px 60px rgba(24, 86, 33, .12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --content: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
.svg-sprite { position: absolute; }
a { color: inherit; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--green-600); outline-offset: 4px; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green-900);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.container { width: min(calc(100% - 40px), var(--content)); margin-inline: auto; }
.section { padding: 104px 0; }
.section--white { background: var(--white); }
.section--soft { background: #f0f3f0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 15px;
  color: var(--green-700);
  font-size: .79rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 25px; height: 4px; background: var(--green-600); border-radius: 999px; }
.section-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.25;
  letter-spacing: -.04em;
}
.section-lead { max-width: 760px; margin: 22px 0 0; color: var(--muted); font-size: 1.04rem; }
.section-heading { margin-bottom: 46px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.3;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { color: var(--white); background: var(--green-800); box-shadow: 0 10px 24px rgba(42,168,40,.2); }
.button--outline { color: var(--green-900); border-color: rgba(24,86,33,.3); background: rgba(255,255,255,.62); }
.button--green { color: var(--white); background: var(--green-800); }
.button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2.3; }

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 76px;
  color: var(--green-900);
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(24,86,33,.1);
  backdrop-filter: blur(14px);
}
.header-inner { display: flex; height: 100%; align-items: center; justify-content: space-between; gap: 28px; }
.brand-logo { display: inline-flex; flex: 0 0 auto; align-items: center; text-decoration: none; }
.brand-logo img { display: block; width: 100%; height: 100%; object-fit: contain; }
.brand-logo--header { width: 52px; height: 52px; }
.brand-logo--footer { width: 76px; height: 76px; }
.desktop-nav { display: flex; align-items: center; gap: 27px; }
.desktop-nav a { font-size: .88rem; font-weight: 800; text-decoration: none; }
.desktop-nav a:not(.nav-cta):hover { color: var(--green-700); }
.nav-cta { padding: 10px 17px; color: var(--white); background: var(--green-800); border-radius: 999px; }
.menu-button { display: none; width: 46px; height: 46px; place-items: center; padding: 0; color: var(--green-900); background: transparent; border: 0; border-radius: 12px; }
.menu-button svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 2; }
.mobile-nav { display: none; }

/* Hero */
.hero { position: relative; overflow: hidden; color: var(--ink); background: linear-gradient(125deg, #ffffff 0%, #f7f9f7 58%, #eef4ee 100%); }
.hero::before {
  content: "";
  position: absolute;
  inset: -30% auto auto 45%;
  width: 760px;
  height: 760px;
  background: radial-gradient(circle, rgba(42,168,40,.09), transparent 63%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -170px;
  width: 460px;
  height: 460px;
  border: 80px solid rgba(42,168,40,.035);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; display: grid; min-height: 700px; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 52px; padding: 82px 0 92px; }
.hero-kicker { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; color: var(--green-700); font-size: .82rem; font-weight: 900; letter-spacing: .2em; }
.hero-kicker span { display: inline-grid; width: 30px; height: 30px; place-items: center; color: var(--white); background: var(--green-600); border-radius: 50%; letter-spacing: 0; }
.hero h1 { max-width: 680px; margin: 0; font-size: clamp(3.15rem, 5vw, 4.75rem); line-height: 1.04; letter-spacing: -.055em; }
.hero-title-line { display: block; white-space: nowrap; }
.hero h1 .accent { color: var(--green-600); }
.hero-tagline { margin: 27px 0 0; font-size: clamp(1.25rem, 2.2vw, 1.8rem); font-weight: 800; letter-spacing: .015em; }
.app-launch {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 19px 0 0;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--yellow-500);
  border: 1px solid #ddd100;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(127,119,0,.13);
  font-size: clamp(1.03rem, 2vw, 1.35rem);
  font-weight: 950;
  line-height: 1.35;
}
.app-launch svg { flex: 0 0 auto; width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 2.2; }
.hero-copy { max-width: 650px; margin: 27px 0 31px; color: var(--muted); }
.hero-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 22px 55px rgba(36,49,43,.14);
}
.hero-photo {
  min-height: 390px;
  background-color: #e8ece9;
  background-image: url("https://nh-sportsnomori.jp/n-fits/assets/images/facilities/nishinasuno-training.jpg");
  background-position: center;
  background-size: cover;
}
.hero-photo-caption {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 17px 19px;
  background: var(--white);
}
.hero-photo-caption > img { width: 62px; height: 62px; border-radius: 12px; }
.hero-photo-caption b { display: block; color: var(--green-700); font-size: .66rem; letter-spacing: .13em; line-height: 1.4; }
.hero-photo-caption span { display: block; margin-top: 3px; color: var(--muted); font-size: .86rem; line-height: 1.5; }
.hero-gym-count { min-width: 54px; margin: 0 !important; color: var(--ink) !important; text-align: center; }
.hero-gym-count strong { display: block; color: var(--green-600); font-size: 2.25rem; line-height: .9; }
.hero-gym-count small { display: block; margin-top: 5px; font-size: .58rem; font-weight: 900; letter-spacing: .14em; }

/* Benefits */
.benefits { position: relative; z-index: 5; margin-top: -44px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.benefit { display: grid; grid-template-columns: 52px 1fr; gap: 17px; padding: 29px 30px; }
.benefit + .benefit { border-left: 1px solid var(--line); }
.icon-box { display: grid; width: 52px; height: 52px; place-items: center; color: var(--green-800); background: var(--green-100); border-radius: 15px; }
.icon-box svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.9; }
.benefit b { display: block; margin: 1px 0 4px; font-size: 1.05rem; }
.benefit p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.6; }

/* Facility cards */
.facility-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.facility-card { grid-column: span 2; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 14px 40px rgba(24,86,33,.07); transition: transform .24s ease, box-shadow .24s ease; }
.facility-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.facility-card:nth-child(4) { grid-column: 2 / span 2; }
.facility-card:nth-child(5) { grid-column: 4 / span 2; }
.facility-photo {
  position: relative;
  display: grid;
  min-height: 228px;
  place-items: center;
  overflow: hidden;
  color: var(--green-700);
  background-color: #e9eeea;
  background-image: var(--photo, none);
  background-position: center;
  background-size: cover;
}
.facility-number { position: absolute; top: 15px; left: 15px; display: grid; width: 45px; height: 45px; place-items: center; color: var(--green-800); background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.86); border-radius: 50%; box-shadow: 0 5px 16px rgba(0,0,0,.14); font-size: .78rem; font-weight: 950; }
.facility-body { padding: 25px 25px 27px; }
.facility-type { margin: 0 0 5px; color: var(--green-700); font-size: .73rem; font-weight: 900; letter-spacing: .12em; }
.facility-name { min-height: 3.1em; margin: 0; font-size: 1.3rem; line-height: 1.48; letter-spacing: -.025em; }
.facility-catch { margin: 13px 0 17px; color: var(--muted); font-size: .9rem; line-height: 1.65; }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 22px; padding: 0; list-style: none; }
.tag-list li { display: inline-flex; align-items: center; gap: 5px; padding: 6px 9px; color: var(--green-900); background: var(--green-100); border-radius: 7px; font-size: .72rem; font-weight: 800; line-height: 1.3; }
.tag-list svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }
.card-link { display: inline-flex; align-items: center; gap: 7px; color: var(--green-700); font-weight: 900; text-underline-offset: 5px; }
.card-link svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .2s ease; }
.card-link:hover svg { transform: translateX(4px); }
.asset-note { max-width: 860px; margin: 35px auto 0; padding: 14px 18px; color: var(--muted); background: rgba(255,255,255,.75); border: 1px dashed #a8bbb3; border-radius: 12px; font-size: .82rem; text-align: center; }

/* Comparison */
.comparison-wrap { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 16px 50px rgba(24,86,33,.08); }
.comparison-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.comparison-table th, .comparison-table td { padding: 18px 11px; border-bottom: 1px solid var(--line); text-align: center; vertical-align: middle; }
.comparison-table tr:last-child th, .comparison-table tr:last-child td { border-bottom: 0; }
.comparison-table thead th { padding-block: 20px; color: var(--white); background: var(--slate-900); font-size: .83rem; line-height: 1.45; }
.comparison-table thead th:first-child { width: 168px; color: var(--green-900); background: var(--green-100); }
.comparison-table tbody th { padding-left: 24px; background: #f8faf8; font-size: .83rem; text-align: left; }
.comparison-table td { font-size: .82rem; }
.status { display: inline-flex; min-width: 3.4em; align-items: center; justify-content: center; padding: 4px 9px; color: var(--green-900); background: var(--green-100); border-radius: 999px; font-size: .74rem; font-weight: 900; line-height: 1.35; }
.status--note { width: auto; padding: 0 9px; border-radius: 999px; font-size: .7rem; }
.comparison-mobile { display: none; }

/* App section */
.app-section { position: relative; overflow: hidden; color: var(--ink); background: #f1f4f1; }
.app-section::before { content: ""; position: absolute; inset: -180px -100px auto auto; width: 520px; height: 520px; background: radial-gradient(circle, rgba(36,49,43,.055), transparent 64%); }
.app-section::after { content: "N-fits"; position: absolute; right: -20px; bottom: -90px; color: rgba(42,168,40,.055); font-size: 12rem; font-weight: 950; letter-spacing: -.08em; white-space: nowrap; }
.app-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 100px; }
.phone-stage { display: grid; min-height: 610px; place-items: center; }
.phone {
  position: relative;
  width: min(320px, 78vw);
  padding: 13px;
  color: var(--ink);
  background: var(--slate-900);
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 43px;
  box-shadow: 0 35px 80px rgba(0,0,0,.38);
}
.phone::before { content: ""; position: absolute; z-index: 2; top: 21px; left: 50%; width: 91px; height: 23px; background: var(--slate-900); border-radius: 999px; transform: translateX(-50%); }
.phone-screen { min-height: 570px; overflow: hidden; padding: 45px 17px 22px; background: #f4f7f4; border-radius: 31px; }
.phone-top { display: flex; align-items: center; justify-content: space-between; }
.mini-logo { width: 40px; height: 40px; object-fit: contain; }
.mini-avatar { display: grid; width: 33px; height: 33px; place-items: center; color: var(--white); background: var(--green-700); border-radius: 50%; font-size: .75rem; font-weight: 900; }
.hello { margin: 23px 0 12px; font-size: .82rem; font-weight: 800; }
.occupancy { padding: 16px; color: var(--white); background: var(--green-800); border-radius: 18px; box-shadow: 0 10px 22px rgba(24,86,33,.2); }
.occupancy-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.occupancy small { color: rgba(255,255,255,.7); font-size: .65rem; }
.occupancy strong { display: block; margin-top: 2px; font-size: .92rem; }
.live { display: inline-flex; align-items: center; gap: 5px; padding: 4px 7px; color: var(--green-900); background: var(--white); border-radius: 999px; font-size: .58rem; font-weight: 950; }
.live::before { content: ""; width: 6px; height: 6px; background: var(--green-800); border-radius: 50%; }
.bar { height: 7px; margin-top: 12px; overflow: hidden; background: rgba(255,255,255,.18); border-radius: 999px; }
.bar span { display: block; width: 42%; height: 100%; background: var(--green-300); border-radius: inherit; }
.quick-title { margin: 19px 0 9px; font-size: .7rem; font-weight: 900; }
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.quick { padding: 12px 5px 10px; background: var(--white); border: 1px solid var(--line); border-radius: 13px; font-size: .58rem; font-weight: 900; text-align: center; }
.quick svg { width: 23px; height: 23px; margin: 0 auto 6px; fill: none; stroke: var(--green-700); stroke-width: 1.8; }
.lesson-card { display: grid; grid-template-columns: 54px 1fr; gap: 11px; margin-top: 9px; padding: 10px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.lesson-date { display: grid; place-items: center; color: var(--green-900); background: var(--green-100); border-radius: 10px; font-weight: 950; line-height: 1.1; text-align: center; }
.lesson-date small { font-size: .53rem; }
.lesson-date span { font-size: 1.15rem; }
.lesson-card b { display: block; font-size: .68rem; }
.lesson-card p { margin: 2px 0 0; color: var(--muted); font-size: .57rem; line-height: 1.5; }
.phone-caption { position: absolute; right: -32px; bottom: 45px; padding: 9px 13px; color: var(--green-900); background: var(--white); border-radius: 10px; box-shadow: 0 10px 22px rgba(0,0,0,.16); font-size: .74rem; font-weight: 950; }
.app-copy .eyebrow { color: var(--green-700); }
.app-copy .section-title { max-width: 660px; }
.app-copy .section-lead { color: var(--muted); }
.app-badge { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px; padding: 8px 13px; color: var(--ink); background: var(--yellow-500); border-radius: 999px; font-size: .8rem; font-weight: 950; }
.app-badge::before { content: ""; width: 8px; height: 8px; background: var(--green-700); border-radius: 50%; }
.app-features { display: grid; gap: 12px; margin-top: 32px; }
.app-feature { display: grid; grid-template-columns: 54px 1fr; align-items: center; gap: 17px; padding: 16px; background: rgba(255,255,255,.76); border: 1px solid rgba(42,168,40,.16); border-radius: 16px; }
.app-feature .icon-box { color: var(--green-700); background: var(--green-100); }
.app-feature b { display: block; font-size: 1.05rem; }
.app-feature p { margin: 3px 0 0; color: var(--muted); font-size: .82rem; line-height: 1.5; }
.app-note { margin: 18px 0 0; color: var(--muted); font-size: .73rem; }

/* Guide */
.guide-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; }
.price-panel, .flow-panel { padding: 35px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 16px 48px rgba(24,86,33,.07); }
.price-panel { position: relative; overflow: hidden; color: var(--white); background: var(--slate-900); border-color: transparent; }
.price-panel::after { content: "¥"; position: absolute; right: -3px; bottom: -70px; color: rgba(255,255,255,.08); font-size: 13rem; font-weight: 900; line-height: 1; }
.panel-kicker { margin: 0 0 9px; color: var(--green-300); font-size: .73rem; font-weight: 900; letter-spacing: .12em; }
.price-panel h3, .flow-panel h3 { position: relative; z-index: 1; margin: 0; font-size: 1.5rem; line-height: 1.45; }
.price-panel p { position: relative; z-index: 1; margin: 15px 0 25px; color: rgba(255,255,255,.72); font-size: .91rem; }
.pending-box { position: relative; z-index: 1; padding: 19px; color: var(--green-900); background: var(--white); border-radius: 14px; }
.pending-box b { display: block; }
.pending-box small { display: block; margin-top: 4px; font-size: .72rem; line-height: 1.55; }
.flow-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; margin: 28px 0 0; padding: 0; list-style: none; counter-reset: flow; }
.flow-list li { position: relative; min-height: 174px; padding: 58px 16px 17px; background: var(--paper); border-radius: 15px; counter-increment: flow; }
.flow-list li::before { content: "0" counter(flow); position: absolute; top: 14px; left: 16px; color: var(--green-700); font-size: 1.25rem; font-weight: 950; }
.flow-list li:not(:last-child)::after { content: "→"; position: absolute; z-index: 2; top: 50%; right: -15px; display: grid; width: 30px; height: 30px; place-items: center; color: var(--green-800); background: var(--white); border: 1px solid var(--line); border-radius: 50%; transform: translateY(-50%); }
.flow-list b { display: block; margin-bottom: 7px; font-size: .92rem; }
.flow-list p { margin: 0; color: var(--muted); font-size: .76rem; line-height: 1.55; }

/* Footer */
.site-footer { padding: 48px 0 28px; color: rgba(255,255,255,.82); background: var(--slate-900); }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; padding-bottom: 32px; }
.footer-brand p { max-width: 510px; margin: 12px 0 0; font-size: .82rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: flex-end; }
.footer-links a { font-size: .8rem; font-weight: 800; text-underline-offset: 4px; }
.copyright { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .72rem; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-button { display: grid; }
  .mobile-nav {
    position: fixed;
    z-index: 99;
    inset: 76px 0 auto;
    display: grid;
    max-height: 0;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 20px 40px rgba(24,86,33,.15);
    opacity: 0;
    transition: max-height .28s ease, opacity .2s ease;
  }
  .mobile-nav.is-open { max-height: calc(100vh - 76px); opacity: 1; }
  .mobile-nav a { padding: 17px 24px; border-bottom: 1px solid var(--line); font-weight: 850; text-decoration: none; }
  .mobile-nav a:last-child { color: var(--white); background: var(--green-800); }
  .hero-inner { min-height: auto; grid-template-columns: 1fr; gap: 50px; padding-top: 72px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { width: min(620px, 100%); margin-inline: auto; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit + .benefit { border-top: 1px solid var(--line); border-left: 0; }
  .facility-card { grid-column: span 3; }
  .facility-card:nth-child(4), .facility-card:nth-child(5) { grid-column: span 3; }
  .facility-card:nth-child(5) { grid-column: 2 / span 4; }
  .comparison-table thead th:first-child { width: 140px; }
  .app-grid { grid-template-columns: 1fr 1.05fr; gap: 55px; }
  .guide-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 76px; }
  .container { width: min(calc(100% - 28px), var(--content)); }
  .section { padding: 74px 0; }
  .section-heading { margin-bottom: 30px; }
  .section-title { font-size: clamp(1.9rem, 9vw, 2.65rem); }
  .section-lead { margin-top: 16px; font-size: .92rem; }
  .site-header { height: 68px; }
  .brand-logo--header { width: 44px; height: 44px; }
  .mobile-nav { top: 68px; }
  .hero-inner { padding: 58px 0 72px; }
  .hero-kicker { font-size: .72rem; letter-spacing: .14em; }
  .hero h1 { max-width: 540px; font-size: clamp(2.2rem, 10.7vw, 3.35rem); }
  .hero-tagline { margin-top: 24px; font-size: 1.24rem; }
  .app-launch { width: 100%; justify-content: center; padding: 13px 10px; font-size: 1rem; text-align: center; }
  .hero-copy { margin: 23px 0 27px; font-size: .91rem; }
  .button-row { display: grid; }
  .button { width: 100%; }
  .hero-visual { min-height: 0; border-radius: 20px; }
  .hero-photo { min-height: 250px; }
  .hero-photo-caption { grid-template-columns: 50px 1fr auto; gap: 11px; padding: 13px; }
  .hero-photo-caption > img { width: 50px; height: 50px; border-radius: 9px; }
  .hero-photo-caption b { font-size: .54rem; letter-spacing: .08em; }
  .hero-photo-caption span { font-size: .72rem; }
  .hero-gym-count { min-width: 43px; }
  .hero-gym-count strong { font-size: 1.85rem; }
  .hero-gym-count small { font-size: .5rem; }
  .benefits { margin-top: -28px; }
  .benefit { grid-template-columns: 46px 1fr; gap: 13px; padding: 22px 20px; }
  .icon-box { width: 46px; height: 46px; }
  .facility-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
  .facility-card, .facility-card:nth-child(4), .facility-card:nth-child(5) { grid-column: auto; }
  .facility-card:hover { transform: none; }
  .facility-photo { min-height: 205px; }
  .facility-body { padding: 22px 21px 24px; }
  .facility-name { min-height: 0; font-size: 1.18rem; }
  .asset-note { text-align: left; }
  .comparison-wrap { display: none; }
  .comparison-mobile { display: grid; gap: 13px; }
  .comparison-mobile article { padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; }
  .comparison-mobile h3 { margin: 0 0 13px; font-size: 1rem; line-height: 1.5; }
  .comparison-mobile .tag-list { margin: 0; }
  .app-grid { grid-template-columns: 1fr; gap: 35px; }
  .app-copy { order: 1; }
  .phone-stage { order: 2; min-height: 575px; }
  .phone { transform: none; }
  .phone-caption { right: -4px; bottom: 20px; }
  .app-section::after { font-size: 7rem; }
  .app-features { gap: 10px; margin-top: 25px; }
  .app-feature { grid-template-columns: 46px 1fr; gap: 13px; padding: 14px; }
  .app-feature b { font-size: .94rem; }
  .app-feature p { font-size: .76rem; }
  .guide-grid { gap: 17px; }
  .price-panel, .flow-panel { padding: 25px 21px; }
  .flow-list { grid-template-columns: 1fr; }
  .flow-list li { min-height: 0; padding: 20px 18px 20px 66px; }
  .flow-list li::before { top: 18px; }
  .flow-list li:not(:last-child)::after { content: "↓"; top: auto; right: 50%; bottom: -15px; transform: translateX(50%); }
  .footer-top { display: grid; }
  .footer-links { justify-content: flex-start; }
}

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