:root {
  --ink: #15212a;
  --muted: #60717c;
  --paper: #fbfcfb;
  --line: #dfe7e5;
  --teal: #0c8b8f;
  --teal-dark: #08676c;
  --mint: #dff4ef;
  --yellow: #f7c948;
  --blue: #396cba;
  --coral: #dd6b4d;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(21, 33, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 72px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 251, 0.88);
  border-bottom: 1px solid rgba(223, 231, 229, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
}

.top-nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta,
.primary-button {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 8px 18px rgba(12, 139, 143, 0.22);
}

.secondary-button {
  color: var(--teal-dark);
  background: var(--white);
  border: 1px solid rgba(12, 139, 143, 0.26);
}

.secondary-button.light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.58);
}

.compact {
  min-height: 42px;
  padding-inline: 18px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #eef7f5;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(251, 252, 251, 0.96) 0%, rgba(251, 252, 251, 0.84) 35%, rgba(251, 252, 251, 0.16) 70%),
    linear-gradient(0deg, rgba(8, 103, 108, 0.20), transparent 42%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 78px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 9em;
  margin: 0;
  font-size: clamp(48px, 8vw, 86px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: #344650;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin: 42px 0 0;
}

.hero-facts div {
  padding: 16px;
  border: 1px solid rgba(12, 139, 143, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.hero-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-facts dd {
  margin: 4px 0 0;
  font-size: 22px;
  font-weight: 900;
}

.trust-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 42px);
  padding: 18px;
  background: var(--ink);
  color: var(--white);
}

.trust-band p {
  margin: 0;
  color: #b8ccd1;
  font-size: 13px;
  font-weight: 800;
}

.trust-band ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 900;
}

.section {
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 108px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: 0;
}

.section-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.intro-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.service-card,
.btob-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(21, 33, 42, 0.06);
}

.feature-card {
  padding: 26px;
}

.feature-number {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--coral);
  font-weight: 900;
}

.feature-card p,
.service-card p,
.btob-copy p,
.flow-step p,
.contact-section p {
  color: var(--muted);
}

.services {
  border-top: 1px solid var(--line);
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 0 28px 28px;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
}

.accent-teal::before {
  background: var(--teal);
}

.accent-yellow::before {
  background: var(--yellow);
}

.accent-blue::before {
  background: var(--blue);
}

.service-card p {
  margin: 22px 0 10px;
  font-size: 12px;
  font-weight: 900;
}

.service-photo {
  display: block;
  width: calc(100% + 56px);
  height: 190px;
  margin: 0 -28px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.service-card ul,
.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.check-list li {
  position: relative;
  padding-left: 20px;
  color: #354750;
}

.service-card li + li,
.check-list li + li {
  margin-top: 8px;
}

.service-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.price-section {
  width: min(1220px, calc(100% - 36px));
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

caption {
  padding: 18px 20px;
  text-align: left;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

th,
td {
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: #20333d;
  background: #edf7f5;
  font-size: 13px;
}

td:first-child {
  width: 150px;
  color: var(--teal-dark);
  font-weight: 900;
}

td:last-child {
  width: 210px;
  font-weight: 900;
}

.btob-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 32px;
  align-items: center;
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1140px) / 2));
  background: #eef4f6;
}

.btob-copy {
  max-width: 660px;
}

.btob-panel {
  padding: 28px;
}

.unit-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
}

.unit-price span {
  font-weight: 800;
}

.unit-price strong {
  font-size: 30px;
  line-height: 1;
}

.panel-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.results-section {
  border-top: 1px solid var(--line);
}

.results-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 18px;
}

.results-grid figure,
.before-after-grid article,
.ba-images figure {
  margin: 0;
}

.results-grid figure,
.before-after-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(21, 33, 42, 0.06);
}

.results-grid img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.results-grid figcaption,
.ba-images figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.before-after-grid h3 {
  padding: 18px;
}

.ba-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ba-images img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.ba-images figure:first-child {
  border-right: 1px solid var(--line);
}

.flow-section {
  border-top: 1px solid var(--line);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.flow-step {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(21, 33, 42, 0.06);
}

.flow-step span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
}

.faq-section {
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  gap: 30px;
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto 72px;
  padding: 38px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-dark), #173441 62%, #6f4933);
  box-shadow: var(--shadow);
}

.contact-section .eyebrow,
.contact-section p {
  color: #d6eeee;
}

.contact-section h2 {
  max-width: 720px;
}

.contact-intro { max-width: 820px; }
.contact-time { display: inline-block; font-size: .58em; font-weight: 700; }
.contact-form {
  padding: 30px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.form-field { display: grid; gap: 8px; margin: 0; min-width: 0; }
.form-wide { grid-column: 1 / -1; }
.form-field span, .form-field legend { font-weight: 800; }
.form-field b, .privacy-check b { color: #a83232; font-size: 12px; }
.form-field em { color: var(--muted); font-size: 12px; font-style: normal; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #b9c5c8;
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}
.form-field textarea { resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 3px solid rgba(31, 111, 112, .18);
  border-color: var(--teal);
}
.form-field small, .form-note { color: var(--muted) !important; font-size: 13px; }
fieldset.form-field { padding: 0; border: 0; }
.choice-row { display: flex; flex-wrap: wrap; gap: 18px; }
.timing-choices { gap: 12px 22px; }
.choice-row label { display: flex; align-items: center; gap: 7px; }
.choice-row input, .privacy-check input { width: 18px; height: 18px; min-height: 0; }
.privacy-check { display: flex; align-items: flex-start; gap: 10px; margin: 24px 0; }
.form-submit { border: 0; cursor: pointer; font: inherit; }
.form-note { margin: 12px 0 0; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-message { padding: 22px; border-radius: 8px; background: #fff; color: var(--ink); }
.form-message h3 { margin-top: 0; }
.form-message p { margin-bottom: 0; color: var(--muted); }
.form-message.success { border-left: 5px solid #2f865b; }
.form-message.error { border-left: 5px solid #b33a3a; }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px max(18px, calc((100% - 1140px) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
}
.footer-brand { color: var(--ink); }
.site-footer p { margin: 0; }

.article-shell { width: min(1120px, calc(100% - 36px)); margin: 0 auto; padding: 104px 0 72px; }
.breadcrumbs { margin-bottom: 28px; color: var(--muted); font-size: 14px; }
.breadcrumbs a { color: var(--teal); }
.article-header { padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.article-header h1 { max-width: none; margin: 10px 0 18px; font-size: clamp(34px, 5vw, 58px); line-height: 1.18; text-wrap: balance; }
.article-meta { display: flex; flex-wrap: wrap; gap: 16px; color: var(--muted); font-size: 14px; }
.article-header.column-article__hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr); gap: clamp(36px, 6vw, 76px); align-items: center; padding: 18px 0 64px; border-bottom: 1px solid var(--line); }
.column-article__hero-copy { min-width: 0; }
.column-lead { max-width: 680px; margin: 24px 0 0; color: var(--muted); font-size: 18px; line-height: 1.9; text-wrap: pretty; }
.column-thumbnail { margin: 0; }
.column-thumbnail img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 12px; box-shadow: var(--shadow); }
.column-key-points { max-width: 820px; margin: 42px auto 0; padding: 30px 32px; border: 1px solid var(--line); border-radius: 12px; background: var(--mint); }
.column-key-points h2 { margin: 0 0 16px; font-size: clamp(26px, 3vw, 36px); }
.column-key-points ul { margin: 0; padding-left: 1.35em; }
.column-key-points li + li { margin-top: 10px; }
.article-body { max-width: 820px; margin-inline: auto; padding-top: 42px; font-size: 17px; line-height: 1.9; }
.article-body p { text-wrap: pretty; }
.article-body h2 { margin: 64px 0 24px; padding-top: 52px; border-top: 1px solid var(--line); text-wrap: balance; }
.article-body h3 { margin-top: 1.8em; }
.article-body .table-wrap { margin: 26px 0; box-shadow: none; }
.article-body table.price-table { width: 100%; min-width: 0; table-layout: fixed; }
.article-body table.price-table th,
.article-body table.price-table td { width: auto; overflow-wrap: normal; word-break: normal; }
.article-body table.price-table--two col:first-child { width: 40%; }
.article-body table.price-table--two col:last-child { width: 60%; }
.article-body table.price-table--long-label col:first-child { width: 60%; }
.article-body table.price-table--long-label col:last-child { width: 40%; }
.article-body table.price-table--three { min-width: 620px; }
.article-body table.price-table--three col:nth-child(1) { width: 31%; }
.article-body table.price-table--three col:nth-child(2) { width: 31%; }
.article-body table.price-table--three col:nth-child(3) { width: 38%; }
.article-body table.price-table--menu col:nth-child(1) { width: 28%; }
.article-body table.price-table--menu col:nth-child(2) { width: 43%; }
.article-body table.price-table--menu col:nth-child(3) { width: 29%; }
.article-body table.price-table td:first-child,
.article-body table.price-table td:last-child { width: auto; }
.column-media { width: min(820px, 100%); margin: 64px auto 0; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: 0 14px 36px rgba(21, 33, 42, 0.1); }
.column-media h2 { margin: 0 0 22px; font-size: clamp(24px, 3vw, 34px); text-align: center; }
.column-video { width: min(420px, 100%); margin: 0 auto; }
.column-video iframe { display: block; width: 100%; aspect-ratio: 9 / 16; border: 0; border-radius: 12px; background: #0b1518; box-shadow: none; }
.video-fallback { margin: 12px 2px 2px; text-align: center; color: var(--muted); font-size: 14px; line-height: 1.5; }
.video-fallback a { color: var(--teal); text-decoration: underline; }
.article-cta { max-width: 820px; margin: 64px auto 0; padding: 28px; border-radius: 12px; background: var(--mint); }
.article-cta h2 { margin: 0 0 10px; }
.article-cta p { margin: 0 0 18px; color: var(--muted); }
.column-list { display: grid; gap: 18px; margin-top: 30px; }
.column-card { display: block; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); color: var(--ink); }
.column-card h2 { margin: 6px 0 10px; font-size: 24px; }
.column-card p { margin: 0; color: var(--muted); }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 860px) {
  .site-header {
    height: auto;
    min-height: 64px;
    padding-block: 10px;
  }

  .top-nav {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .hero {
    min-height: 820px;
    align-items: end;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(251, 252, 251, 0.98) 0%, rgba(251, 252, 251, 0.92) 54%, rgba(251, 252, 251, 0.08) 100%);
  }

  .hero-inner {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding: 120px 0 44px;
  }

  h1 {
    font-size: 44px;
  }

  .hero-facts,
  .intro-grid,
  .service-grid,
  .btob-section,
  .results-grid,
  .before-after-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .section-heading.split,
  .trust-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .btob-section {
    padding-inline: 18px;
  }

  .article-header.column-article__hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 42px;
  }

  .column-thumbnail {
    order: 2;
  }

  .column-lead { font-size: 17px; }

}

@media (max-width: 560px) {
  .brand span:last-child {
    max-width: 170px;
    line-height: 1.2;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .contact-section {
    padding: 28px 20px;
  }
  .contact-form { padding: 22px 16px; }
  .column-key-points { padding: 24px 20px; }
  .column-media { padding: 18px 8px 8px; border-radius: 14px; }
  .column-video iframe { border-radius: 10px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .site-footer { align-items: flex-start; flex-direction: column; }
}
