:root {
  --green-950: #0e271a;
  --green-900: #183f2b;
  --green-800: #1f5638;
  --green-700: #2d6e49;
  --green-100: #eef7f0;
  --wood-950: #20150f;
  --wood-900: #2b1d16;
  --wood-800: #4f2d1b;
  --wood-700: #7f4b27;
  --gold-500: #bd843e;
  --gold-300: #f1d5a7;
  --cream-100: #fbf6ea;
  --cream-200: #f1eadc;
  --ink: #241a14;
  --muted: #71665c;
  --line: rgba(79, 45, 27, .16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 60px rgba(43, 29, 22, .13);
  --max: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-100);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", Meiryo, sans-serif;
  line-height: 1.8;
  letter-spacing: .02em;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.lhd-site { overflow: clip; }
.lhd-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 246, 234, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(79,45,27,.12);
}
.admin-bar .lhd-header { top: 32px; }
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--green-900);
  min-width: 210px;
}
.brand img { width: 54px; height: auto; }
.brand span { font-size: 19px; line-height: 1.25; }
.global-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: var(--wood-900);
}
.global-nav a:hover { color: var(--green-800); }
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.phone-mini { font-weight: 800; color: var(--wood-900); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45em;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green-800); color: white; box-shadow: 0 10px 25px rgba(31,86,56,.22); }
.btn-secondary { background: rgba(255,255,255,.94); color: var(--green-900); border-color: rgba(31,86,56,.25); }
.btn-phone { background: var(--wood-800); color: #fff; }
.hero {
  position: relative;
  min-height: 760px;
  color: #fff;
  overflow: hidden;
  background: #111;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14,31,20,.84) 0%, rgba(14,31,20,.60) 43%, rgba(14,31,20,.24) 100%), var(--hero-img) center / cover no-repeat;
  transform: scale(1.02);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(0deg, var(--cream-100) 0%, rgba(251,246,234,0) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  min-height: 760px;
  padding: 120px 24px 120px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 420px;
  align-items: center;
  gap: 52px;
}
.hero-label {
  display: inline-flex;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 999px;
  padding: 8px 22px;
  font-weight: 800;
  color: #fff !important;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(4px);
  margin-bottom: 26px;
}
.hero-logo-title {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 22px;
}
.hero-logo-title img { width: 118px; flex: 0 0 auto; filter: drop-shadow(0 10px 25px rgba(0,0,0,.25)); }
.hero h1 {
  margin: 0;
  font-size: clamp(58px, 7.4vw, 96px);
  line-height: 1;
  letter-spacing: .005em;
  color: #fff !important;
  text-shadow: 0 8px 36px rgba(0,0,0,.38);
  word-break: keep-all;
  overflow-wrap: normal;
}
.hero h1 span {
  display: block;
  white-space: nowrap;
}
.hero-sub {
  margin: 0 0 18px;
  font-size: clamp(23px, 2.55vw, 30px);
  line-height: 1.45;
  font-weight: 800;
  color: #fff !important;
  word-break: keep-all;
  overflow-wrap: normal;
}
.hero-sub span {
  display: inline-block;
  white-space: nowrap;
}
.hero-sub span + span::before {
  content: "・";
}
.hero-copy {
  max-width: 760px;
  margin: 0 0 28px;
  font-size: 18px;
  color: rgba(255,255,255,.96) !important;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-side { display: grid; justify-items: center; gap: 24px; }
.price-card {
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 20%, #fff 0%, #fffaf0 62%, #f5ead7 100%);
  border: 10px solid var(--gold-500);
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
  color: var(--wood-900);
  display: grid;
  place-items: center;
  text-align: center;
}
.price-card small { display: block; font-size: 15px; line-height: 1.5; font-weight: 800; }
.price-card strong { display: block; font-size: 46px; line-height: 1.05; color: #96351e; margin: 10px 0; letter-spacing: .015em; }
.doctor-card {
  width: min(370px, 100%);
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  align-items: center;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  border-radius: 999px;
  padding: 12px 20px 12px 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,.18);
}
.doctor-card img { width: 82px; height: 82px; border-radius: 50%; object-fit: cover; border: 6px solid #fff; }
.doctor-card b { display: block; color: var(--green-900); font-size: 16px; line-height: 1.45; }
.doctor-card span { display: block; font-size: 13px; line-height: 1.55; color: var(--wood-900); }
.section { padding: 96px 0; }
.section.alt { background: var(--cream-200); }
.section.dark { background: var(--green-900); color: #fff; }
.container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 410px);
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}
.eyebrow {
  display: block;
  color: var(--gold-500);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .16em;
  margin-bottom: 12px;
}
h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.38;
  letter-spacing: .012em;
  color: var(--green-900);
  font-feature-settings: "palt" 1;
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: normal;
}
.dark h2 { color: #fff; }
.lead { margin: 0; color: var(--muted); font-size: 16px; }
.dark .lead { color: rgba(255,255,255,.78); }
.card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(79,45,27,.08);
}
.card-img { width: 100%; height: 210px; object-fit: cover; }
.card-body { padding: 22px; }
.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}
.card h3, .feature h3, .flow-item h3 {
  margin: 0 0 10px;
  color: var(--green-900);
  line-height: 1.45;
}
.card p, .feature p, .flow-item p { margin: 0; color: var(--muted); font-size: 14px; }
.big-message {
  border-radius: var(--radius-lg);
  padding: 52px;
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 48px;
  align-items: center;
  background: linear-gradient(90deg, rgba(24,63,43,.96), rgba(24,63,43,.82)), var(--message-img) center / cover no-repeat;
  color: #fff;
  box-shadow: var(--shadow);
}
.big-message h2 { color: #fff; font-size: clamp(28px, 2.55vw, 38px); line-height: 1.46; letter-spacing: .006em; }
.big-message p { color: rgba(255,255,255,.86); margin-bottom: 0; }
.big-message .quote { font-size: clamp(26px, 3vw, 38px); font-weight: 900; line-height: 1.45; color: #fff; border-left: 1px solid rgba(255,255,255,.35); padding-left: 36px; }
.h-nowrap { white-space: nowrap; }
.sp-br { display: none; }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.feature {
  background: #fff;
  border: 1px solid rgba(79,45,27,.10);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 12px 36px rgba(43,29,22,.08);
}
.feature-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--green-800);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 18px;
}
.diagnosis-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 68px; align-items: center; }
.check-list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px 22px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 800;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .72em;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold-500);
}
.doc-mock {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 26px 70px rgba(43,29,22,.18);
  transform: rotate(2.5deg);
  border: 1px solid rgba(79,45,27,.10);
}
.doc-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 22px; border-bottom: 2px solid var(--green-900); padding-bottom: 18px; margin-bottom: 24px; }
.doc-top h3 { margin: 0 0 4px; color: var(--green-900); }
.doc-top p { margin: 0; color: var(--muted); font-size: 13px; }
.doc-top img { width: 56px; }
.doc-row { display: grid; grid-template-columns: 92px 1fr; gap: 10px; align-items: center; margin-bottom: 14px; }
.doc-label { font-size: 12px; color: var(--muted); font-weight: 800; }
.doc-line { height: 11px; border-radius: 999px; background: #e8e0d1; }
.flow { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; counter-reset: flow; }
.flow-item {
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 58px 22px 24px;
  box-shadow: 0 12px 36px rgba(43,29,22,.08);
}
.flow-item::before {
  counter-increment: flow;
  content: counter(flow);
  position: absolute;
  top: 20px; left: 22px;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--green-800);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.before-after { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.ba-column {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ba-title { background: var(--green-800); color: #fff !important; padding: 26px 28px; }
.ba-title small { display: block; color: var(--gold-300) !important; font-size: 18px; font-weight: 900; line-height: 1.1; margin-bottom: 8px; }
.ba-title h3 { color: #fff !important; -webkit-text-fill-color: #fff !important; margin: 0; font-size: clamp(24px, 2.2vw, 32px); line-height: 1.25; letter-spacing: .02em; }
.ba-photos { display: grid; }
.ba-photos img { width: 100%; height: 230px; object-fit: cover; border-bottom: 2px solid #fff; }
.ba-text { margin: 0; padding: 24px 28px 28px; color: var(--muted); font-weight: 700; }
.works-list { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.work-chip {
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 10px 14px;
  text-align: center;
  font-weight: 800;
  color: #fff;
}
.profile-wrap { display: grid; grid-template-columns: 430px minmax(0,1fr); gap: 70px; align-items: center; }
.profile-visual { position: relative; }
.portrait { width: 100%; border-radius: 28px; box-shadow: var(--shadow); object-fit: cover; }
.profile-badge {
  position: absolute;
  right: -22px; bottom: -22px;
  width: 132px; height: 132px;
  border-radius: 50%;
  background: var(--green-800);
  color: #fff;
  display: grid; place-items: center;
  text-align: center;
  border: 7px solid var(--cream-100);
  box-shadow: var(--shadow);
  line-height: 1.24;
  font-weight: 800;
}
.profile-badge strong { font-size: 34px; color: var(--gold-300); }
.profile-meta { padding: 0; margin: 24px 0; list-style: none; }
.profile-meta li { padding: 13px 0; border-bottom: 1px solid var(--line); font-weight: 700; }
.experience-photos { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin-top: 26px; }
.experience-photos img { height: 110px; width: 100%; object-fit: cover; border-radius: 12px; }
.faq-list { display: grid; gap: 12px; }
details {
  background: #fff;
  border: 1px solid rgba(79,45,27,.10);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(43,29,22,.06);
  overflow: hidden;
}
summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 800;
  color: var(--green-900);
}
summary::-webkit-details-marker { display: none; }
details p { margin: 0; padding: 0 22px 20px; color: var(--muted); }
.contact {
  position: relative;
  color: #fff;
  background: linear-gradient(90deg, rgba(24,63,43,.92), rgba(24,63,43,.72)), var(--contact-img) center / cover no-repeat;
}
.contact h2 { color: #fff; }
.contact .lead { color: rgba(255,255,255,.78); }
.contact-grid { display: grid; grid-template-columns: 360px minmax(0,1fr); gap: 54px; align-items: start; }
.contact-info {
  background: rgba(43,29,22,.5);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  padding: 30px;
  backdrop-filter: blur(8px);
}
.contact-phone { display: block; font-size: 40px; line-height: 1.05; font-weight: 900; color: var(--gold-300); margin: 16px 0 8px; }
.contact-info dl { margin: 28px 0 0; display: grid; gap: 14px; }
.contact-info div { display: grid; gap: 3px; }
.contact-info dt { color: var(--gold-300); font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.contact-info dd { margin: 0; color: #fff; font-weight: 700; }
.contact-form {
  background: rgba(255,255,255,.96);
  color: var(--ink);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 25px 60px rgba(0,0,0,.22);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.form-field.full { grid-column: 1 / -1; }
label { display: block; font-size: 13px; font-weight: 900; color: var(--green-900); margin-bottom: 6px; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(79,45,27,.18);
  border-radius: 10px;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
}
textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 12px; color: var(--muted); margin: 6px 0 0; }
.form-message { border-radius: 12px; padding: 14px 18px; margin-bottom: 18px; font-weight: 800; }
.form-message.success { background: #eef7f0; color: var(--green-900); }
.form-message.error { background: #fff0ed; color: #96351e; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.site-footer {
  background: var(--wood-950);
  color: rgba(255,255,255,.72);
  padding: 28px 0;
}
.footer-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 13px;
}
.footer-logo { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; }
.footer-logo img { width: 34px; }
.screen-reader-text { position: absolute!important; clip: rect(1px,1px,1px,1px); padding: 0!important; border: 0!important; height: 1px!important; width: 1px!important; overflow: hidden; }
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-side { justify-items: start; grid-template-columns: auto auto; }
  .card-grid, .works-list { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .flow { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .before-after, .feature-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .section-head { grid-template-columns: 1fr; }
}
@media (max-width: 782px) {
  .admin-bar .lhd-header { top: 46px; }
}
@media (max-width: 760px) {
  .lhd-header { position: static; }
  .header-inner { flex-wrap: wrap; padding: 12px 18px; }
  .brand { min-width: auto; }
  .brand img { width: 42px; }
  .brand span { font-size: 16px; }
  .global-nav { order: 3; width: 100%; overflow-x: auto; gap: 16px; padding-bottom: 4px; }
  .header-cta .phone-mini { display: none; }
  .header-cta .btn { padding: 10px 14px; font-size: 13px; }
  .hero { min-height: auto; }
  .hero-inner { min-height: auto; padding: 72px 20px 96px; gap: 34px; }
  .hero-logo-title { gap: 16px; align-items: flex-start; }
  .hero-logo-title img { width: 68px; margin-top: 6px; }
  .hero h1 { font-size: clamp(42px, 14vw, 64px); }
  .hero-sub { font-size: 21px; }
  .hero-sub span { display: block; }
  .hero-sub span + span::before { content: ""; }
  .hero-copy { font-size: 15px; }
  .hero-side { grid-template-columns: 1fr; }
  .price-card { width: 250px; height: 250px; border-width: 8px; }
  .price-card strong { font-size: 34px; }
  .doctor-card { border-radius: 22px; }
  .section { padding: 68px 0; }
  .container { width: min(100% - 34px, var(--max)); }
  h2 { font-size: clamp(25px, 7vw, 31px); line-height: 1.45; letter-spacing: 0; }
  .big-message { grid-template-columns: 1fr; padding: 32px 24px; gap: 24px; }
  .big-message h2 { font-size: clamp(24px, 6.6vw, 29px); line-height: 1.52; }
  .big-message .quote { border-left: 0; border-top: 1px solid rgba(255,255,255,.28); padding: 22px 0 0; font-size: 25px; }
  .card-grid, .feature-grid, .flow, .before-after, .works-list, .check-list, .contact-grid, .diagnosis-wrap, .profile-wrap { grid-template-columns: 1fr; }
  .card-img { height: 230px; }
  .flow-item { padding-top: 56px; }
  .doc-mock { transform: none; }
  .ba-photos img { height: 210px; }
  .profile-badge { right: 12px; bottom: -18px; }
  .experience-photos { grid-template-columns: 1fr 1fr 1fr; }
  .contact-phone { font-size: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .sp-br { display: block; }
}
@media (max-width: 420px) {
  .hero-actions .btn { width: 100%; }
  .experience-photos { grid-template-columns: 1fr; }
}


/* v1.2 hero title wrap fix */
.hero h1,
.hero h1 span,
.hero-sub,
.hero-sub span {
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}
.hero h1 span {
  display: block !important;
  white-space: nowrap !important;
}
.hero-sub span {
  display: inline-block;
  white-space: nowrap !important;
}
@media (max-width: 760px) {
  .hero-sub span { display: block !important; }
  .hero-sub span + span::before { content: "" !important; }
}


/* v1.4 mobile hero subcopy overflow fix */
.hero-main {
  min-width: 0;
}
.hero-sub {
  max-width: 100%;
  min-width: 0;
}
.hero-sub span {
  display: inline-block;
  white-space: nowrap;
}
.hero-sub span + span::before {
  content: "・";
}
@media (max-width: 760px) {
  .hero-inner {
    overflow: hidden;
  }
  .hero-main,
  .hero-sub,
  .hero-copy,
  .hero-actions {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .hero-sub {
    display: block;
    font-size: clamp(20px, 5.4vw, 23px) !important;
    line-height: 1.42 !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }
  .hero-sub span,
  .hero-sub span.hero-sub-line {
    display: block !important;
    width: fit-content;
    max-width: 100%;
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }
  .hero-sub span + span::before {
    content: "" !important;
  }
}
@media (max-width: 420px) {
  .hero-sub {
    font-size: clamp(18px, 5.1vw, 20px) !important;
    line-height: 1.48 !important;
  }
  .hero-copy {
    font-size: 14px !important;
    line-height: 1.85 !important;
  }
}
