@charset "UTF-8";
/* ==========================================================================
   MBD Clinic LP - style.css
   Design Rules:
     Main: #004567 / Sub: #D5EBFB / Accent: #CB0251
     BG Accent: #08121A / Font: Noto Sans JP + Merriweather
   ========================================================================== */

/* ==========================================================================
   Foundation - Reset & Variables
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* ---- Colors ---- */
  --color-main: #004567;
  --color-main-rgb: 0, 69, 103;
  --color-sub: #D5EBFB;
  --color-accent: #CB0251;
  --color-accent-rgb: 203, 2, 81;
  --color-bg-sub: #D5EBFB;
  --color-bg-accent: #08121A;
  --color-bg-white: #ffffff;
  --color-bg-gray: #F5F8FA;
  --color-text: #2C2C2C;
  --color-text-light: #5A6872;
  --color-border: #D8DEE4;
  --color-white: #ffffff;

  /* ---- Fonts ---- */
  --font-main: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-accent-en: 'Merriweather', Georgia, serif;

  /* ---- Typography (SP default / mobile-first) ---- */
  --text-h1: 28px;
  --text-h2: 24px;
  --text-h3: 21px;
  --text-h4: 17px;
  --text-body: 14px;
  --text-small: 12px;
  --text-caption: 11px;
  --line-height-base: 1.8;
  --letter-spacing-base: 0.03em;

  /* ---- Spacing ---- */
  --section-py: 80px;
  --container-px: 20px;
  --container-max: 1080px;

  /* ---- Button ---- */
  --btn-bg: #CB0251;
  --btn-color: #fff;
  --btn-radius: 0;
  --btn-shadow: 0 4px 20px rgba(203, 2, 81, 0.35);
  --btn-padding: 16px 36px;

  /* ---- Card ---- */
  --card-radius: 0;
  --card-shadow: 0 2px 12px rgba(0, 69, 103, 0.06);

  /* ---- Animation ---- */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.6s;

  /* ---- SP Fixed Bar (removed - sticky banner now) ---- */
  --sp-bar-height: 0px;
}

@media (min-width: 768px) {
  :root {
    --text-h1: 38px;
    --text-h2: 30px;
    --text-h3: 22px;
    --text-h4: 18px;
    --text-body: 15px;
    --text-small: 13px;
    --text-caption: 12px;
    --section-py: 100px;
    --container-px: 40px;
    --btn-padding: 20px 48px;
    --sp-bar-height: 0px;
  }
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
  color: var(--color-text);
  background-color: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

strong {
  font-weight: 600;
}

em {
  font-style: normal;
  font-weight: 700;
  color: var(--color-accent);
}

small {
  font-size: 0.8em;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.l-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ---------- Header ---------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 69, 103, 0.06);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}

.l-header.is-scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.l-header.is-hidden {
  transform: translateY(-100%);
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
}

@media (min-width: 768px) {
  .l-header__inner {
    padding: 16px 32px;
  }
}

.l-header__logo img {
  height: 32px;
  width: auto;
}

@media (min-width: 768px) {
  .l-header__logo img {
    height: 40px;
  }
}

.l-header__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.l-header__cta.c-btn {
  display: none;
}

@media (min-width: 768px) {
  .l-header__cta.c-btn {
    display: inline-flex;
  }
}

/* Hamburger */
.l-header__burger {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 1010;
}

.l-header__burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-main);
  border-radius: 0;
  transition: all 0.35s var(--ease-out-expo);
  transform-origin: center;
}

.l-header__burger.is-active .l-header__burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.l-header__burger.is-active .l-header__burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.l-header__burger.is-active .l-header__burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Mega Menu ---------- */
.l-mega-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  pointer-events: none;
  visibility: hidden;
}

.l-mega-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}

.l-mega-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 26, 0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.l-mega-menu.is-open .l-mega-menu__overlay {
  opacity: 1;
}

.l-mega-menu__body {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 480px;
  height: 100%;
  background: var(--color-bg-white);
  padding: 80px 24px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out-expo);
}

.l-mega-menu.is-open .l-mega-menu__body {
  transform: translateX(0);
}

@media (min-width: 768px) {
  .l-mega-menu__body {
    max-width: 100%;
    max-height: 520px;
    height: auto;
    transform: translateY(-20px);
    opacity: 0;
    padding: 100px 60px 48px;
    transition: transform 0.5s var(--ease-out-expo), opacity 0.4s ease;
  }

  .l-mega-menu.is-open .l-mega-menu__body {
    transform: translateY(0);
    opacity: 1;
  }
}

.l-mega-menu__close-wrap {
  position: absolute;
  top: 20px;
  right: 20px;
}

.l-mega-menu__close {
  font-size: 28px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  transition: color 0.3s ease;
}

.l-mega-menu__close:hover {
  color: var(--color-main);
}

.l-mega-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 768px) {
  .l-mega-menu__nav {
    flex-direction: row;
    gap: 48px;
    max-width: 1080px;
    margin: 0 auto;
  }
}

.l-mega-menu__col {
  flex: 1;
}

.l-mega-menu__col--img {
  display: none;
}

@media (min-width: 768px) {
  .l-mega-menu__col--img {
    display: block;
    flex: 1.2;
  }

  .l-mega-menu__col--img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
  }
}

.l-mega-menu__label {
  font-size: var(--text-h4);
  font-weight: 400;
  color: var(--color-main);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-sub);
}

.l-mega-menu__label-en {
  display: block;
  font-family: var(--font-accent-en);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 2px;
}

.l-mega-menu__list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 69, 103, 0.06);
}

.l-mega-menu__list a {
  display: block;
  font-size: var(--text-body);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.l-mega-menu__list a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.l-mega-menu__cta {
  margin-top: 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .l-mega-menu__cta {
    max-width: 1080px;
    margin: 32px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }
}

.l-mega-menu__tel {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .l-mega-menu__tel {
    margin-top: 0;
  }
}

.l-mega-menu__tel-label {
  font-size: var(--text-small);
  color: var(--color-text-light);
}

.l-mega-menu__tel-num {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-main);
  letter-spacing: 0.04em;
}

/* ---------- Main ---------- */
.l-main {
  padding-top: 57px;
}

@media (min-width: 768px) {
  .l-main {
    padding-top: 72px;
  }
}

/* ---------- Footer ---------- */
.l-footer {
  background: var(--color-bg-accent);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 calc(40px + var(--sp-bar-height));
}

@media (min-width: 768px) {
  .l-footer {
    padding: 60px 0 40px;
  }
}

.l-footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  text-align: center;
}

.l-footer__logo {
  margin-bottom: 20px;
}

.l-footer__logo img {
  height: 36px;
  width: auto;
  margin: 0 auto;
}

.l-footer__name {
  font-size: var(--text-body);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4px;
}

.l-footer__address {
  font-size: var(--text-small);
  margin-bottom: 4px;
}

.l-footer__tel {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.l-footer__tel a {
  color: rgba(255, 255, 255, 0.9);
}

.l-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 24px;
}

.l-footer__links a {
  font-size: var(--text-small);
  transition: color 0.3s ease;
}

.l-footer__links a:hover {
  color: var(--color-white);
}

.l-footer__copy {
  font-size: var(--text-caption);
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- SP Fixed Bottom Bar ---------- */
/* ---------- Sticky Banner (Bottom Right) ---------- */
.l-sticky-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
  pointer-events: none;
}

.l-sticky-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.l-sticky-banner a {
  display: block;
  transition: opacity 0.3s ease;
}

.l-sticky-banner a:hover {
  opacity: 0.85;
}

.l-sticky-banner img {
  width: 340px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

@media (max-width: 767px) {
  .l-sticky-banner {
    bottom: 12px;
    right: 12px;
  }

  .l-sticky-banner img {
    width: 270px;
  }
}

/* ==========================================================================
   Component
   ========================================================================== */

/* ---------- Button ---------- */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--btn-padding);
  background: var(--btn-bg);
  color: var(--btn-color);
  font-size: var(--text-body);
  font-weight: 600;
  border-radius: var(--btn-radius);
  box-shadow: var(--btn-shadow);
  transition: all 0.35s var(--ease-out-expo);
  text-decoration: none;
  line-height: 1.4;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.c-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.c-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(var(--color-accent-rgb), 0.45);
  filter: brightness(1.08);
}

.c-btn--sm {
  padding: 10px 24px;
  font-size: var(--text-small);
  box-shadow: 0 2px 12px rgba(var(--color-accent-rgb), 0.25);
}

.c-btn--lg {
  padding: 20px 40px;
  font-size: 16px;
}

@media (max-width: 767px) {
  .c-btn--lg {
    padding: 16px 24px;
    font-size: 14px;
  }
}

.c-btn--full {
  width: 100%;
  max-width: 480px;
}

.c-btn--outline {
  background: transparent;
  color: var(--color-main);
  border: 2px solid var(--color-main);
  box-shadow: none;
}

.c-btn--outline::after {
  display: none;
}

.c-btn--outline:hover {
  background: var(--color-main);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(var(--color-main-rgb), 0.3);
}

/* ---------- Section Heading ---------- */
.c-section-heading {
  text-align: center;
  font-size: var(--text-h2);
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-main);
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .c-section-heading {
    margin-bottom: 56px;
  }
}

.c-section-heading__en {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  font-family: var(--font-accent-en);
  font-size: 80px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-main);
  opacity: 0.04;
  white-space: nowrap;
  pointer-events: none;
  margin-bottom: 0;
  z-index: 0;
  line-height: 1;
}

@media (min-width: 768px) {
  .c-section-heading__en {
    font-size: 120px;
  }
}

.c-section-heading::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-main));
  margin: 16px auto 0;
  border-radius: 0;
}

.c-section-heading--light {
  color: var(--color-white);
}

.c-section-heading--light .c-section-heading__en {
  color: var(--color-white);
  opacity: 0.06;
}

.c-section-heading--light::after {
  background: linear-gradient(90deg, var(--color-accent), rgba(255, 255, 255, 0.5));
}

.c-section-heading__accent {
  font-style: normal;
  color: var(--color-accent);
}

/* ==========================================================================
   Project - Sections
   ========================================================================== */

/* ---------- FV ---------- */
.p-fv {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.p-fv__inner {
  position: relative;
  width: 100%;
}

.p-fv__image {
  width: 100%;
  height: auto;
  display: block;
}

.p-fv__cta {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 84%;
}

@media (min-width: 768px) {
  .p-fv__cta {
    bottom: 8%;
    left: 9%;
    transform: none;
    flex-direction: row;
    align-items: flex-end;
    gap: 12px;
    width: 40%;
  }
}

.p-fv__btn {
  width: 100%;
  font-size: 15px;
}

@media (min-width: 768px) {
  .p-fv__btn {
    font-size: 18px;
  }
}

.p-fv__btn-sub {
  font-size: var(--text-small);
  color: var(--color-white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.p-fv__btn-sub:hover {
  opacity: 0.8;
}

.p-fv__btn-img {
  display: block;
  width: 100%;
  transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
  .p-fv__btn-img {
    flex: 1;
  }
}

.p-fv__btn-img:hover {
  opacity: 0.85;
}

.p-fv__btn-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Shine animation for FV buttons */
.p-fv__btn-img--cv,
.p-fv__btn-img--tel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.p-fv__btn-img--cv::after,
.p-fv__btn-img--tel::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    100deg,
    transparent 20%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 80%
  );
  transform: skewX(-20deg);
  pointer-events: none;
}

.p-fv__btn-img--cv::after {
  animation: shine-cv 3s ease-in-out infinite;
}

.p-fv__btn-img--tel::after {
  animation: shine-tel 3s 1.5s ease-in-out infinite;
}

@keyframes shine-cv {
  0%, 70%, 100% { left: -75%; opacity: 0; }
  10% { opacity: 1; }
  40% { left: 125%; opacity: 0; }
}

@keyframes shine-tel {
  0%, 70%, 100% { left: -75%; opacity: 0; }
  10% { opacity: 1; }
  40% { left: 125%; opacity: 0; }
}

/* Glow pulse for FV buttons */
.p-fv__btn-img--cv {
  animation: glow-cv 3s ease-in-out infinite;
}

.p-fv__btn-img--tel {
  animation: glow-tel 3s 1.5s ease-in-out infinite;
}

@keyframes glow-cv {
  0%, 70%, 100% { filter: drop-shadow(0 0 0 transparent); }
  20% { filter: drop-shadow(0 0 12px rgba(203, 2, 81, 0.5)); }
  40% { filter: drop-shadow(0 0 0 transparent); }
}

@keyframes glow-tel {
  0%, 70%, 100% { filter: drop-shadow(0 0 0 transparent); }
  20% { filter: drop-shadow(0 0 12px rgba(0, 136, 202, 0.5)); }
  40% { filter: drop-shadow(0 0 0 transparent); }
}

/* ---------- FV Sub (Badges + Offer) ---------- */
.p-fv-sub {
  background: var(--color-sub);
  padding: 40px 0 48px;
}

@media (min-width: 768px) {
  .p-fv-sub {
    padding: 56px 0 64px;
  }
}

.p-fv-sub__badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .p-fv-sub__badges {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }
}

.p-fv-sub__badge {
  background: var(--color-bg-white);
  border-radius: var(--card-radius);
  padding: 20px 12px;
  text-align: center;
  border: 1px solid rgba(0, 69, 103, 0.08);
  transition: transform 0.3s var(--ease-out-expo);
}

.p-fv-sub__badge:hover {
  transform: translateY(-2px);
}

.p-fv-sub__badge-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  object-fit: cover;
}

.p-fv-sub__badge-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-main);
  font-weight: 500;
}

.p-fv-sub__badge-text strong {
  color: var(--color-accent);
  font-weight: 700;
}

.p-fv-sub__offer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .p-fv-sub__offer {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}

.p-fv-sub__offer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-bg-white);
  border: 2px solid var(--color-accent);
  border-radius: var(--card-radius);
  padding: 14px 20px;
}

@media (min-width: 768px) {
  .p-fv-sub__offer-item {
    padding: 16px 28px;
  }
}

.p-fv-sub__offer-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-accent);
  padding: 4px 10px;
  border-radius: 0;
  white-space: nowrap;
}

.p-fv-sub__offer-value {
  font-size: var(--text-body);
  font-weight: 500;
  color: var(--color-text);
}

.p-fv-sub__offer-value em {
  font-family: var(--font-main);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -0.02em;
}

.p-fv-sub__note {
  text-align: center;
  font-size: var(--text-small);
  color: var(--color-text-light);
}

/* ---------- Concerns ---------- */
.p-concerns {
  padding: var(--section-py) 0;
  background: var(--color-bg-white);
  position: relative;
  overflow: hidden;
}

.p-concerns__deco {
  position: absolute;
  top: 20px;
  right: -40px;
  font-family: var(--font-accent-en);
  font-size: 140px;
  font-weight: 700;
  font-style: italic;
  color: rgba(0, 69, 103, 0.03);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .p-concerns__deco {
    font-size: 220px;
    top: 0;
    right: -20px;
  }
}

.p-concerns__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .p-concerns__body {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }
}

.p-concerns__list {
  flex: 1;
}

.p-concerns__checks {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.p-concerns__check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-body);
  line-height: 1.7;
  transition: background 0.3s ease;
}

.p-concerns__check-item:first-child {
  border-top: 1px solid var(--color-border);
}

.p-concerns__check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border: 2px solid var(--color-accent);
  border-radius: 0;
  position: relative;
}

.p-concerns__check-icon::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 6px;
  height: 10px;
  border: solid var(--color-accent);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.p-concerns__image {
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .p-concerns__image {
    width: 320px;
  }
}

.p-concerns__image img {
  border-radius: var(--card-radius);
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 767px) {
  .p-concerns__image {
    max-width: 280px;
    margin: 0 auto;
  }
}

.p-concerns__bridge {
  text-align: center;
  padding: 32px 20px;
  background: var(--color-bg-gray);
  border-radius: var(--card-radius);
  position: relative;
}

.p-concerns__bridge::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid var(--color-bg-gray);
}

.p-concerns__bridge p {
  font-size: var(--text-body);
  line-height: 1.8;
}

.p-concerns__bridge-strong {
  font-size: var(--text-h4);
  font-weight: 400;
  color: var(--color-main);
  margin-top: 8px;
}

/* ---------- Problems ---------- */
.p-problems {
  padding: var(--section-py) 0;
  background: var(--color-bg-accent);
  position: relative;
  overflow: hidden;
}

.p-problems__bg-deco {
  display: none;
}

.p-problems__lead {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-body);
  line-height: 2;
  max-width: 680px;
  margin: 0 auto 48px;
  position: relative;
}

.p-problems__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
  position: relative;
}

@media (min-width: 768px) {
  .p-problems__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.p-problems__card {
  background: var(--color-bg-white);
  border-radius: var(--card-radius);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s var(--ease-out-expo);
}

.p-problems__card:hover {
  transform: translateY(-3px);
}

.p-problems__card-num {
  position: absolute;
  top: 12px;
  left: 16px;
  z-index: 2;
}

.p-problems__card-num span {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-accent);
  padding: 3px 10px;
  border-radius: 0;
  letter-spacing: 0.04em;
}

.p-problems__card-icon {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .p-problems__card-icon {
    height: 180px;
  }
}

.p-problems__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-problems__card-content {
  padding: 20px 24px 24px;
}

.p-problems__card-title {
  font-size: var(--text-h4);
  font-weight: 400;
  color: var(--color-main);
  margin-bottom: 10px;
  line-height: 1.5;
}

.p-problems__card-text {
  font-size: var(--text-body);
  color: var(--color-text-light);
  line-height: 1.8;
}

.p-problems__bridge {
  text-align: center;
  position: relative;
}

.p-problems__bridge p {
  font-size: var(--text-h4);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.p-problems__bridge strong {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.1em;
}

/* ---------- Solution ---------- */
.p-solution {
  padding: var(--section-py) 0;
  background: var(--color-sub);
  position: relative;
  overflow: hidden;
}

.p-solution::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(0, 69, 103, 0.10);
  transform: rotate(35deg);
  pointer-events: none;
  z-index: 0;
}

.p-solution::after {
  content: '';
  position: absolute;
  bottom: -70px;
  left: -30px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(203, 2, 81, 0.08);
  transform: rotate(-20deg);
  pointer-events: none;
  z-index: 0;
}

.p-solution .l-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .p-solution .l-container {
    flex-direction: row;
    align-items: center;
    gap: 56px;
  }
}

.p-solution__content {
  flex: 1;
}

.p-solution__content .c-section-heading {
  text-align: left;
}

.p-solution__content .c-section-heading__en {
  left: 0;
  transform: translate(0, -50%);
}

.p-solution__content .c-section-heading::after {
  margin: 16px 0 0;
}

.p-solution__lead {
  font-size: var(--text-body);
  line-height: 2;
  color: var(--color-text);
}

.p-solution__lead strong {
  color: var(--color-main);
  font-weight: 600;
}

.p-solution__image {
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .p-solution__image {
    width: 380px;
  }
}

.p-solution__image img {
  border-radius: var(--card-radius);
}

/* ---------- USP ---------- */
.p-usp {
  padding: var(--section-py) 0;
  background: var(--color-bg-white);
  position: relative;
}

.p-usp__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
  position: relative;
}

@media (min-width: 768px) {
  .p-usp__item {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
    margin-bottom: 80px;
  }
}

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

@media (min-width: 768px) {
  .p-usp__item--reverse {
    flex-direction: row-reverse;
  }
}

.p-usp__item-num {
  font-family: var(--font-main);
  font-size: 72px;
  font-weight: 700;
  font-style: italic;
  color: rgba(0, 69, 103, 0.08);
  line-height: 1;
  pointer-events: none;
  margin-bottom: -8px;
}

@media (min-width: 768px) {
  .p-usp__item-num {
    font-size: 100px;
    margin-bottom: -16px;
  }
}

.p-usp__item-body {
  flex: 1;
  position: relative;
  z-index: 1;
}

.p-usp__item-title {
  font-size: var(--text-h3);
  font-weight: 400;
  color: var(--color-main);
  line-height: 1.5;
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 3px solid var(--color-accent);
}

.p-usp__item-content {
  font-size: var(--text-body);
  line-height: 1.9;
}

.p-usp__item-content p {
  margin-bottom: 12px;
}

.p-usp__item-content p:last-child {
  margin-bottom: 0;
}

.p-usp__item-sub {
  font-size: var(--text-h4);
  font-weight: 400;
  color: var(--color-main);
  margin: 20px 0 10px;
}

.p-usp__item-sub:first-child {
  margin-top: 0;
}

.p-usp__patterns {
  background: var(--color-bg-gray);
  border-radius: var(--card-radius);
  padding: 20px 24px;
  margin-top: 16px;
}

.p-usp__patterns-label {
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--color-main);
  margin-bottom: 8px;
}

.p-usp__patterns-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 4px;
  font-size: var(--text-body);
}

.p-usp__patterns-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.6;
}

.p-usp__note {
  font-size: var(--text-small);
  color: var(--color-text-light);
  margin-top: 12px;
}

.p-usp__item-image {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .p-usp__item-image {
    width: 360px;
  }
}

.p-usp__item-image img {
  border-radius: var(--card-radius);
  width: 100%;
}

/* ---------- CTA Section (Mid-page + Last) ---------- */
.p-cta-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.p-cta-section__inner {
  position: relative;
  width: 100%;
}

.p-cta-section__image {
  width: 100%;
  height: auto;
  display: block;
}

.p-cta-section__btn {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 14px;
}

@media (min-width: 768px) {
  .p-cta-section__btn {
    bottom: 15%;
    font-size: 18px;
  }
}

.p-cta-section__btns {
  position: absolute;
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 90%;
}

@media (min-width: 768px) {
  .p-cta-section__btns {
    bottom: 23%;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    width: 41%;
  }
}

.p-cta-section__btn-sub {
  font-size: var(--text-small);
  color: var(--color-white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.3s ease;
}

.p-cta-section__btn-sub:hover {
  opacity: 0.8;
}

.p-cta-section__btn-img {
  display: block;
  width: 100%;
  transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
  .p-cta-section__btn-img {
    flex: 1;
  }
}

.p-cta-section__btn-img:hover {
  opacity: 0.85;
}

.p-cta-section__btn-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Shine animation for CTA buttons */
.p-cta-section__btn-img--cv,
.p-cta-section__btn-img--tel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.p-cta-section__btn-img--cv::after,
.p-cta-section__btn-img--tel::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    100deg,
    transparent 20%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 80%
  );
  transform: skewX(-20deg);
  pointer-events: none;
}

.p-cta-section__btn-img--cv::after {
  animation: shine-cv 3s ease-in-out infinite;
}

.p-cta-section__btn-img--tel::after {
  animation: shine-tel 3s 1.5s ease-in-out infinite;
}

.p-cta-section__btn-img--cv {
  animation: glow-cv 3s ease-in-out infinite;
}

.p-cta-section__btn-img--tel {
  animation: glow-tel 3s 1.5s ease-in-out infinite;
}

/* ---------- Comparison ---------- */
.p-comparison {
  padding: var(--section-py) 0;
  background: var(--color-bg-gray);
  position: relative;
  overflow: hidden;
}

.p-comparison::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-main), var(--color-sub));
}

.p-comparison__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 16px;
  padding-top: 16px;
}

.p-comparison__table {
  width: 100%;
  min-width: 600px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: var(--text-body);
}

.p-comparison__table thead th {
  padding: 16px 12px;
  font-weight: 600;
  text-align: center;
  font-size: var(--text-small);
  letter-spacing: 0.04em;
}

.p-comparison__th-item {
  background: var(--color-bg-gray);
  color: var(--color-text-light);
  width: 20%;
  border-radius: 0;
  text-align: left;
}

.p-comparison__th-general {
  background: #E8ECEF;
  color: var(--color-text-light);
  width: 40%;
}

.p-comparison__th-mbd {
  background: var(--color-main);
  color: var(--color-white);
  width: 40%;
  border-radius: 0;
  position: relative;
}

.p-comparison__th-mbd::before {
  content: 'おすすめ';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 0;
  white-space: nowrap;
}

.p-comparison__table tbody td {
  padding: 14px 16px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid var(--color-border);
  line-height: 1.6;
}

.p-comparison__td-item {
  background: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  color: var(--color-main);
  font-size: var(--text-body);
  text-align: left !important;
}

.p-comparison__td-general {
  background: rgba(255, 255, 255, 0.3);
  color: var(--color-text-light);
  font-size: var(--text-body);
}

.p-comparison__td-mbd {
  background: rgba(0, 69, 103, 0.04);
  font-size: var(--text-body);
}

.p-comparison__td-mbd strong {
  color: var(--color-accent);
  font-weight: 700;
}

.p-comparison__table tbody tr:last-child .p-comparison__td-item {
  border-radius: 0;
}

.p-comparison__table tbody tr:last-child .p-comparison__td-mbd {
  border-radius: 0;
}

.p-comparison__note {
  text-align: center;
  font-size: var(--text-small);
  color: var(--color-text-light);
}

/* ---------- Doctors ---------- */
.p-doctors {
  padding: var(--section-py) 0;
  background: var(--color-bg-white);
  position: relative;
  overflow: hidden;
}

/* removed doctor bg gradient */

.p-doctors__card {
  background: var(--color-bg-white);
  border-radius: var(--card-radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
  margin-bottom: 40px;
  position: relative;
}

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

@media (min-width: 768px) {
  .p-doctors__card {
    display: flex;
  }
}

.p-doctors__card-photo {
  position: relative;
  background: var(--color-sub);
}

@media (min-width: 768px) {
  .p-doctors__card-photo {
    width: 340px;
    flex-shrink: 0;
  }
}

.p-doctors__card-photo img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 767px) {
  .p-doctors__card-photo img {
    max-height: 400px;
  }
}

.p-doctors__card-name-plate {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(8, 18, 26, 0.8));
  padding: 40px 20px 16px;
  color: var(--color-white);
}

.p-doctors__card-position {
  display: block;
  font-size: var(--text-small);
  font-weight: 400;
  margin-bottom: 2px;
  opacity: 0.85;
}

.p-doctors__card-name {
  display: block;
  font-size: var(--text-h3);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.p-doctors__card-name small {
  font-weight: 400;
  opacity: 0.75;
  letter-spacing: 0;
}

.p-doctors__card-body {
  padding: 28px 24px 32px;
  flex: 1;
}

@media (min-width: 768px) {
  .p-doctors__card-body {
    padding: 32px 36px;
  }
}

.p-doctors__card-catch {
  font-size: var(--text-h4);
  font-weight: 400;
  color: var(--color-main);
  line-height: 1.6;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.p-doctors__card-label {
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--color-main);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.p-doctors__card-label::before {
  content: '';
  width: 3px;
  height: 14px;
  background: var(--color-accent);
  border-radius: 0;
}

.p-doctors__card-career {
  margin-bottom: 20px;
}

.p-doctors__card-career ul {
  padding-left: 0;
}

.p-doctors__card-career li {
  font-size: var(--text-body);
  color: var(--color-text-light);
  line-height: 1.7;
  padding: 3px 0;
}

.p-doctors__card-message {
  margin-bottom: 20px;
}

.p-doctors__card-message blockquote {
  background: var(--color-bg-gray);
  border-radius: var(--card-radius);
  padding: 20px 24px;
  position: relative;
  border-left: 3px solid var(--color-main);
}

.p-doctors__card-message blockquote p {
  font-size: var(--text-body);
  line-height: 1.9;
  margin-bottom: 8px;
  position: relative;
}

.p-doctors__card-message blockquote p:last-child {
  margin-bottom: 0;
}

.p-doctors__card-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 600px) {
  .p-doctors__card-points {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-doctors__card-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 12px;
  background: rgba(0, 69, 103, 0.03);
  border-radius: var(--card-radius);
  border: 1px solid var(--color-border);
}

.p-doctors__card-point-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
  color: var(--color-main);
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-doctors__card-point-icon svg {
  width: 100%;
  height: 100%;
}

.p-doctors__card-point p {
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--color-text);
}

/* ---------- Cases ---------- */
.p-cases {
  padding: var(--section-py) 0;
  background: var(--color-sub);
  position: relative;
  overflow: hidden;
}

.p-cases__card {
  background: var(--color-bg-white);
  border-radius: var(--card-radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
  max-width: 780px;
  margin: 0 auto 24px;
}

.p-cases__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: var(--color-main);
  color: var(--color-white);
}

.p-cases__card-tag {
  font-size: var(--text-small);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: 0;
}

.p-cases__card-period {
  font-size: var(--text-body);
  font-weight: 500;
}

.p-cases__card-sub-header {
  font-size: var(--text-h3);
  font-weight: 500;
}

.p-cases__card-body {
  padding: 24px;
}

@media (min-width: 768px) {
  .p-cases__card-body {
    padding: 32px;
  }
}

.p-cases__card-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.p-cases__card-before,
.p-cases__card-after {
  flex: 1;
  max-width: 240px;
  text-align: center;
}

.p-cases__card-before img,
.p-cases__card-after img {
  border-radius: var(--card-radius);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  margin-bottom: 8px;
}

.p-cases__card-before img.case-asou,
.p-cases__card-after img.case-asou {
  aspect-ratio: 820/1280;
}

.p-cases__card-label {
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--color-main);
  letter-spacing: 0.06em;
}

.p-cases__card-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}

.p-cases__card-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--color-accent);
}

.p-cases__card-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
  transform: translateY(-50%) rotate(45deg);
}

.p-cases__card-arrow-badge {
  font-size: 120%;
  font-weight: 700;
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 0.2em 0.6em;
  position: absolute;
  top: -2.6em;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0.5em;
}

.p-cases__card-data {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

@media (min-width: 480px) {
  .p-cases__card-data {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-cases__card-data-item {
  background: var(--color-bg-gray);
  border-radius: var(--card-radius);
  padding: 16px;
  text-align: center;
}

.p-cases__card-data-label {
  display: block;
  font-size: var(--text-caption);
  font-weight: 500;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.p-cases__card-data-value {
  font-size: var(--text-body);
  font-weight: 400;
  color: var(--color-main);
}

.p-cases__card-data-value em {
  font-family: var(--font-main);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-accent);
}

.p-cases__card-data-text {
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--color-text);
}

.p-cases__card-voice {
  background: var(--color-bg-gray);
  border-radius: var(--card-radius);
  padding: 20px 24px;
  position: relative;
  border-left: 3px solid var(--color-accent);
}

.p-cases__card-voice p {
  font-size: var(--text-body);
  line-height: 1.8;
}

.p-cases__card-caption {
  font-size: var(--text-small);
  line-height: 1.6;
}
.p-cases__card-disclaimer {
  font-size: var(--text-caption);
  color: var(--color-text-light);
  text-align: center;
  padding: 12px 24px 20px;
}

.p-cases__coming {
  text-align: center;
}

.p-cases__coming-text {
  display: inline-block;
  font-size: var(--text-small);
  color: var(--color-main);
  background: rgba(255, 255, 255, 0.6);
  padding: 10px 20px;
  border-radius: 0;
  border: 1px dashed rgba(0, 69, 103, 0.3);
}

/* ---------- Offers ---------- */
.p-offers {
  padding: var(--section-py) 0;
  background: var(--color-bg-white);
  position: relative;
}

.p-offers__list {
  margin-bottom: 40px;
}

.p-offers__row {
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.p-offers__row:first-child {
  border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .p-offers__row {
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
  }
}

.p-offers__row--accent {
  background: var(--color-bg-gray);
  padding: 24px;
  border: none;
  border-left: 3px solid var(--color-accent);
}

.p-offers__row--accent:first-child {
  border-top: none;
}

.p-offers__row-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .p-offers__row-head {
    width: 320px;
    margin-bottom: 0;
  }
}

.p-offers__row-num {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.p-offers__row-title {
  font-size: var(--text-h4);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.5;
}

.p-offers__row-title em {
  color: var(--color-accent);
  font-weight: 700;
}

.p-offers__row-title small {
  font-size: var(--text-small);
  font-weight: 400;
}

.p-offers__row-body {
  flex: 1;
}

.p-offers__row-text {
  font-size: var(--text-body);
  color: var(--color-text);
  line-height: 1.8;
}

.p-offers__row-notes {
  margin-top: 10px;
  padding-left: 0;
}

.p-offers__row-notes li {
  font-size: var(--text-small);
  color: var(--color-text-light);
  line-height: 1.7;
  padding-left: 14px;
  position: relative;
  margin-bottom: 3px;
}

.p-offers__row-notes li::before {
  content: '―';
  position: absolute;
  left: 0;
  font-size: 10px;
}

.p-offers__row-note {
  margin-top: 6px;
  font-size: var(--text-caption);
  color: var(--color-text-light);
}

.p-offers__cta {
  text-align: center;
}

/* ---------- Plans ---------- */
.p-plans {
  padding: var(--section-py) 0;
  background: var(--color-bg-white);
  position: relative;
  overflow: hidden;
}

.p-plans__common {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.p-plans__common-item,
.p-plans__common-item-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-bg-gray);
  border-radius: 0;
  padding: 10px 20px;
  width: 100%;
  justify-content: center;
  max-width: 600px;
}

.p-plans__common-item.-display-block {
  display: block;
  background: rgba(203, 2, 81, 0.08);
}
.p-plans__common-item.-display-block .p-plans__common-item-inner {
  background: none;
}

.p-plans__common-label {
  font-size: var(--text-small);
  color: var(--color-text-light);
}

.p-plans__common-value {
  font-size: var(--text-body);
  font-weight: 600;
  color: var(--color-main);
}

.p-plans__common-value em {
  font-family: var(--font-main);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-accent);
}

.p-plans__insurance-note {
  text-align: center;
  font-size: var(--text-small);
  color: var(--color-text-light);
  margin-bottom: 40px;
}

.p-plans__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .p-plans__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.p-plans__card {
  background: var(--color-bg-white);
  border: 2px solid var(--color-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
  position: relative;
}

.p-plans__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow);
}

.p-plans__card--recommend {
  border-color: var(--color-main);
}

.p-plans__card--monitor {
  border-color: var(--color-accent);
}

.p-plans__card-badge {
  position: absolute;
  top: -1px;
  right: 16px;
  background: var(--color-main);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px 6px;
  border-radius: 0;
}

.p-plans__card-badge--accent {
  background: var(--color-accent);
}

.p-plans__card-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--color-border);
}

.p-plans__card-name {
  font-size: var(--text-h3);
  font-weight: 400;
  color: var(--color-main);
  margin-bottom: 4px;
}

.p-plans__card-for {
  font-size: var(--text-small);
  color: var(--color-text-light);
}

.p-plans__card-body {
  padding: 20px 24px 24px;
}

.p-plans__card-list li {
  font-size: var(--text-body);
  line-height: 1.7;
  padding: 5px 0 5px 20px;
  position: relative;
}

.p-plans__card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(-45deg);
}

.p-plans__card-price {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.p-plans__card-price-label {
  display: block;
  font-size: var(--text-caption);
  color: var(--color-text-light);
  margin-bottom: 2px;
}

.p-plans__card-price-value {
  font-size: var(--text-h4);
  font-weight: 400;
  color: var(--color-main);
}

.p-plans__card-price-value em {
  font-family: var(--font-main);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-accent);
}

.p-plans__card-price--off .p-plans__card-price-value em {
  font-size: 56px;
}

/* Plans Extra */
.p-plans__extra {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-plans__extra-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--color-bg-gray);
  border-radius: 0;
  padding: 24px;
}

.p-plans__extra-card-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 0;
  overflow: hidden;
}

.p-plans__extra-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-plans__extra-card-body {
  flex: 1;
}

.p-plans__extra-card-name {
  font-size: var(--text-h4);
  font-weight: 400;
  color: var(--color-main);
  margin-bottom: 4px;
}

.p-plans__extra-card-for {
  font-size: var(--text-small);
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.p-plans__extra-card-list li {
  font-size: var(--text-body);
  line-height: 1.7;
  padding-left: 14px;
  position: relative;
}

.p-plans__extra-card-list li::before {
  content: '・';
  position: absolute;
  left: 0;
}

.p-plans__extra-card-body p {
  font-size: var(--text-body);
  margin-top: 4px;
}

/* ---------- Flow ---------- */
.p-flow {
  padding: var(--section-py) 0;
  background: var(--color-bg-gray);
  position: relative;
  overflow: hidden;
}

.p-flow__timeline {
  position: relative;
  max-width: 840px;
  margin: 0 auto 40px;
}

.p-flow__timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-main), var(--color-accent));
  opacity: 0.2;
}

@media (min-width: 768px) {
  .p-flow__timeline::before {
    left: 32px;
  }
}

.p-flow__step {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  position: relative;
}

@media (min-width: 768px) {
  .p-flow__step {
    gap: 28px;
    margin-bottom: 40px;
  }
}

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

.p-flow__step-num {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--color-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .p-flow__step-num {
    width: 64px;
    height: 64px;
  }
}

.p-flow__step-num span {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .p-flow__step-num span {
    font-size: 18px;
  }
}

.p-flow__step--start .p-flow__step-num {
  background: var(--color-accent);
}

.p-flow__step-body {
  flex: 1;
  padding-top: 4px;
}

.p-flow__step-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  color: var(--color-accent);
  background: rgba(203, 2, 81, 0.08);
  padding: 3px 10px;
  border-radius: 0;
  margin-bottom: 6px;
}

.p-flow__step-title {
  font-size: var(--text-h4);
  font-weight: 400;
  color: var(--color-main);
  margin-bottom: 8px;
}

.p-flow__step-text {
  font-size: var(--text-body);
  color: var(--color-text);
  line-height: 1.8;
}

.p-flow__step-detail-list li {
  font-size: var(--text-body);
  line-height: 1.8;
  padding: 4px 0 4px 16px;
  position: relative;
}

.p-flow__step-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.5;
}

.p-flow__step-image {
  display: none;
}

@media (min-width: 768px) {
  .p-flow__step-image {
    display: block;
    width: 160px;
    flex-shrink: 0;
  }

  .p-flow__step-image img {
    border-radius: 0;
    width: 100%;
    height: 120px;
    object-fit: cover;
  }
}

.p-flow__note {
  text-align: center;
  font-size: var(--text-small);
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ---------- FAQ ---------- */
.p-faq {
  padding: var(--section-py) 0;
  background: var(--color-bg-white);
  position: relative;
  overflow: hidden;
}

.p-faq__list {
  max-width: 780px;
  margin: 0 auto;
}

.p-faq__item {
  border-bottom: 1px solid var(--color-border);
}

.p-faq__item:first-child {
  border-top: 1px solid var(--color-border);
}

.p-faq__question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 4px;
  text-align: left;
  transition: opacity 0.3s ease;
}

.p-faq__question:hover {
  opacity: 0.7;
}

.p-faq__q-mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-main);
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
}

.p-faq__q-text {
  flex: 1;
  font-size: var(--text-body);
  font-weight: 500;
  line-height: 1.7;
  padding-top: 3px;
}

.p-faq__toggle {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  margin-top: 5px;
}

.p-faq__toggle::before,
.p-faq__toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-text-light);
  border-radius: 0;
  transition: transform 0.35s var(--ease-out-expo);
}

.p-faq__toggle::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.p-faq__toggle::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.p-faq__question[aria-expanded="true"] .p-faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.p-faq__answer {
  display: flex;
  gap: 14px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo), padding 0.5s var(--ease-out-expo);
  padding: 0 4px;
}

.p-faq__answer[aria-hidden="false"] {
  max-height: 500px;
  padding: 0 4px 20px;
}

.p-faq__a-mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
}

.p-faq__answer p {
  font-size: var(--text-body);
  color: var(--color-text-light);
  line-height: 1.9;
  padding-top: 3px;
}

/* ---------- Clinic ---------- */
.p-clinic {
  padding: var(--section-py) 0;
  background: var(--color-bg-gray);
}

.p-clinic__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 768px) {
  .p-clinic__content {
    flex-direction: row;
    gap: 48px;
  }
}

.p-clinic__info {
  flex: 1;
}

.p-clinic__name {
  font-size: var(--text-h3);
  font-weight: 400;
  color: var(--color-main);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-main);
}

.p-clinic__table {
  width: 100%;
  font-size: var(--text-body);
  margin-bottom: 16px;
}

.p-clinic__table tr {
  border-bottom: 1px solid var(--color-border);
}

.p-clinic__table th {
  width: 110px;
  padding: 12px 8px;
  text-align: left;
  vertical-align: top;
  font-weight: 600;
  color: var(--color-main);
  font-size: var(--text-caption);
}

@media (min-width: 768px) {
  .p-clinic__table th {
    width: 130px;
    font-size: var(--text-small);
  }
}

.p-clinic__table td {
  padding: 12px 8px;
  vertical-align: top;
  line-height: 1.7;
}

.p-clinic__tel {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-main);
  letter-spacing: 0.02em;
}

.p-clinic__expansion {
  font-size: var(--text-small);
  color: var(--color-text-light);
  padding: 12px 0;
}

.p-clinic__visual {
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .p-clinic__visual {
    width: 400px;
  }
}

.p-clinic__map {
  margin-bottom: 16px;
}

.p-clinic__map img {
  width: 100%;
  border-radius: 0;
  box-shadow: var(--card-shadow);
}

.p-clinic__map iframe {
  width: 100%;
  border-radius: 0;
  box-shadow: var(--card-shadow);
}

.p-clinic__photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.p-clinic__photo img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 0;
}

.p-clinic__photo-caption {
  display: block;
  font-size: var(--text-caption);
  color: var(--color-text-light);
  text-align: center;
  margin-top: 4px;
}

/* ---------- Last CTA ---------- */
.p-last-cta {
  padding: 0;
}

.p-last-cta .p-cta-section {
  margin-bottom: 0;
}

/* ==========================================================================
   Utility
   ========================================================================== */
.u-sp-only {
  display: inline;
}

@media (min-width: 768px) {
  .u-sp-only {
    display: none;
  }
}

.u-pc-only {
  display: none;
}

@media (min-width: 768px) {
  .u-pc-only {
    display: inline;
  }
}

.u-display-block-pc {
  display: none;
}
.u-display-block-sp {
  display: block;
}
@media (min-width: 768px) {
.u-display-block-pc {
  display: block;
}
.u-display-block-sp {
  display: none;
}
}

.u-text-align-center {
  text-align: center;
}

.u-justify-content-center {
  justify-content: center;
}

.u-max-width-100per{
  max-width: 100%;
}

.u-mg-bottom-0 {
  margin-bottom: 0px !important;
}
.u-mg-bottom-10 {
  margin-bottom: 10px !important;
}
.u-pd-bottom-0 {
  padding-bottom: 0px !important;
}
.u-pd-bottom-10 {
  padding-bottom: 10px !important;
}


/* ==========================================================================
   Design Accents - USP Image Deco & Section BG Ornaments
   ========================================================================== */

/* ---------- USP Image Geometric Decoration ---------- */
.p-usp__item-image {
  position: relative;
}

.p-usp__item-image::before {
  content: '';
  position: absolute;
  top: 24px;
  left: -12px;
  right: 12px;
  bottom: -24px;
  background: var(--color-main);
  opacity: 0.07;
  z-index: 0;
}

.p-usp__item-image img {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .p-usp__item-image::before {
    top: 28px;
    left: -20px;
    right: 20px;
    bottom: -28px;
  }

  .p-usp__item--reverse .p-usp__item-image::before {
    left: 20px;
    right: -20px;
  }
}

/* ---------- Section BG Decorations ---------- */

/* Ensure content stays above deco elements */
.p-concerns > .l-container,
.p-cases > .l-container,
.p-flow > .l-container {
  position: relative;
  z-index: 1;
}

/* Concerns - large rotated squares */
.p-concerns::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -30px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(0, 69, 103, 0.08);
  transform: rotate(45deg);
  pointer-events: none;
  z-index: 0;
}

.p-concerns::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -10px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(0, 69, 103, 0.06);
  transform: rotate(20deg);
  pointer-events: none;
  z-index: 0;
}

/* USP - no bg deco */
.p-usp {
  overflow: hidden;
}

/* Doctors - no bg deco */

/* Cases - accent diamonds */
.p-cases::before {
  content: '';
  position: absolute;
  top: -40px;
  right: 8%;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(0, 69, 103, 0.08);
  transform: rotate(45deg);
  pointer-events: none;
  z-index: 0;
}

.p-cases::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 3%;
  width: 160px;
  height: 160px;
  background: rgba(203, 2, 81, 0.04);
  transform: rotate(30deg);
  pointer-events: none;
  z-index: 0;
}

/* Plans - no bg deco */

/* FAQ - no bg deco */

/* Flow - visible accent */
.p-flow::before {
  content: '';
  position: absolute;
  top: -30px;
  right: 5%;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(0, 69, 103, 0.06);
  transform: rotate(45deg);
  pointer-events: none;
  z-index: 0;
}

/* Comparison - no bg deco */

/* ==========================================================================
   Animation
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration) var(--ease-out-expo),
              transform var(--duration) var(--ease-out-expo);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in[data-delay="1"] { transition-delay: 0.1s; }
.fade-in[data-delay="2"] { transition-delay: 0.2s; }
.fade-in[data-delay="3"] { transition-delay: 0.3s; }
.fade-in[data-delay="4"] { transition-delay: 0.4s; }

/* Body lock for menu open */
body.is-menu-open {
  overflow: hidden;
}
