/* ==========================================================================
   Foundation - Reset & Variables
   ========================================================================== */
:root {
  /* カラーパレット */
  --color-primary: #192742;
  --color-primary-dark: #101621;
  --color-secondary: #1E5267;
  --color-accent: #A5A07C;
  --color-accent-light: #c4bfa0;
  --color-bg-sub: #F5F4EF;
  --color-bg-accent: #192742;
  --color-bg-white: #ffffff;
  --color-bg-gray: #F5F6F3;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-border: #D8D5CC;

  /* フォント */
  --font-main: 'Noto Sans JP', sans-serif;
  --font-serif: 'Noto Serif JP', serif;
  --font-accent-en: 'Lato', sans-serif;

  /* タイポグラフィ - SP (基準: 13px) */
  --text-h1: 32.5px;
  --text-h2: 22.1px;
  --text-h3: 18.2px;
  --text-h4: 15.6px;
  --text-body: 13px;

  /* 余白 */
  --section-gap: 80px;
  --container-padding: 20px;

  /* シャドウ */
  --shadow-sm: 0 2px 8px rgba(25, 39, 66, 0.08);
  --shadow-md: 0 4px 20px rgba(25, 39, 66, 0.12);
  --shadow-lg: 0 8px 32px rgba(25, 39, 66, 0.15);
}

@media (min-width: 768px) {
  :root {
    /* タイポグラフィ - PC (基準: 15px) */
    --text-h1: 42px;
    --text-h2: 31.95px;
    --text-h3: 24px;
    --text-h4: 18px;
    --text-body: 15px;

    /* 余白 */
    --section-gap: 100px;
    --container-padding: 40px;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  font-size: var(--text-body);
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

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

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

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

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

/* ==========================================================================
   Animation
   ========================================================================== */
.js-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.js-fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.js-fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ==========================================================================
   Layout - Header
   ========================================================================== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

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

.l-header__logo {
  display: block;
  z-index: 1001;
}

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

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

/* ハンバーガーボタン */
.l-header__hamburger {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.l-header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

.l-header__hamburger span:nth-child(1) { top: 14px; }
.l-header__hamburger span:nth-child(2) { top: 21px; }
.l-header__hamburger span:nth-child(3) { top: 28px; }

.l-header__hamburger.is-active {
  opacity: 0;
  pointer-events: none;
}

/* ナビゲーション（メガメニュー） */
.l-header__nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  z-index: 1010;
}

.l-header__nav.is-open {
  right: 0;
}

.l-header__nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: var(--color-primary-dark);
}

.l-header__nav-logo img {
  height: 24px;
  filter: brightness(0) invert(1);
}

.l-header__nav-close {
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}

.l-header__nav-close span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
}

.l-header__nav-close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.l-header__nav-close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.l-header__nav-inner {
  padding: 24px 20px;
}

.l-header__mega-menu-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.l-header__mega-menu-category {
  margin-bottom: 0;
}

.l-header__mega-menu-title {
  font-family: var(--font-accent-en);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-secondary);
}

.l-header__mega-menu-list li {
  border-bottom: 1px solid var(--color-border);
}

.l-header__mega-menu-list a {
  display: block;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.l-header__mega-menu-list a:hover {
  color: var(--color-primary);
  padding-left: 8px;
}

.l-header__mega-menu-visual {
  display: none;
}

.l-header__mega-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

/* オーバーレイ */
.l-header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1005;
}

.l-header__overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

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

  .l-header__nav {
    width: 720px;
    right: -720px;
  }

  .l-header__nav-header {
    padding: 16px 32px;
  }

  .l-header__nav-logo img {
    height: 28px;
  }

  .l-header__nav-inner {
    padding: 32px;
  }

  .l-header__mega-menu-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 200px;
    gap: 32px;
    margin-bottom: 0;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-border);
  }

  .l-header__mega-menu-title {
    font-size: 12px;
  }

  .l-header__mega-menu-list li {
    border-bottom: none;
  }

  .l-header__mega-menu-list a {
    padding: 10px 0;
    font-size: 15px;
  }

  .l-header__mega-menu-visual {
    display: block;
  }

  .l-header__mega-menu-visual img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    margin-bottom: 8px;
  }

  .l-header__mega-menu-visual-text {
    font-size: 12px;
    color: var(--color-text-light);
    text-align: center;
  }

  .l-header__mega-menu-cta {
    flex-direction: row;
    gap: 16px;
    padding: 24px 0 0;
    margin-top: 24px;
  }

  .l-header__mega-menu-cta .c-btn {
    flex: 1;
  }
}

/* ==========================================================================
   Layout - Main
   ========================================================================== */
.l-main {
  padding-top: 68px;
  overflow-x: hidden;
}

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

.l-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ==========================================================================
   Layout - Footer
   ========================================================================== */
.l-footer {
  background: var(--color-primary-dark);
  padding: 40px 20px 32px;
  position: relative;
}

.l-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.l-footer__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

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

.l-footer__logo img {
  height: 32px;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

.l-footer__links {
  margin-bottom: 24px;
}

.l-footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  transition: color 0.2s;
}

.l-footer__links a:hover {
  color: #fff;
}

.l-footer__copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

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

  .l-footer__logo img {
    height: 40px;
  }
}

/* ==========================================================================
   Layout - Fixed CTA
   ========================================================================== */
.l-fixed-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  left: auto;
  z-index: 900;
  width: 70%;
  max-width: 280px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

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

.l-fixed-cta__link {
  display: block;
  transition: transform 0.3s;
  border-radius: 8px;
  overflow: hidden;
}

.l-fixed-cta__link:hover {
  transform: translateY(-2px);
}

.l-fixed-cta__banner {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .l-fixed-cta {
    bottom: 24px;
    right: 24px;
    width: auto;
    max-width: 320px;
  }
}

/* ==========================================================================
   Component - Button
   ========================================================================== */
.c-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-weight: 700;
  padding: 14px 24px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(221, 235, 46, 0.4);
  position: relative;
  text-decoration: none;
  overflow: hidden;
}

.c-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.c-btn:hover::before {
  left: 100%;
}

.c-btn__sub {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.9;
}

.c-btn__main {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.c-btn__main::after {
  content: '>';
  display: inline-block;
  transition: transform 0.3s;
}

.c-btn:hover .c-btn__main::after {
  transform: translateX(4px);
}

.c-btn:hover {
  box-shadow: 0 8px 25px rgba(221, 235, 46, 0.5);
  transform: translateY(-3px);
}

.c-btn--header {
  display: none;
}

.c-btn--large {
  padding: 18px 28px;
  width: 100%;
  max-width: 360px;
}

.c-btn--large .c-btn__sub {
  font-size: 10px;
}

.c-btn--large .c-btn__main {
  font-size: 15px;
}

.c-btn--mega {
  width: 100%;
  padding: 16px 20px;
}

.c-btn--tel {
  background: var(--color-bg-white);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  box-shadow: none;
}

.c-btn--tel:hover {
  background: var(--color-bg-sub);
  box-shadow: none;
  transform: none;
}

.c-btn--tel::before {
  display: none;
}

.c-btn--tel .c-btn__main {
  font-size: 18px;
  font-weight: 700;
}

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

  .c-btn__sub {
    font-size: 11px;
  }

  .c-btn__main {
    font-size: 16px;
  }

  .c-btn--header {
    display: inline-flex;
    padding: 10px 20px;
  }

  .c-btn--header .c-btn__sub {
    font-size: 9px;
  }

  .c-btn--header .c-btn__main {
    font-size: 13px;
  }

  .c-btn--large {
    padding: 22px 44px;
    max-width: 420px;
  }

  .c-btn--large .c-btn__sub {
    font-size: 11px;
  }

  .c-btn--large .c-btn__main {
    font-size: 17px;
  }
}

/* ==========================================================================
   Component - Section Title（センター寄せ + 英語背景あしらい）
   ========================================================================== */
.c-section-title {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.c-section-title__en {
  font-family: var(--font-accent-en);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.06;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.c-section-title__main {
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.4;
  position: relative;
  display: inline-block;
}

.c-section-title__main::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 16px auto 0;
}

.c-section-title__main sup {
  font-size: 10px;
  font-weight: 400;
  vertical-align: super;
}

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

  .c-section-title__en {
    font-size: 80px;
  }

  .c-section-title__main::after {
    width: 80px;
    height: 4px;
    margin-top: 20px;
  }

  .c-section-title__main sup {
    font-size: 12px;
  }
}

/* ==========================================================================
   Component - H3 Title（左棒スタイル - H3のみ使用）
   ========================================================================== */
.c-h3-title {
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--color-primary);
  padding-left: 16px;
  border-left: 4px solid var(--color-accent);
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .c-h3-title {
    padding-left: 20px;
    margin-bottom: 24px;
  }
}

/* ==========================================================================
   セクション区切りの波線
   ========================================================================== */
.l-wave-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1;
  pointer-events: none;
  line-height: 0;
  transform: translateY(-100%);
}

@media (min-width: 768px) {
  .l-wave-divider {
    height: 80px;
  }
}

.l-wave-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

.l-wave-divider--white svg path {
  fill: var(--color-bg-white);
}

.l-wave-divider--gray svg path {
  fill: var(--color-bg-gray);
}

.l-wave-divider--sub svg path {
  fill: var(--color-bg-sub);
}

.l-wave-divider--primary svg path {
  fill: var(--color-primary);
}

/* ==========================================================================
   Project - 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__btn {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(221, 235, 46, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(221, 235, 46, 0.8);
  }
}

@media (min-width: 768px) {
  .p-fv__btn {
    bottom: 12%;
    left: 8%;
    transform: none;
  }
}


/* ==========================================================================
   Project - Results (症例・実績) - カード型・影・角丸
   ========================================================================== */
.p-results {
  padding: var(--section-gap) 0;
  background: var(--color-bg-white);
  position: relative;
}

.p-results__lead {
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 48px;
  color: var(--color-text-light);
}

.p-results__cases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 56px;
}

.p-results__case {
  background: var(--color-bg-white);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
}

.p-results__case:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.p-results__case-visual {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  position: relative;
}

.p-results__case-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0 5.5 4.5 10 10 10s10-4.5 10-10-4.5-10-10-10-10 4.5-10 10z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.p-results__case-before,
.p-results__case-after {
  flex: 1;
  position: relative;
  z-index: 1;
}

.p-results__case-before img,
.p-results__case-after img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.p-results__case-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-family: var(--font-accent-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 4px;
}

.p-results__case-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.p-results__case-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: translate(-70%, -50%) rotate(-45deg);
}

.p-results__case-info {
  padding: 24px;
}

.p-results__case-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.p-results__case-tag {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #0066b3 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
}

.p-results__case-period {
  font-size: 12px;
  color: var(--color-text-light);
}

.p-results__case-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--color-border);
}

.p-results__case-detail {
  text-align: center;
}

.p-results__case-detail-label {
  display: block;
  font-size: 10px;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.p-results__case-detail-value {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text);
}

.p-results__case-detail-value--price {
  font-family: var(--font-accent-en);
  font-size: 22px;
  color: var(--color-primary);
}

.p-results__case-detail-value--price small {
  font-size: 11px;
  font-weight: 500;
}

.p-results__case-point {
  font-size: 13px;
  line-height: 1.7;
  padding: 16px;
  background: var(--color-bg-sub);
  position: relative;
}

.p-results__case-point::before {
  content: '';
  position: absolute;
  top: 0;
  left: 16px;
  width: 3px;
  height: 100%;
  background: var(--color-secondary);
}

.p-results__case-point {
  padding-left: 28px;
}

.p-results__case-point strong {
  color: var(--color-primary);
}

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

  .p-results__cases {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .p-results__case-visual {
    padding: 20px;
  }

  .p-results__case-info {
    padding: 28px;
  }

  .p-results__case-detail-value--price {
    font-size: 26px;
  }

  .p-results__case-point {
    font-size: 14px;
  }
}

/* 治療成績サマリー */
.p-results__summary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 40px 24px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.p-results__summary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.p-results__summary-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 28px;
  position: relative;
}

.p-results__summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
}

.p-results__summary-item {
  text-align: center;
  padding: 20px 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

.p-results__summary-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.p-results__summary-value {
  display: block;
  font-family: var(--font-accent-en);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.p-results__summary-value small {
  font-size: 14px;
  font-weight: 500;
}

.p-results__summary-note {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}

@media (min-width: 768px) {
  .p-results__summary {
    padding: 56px 48px;
  }

  .p-results__summary-title {
    font-size: 18px;
    margin-bottom: 36px;
  }

  .p-results__summary-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .p-results__summary-item {
    padding: 24px 16px;
  }

  .p-results__summary-value {
    font-size: 48px;
  }
}

/* 注釈 */
.p-results__notes {
  margin-bottom: 48px;
  padding: 20px;
  background: var(--color-bg-gray);
}

.p-results__notes p {
  font-size: 11px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* 患者さんの声 */
.p-results__voices {
  background: var(--color-bg-sub);
  padding: 40px 24px;
  position: relative;
}

.p-results__voices::before {
  content: 'VOICE';
  font-family: var(--font-accent-en);
  font-size: 64px;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.04;
  position: absolute;
  top: 20px;
  left: 20px;
  letter-spacing: 0.05em;
  pointer-events: none;
}

.p-results__voices-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 28px;
  position: relative;
}

.p-results__voices-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-results__voice {
  background: var(--color-bg-white);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.p-results__voice-icon {
  font-family: var(--font-accent-en);
  font-size: 40px;
  font-weight: 400;
  font-style: italic;
  color: var(--color-secondary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 8px;
}

.p-results__voice-text {
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

@media (min-width: 768px) {
  .p-results__voices {
    padding: 56px;
  }

  .p-results__voices::before {
    font-size: 100px;
    top: 30px;
    left: 40px;
  }

  .p-results__voices-title {
    font-size: 18px;
    margin-bottom: 36px;
  }

  .p-results__voices-list {
    flex-direction: row;
    gap: 24px;
  }

  .p-results__voice {
    flex: 1;
    padding: 28px;
  }

  .p-results__voice-text {
    font-size: 15px;
  }
}

/* ==========================================================================
   Project - Why Fail (なぜ失敗するか) - 番号背景・レイヤー構造
   ========================================================================== */
.p-why-fail {
  padding: var(--section-gap) 0;
  background: var(--color-bg-gray);
  position: relative;
  overflow: hidden;
}

.p-why-fail::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 119, 210, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.p-why-fail__lead {
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 48px;
  color: var(--color-text-light);
}

.p-why-fail__items {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 56px;
}

.p-why-fail__item {
  background: var(--color-bg-white);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

/* 番号の大きな背景 */
.p-why-fail__item::before {
  content: attr(data-num);
  font-family: var(--font-accent-en);
  font-size: 120px;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.04;
  position: absolute;
  top: -20px;
  right: 20px;
  line-height: 1;
  pointer-events: none;
}

.p-why-fail__item-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  position: relative;
}

.p-why-fail__item-num {
  font-family: var(--font-accent-en);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.p-why-fail__item-title-wrap {
  flex: 1;
}

.p-why-fail__item-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.p-why-fail__item-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

.p-why-fail__item-body {
  padding: 28px 24px;
}

/* 画像レイヤー構造 */
.p-why-fail__item-image {
  margin-bottom: 24px;
  position: relative;
}

.p-why-fail__item-image::before {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 100%;
  height: 100%;
  background: var(--color-bg-sub);
  z-index: 0;
}

.p-why-fail__item-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.p-why-fail__item-content p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}

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

.p-why-fail__item-alert {
  background: linear-gradient(90deg, rgba(0, 119, 210, 0.08) 0%, rgba(0, 119, 210, 0.02) 100%);
  padding: 16px 16px 16px 20px;
  position: relative;
}

.p-why-fail__item-alert::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-secondary);

}

.p-why-fail__item-alert strong {
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .p-why-fail__lead {
    font-size: 16px;
    margin-bottom: 56px;
  }

  .p-why-fail__items {
    gap: 48px;
    margin-bottom: 64px;
  }

  .p-why-fail__item::before {
    font-size: 180px;
    top: -30px;
    right: 40px;
  }

  .p-why-fail__item-header {
    padding: 28px 32px;
  }

  .p-why-fail__item-num {
    font-size: 40px;
  }

  .p-why-fail__item-title {
    font-size: 22px;
  }

  .p-why-fail__item-subtitle {
    font-size: 14px;
  }

  .p-why-fail__item-body {
    display: flex;
    gap: 36px;
    padding: 36px;
  }

  .p-why-fail__item-image {
    flex: 0 0 300px;
    margin-bottom: 0;
  }

  .p-why-fail__item-image::before {
    bottom: -12px;
    right: -12px;
  }

  .p-why-fail__item-image img {
    height: 220px;
  }

  .p-why-fail__item-content {
    flex: 1;
  }

  .p-why-fail__item-content p {
    font-size: 15px;
  }
}

/* 結論 */
.p-why-fail__conclusion {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.p-why-fail__conclusion::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.p-why-fail__conclusion p {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  line-height: 1.8;
  position: relative;
}

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

@media (min-width: 768px) {
  .p-why-fail__conclusion {
    padding: 48px 56px;
  }

  .p-why-fail__conclusion p {
    font-size: 18px;
  }
}

/* ==========================================================================
   Project - Criteria (判断基準)
   ========================================================================== */
.p-criteria {
  padding: var(--section-gap) 0;
  background: var(--color-bg-white);
  position: relative;
}

.p-criteria__checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.p-criteria__check {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--color-bg-white);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
}

.p-criteria__check:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.p-criteria__check-box {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 3px solid var(--color-secondary);
  position: relative;
  background: var(--color-bg-sub);
}

.p-criteria__check-text {
  font-size: 14px;
  line-height: 1.7;
}

.p-criteria__check-text strong {
  color: var(--color-primary);
  background: linear-gradient(transparent 60%, rgba(221, 235, 46, 0.4) 60%);
}

@media (min-width: 768px) {
  .p-criteria__checklist {
    gap: 20px;
    margin-bottom: 44px;
  }

  .p-criteria__check {
    padding: 28px 32px;
  }

  .p-criteria__check-text {
    font-size: 16px;
  }
}

/* アラート */
.p-criteria__alert {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #0066b3 100%);
  padding: 28px;
  margin-bottom: 44px;
  position: relative;
  overflow: hidden;
}


.p-criteria__alert-text {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1.7;
  position: relative;
}

.p-criteria__alert-text strong {
  color: var(--color-accent);
}

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

  .p-criteria__alert-text {
    font-size: 17px;
  }
}

/* 結論 */
.p-criteria__conclusion {
  text-align: center;
}

.p-criteria__conclusion > p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 32px;
  color: var(--color-text-light);
}

.p-criteria__loss {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.p-criteria__loss-item {
  background: var(--color-bg-white);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.p-criteria__loss-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-secondary);
}

.p-criteria__loss-label {
  display: block;
  font-size: 12px;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.p-criteria__loss-value {
  font-family: var(--font-accent-en);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  display: inline-block;
  min-width: 90px;
}

.p-criteria__loss-value small {
  font-size: 14px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .p-criteria__conclusion > p {
    font-size: 17px;
  }

  .p-criteria__loss {
    gap: 32px;
  }

  .p-criteria__loss-item {
    padding: 36px 56px;
  }

  .p-criteria__loss-value {
    font-size: 52px;
  }
}

/* ==========================================================================
   Project - Comparison (比較)
   ========================================================================== */
.p-comparison {
  padding: var(--section-gap) 0;
  background: var(--color-bg-sub);
  position: relative;
  overflow: hidden;
}

.p-comparison::before {
  content: 'VS';
  font-family: var(--font-accent-en);
  font-size: 200px;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.03;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.p-comparison__lead {
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 44px;
  color: var(--color-text-light);
}

/* 比較表 - 枠線軽減、カード型 */
.p-comparison__table-wrap {
  overflow-x: auto;
  margin-bottom: 56px;
}

.p-comparison__table {
  min-width: 600px;
  background: var(--color-bg-white);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: none;
}

.p-comparison__table th,
.p-comparison__table td {
  padding: 16px 20px;
  text-align: left;
  vertical-align: middle;
  border: none;
  border-bottom: 1px solid var(--color-bg-sub);
}

.p-comparison__table tr:last-child td {
  border-bottom: none;
}

.p-comparison__table-head {
  font-size: 13px;
  font-weight: 700;
  background: var(--color-bg-gray);
  text-align: center;
}

.p-comparison__table-head--online {
  background: #e8e8e8;
  color: var(--color-text-light);
}

.p-comparison__table-head--offline {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
}

.p-comparison__table-label {
  font-size: 13px;
  font-weight: 700;
  background: var(--color-bg-gray);
}

.p-comparison__table-cell {
  font-size: 13px;
}

.p-comparison__table-cell--online {
  background: rgba(0, 0, 0, 0.02);
}

.p-comparison__table-cell--offline {
  background: rgba(0, 119, 210, 0.05);
}

.p-comparison__rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 14px;
  font-weight: 700;
  margin-right: 8px;
}

.p-comparison__rating--good {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #0066b3 100%);
  color: #fff;
}

.p-comparison__rating--fair {
  background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
  color: #333;
}

.p-comparison__rating--poor {
  background: linear-gradient(135deg, #dc3545 0%, #bd2130 100%);
  color: #fff;
}

@media (min-width: 768px) {
  .p-comparison::before {
    font-size: 300px;
  }

  .p-comparison__lead {
    font-size: 16px;
    margin-bottom: 52px;
  }

  .p-comparison__table {
  }

  .p-comparison__table th,
  .p-comparison__table td {
    padding: 20px 24px;
  }

  .p-comparison__table-head,
  .p-comparison__table-label,
  .p-comparison__table-cell {
    font-size: 15px;
  }
}

/* おすすめ */
.p-comparison__recommend {
  margin-bottom: 48px;
}

.p-comparison__recommend-title {
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 28px;
}

.p-comparison__recommend-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.p-comparison__recommend-item {
  padding: 28px;
  background: var(--color-bg-white);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.p-comparison__recommend-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.p-comparison__recommend-item--online::before {
  background: #999;
}

.p-comparison__recommend-item--offline::before {
  background: var(--color-secondary);
}

.p-comparison__recommend-item-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.p-comparison__recommend-list {
  list-style: none;
}

.p-comparison__recommend-list li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.p-comparison__recommend-list li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--color-secondary);
}

@media (min-width: 768px) {
  .p-comparison__recommend-title {
    font-size: var(--text-h3);
    margin-bottom: 32px;
  }

  .p-comparison__recommend-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .p-comparison__recommend-item {
    padding: 32px;
  }

  .p-comparison__recommend-item-title {
    font-size: 16px;
  }

  .p-comparison__recommend-list li {
    font-size: 15px;
  }
}

/* 結論 */
.p-comparison__conclusion {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}

.p-comparison__conclusion::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.p-comparison__conclusion-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 16px;
  text-align: center;
  position: relative;
}

.p-comparison__conclusion p {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: center;
  position: relative;
}

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

.p-comparison__conclusion strong {
  color: var(--color-accent);
}

.p-comparison__conclusion-highlight {
  font-size: 15px;
  font-weight: 700;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  text-align: left;
  position: relative;
}

.p-comparison__conclusion-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-accent);

}

.p-comparison__conclusion-highlight {
  padding-left: 24px;
}

@media (min-width: 768px) {
  .p-comparison__conclusion {
    padding: 48px 56px;
  }

  .p-comparison__conclusion-title {
    font-size: 16px;
  }

  .p-comparison__conclusion p {
    font-size: 16px;
  }

  .p-comparison__conclusion-highlight {
    font-size: 17px;
    padding: 24px 24px 24px 28px;
  }
}

/* ==========================================================================
   Project - Why Us (なぜ当院か) - 画像レイヤー構造
   ========================================================================== */
.p-why-us {
  padding: var(--section-gap) 0;
  background: var(--color-bg-white);
  position: relative;
}

.p-why-us__lead {
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 56px;
  color: var(--color-text-light);
}

.p-why-us__lead strong {
  color: var(--color-primary);
  background: linear-gradient(transparent 60%, rgba(221, 235, 46, 0.4) 60%);
}

.p-why-us__reasons {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.p-why-us__reason {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

/* 画像レイヤー構造 */
.p-why-us__reason-image {
  width: 100%;
  position: relative;
}

.p-why-us__reason-image::before {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-bg-sub) 0%, var(--color-bg-gray) 100%);
  z-index: 0;
}

/* ドットパターン */
.p-why-us__reason-image::after {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 60px;
  height: 60px;
  background-image: radial-gradient(var(--color-secondary) 2px, transparent 2px);
  background-size: 8px 8px;
  opacity: 0.3;
  z-index: 0;
}

.p-why-us__reason-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.p-why-us__reason-content {
  flex: 1;
}

.p-why-us__reason-num {
  font-family: var(--font-accent-en);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: block;
}

.p-why-us__reason-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.4;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.p-why-us__reason-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin-top: 12px;
}

.p-why-us__reason-content p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}

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

.p-why-us__reason-highlight {
  background: var(--color-bg-sub);
  padding: 20px;
  position: relative;
}

.p-why-us__reason-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-secondary);

}

.p-why-us__reason-highlight {
  padding-left: 24px;
}

.p-why-us__reason-highlight strong {
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .p-why-us__lead {
    font-size: 16px;
    margin-bottom: 72px;
  }

  .p-why-us__reasons {
    gap: 80px;
  }

  .p-why-us__reason {
    flex-direction: row;
    gap: 56px;
    align-items: flex-start;
  }

  .p-why-us__reason--reverse {
    flex-direction: row-reverse;
  }

  .p-why-us__reason-image {
    flex: 0 0 400px;
  }

  .p-why-us__reason-image::before {
    bottom: -16px;
    right: -16px;
  }

  .p-why-us__reason--reverse .p-why-us__reason-image::before {
    right: auto;
    left: -16px;
  }

  .p-why-us__reason-image::after {
    width: 80px;
    height: 80px;
    top: -20px;
    left: -20px;
    background-size: 10px 10px;
  }

  .p-why-us__reason--reverse .p-why-us__reason-image::after {
    left: auto;
    right: -20px;
  }

  .p-why-us__reason-image img {
    height: 300px;
  }

  .p-why-us__reason-num {
    font-size: 12px;
  }

  .p-why-us__reason-title {
    font-size: 22px;
  }

  .p-why-us__reason-content p {
    font-size: 15px;
  }
}

/* ==========================================================================
   Project - Process (診療プロセス)
   ========================================================================== */
.p-process {
  padding: var(--section-gap) 0;
  background: var(--color-bg-gray);
  position: relative;
}

/* 全体フロー */
.p-process__flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 56px;
  padding: 24px;
  background: var(--color-bg-white);
  box-shadow: var(--shadow-sm);
}

.p-process__flow-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  position: relative;
  min-height: 56px;
}

.p-process__flow-step::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 48px;
  bottom: -16px;
  width: 2px;
  background: var(--color-border);
}

.p-process__flow-step:last-child::before {
  display: none;
}

.p-process__flow-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 24px;
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-accent-en);
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

.p-process__flow-content {
  flex: 1;
}

.p-process__flow-text {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2px;
}

.p-process__flow-sub {
  display: block;
  font-size: 11px;
  color: var(--color-text-light);
}

.p-process__flow-arrow {
  display: none;
}

@media (min-width: 768px) {
  .p-process__flow {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    padding: 36px 24px;
    gap: 8px;
    overflow-x: auto;
  }

  .p-process__flow-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 12px;
    gap: 0;
    min-width: 100px;
  }

  .p-process__flow-step::before {
    display: none;
  }

  .p-process__flow-num {
    width: auto;
    height: auto;
    background: transparent;
    color: var(--color-secondary);
    font-size: 11px;
    margin-bottom: 8px;
  }

  .p-process__flow-content {
    flex: none;
  }

  .p-process__flow-text {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .p-process__flow-sub {
    font-size: 10px;
  }

  .p-process__flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    flex-shrink: 0;
    padding-top: 20px;
  }

  .p-process__flow-arrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--color-secondary);
    border-bottom: 2px solid var(--color-secondary);
    transform: rotate(-45deg);
  }
}

/* セクション */
.p-process__section {
  margin-bottom: 48px;
}

.p-process__section:last-of-type {
  margin-bottom: 32px;
}

.p-process__section-title {
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--color-primary);
  padding-left: 16px;
  margin-bottom: 24px;
  border-left: 4px solid var(--color-accent);
}

@media (min-width: 768px) {
  .p-process__section-title {
    padding-left: 20px;
    margin-bottom: 32px;
  }
}

/* ステップ */
.p-process__steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-process__step {
  background: var(--color-bg-white);
  padding: 20px;
  position: relative;
  box-shadow: var(--shadow-sm);
  min-height: 90px;
}

.p-process__step::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 28px;
  width: 2px;
  height: 12px;
  background: linear-gradient(180deg, var(--color-secondary) 0%, transparent 100%);
}

.p-process__step:last-child::after {
  display: none;
}

.p-process__step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.p-process__step-num {
  font-family: var(--font-accent-en);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #0066b3 100%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-process__step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  flex: 1;
}

.p-process__step-time {
  font-size: 12px;
  color: var(--color-text-light);
  background: var(--color-bg-sub);
  padding: 4px 10px;
}

.p-process__step-text {
  font-size: 13px;
  color: var(--color-text);
  padding-left: 44px;
}

@media (min-width: 768px) {
  .p-process__steps {
    gap: 16px;
  }

  .p-process__step {
    padding: 24px 28px;
  }

  .p-process__step::after {
    bottom: -16px;
    left: 40px;
    height: 16px;
  }

  .p-process__step-num {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .p-process__step-title {
    font-size: 17px;
  }

  .p-process__step-text {
    font-size: 15px;
    padding-left: 48px;
  }
}

/* 注釈 */
.p-process__note {
  font-size: 12px;
  color: var(--color-text-light);
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--color-bg-white);
  position: relative;
}

.p-process__note::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-secondary);

}

.p-process__note {
  padding-left: 24px;
}

@media (min-width: 768px) {
  .p-process__note {
    font-size: 14px;
    padding: 20px 24px 20px 28px;
  }
}

/* ロジックテーブル - カード型 */
.p-process__logic-table-wrap {
  overflow-x: auto;
}

.p-process__logic-table {
  min-width: 500px;
  background: var(--color-bg-white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.p-process__logic-table th,
.p-process__logic-table td {
  padding: 14px 18px;
  text-align: left;
  border: none;
  border-bottom: 1px solid var(--color-bg-sub);
  font-size: 13px;
}

.p-process__logic-table tr:last-child td {
  border-bottom: none;
}

.p-process__logic-table thead th {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  font-weight: 700;
}

.p-process__logic-table tbody td:first-child {
  font-weight: 700;
  background: var(--color-bg-sub);
}

.p-process__logic-note {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary);
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(0, 119, 210, 0.08);
}

@media (min-width: 768px) {
  .p-process__logic-table {
  }

  .p-process__logic-table th,
  .p-process__logic-table td {
    padding: 18px 24px;
    font-size: 15px;
  }

  .p-process__logic-note {
    font-size: 15px;
    padding: 18px 24px;
  }
}

/* スケジュール */
.p-process__schedule {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-process__schedule-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--color-bg-white);
  box-shadow: var(--shadow-sm);
}

.p-process__schedule-time {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-bg-sub);
  padding: 8px 16px;
  min-width: 80px;
  text-align: center;
}

.p-process__schedule-content {
  font-size: 14px;
}

@media (min-width: 768px) {
  .p-process__schedule {
    gap: 16px;
  }

  .p-process__schedule-item {
    padding: 22px 28px;
  }

  .p-process__schedule-time {
    font-size: 15px;
    min-width: 100px;
  }

  .p-process__schedule-content {
    font-size: 16px;
  }
}

/* オンライン診療 */
.p-process__online {
  padding: 28px;
  background: linear-gradient(90deg, rgba(0, 119, 210, 0.08) 0%, rgba(0, 119, 210, 0.02) 100%);
  position: relative;
  overflow: hidden;
}

.p-process__online::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-secondary);
}

.p-process__online-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.p-process__online p {
  font-size: 14px;
  line-height: 1.8;
}

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

  .p-process__online-title {
    font-size: 17px;
  }

  .p-process__online p {
    font-size: 15px;
  }
}

/* ==========================================================================
   Project - Doctor (医師紹介) - 大きな写真・背景色
   ========================================================================== */
.p-doctor {
  padding: var(--section-gap) 0;
  background: linear-gradient(180deg, var(--color-bg-sub) 0%, var(--color-bg-white) 100%);
  position: relative;
  overflow: hidden;
}

.p-doctor::before {
  content: 'DOCTOR';
  font-family: var(--font-accent-en);
  font-size: 100px;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.03;
  position: absolute;
  top: 200px;
  right: -80px;
  letter-spacing: 0.05em;
  pointer-events: none;
}

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

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

/* 写真の装飾 */
.p-doctor__image::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  z-index: 0;
}

.p-doctor__image img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  border: 4px solid var(--color-bg-white);
  box-shadow: var(--shadow-lg);
}

.p-doctor__info {
  flex: 1;
}

.p-doctor__name {
  text-align: center;
  margin-bottom: 28px;
}

.p-doctor__name-ja {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.p-doctor__name-position {
  display: block;
  font-size: 13px;
  color: var(--color-text-light);
}

.p-doctor__profile-table {
  width: 100%;
  background: var(--color-bg-white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.p-doctor__profile-table th,
.p-doctor__profile-table td {
  padding: 16px 20px;
  border: none;
  border-bottom: 1px solid var(--color-bg-sub);
  font-size: 13px;
  vertical-align: top;
}

.p-doctor__profile-table tr:last-child th,
.p-doctor__profile-table tr:last-child td {
  border-bottom: none;
}

.p-doctor__profile-table th {
  width: 100px;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-bg-sub);
}

@media (min-width: 768px) {
  .p-doctor::before {
    font-size: 160px;
    top: 80px;
    right: 0;
  }

  .p-doctor__content {
    flex-direction: row;
    align-items: flex-start;
    gap: 56px;
  }

  .p-doctor__image::before {
    width: 280px;
    height: 280px;
    top: 10px;
  }

  .p-doctor__image img {
    width: 260px;
    height: 260px;
  }

  .p-doctor__name {
    text-align: left;
  }

  .p-doctor__name-ja {
    font-size: 32px;
  }

  .p-doctor__name-position {
    font-size: 14px;
  }

  .p-doctor__profile-table {
  }

  .p-doctor__profile-table th,
  .p-doctor__profile-table td {
    padding: 18px 24px;
    font-size: 15px;
  }

  .p-doctor__profile-table th {
    width: 140px;
  }
}

/* メッセージ */
.p-doctor__message {
  background: var(--color-bg-white);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.p-doctor__message-heading {
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
  margin-bottom: 24px;
}

.p-doctor__message-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.p-doctor__message-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-accent);
  margin-top: 10px;
}

.p-doctor__message p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
  position: relative;
}

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

.p-doctor__message-highlight {
  font-weight: 700;
  color: var(--color-primary);
  padding: 20px;
  background: var(--color-bg-sub);
}

@media (min-width: 768px) {
  .p-doctor__message {
    padding: 48px 56px;
  }

  .p-doctor__message-title {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .p-doctor__message p {
    font-size: 16px;
  }
}

/* ==========================================================================
   Project - Price (料金) - カード型・ジャンプ率
   ========================================================================== */
.p-price {
  padding: var(--section-gap) 0;
  background: var(--color-bg-white);
  position: relative;
}

/* モデルケース - カード型 */
.p-price__cases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 56px;
}

.p-price__case {
  background: var(--color-bg-white);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.p-price__case:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.p-price__case::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-secondary);
}

.p-price__case--featured {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  transform: scale(1.02);
}

.p-price__case--featured::before {
  background: var(--color-accent);
  height: 5px;
}

.p-price__case--featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.p-price__case-header {
  padding: 20px 24px 0;
}

.p-price__case-num {
  font-family: var(--font-accent-en);
  font-size: 10px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 4px;
}

.p-price__case--featured .p-price__case-num {
  color: var(--color-accent);
}

.p-price__case-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
}

.p-price__case--featured .p-price__case-title {
  color: #fff;
}

.p-price__case-body {
  padding: 16px 24px 24px;
}

.p-price__case-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

/* 数字のジャンプ率を上げる */
.p-price__case-price-num {
  font-family: var(--font-accent-en);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.p-price__case--featured .p-price__case-price-num {
  color: var(--color-accent);
}

.p-price__case-price-unit {
  font-size: 12px;
  color: var(--color-text);
}

.p-price__case--featured .p-price__case-price-unit {
  color: rgba(255, 255, 255, 0.8);
}

.p-price__case-period {
  font-size: 12px;
  color: var(--color-text-light);
  background: var(--color-bg-sub);
  display: inline-block;
  padding: 4px 10px;
}

.p-price__case--featured .p-price__case-period {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
}

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

  .p-price__case-header {
    padding: 24px 28px 0;
  }

  .p-price__case-title {
    font-size: 16px;
  }

  .p-price__case-body {
    padding: 16px 28px 28px;
  }

  .p-price__case-price-num {
    font-size: 52px;
  }
}

/* 詳細料金表 - 枠線軽減 */
.p-price__detail {
  margin-bottom: 40px;
}

.p-price__detail-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 4px solid var(--color-accent);
}

.p-price__detail-table-wrap {
  overflow-x: auto;
}

.p-price__detail-table {
  min-width: 400px;
  background: var(--color-bg-white);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.p-price__detail-table th,
.p-price__detail-table td {
  padding: 16px 20px;
  border: none;
  border-bottom: 1px solid var(--color-bg-sub);
  font-size: 13px;
}

.p-price__detail-table tr:last-child td {
  border-bottom: none;
}

.p-price__detail-table thead th {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  font-weight: 700;
}

.p-price__detail-table tbody td:first-child {
  font-weight: 500;
}

.p-price__detail-table tbody td:last-child {
  text-align: right;
}

.p-price__detail-table strong {
  color: var(--color-primary);
  font-size: 17px;
}

.p-price__detail-table small {
  display: block;
  font-size: 11px;
  color: var(--color-text-light);
}

@media (min-width: 768px) {
  .p-price__detail-title {
    font-size: 18px;
    margin-bottom: 28px;
  }

  .p-price__detail-table {
  }

  .p-price__detail-table th,
  .p-price__detail-table td {
    padding: 18px 28px;
    font-size: 15px;
  }

  .p-price__detail-table strong {
    font-size: 19px;
  }
}

/* 全額返金保証 */
.p-price__guarantee {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: linear-gradient(90deg, rgba(0, 119, 210, 0.08) 0%, rgba(0, 119, 210, 0.02) 100%);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.p-price__guarantee::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--color-secondary);
}

.p-price__guarantee-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  color: var(--color-secondary);
  background: var(--color-bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.p-price__guarantee-icon svg {
  width: 32px;
  height: 32px;
}

.p-price__guarantee-content {
  flex: 1;
}

.p-price__guarantee-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.p-price__guarantee-content > p {
  font-size: 14px;
  line-height: 1.7;
}

.p-price__guarantee-note {
  font-size: 12px;
  color: var(--color-text-light);
  margin-top: 8px;
}

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

  .p-price__guarantee-icon {
    width: 64px;
    height: 64px;
  }

  .p-price__guarantee-icon svg {
    width: 36px;
    height: 36px;
  }

  .p-price__guarantee-title {
    font-size: 18px;
  }

  .p-price__guarantee-content > p {
    font-size: 16px;
  }
}

/* 支払い方法 */
.p-price__payment {
  padding: 24px;
  background: var(--color-bg-gray);
}

.p-price__payment-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.p-price__payment p {
  font-size: 13px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .p-price__payment {
    padding: 28px;
  }

  .p-price__payment-title {
    font-size: 16px;
  }

  .p-price__payment p {
    font-size: 15px;
  }
}

/* ==========================================================================
   Project - FAQ (Accordion)
   ========================================================================== */
.p-faq {
  padding: var(--section-gap) 0;
  background: var(--color-bg-gray);
  position: relative;
}

.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.p-faq__item {
  background: var(--color-bg-white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.p-faq__item:hover {
  box-shadow: var(--shadow-md);
}

.p-faq__item.is-open {
  box-shadow: var(--shadow-md);
}

/* Question (Button) */
.p-faq__question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  width: 100%;
  background: var(--color-bg-white);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
}

.p-faq__question:hover {
  background: var(--color-bg-sub);
}

.p-faq__item.is-open .p-faq__question {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.p-faq__q {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent-en);
  font-size: 14px;
  font-weight: 700;
  background: var(--color-accent);
  color: var(--color-primary);
}

.p-faq__question p {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  flex: 1;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.p-faq__item.is-open .p-faq__question p {
  color: #fff;
}

/* Accordion Icon */
.p-faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s ease;
}

.p-faq__icon::before,
.p-faq__icon::after {
  content: '';
  position: absolute;
  background: var(--color-primary);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.p-faq__icon::before {
  top: 50%;
  left: 4px;
  width: 16px;
  height: 2px;
  transform: translateY(-50%);
}

.p-faq__icon::after {
  top: 4px;
  left: 50%;
  width: 2px;
  height: 16px;
  transform: translateX(-50%);
}

.p-faq__item.is-open .p-faq__icon::before,
.p-faq__item.is-open .p-faq__icon::after {
  background: #fff;
}

.p-faq__item.is-open .p-faq__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

/* Answer */
.p-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.p-faq__item.is-open .p-faq__answer {
  max-height: 500px;
}

.p-faq__answer-inner {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-sub);
}

.p-faq__a {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent-en);
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #0066b3 100%);
  color: #fff;
}

.p-faq__answer p {
  font-size: 14px;
  line-height: 1.8;
  flex: 1;
}

@media (min-width: 768px) {
  .p-faq__list {
    gap: 16px;
  }

  .p-faq__item {
  }

  .p-faq__question {
    padding: 24px 28px;
  }

  .p-faq__q,
  .p-faq__a {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .p-faq__question p,
  .p-faq__answer p {
    font-size: 16px;
  }

  .p-faq__answer-inner {
    padding: 24px 28px;
  }

  .p-faq__icon {
    width: 28px;
    height: 28px;
  }

  .p-faq__icon::before {
    left: 5px;
    width: 18px;
  }

  .p-faq__icon::after {
    top: 5px;
    height: 18px;
  }
}

/* ==========================================================================
   Project - CTA Section
   ========================================================================== */
.p-cta-section {
  width: 100%;
  position: relative;
}

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

.p-cta-section__image {
  width: 100%;
  height: auto;
  display: block;
  min-height: 500px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.p-cta-section__btn {
  position: absolute;
  bottom: 27%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  transition: transform 0.3s, opacity 0.3s;
}

.p-cta-section__btn:hover {
  transform: translateX(-50%) translateY(-4px);
  opacity: 0.9;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* CTA仮表示エリア */
.p-cta-section__placeholder {
  display: none; /* 一時非表示 - 画像で作成予定 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.p-cta-section__placeholder-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.p-cta-section__placeholder-text {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 24px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.p-cta-section__placeholder-offer {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 24px;
  margin-bottom: 24px;
}

.p-cta-section__placeholder-offer-label {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  margin-bottom: 8px;
}

.p-cta-section__placeholder-offer-text {
  font-size: 14px;
  line-height: 1.6;
}

.p-cta-section__placeholder-offer-text strong {
  display: block;
  font-size: 22px;
  color: var(--color-accent);
  margin: 8px 0;
}

.p-cta-section__placeholder-offer-text small {
  opacity: 0.8;
}

.p-cta-section__placeholder-promises {
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
}

.p-cta-section__placeholder-promises p {
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .p-cta-section__image {
    min-height: 600px;
  }

  .p-cta-section__btn {
    bottom: 19%;
  }

  .p-cta-section__placeholder-title {
    font-size: 34px;
  }

  .p-cta-section__placeholder-text {
    font-size: 15px;
  }

  .p-cta-section__placeholder-offer {
    padding: 32px;
  }

  .p-cta-section__placeholder-offer-text strong {
    font-size: 30px;
  }

  .p-cta-section__placeholder-promises {
    padding: 24px;
  }

  .p-cta-section__placeholder-promises p {
    font-size: 14px;
  }
}

/* ==========================================================================
   Project - Clinic Info
   ========================================================================== */
.p-clinic-info {
  padding: var(--section-gap) 0;
  background: var(--color-bg-sub);
  position: relative;
}

/* メイン（新宿院）- 1カラム */
.p-clinic-info__main {
  margin-bottom: 24px;
}

.p-clinic-info__item {
  background: var(--color-bg-white);
  padding: 28px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.p-clinic-info__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-primary);
}

/* Featured item (新宿院) */
.p-clinic-info__item--featured {
  background: var(--color-bg-white);
}

.p-clinic-info__item--featured::before {
  height: 6px;
  background: var(--color-accent);
}

.p-clinic-info__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.p-clinic-info__name::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-accent);
  position: absolute;
  bottom: -10px;
  left: 0;
}

.p-clinic-info__badge {
  font-size: 11px;
  font-weight: 700;
  background: var(--color-accent);
  padding: 4px 10px;
  color: var(--color-primary);
}

.p-clinic-info__details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.p-clinic-info__detail {
  display: flex;
  gap: 16px;
}

.p-clinic-info__label {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--color-secondary);
  width: 70px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-clinic-info__detail p {
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}

.p-clinic-info__detail a {
  color: var(--color-secondary);
  font-weight: 500;
}

/* サブ（横浜院・八重洲院）- 2カラム */
.p-clinic-info__sub {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.p-clinic-info__sub .p-clinic-info__item {
  padding: 24px;
}

/* マップ */
.p-clinic-info__map {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.p-clinic-info__map iframe {
  width: 100%;
  height: 220px;
  display: block;
}

.p-clinic-info__note {
  font-size: 13px;
  color: var(--color-text-light);
  text-align: center;
  padding: 16px 20px;
  background: var(--color-bg-white);
}

@media (min-width: 768px) {
  .p-clinic-info__main {
    margin-bottom: 32px;
  }

  .p-clinic-info__item {
    padding: 36px;
  }

  .p-clinic-info__item--featured .p-clinic-info__details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 40px;
  }

  .p-clinic-info__name {
    font-size: 22px;
  }

  .p-clinic-info__badge {
    font-size: 12px;
    padding: 5px 12px;
  }

  .p-clinic-info__detail p {
    font-size: 15px;
  }

  /* 2カラムレイアウト */
  .p-clinic-info__sub {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .p-clinic-info__sub .p-clinic-info__item {
    padding: 28px;
  }

  .p-clinic-info__sub .p-clinic-info__name {
    font-size: 18px;
  }

  .p-clinic-info__map {
    margin-top: 24px;
    padding-top: 24px;
  }

  .p-clinic-info__map iframe {
    height: 280px;
  }

  /* 新宿院（featured）のマップは中央寄せ */
  .p-clinic-info__item--featured .p-clinic-info__map {
    display: flex;
    justify-content: center;
  }

  .p-clinic-info__item--featured .p-clinic-info__map iframe {
    max-width: 560px;
  }

  .p-clinic-info__note {
    font-size: 14px;
  }
}

/* ==========================================================================
   Project - Empathy（問題提起セクション）
   ========================================================================== */
.p-empathy {
  padding: var(--section-gap) 0;
  background: var(--color-bg-white);
}

.p-empathy__content {
  max-width: 720px;
  margin: 0 auto;
}

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

.p-empathy__text p {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text);
  margin-bottom: 24px;
}

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

.p-empathy__quote {
  font-family: var(--font-serif);
  font-size: 18px !important;
  font-weight: 500;
  color: var(--color-primary) !important;
  padding: 24px 32px;
  border-left: 4px solid var(--color-accent);
  background: var(--color-bg-gray);
  margin: 32px 0 !important;
  line-height: 1.8 !important;
}

.p-empathy__closing {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--color-primary);
  padding: 32px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: rgba(255,255,255,0.95);
  position: relative;
  overflow: hidden;
}

.p-empathy__closing strong {
  color: #fff;
}

.p-empathy__closing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.p-empathy__closing p {
  position: relative;
  z-index: 1;
}

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

  .p-empathy__quote {
    font-size: 20px !important;
    padding: 28px 40px;
  }

  .p-empathy__closing {
    font-size: 18px;
    padding: 40px;
  }
}

/* ==========================================================================
   Project - Commitment（こだわりセクション）
   ========================================================================== */
.p-commitment {
  padding: var(--section-gap) 0;
  background: var(--color-primary);
  position: relative;
}

.p-commitment .c-section-title__en {
  color: rgba(255,255,255,0.15);
  opacity: 1;
}

.p-commitment .c-section-title__main {
  color: #fff;
}

.p-commitment .c-section-title__main::after {
  background: var(--color-accent);
}

.p-commitment__lead {
  text-align: center;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.8);
  margin-bottom: 56px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.p-commitment__items {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.p-commitment__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background: rgba(255,255,255,0.04);
  padding: 32px;
  border: 1px solid rgba(165, 160, 124, 0.3);
}

.p-commitment__item-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.p-commitment__item-num {
  font-family: var(--font-accent-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  display: block;
  margin-bottom: 12px;
}

.p-commitment__item-title {
  font-family: var(--font-serif);
  font-size: var(--text-h3);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.4;
}

.p-commitment__item-content p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}

.p-commitment__item-content strong {
  color: var(--color-accent-light);
}

.p-commitment__item-quote {
  margin-top: 20px;
  padding: 20px 24px;
  border-left: 3px solid var(--color-accent);
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.9);
  background: rgba(165, 160, 124, 0.1);
}

@media (min-width: 768px) {
  .p-commitment__lead {
    font-size: 15px;
    margin-bottom: 72px;
  }

  .p-commitment__item {
    grid-template-columns: 380px 1fr;
    gap: 48px;
    padding: 48px;
    align-items: center;
  }

  .p-commitment__item--reverse {
    grid-template-columns: 1fr 380px;
  }

  .p-commitment__item--reverse .p-commitment__item-image {
    order: 2;
  }

  .p-commitment__item--reverse .p-commitment__item-content {
    order: 1;
  }

  .p-commitment__item-image img {
    height: 280px;
  }

  .p-commitment__item-content p {
    font-size: 15px;
  }

  .p-commitment__item-quote {
    font-size: 15px;
    padding: 24px 32px;
  }
}

/* ==========================================================================
   c-section-title--light（ダーク背景用）
   ========================================================================== */
.c-section-title--light .c-section-title__en {
  color: rgba(255,255,255,0.15);
  opacity: 1;
}

.c-section-title--light .c-section-title__main {
  color: #fff;
}

.c-section-title--light .c-section-title__main::after {
  background: var(--color-accent);
}

/* ==========================================================================
   Noto Serif JP 見出し強調
   ========================================================================== */
.p-doctor__message-heading {
  font-family: var(--font-serif);
}

.c-section-title__main {
  font-family: var(--font-serif);
}
