* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  color: #333;
  background: #e8edf2;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}
:root {
  --pri: #2563a8;
  --pri-d: #1e4374;
  --pri-l: #eaf0f8;
  --acc: #87a7cf;
  --acc-l: #f1f5fa;
  --gold: #c9a96e;
  --txt: #2d2d2d;
  --txs: #666;
  --txl: #999;
  --bg: #fafafa;
  --bdr: #e8e8e8;
  --grn: #06c755;
}
.page {
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* ===== STICKY HEADER ===== */
.hd {
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid var(--bdr);
  transition: transform 0.3s ease;
  transform: translateX(-50%) translateY(-100%);
}
.hd.show {
  transform: translateX(-50%) translateY(0);
}
.hd-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
}
.hd .logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--pri);
}
.hd .logo small {
  font-size: 10px;
  color: var(--txl);
  display: block;
  font-weight: 400;
  margin-top: -2px;
}
.hd-btn {
  background: var(--grn);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(6, 199, 85, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(6, 199, 85, 0);
  }
}
.gnav {
  display: flex;
  border-top: 1px solid var(--bdr);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.gnav::-webkit-scrollbar {
  display: none;
}
.gnav a {
  flex-shrink: 0;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 600;
  color: var(--txs);
  text-decoration: none;
  white-space: nowrap;
  border-right: 1px solid var(--bdr);
}
.gnav a:last-child {
  border-right: none;
}

/* ===== COUPON BANNER (image) ===== */
.coupon-banner {
  display: block;
  width: 100%;
  line-height: 0;
  background: #fff;
}
.coupon-banner img {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== FLOATING CTA ===== */
.float-cta {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  z-index: 100;
  padding: 10px 16px 14px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--bdr);
}
.float-cta a {
  display: block;
  text-align: center;
  padding: 17px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(180deg, #0bdb62 0%, #06c755 48%, #03a542 100%);
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.45),
    inset 0 -3px 0 rgba(0, 0, 0, 0.12),
    0 2px 0 #028a36,
    0 6px 16px rgba(6, 199, 85, 0.4),
    0 10px 24px rgba(6, 199, 85, 0.25);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    filter 0.15s ease;
}
.float-cta a::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 4px;
  height: 42%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  border-radius: 50px;
  pointer-events: none;
}
.float-cta a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  animation: shine 3s infinite;
  pointer-events: none;
}
.float-cta a:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.5),
    inset 0 -3px 0 rgba(0, 0, 0, 0.12),
    0 4px 0 #028a36,
    0 10px 22px rgba(6, 199, 85, 0.5),
    0 16px 32px rgba(6, 199, 85, 0.3);
}
.float-cta a:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.3),
    inset 0 -2px 0 rgba(0, 0, 0, 0.12),
    0 1px 0 #028a36,
    0 3px 10px rgba(6, 199, 85, 0.4);
}
@keyframes shine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

main {
  padding-top: 0;
  padding-bottom: 68px;
}
section {
  padding: 0;
}

.img-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pri);
  font-size: 12px;
  text-align: center;
  border: 2px dashed var(--acc);
  border-radius: 16px;
  background: linear-gradient(135deg, #d8e2ef, #e6edf5);
}

/* ===== CTA BUTTON (3D) ===== */
.cta {
  display: block;
  width: 100%;
  background: linear-gradient(180deg, #0bdb62 0%, #06c755 48%, #03a542 100%);
  color: #fff;
  border: none;
  padding: 19px 16px;
  border-radius: 50px;
  font-size: 19px;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.45),
    inset 0 -3px 0 rgba(0, 0, 0, 0.12),
    0 2px 0 #028a36,
    0 6px 16px rgba(6, 199, 85, 0.35),
    0 10px 28px rgba(6, 199, 85, 0.22);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    filter 0.15s ease;
  transform: translateZ(0);
}
.cta::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 4px;
  height: 42%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  border-radius: 50px;
  pointer-events: none;
}
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  animation: shine 3s infinite;
  pointer-events: none;
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.5),
    inset 0 -3px 0 rgba(0, 0, 0, 0.12),
    0 4px 0 #028a36,
    0 10px 22px rgba(6, 199, 85, 0.45),
    0 16px 34px rgba(6, 199, 85, 0.28);
  filter: brightness(1.03);
}
.cta:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.3),
    inset 0 -2px 0 rgba(0, 0, 0, 0.12),
    0 1px 0 #028a36,
    0 3px 10px rgba(6, 199, 85, 0.4);
}
.cta-sub {
  font-size: 10px;
  color: var(--txl);
  text-align: center;
  margin-top: 8px;
}
.cta-sm {
  padding: 15px;
  font-size: 16px;
  border-radius: 50px;
}

/* ===== FIRST VIEW (image + HTML overlay) ===== */
.fv {
  position: relative;
  width: 100%;
  aspect-ratio: 960/1191;
  background: #eaf0f8;
  overflow: hidden;
}
.fv-bg {
  position: absolute;
  inset: 0;
  background: url("../diet-oz-lp-en-v01/assets/img/fv_oz_v1_web.webp") center/cover no-repeat;
  background-color: #eaf0f8;
}
.fv-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 22px 16px 0;
  pointer-events: none;
}
.fv-overlay > * {
  max-width: 48%;
}
.fv-kicker {
  display: inline-block;
  align-self: flex-start;
  background: linear-gradient(135deg, var(--pri), var(--pri-d));
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 5px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(30, 67, 116, 0.25);
  max-width: none;
  white-space: nowrap;
}
.fv-h1 {
  font-family: "Inter", sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--pri-d);
  letter-spacing: -1.2px;
  line-height: 1;
  margin: 0 0 4px;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.5);
}
.fv-subtitle {
  font-size: 12px;
  font-weight: 600;
  color: var(--pri);
  letter-spacing: 0.3px;
  margin-bottom: 14px;
  white-space: nowrap;
}
.fv-subtitle b {
  color: var(--pri-d);
  font-weight: 700;
}
.fv-script {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 19px;
  color: var(--pri);
  line-height: 1.2;
  letter-spacing: 0.3px;
  margin-top: 2px;
  opacity: 0.9;
}
/* Floating trust badges on FV — glass bubble style */
.fv-stats {
  position: absolute;
  right: 10px;
  bottom: 7%;
  display: flex;
  flex-direction: column;
  gap: 9px;
  z-index: 5;
  pointer-events: none;
}
.fv-stat {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 32% 28%,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.9) 42%,
    rgba(234, 240, 248, 0.82) 100%
  );
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  box-shadow:
    0 8px 20px rgba(30, 67, 116, 0.28),
    0 2px 5px rgba(30, 67, 116, 0.14),
    inset 0 -4px 10px rgba(37, 99, 168, 0.14),
    inset 0 2px 4px rgba(255, 255, 255, 0.75),
    inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}
.fv-stat::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 14%;
  width: 46%;
  height: 32%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0) 65%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}
.fv-stat::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: 18%;
  width: 28%;
  height: 14%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}
.fv-stat .v {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: var(--pri-d);
  line-height: 1;
  letter-spacing: -0.3px;
  position: relative;
  z-index: 1;
}
.fv-stat .l {
  font-size: 7.5px;
  font-weight: 700;
  color: var(--pri);
  margin-top: 3px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

/* ===== FV PRICE BAR ===== */
.fv-price-bar {
  background: linear-gradient(180deg, #fff 0%, #f5f8fc 100%);
  padding: 14px 20px 20px;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(30, 67, 116, 0.06);
  position: relative;
  z-index: 2;
}
.fv-price-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--pri), var(--acc));
}
.fv-price-discount {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.fv-price-discount .chip {
  display: inline-block;
  background: linear-gradient(135deg, #3d7fbf, #1e4374);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 50px;
  box-shadow: 0 2px 6px rgba(37, 99, 168, 0.3);
}
.fv-price-discount .was {
  font-size: 13px;
  color: var(--txl);
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}
.fv-price-main {
  font-size: 56px;
  font-weight: 900;
  color: var(--pri-d);
  line-height: 1.05;
  letter-spacing: -1.5px;
}
.fv-price-main .yen {
  font-size: 26px;
  vertical-align: top;
  font-weight: 800;
}
.fv-price-main .from {
  font-size: 14px;
  color: var(--txs);
  font-weight: 400;
}
.fv-price-tax {
  font-size: 11px;
  color: var(--txl);
  margin-top: 4px;
}
.fv-price-label {
  font-size: 12px;
  color: var(--txs);
  font-weight: 600;
  margin-bottom: 2px;
}
.fv-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 14px 0;
}
.fv-badge-item {
  text-align: center;
}
.fv-badge-item .val {
  font-size: 16px;
  font-weight: 900;
  color: var(--pri);
}
.fv-badge-item .lbl {
  font-size: 9px;
  color: var(--txl);
  display: block;
}
.fv-cta-area {
  padding: 0 0 8px;
}

/* ===== LP MENU ===== */
.lp-menu {
  background: #eef2f6;
  padding: 32px 20px 36px;
  text-align: center;
  border-top: 1px solid rgba(37, 99, 168, 0.08);
  border-bottom: 1px solid rgba(37, 99, 168, 0.08);
}
.lp-menu-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--pri-d);
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}
.lp-menu-title::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--pri), var(--acc));
  margin: 10px auto 18px;
  border-radius: 2px;
}
.lp-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.lp-menu-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(37, 99, 168, 0.18);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--pri-d);
  letter-spacing: -0.1px;
  box-shadow: 0 1px 3px rgba(30, 67, 116, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.lp-menu-grid a:hover {
  border-color: var(--pri);
  background: var(--pri-l);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 67, 116, 0.14);
}
.lp-menu-grid a::after {
  content: "›";
  font-size: 20px;
  color: var(--pri);
  font-weight: 400;
  line-height: 1;
  margin-left: 8px;
}

/* ===== WHO IT'S FOR ===== */
.target {
  background: linear-gradient(180deg, #eaf0f8 0%, #eef3f9 55%, #f1f5fa 100%);
  padding: 44px 20px 40px;
  text-align: center;
  position: relative;
}
.target h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--pri-d);
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}
.target h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--pri), var(--acc));
  margin: 10px auto 22px;
  border-radius: 2px;
}
.target-icons {
  display: flex;
  gap: 10px;
}
.target-icon {
  flex: 1;
  background: linear-gradient(180deg, #fff 0%, #f5f8fc 100%);
  border-radius: 18px;
  padding: 20px 8px 16px;
  text-align: center;
  box-shadow:
    0 2px 10px rgba(30, 67, 116, 0.08),
    inset 0 0 0 1px rgba(37, 99, 168, 0.08);
}
.target-icon .ti-ico {
  margin: 4px auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pri);
  opacity: 0.85;
}
.target-icon .ti-ico svg {
  width: 44px;
  height: 44px;
}
.target-icon p {
  font-size: 12px;
  font-weight: 600;
  color: var(--txt);
  line-height: 1.4;
}
.target-icon p em {
  font-style: normal;
  color: var(--pri-d);
  font-weight: 800;
}

/* ===== GLP-1 ===== */
.glp1 {
  background: linear-gradient(180deg, #eaf0f8 0%, #f3f6fb 55%, #fff 100%);
  padding: 48px 20px 44px;
  text-align: center;
}
.glp1 .kicker {
  font-size: 11px;
  color: var(--acc);
  letter-spacing: 3px;
  margin-bottom: 8px;
  font-weight: 700;
}
.glp1 h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--txt);
  margin-bottom: 28px;
  line-height: 1.45;
  letter-spacing: -0.3px;
}
.glp1 h2 em {
  font-style: normal;
  color: var(--pri-d);
}
.glp1 .oneliner {
  font-size: 13px;
  color: var(--txs);
  line-height: 1.7;
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
}
.glp1-visual {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  margin: 4px 0 24px;
  box-shadow:
    0 8px 24px rgba(30, 67, 116, 0.16),
    0 2px 6px rgba(30, 67, 116, 0.08);
}

/* ===== SHARED SECTION HEADING (flow→final) ===== */
.flow h2,
.inj-guide h2,
.ba h2,
.drugs h2,
.other-meds h2,
.doc h2,
.faq h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--pri-d);
  letter-spacing: -0.3px;
  margin-bottom: 4px;
  line-height: 1.45;
}
.flow h2::after,
.inj-guide h2::after,
.ba h2::after,
.drugs h2::after,
.other-meds h2::after,
.doc h2::after,
.faq h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--pri), var(--acc));
  margin: 10px auto 22px;
  border-radius: 2px;
}
.flow h2 em,
.inj-guide h2 em,
.ba h2 em,
.drugs h2 em,
.other-meds h2 em,
.doc h2 em,
.faq h2 em {
  font-style: normal;
  color: var(--pri);
}
.sec-kicker {
  font-size: 11px;
  color: var(--acc);
  letter-spacing: 3px;
  margin-bottom: 8px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
.sec-sub {
  font-size: 13px;
  color: var(--txs);
  text-align: center;
  margin: -12px 0 22px;
  line-height: 1.65;
}

/* ===== HOW IT WORKS ===== */
.flow {
  background: var(--bg);
  padding: 48px 20px 44px;
  text-align: center;
}
.flow-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 20px;
  margin-bottom: 12px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
.flow-num {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--pri), #4079b8);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(30, 67, 116, 0.22);
}
.flow-card-text {
  text-align: left;
}
.flow-card-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 3px;
  letter-spacing: -0.2px;
}
.flow-card-text p {
  font-size: 13px;
  color: var(--txs);
  line-height: 1.55;
}
.flow-card-text em {
  font-style: normal;
  color: var(--pri);
  font-weight: 700;
}

/* ===== TRUST ===== */
.trust-sec {
  padding: 48px 20px 44px;
  text-align: center;
}
.trust-sec h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--pri-d);
  letter-spacing: -0.3px;
  line-height: 1.45;
  margin-bottom: 4px;
}
.trust-sec h2 em {
  font-style: normal;
  color: var(--pri);
}
.trust-sec h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--pri), var(--acc));
  margin: 10px auto 18px;
  border-radius: 2px;
}
.trust-sec p {
  font-size: 13px;
  color: var(--txs);
  margin-bottom: 16px;
  line-height: 1.65;
}
.trust-sec .big-num {
  font-size: 56px;
  font-weight: 900;
  color: var(--pri);
  line-height: 1;
  letter-spacing: -1px;
}
.trust-sec .big-num span {
  font-size: 20px;
}
.trust-visual {
  height: 180px;
  margin: 16px -20px 0;
}
.bg-white {
  background: #fff;
}
.bg-grad {
  background: linear-gradient(135deg, var(--pri-l), var(--acc-l));
}
.bg-pink {
  background: var(--acc-l);
}

/* ===== ONLINE-CARE SPLIT (doctor | patient) ===== */
.care-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 22px -20px 14px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 6px 22px rgba(30, 67, 116, 0.14),
    0 1px 3px rgba(30, 67, 116, 0.08);
}
.care-split::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 255, 255, 0.55) 18%,
    rgba(255, 255, 255, 0.55) 82%,
    transparent
  );
  z-index: 2;
  pointer-events: none;
}
.care-side {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--pri-l);
}
.care-side img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.care-tag {
  position: absolute;
  bottom: 10px;
  z-index: 3;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.4px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.care-doctor .care-tag {
  right: 10px;
}
.care-patient .care-tag {
  left: 10px;
}
.care-tag::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.85;
}
.care-caption {
  font-size: 12px;
  color: var(--txs);
  margin-top: 10px;
  line-height: 1.6;
  letter-spacing: 0.1px;
}
.care-caption strong {
  color: var(--pri-d);
  font-weight: 700;
}

/* ===== INJECTION GUIDE ===== */
.inj-guide {
  background: #fff;
  padding: 48px 20px 44px;
  text-align: center;
}
.inj-guide .callout {
  background: var(--pri-l);
  border-radius: 16px;
  padding: 20px;
  margin: 16px 0 4px;
}
.inj-guide .callout .big {
  font-size: 18px;
  font-weight: 800;
  color: var(--pri-d);
  line-height: 1.45;
  letter-spacing: -0.2px;
}
.inj-guide .callout p {
  font-size: 13px;
  color: var(--txs);
  margin-top: 8px;
  line-height: 1.6;
}

/* ===== BEFORE / AFTER ===== */
.ba {
  background: linear-gradient(180deg, #fff, var(--acc-l));
  padding: 48px 20px 44px;
  text-align: center;
}
.ba h2::after {
  margin: 10px auto 6px;
}
.ba-sub {
  font-size: 12px;
  color: var(--txl);
  margin-bottom: 20px;
}
.ba-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.ba-scroll::-webkit-scrollbar {
  display: none;
}
.ba-card {
  min-width: 280px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  scroll-snap-align: start;
  flex-shrink: 0;
}
.ba-photos {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.ba-ph {
  flex: 1;
  height: 140px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  background: #edf1f5;
}
.ba-ph img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.ba-ph.before {
  background: #efe6e6;
}
.ba-ph.after {
  background: #e6efe8;
}
.ba-label {
  position: absolute;
  top: 6px;
  left: 6px;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.ba-ph.before .ba-label {
  background: rgba(80, 80, 80, 0.85);
}
.ba-ph.after .ba-label {
  background: rgba(37, 99, 168, 0.9);
}
.ba-arrow {
  font-size: 14px;
  color: var(--pri);
  flex-shrink: 0;
}
.ba-meta {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 4px;
}
.ba-tag {
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--pri-l);
  color: var(--pri);
  font-weight: 600;
}
.ba-period {
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 50px;
  background: #f0f0f0;
  color: var(--txs);
  font-weight: 600;
}
.ba-result {
  font-size: 32px;
  font-weight: 900;
  color: #e53935;
  margin: 4px 0 2px;
}
.ba-detail {
  font-size: 11px;
  color: var(--txs);
}
.ba-note {
  font-size: 9px;
  color: var(--txl);
  margin-top: 16px;
  line-height: 1.5;
}
.ba-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}
.ba-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(37, 99, 168, 0.3);
  transition: all 0.35s ease;
  cursor: pointer;
  border: none;
  padding: 0;
}
.ba-dot.active {
  background: var(--pri);
  width: 20px;
  border-radius: 3px;
}

/* ===== DRUG CARDS ===== */
.drugs {
  background: #fff;
  padding: 48px 20px 44px;
}
.drugs h2 {
  text-align: center;
}
.drugs h2::after {
  margin: 10px auto 8px;
}
.drugs .drugs-sub {
  font-size: 13px;
  color: var(--txs);
  text-align: center;
  margin-bottom: 22px;
  line-height: 1.6;
}
.drug-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--bdr);
}
.drug-card.main {
  border: 2px solid var(--pri);
  box-shadow: 0 4px 20px rgba(37, 99, 168, 0.15);
}
.drug-card-head {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.drug-card.main .drug-card-head {
  background: linear-gradient(135deg, var(--pri), #4079b8);
  color: #fff;
}
.drug-card .drug-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pri-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.drug-card.main .drug-icon {
  background: rgba(255, 255, 255, 0.2);
}
.drug-card .drug-label h3 {
  font-size: 16px;
  font-weight: 800;
}
.drug-card .drug-label p {
  font-size: 10px;
  opacity: 0.85;
}
.drug-card .drug-tags {
  display: flex;
  gap: 4px;
  padding: 0 16px;
  flex-wrap: wrap;
}
.drug-tag {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 50px;
  background: var(--pri-l);
  color: var(--pri);
  font-weight: 600;
}
.drug-card.main .drug-tag {
  background: rgba(37, 99, 168, 0.1);
}
.drug-card-body {
  padding: 12px 16px 16px;
  text-align: center;
}
.drug-price {
  font-size: 36px;
  font-weight: 900;
  color: var(--pri);
  line-height: 1.1;
}
.drug-price .yen {
  font-size: 16px;
  vertical-align: top;
}
.drug-price .unit {
  font-size: 12px;
  color: var(--txs);
  font-weight: 400;
}
.drug-card.main .drug-price {
  color: #e53935;
}
.drug-note {
  font-size: 10px;
  color: var(--txl);
  margin-top: 4px;
}
.drug-cta {
  margin-top: 10px;
}

.price-detail-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  padding: 10px;
  background: var(--pri-l);
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: var(--pri);
  border: 1px solid rgba(37, 99, 168, 0.2);
}
.price-detail-toggle::after {
  content: "▼";
  font-size: 10px;
  transition: transform 0.3s;
}
.price-detail-toggle.open::after {
  transform: rotate(180deg);
}
.price-detail-panel {
  display: none;
  margin-top: 12px;
}
.price-detail-panel.open {
  display: block;
}

.ptable {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  text-align: center;
  border: 1px solid var(--bdr);
  border-radius: 12px;
  overflow: hidden;
}
.ptable th {
  background: var(--pri);
  color: #fff;
  padding: 10px 6px;
  font-size: 11px;
  font-weight: 700;
}
.ptable th:first-child {
  background: #1e4374;
}
.ptable td {
  padding: 10px 6px;
  border-bottom: 1px solid var(--bdr);
  vertical-align: top;
}
.ptable tr:last-child td {
  border-bottom: none;
}
.ptable .plan-name {
  font-weight: 700;
  color: var(--txt);
  font-size: 11px;
  text-align: left;
  background: var(--bg);
}
.ptable .cp-price {
  font-size: 20px;
  font-weight: 900;
  color: #e53935;
  line-height: 1.2;
}
.ptable .cp-price small {
  font-size: 10px;
  font-weight: 400;
  color: var(--txs);
  display: block;
}
.ptable .regular {
  font-size: 10px;
  color: var(--txl);
  line-height: 1.4;
  margin-top: 4px;
}
.ptable .recommend {
  position: relative;
  padding-top: 22px;
}
.ptable .recommend::before {
  content: "Best value";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #e53935;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 2px 8px;
  border-radius: 0 0 6px 6px;
  white-space: nowrap;
  line-height: 1.2;
}

.inj-table {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--bdr);
}
.inj-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--bdr);
  gap: 8px;
}
.inj-row:last-child {
  border-bottom: none;
}
.inj-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--txt);
}
.inj-name span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--txl);
  margin-top: 1px;
}
.inj-price {
  font-size: 15px;
  font-weight: 800;
  color: var(--pri);
  white-space: nowrap;
}
.inj-price small {
  font-size: 10px;
  font-weight: 400;
  color: var(--txl);
}

.other-meds {
  background: var(--bg);
  padding: 48px 20px 44px;
}
.other-meds h2 {
  text-align: center;
}
.other-meds .med-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--txs);
  margin: 18px 0 6px;
  padding-left: 4px;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.other-meds .med-label svg {
  color: var(--pri);
  flex-shrink: 0;
}

/* ===== DOCTOR ===== */
.doc {
  background: var(--bg);
  padding: 48px 20px 44px;
}
.doc h2 {
  text-align: center;
}
.doc-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  padding: 22px;
  box-shadow: 0 2px 12px rgba(30, 67, 116, 0.06);
}
.doc-top {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}
.doc-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #e0e0e0;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow:
    0 2px 8px rgba(30, 67, 116, 0.12),
    inset 0 0 0 2px #fff;
}
.doc-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.doc-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--txt);
  letter-spacing: -0.2px;
}
.doc-info .title {
  font-size: 10px;
  color: var(--pri);
  margin: 2px 0 4px;
  line-height: 1.45;
}
.doc-message {
  font-size: 13px;
  color: var(--txs);
  line-height: 1.75;
  margin-bottom: 14px;
}
.doc-detail-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px;
  background: var(--bg);
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: var(--txs);
  border: 1px solid var(--bdr);
}
.doc-detail-toggle::after {
  content: "▼";
  font-size: 9px;
  transition: transform 0.3s;
}
.doc-detail-toggle.open::after {
  transform: rotate(180deg);
}
.doc-detail {
  display: none;
  margin-top: 12px;
  font-size: 11px;
  color: var(--txs);
  line-height: 1.8;
}
.doc-detail.open {
  display: block;
}
.doc-detail h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--txt);
  margin: 10px 0 4px;
}
.doc-detail h4:first-child {
  margin-top: 0;
}

/* ===== FAQ ===== */
.faq {
  background: #fff;
  padding: 48px 20px 44px;
}
.faq h2 {
  text-align: center;
}
.faq-i {
  border-bottom: 1px solid var(--bdr);
  padding: 16px 0;
  cursor: pointer;
}
.faq-q {
  font-size: 14px;
  font-weight: 700;
  color: var(--txt);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.1px;
}
.faq-q::after {
  content: "+";
  color: var(--pri);
  font-size: 20px;
  flex-shrink: 0;
  font-weight: 400;
  line-height: 1;
}
.faq-i.open .faq-q::after {
  content: "−";
}
.faq-a {
  font-size: 13px;
  color: var(--txs);
  padding-top: 10px;
  display: none;
  line-height: 1.75;
}
.faq-i.open .faq-a {
  display: block;
}

.final {
  background: linear-gradient(135deg, var(--pri), #4079b8);
  padding: 48px 20px 44px;
  text-align: center;
  color: #fff;
}
.final h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.45;
  letter-spacing: -0.3px;
}
.final p {
  font-size: 13px;
  opacity: 0.92;
  margin-bottom: 22px;
  line-height: 1.65;
}
.final .cta {
  background: #fff;
  color: var(--pri);
}
.final-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
  font-size: 11px;
  opacity: 0.9;
  flex-wrap: wrap;
}

.legal {
  background: var(--bg);
  padding: 24px 20px;
  font-size: 10px;
  color: var(--txl);
  line-height: 1.7;
}
.legal h4 {
  font-size: 11px;
  color: var(--txs);
  font-weight: 700;
  margin-bottom: 6px;
}
.legal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-bottom: 8px;
}
.ltab {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--bdr);
  background: #fff;
  color: var(--txs);
}
.ltab.on {
  background: var(--pri);
  color: #fff;
  border-color: var(--pri);
}
.ltc {
  display: none;
  background: #fff;
  border-radius: 6px;
  padding: 10px;
  font-size: 10px;
  margin-bottom: 6px;
}
.ltc.on {
  display: block;
}
.ltc h5 {
  font-size: 10px;
  color: var(--txt);
  font-weight: 700;
  margin-bottom: 4px;
}
.ir {
  display: flex;
  gap: 6px;
  margin-bottom: 3px;
}
.ir .il {
  color: var(--txs);
  font-weight: 600;
  min-width: 80px;
  flex-shrink: 0;
}
.ir .iv {
  color: var(--txl);
}

.urgency {
  background: #fff;
  border: 2px solid var(--bdr);
  border-radius: 16px;
  padding: 20px;
  margin: 0 20px;
  text-align: center;
}
.urgency .icon {
  margin-bottom: 8px;
  line-height: 0;
  color: #e53935;
}
.urgency .icon svg {
  display: inline-block;
}
.urgency p {
  font-size: 14px;
  font-weight: 700;
  color: var(--txt);
  line-height: 1.5;
}
.urgency p em {
  font-style: normal;
  color: #e53935;
}

footer {
  background: #2d2d2d;
  color: #999;
  font-size: 10px;
  text-align: center;
  padding: 20px;
}
footer a {
  color: #999;
  text-decoration: none;
  margin: 0 6px;
}
.hd .logo img {
     height: 24px;
     width: auto;
     display: block;
     margin-bottom: 2px;
   }
