:root {
  --ink: #1f2b2c;
  --muted: #5c6f6b;
  --teal: #4f9a8b;
  --teal-dark: #2e7468;
  --mint: #eaf6f2;
  --ivory: #fffaf0;
  --gold: #c99932;
  --cta-orange: #f08a24;
  --cta-orange-dark: #d96b18;
  --rose: #f7ece8;
  --line: #dbe8e4;
  --white: #ffffff;
  --shadow: 0 14px 34px rgba(44, 95, 88, 0.16);
  --cta-shadow: 0 14px 30px rgba(217, 107, 24, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 18px;
}

[id] {
  scroll-margin-top: 18px;
}

body {
  margin: 0;
  background: #dfeeea;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  line-height: 1.8;
  letter-spacing: 0;
}

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

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

.lp {
  width: min(100%, 430px);
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(31, 43, 44, 0.06);
  padding-bottom: 86px;
}

.hero {
  background: var(--mint);
}

.hero-image-only {
  background: var(--white);
}

.hero-split {
  background: var(--white);
}

.hero > img {
  width: 100%;
  height: auto;
}

.hero-top-image,
.hero-bottom-image {
  width: 100%;
  height: auto;
}

.hero-inline-cta {
  display: grid;
  place-items: center;
  background: var(--white);
  padding: 28px 24px 30px;
}

.hero-inline-cta .button {
  width: min(100%, 310px);
  min-height: 56px;
  border-radius: 999px;
  font-size: 16px;
  box-shadow: var(--cta-shadow);
}

.hero-visual {
  overflow: hidden;
  margin: 0;
  background: var(--white);
}

.hero-visual img {
  width: 100%;
  height: clamp(340px, 52vh, 430px);
  object-fit: cover;
  object-position: top center;
}

.hero-action {
  display: grid;
  gap: 12px;
  background: var(--white);
  padding: 18px 22px 24px;
}

.hero-action h1 {
  margin-bottom: 0;
}

.hero-action p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.7;
}

.hero-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.hero-keywords span {
  border: 1px solid #d8ebe6;
  border-radius: 999px;
  background: #f5fbf9;
  color: var(--teal-dark);
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
}

.hero-assurance span {
  border: 1px solid #d8ebe6;
  border-radius: 999px;
  background: #f5fbf9;
  color: var(--teal-dark);
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
}

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

.band {
  padding: 42px 22px;
}

.band.compact {
  padding-top: 28px;
  padding-bottom: 30px;
}

.band.soft {
  background: linear-gradient(180deg, var(--mint), #ffffff 88%);
}

.page-menu {
  border-top: 1px solid #f4dfc4;
  border-bottom: 1px solid #edf4f1;
  background: linear-gradient(180deg, #fff7ec, #ffffff 72%);
}

.page-menu .eyebrow {
  margin-bottom: 12px;
  text-align: center;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  counter-reset: menu;
}

.menu-grid a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  border: 1px solid #d8ebe6;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 10px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  text-align: left;
  box-shadow: 0 8px 18px rgba(31, 43, 44, 0.06);
}

.menu-grid a::before {
  counter-increment: menu;
  content: counter(menu);
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border-radius: 999px;
  background: var(--cta-orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
}

.instagram-feed {
  background: #ffffff;
}

.instagram-feed h2 {
  margin-bottom: 16px;
  font-size: 21px;
}

.instagram-frame {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fcfa;
  box-shadow: 0 12px 28px rgba(31, 43, 44, 0.08);
}

.instagram-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  color: #788884;
  padding: 18px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.lightwidget-widget {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 470px;
  background: transparent;
}

.section-bridge {
  margin-top: 22px;
  border-left: 4px solid var(--teal);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.94);
  padding: 14px 16px;
  box-shadow: 0 10px 22px rgba(31, 43, 44, 0.06);
}

.section-bridge p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.7;
}

.top-cta {
  border-top: 1px solid #f4dfc4;
  border-bottom: 1px solid #f4dfc4;
  background: #fff7ec;
}

.top-cta p {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.7;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 30px;
  line-height: 1.42;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 25px;
  line-height: 1.48;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 6px;
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: 0;
}

p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 15px;
}

.cta-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 30px 0;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 14px 18px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.button.primary {
  background: linear-gradient(135deg, var(--cta-orange), var(--cta-orange-dark));
  color: var(--white);
  box-shadow: var(--cta-shadow);
}

.google-review-card {
  display: grid;
  gap: 9px;
  margin: 14px 0 16px;
  border: 1px solid rgba(66, 133, 244, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(66, 133, 244, 0.08), rgba(52, 168, 83, 0.08)),
    var(--white);
  padding: 16px;
  box-shadow: 0 14px 30px rgba(66, 133, 244, 0.12);
}

.google-logo-text {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  border-radius: 999px;
  background: #ffffff;
  padding: 3px 10px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  box-shadow: 0 6px 16px rgba(31, 43, 44, 0.08);
}

.google-blue {
  color: #4285f4;
}

.google-red {
  color: #ea4335;
}

.google-yellow {
  color: #fbbc05;
}

.google-green {
  color: #34a853;
}

.google-review-main {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
}

.google-review-main strong {
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
}

.google-stars {
  color: #fbbc05;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1;
}

.google-review-copy {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.google-review-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  border: 1px solid rgba(66, 133, 244, 0.28);
  border-radius: 999px;
  background: #ffffff;
  color: #4285f4;
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}

.proof-cards {
  display: grid;
  gap: 10px;
}

.proof-cards div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 14px;
}

.proof-cards strong,
.proof-cards span {
  display: block;
}

.proof-cards strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
}

.proof-cards span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.trial-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

.scope-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 13px;
}

.scope-grid strong,
.scope-grid span {
  display: block;
}

.scope-grid strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.scope-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.worry-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.worry-points li {
  position: relative;
  border: 1px solid #d8ebe6;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 10px 10px 10px 30px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.45;
  box-shadow: 0 8px 18px rgba(31, 43, 44, 0.05);
}

.worry-points li::before {
  content: "✓";
  position: absolute;
  left: 11px;
  top: 9px;
  color: var(--cta-orange);
  font-weight: 900;
}

.check-list article,
.check-list p {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.65;
}

.check-list p {
  padding: 14px 14px 14px 42px;
}

.check-list article {
  overflow: hidden;
  padding: 0;
}

.check-list article img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.check-list article p {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.check-list p::before {
  content: "✓";
  position: absolute;
  left: 15px;
  top: 13px;
  color: var(--gold);
  font-weight: 900;
}

.check-list article p::before {
  top: 14px;
}

.feature-grid {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.feature-trust {
  display: grid;
  gap: 12px;
  margin: 22px 0 24px;
}

.medical-disclaimer {
  border: 1px solid #d8e5e1;
  border-radius: 8px;
  background: #f8fbfa;
  padding: 13px 14px;
}

.medical-disclaimer strong {
  display: block;
  margin-bottom: 4px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
}

.medical-disclaimer p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.75;
}

.feature-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 0 18px 18px;
}

.feature-grid img {
  width: calc(100% + 36px);
  margin: 0 -18px 14px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-subblock {
  margin-top: 18px;
  border: 1px solid #d8ebe6;
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fcfa, #ffffff);
  padding: 16px;
}

.feature-subblock h3 {
  color: var(--teal-dark);
  font-size: 19px;
}

.feature-subblock p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.care-message {
  margin: 14px 0 16px;
  border: 1px solid #d8ebe6;
  border-radius: 8px;
  background: #f8fcfa;
  padding: 14px;
}

.care-message strong {
  display: block;
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.5;
}

.care-message p {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.75;
}

.athlete-voice {
  background: var(--white);
}

.athlete-card {
  display: grid;
  gap: 14px;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fcfa);
  padding: 14px;
  box-shadow: 0 12px 28px rgba(31, 43, 44, 0.06);
}

.athlete-video {
  margin: 0;
}

.athlete-copy {
  display: grid;
  gap: 10px;
}

.athlete-label {
  justify-self: start;
  border-radius: 999px;
  background: #eef8f5;
  color: var(--teal-dark);
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.3;
}

.athlete-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
}

.athlete-profile {
  margin: 0;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.55;
}

.athlete-comments {
  display: grid;
  gap: 9px;
}

.athlete-comments p {
  margin: 0;
  border-left: 3px solid var(--teal);
  background: rgba(255, 255, 255, 0.72);
  padding: 10px 11px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.75;
}

.athlete-copy .caption {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.reason-cards {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.reason-cards article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 16px;
  box-shadow: 0 10px 24px rgba(31, 43, 44, 0.06);
}

.reason-cards h3,
.service-grid h3 {
  margin-bottom: 6px;
}

.reason-cards p,
.service-grid p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.7;
}

.owner-message {
  background: var(--white);
}

.owner-photo {
  overflow: hidden;
  margin: 22px 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fcfa;
}

.owner-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 18%;
}

.owner-photo figcaption {
  border-top: 1px solid var(--line);
  background: #ffffff;
  color: var(--teal-dark);
  padding: 12px 14px 14px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
}

.owner-copy {
  border-left: 4px solid var(--teal);
  border-radius: 0 8px 8px 0;
  background: #f8fcfa;
  padding: 16px 16px 2px 18px;
}

.owner-copy p {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.85;
}

.service-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.service-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 0 16px 16px;
  box-shadow: 0 10px 24px rgba(31, 43, 44, 0.06);
}

.service-grid img {
  width: calc(100% + 32px);
  margin: 0 -16px 14px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-card {
  overflow: hidden;
  margin: 22px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.image-card figcaption {
  padding: 12px 14px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.gene-visual img {
  aspect-ratio: 1.29 / 1;
  object-fit: contain;
  background: #f7fbfa;
}

.data-visual {
  margin-bottom: 14px;
}

.data-visual img {
  aspect-ratio: 1.14 / 1;
  object-fit: contain;
  background: #f8f8f8;
}

.result-visual {
  margin-top: 20px;
  border-color: #eddcba;
  box-shadow: 0 14px 32px rgba(31, 43, 44, 0.08);
}

.result-visual img {
  aspect-ratio: 1.42 / 1;
  object-fit: contain;
  background: #ffffff;
}

.change-summary {
  display: grid;
  gap: 10px;
  margin: 18px 0 20px;
}

.change-summary div {
  border: 1px solid #ead8ae;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 13px 14px;
}

.change-summary strong,
.change-summary span {
  display: block;
}

.change-summary strong {
  color: #7d5b16;
  font-size: 14px;
  font-weight: 900;
}

.change-summary span {
  margin-top: 3px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.result-message {
  margin: 14px 0 20px;
  border: 1px solid #ead8ae;
  border-radius: 8px;
  background: #fffaf0;
  padding: 16px;
}

.result-message h3 {
  margin-bottom: 8px;
  color: #7d5b16;
  font-size: 18px;
  line-height: 1.55;
}

.result-message p {
  margin-bottom: 0;
  font-size: 14px;
}

.case-balance,
.consultation-benefits {
  display: grid;
  gap: 10px;
  margin: 18px 0 20px;
}

.case-balance article,
.consultation-benefits article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: 14px;
  box-shadow: 0 8px 18px rgba(31, 43, 44, 0.05);
}

.case-balance strong,
.case-balance span,
.consultation-benefits strong,
.consultation-benefits span {
  display: block;
}

.case-balance strong,
.consultation-benefits strong {
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
}

.case-balance span,
.consultation-benefits span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.change-reasons {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
}

.change-reasons article {
  border-left: 4px solid var(--teal);
  border-radius: 0 8px 8px 0;
  background: #ffffff;
  padding: 14px 14px 14px 16px;
}

.change-reasons h3 {
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-size: 16px;
}

.change-reasons p {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
}

.reservation-visual img {
  aspect-ratio: 4 / 3;
}

.feature-grid p,
.staff-card p,
.steps p {
  margin-bottom: 0;
}

.num {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.success {
  background: linear-gradient(180deg, #ffffff, #fbf7ef);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 22px 0 14px;
}

.before-after figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(31, 43, 44, 0.08);
}

.before-after img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.before-after figure:first-child img {
  object-position: 52% center;
}

.before-after figure:nth-child(2) img {
  object-position: 52% center;
}

.before-after figcaption {
  position: absolute;
  left: 8px;
  top: 8px;
  border-radius: 999px;
  background: rgba(47, 116, 104, 0.9);
  color: var(--white);
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.story-card {
  border: 1px solid #ead8ae;
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
  box-shadow: 0 10px 26px rgba(201, 153, 50, 0.1);
}

.story-card h3 {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.55;
}

.story-card p {
  font-size: 14px;
}

.customer-voice-card {
  border-color: rgba(79, 154, 139, 0.34);
  background: #fbfffd;
}

.voice-qa {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.voice-qa div {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.voice-qa strong {
  display: block;
  color: var(--teal-dark);
  font-size: 14px;
  line-height: 1.55;
}

.voice-qa p {
  margin: 6px 0 0;
  color: var(--ink);
  line-height: 1.75;
}

.customer-voice-card .caption {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.result-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.result-chips span {
  border-radius: 999px;
  background: #f6ecd3;
  color: #7d5b16;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
}

.story-name {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
}

.caption {
  margin: 12px 0 0;
  color: #788884;
  font-size: 12px;
  line-height: 1.6;
}

.steps {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
}

.steps li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 900;
}

.flow-visuals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.flow-visuals figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--mint);
}

.flow-visuals img {
  width: 100%;
  height: 118px;
  object-fit: cover;
}

.flow-visuals figcaption {
  position: absolute;
  left: 6px;
  bottom: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal-dark);
  padding: 3px 7px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
}

.staff-trust {
  margin-top: 18px;
  border: 1px solid #d8ebe6;
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fcfa, #ffffff);
  padding: 16px;
}

.staff-trust strong {
  display: block;
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
}

.staff-trust p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.staff-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.compact-staff {
  margin-top: 16px;
}

.staff-card {
  display: grid;
  grid-template-columns: 106px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 12px;
}

.staff-card img {
  width: 106px;
  height: 138px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--rose);
}

.staff-card:first-child img {
  object-position: center 15%;
}

.staff-card:nth-child(2) img {
  object-position: center 10%;
}

.role {
  margin-bottom: 2px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.staff-license {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.55;
}

.staff-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 10px;
}

.staff-tags span {
  border: 1px solid #ead8ae;
  border-radius: 999px;
  background: #fffaf0;
  color: #7d5b16;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.3;
}

.video-card {
  overflow: hidden;
  margin: 22px 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101615;
  box-shadow: var(--shadow);
}

.video-card video {
  display: block;
  width: 100%;
  max-height: 520px;
}

.trial-points {
  margin-top: 22px;
}

.trial-points span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fcfa;
  color: var(--teal-dark);
  padding: 7px 10px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.reservation-widget {
  background: #ffffff;
}

.reservation-widget h2 {
  margin-bottom: 12px;
}

.widget-frame {
  overflow: hidden;
  margin-top: 20px;
  border: 2px solid rgba(240, 138, 36, 0.26);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

#hacomono-widget-w0001 {
  display: block;
  width: 100%;
  min-height: 760px;
  border: 0;
}

.pricing {
  background: linear-gradient(180deg, #ffffff, #fbf7ef);
}

.pricing-context {
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.86);
  padding: 16px 16px 16px 18px;
}

.pricing-context h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.pricing-context p:last-child {
  margin-bottom: 0;
}

.price-list-visual {
  overflow: hidden;
  margin: 24px 0 0;
  border: 1px solid #ead8ae;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(201, 153, 50, 0.12);
}

.price-list-visual a {
  display: block;
}

.price-list-visual img {
  width: 100%;
  height: auto;
  background: var(--white);
}

.price-list-visual figcaption {
  border-top: 1px solid #f0e3c8;
  background: #fffaf0;
  color: #7d5b16;
  padding: 12px 14px 14px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.6;
}

.final-cta {
  background: #fff7ec;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.55;
}

.faq details p {
  margin: 10px 0 0;
  font-size: 14px;
}

.access {
  background: var(--white);
}

.qr-section {
  background: var(--white);
  text-align: center;
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.qr-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fcfa;
  padding: 14px;
}

.qr-grid img {
  width: 100%;
  max-width: 150px;
  margin: 0 auto;
  border-radius: 6px;
  background: var(--white);
}

.qr-grid figcaption {
  margin-top: 10px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
}

.note {
  margin: 24px 0 0;
  color: #788884;
  font-size: 12px;
  line-height: 1.7;
}

.fixed-cta {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 20;
  display: grid;
  width: min(100%, 430px);
  grid-template-columns: 1fr;
  transform: translateX(-50%);
  border-top: 1px solid rgba(31, 43, 44, 0.08);
  background: rgba(255, 255, 255, 0.94);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  backdrop-filter: blur(12px);
}

.fixed-cta a {
  display: grid;
  min-height: 48px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cta-orange), var(--cta-orange-dark));
  color: var(--white);
  box-shadow: var(--cta-shadow);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media (min-width: 700px) {
  .lp {
    margin: 24px auto;
    border-radius: 8px;
  }
}
