:root {
  color-scheme: light;
  --ink: #132235;
  --muted: #5c6a78;
  --line: #d9e1e7;
  --paper: #fffdfa;
  --wash: #f4f8f4;
  --navy: #122e59;
  --green: #14705a;
  --lake: #2c81a7;
  --gold: #bc8e32;
  --red: #c84f3f;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(19, 34, 53, 0.12);
  --radius: 8px;
  --container: 1120px;
  --copy-size: clamp(1.02rem, 1.1vw, 1.08rem);
  --copy-line-height: 1.9;
}

/* Password-only hearing sheet access */
.hearing-login-page {
  min-height: 100vh;
  background: #f3f7f7;
  color: var(--navy, #0d2f58);
}

.hearing-login-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 20px;
}

.hearing-login-panel {
  width: min(100%, 560px);
  border-top: 4px solid var(--gold, #bd922d);
  background: #fff;
  padding: clamp(32px, 6vw, 56px);
  box-shadow: 0 18px 50px rgba(13, 47, 88, 0.12);
}

.hearing-login-brand {
  display: inline-block;
  width: min(230px, 72%);
  margin-bottom: 34px;
}

.hearing-login-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.hearing-login-panel h1 {
  margin: 8px 0 18px;
  font-size: clamp(1.7rem, 4vw, 2.25rem);
  line-height: 1.45;
}

.hearing-login-copy,
.hearing-login-help {
  margin: 0;
  color: #43566b;
  line-height: 1.9;
}

.hearing-login-form {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.hearing-login-form label {
  font-weight: 700;
}

.hearing-login-form input {
  min-height: 56px;
  width: 100%;
  border: 1px solid #aebbc7;
  border-radius: 4px;
  background: #fff;
  padding: 12px 14px;
  color: #132f4f;
  font: inherit;
}

.hearing-login-form input:focus {
  border-color: #0c775f;
  outline: 3px solid rgba(12, 119, 95, 0.18);
  outline-offset: 1px;
}

.hearing-login-form .button {
  width: 100%;
  min-height: 58px;
  margin-top: 8px;
}

.hearing-login-error,
.hearing-login-notice {
  margin: 22px 0 0;
  border-left: 4px solid #b5473d;
  background: #fff2f0;
  padding: 13px 15px;
  color: #7f2922;
  font-weight: 700;
  line-height: 1.7;
}

.hearing-login-notice {
  border-left-color: #0c775f;
  background: #edf8f4;
  color: #075b49;
}

.hearing-login-help {
  margin-top: 22px;
  font-size: 0.92rem;
}

.hearing-session-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.hearing-logout-form {
  margin: 0;
}

.hearing-logout-button {
  border: 0;
  background: transparent;
  padding: 6px 0;
  color: #53677a;
  font: inherit;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.hearing-logout-button:hover,
.hearing-logout-button:focus-visible {
  color: #0c775f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  color: var(--ink);
  font-size: 16px;
  background: var(--paper);
  line-height: 1.8;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
legend,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 250, 0.88);
  border-bottom: 1px solid rgba(217, 225, 231, 0.84);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(1200px, calc(100% - 32px));
  min-height: 72px;
  margin-inline: auto;
}

.brand img {
  width: 184px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.header-cta {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(18, 46, 89, 0.18);
}

.button svg,
.header-cta svg,
.text-link svg,
.contact-method svg,
.icon-list svg,
.feature-card > svg,
.behavior-note svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke-width: 2.2;
}

.button-chidori-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  object-fit: contain;
}

.form-submit .button-chidori-icon {
  filter: brightness(0) invert(1);
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 30px rgba(20, 112, 90, 0.24);
}

.button-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(18, 46, 89, 0.2);
}

.button-secondary.dark {
  background: var(--white);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
}

.menu-button svg {
  width: 22px;
  height: 22px;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, 78svh);
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: linear-gradient(90deg, #fffdfa 0%, #f3f8f6 44%, #e6f0ef 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 253, 250, 0.96) 0%, rgba(255, 253, 250, 0.9) 26%, rgba(255, 253, 250, 0.4) 48%, rgba(18, 46, 89, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 253, 250, 0) 64%, var(--paper) 100%);
}

.hero-media {
  z-index: -2;
}

@media (min-width: 1100px) {
  .hero-media img {
    object-position: right center;
  }
}

.hero-grid {
  display: grid;
  align-items: center;
  min-height: inherit;
  padding: 52px 0 64px;
}

.hero-copy {
  max-width: 740px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 11.4em;
  margin: 0;
  font-size: clamp(2.25rem, 4.65vw, 4.75rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 .hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero h1 .nowrap {
  white-space: nowrap;
}

.hero-lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: #243648;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  font-weight: 600;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 760px;
  margin: 42px 0 0;
}

.hero-facts a {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 124px;
  align-content: center;
  justify-items: center;
  padding: 34px 18px 20px;
  border: 1px solid rgba(18, 46, 89, 0.18);
  border-radius: var(--radius);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(19, 34, 53, 0.1);
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.hero-facts a::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  opacity: 0.58;
  transform: rotate(45deg);
}

.hero-facts a > svg,
.hero-fact-icon {
  position: absolute;
  top: -24px;
  left: 50%;
  width: 48px;
  height: 48px;
  padding: 11px;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: var(--gold);
  background: var(--white);
  box-shadow: 0 10px 22px rgba(19, 34, 53, 0.12);
  transform: translateX(-50%);
  stroke-width: 2.1;
}

.hero-fact-icon {
  display: grid;
  place-items: center;
  padding: 0;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.hero-facts a:hover,
.hero-facts a:focus-visible {
  border-color: rgba(20, 112, 90, 0.45);
  box-shadow: 0 18px 44px rgba(20, 112, 90, 0.16);
  transform: translateY(-2px);
}

.hero-facts a:first-child {
  border-color: rgba(188, 142, 50, 0.42);
}

.hero-facts a:last-child {
  color: var(--navy);
  border-color: rgba(188, 142, 50, 0.42);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(19, 34, 53, 0.1);
}

.hero-facts a:last-child > svg,
.hero-facts a:last-child .hero-fact-icon {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--white);
}

.hero-fact-label {
  min-width: 0;
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-facts strong {
  margin: 0;
  font-size: clamp(0.96rem, 1.28vw, 1.08rem);
  font-weight: 900;
  line-height: 1.45;
}

.loss-strip {
  padding: 88px 0;
  background:
    linear-gradient(180deg, rgba(18, 46, 89, 0.04), rgba(20, 112, 90, 0.06)),
    var(--paper);
  color: var(--ink);
}

.loss-head {
  max-width: var(--container);
  text-align: left;
}

.loss-head h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.1vw, 3rem);
  line-height: 1.28;
}

.loss-head p {
  max-width: none;
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.traffic-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  margin-top: 44px;
}

.traffic-flow article {
  position: relative;
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(18, 46, 89, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 38px rgba(19, 34, 53, 0.07);
}

.traffic-flow article:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -32px;
  width: 22px;
  height: 22px;
  border-top: 3px solid var(--green);
  border-right: 3px solid var(--green);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.traffic-flow svg {
  width: 34px;
  height: 34px;
  color: var(--green);
  stroke-width: 2.2;
}

.traffic-flow-chidori {
  display: block;
  width: 38px;
  height: 32px;
  background: var(--green);
  -webkit-mask: url("./assets/images/keiji-chidori-mascot.svg?v=20260710-3") center / contain no-repeat;
  mask: url("./assets/images/keiji-chidori-mascot.svg?v=20260710-3") center / contain no-repeat;
}

.traffic-flow h3 {
  margin: 18px 0 0;
  font-size: 1.28rem;
  line-height: 1.4;
}

.traffic-flow p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.target-visual {
  margin-top: 40px;
  overflow: hidden;
  border: 1px solid rgba(20, 112, 90, 0.16);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 38px rgba(19, 34, 53, 0.08);
}

.target-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.target-visual picture {
  display: block;
}

.target-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.target-groups article {
  position: relative;
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(20, 112, 90, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(19, 34, 53, 0.06);
}

.target-groups article::after {
  position: absolute;
  bottom: -10px;
  left: 34px;
  width: 20px;
  height: 20px;
  border-right: 1px solid rgba(20, 112, 90, 0.16);
  border-bottom: 1px solid rgba(20, 112, 90, 0.16);
  background: inherit;
  content: "";
  transform: rotate(45deg);
}

.target-groups article:nth-child(2)::after {
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.target-groups article:nth-child(3)::after {
  right: 34px;
  left: auto;
}

.target-groups svg {
  width: 30px;
  height: 30px;
  color: var(--green);
  stroke-width: 2.1;
}

.target-groups h3 {
  margin: 16px 0 0;
  color: var(--navy);
  font-size: clamp(1.12rem, 1.6vw, 1.32rem);
  line-height: 1.5;
  font-weight: 900;
}

.target-groups p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.9;
}

.check-list,
.icon-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-list li,
.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.check-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 5px;
  color: #9bd9c4;
}

.section {
  padding: 116px 0;
}

.section-head {
  max-width: var(--container);
  text-align: left;
}

.section h2,
.section-head h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.72rem);
  line-height: 1.28;
  letter-spacing: 0;
}

.section-head .nowrap {
  white-space: nowrap;
}

@media (min-width: 981px) {
  .section-head h2 {
    white-space: nowrap;
  }
}

.section-head p {
  max-width: none;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  font-weight: 600;
  line-height: 1.95;
}

.contact-copy p,
.work-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.1vw, 1.06rem);
  font-weight: 600;
  line-height: 1.9;
}

.card-grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}

.card-grid.four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.strategy-card,
.price-card,
.include-panel,
.decision-grid article,
.contact-form,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(19, 34, 53, 0.06);
}

.feature-card {
  padding: 32px;
}

.decision-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 249, 250, 0.95));
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.decision-grid article {
  padding: 30px;
}

.decision-grid svg {
  width: 34px;
  height: 34px;
  color: var(--green);
  stroke-width: 2.2;
}

.decision-grid h3 {
  margin: 18px 0 0;
  font-size: 1.2rem;
  line-height: 1.42;
}

.decision-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.82;
}

.region-reason {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: start;
  margin-top: 42px;
  padding: 34px 38px;
  border: 1px solid rgba(20, 112, 90, 0.2);
  border-left: 6px solid var(--green);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(19, 34, 53, 0.06);
}

.region-reason .mini-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.region-reason h3 {
  margin: 0;
  font-size: clamp(1.24rem, 2vw, 1.72rem);
  line-height: 1.48;
}

.region-reason ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.region-reason li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.8;
}

.region-reason li::before {
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.keiji-story {
  background:
    linear-gradient(90deg, rgba(245, 234, 210, 0.56), rgba(234, 245, 249, 0.72)),
    var(--paper);
}

.keiji-story-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.keiji-mark {
  display: grid;
  min-height: 250px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.keiji-mark img {
  display: block;
  width: min(210px, 74%);
  height: auto;
}

.chidori-body {
  fill: var(--navy);
}

.chidori-wing {
  fill: #244d80;
}

.chidori-beak,
.chidori-eye {
  fill: var(--gold);
}

.chidori-wave {
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-width: 7;
}

.keiji-story-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.72rem);
  line-height: 1.28;
  letter-spacing: 0;
}

.keiji-story-copy p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  font-weight: 600;
  line-height: 1.95;
}

.channel-use {
  background: var(--white);
}

.channel-use-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  margin-top: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.channel-use-grid article {
  padding: 34px 38px 36px;
}

.channel-use-grid article:last-child {
  padding: 34px 38px 36px;
}

.channel-use-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 15px;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 900;
}

.channel-use-grid article:first-child .channel-use-label {
  color: var(--green);
}

.channel-use-label svg {
  width: 20px;
  height: 20px;
}

.channel-use-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.24rem, 2vw, 1.5rem);
  line-height: 1.5;
}

.channel-use-grid article > p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: var(--copy-size);
  font-weight: 600;
  line-height: var(--copy-line-height);
}

.channel-use-arrows {
  display: grid;
  align-content: center;
  justify-items: center;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.channel-use-exchange {
  display: grid;
  gap: 8px;
  place-items: center;
}

.channel-use-exchange svg {
  width: 31px;
  height: 31px;
  stroke-width: 2.5;
}

.channel-use-arrow-out {
  color: var(--green);
}

.channel-use-exchange .channel-use-arrow-back {
  color: var(--gold);
  stroke-width: 3.2;
}

.channel-use-exchange-label {
  display: none;
}

.channel-use-outcome {
  margin-top: 24px;
  color: var(--navy);
  font-size: var(--copy-size);
  font-weight: 800;
  line-height: var(--copy-line-height);
}

.section-visual {
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(20, 112, 90, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(19, 34, 53, 0.08);
}

.section-visual picture,
.panel-visual picture {
  display: block;
}

.section-visual img,
.panel-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.feature-card > svg {
  width: 30px;
  height: 30px;
  color: var(--green);
}

.feature-card h3,
.strategy-card h3,
.price-card h3,
.method-stack h3 {
  margin: 18px 0 0;
  font-size: 1.24rem;
  line-height: 1.45;
}

.feature-card p,
.strategy-card p,
.price-card p,
.method-stack p,
.story-list p,
.flow-list p,
.faq p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.01rem;
  font-weight: 600;
  line-height: 1.85;
}

.method,
.price,
.faq {
  background: var(--wash);
}

.story {
  background: var(--paper);
}

.story-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.story .story-list {
  margin: 48px auto 0;
}

.story-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 34px rgba(19, 34, 53, 0.06);
}

.story-list h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.45;
}

.behavioral {
  background:
    linear-gradient(180deg, rgba(20, 112, 90, 0.06), rgba(44, 129, 167, 0.04)),
    var(--paper);
}

.behavior-note {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 4px 24px;
  align-items: start;
  margin-top: 34px;
  padding: 32px 36px;
  border: 1px solid rgba(20, 112, 90, 0.22);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.behavior-note svg {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  color: var(--green);
}

.behavior-note h3 {
  margin: 0;
  font-size: clamp(1.28rem, 2vw, 1.8rem);
  line-height: 1.42;
}

.behavior-note p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.glossary-grid article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
  min-width: 0;
  padding: 30px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(19, 34, 53, 0.05);
}

.glossary-grid h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.45;
}

.glossary-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.glossary-grid small {
  display: block;
  grid-column: auto;
  margin-top: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(20, 112, 90, 0.16);
  border-radius: var(--radius);
  background: rgba(20, 112, 90, 0.06);
  color: var(--green);
  font-weight: 900;
  line-height: 1.7;
}

.method-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
  margin-top: 44px;
}

.method-stack article {
  position: relative;
  display: block;
  min-width: 0;
  padding: 32px;
  border-top: 5px solid var(--green);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.method-stack article:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -30px;
  width: 20px;
  height: 20px;
  border-top: 3px solid var(--green);
  border-right: 3px solid var(--green);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.method-stack article > svg {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--green);
  stroke-width: 2.2;
}

.method-stack h3 {
  margin: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--green);
  font-weight: 900;
}

.strategy-card {
  position: relative;
  padding: 30px;
  overflow: hidden;
}

.strategy-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--lake), var(--gold), var(--red));
}

.strategy-card small {
  display: block;
  margin-top: 18px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
}

.psychology .card-grid.three {
  grid-template-columns: 1fr;
  max-width: 980px;
}

.psychology .strategy-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
}

.psychology .strategy-card h3 {
  margin: 0;
}

.psychology .strategy-card p {
  margin: 0;
}

.psychology .strategy-card small {
  grid-column: auto;
  margin: 4px 0 0;
}

.includes {
  background:
    linear-gradient(90deg, rgba(20, 112, 90, 0.08), rgba(44, 129, 167, 0.08)),
    var(--paper);
}

.include-panel {
  margin-top: 44px;
  padding: 34px;
}

.media-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: center;
}

.media-copy {
  min-width: 0;
}

.panel-visual {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  background: var(--wash);
}

.include-panel h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.4;
}

.icon-list {
  margin-top: 22px;
}

.icon-list li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.icon-list svg {
  margin-top: 5px;
  color: var(--green);
}

.area-panel {
  display: grid;
  gap: 24px;
  margin-top: 28px;
  padding: 34px;
  border: 1px solid rgba(20, 112, 90, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(19, 34, 53, 0.06);
}

.area-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.area-summary article {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.area-summary svg {
  width: 28px;
  height: 28px;
  color: var(--green);
  stroke-width: 2.15;
}

.area-summary h4 {
  margin: 16px 0 0;
  color: var(--navy);
  font-size: 1.16rem;
  line-height: 1.45;
}

.area-summary p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.85;
}

.area-more-link {
  width: fit-content;
  margin-top: 0;
}

.industry-link-panel {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.industry-link-panel .mini-label {
  margin: 0;
}

.industry-link-panel .area-more-link {
  margin: 0 auto;
}

.area-intro {
  max-width: none;
}

.area-intro .mini-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.area-intro h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.24rem, 2vw, 1.72rem);
  line-height: 1.48;
}

.area-intro p,
.area-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
}

.area-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.area-columns article {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.area-columns h4 {
  margin: 0;
  color: var(--navy);
  font-size: 1.16rem;
  line-height: 1.4;
}

.area-columns p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.9;
}

.booking-feature {
  border-top: 1px solid rgba(18, 46, 89, 0.08);
  border-bottom: 1px solid rgba(18, 46, 89, 0.08);
  background: #f2f7f8;
}

.production-samples {
  border-top: 1px solid rgba(18, 46, 89, 0.08);
  background: #f7f9fa;
}

.production-sample-slider {
  margin-top: 44px;
}

.production-sample-toolbar,
.production-sample-navigation,
.production-sample-controls {
  display: flex;
  align-items: center;
}

.production-sample-toolbar {
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(18, 46, 89, 0.14);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(18, 46, 89, 0.07);
}

.production-sample-guide {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
}

.production-sample-guide svg {
  width: 21px;
  height: 21px;
  color: var(--green);
}

.production-sample-navigation {
  flex: 0 0 auto;
  gap: 14px;
}

.production-sample-count {
  min-width: 54px;
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 900;
  text-align: center;
}

.production-sample-controls {
  gap: 10px;
}

.production-sample-controls button {
  display: inline-grid;
  width: 60px;
  height: 60px;
  padding: 0;
  place-items: center;
  border: 2px solid rgba(18, 46, 89, 0.26);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(18, 46, 89, 0.12);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.production-sample-controls [data-site-sample-next]:not(:disabled) {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(18, 46, 89, 0.24);
}

.production-sample-controls button:hover:not(:disabled),
.production-sample-controls button:focus-visible {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(18, 46, 89, 0.26);
  transform: translateY(-2px);
}

.production-sample-controls button:disabled {
  opacity: 0.32;
  cursor: default;
}

.production-sample-controls svg {
  width: 26px;
  height: 26px;
  stroke-width: 2.4;
}

.production-sample-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.production-sample-track::-webkit-scrollbar {
  display: none;
}

.production-sample-slide {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 46, 89, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 20px 52px rgba(18, 46, 89, 0.11);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.production-sample-slider[data-site-sample-mode="swap"] .production-sample-track {
  overflow: hidden;
}

.production-sample-slider[data-site-sample-mode="swap"] .production-sample-slide:not([hidden]) {
  animation: production-sample-reveal 0.22s ease;
}

@keyframes production-sample-reveal {
  from {
    opacity: 0.72;
  }

  to {
    opacity: 1;
  }
}

.production-sample-caption {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(18, 46, 89, 0.12);
  background: #fffdfa;
}

.production-sample-caption > span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.production-sample-caption div {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 18px;
}

.production-sample-caption strong {
  flex: 0 0 auto;
  color: var(--navy);
  font-size: 1.12rem;
}

.production-sample-caption p {
  min-width: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.65;
}

.production-sample-slide picture,
.production-sample-slide img {
  display: block;
  width: 100%;
}

.production-sample-slide img {
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: contain;
  background: #f2f3f3;
}

.production-sample-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  text-align: right;
}

.booking-demo {
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid rgba(20, 112, 90, 0.28);
  border-radius: var(--radius);
  background: #e5f0ed;
  box-shadow: 0 22px 55px rgba(18, 46, 89, 0.12);
}

.booking-demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 32px 28px;
  border-bottom: 4px solid var(--gold);
  color: var(--white);
  background: var(--green);
}

.booking-demo-label,
.booking-demo-step {
  margin: 0;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.booking-demo-label {
  color: #f3d17e;
}

.booking-demo-head h3 {
  margin: 6px 0 0;
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  line-height: 1.35;
}

.booking-demo-head p:last-child {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
}

.booking-calendar-badge {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
  font-weight: 900;
}

.booking-calendar-badge svg {
  width: 18px;
  height: 18px;
  color: #f3d17e;
}

.booking-demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 16px;
  min-width: 0;
  padding: 18px;
}

.booking-demo-main {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.booking-demo-services,
.booking-demo-calendar,
.booking-demo-contact {
  min-width: 0;
  padding: 21px 22px 23px;
  border: 1px solid rgba(18, 46, 89, 0.13);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(18, 46, 89, 0.06);
}

.booking-demo-services {
  border-top: 4px solid var(--gold);
}

.booking-demo-calendar {
  border-top: 4px solid var(--lake);
}

.booking-demo-contact {
  align-self: stretch;
  border-top: 4px solid var(--red);
}

.booking-panel-heading,
.booking-calendar-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.booking-panel-heading h4,
.booking-calendar-head h4,
.booking-demo-contact h4 {
  margin: 4px 0 0;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.5;
}

.booking-step-status {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 5px;
  min-height: 31px;
  padding: 5px 9px;
  border: 1px solid rgba(20, 112, 90, 0.28);
  border-radius: 5px;
  color: var(--green);
  background: #eef8f4;
  font-size: 0.75rem;
  font-weight: 900;
}

.booking-step-status svg {
  width: 15px;
  height: 15px;
}

.booking-service-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 15px;
}

.booking-service-options span {
  display: grid;
  gap: 3px;
  min-width: 0;
  min-height: 78px;
  align-content: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
}

.booking-service-options span.is-selected {
  border-color: var(--green);
  background: #eef8f4;
  box-shadow: inset 0 0 0 1px rgba(20, 112, 90, 0.42);
}

.booking-service-options strong {
  color: var(--navy);
  line-height: 1.45;
}

.booking-service-options small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.55;
}

.booking-calendar-nav {
  display: flex;
  gap: 7px;
}

.booking-calendar-nav span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--navy);
  background: var(--white);
}

.booking-calendar-nav svg {
  width: 18px;
  height: 18px;
}

.booking-calendar-scroll {
  max-width: 100%;
  margin-top: 15px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}

.booking-calendar-scroll:focus-visible {
  outline: 3px solid rgba(20, 112, 90, 0.2);
  outline-offset: 3px;
}

.booking-calendar-table {
  width: 100%;
  min-width: 690px;
  border-collapse: separate;
  border-spacing: 6px;
  table-layout: fixed;
}

.booking-calendar-table th,
.booking-calendar-table td {
  height: 42px;
  padding: 0;
  text-align: center;
}

.booking-calendar-table thead th {
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--navy);
  background: #f5f8f9;
  font-size: 0.8rem;
  line-height: 1.25;
}

.booking-calendar-table thead th:first-child {
  border-color: transparent;
  color: var(--muted);
  background: transparent;
}

.booking-calendar-table thead th.is-today {
  border-color: var(--red);
  background: #fff4f1;
  box-shadow: inset 0 0 0 1px rgba(200, 79, 63, 0.22);
}

.booking-calendar-table thead small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.7rem;
}

.booking-calendar-table tbody th {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.booking-slot {
  display: grid;
  width: 100%;
  min-height: 36px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
}

.booking-slot.is-open {
  border-color: rgba(20, 112, 90, 0.22);
  color: var(--green);
  background: #e4f4ef;
}

.booking-slot.is-selected {
  border-color: var(--green);
  color: var(--white);
  background: var(--green);
  box-shadow: 0 6px 14px rgba(20, 112, 90, 0.24);
}

.booking-slot.is-busy {
  color: #91a0a9;
  background: #edf2f4;
}

.booking-slot.is-closed {
  color: #a8655c;
  background: #f9e7e3;
}

.booking-calendar-foot {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
}

.booking-calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.booking-calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.booking-calendar-legend b {
  font-size: 0.9rem;
}

.booking-calendar-legend .is-open {
  color: var(--green);
}

.booking-calendar-legend .is-busy {
  color: #87959e;
}

.booking-calendar-legend .is-closed {
  color: #a8655c;
}

.booking-calendar-privacy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.65;
}

.booking-calendar-privacy svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: var(--green);
}

.booking-demo-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 15px;
}

.booking-demo-progress span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 5px 7px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--muted);
  background: #f4f7f8;
  font-size: 0.7rem;
  font-weight: 900;
}

.booking-demo-progress span.is-done {
  border-color: rgba(20, 112, 90, 0.25);
  color: var(--green);
  background: #e8f5f1;
}

.booking-demo-progress span.is-current {
  border-color: rgba(188, 142, 50, 0.46);
  color: var(--navy);
  background: #fff6df;
}

.booking-demo-progress svg {
  width: 13px;
  height: 13px;
}

.booking-demo-summary {
  display: grid;
  gap: 3px;
  margin-top: 13px;
  padding: 12px 13px;
  border-left: 3px solid var(--gold);
  background: #fff8e6;
}

.booking-demo-summary span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
}

.booking-demo-summary strong {
  color: var(--navy);
  font-size: 0.87rem;
  line-height: 1.55;
}

.booking-demo-field {
  display: grid;
  gap: 4px;
  min-height: 58px;
  margin-top: 10px;
  align-content: center;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
}

.booking-demo-field-large {
  min-height: 82px;
  align-content: start;
}

.booking-demo-field span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.booking-demo-field em {
  margin-left: 3px;
  color: var(--red);
  font-style: normal;
}

.booking-demo-field b {
  color: #8b99a2;
  font-size: 0.8rem;
  line-height: 1.55;
}

.booking-demo-submit {
  display: inline-flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 5px;
  color: var(--white);
  background: var(--green);
  font-size: 0.88rem;
  font-weight: 900;
  text-align: center;
}

.booking-demo-submit svg {
  width: 18px;
  height: 18px;
}

.booking-demo-confirm {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.7;
}

.booking-demo-confirm svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 3px;
  color: var(--gold);
}

.booking-feature-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 34px;
}

.booking-feature-points article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  min-width: 0;
  padding: 4px 0 4px 20px;
  border-left: 3px solid var(--gold);
}

.booking-feature-points svg {
  width: 28px;
  height: 28px;
  color: var(--green);
}

.booking-feature-points h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.5;
}

.booking-feature-points p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.8;
}

.booking-standard-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px;
  padding: 24px 28px;
  border: 1px solid rgba(188, 142, 50, 0.34);
  border-radius: var(--radius);
  background: #fffaf0;
}

.booking-standard-note p {
  flex: 1 1 auto;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.85;
}

.booking-standard-note strong {
  color: var(--navy);
}

.booking-standard-note .button {
  flex: 0 0 auto;
}

.area-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.area-link-list a,
.area-link-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(20, 112, 90, 0.18);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(20, 112, 90, 0.06);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
}

.area-link-list a:hover {
  border-color: rgba(20, 112, 90, 0.45);
  background: rgba(20, 112, 90, 0.11);
}

.area-link-list.compact {
  gap: 8px;
}

.area-link-list.compact a {
  min-height: 34px;
  padding: 7px 11px;
  font-size: 0.86rem;
}

.area-note a {
  color: var(--green);
  font-weight: 900;
}

.area-page {
  background: var(--paper);
  color: var(--navy);
}

.area-hero {
  position: relative;
  overflow: hidden;
  padding: 118px 0 92px;
  background: var(--paper);
}

.area-hero::before,
.area-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.area-hero::before {
  background-image: url("./assets/images/hero-keiji-business-owner-20260715.webp?v=20260722-1");
  background-position: right center;
  background-size: cover;
  opacity: 1;
}

.area-hero::after {
  background:
    linear-gradient(90deg, rgba(255, 253, 250, 0.98) 0%, rgba(255, 253, 250, 0.91) 36%, rgba(255, 253, 250, 0.46) 58%, rgba(18, 46, 89, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 253, 250, 0) 62%, var(--paper) 100%);
}

.area-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 930px;
}

.area-hero h1 {
  max-width: 12em;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.area-hero h1 span {
  display: block;
}

.area-hero p:not(.section-kicker) {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 700;
  line-height: 2;
}

.area-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.area-detail-grid,
.area-step-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.area-detail-grid {
  margin-top: 44px;
}

.area-box,
.area-step-list article,
.area-link-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 34px rgba(19, 34, 53, 0.06);
}

.area-box,
.area-step-list article {
  padding: 30px;
}

.area-box h3,
.area-step-list h3,
.area-link-panel h2 {
  margin: 0;
  color: var(--navy);
  line-height: 1.45;
}

.area-box p,
.area-step-list p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.9;
}

.area-local-seo,
.area-neighbor {
  background: var(--wash);
}

.area-chip-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.area-chip-list li {
  padding: 16px 18px;
  border: 1px solid rgba(20, 112, 90, 0.18);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  font-weight: 900;
  line-height: 1.45;
}

.area-step-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 44px;
}

.area-link-panel {
  padding: 32px;
}

.area-link-panel + .area-link-panel {
  margin-top: 28px;
}

.area-contact {
  background: var(--paper);
}

.area-contact .button {
  margin-top: 24px;
}

.work {
  background: var(--navy);
  color: var(--white);
}

.work .section-head .section-kicker {
  color: var(--gold);
}

.work .section-head p {
  color: rgba(255, 255, 255, 0.76);
}

.work-slider {
  margin-top: 44px;
  overflow: hidden;
}

.work-slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.work-slider-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.work-slider-controls {
  display: flex;
  gap: 10px;
}

.work-slider-controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.work-slider-controls button:hover {
  background: rgba(255, 255, 255, 0.16);
}

.work-slider-controls svg {
  width: 22px;
  height: 22px;
}

.work-showcase {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 4px 0 24px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(255, 255, 255, 0.42) rgba(255, 255, 255, 0.1);
}

.single-work .work-showcase {
  overflow: visible;
  padding-bottom: 0;
}

.work-card {
  flex: 0 0 clamp(360px, 58vw, 640px);
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.single-work .work-card {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  flex-basis: 100%;
  width: 100%;
}

.area-hero-facts {
  max-width: 740px;
  margin-top: 34px;
}

.work-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: top center;
}

.single-work .work-card img {
  height: 100%;
  min-height: 430px;
  aspect-ratio: auto;
  object-fit: contain;
  box-sizing: border-box;
  padding: 18px;
  background: #f7f8fb;
}

.work-copy {
  padding: 28px;
  color: var(--ink);
}

.single-work .work-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 38px;
  text-align: center;
}

.work-category {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.work-copy h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.38;
  overflow-wrap: normal;
  word-break: keep-all;
}

.work-copy h3.work-title-fit {
  font-size: clamp(1.1rem, 1.52vw, 1.54rem);
  white-space: nowrap;
}

.work-copy p {
  color: var(--muted);
}

.work-card .button {
  width: fit-content;
  margin-top: 22px;
}

.work-card .button-secondary.dark {
  color: var(--white);
  border-color: transparent;
  background: var(--navy);
}

.sample-card .work-copy {
  min-height: 226px;
}

.price-reason {
  background:
    linear-gradient(180deg, rgba(188, 142, 50, 0.08), rgba(255, 253, 250, 0) 46%),
    var(--paper);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.reason-grid article {
  min-width: 0;
  padding: 30px 28px;
  border: 1px solid rgba(188, 142, 50, 0.26);
  border-top: 5px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(19, 34, 53, 0.07);
}

.reason-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--gold);
  stroke-width: 2;
}

.reason-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.16rem, 1.55vw, 1.36rem);
  line-height: 1.48;
}

.reason-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
  margin-top: 50px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 46px 28px 28px;
}

.price-card h3 {
  margin: 0;
  min-height: 1.45em;
  font-size: 1.36rem;
  text-align: center;
}

.price-card.featured {
  border-color: rgba(20, 112, 90, 0.72);
  background:
    linear-gradient(180deg, rgba(20, 112, 90, 0.07), rgba(255, 255, 255, 0) 42%),
    var(--white);
  box-shadow: 0 24px 70px rgba(20, 112, 90, 0.2);
}

.price-card.featured h3 {
  color: var(--green);
}

.recommend {
  position: absolute;
  top: -30px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 10px 22px;
  color: var(--ink);
  border: 2px solid var(--white);
  border-radius: 999px;
  background: linear-gradient(135deg, #f1c56b, var(--gold));
  box-shadow: 0 14px 34px rgba(188, 142, 50, 0.3);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1;
  transform: translateX(-50%);
  white-space: nowrap;
}

.recommend svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.price-card .price-value {
  margin: 14px 0 0;
  color: var(--navy);
  font-size: clamp(2.55rem, 4.2vw, 3.75rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.price-card .price-value span {
  margin-left: 3px;
  font-size: 0.34em;
}

.price-card .text-link {
  width: fit-content;
  margin-top: auto;
}

.price-card .button {
  width: fit-content;
  margin: auto auto 0;
  justify-content: center;
}

.plan-mobile-intro,
.plan-selector,
.plan-compare-toggle {
  display: none;
}

.compare-wrap {
  margin-top: 26px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.compare-lead {
  min-width: 720px;
  margin: 0;
  padding: 16px 18px;
  color: var(--navy);
  background: rgba(188, 142, 50, 0.13);
  border-bottom: 1px solid rgba(188, 142, 50, 0.24);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.6;
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  color: var(--white);
  background: var(--navy);
  font-size: 0.92rem;
}

.compare-table tbody th {
  width: 38%;
  font-weight: 900;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.compare-status-symbol {
  display: none;
}

.compare-status-included {
  color: var(--green);
  font-weight: 900;
}

.compare-status-extra {
  color: #b54c4c;
  font-size: 1.18rem;
  font-weight: 900;
}

.compare-note {
  margin: 0;
  padding: 14px 16px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #fffdf8;
  font-size: 0.88rem;
  line-height: 1.7;
}

@media (max-width: 680px) {
  .compare-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .compare-lead {
    width: 100%;
    min-width: 0;
    border: 1px solid rgba(188, 142, 50, 0.24);
    border-radius: var(--radius);
  }

  .compare-table {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-top: 12px;
  }

  .compare-table thead {
    display: none;
  }

  .compare-table tbody {
    display: grid;
    width: 100%;
    min-width: 0;
    gap: 12px;
  }

  .compare-table tbody tr {
    display: grid;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
  }

  .compare-table tbody th {
    width: auto;
    padding: 13px 14px;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    background: #f1f7f4;
    font-size: 0.98rem;
  }

  .compare-table tbody td {
    display: grid;
    grid-template-columns: minmax(96px, 0.72fr) minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid var(--line);
    text-align: right;
  }

  .compare-table tbody td::before {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 900;
    text-align: left;
  }

  .compare-table tbody td:nth-child(2)::before {
    content: "はじめて";
  }

  .compare-table tbody td:nth-child(3)::before {
    content: "ちょうどいい";
  }

  .compare-table tbody td:nth-child(4)::before {
    content: "しっかり";
  }

  .compare-table .compare-status-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .compare-table .compare-status-symbol {
    display: block;
    justify-self: end;
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1;
  }

  .compare-table .compare-status-included .compare-status-symbol {
    color: var(--green);
  }

  .compare-table .compare-status-extra .compare-status-symbol {
    color: #b54c4c;
  }

  .compare-table tbody tr:last-child th,
  .compare-table tbody tr:last-child td {
    border-bottom: 1px solid var(--line);
  }

  .compare-table tbody tr td:last-child {
    border-bottom: 0;
  }

  .compare-note {
    margin-top: 12px;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
  }
}

.print-samples {
  overflow: hidden;
  border-top: 1px solid rgba(18, 46, 89, 0.08);
  background: #f7faf9;
}

.print-sample-gallery {
  margin-top: 48px;
}

.print-sample-slider + .print-sample-slider {
  margin-top: 64px;
  padding-top: 54px;
  border-top: 1px solid rgba(18, 46, 89, 0.14);
}

.print-sample-row-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(188, 142, 50, 0.3);
}

.print-sample-row-head .mini-label {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.3;
}

.print-sample-row-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.48rem;
  line-height: 1.4;
}

.print-sample-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  padding: 6px;
  border: 1px solid rgba(18, 46, 89, 0.14);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(18, 46, 89, 0.08);
}

.print-sample-controls button {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  padding: 0;
  color: var(--navy);
  border: 2px solid rgba(18, 46, 89, 0.28);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(18, 46, 89, 0.09);
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.print-sample-controls [data-print-next]:not(:disabled) {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: 0 9px 20px rgba(18, 46, 89, 0.22);
}

.print-sample-controls button:hover:not(:disabled),
.print-sample-controls button:focus-visible {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: 0 11px 24px rgba(18, 46, 89, 0.24);
  transform: translateY(-2px);
}

.print-sample-controls button:disabled {
  cursor: default;
  opacity: 0.3;
}

.print-sample-controls svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.4;
}

.print-sample-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 22px) / 2);
  gap: 22px;
  overflow-x: auto;
  padding: 2px 2px 20px;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.print-sample-track::-webkit-scrollbar {
  display: none;
}

.print-sample-item {
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.print-sample-number {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.print-sample-item h4 {
  margin: 18px 0 0;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.45;
}

.print-sample-item > p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.8;
}

.print-design {
  position: relative;
  aspect-ratio: 91 / 55;
  overflow: hidden;
  padding: 9%;
  color: var(--navy);
  border: 1px solid rgba(18, 46, 89, 0.16);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(19, 34, 53, 0.11);
}

.print-design span,
.print-design strong {
  position: absolute;
  display: block;
  letter-spacing: 0;
}

.print-design-logo {
  top: 12%;
  left: 9%;
  font-size: 0.68rem;
  font-weight: 900;
}

.print-design-role {
  top: 26%;
  left: 9%;
  color: var(--gold);
  font-size: 0.56rem;
  font-weight: 900;
}

.print-design strong {
  bottom: 29%;
  left: 9%;
  font-size: 1.24rem;
  line-height: 1.2;
}

.print-design-contact {
  right: 9%;
  bottom: 12%;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.55;
  text-align: right;
}

.print-design-split::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 36%;
  content: "";
  background: #dcebee;
}

.print-design-split .print-design-role,
.print-design-split .print-design-contact {
  z-index: 1;
  right: 7%;
  left: auto;
  color: var(--navy);
  text-align: right;
}

.print-design-split .print-design-role {
  top: 17%;
}

.print-design-split .print-design-contact {
  bottom: 17%;
}

.print-design-dark {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.print-design-dark::before {
  position: absolute;
  top: 0;
  right: 9%;
  left: 9%;
  height: 4px;
  content: "";
  background: var(--gold);
}

.print-design-dark .print-design-contact {
  color: rgba(255, 255, 255, 0.72);
}

.print-design-guide {
  border-color: rgba(20, 112, 90, 0.32);
  background: #f1f7f4;
}

.print-design-guide strong,
.print-design-qr-focus strong,
.print-design-brand strong {
  bottom: 31%;
  font-size: 0.92rem;
}

.print-design-qr {
  right: 8%;
  bottom: 13%;
  display: grid !important;
  place-items: center;
  width: 17%;
  aspect-ratio: 1;
  color: var(--navy);
  border: 3px solid currentColor;
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1;
}

.print-design-guide .print-design-contact,
.print-design-qr-focus .print-design-contact,
.print-design-brand .print-design-contact {
  right: auto;
  left: 9%;
  text-align: left;
}

.print-design-qr-focus {
  color: var(--navy);
  border-color: rgba(44, 129, 167, 0.34);
  background: #edf6fa;
}

.print-design-qr-focus .print-design-qr {
  top: 18%;
  right: 9%;
  bottom: auto;
  width: 27%;
}

.print-design-qr-focus .print-design-logo,
.print-design-qr-focus .print-design-role,
.print-design-qr-focus strong,
.print-design-qr-focus .print-design-contact {
  max-width: 52%;
}

.print-design-brand {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.print-design-brand .print-design-role {
  color: #f1c56b;
}

.print-design-brand .print-design-contact {
  color: rgba(255, 255, 255, 0.76);
}

.print-design-brand .print-design-qr {
  color: var(--white);
}

@media (max-width: 680px) {
  .print-sample-gallery {
    margin-top: 36px;
  }

  .print-sample-slider + .print-sample-slider {
    margin-top: 48px;
    padding-top: 42px;
  }

  .print-sample-row-head {
    align-items: center;
    gap: 12px;
  }

  .print-sample-row-head h3 {
    font-size: 1.25rem;
  }

  .print-sample-controls button {
    width: 52px;
    height: 52px;
  }

  .print-sample-track {
    grid-auto-columns: 100%;
    gap: 16px;
    margin-right: 0;
    padding-right: 2px;
  }

  .print-sample-item h4 {
    font-size: 1.06rem;
  }
}

.after-support {
  padding-top: 88px;
  padding-bottom: 88px;
  background:
    linear-gradient(135deg, rgba(18, 46, 89, 0.06), rgba(188, 142, 50, 0.08)),
    var(--paper);
}

.support-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  gap: 28px;
  align-items: stretch;
  padding: 38px;
  border: 1px solid rgba(188, 142, 50, 0.28);
  border-left: 6px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 48px rgba(19, 34, 53, 0.08);
}

.support-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.72rem);
  line-height: 1.28;
}

.support-copy p:not(.section-kicker),
.support-note p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  font-weight: 650;
  line-height: 1.95;
}

.support-note {
  display: grid;
  align-content: center;
  padding: 28px;
  border: 1px solid rgba(20, 112, 90, 0.18);
  border-radius: var(--radius);
  background: rgba(20, 112, 90, 0.06);
}

.support-note svg {
  width: 34px;
  height: 34px;
  color: var(--green);
  stroke-width: 2.2;
}

.support-note h3 {
  margin: 16px 0 0;
  color: var(--navy);
  font-size: clamp(1.18rem, 1.65vw, 1.42rem);
  line-height: 1.5;
}

.flow-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: none;
  padding-left: 0;
  margin-top: 28px;
  list-style: none;
}

.flow-visual {
  margin-top: 42px;
}

.flow-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
  min-width: 0;
  padding: 26px;
  border-top: 3px solid var(--green);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(19, 34, 53, 0.07);
}

.flow-list strong {
  display: block;
  margin-top: 0;
  font-size: 1.18rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 980px;
  margin-top: 42px;
}

.faq-group {
  display: grid;
  gap: 12px;
}

.faq-group h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 4px;
  color: var(--navy);
  font-size: clamp(1.08rem, 1.8vw, 1.36rem);
  line-height: 1.5;
}

.faq-group h3::before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  content: "";
  flex: 0 0 auto;
}

.faq details {
  padding: 22px 24px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
  line-height: 1.6;
}

.faq details p + p {
  margin-top: 8px;
}

.faq summary::marker {
  color: var(--green);
}

.contact {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 30px;
  max-width: 920px;
}

.contact-method {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: var(--navy);
  font-weight: 900;
}

.contact-method svg {
  color: var(--green);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.form-lead {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.9;
}

.form-helper {
  margin: -6px 0 4px;
  padding: 12px 14px;
  border: 1px solid rgba(188, 142, 50, 0.26);
  border-radius: var(--radius);
  color: var(--navy);
  background: rgba(188, 142, 50, 0.08);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.6;
}

.form-row.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

label span {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 900;
}

label b {
  color: var(--red);
  font-size: 0.78rem;
}

label small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 14px;
  color: var(--ink);
  font-size: 1rem;
  background: #fbfdfc;
  outline: none;
}

select {
  min-height: 52px;
  padding-right: 40px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--green) 50%),
    linear-gradient(135deg, var(--green) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  font-weight: 700;
}

textarea {
  resize: vertical;
}

.form-more {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.form-more summary {
  cursor: pointer;
  padding: 15px 16px;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.5;
}

.form-more summary::marker {
  color: var(--gold);
}

.form-more summary small {
  margin-left: 6px;
  color: var(--muted);
  font-size: 0.76rem;
}

.form-more-fields {
  display: grid;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 18px 16px 16px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(20, 112, 90, 0.14);
}

.form-submit {
  width: fit-content;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.74;
  transform: none;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.form-note a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-hero {
  padding: 104px 0 76px;
  background:
    linear-gradient(90deg, rgba(20, 112, 90, 0.08), rgba(44, 129, 167, 0.08)),
    var(--paper);
}

.privacy-hero h1 {
  margin: 0;
  font-size: clamp(2.05rem, 4.2vw, 4rem);
  line-height: 1.18;
}

.privacy-hero p:not(.section-kicker) {
  max-width: 820px;
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 2;
}

.privacy-section {
  padding-top: 76px;
}

.hearing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.hearing-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.hearing-guide-grid article {
  padding: 28px;
  border: 1px solid rgba(188, 142, 50, 0.24);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(19, 34, 53, 0.06);
}

.hearing-guide-grid svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
  stroke-width: 2;
}

.hearing-guide-grid h3 {
  margin: 16px 0 0;
  color: var(--navy);
  font-size: 1.18rem;
}

.hearing-guide-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.hearing-form {
  gap: 40px;
}

.hearing-form-section .section-head,
.hearing-form {
  max-width: 1080px;
  margin-inline: auto;
}

.hearing-form-intro {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-left: 4px solid var(--gold);
  background: rgba(188, 142, 50, 0.08);
}

.hearing-form-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.hearing-form-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
}

.hearing-form-meta svg {
  width: 19px;
  height: 19px;
  color: var(--green);
  stroke-width: 2.2;
}

.hearing-section-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.hearing-section-nav a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 12px 16px;
  color: var(--navy);
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.45;
}

.hearing-section-nav a:hover,
.hearing-section-nav a:focus-visible {
  color: var(--green);
  background: rgba(20, 112, 90, 0.06);
}

.hearing-form fieldset {
  display: grid;
  gap: 0;
  min-width: 0;
  margin: 0;
  padding: 30px;
  border: 1px solid rgba(217, 225, 231, 0.95);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.84);
  scroll-margin-top: 90px;
}

.hearing-form legend {
  padding: 0 12px;
  color: var(--navy);
  background: var(--paper);
  font-size: 1.32rem;
  font-weight: 900;
}

.hearing-form legend span,
.hearing-form legend strong {
  display: inline-block;
  vertical-align: middle;
}

.hearing-form legend span {
  margin-right: 12px;
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0;
}

.hearing-fieldset-intro {
  margin: 0;
  padding: 2px 0 28px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.85;
}

.hearing-question {
  display: grid;
  gap: 16px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.hearing-question:first-of-type {
  border-top: 0;
}

.hearing-question-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hearing-question-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.55;
}

.hearing-question-head b,
.hearing-question-head small {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 8px;
  font-size: 0.74rem;
  font-weight: 900;
}

.hearing-question-head b {
  color: var(--white);
  background: var(--red);
}

.hearing-question-head small {
  color: var(--muted);
  border: 1px solid var(--line);
  background: var(--white);
}

.hearing-hint {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.7;
}

.hearing-optional-block {
  margin-top: 10px;
  padding: 24px;
  border: 1px solid rgba(44, 129, 167, 0.2);
  background: rgba(44, 129, 167, 0.05);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice-grid.single-choice {
  grid-template-columns: 1fr;
}

.choice-grid label {
  display: flex;
  min-width: 0;
  gap: 9px;
  align-items: flex-start;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.55;
}

.choice-grid input {
  width: auto;
  min-width: 16px;
  margin-top: 0.28em;
  accent-color: var(--green);
}

.choice-grid label:has(input:checked) {
  border-color: rgba(20, 112, 90, 0.55);
  color: var(--navy);
  background: rgba(20, 112, 90, 0.08);
}

.field-error {
  margin: -4px 0 0;
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 900;
}

.hearing-priority-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(130px, 0.8fr);
  gap: 12px;
  align-items: end;
}

.hearing-priority-total {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(20, 112, 90, 0.3);
  color: var(--navy);
  background: rgba(20, 112, 90, 0.08);
  font-weight: 900;
}

.hearing-priority-total strong {
  color: var(--green);
  font-size: 1.35rem;
}

.hearing-repeat-grid {
  display: grid;
  gap: 16px;
}

.hearing-repeat-block {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 4px solid rgba(188, 142, 50, 0.72);
  background: var(--white);
}

.hearing-repeat-block h4 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
}

.hearing-repeat-block h4 small {
  margin-left: 6px;
  color: var(--muted);
  font-size: 0.75rem;
}

.hearing-submit-panel {
  display: grid;
  gap: 16px;
  justify-items: start;
  padding: 28px;
  border: 1px solid rgba(20, 112, 90, 0.24);
  background: rgba(20, 112, 90, 0.06);
}

.hearing-submit-panel > p:first-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.hearing-submit-panel > p:first-child strong {
  color: var(--navy);
}

.privacy-content {
  display: grid;
  gap: 30px;
  max-width: 900px;
}

.privacy-content article {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.privacy-content h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.22rem, 2vw, 1.56rem);
  line-height: 1.45;
}

.privacy-content p,
.privacy-content ul {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.95;
}

.privacy-content ul {
  padding-left: 1.35em;
}

.privacy-updated {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: right;
}

.section-head p,
.contact-copy p,
.work-copy p,
.keiji-story-copy p:not(.section-kicker),
.support-copy p:not(.section-kicker),
.support-note p,
.target-groups p,
.traffic-flow p,
.feature-card p,
.strategy-card p,
.price-card p,
.method-stack p,
.story-list p,
.flow-list p,
.faq p,
.reason-grid p,
.region-reason li,
.area-summary p,
.area-intro p,
.area-note,
.area-columns p,
.privacy-content p,
.privacy-content ul {
  font-size: var(--copy-size);
  line-height: var(--copy-line-height);
}

.site-footer {
  padding: 32px 0 12px;
  color: rgba(255, 255, 255, 0.78);
  background: #0d1d31;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.footer-grid img {
  width: 190px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-grid h2 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 1rem;
}

.footer-grid p {
  margin: 6px 0 0;
  font-size: 0.92rem;
  line-height: 1.65;
}

.footer-chidori-flock {
  position: relative;
  width: min(100%, 330px);
  height: 62px;
  margin-top: 10px;
  opacity: 0.82;
}

.footer-chidori-flock span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 24px;
  height: 19px;
  background: rgba(255, 255, 255, 0.78);
  -webkit-mask: url("./assets/images/keiji-chidori-mascot.svg?v=20260710-3") center / contain no-repeat;
  mask: url("./assets/images/keiji-chidori-mascot.svg?v=20260710-3") center / contain no-repeat;
}

.footer-chidori-flock span:nth-child(1) {
  top: 39px;
  left: 0;
  width: 19px;
  height: 15px;
  background: rgba(255, 255, 255, 0.62);
  transform: rotate(-8deg);
}

.footer-chidori-flock span:nth-child(2) {
  top: 24px;
  left: 9%;
  width: 28px;
  height: 22px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-mask-image: url("./assets/images/keiji-chidori-mascot-medium.svg?v=20260710-1");
  mask-image: url("./assets/images/keiji-chidori-mascot-medium.svg?v=20260710-1");
  transform: rotate(4deg);
}

.footer-chidori-flock span:nth-child(3) {
  top: 39px;
  left: 21%;
  width: 22px;
  height: 18px;
  transform: rotate(-2deg);
}

.footer-chidori-flock span:nth-child(4) {
  top: 16px;
  left: 31%;
  width: 18px;
  height: 14px;
  background: rgba(255, 255, 255, 0.62);
  transform: rotate(10deg);
}

.footer-chidori-flock span:nth-child(5) {
  top: 31px;
  left: 40%;
  width: 32px;
  height: 25px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-mask-image: url("./assets/images/keiji-chidori-mascot-medium.svg?v=20260710-1");
  mask-image: url("./assets/images/keiji-chidori-mascot-medium.svg?v=20260710-1");
  transform: rotate(-4deg);
}

.footer-chidori-flock span:nth-child(6) {
  top: 12px;
  left: 53%;
  width: 23px;
  height: 18px;
  background: rgba(255, 255, 255, 0.72);
  transform: rotate(6deg);
}

.footer-chidori-flock span:nth-child(7) {
  top: 25px;
  left: 63%;
  width: 27px;
  height: 21px;
  background: rgba(255, 255, 255, 0.86);
  -webkit-mask-image: url("./assets/images/keiji-chidori-mascot-medium.svg?v=20260710-1");
  mask-image: url("./assets/images/keiji-chidori-mascot-medium.svg?v=20260710-1");
  transform: rotate(-7deg);
}

.footer-chidori-flock span:nth-child(8) {
  top: 4px;
  left: 74%;
  width: 18px;
  height: 14px;
  background: rgba(255, 255, 255, 0.56);
  transform: rotate(8deg);
}

.footer-chidori-flock span:nth-child(9) {
  top: 17px;
  left: 82%;
  width: 24px;
  height: 19px;
  background: rgba(255, 255, 255, 0.75);
  transform: rotate(-3deg);
}

.footer-chidori-flock span:nth-child(10) {
  top: 0;
  right: 0;
  left: auto;
  width: 21px;
  height: 16px;
  background: rgba(255, 255, 255, 0.88);
  transform: rotate(5deg);
}

.footer-policy-link {
  font-size: inherit;
  font-weight: inherit;
}

.footer-policy-link a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-policy-link a:hover,
.footer-policy-link a:focus-visible {
  color: var(--white);
}

.copyright {
  width: min(var(--container), calc(100% - 40px));
  margin: 18px auto 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  text-align: center;
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    min-height: 64px;
  }

  .menu-button {
    display: grid;
    grid-column: 3;
    justify-self: end;
  }

  .mobile-nav {
    position: fixed;
    inset: 64px 0 auto;
    display: grid;
    gap: 4px;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 253, 250, 0.98);
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

  body.nav-open .mobile-nav {
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
    font-weight: 900;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: 620px;
    padding: 44px 0 52px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.78rem, 8.2vw, 2.25rem);
  }

  .hero h1 .hero-title-line,
  .hero h1 .nowrap {
    white-space: normal;
  }

  .work-showcase,
  .keiji-story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .traffic-flow,
  .area-detail-grid,
  .area-step-list {
    grid-template-columns: 1fr 1fr;
  }

  .target-groups {
    grid-template-columns: 1fr;
  }

  .hearing-guide-grid {
    grid-template-columns: 1fr;
  }

  .target-panel {
    grid-template-columns: 1fr;
  }

  .target-visual img {
    min-height: 0;
  }

  .traffic-flow article:not(:last-child)::after {
    display: none;
  }

  .check-list.compact,
  .card-grid.four,
  .card-grid.three,
  .area-chip-list,
  .decision-grid,
  .reason-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .glossary-grid {
    grid-template-columns: 1fr;
  }

  .area-summary {
    grid-template-columns: 1fr;
  }

  .work-showcase {
    gap: 28px;
  }

  .single-work .work-card {
    grid-template-columns: 1fr;
  }

  .single-work .work-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .region-reason {
    grid-template-columns: 1fr;
  }

  .support-panel {
    grid-template-columns: 1fr;
  }

  .booking-demo-grid {
    grid-template-columns: 1fr;
  }

  .booking-demo-contact {
    align-self: auto;
  }

  .booking-feature-points {
    grid-template-columns: 1fr;
  }

  .booking-standard-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .media-panel {
    grid-template-columns: 1fr;
  }

  .channel-use-grid {
    grid-template-columns: 1fr;
  }

  .channel-use-grid article,
  .channel-use-grid article:last-child {
    padding: 26px 22px 28px;
  }

  .channel-use-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 104px;
    border: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
    transform: none;
  }

  .channel-use-exchange {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 18px;
    row-gap: 6px;
  }

  .channel-use-exchange svg {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 5px 10px rgba(19, 34, 53, 0.1));
  }

  .channel-use-arrow-out,
  .channel-use-arrow-back {
    transform: rotate(90deg);
  }

  .channel-use-exchange-label {
    display: block;
    grid-column: 1 / -1;
    color: var(--navy);
    font-size: 0.76rem;
    font-weight: 900;
    text-align: center;
  }

  .hearing-section-nav,
  .choice-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hearing-priority-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .production-sample-slider {
    margin-top: 30px;
  }

  .production-sample-toolbar {
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 10px 10px 10px 12px;
  }

  .production-sample-guide {
    max-width: 142px;
    align-items: flex-start;
    font-size: 0.8rem;
    line-height: 1.55;
  }

  .production-sample-guide svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 2px;
  }

  .production-sample-navigation {
    gap: 6px;
  }

  .production-sample-count {
    min-width: 42px;
    font-size: 0.84rem;
  }

  .production-sample-controls button {
    width: 52px;
    height: 52px;
  }

  .production-sample-caption {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 15px 16px 16px;
  }

  .production-sample-caption div {
    display: grid;
    gap: 5px;
  }

  .production-sample-caption strong {
    font-size: 1.04rem;
  }

  .production-sample-caption p {
    font-size: 0.84rem;
  }

  .production-sample-note {
    font-size: 0.76rem;
    text-align: left;
  }

  .channel-use-grid {
    margin-top: 30px;
  }

  .channel-use-outcome {
    margin-top: 20px;
    font-size: 0.98rem;
  }

  .site-footer {
    padding-top: 28px;
    padding-bottom: calc(18px + env(safe-area-inset-bottom));
  }

  .brand img {
    width: 156px;
  }

  .hero-grid {
    min-height: 600px;
    padding: 36px 0 42px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(255, 253, 250, 0.98) 0%, rgba(255, 253, 250, 0.9) 58%, rgba(255, 253, 250, 0.28) 100%),
      linear-gradient(180deg, rgba(255, 253, 250, 0) 66%, var(--paper) 100%);
  }

  .hero-media img {
    object-position: 62% center;
  }

  .button {
    width: 100%;
  }

  .hero-facts,
  .traffic-flow,
  .target-groups,
  .choice-grid,
  .area-columns,
  .area-detail-grid,
  .area-chip-list,
  .area-step-list,
  .check-list.compact,
  .card-grid.four,
  .card-grid.three,
  .glossary-grid,
  .decision-grid,
  .reason-grid,
  .pricing-grid,
  .flow-list,
  .faq-grid,
  .footer-grid,
  .form-row.two {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 18px;
  }

  .hero-facts {
    gap: 30px;
  }

  .loss-strip {
    padding: 76px 0;
  }

  .traffic-flow {
    gap: 42px;
  }

  .target-visual img {
    min-height: 0;
  }

  .traffic-flow article:not(:last-child)::after {
    display: block;
    top: auto;
    right: 50%;
    bottom: -29px;
    transform: translateX(50%) rotate(135deg);
  }

  .section {
    padding: 82px 0;
  }

  .section-head .nowrap {
    white-space: normal;
  }

  .feature-card,
  .strategy-card,
  .price-card,
  .include-panel,
  .keiji-mark,
  .contact-form,
  .behavior-note,
  .support-panel,
  .support-note,
  .region-reason,
  .area-panel,
  .area-box,
  .area-step-list article,
  .area-link-panel,
  .glossary-grid article {
    padding: 22px;
  }

  .keiji-mark {
    min-height: 190px;
  }

  .area-hero {
    padding: 86px 0 70px;
  }

  .area-hero::before {
    background-image: url("./assets/images/hero-keiji-growth-no-person.webp?v=20260701-1655");
    background-position: 60% center;
    opacity: 0.34;
  }

  .area-hero::after {
    background:
      linear-gradient(90deg, rgba(255, 253, 250, 0.99) 0%, rgba(255, 253, 250, 0.92) 66%, rgba(255, 253, 250, 0.6) 100%),
      linear-gradient(180deg, rgba(255, 253, 250, 0) 64%, var(--paper) 100%);
  }

  .area-hero-actions {
    flex-direction: column;
  }

  .area-link-list a,
  .area-link-list span,
  .area-link-list.compact a {
    min-height: 36px;
    padding: 8px 11px;
    font-size: 0.84rem;
  }

  .price-card {
    padding: 42px 22px 22px;
  }

  .booking-demo-head {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 20px 22px;
  }

  .booking-demo-grid {
    gap: 12px;
    padding: 12px;
  }

  .booking-demo-progress {
    gap: 5px;
  }

  .booking-demo-progress span {
    gap: 5px;
    font-size: 0.68rem;
  }

  .booking-demo-progress span svg {
    width: 13px;
    height: 13px;
  }

  .booking-demo-services,
  .booking-demo-calendar,
  .booking-demo-contact {
    padding: 19px 16px 20px;
  }

  .booking-service-options {
    grid-template-columns: 1fr;
  }

  .booking-service-options span {
    min-height: 60px;
  }

  .booking-panel-heading,
  .booking-calendar-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .booking-calendar-table {
    min-width: 650px;
  }

  .booking-feature-points article {
    padding-left: 14px;
  }

  .booking-standard-note {
    padding: 20px;
  }

  .behavior-note {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .behavior-note svg {
    grid-row: auto;
  }

  .method-stack {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .method-stack article {
    padding: 26px 22px;
  }

  .method-stack article:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -29px;
    transform: translateX(50%) rotate(135deg);
  }

  .psychology .strategy-card,
  .flow-list li {
    grid-template-columns: 1fr;
  }

  .psychology .strategy-card small {
    grid-column: auto;
  }

  .story-list li {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .glossary-grid article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .glossary-grid small {
    grid-column: auto;
  }

  .form-submit {
    width: 100%;
  }

  .work-slider-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .work-slider-controls button {
    width: 40px;
    height: 40px;
  }

  .work-showcase {
    gap: 16px;
    margin-right: calc((100vw - 100%) / -2);
    padding-right: 18px;
  }

  .work-card {
    flex-basis: min(86vw, 360px);
  }

  .single-work .work-card {
    flex-basis: 100%;
  }

  .work-copy {
    padding: 22px;
  }

  .single-work .work-copy {
    padding: 24px;
  }

  .sample-card .work-copy {
    min-height: 0;
  }

  .hearing-form {
    gap: 28px;
    padding: 16px;
  }

  .hearing-form-section .section-head h2 {
    font-size: 1.48rem;
    white-space: nowrap;
  }

  .hearing-form-intro,
  .hearing-submit-panel {
    padding: 20px;
  }

  .hearing-section-nav,
  .choice-grid-three,
  .hearing-priority-grid {
    grid-template-columns: 1fr;
  }

  .hearing-section-nav a {
    min-height: 50px;
  }

  .hearing-form fieldset {
    padding: 20px 16px;
  }

  .hearing-form legend {
    padding: 0 6px;
    font-size: 1.08rem;
  }

  .hearing-form legend span {
    display: block;
    margin: 0 0 2px;
  }

  .hearing-question {
    padding: 24px 0;
  }

  .hearing-question-head {
    align-items: flex-start;
  }

  .hearing-question-head h3 {
    flex: 1 1 100%;
    font-size: 1.05rem;
  }

  .hearing-optional-block,
  .hearing-repeat-block {
    padding: 18px;
  }

  .hearing-priority-total {
    min-height: 50px;
  }
}

.booking-demo-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  margin-top: 34px;
  padding: 15px 18px;
  border: 1px solid rgba(20, 112, 90, 0.3);
  border-radius: 6px;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(19, 34, 53, 0.07);
  font-size: 1rem;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.booking-demo-toggle svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--green);
  transition: transform 180ms ease;
}

.booking-demo-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.booking-demo {
  display: none;
  margin-top: 16px;
}

.booking-demo.is-open {
  display: block;
}

.faq-category-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 64px;
  padding: 18px 44px 18px 28px;
  border: 0;
  color: var(--navy);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-category-toggle::before {
  position: absolute;
  top: 50%;
  left: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  content: "";
  transform: translateY(-50%);
}

.faq-category-toggle::after {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  content: "";
  transform: translateY(-65%) rotate(45deg);
  transition: transform 180ms ease;
}

.faq-grid {
  gap: 0;
  border-top: 1px solid rgba(20, 112, 90, 0.18);
}

.faq-group {
  display: block;
  border-bottom: 1px solid rgba(20, 112, 90, 0.18);
}

.faq-group h3 {
  display: block;
  margin: 0;
}

.faq-group h3::before {
  display: none;
}

.faq-group.is-open .faq-category-toggle::after {
  transform: translateY(-25%) rotate(225deg);
}

.faq-group:not(.is-open) > details {
  display: none;
}

.faq-group.is-open {
  padding-bottom: 16px;
}

.faq-group.is-open > details {
  margin-top: 10px;
}

@media (max-width: 680px) {
  .section {
    padding: 56px 0;
  }

  main h2[data-sp-title] {
    font-size: 1.3rem;
    line-height: 1.4;
    white-space: nowrap;
    word-break: keep-all;
  }

  .hero-facts {
    gap: 0;
    overflow: hidden;
    margin-top: 30px;
    border: 1px solid rgba(18, 46, 89, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 30px rgba(19, 34, 53, 0.08);
  }

  .hero-facts a,
  .hero-facts a:first-child,
  .hero-facts a:last-child {
    grid-template-columns: 40px 56px minmax(0, 1fr);
    min-height: 72px;
    align-items: center;
    align-content: center;
    justify-items: start;
    gap: 10px;
    padding: 11px 34px 11px 12px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: left;
    transform: none;
  }

  .hero-facts a:last-child {
    border-bottom: 0;
  }

  .hero-facts a:hover,
  .hero-facts a:focus-visible {
    box-shadow: none;
    transform: none;
  }

  .hero-facts a::after {
    top: 50%;
    right: 16px;
    bottom: auto;
    transform: translateY(-50%) rotate(45deg);
  }

  .hero-facts a > svg,
  .hero-fact-icon,
  .hero-facts a:last-child > svg,
  .hero-facts a:last-child .hero-fact-icon {
    position: static;
    grid-column: 1;
    width: 36px;
    height: 36px;
    padding: 8px;
    border-width: 1px;
    box-shadow: none;
    transform: none;
  }

  .hero-fact-icon {
    padding: 0;
    font-size: 1.05rem;
  }

  .hero-fact-label {
    grid-column: 2;
    margin: 0;
    font-size: 0.7rem;
  }

  .hero-facts strong {
    grid-column: 3;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .loss-strip {
    padding: 56px 0;
  }

  .traffic-flow {
    gap: 0;
    margin-top: 30px;
    padding-left: 0;
    border-top: 1px solid rgba(20, 112, 90, 0.2);
    border-bottom: 1px solid rgba(20, 112, 90, 0.2);
  }

  .traffic-flow::before {
    display: none;
  }

  .traffic-flow article {
    position: relative;
    min-height: 138px;
    overflow: hidden;
    padding: 28px 0 28px 68px;
    border: 0;
    border-bottom: 1px solid rgba(20, 112, 90, 0.18);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .traffic-flow article:last-child {
    border-bottom: 0;
  }

  .traffic-flow article::before {
    display: none;
  }

  .traffic-flow article:not(:last-child)::after {
    display: none;
  }

  .traffic-flow svg,
  .traffic-flow-chidori {
    position: absolute;
    top: 50%;
    right: auto;
    left: 0;
    width: 60px;
    height: 60px;
    color: var(--green);
    background-color: var(--green);
    opacity: 0.12;
    pointer-events: none;
    transform: translateY(-50%);
  }

  .traffic-flow svg {
    background: transparent;
  }

  .traffic-flow h3 {
    margin: 0;
    font-size: 1.08rem;
  }

  .traffic-flow p {
    margin-top: 8px;
  }

  .target-groups {
    gap: 0;
    margin-top: 28px;
    border-top: 1px solid rgba(20, 112, 90, 0.2);
    border-bottom: 1px solid rgba(20, 112, 90, 0.2);
  }

  .target-groups article {
    position: relative;
    display: block;
    min-height: 138px;
    overflow: hidden;
    padding: 28px 0 28px 68px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .target-groups article:last-child {
    border-bottom: 0;
  }

  .target-groups article::after {
    display: none;
  }

  .target-groups svg {
    position: absolute;
    top: 50%;
    right: auto;
    left: 0;
    width: 60px;
    height: 60px;
    margin: 0;
    opacity: 0.12;
    pointer-events: none;
    transform: translateY(-50%);
  }

  .target-groups h3 {
    margin: 0;
    font-size: 1.08rem;
  }

  .target-groups p {
    margin-top: 8px;
  }

  .promise {
    padding-bottom: 40px;
  }

  .includes {
    padding-top: 40px;
  }

  .price-reason,
  .after-support {
    padding-bottom: 40px;
  }

  #plans,
  .booking-feature {
    padding-top: 40px;
  }

  .faq,
  .contact {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .promise .section-visual {
    display: none;
  }

  .region-reason {
    gap: 22px;
    margin-top: 30px;
    padding: 4px 0 4px 20px;
    border: 0;
    border-left: 4px solid var(--green);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .region-reason h3 {
    font-size: 1.22rem;
  }

  .area-panel {
    gap: 20px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .area-summary {
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .area-summary article {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 14px;
    padding: 22px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
  }

  .area-summary svg {
    grid-row: 1 / span 2;
    width: 27px;
    height: 27px;
    margin-top: 2px;
  }

  .area-summary h4 {
    grid-column: 2;
    margin: 0;
    font-size: 1.08rem;
  }

  .area-summary p {
    grid-column: 2;
    margin-top: 7px;
  }

  .reason-grid {
    gap: 0;
    margin-top: 30px;
    border-top: 1px solid rgba(188, 142, 50, 0.32);
  }

  .reason-grid article {
    position: relative;
    overflow: hidden;
    padding: 28px 58px 28px 0;
    border: 0;
    border-bottom: 1px solid rgba(188, 142, 50, 0.32);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .reason-grid svg {
    position: absolute;
    top: 18px;
    right: 0;
    width: 76px;
    height: 76px;
    margin: 0;
    opacity: 0.09;
  }

  .reason-grid h3,
  .reason-grid p {
    position: relative;
    z-index: 1;
  }

  .reason-grid h3 {
    font-size: 1.16rem;
  }

  .support-panel {
    gap: 0;
    padding: 28px 22px;
    border-left-width: 4px;
    box-shadow: none;
  }

  .support-note {
    margin-top: 24px;
    padding: 24px 0 0;
    border: 0;
    border-top: 1px solid rgba(20, 112, 90, 0.2);
    border-radius: 0;
    background: transparent;
  }

  .flow-list {
    position: relative;
    gap: 0;
    padding-left: 30px;
  }

  .flow-list::before {
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 7px;
    width: 2px;
    background: rgba(20, 112, 90, 0.28);
    content: "";
  }

  .flow-list li {
    position: relative;
    gap: 6px;
    padding: 0 0 30px 16px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .flow-list li:last-child {
    padding-bottom: 0;
  }

  .flow-list li::before {
    position: absolute;
    top: 8px;
    left: -29px;
    width: 14px;
    height: 14px;
    border: 3px solid var(--paper);
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 1px rgba(20, 112, 90, 0.28);
    content: "";
  }

  .flow-list strong {
    font-size: 1.12rem;
  }

  .booking-demo-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 58px;
    margin-top: 30px;
    padding: 15px 18px;
    border: 1px solid rgba(20, 112, 90, 0.3);
    border-radius: var(--radius);
    color: var(--navy);
    background: var(--white);
    box-shadow: 0 10px 24px rgba(19, 34, 53, 0.07);
    font-size: 1rem;
    font-weight: 900;
    text-align: left;
  }

  .booking-demo-toggle svg {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    color: var(--green);
    transition: transform 180ms ease;
  }

  .booking-demo-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
  }

  .booking-demo {
    display: none;
    margin-top: 16px;
  }

  .booking-demo.is-open {
    display: block;
  }

  .booking-feature-points {
    margin-top: 30px;
  }

  .faq-grid {
    gap: 0;
    margin-top: 30px;
    border-top: 1px solid rgba(20, 112, 90, 0.18);
  }

  .faq-group {
    display: block;
    border-bottom: 1px solid rgba(20, 112, 90, 0.18);
  }

  .faq-group h3 {
    display: block;
    margin: 0;
  }

  .faq-group h3::before {
    display: none;
  }

  .faq-category-toggle {
    position: relative;
    gap: 12px;
    min-height: 60px;
    padding: 17px 34px 17px 24px;
    color: var(--navy);
    cursor: pointer;
  }

  .faq-category-toggle::before {
    position: absolute;
    top: 50%;
    left: 4px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    content: "";
    transform: translateY(-50%);
  }

  .faq-category-toggle::after {
    position: absolute;
    top: 50%;
    right: 8px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--green);
    border-bottom: 2px solid var(--green);
    content: "";
    transform: translateY(-65%) rotate(45deg);
    transition: transform 180ms ease;
  }

  .faq-group.is-open .faq-category-toggle::after {
    transform: translateY(-25%) rotate(225deg);
  }

  .faq-group:not(.is-open) > details {
    display: none;
  }

  .faq-group.is-open {
    padding-bottom: 14px;
  }

  .faq-group.is-open > details {
    margin-top: 10px;
  }

  .faq details {
    padding: 18px 20px;
  }

}

@media (max-width: 680px) {
  #diagnosis,
  #production-samples,
  #channels,
  #price,
  #support,
  #print-samples,
  #work,
  #faq {
    color: var(--ink);
    background: #e8eef1;
  }

  #target,
  #contents,
  #service,
  #plans,
  #flow,
  #booking-form,
  #keiji-story,
  #contact {
    color: var(--ink);
    background: var(--white);
  }

  #production-samples {
    border-top: 1px solid rgba(18, 46, 89, 0.08);
    border-bottom: 1px solid rgba(18, 46, 89, 0.08);
  }

  #channels .section-head h2,
  #flow .section-head h2,
  #work .section-head h2,
  #flow .flow-list strong {
    color: var(--navy);
  }

  #channels .section-head > p,
  #channels .channel-use-outcome,
  #flow .section-head > p,
  #flow .flow-list p,
  #work .section-head p,
  #work .work-slider-head p {
    color: var(--muted);
  }

  #channels .channel-use-grid {
    border-color: var(--line);
    box-shadow: 0 14px 34px rgba(19, 34, 53, 0.08);
  }

  #flow .flow-visual {
    border-color: rgba(20, 112, 90, 0.16);
    box-shadow: 0 14px 38px rgba(19, 34, 53, 0.08);
  }

  #flow .flow-list::before {
    background: rgba(20, 112, 90, 0.28);
  }

  #flow .flow-list li::before {
    border-color: var(--white);
    background: var(--green);
    box-shadow: 0 0 0 1px rgba(20, 112, 90, 0.28);
  }

  #work .work-slider-controls button {
    border-color: rgba(18, 46, 89, 0.18);
    color: var(--navy);
    background: var(--white);
  }

  #work .work-card {
    border-color: rgba(18, 46, 89, 0.14);
    box-shadow: 0 18px 46px rgba(19, 34, 53, 0.14);
  }

  .production-samples .section-head > p:last-child {
    color: var(--navy);
    font-weight: 700;
  }

  .plan-mobile-intro {
    display: block;
    margin: 18px 0 0;
    padding: 14px 15px;
    border-left: 4px solid var(--gold);
    color: var(--navy);
    background: #fffaf0;
    line-height: 1.75;
  }

  .plan-desktop-copy {
    display: none;
  }

  .plan-mobile-intro strong,
  .plan-mobile-intro span {
    display: block;
    letter-spacing: 0;
  }

  .plan-mobile-intro strong {
    font-size: 0.94rem;
    font-weight: 900;
  }

  .plan-mobile-intro span {
    margin-top: 7px;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 700;
  }

  .plan-selector {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    margin-top: 26px;
    padding: 4px;
    border: 1px solid rgba(18, 46, 89, 0.14);
    border-radius: 8px;
    background: #e9f0ee;
  }

  .plan-selector button {
    min-width: 0;
    min-height: 58px;
    padding: 8px 3px;
    border: 0;
    border-radius: 6px;
    color: var(--navy);
    background: transparent;
    cursor: pointer;
    font: inherit;
    text-align: center;
  }

  .plan-selector button span,
  .plan-selector button strong {
    display: block;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .plan-selector button span {
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1.2;
  }

  .plan-selector button strong {
    margin-top: 5px;
    font-size: 0.8rem;
    font-weight: 900;
    line-height: 1.2;
  }

  .plan-selector button[aria-selected="true"] {
    color: var(--white);
    background: var(--green);
    box-shadow: 0 6px 16px rgba(20, 112, 90, 0.22);
  }

  #plans .pricing-grid {
    margin-top: 32px;
  }

  #plans .price-card {
    min-height: 300px;
    padding: 42px 22px 24px;
    border-radius: 8px;
    box-shadow: 0 16px 38px rgba(19, 34, 53, 0.1);
  }

  #plans .price-card[hidden] {
    display: none;
  }

  #plans .price-card .button {
    width: 100%;
  }

  #plans .recommend {
    top: -30px;
  }

  .plan-compare-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: calc(100% - 36px);
    min-height: 58px;
    margin-top: 22px;
    padding: 15px 17px;
    border: 1px solid rgba(18, 46, 89, 0.2);
    border-radius: 8px;
    color: var(--navy);
    background: var(--white);
    box-shadow: 0 10px 24px rgba(19, 34, 53, 0.07);
    cursor: pointer;
    font: inherit;
    font-size: 0.94rem;
    font-weight: 900;
    text-align: left;
  }

  .plan-compare-toggle svg {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    color: var(--green);
    transition: transform 180ms ease;
  }

  .plan-compare-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
  }

  #plan-comparison {
    margin-top: 14px;
  }
}

@media (min-width: 681px) {
  #diagnosis,
  #channels,
  #contents,
  #booking-form,
  #plans,
  #support,
  #work,
  #faq {
    color: var(--ink);
    background: #e8eef1;
  }

  #target,
  #service,
  #production-samples,
  #price,
  #print-samples,
  #flow,
  #keiji-story,
  #contact {
    color: var(--ink);
    background: var(--white);
  }

  #work .section-head h2 {
    color: var(--navy);
  }

  #work .section-head p,
  #work .work-slider-head p {
    color: var(--muted);
  }

  #work .work-slider-controls button {
    border-color: rgba(18, 46, 89, 0.18);
    color: var(--navy);
    background: var(--white);
  }

  #work .work-showcase {
    scrollbar-color: rgba(18, 46, 89, 0.35) rgba(18, 46, 89, 0.08);
  }

  #work .work-card {
    border-color: rgba(18, 46, 89, 0.14);
    box-shadow: 0 18px 46px rgba(19, 34, 53, 0.14);
  }
}

/* Pictogram system: explanatory groups, compact lists, and trust cues. */
.home-page {
  --pictogram-color: var(--green);
  --pictogram-line: rgba(20, 112, 90, 0.18);
  --pictogram-wash: rgba(20, 112, 90, 0.08);
}

.home-page .icon-list li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.home-page .icon-list svg {
  box-sizing: border-box;
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 7px;
  border-radius: 8px;
  color: var(--pictogram-color);
  background: var(--pictogram-wash);
  stroke-width: 2.1;
}

.home-page .support-note > svg {
  box-sizing: border-box;
  width: 46px;
  height: 46px;
  padding: 10px;
  border-radius: 10px;
  color: var(--pictogram-color);
  background: var(--pictogram-wash);
  stroke-width: 2.1;
}

@media (min-width: 681px) {
  .home-page :is(.traffic-flow, .target-groups, .area-summary, .booking-feature-points, .reason-grid) article {
    position: relative;
    display: block;
    min-width: 0;
    min-height: 0;
    padding: 28px;
    border: 1px solid var(--pictogram-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 28px rgba(19, 34, 53, 0.06);
  }

  .home-page :is(.target-groups, .booking-feature-points, .reason-grid) {
    gap: 18px;
  }

  .home-page .target-groups article::after {
    display: none;
  }

  .home-page .booking-feature-points article {
    border-left: 1px solid var(--pictogram-line);
  }

  .home-page .reason-grid article {
    border-top: 1px solid var(--pictogram-line);
  }

  .home-page :is(.traffic-flow, .target-groups, .area-summary, .booking-feature-points, .reason-grid) article > svg {
    display: block;
    width: 34px;
    height: 34px;
    margin: 0 0 16px;
    color: var(--pictogram-color);
    stroke-width: 2.1;
  }

  .home-page .traffic-flow-chidori {
    width: 38px;
    height: 34px;
    margin: 0 0 16px;
    background-color: var(--pictogram-color);
  }

  .home-page :is(.traffic-flow, .target-groups, .booking-feature-points, .reason-grid) h3,
  .home-page .area-summary h4 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(1.12rem, 1.4vw, 1.28rem);
    line-height: 1.5;
  }

  .home-page :is(.traffic-flow, .target-groups, .area-summary, .booking-feature-points, .reason-grid) article p {
    margin: 10px 0 0;
  }
}

@media (max-width: 680px) {
  .home-page :is(.traffic-flow, .target-groups, .area-summary, .booking-feature-points, .reason-grid) {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--pictogram-line);
    border-bottom: 1px solid var(--pictogram-line);
  }

  .home-page :is(.traffic-flow, .target-groups, .area-summary, .booking-feature-points, .reason-grid) article {
    position: relative;
    display: block;
    min-height: 138px;
    overflow: hidden;
    padding: 28px 0 28px 68px;
    border: 0;
    border-bottom: 1px solid var(--pictogram-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-page :is(.traffic-flow, .target-groups, .area-summary, .booking-feature-points, .reason-grid) article:last-child {
    border-bottom: 0;
  }

  .home-page .target-groups article::after,
  .home-page .traffic-flow article::before {
    display: none;
  }

  .home-page :is(.traffic-flow, .target-groups, .area-summary, .booking-feature-points, .reason-grid) article > svg,
  .home-page .traffic-flow-chidori {
    position: absolute;
    top: 50%;
    right: auto;
    left: 0;
    width: 60px;
    height: 60px;
    margin: 0;
    padding: 0;
    color: var(--pictogram-color);
    background: transparent;
    opacity: 0.12;
    pointer-events: none;
    transform: translateY(-50%);
  }

  .home-page .traffic-flow-chidori {
    background-color: var(--pictogram-color);
  }

  .home-page :is(.traffic-flow, .target-groups, .area-summary, .booking-feature-points, .reason-grid) h3,
  .home-page .area-summary h4,
  .home-page :is(.traffic-flow, .target-groups, .area-summary, .booking-feature-points, .reason-grid) article p {
    position: relative;
    z-index: 1;
  }

  .home-page :is(.traffic-flow, .target-groups, .booking-feature-points, .reason-grid) h3,
  .home-page .area-summary h4 {
    margin: 0;
    color: var(--navy);
    font-size: 1.08rem;
    line-height: 1.5;
  }

  .home-page :is(.traffic-flow, .target-groups, .area-summary, .booking-feature-points, .reason-grid) article p {
    margin: 8px 0 0;
  }

  .home-page .booking-feature-points article,
  .home-page .reason-grid article {
    border-left: 0;
  }
}

/* Editorial brand system: quiet Japanese typography, two section colors, and gold rules. */
.home-page,
.sample-hero-page {
  --editorial-white: #fffdfa;
  --editorial-tint: #e8eef1;
  --editorial-gold-line: rgba(188, 142, 50, 0.5);
  --editorial-serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
}

:is(.home-page, .sample-hero-page) .site-header {
  position: sticky;
  inset: auto;
  top: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 250, 1) 0%, rgba(255, 253, 250, 0.99) 30%, rgba(255, 253, 250, 0.94) 39%, rgba(255, 253, 250, 0.72) 45%, rgba(255, 253, 250, 0.32) 51%, rgba(255, 253, 250, 0) 60%),
    linear-gradient(90deg, rgba(232, 238, 241, 0) 20%, rgba(232, 238, 241, 0.36) 38%, rgba(232, 238, 241, 0.86) 56%, var(--editorial-tint) 72%),
    #f6f3ed;
  border-bottom-color: rgba(18, 46, 89, 0.12);
  backdrop-filter: none;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease;
}

:is(.home-page, .sample-hero-page) .site-header.is-scrolled,
:is(.home-page, .sample-hero-page).nav-open .site-header {
  background: var(--editorial-white);
  box-shadow: 0 8px 28px rgba(19, 34, 53, 0.08);
}

:is(.home-page, .sample-hero-page) .desktop-nav a {
  position: relative;
  font-size: 0.86rem;
}

:is(.home-page, .sample-hero-page) .desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

:is(.home-page, .sample-hero-page) .desktop-nav a:hover::after,
:is(.home-page, .sample-hero-page) .desktop-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

:is(.home-page, .sample-hero-page) .hero--samples {
  min-height: min(760px, 78svh);
  background: #f6f3ed;
}

@media (min-width: 681px) {
  :is(.home-page, .sample-hero-page) .hero--samples {
    min-height: calc(100svh - 73px);
  }
}

:is(.home-page, .sample-hero-page) .hero-sample-stage,
:is(.home-page, .sample-hero-page) .hero-sample-slide,
:is(.home-page, .sample-hero-page) .hero-sample-slide picture,
:is(.home-page, .sample-hero-page) .hero-sample-slide img {
  position: absolute;
  inset: 0;
}

:is(.home-page, .sample-hero-page) .hero-sample-stage {
  z-index: -2;
  overflow: hidden;
}

:is(.home-page, .sample-hero-page) .hero-sample-stage::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(90deg, rgba(232, 238, 241, 0) 20%, rgba(232, 238, 241, 0.36) 38%, rgba(232, 238, 241, 0.86) 56%, var(--editorial-tint) 72%);
  content: "";
}

:is(.home-page, .sample-hero-page) .hero-sample-stage::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 253, 250, 0) 68%, var(--editorial-white) 100%);
  content: "";
  pointer-events: none;
}

:is(.home-page, .sample-hero-page) .hero-sample-slide {
  z-index: 1;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 0, 0);
  pointer-events: none;
  backface-visibility: hidden;
  will-change: opacity, transform;
  transition:
    opacity 1600ms ease;
}

:is(.home-page, .sample-hero-page) .hero-sample-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

:is(.home-page, .sample-hero-page) .hero-sample-slide.is-entering-right,
:is(.home-page, .sample-hero-page) .hero-sample-slide.is-entering-left,
:is(.home-page, .sample-hero-page) .hero-sample-slide.is-leaving-right,
:is(.home-page, .sample-hero-page) .hero-sample-slide.is-leaving-left {
  visibility: visible;
}

:is(.home-page, .sample-hero-page) .hero-sample-slide.is-entering-right,
:is(.home-page, .sample-hero-page) .hero-sample-slide.is-leaving-right {
  transform: translate3d(0, 0, 0);
}

:is(.home-page, .sample-hero-page) .hero-sample-slide.is-entering-left,
:is(.home-page, .sample-hero-page) .hero-sample-slide.is-leaving-left {
  transform: translate3d(0, 0, 0);
}

:is(.home-page, .sample-hero-page) .hero-sample-slide.is-entering-right,
:is(.home-page, .sample-hero-page) .hero-sample-slide.is-entering-left,
:is(.home-page, .sample-hero-page) .hero-sample-slide.is-leaving-right,
:is(.home-page, .sample-hero-page) .hero-sample-slide.is-leaving-left {
  opacity: 0;
}

:is(.home-page, .sample-hero-page) .hero-sample-slide picture {
  display: block;
}

:is(.home-page, .sample-hero-page) .hero-sample-slide img {
  right: 1vw;
  left: auto;
  width: min(66vw, 1000px);
  height: 100%;
  object-fit: contain;
  object-position: right center;
  filter: drop-shadow(0 24px 42px rgba(19, 34, 53, 0.14));
}

:is(.home-page, .sample-hero-page) .hero-shade {
  background: linear-gradient(90deg, rgba(255, 253, 250, 1) 0%, rgba(255, 253, 250, 0.99) 30%, rgba(255, 253, 250, 0.94) 39%, rgba(255, 253, 250, 0.72) 45%, rgba(255, 253, 250, 0.32) 51%, rgba(255, 253, 250, 0) 60%);
}

:is(.home-page, .sample-hero-page) .hero-grid {
  position: relative;
  z-index: 1;
  min-height: inherit;
  padding: 52px 0 86px;
}

:is(.home-page, .sample-hero-page) .hero-copy {
  max-width: 550px;
}

:is(.home-page, .sample-hero-page) .hero h1,
.home-page .section-head h2,
.home-page .loss-head h2,
.home-page .keiji-story-copy h2,
.home-page .contact-copy h2,
.home-page .service-owner-copy h3 {
  font-family: var(--editorial-serif);
  font-weight: 700;
}

:is(.home-page, .sample-hero-page) .hero h1 {
  max-width: 10em;
  font-size: clamp(2.1rem, 3.25vw, 3.45rem);
  line-height: 1.13;
}

:is(.home-page, .sample-hero-page) .hero-lead {
  max-width: 550px;
  margin-top: 22px;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.85;
}

:is(.home-page, .sample-hero-page) .hero-lead-line {
  display: block;
  white-space: nowrap;
}

:is(.home-page, .sample-hero-page) .hero-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

:is(.home-page, .sample-hero-page) .hero-summary li {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 4px 14px;
  border-left: 1px solid var(--editorial-gold-line);
}

:is(.home-page, .sample-hero-page) .hero-summary li:first-child {
  padding-left: 0;
  border-left: 0;
}

:is(.home-page, .sample-hero-page) .hero-summary span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
}

:is(.home-page, .sample-hero-page) .hero-summary strong {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.5;
}

:is(.home-page, .sample-hero-page) .hero-consult-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  padding: 10px 18px;
  border: 1px solid var(--green);
  border-radius: 6px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 26px rgba(20, 112, 90, 0.18);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

:is(.home-page, .sample-hero-page) .hero-consult-cta:hover,
:is(.home-page, .sample-hero-page) .hero-consult-cta:focus-visible {
  background: #0f654f;
  box-shadow: 0 15px 32px rgba(20, 112, 90, 0.24);
  transform: translateY(-1px);
}

:is(.home-page, .sample-hero-page) .hero-consult-cta svg {
  width: 17px;
  height: 17px;
}

:is(.home-page, .sample-hero-page) .hero-sample-controls {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 28px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  pointer-events: none;
}

@media (min-width: 681px) {
  :is(.home-page, .sample-hero-page) .hero-sample-controls {
    right: 0;
    padding-right: clamp(72px, 7vw, 104px);
  }
}

:is(.home-page, .sample-hero-page) .hero-sample-status,
:is(.home-page, .sample-hero-page) .hero-sample-actions {
  pointer-events: auto;
}

:is(.home-page, .sample-hero-page) .hero-sample-nav {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding-left: 12px;
  border-top: 1px solid rgba(188, 142, 50, 0.58);
  border-bottom: 1px solid rgba(18, 46, 89, 0.12);
  background: rgba(255, 253, 250, 0.78);
  box-shadow: 0 8px 24px rgba(19, 34, 53, 0.07);
  backdrop-filter: blur(10px);
  pointer-events: auto;
}

:is(.home-page, .sample-hero-page) .hero-sample-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0 12px 0 0;
  color: var(--navy);
  white-space: nowrap;
}

:is(.home-page, .sample-hero-page) .hero-sample-status > span {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

:is(.home-page, .sample-hero-page) .hero-sample-status strong {
  font-family: var(--editorial-serif);
  font-size: 0.84rem;
}

:is(.home-page, .sample-hero-page) .hero-sample-status small {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
}

:is(.home-page, .sample-hero-page) .hero-sample-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 2px 4px 2px 10px;
  border-left: 1px solid rgba(18, 46, 89, 0.1);
}

:is(.home-page, .sample-hero-page) .hero-sample-actions > button {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  transition:
    color 160ms ease,
    background-color 160ms ease;
}

:is(.home-page, .sample-hero-page) .hero-sample-actions > button:hover,
:is(.home-page, .sample-hero-page) .hero-sample-actions > button:focus-visible {
  color: var(--gold);
  background: rgba(18, 46, 89, 0.06);
}

:is(.home-page, .sample-hero-page) .hero-sample-actions svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.6;
}

:is(.home-page, .sample-hero-page) .hero-sample-dots {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 3px;
}

:is(.home-page, .sample-hero-page) .hero-sample-dots button {
  width: 14px;
  height: 2px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(18, 46, 89, 0.28);
  cursor: pointer;
  transition:
    width 180ms ease,
    background-color 180ms ease;
}

:is(.home-page, .sample-hero-page) .hero-sample-dots button.is-active {
  width: 24px;
  background: var(--gold);
}

.home-page .section,
.home-page .loss-strip {
  padding: clamp(88px, 8vw, 124px) 0;
}

.home-page :is(.section-head, .loss-head) {
  max-width: var(--container);
}

.home-page :is(.section-head, .loss-head) h2,
.home-page .keiji-story-copy h2,
.home-page .contact-copy h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3.25vw, 3.05rem);
  line-height: 1.4;
}

.home-page .section-kicker,
.home-page .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.08em;
}

.home-page .section-kicker::before,
.home-page .eyebrow::before {
  width: 30px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--gold);
  content: "";
}

.home-page .section-head > p:not(.section-kicker),
.home-page .loss-head > p:not(.section-kicker),
.home-page .keiji-story-copy p:not(.section-kicker),
.home-page .service-owner-copy > p:not(.section-kicker, .service-owner-name) {
  max-width: 920px;
  font-size: 1.04rem;
  line-height: 2;
}

.home-page #diagnosis,
.home-page #channels,
.home-page #contents,
.home-page #price,
.home-page #plans,
.home-page #flow,
.home-page #keiji-story,
.home-page #contact {
  color: var(--ink);
  background: var(--editorial-tint);
}

.home-page #target,
.home-page #service,
.home-page #booking-form,
.home-page #support,
.home-page #work,
.home-page #faq {
  color: var(--ink);
  background: var(--editorial-white);
}

.home-page #work .section-head h2,
.home-page #work .section-head p,
.home-page #work .work-slider-head p {
  color: var(--navy);
}

.home-page .target-visual {
  margin-top: 52px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-page .related-link-band {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.42fr);
  align-items: center;
  gap: clamp(28px, 4vw, 60px);
  margin-top: 42px;
  padding: 24px 0;
  border-top: 1px solid var(--editorial-gold-line);
  border-bottom: 1px solid var(--editorial-gold-line);
}

.home-page .related-link-band-copy p {
  margin: 0;
}

.home-page .related-link-band-copy .mini-label {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.home-page .related-link-band-copy p:last-child {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.home-page .related-link-band-copy strong {
  color: var(--navy);
}

.home-page .related-link-band-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid rgba(18, 46, 89, 0.13);
}

.home-page .related-link-band-links a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 18px;
  border-right: 1px solid rgba(18, 46, 89, 0.13);
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  transition:
    color 160ms ease,
    background-color 160ms ease;
}

.home-page .related-link-band-links a:hover,
.home-page .related-link-band-links a:focus-visible {
  color: var(--green);
  background: rgba(255, 255, 255, 0.64);
}

.home-page .related-link-band-links svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--gold);
}

@media (min-width: 681px) {
  .home-page :is(.traffic-flow, .target-groups, .area-summary, .booking-feature-points, .reason-grid) article {
    min-height: 0;
    padding: 28px 12px 22px 0;
    border: 0;
    border-top: 1px solid var(--editorial-gold-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-page :is(.traffic-flow, .target-groups, .area-summary, .booking-feature-points, .reason-grid) article > svg,
  .home-page .traffic-flow-chidori {
    width: 30px;
    height: 30px;
    margin-bottom: 18px;
    color: var(--navy);
  }

  .home-page :is(.traffic-flow, .target-groups, .area-summary, .booking-feature-points, .reason-grid) article > svg {
    background-color: transparent;
  }

  .home-page .traffic-flow-chidori {
    background-color: var(--navy);
  }
}

.home-page .channel-use-grid {
  border: 0;
  border-top: 1px solid var(--editorial-gold-line);
  border-bottom: 1px solid var(--editorial-gold-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .channel-use-arrows {
  border-color: rgba(188, 142, 50, 0.32);
}

.home-page :is(.choice-card, .price-card, .support-card, .work-card, .booking-demo-shell) {
  border-radius: 4px;
}

.home-page .price-card {
  border-color: rgba(18, 46, 89, 0.16);
  box-shadow: 0 16px 34px rgba(19, 34, 53, 0.08);
}

.home-page .price-card.featured {
  border-color: rgba(20, 112, 90, 0.66);
  box-shadow: 0 18px 40px rgba(20, 112, 90, 0.12);
}

.home-page .price-card h3 {
  font-family: var(--editorial-serif);
}

.home-page .button-primary,
.home-page .form-submit {
  border-color: var(--green);
  background: var(--green);
}

.home-page .work-slider-controls button {
  border-color: rgba(18, 46, 89, 0.2);
  color: var(--navy);
  background: var(--white);
}

.home-page .work-card {
  border-color: rgba(18, 46, 89, 0.14);
  box-shadow: 0 14px 34px rgba(19, 34, 53, 0.1);
}

.home-page .keiji-story {
  background: var(--editorial-tint);
}

.home-page .service-owner {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: end;
  gap: clamp(44px, 7vw, 94px);
  margin-top: 78px;
  padding-top: 64px;
  border-top: 1px solid var(--editorial-gold-line);
}

.home-page .service-owner-portrait {
  align-self: end;
  height: 520px;
  margin: 0;
  overflow: hidden;
}

.home-page .service-owner-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 83%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 83%, transparent 100%);
}

.home-page .service-owner-copy {
  padding-bottom: 44px;
}

.home-page .service-owner-copy h3 {
  max-width: 18em;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1.5;
}

.home-page .service-owner-name {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 2px 18px;
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(18, 46, 89, 0.16);
}

.home-page .service-owner-name span {
  grid-row: 1 / 3;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.home-page .service-owner-name strong {
  color: var(--navy);
  font-family: var(--editorial-serif);
  font-size: 1.5rem;
}

.home-page .service-owner-name small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.home-page .faq details {
  border-radius: 0;
  box-shadow: none;
}

@media (min-width: 681px) {
  .home-page .faq-grid {
    margin-top: 46px;
  }

  .home-page .faq-category-toggle {
    min-height: 72px;
    padding: 20px 54px 20px 34px;
    font-family: var(--editorial-serif);
    font-size: 1.28rem;
  }

  .home-page .faq-category-toggle::before {
    left: 8px;
  }

  .home-page .faq-category-toggle::after {
    right: 18px;
  }
}

@media (max-width: 680px) {
  :is(.home-page, .sample-hero-page) .site-header {
    background: var(--editorial-white);
  }

  :is(.home-page, .sample-hero-page) .hero--samples {
    min-height: 695px;
  }

  :is(.home-page, .sample-hero-page) .hero-grid {
    min-height: 695px;
    align-items: start;
    padding: 33px 0 318px;
  }

  :is(.home-page, .sample-hero-page) .hero-copy {
    max-width: none;
  }

  :is(.home-page, .sample-hero-page) .hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9.2vw, 2.35rem);
    line-height: 1.22;
  }

  :is(.home-page, .sample-hero-page) .hero h1 .hero-title-line,
  :is(.home-page, .sample-hero-page) .hero h1 .nowrap {
    white-space: nowrap;
  }

  :is(.home-page, .sample-hero-page) .hero-lead {
    max-width: 32em;
    margin-top: 20px;
    font-size: 0.98rem;
    line-height: 1.85;
  }

  :is(.home-page, .sample-hero-page) .hero-lead-line {
    display: inline;
    white-space: normal;
  }

  :is(.home-page, .sample-hero-page) .hero-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
    padding: 14px 0;
    border-top: 1px solid var(--editorial-gold-line);
    border-bottom: 1px solid var(--editorial-gold-line);
  }

  :is(.home-page, .sample-hero-page) .hero-summary li,
  :is(.home-page, .sample-hero-page) .hero-summary li:first-child {
    justify-items: center;
    padding: 0 8px;
    border-left: 1px solid rgba(188, 142, 50, 0.32);
    text-align: center;
  }

  :is(.home-page, .sample-hero-page) .hero-summary li:first-child {
    border-left: 0;
  }

  :is(.home-page, .sample-hero-page) .hero-summary strong {
    font-size: 0.72rem;
    line-height: 1.45;
  }

  :is(.home-page, .sample-hero-page) .hero-consult-cta {
    min-height: 44px;
    margin-top: 16px;
    padding: 9px 16px;
    font-size: 0.86rem;
  }

  :is(.home-page, .sample-hero-page) .hero-sample-stage {
    top: auto;
    height: 330px;
  }

  :is(.home-page, .sample-hero-page) .hero-sample-stage::after {
    background: linear-gradient(180deg, var(--editorial-white) 0%, rgba(255, 253, 250, 0.12) 22%, rgba(255, 253, 250, 0) 72%);
  }

  :is(.home-page, .sample-hero-page) .hero-sample-stage::before {
    inset: 0;
    background: linear-gradient(180deg, rgba(232, 238, 241, 0) 0%, rgba(232, 238, 241, 0.58) 20%, var(--editorial-tint) 44%);
  }

  :is(.home-page, .sample-hero-page) .hero-sample-slide img {
    right: -6%;
    width: 112%;
    height: 100%;
    object-position: center bottom;
    filter: drop-shadow(0 15px 26px rgba(19, 34, 53, 0.16));
  }

  :is(.home-page, .sample-hero-page) .hero-shade {
    background: linear-gradient(180deg, rgba(255, 253, 250, 0.98) 0%, rgba(255, 253, 250, 0.97) 55%, rgba(255, 253, 250, 0.18) 78%, rgba(255, 253, 250, 0) 100%);
  }

  :is(.home-page, .sample-hero-page) .hero-sample-controls {
    right: 14px;
    bottom: 14px;
    left: 14px;
    justify-content: flex-end;
    gap: 0;
  }

  :is(.home-page, .sample-hero-page) .hero-sample-status {
    gap: 6px;
    padding-right: 10px;
  }

  :is(.home-page, .sample-hero-page) .hero-sample-nav {
    min-height: 40px;
    padding-left: 10px;
  }

  :is(.home-page, .sample-hero-page) .hero-sample-status strong {
    max-width: 6.5em;
    overflow: hidden;
    font-size: 0.8rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  :is(.home-page, .sample-hero-page) .hero-sample-actions {
    gap: 2px;
    min-height: 40px;
    padding: 0 2px 0 8px;
  }

  :is(.home-page, .sample-hero-page) .hero-sample-actions > button {
    width: 40px;
    height: 40px;
  }

  :is(.home-page, .sample-hero-page) .hero-sample-dots {
    display: none;
  }

  .home-page .section,
  .home-page .loss-strip {
    padding: 70px 0;
  }

  .home-page :is(.section-head, .loss-head) h2,
  .home-page .keiji-story-copy h2,
  .home-page .contact-copy h2 {
    font-size: 1.44rem;
    line-height: 1.5;
  }

  .home-page .section-kicker::before,
  .home-page .eyebrow::before {
    width: 22px;
  }

  .home-page .channel-use-grid {
    border-right: 0;
    border-left: 0;
  }

  .home-page .related-link-band {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
    padding: 20px 0;
  }

  .home-page .related-link-band-copy p:last-child {
    font-size: 0.9rem;
  }

  .home-page .related-link-band-links {
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(18, 46, 89, 0.13);
    border-left: 0;
  }

  .home-page .related-link-band-links a {
    min-height: 52px;
    padding: 10px 4px;
    border-right: 0;
    border-bottom: 1px solid rgba(18, 46, 89, 0.13);
  }

  .home-page .related-link-band-links a:last-child {
    border-bottom: 0;
  }

  .home-page #keiji-story {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .home-page .keiji-story-grid {
    gap: 20px;
  }

  .home-page .keiji-mark {
    min-height: 132px;
  }

  .home-page .keiji-mark img {
    width: 118px;
  }

  .home-page .service-owner {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
    padding-top: 34px;
  }

  .home-page .service-owner-portrait {
    height: 310px;
  }

  .home-page .service-owner-portrait img {
    max-width: 360px;
    margin-inline: auto;
    object-position: center 42%;
  }

  .home-page .service-owner-copy {
    padding-bottom: 0;
  }

  .home-page .service-owner-copy h3 {
    font-size: 1.48rem;
  }
}
