:root {
  --color-main: #2fb8c6;
  --color-main-dark: #168997;
  --color-mint: #6dcc5f;
  --color-cta: #ff7a00;
  --color-cta-dark: #dc6100;
  --color-text: #222222;
  --color-muted: #666666;
  --color-bg: #eef2f1;
  --color-soft: #f7fbfa;
  --color-aqua: #e9faf8;
  --color-white: #ffffff;
  --shadow-card: 0 10px 28px rgba(26, 119, 128, 0.1);
  --shadow-button: 0 5px 0 var(--color-cta-dark), 0 12px 20px rgba(255, 122, 0, 0.22);
  --radius: 16px;
  --radius-large: 24px;
  --max-lp: 728px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 78px;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lp-shell {
  width: min(100%, var(--max-lp));
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: 0 0 34px rgba(0, 0, 0, 0.08);
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(47, 184, 198, 0.16);
  backdrop-filter: blur(14px);
}

.lp-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-main-dark);
}

.lp-logo__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-aqua);
  color: var(--color-main);
  font-size: 24px;
}

.lp-logo__text {
  font-size: 15px;
  letter-spacing: 0;
}

.lp-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-header__tel {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: #555555;
  color: var(--color-white);
  font-size: 13px;
  font-weight: 800;
}

.lp-menu-toggle {
  display: grid;
  width: 46px;
  height: 46px;
  gap: 5px;
  align-content: center;
  place-items: center;
  padding: 9px;
  border: 0;
  border-radius: 50%;
  background: var(--color-main);
  cursor: pointer;
}

.lp-menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-white);
}

.lp-menu {
  position: absolute;
  top: 64px;
  right: 12px;
  display: none;
  width: min(260px, calc(100vw - 24px));
  padding: 10px;
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.lp-menu.is-open {
  display: grid;
  gap: 4px;
}

.lp-menu a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--color-main-dark);
  font-weight: 800;
}

.lp-menu a:hover {
  background: var(--color-aqua);
}

.lp-main {
  background: var(--color-white);
}

section {
  padding: 54px 20px;
}

.section-white {
  background: var(--color-white);
}

.section-aqua {
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.7) 0 44px, transparent 45px),
    linear-gradient(145deg, #eefbfc 0%, var(--color-aqua) 54%, #effbea 100%);
}

.section-mint {
  background: #f0fbef;
}

.hero {
  position: relative;
  padding-top: 34px;
  padding-bottom: 44px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--color-aqua);
  color: var(--color-main-dark);
  font-size: 13px;
  font-weight: 800;
}

.service-name {
  margin: 0 0 10px;
  color: var(--color-mint);
  font-size: 20px;
  font-weight: 900;
}

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

h1 {
  margin: 0;
  color: var(--color-main-dark);
  font-size: clamp(34px, 7.4vw, 48px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: #148693;
  font-size: clamp(27px, 6vw, 38px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
}

.hero__lead,
.lead-text {
  margin: 18px 0 0;
  font-size: 17px;
  font-weight: 700;
}

.notice-pill {
  display: inline-flex;
  margin: 16px 0 0;
  padding: 7px 13px;
  border-radius: 999px;
  background: #fff3e7;
  color: #a04b00;
  font-size: 14px;
  font-weight: 800;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 20px 0 22px;
}

.badge-list span,
.pill-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 13px;
  border: 1px solid rgba(47, 184, 198, 0.28);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-main-dark);
  font-size: 13px;
  font-weight: 800;
}

.button-row {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.btn-primary {
  background: var(--color-cta);
  color: var(--color-white);
  box-shadow: var(--shadow-button);
  transform: translateY(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-primary:hover {
  transform: translateY(2px);
  box-shadow: 0 5px 0 var(--color-cta-dark), 0 10px 18px rgba(255, 122, 0, 0.24);
}

.btn-secondary,
.btn-dark {
  background: #555555;
  color: var(--color-white);
  box-shadow: 0 6px 0 #3f3f3f, 0 12px 20px rgba(0, 0, 0, 0.16);
}

.btn-wide {
  width: 100%;
}

.hero__visual {
  position: relative;
  margin-top: 28px;
}

.hero__visual img {
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-card);
}

.chat-bubble {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-main-dark);
  font-weight: 900;
  box-shadow: var(--shadow-card);
}

.chat-bubble--one {
  right: 18px;
  top: 18px;
}

.chat-bubble--two {
  left: 22px;
  bottom: 20px;
}

.cta-panel-section {
  padding: 34px 20px;
  background: var(--color-white);
}

.cta-panel {
  padding: 30px 20px 22px;
  border-radius: var(--radius-large);
  background: linear-gradient(135deg, #63c65b 0%, #80d570 100%);
  color: var(--color-white);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.cta-panel__kicker {
  margin: 0 0 2px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
}

.cta-panel h2 {
  margin-bottom: 18px;
  color: var(--color-white);
  font-size: clamp(28px, 7vw, 42px);
}

.cta-panel .btn + .btn {
  margin-top: 14px;
}

.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.mini-card-grid span {
  position: relative;
  display: grid;
  min-height: 70px;
  place-items: center;
  padding: 16px 8px 12px;
  border-radius: 12px;
  background: var(--color-white);
  color: var(--color-text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.mini-card-grid span::before,
.check-card-list div::before {
  content: "✓";
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-mint);
  color: var(--color-white);
  font-weight: 950;
}

.mini-card-grid span::before {
  position: absolute;
  top: -13px;
  left: calc(50% - 13px);
  border: 3px solid var(--color-white);
}

.legal-note {
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
}

.cta-panel .legal-note {
  color: rgba(255, 255, 255, 0.95);
}

.section-heading {
  margin-bottom: 22px;
  text-align: center;
}

.section-visual {
  margin: 0 0 24px;
}

.section-visual img {
  width: 100%;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-card);
}

.section-heading .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.symptom-section {
  color: var(--color-text);
}

.symptom-grid,
.feature-grid,
.diagram-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.symptom-card,
.diagram-card,
.point-card,
.price-card,
.faq-item {
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.symptom-card {
  display: grid;
  min-height: 130px;
  align-content: center;
  justify-items: center;
  padding: 18px 12px;
  text-align: center;
}

.symptom-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 18px;
  background: #e9faf8;
  color: var(--color-main-dark);
  font-size: 20px;
  font-weight: 900;
}

.symptom-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.section-bottom-message {
  margin: 24px auto 0;
  padding: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-main-dark);
  text-align: center;
  font-weight: 800;
}

.diagram-card {
  padding: 16px;
  border: 2px solid rgba(47, 184, 198, 0.16);
}

.diagram-card span,
.point-card span,
.price-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--color-main-dark);
  font-size: 13px;
  font-weight: 900;
}

.diagram-card p {
  margin: 0;
  font-weight: 750;
  line-height: 1.45;
}

.calc-card {
  margin-top: 18px;
  padding: 20px;
  border: 3px solid var(--color-main);
  border-radius: var(--radius-large);
  background: #fffdf1;
  text-align: center;
}

.calc-card__title {
  margin: 0 0 12px;
  color: var(--color-main-dark);
  font-size: 20px;
  font-weight: 950;
}

.calc-card__formula {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.calc-card__formula span {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 14px;
  background: var(--color-main);
  color: var(--color-white);
  font-weight: 950;
}

.calc-card p {
  margin: 0;
}

.split-visual {
  display: grid;
  gap: 18px;
  align-items: center;
}

.split-visual img {
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-card);
}

.check-card-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.check-card-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 13px 14px;
  border-radius: 15px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  font-weight: 900;
}

.check-card-list div::before {
  flex: 0 0 auto;
}

.point-card {
  position: relative;
  min-height: 218px;
  padding: 54px 16px 18px;
  border: 1px solid rgba(47, 184, 198, 0.24);
  overflow: hidden;
}

.point-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 42px;
  background: linear-gradient(135deg, var(--color-main), #73d6cb);
}

.point-card span {
  position: absolute;
  top: 10px;
  left: 14px;
  z-index: 1;
  color: var(--color-white);
}

.point-card p {
  margin: 0;
  font-weight: 700;
}

.point-card img {
  width: 100%;
  margin: -8px 0 14px;
  border-radius: 14px;
}

.point-card--wide {
  grid-column: 1 / -1;
  min-height: 0;
}

.policy-section .lead-text {
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cta-panel-section--compact {
  padding-top: 28px;
  padding-bottom: 28px;
}

.flow-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.flow-list li {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 16px 16px 16px 74px;
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.flow-list li::before {
  counter-increment: flow;
  content: counter(flow);
  position: absolute;
  left: 16px;
  top: calc(50% - 22px);
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-main);
  color: var(--color-white);
  font-weight: 950;
}

.flow-list span {
  color: var(--color-main-dark);
  font-size: 12px;
  font-weight: 950;
}

.flow-list strong {
  font-size: 18px;
}

.price-card {
  padding: 18px 14px;
  text-align: center;
}

.price-card strong {
  display: block;
  color: var(--color-cta);
  font-size: 24px;
  line-height: 1.2;
}

.price-card:last-child {
  grid-column: 1 / -1;
}

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

.faq-item {
  overflow: hidden;
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 62px;
  padding: 16px;
  border: 0;
  background: var(--color-white);
  color: var(--color-text);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: left;
}

.faq-question i {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-aqua);
}

.faq-question i::before,
.faq-question i::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 11px;
  width: 10px;
  height: 2px;
  background: var(--color-main-dark);
}

.faq-question i::after {
  transform: rotate(90deg);
}

.faq-question[aria-expanded="true"] i::after {
  opacity: 0;
}

.faq-answer {
  padding: 0 16px 16px;
  color: var(--color-muted);
  font-weight: 700;
}

.faq-answer p {
  margin: 0;
}

.final-cta {
  text-align: center;
}

.final-cta__visual {
  width: 100%;
  margin: 0 0 24px;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-card);
}

.final-cta p {
  margin: 16px 0 0;
  font-weight: 800;
}

.fixed-cta {
  position: fixed;
  right: max(10px, calc((100vw - var(--max-lp)) / 2 + 10px));
  bottom: 10px;
  left: max(10px, calc((100vw - var(--max-lp)) / 2 + 10px));
  z-index: 30;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 8px;
  width: auto;
  max-width: calc(var(--max-lp) - 20px);
  margin: 0 auto;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.fixed-cta a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--color-white);
  font-size: 17px;
  font-weight: 900;
}

.fixed-cta__line {
  background: var(--color-cta);
}

.fixed-cta__tel {
  background: #555555;
}

.lp-footer {
  padding: 28px 18px 98px;
  background: #f5f5f5;
  color: var(--color-muted);
  font-size: 12px;
  text-align: center;
}

.lp-footer p {
  margin: 0;
}

.lp-footer__copy {
  margin-top: 8px !important;
}

.lp-shell:has(.image-lp) {
  background: #ffffff;
}

.lp-shell:has(.image-lp) .lp-header {
  display: none;
}

.image-lp {
  background: #ffffff;
}

.image-lp section {
  padding: 0;
}

.image-slice {
  margin: 0;
  line-height: 0;
}

.image-slice img {
  width: 100%;
  height: auto;
}

.image-cta {
  position: relative;
  margin: -1px 0;
  overflow: hidden;
  background: #eefbfc;
  line-height: 0;
}

.image-cta__frame {
  width: 100%;
  height: auto;
}

.image-cta__button {
  position: absolute;
  left: 50%;
  top: 34%;
  display: block;
  width: min(78%, 560px);
  transform: translateX(-50%);
  filter: drop-shadow(0 10px 18px rgba(43, 148, 56, 0.18));
  transition: transform 0.18s ease, filter 0.18s ease;
}

.image-cta__button:hover {
  transform: translateX(-50%) translateY(2px);
  filter: drop-shadow(0 7px 13px rgba(43, 148, 56, 0.18));
}

.image-cta__button img {
  width: 90%;
  height: 90%;
  margin: 0 auto;
}

.image-lp-note {
  padding: 18px 18px 96px !important;
  background: #ffffff;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}

.image-lp-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-bottom: 12px;
}

.image-lp-links a {
  color: var(--color-main-dark);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.image-lp-note p {
  margin: 0;
}

.image-lp-note p + p {
  margin-top: 6px;
}

.lp-shell:has(.image-lp) .lp-footer {
  display: none;
}

.floating-image-cta {
  position: fixed;
  left: max(12px, calc((100vw - var(--max-lp)) / 2 + 14px));
  right: max(12px, calc((100vw - var(--max-lp)) / 2 + 14px));
  bottom: 12px;
  z-index: 40;
  display: block;
  max-width: 620px;
  margin: 0 auto;
  filter: drop-shadow(0 8px 18px rgba(43, 148, 56, 0.22));
}

.floating-image-cta img {
  display: block;
  width: 100%;
  height: auto;
}

.legal-page {
  width: min(100%, var(--max-lp));
  margin: 0 auto;
  padding: 44px 22px 88px;
  background: #ffffff;
  color: var(--color-text);
}

.legal-page__eyebrow {
  margin: 0 0 8px;
  color: var(--color-main-dark);
  font-size: 14px;
  font-weight: 900;
}

.legal-page h1 {
  margin: 0 0 24px;
  color: var(--color-main-dark);
  font-size: 34px;
}

.legal-page h2 {
  margin: 34px 0 10px;
  color: var(--color-text);
  font-size: 20px;
}

.legal-page p,
.legal-page li {
  font-size: 15px;
  line-height: 1.9;
}

.legal-page ul {
  margin: 10px 0 0;
  padding-left: 1.2em;
}

.legal-page a {
  color: var(--color-main-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 680px) {
  section {
    padding-right: 34px;
    padding-left: 34px;
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 24px;
    align-items: center;
  }

  .hero__visual {
    margin-top: 0;
  }

  .button-row {
    grid-template-columns: 1fr 0.86fr;
  }

  .split-visual {
    grid-template-columns: 1fr 0.92fr;
  }
}

@media (max-width: 390px) {
  body {
    font-size: 15px;
  }

  section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .symptom-grid,
  .feature-grid,
  .diagram-grid {
    gap: 10px;
  }

  .symptom-card {
    min-height: 140px;
  }

  .symptom-card p,
  .flow-list strong {
    font-size: 16px;
  }

  .btn {
    font-size: 18px;
  }

  .image-cta__button {
    top: 34%;
    width: 82%;
  }
}
