/* 比較表の罫線を明確に */
.compare-table {
  border: 1px solid var(--color-beige-light);
}
.compare-table th, .compare-table td {
  border: 1px solid var(--color-beige-light);
}
/* 列 幅指定：料金・時間は常に130px */
.compare-table td[data-column="price"],
.compare-table th[data-column="price"],
.compare-table td[data-column="time"],
.compare-table th[data-column="time"] {
  min-width: 130px;
  max-width: 130px;
  width: 130px;
}

.compare-table td[data-column="approach"],
.compare-table th[data-column="approach"] {
  min-width: 110px;
  max-width: 110px;
  width: 110px;
}

.compare-table td[data-column="fit"],
.compare-table th[data-column="fit"] {
  min-width: 160px;
  max-width: 160px;
  width: 160px;
}

.compare-table td[data-column="pain"],
.compare-table th[data-column="pain"] {
  min-width: 150px;
  max-width: 150px;
  width: 150px;
}

.compare-table tr {
  min-height: 4.8em;
  height: 5.3em;
}
.compare-worry-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2em 0.2em;
  line-height: 1.7;
}
.compare-table td[data-column="concern"] .treatment-label {
  font-size: 0.55rem;
  padding: 0.13em 0.7em;
}
.compare-table td[data-column="concern"] {
  min-width: unset;
  width: 118px;
  white-space: normal;
  padding-top: 0.4em;
  padding-bottom: 0.4em;
}
/* ============================================
   Compare Table（施術比較表）
============================================ */
.compare-section {
  background: var(--color-beige-light);
  padding: var(--space-3xl) 0 var(--space-xl) 0;
  width: 100%;
}
.compare-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2em 1.5em;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 1.5em;
}
.compare-filter-btns, .compare-view-btns {
  display: flex;
  gap: 0.5em;
  flex-wrap: wrap;
}
.compare-filter-btn, .compare-view-btn {
  font-size: 0.92em;
  padding: 0.45em 1.2em;
  border-radius: var(--radius-full);
  border: 1.5px solid #e5cfc7;
  background: #fff;
  color: #b48b8b;
  font-weight: 500;
  transition: all var(--transition);
  margin-bottom: 0.2em;
}
.compare-filter-btn.active, .compare-view-btn.active {
  background: #fbeff2;
  color: #b48b8b;
  border-color: #e5cfc7;
  font-weight: 700;
}
.compare-table-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: 1.1em;
  box-shadow: 0 2px 8px rgba(200,180,170,0.07);
  margin-bottom: 1.2em;
}
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.97em;
}
.compare-table th, .compare-table td {
  padding: 1.4em 0.7em 1.2em 0.7em;
  border-bottom: 1px solid #ede5d8;
  text-align: left;
  background: #fff;
  vertical-align: middle;
}

/* 比較表の項目名（th）は左右中央揃え */
.compare-table th {
  text-align: center;
}
.compare-table th {
  background: #fbeff2;
  color: #b48b8b;
  font-weight: 700;
  position: sticky;
  top: 0;
  z-index: 2;
}
.compare-table .sticky-col {
  position: sticky;
  left: 0;
  background: #fff;
  z-index: 3;
  min-width: 75px;
  max-width: 75px;
  width: 75px;
  font-weight: 700;
  box-shadow: 2px 0 0 #f5f0eb;
  padding-left: 0.5em !important;
  padding-right: 0.5em !important;
}
.compare-table .sticky-col-right {
  position: sticky;
  right: 0;
  background: #fff;
  z-index: 3;
  min-width: 110px;
  box-shadow: -2px 0 0 #f5f0eb;
}
.compare-table tr {
  border-radius: 0.7em;
}
.compare-table tr:last-child td {
  border-bottom: none;
}
.compare-table .treatment-label {
  background: #fbeff2;
  color: #b48b8b;
  border-radius: 1em;
  font-size: 0.82rem;
  padding: 0.18em 0.9em;
  margin-right: 0.3em;
  margin-bottom: 0.2em;
  display: inline-block;
}
.compare-table .btn--sm {
  font-size: 0.92em;
  min-height: 36px;
  padding: 0.4em 1.1em;
  border-radius: 2em;
}
.compare-note {
  font-size: 0.97em;
  color: #6b5c52;
  margin: 1.5em 0 0.7em 0;
  text-align: center;
}
.compare-cta {
  margin-top: 1.5rem;
  background: #ede5d8;
  border-radius: 1.1em;
  padding: 1.5em 1.1em 1.2em 1.1em;
  text-align: center;
}
@media (max-width: 900px) {
  .compare-table {
    min-width: 600px;
    font-size: 0.95em;
  }
  .compare-table th, .compare-table td {
    min-width: 90px;
    padding: 1.1em 0.5em 1em 0.5em;
  }
  .compare-table td[data-column="price"],
  .compare-table th[data-column="price"],
  .compare-table td[data-column="time"],
  .compare-table th[data-column="time"] {
    min-width: 130px;
    max-width: 130px;
    width: 130px;
  }
  .compare-table .sticky-col {
    min-width: 75px;
    max-width: 75px;
    width: 75px;
  }
  .compare-table .sticky-col-right {
    min-width: 90px;
  }
}
@media (max-width: 600px) {
  .compare-section {
    padding: var(--space-xl) 0 var(--space-md) 0;
  }
  .compare-table {
    min-width: 480px;
    font-size: 0.93em;
  }
  .compare-table th, .compare-table td {
    min-width: unset;
    padding: 0.9em 0.3em 0.8em 0.3em;
    font-size: 0.93em;
  }
  .compare-table td[data-column="price"],
  .compare-table th[data-column="price"],
  .compare-table td[data-column="time"],
  .compare-table th[data-column="time"] {
    min-width: 130px;
    max-width: 130px;
    width: 130px;
  }
  .compare-table .sticky-col {
    min-width: unset;
    max-width: unset;
    width: 85px;
  }
  .compare-table .sticky-col-right {
    min-width: 70px;
  }
}
/* =============================
   Staff（スタッフ紹介）
   ============================= */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md) var(--space-sm);
}

.staff-card {
  position: relative;
}

/* 偶数カード（左列）は下へオフセット */
.staff-card--even {
  margin-top: 0;
}

/* 奇数カード（右列）は下へスタガー */
.staff-card--odd {
  margin-top: var(--space-xl);
}

.staff-card__photo {
  border-radius: 90px;
  overflow: hidden;
}

.staff-card__photo .img-placeholder {
  aspect-ratio: 3 / 4;
  border-radius: 0;
}

.staff-card__info {
  padding: var(--space-sm) var(--space-xs) 0;
}

.staff-card__name {
  font-family: var(--font-main);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 0.2rem;
}

.staff-card__role {
  font-size: 0.6875rem;
  color: var(--color-coral);
  letter-spacing: 0.08em;
  font-weight: 700;
}
/* =============================
   Doctor / Staff（院長紹介）
   ============================= */
.doctor-layout {
  position: relative;
}
.doctor-photo-wrap {
  position: relative;
  margin-bottom: var(--space-2xl);
  overflow: visible;
}
.doctor-photo-deco {
  position: absolute;
  top: -3.25rem;
  left: -4.75rem;
  width: 55%;
  aspect-ratio: 1 / 1;
  background-color: var(--color-pink-light);
  border-radius: 50%;
  opacity: 0.35;
  z-index: 0;
}
.doctor-photo {
  position: relative;
  z-index: 1;
  width: 90%;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.doctor-photo .img-placeholder {
  aspect-ratio: 3 / 4;
  border-radius: 0;
}
.doctor-name-badge {
  position: absolute;
  bottom: -17px;
  left: -2rem;
  z-index: 2;
  background-color: var(--color-white);
  padding: 1.5rem 5.5rem 1.5rem 4rem;
  margin-bottom: -1rem;
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
  box-shadow: var(--shadow-md);
}
.doctor-name-badge__role {
  display: block;
  font-size: 0.75rem;
  color: var(--color-coral);
  letter-spacing: 0.12em;
  margin-bottom: 0.25rem;
}
.doctor-name-badge__name {
  display: block;
  font-family: var(--font-main);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}
.doctor-name-badge__name-en {
  display: block;
  font-family: var(--font-en);
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-top: 0.25rem;
}
.doctor-text {
  padding: 0 var(--space-xs);
}
.doctor-quote {
  position: relative;
  margin: 0 0 var(--space-lg);
  padding: var(--space-sm) var(--space-sm) var(--space-lg) var(--space-xl);
  border-left: 3px solid var(--color-pink-light);
}
.doctor-quote::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 0.5rem;
  font-family: var(--font-en);
  font-size: 3.5rem;
  color: var(--color-pink-light);
  line-height: 1;
}
.doctor-quote__label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-pink);
  margin-bottom: 0.625rem;
}
.doctor-quote__main {
  font-family: var(--font-main);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 0.625rem;
}
.doctor-quote__sub {
  font-size: 0.875rem;
  line-height: 1.9;
  color: var(--color-text-sub);
}
.doctor-divider {
  height: 1px;
  background-color: var(--color-border);
  margin: var(--space-lg) 0;
}
.doctor-profile {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.9;
  color: var(--color-text-sub);
  border-left: 3px solid var(--color-beige-dark);
  padding: var(--space-sm) var(--space-sm) var(--space-sm) var(--space-xl);
}
.doctor-profile::before {
  content: '✦';
  position: absolute;
  top: 0.3rem;
  left: 0.5rem;
  font-size: 1.125rem;
  color: var(--color-beige-dark);
  line-height: 1;
}
.doctor-profile__label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}
/* ============================================
   Treatment Card Meta (料金・時間・DT)
   ============================================ */
.treatment-card__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-sm);
  margin-bottom: var(--space-sm);
}
.meta-item {
  text-align: center;
  padding: 0.375rem 0.25rem;
  border-right: 1px solid var(--color-border);
}
.meta-item:last-child {
  border-right: none;
}
.meta-item__label {
  display: block;
  font-size: 0.5625rem;
  color: var(--color-text-light);
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}
.meta-item__value {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}
.meta-item--price .meta-item__value {
  color: var(--color-coral);
  font-size: 0.875rem;
}
.meta-item--time .meta-item__value { color: #5a8a7e; }
.meta-item--down .meta-item__value { color: var(--color-gold-beige); }
.treatment-card__specs {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  margin: 0.5em 0 0.5em 0;
}
.treatment-card__specs div {
  display: flex;
  font-size: 0.93em;
  line-height: 1.7;
}
.treatment-card__specs dt {
  min-width: 4.5em;
  color: var(--color-text-light);
  font-weight: 500;
  margin-right: 0.5em;
}
.treatment-card__specs dd {
  margin: 0;
  color: var(--color-text-sub);
}
.treatment-card__note {
  display: flex;
  align-items: flex-start;
  gap: 0.4em;
  background: var(--color-beige-light);
  color: var(--color-text-sub);
  font-size: 0.78em;
  border-radius: var(--radius-md);
  padding: 0.5em 0.9em;
  margin-bottom: 0.5em;
  margin-top: 0.2em;
}
.note-icon {
  font-size: 1em;
  color: var(--color-pink);
  margin-right: 0.2em;
}
.treatment-card__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em 0.7em;
  margin-bottom: 0.25em;
  margin-top: 0.2em;
  width: 100%;
}
.treatment-label {
  display: inline-flex;
  align-items: center;
  background: var(--color-mint);
  color: var(--color-white);
  font-size: 0.75em;
  border-radius: var(--radius-full);
  padding: 0.18em 0.9em;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.7;
  white-space: nowrap;
}
/* ============================================
   Treatment Category Badge
   ============================================ */

/*
Theme Name: MELIA Skin Clinic
Author: MELIA Skin Clinic
Description: MELIA Skin Clinic 公式Webサイト
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: melia-skin-clinic
*/

/* ============================================
   CSS Custom Properties
   ============================================ */
:root {
  /* Colors */
  --color-white: #ffffff;
  --color-ivory: #faf8f5;
  --color-beige-light: #f5f0eb;
  --color-beige: #ede5d8;
  --color-beige-dark: #d6c9b6;
  --color-pink: #d4a096;
  --color-pink-light: #e8c4bc;
  --color-coral: #c98a7d;
  --color-gold-beige: #c4a882;
  --color-mint: #a8c4bc;
  --color-text: #3a3028;
  --color-text-sub: #6b5c52;
  --color-text-light: #9c8d84;
  --color-border: #e4dbd4;
  --color-bg: #faf8f5;

  /* Typography */
  --font-main: 'Noto Serif JP', 'Georgia', serif;
  --font-sub: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-en: 'Cormorant Garamond', 'Georgia', serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(58, 48, 40, 0.08);
  --shadow-md: 0 4px 16px rgba(58, 48, 40, 0.1);
  --shadow-lg: 0 8px 32px rgba(58, 48, 40, 0.12);

  /* Transition */
  --transition: 0.25s ease;

  /* Max width */
  --max-width: 1200px;
  --content-width: 800px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sub);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition);
}

a:hover {
  opacity: 0.75;
}

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 400;
  line-height: 1.4;
}

.en {
  font-family: var(--font-en);
  letter-spacing: 0.08em;
}

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

.container--narrow {
  max-width: var(--content-width);
  padding-bottom: var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
}

.section--sm {
  padding: var(--space-xl) 0;
}

.section--bg {
  background-color: var(--color-beige-light);
}

.section--beige {
  background-color: var(--color-beige);
}

/* ============================================
   Section Title
   ============================================ */
.section-title {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-title__en {
  display: block;
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--color-pink);
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.section-title__ja {
  display: block;
  font-family: var(--font-main);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--color-text);
  font-weight: 700;
}

.section-title__desc {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-sub);
  margin-top: var(--space-sm);
  line-height: 1.8;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-family: var(--font-sub);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  min-height: 52px;
  cursor: pointer;
}

.btn--primary {
  background-color: var(--color-coral);
  color: var(--color-white);
  border: 2px solid var(--color-coral);
}

.btn--primary:hover {
  background-color: var(--color-pink);
  border-color: var(--color-pink);
  opacity: 1;
}

.btn--outline {
  background-color: transparent;
  color: var(--color-coral);
  border: 2px solid var(--color-coral);
}

.btn--outline:hover {
  background-color: var(--color-coral);
  color: var(--color-white);
  opacity: 1;
}

.btn--white {
  background-color: var(--color-white);
  color: var(--color-coral);
  border: 2px solid var(--color-white);
}

.btn--lg {
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
  min-height: 60px;
}

.btn--full {
  width: 100%;
}

/* ============================================
   Cards
   ============================================ */
.card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

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

/* ============================================
   Image Placeholder
   ============================================ */
.img-placeholder {
  width: 100%;
  background-color: var(--color-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--color-text-light);
  font-size: 0.8125rem;
  border-radius: var(--radius-md);
}

.img-placeholder::before {
  content: '📷';
  font-size: 2rem;
}

.img-placeholder--hero {
  height: 100vh;
  min-height: 600px;
  border-radius: 0;
}

.img-placeholder--square {
  aspect-ratio: 1 / 1;
}

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

.img-placeholder--3-2 {
  aspect-ratio: 3 / 2;
}

.img-placeholder--portrait {
  aspect-ratio: 3 / 4;
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: background-color var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 var(--space-md);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--color-text);
  line-height: 1;
}

.site-logo__mark {
  width: 28px;
  height: auto;
  flex-shrink: 0;
}

.site-logo__text {
  display: flex;
  flex-direction: column;
}

.site-logo__name {
  font-family: var(--font-en);
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  color: var(--color-text);
  line-height: 1.2;
}

.site-logo__sub {
  font-family: var(--font-sub);
  font-size: 0.5625rem;
  letter-spacing: 0.12em;
  color: var(--color-text-sub);
  margin-top: 2px;
}

.header-nav {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--color-text);
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger-btn.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Drawer Menu */
.drawer-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-ivory);
  z-index: 99;
  padding: var(--space-lg) var(--space-md);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer-menu.is-open {
  transform: translateX(0);
}

.drawer-nav__list {
  margin-bottom: var(--space-lg);
}

.drawer-nav__item {
  border-bottom: 1px solid var(--color-border);
}

.drawer-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  font-size: 1rem;
  color: var(--color-text);
}

.drawer-nav__link::after {
  content: '›';
  font-size: 1.25rem;
  color: var(--color-pink);
}

.drawer-reserve-btn {
  width: 100%;
  margin-bottom: var(--space-sm);
}

.drawer-info {
  margin-top: var(--space-lg);
  font-size: 0.8125rem;
  color: var(--color-text-sub);
  line-height: 2;
}

/* ============================================
   Fixed CTA
   ============================================ */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 0.75rem var(--space-md);
  box-shadow: 0 -4px 20px rgba(58, 48, 40, 0.08);
}

.fixed-cta__inner {
  display: flex;
  gap: 0.75rem;
  max-width: 600px;
  margin: 0 auto;
}

.fixed-cta__btn {
  flex: 1;
  padding: 0.875rem 1rem;
  font-size: 0.8rem;
  min-height: 48px;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background-color: var(--color-text);
  color: var(--color-beige-light);
  padding: var(--space-3xl) 0 var(--space-lg);
  margin-bottom: 80px; /* Fixed CTA分の余白 */
}

.footer-inner {
  display: grid;
  gap: var(--space-xl);
}

.footer-logo {
  font-family: var(--font-en);
  font-size: 1.375rem;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.footer-logo span {
  display: block;
  font-family: var(--font-sub);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  color: var(--color-beige-dark);
  margin-top: 2px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--color-beige-dark);
  line-height: 1.8;
}

.footer-nav__title {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--color-beige-dark);
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav__link {
  font-size: 0.875rem;
  color: var(--color-beige-light);
  transition: color var(--transition);
}

.footer-nav__link:hover {
  color: var(--color-white);
  opacity: 1;
}

.footer-info {
  font-size: 0.8125rem;
  color: var(--color-beige-dark);
  line-height: 2;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-light);
}

/* ============================================
   Hero (Top Page)
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: 64px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg .img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(250, 248, 245, 0.1) 0%,
    rgba(58, 48, 40, 0.45) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-2xl) var(--space-md);
  color: var(--color-white);
  width: 100%;
}

.hero__label {
  display: inline-block;
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: var(--font-en);
  color: var(--color-pink-light);
  margin-bottom: var(--space-sm);
}

.hero__title {
  font-family: var(--font-main);
  font-size: clamp(1.75rem, 6vw, 3rem);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 12px rgba(58, 48, 40, 0.3);
}

.hero__title strong {
  font-weight: 400;
  color: var(--color-pink-light);
}

.hero__desc {
  font-size: 0.9375rem;
  line-height: 2;
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

.hero__btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ============================================
   Concept Section
   ============================================ */
/* ============================================
   Treatment Cards（添付CSSより復元）
   ============================================ */
.treatment-cards {
  display: grid;
  gap: var(--space-md);
}
.treatment-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition);
}
.treatment-card:hover {
  box-shadow: var(--shadow-md);
}
.treatment-card__img {
  width: 100%;
  flex-shrink: 0;
  position: relative;
}
.treatment-card__img .img-placeholder {
  aspect-ratio: 4 / 3;
  border-radius: 0;
  min-height: auto;
}
.treatment-card__body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.treatment-card__meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #e8e1db;
  margin-top: 1.2em;
  padding-top: 0.7em;
  margin-bottom: 0.7em;
  gap: 0;
}

.meta-item__label {
  font-size: 0.75em;
  color: #b48b8b;
  font-weight: 500;
  margin-bottom: 0.1em;
  letter-spacing: 0.02em;
}
.meta-item__value {
  font-size: 1em;
  font-weight: 600;
  color: var(--color-text-main);
  letter-spacing: 0.01em;
}
.meta-item--price .meta-item__value {
  color: #e08a6b;
}
.meta-item--time .meta-item__value {
  color: #5a8a7e;
}
.meta-item--down .meta-item__value {
  color: #b8a07a;
}
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--color-pink);
  border-radius: var(--radius-full);
  margin-top: 0.625rem;
  flex-shrink: 0;
}

/* ============================================
   Worries (お悩みから探す)
   ============================================ */
.worries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.worry-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: block;
}

.worry-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  opacity: 1;
}

.worry-card__img {
  aspect-ratio: 4 / 3;
}

.worry-card__body {
  padding: 0.875rem;
}

.worry-card__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.worry-card__desc {
  font-size: 0.75rem;
  color: var(--color-text-sub);
  line-height: 1.6;
}

.worries-unknown {
  background-color: var(--color-white);
  border: 2px solid var(--color-pink-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
}

.worries-unknown__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.worries-unknown__text {
  font-size: 0.875rem;
  color: var(--color-text-sub);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

/* ============================================
   Treatment Cards
   ============================================ */
.treatment-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: var(--space-xl);
  scrollbar-width: none;
}

.treatment-tabs::-webkit-scrollbar {
  display: none;
}

.treatment-tab {
  flex-shrink: 0;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1.5px solid var(--color-border);
  color: var(--color-text-sub);
  background-color: var(--color-white);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.treatment-tab.is-active,
.treatment-tab:hover {
  background-color: var(--color-pink);
  border-color: var(--color-pink);
  color: var(--color-white);
}

/* Phase3: 2列折返し・やわらかいカード */
.treatment-cards {
  display: grid;
  gap: var(--space-md);
}

.treatment-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
  min-height: 100%;
}
.treatment-card:hover {
  box-shadow: var(--shadow-md);
}

.treatment-card__img {
  width: 100%;
  flex-shrink: 0;
  position: relative;
}

.treatment-card__img .img-placeholder {
  aspect-ratio: 4 / 3;
  border-radius: 0;
  min-height: auto;
}

.treatment-card__body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.treatment-card__category {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  z-index: 1;
  display: inline-block;
  padding: 0.25rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  /* 背景・文字色はカテゴリ別テーマで上書き */
}

* ---- カテゴリ別カラーテーマ ---- */
/* 上端カラーバー */
.treatment-card.cat--beginner { border-top: 4px solid #a8c4bc; }
.treatment-card.cat--spot     { border-top: 4px solid var(--color-pink); }
.treatment-card.cat--pore     { border-top: 4px solid var(--color-coral); }
.treatment-card.cat--hair     { border-top: 4px solid #a094c0; }
.treatment-card.cat--iv       { border-top: 4px solid var(--color-gold-beige); }

/* カテゴリバッジ背景・文字色 */
.cat--beginner .treatment-card__category { background-color: #eaf4f1; color: #4a8a7e; }
.cat--spot     .treatment-card__category { background-color: #faeae7; color: #b06060; }
.cat--pore     .treatment-card__category { background-color: #f5e8e6; color: var(--color-coral); }
.cat--hair     .treatment-card__category { background-color: #edeaf5; color: #7b6aa0; }
.cat--iv       .treatment-card__category { background-color: #f5f0e8; color: #9b7d55; }

/* ---- カテゴリタブナビゲーション ---- */
.treatment-cat-legend {
  margin-bottom: var(--space-lg);
}

.treatment-cat-legend__label {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.treatment-cat-legend__items {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0.5rem;
  padding-bottom: 4px; /* スクロール中でもシャドウが切れないよう余白 */
}

.treatment-cat-legend__items::-webkit-scrollbar {
  display: none;
}

.cat-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: var(--color-text-sub);
  background-color: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--transition), border-color var(--transition),
              background-color var(--transition), box-shadow var(--transition);
}

.cat-legend-item:hover {
  opacity: 1;
  box-shadow: var(--shadow-sm);
}

.cat-legend-item::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ホバー時：カテゴリ色で囲み */
.cat--beginner.cat-legend-item:hover,
.cat--beginner.cat-legend-item:focus { color: #4a8a7e; border-color: #a8c4bc; background-color: #eaf4f1; }
.cat--spot.cat-legend-item:hover,
.cat--spot.cat-legend-item:focus     { color: #b06060; border-color: var(--color-pink); background-color: #faeae7; }
.cat--pore.cat-legend-item:hover,
.cat--pore.cat-legend-item:focus     { color: var(--color-coral); border-color: var(--color-coral); background-color: #f5e8e6; }
.cat--hair.cat-legend-item:hover,
.cat--hair.cat-legend-item:focus     { color: #7b6aa0; border-color: #a094c0; background-color: #edeaf5; }
.cat--iv.cat-legend-item:hover,
.cat--iv.cat-legend-item:focus       { color: #9b7d55; border-color: var(--color-gold-beige); background-color: #f5f0e8; }

.cat--beginner.cat-legend-item::before { background-color: #a8c4bc; }
.cat--spot.cat-legend-item::before     { background-color: var(--color-pink); }
.cat--pore.cat-legend-item::before     { background-color: var(--color-coral); }
.cat--hair.cat-legend-item::before     { background-color: #a094c0; }
.cat--iv.cat-legend-item::before       { background-color: var(--color-gold-beige); }

/* カテゴリ先頭カード: 固定ヘッダー分のスクロールマージン */
[id^="treat-"] {
  scroll-margin-top: calc(64px + var(--space-md));
}

.treatment-card__title {
  font-family: var(--font-main);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.treatment-card__desc {
  font-size: 0.8125rem;
  line-height: 1.85;
  color: var(--color-text-sub);
  margin-bottom: var(--space-sm);
  flex: 1;
}

.treatment-card__target {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-coral);
  margin-bottom: var(--space-sm);
}

.treatment-card__target::before {
  content: '✦';
  font-size: 0.5rem;
  flex-shrink: 0;
  opacity: 0.7;
}

.treatment-card__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.meta-item {
  text-align: center;
  padding: 0.375rem 0.25rem;
  border-right: 1px solid var(--color-border);
}

.meta-item:last-child {
  border-right: none;
}

.meta-item__label {
  display: block;
  font-size: 0.5625rem;
  color: var(--color-text-light);
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}

.meta-item__value {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

.meta-item--price .meta-item__value {
  color: var(--color-coral);
  font-size: 0.875rem;
}

.meta-item--time .meta-item__value { color: #5a8a7e; }
.meta-item--down .meta-item__value { color: var(--color-gold-beige); }

/* meta-label は page-treatments.php でも使用するため維持 */
.meta-label {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 500;
  background-color: var(--color-beige-light);
  color: var(--color-text-sub);
}

.meta-label--price { background-color: #fdf2ef; color: var(--color-coral); }
.meta-label--time { background-color: #f0f5f4; color: #5a8a7e; }
.meta-label--down { background-color: #f5f3ef; color: var(--color-gold-beige); }

.treatment-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-coral);
  align-self: flex-end;
  padding: 0.4rem 1rem;
  border: 1.5px solid var(--color-pink-light);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.treatment-card__link:hover {
  background-color: var(--color-coral);
  border-color: var(--color-coral);
  color: var(--color-white);
  opacity: 1;
}

.treatment-card__header {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.25em;
}
.treatment-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
  flex: 1;
}
.treatment-category-badge {
  display: inline-block;
  padding: 0.18em 0.9em;
  margin-bottom: 0.2em;
  font-size: 0.75em;
  font-weight: 500;
  color: var(--color-pink);
  background: var(--color-beige-light);
  border-radius: var(--radius-full);
  vertical-align: middle;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.treatment-card__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em;
  margin-bottom: 0.25em;
}
.treatment-label {
  display: inline-block;
  background: var(--color-mint);
  color: var(--color-white);
  font-size: 0.75em;
  border-radius: var(--radius-full);
  padding: 0.18em 0.9em;
  margin-right: 0.25em;
  margin-bottom: 0.15em;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.treatment-card__desc {
  font-size: 0.875rem;
  color: var(--color-text-sub);
  line-height: 1.8;
  margin-bottom: 0.5em;
}

.treatment-card__note {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  background: var(--color-beige-light);
  color: var(--color-text-sub);
  font-size: 0.8125em;
  border-radius: var(--radius-md);
  padding: 0.5em 0.9em;
  margin-bottom: 0.5em;
}
.note-icon {
  font-size: 1.1em;
  color: var(--color-pink);
  margin-right: 0.2em;
}
.treatment-card__link {
  margin-top: auto;
  font-size: 0.875rem;
  min-height: 44px;
  padding: 0.625rem 1.5rem;
}

.treatment-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.treatment-card__worry {
  font-size: 0.75rem;
  color: var(--color-coral);
  margin-bottom: var(--space-sm);
}

.meta-label {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 500;
  background-color: var(--color-beige-light);
  color: var(--color-text-sub);
}

.meta-label--price { background-color: #fdf2ef; color: var(--color-coral); }
.meta-label--time { background-color: #f0f5f4; color: #5a8a7e; }
.meta-label--down { background-color: #f5f3ef; color: var(--color-gold-beige); }

/* ============================================
   Price Cards
   ============================================ */
.price-cards {
  display: grid;
  gap: var(--space-sm);
}

.price-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.price-card__category {
  font-size: 0.75rem;
  color: var(--color-coral);
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.price-card__name {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.price-card__price {
  font-family: var(--font-en);
  font-size: 1.375rem;
  color: var(--color-coral);
  font-weight: 400;
  margin-bottom: var(--space-xs);
}

.price-card__price small {
  font-size: 0.875rem;
  font-family: var(--font-sub);
  color: var(--color-text-sub);
}

.price-card__note {
  font-size: 0.8125rem;
  color: var(--color-text-sub);
  line-height: 1.7;
}

.price-note {
  font-size: 0.8125rem;
  color: var(--color-text-sub);
  background-color: var(--color-beige-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  line-height: 1.9;
  margin-top: var(--space-md);
}

/* ============================================
   FAQ Accordion
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  cursor: pointer;
  transition: background-color var(--transition);
  width: 100%;
  text-align: left;
  background: none;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  font-family: inherit;
}

.faq-question:hover {
  background-color: var(--color-beige-light);
}

.faq-question__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: var(--color-pink-light);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-question__text {
  flex: 1;
  line-height: 1.6;
}

.faq-question__arrow {
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
  color: var(--color-text-light);
  flex-shrink: 0;
}

.faq-item.is-open .faq-question__arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 var(--space-md) var(--space-md);
  display: none;
  border-top: 1px solid var(--color-border);
}

.faq-answer.is-open {
  display: block;
}

.faq-answer__inner {
  padding-top: var(--space-md);
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--color-text-sub);
}

/* ============================================
   Step Flow
   ============================================ */
.step-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.step-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: var(--space-md);
  padding-bottom: var(--space-lg);
  position: relative;
}

.step-item:last-child {
  padding-bottom: 0;
}

.step-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 52px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-pink-light), var(--color-beige));
}

.step-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-number__num {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-pink);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-family: var(--font-en);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  padding: 0;
  text-align: center;
}

.step-body {
  padding-top: 0.75rem;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--color-text-sub);
  line-height: 1.8;
}

/* ============================================
   Doctor / Staff
   ============================================ */
.doctor-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.doctor-card__photo {
  aspect-ratio: 4 / 3;
}

.doctor-card__body {
  padding: var(--space-lg);
}

.doctor-card__role {
  font-size: 0.75rem;
  color: var(--color-coral);
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.doctor-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.doctor-card__name-en {
  font-family: var(--font-en);
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.doctor-card__profile {
  font-size: 0.875rem;
  line-height: 1.9;
  color: var(--color-text-sub);
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md) var(--space-sm);
}

.staff-card {
  position: relative;
}

/* 偶数カード（左列）は下へオフセット */
.staff-card--even {
  margin-top: 0;
}

/* 奇数カード（右列）は下へスタガー */
.staff-card--odd {
  margin-top: var(--space-xl);
}

.staff-card__photo {
  border-radius: 90px;
  overflow: hidden;
}

.staff-card__photo .img-placeholder {
  aspect-ratio: 3 / 4;
  border-radius: 0;
}

.staff-card__info {
  padding: var(--space-sm) var(--space-xs) 0;
}

.staff-card__name {
  font-family: var(--font-main);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 0.2rem;
}

.staff-card__role {
  font-size: 0.6875rem;
  color: var(--color-coral);
  letter-spacing: 0.08em;
  font-weight: 700;
}

/* ============================================
   Clinic Photos
   ============================================ */
/* コンテナの右はみ出しを許可 */
#clinic .container {
  overflow: visible;
}

.clinic-photos-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-sm);
  overflow: visible;
}

.clinic-photo {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.clinic-photo .img-placeholder {
  overflow: hidden;
  border-radius: inherit;
}

/* --- Photo 1: 左にはみ出すパノラド写真 --- */
.clinic-photo--1 {
  grid-column: span 2;
  margin-bottom: 50px;
  margin-left: calc(-1 * var(--space-md));
  border-radius: 0 90px 90px 0;
}
.clinic-photo--1 .img-placeholder { aspect-ratio: 16 / 9; }

/* --- Photo 2: 縦長・大きな全周角丸 --- */
.clinic-photo--2 {
  border-radius: 105px;
  width: 110%;
  margin-top: 13px;
  margin-left: -52px;
}
.clinic-photo--2 .img-placeholder { aspect-ratio: 3 / 4; }

/* --- Photo 3: 小さめ・右上大角丸 --- */
.clinic-photo--3 {
  align-self: end;
  border-radius: 90px;
  width: 145%;
  margin-left: -23px;
  margin-bottom: -100px;
}
.clinic-photo--3 .img-placeholder { aspect-ratio: 1 / 1.5; }

/* --- Photo 4: 左にはみ出すワイド --- */
.clinic-photo--4 {
  grid-column: span 2;
  width: 102%;
  margin-left: -72px;
  margin-top: 149px;
  margin-bottom: 31px;
  border-radius: 121px;
}
.clinic-photo--4 .img-placeholder { aspect-ratio: 1.5 / 1; }

/* キャプション（画像ブロック外・下部） */
.clinic-photo::after {
  content: attr(data-caption);
  display: block;
  padding: 0.4rem 0.25rem 0 1rem;
  font-size: 1rem;
  color: var(--color-text-sub);
  letter-spacing: 0.08em;
  text-align: center;
}

/* ============================================
   Reviews / Voice
   ============================================ */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.review-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--color-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--color-text-sub);
  flex-shrink: 0;
}

.review-card__meta {
  flex: 1;
}

.review-card__name {
  font-size: 0.875rem;
  font-weight: 700;
}

.review-card__detail {
  font-size: 0.75rem;
  color: var(--color-text-sub);
}

.review-card__stars {
  color: var(--color-gold-beige);
  font-size: 0.875rem;
  margin-bottom: var(--space-xs);
}

.review-card__text {
  font-size: 0.875rem;
  line-height: 1.9;
  color: var(--color-text-sub);
}

/* ============================================
   Instagram Section
   ============================================ */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.375rem;
  margin-bottom: var(--space-lg);
}

.instagram-item {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.instagram-item .img-placeholder {
  height: 100%;
  border-radius: 0;
  font-size: 0.6875rem;
}

.instagram-item .img-placeholder::before {
  font-size: 1.25rem;
}

.instagram-follow {
  text-align: center;
}

.instagram-follow__handle {
  font-size: 0.875rem;
  color: var(--color-text-sub);
  margin-bottom: var(--space-sm);
}

/* ============================================
   Case Studies (症例)
   ============================================ */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.case-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.case-card__before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background-color: var(--color-border);
}

.case-card__label {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.3rem;
  letter-spacing: 0.1em;
}

.case-card__label--before {
  background-color: var(--color-beige);
  color: var(--color-text-sub);
}

.case-card__label--after {
  background-color: var(--color-coral);
  color: var(--color-white);
}

.case-card__body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.case-card__treatment {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.case-card__worry {
  padding: 0.5rem var(--space-md);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--color-pink-light);
  border-bottom: 1px solid var(--color-pink-light);
  letter-spacing: 0.04em;
}
.case-card__worry::before {
  content: '✦ ';
  color: var(--color-white);
  font-size: 0.5rem;
}
.case-card__photo {
  display: flex;
  flex-direction: column;
}
.case-card__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-sm);
}
.case-meta-item {
  padding: 0.5rem 0.75rem;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.case-meta-item:nth-child(even) {
  border-right: none;
}
.case-meta-item:nth-last-child(-n+2) {
  border-bottom: none;
}
.case-meta-item__label {
  display: block;
  font-size: 0.5625rem;
  color: var(--color-text-light);
  letter-spacing: 0.02em;
  margin-bottom: 0.2rem;
}
.case-meta-item__value {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
}
.case-meta-item__value--price {
  color: var(--color-coral);
}
.case-card__risk {
  font-size: 0.6875rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
  flex: 1;
}
.case-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-coral);
  align-self: flex-end;
  padding: 0.4rem 1rem;
  border: 1.5px solid var(--color-pink-light);
  border-radius: var(--radius-full);
  transition: all var(--transition);
  text-decoration: none;
}
.case-card__link:hover {
  background-color: var(--color-coral);
  color: var(--color-white);
  border-color: var(--color-coral);
  opacity: 1;
}


.case-disclaimer {
  font-size: 0.75rem;
  color: var(--color-text-light);
  background-color: var(--color-beige-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  line-height: 1.9;
  margin-top: var(--space-md);
}

/* ============================================
   Access
   ============================================ */
.access-map {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--color-beige);
  margin-bottom: var(--space-lg);
  position: relative;
}

.access-map__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--color-text-sub);
  font-size: 0.875rem;
}

.access-info {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.access-info__row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--space-sm);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9375rem;
}

.access-info__row:last-child {
  border-bottom: none;
}

.access-info__label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-text-sub);
  padding-top: 2px;
}

.access-info__value {
  color: var(--color-text);
  line-height: 1.8;
}

/* ============================================
   Hours Table
   ============================================ */
.hours-table {
  width: 100%;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hours-table th,
.hours-table td {
  padding: 0.875rem var(--space-sm);
  font-size: 0.875rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.hours-table th {
  background-color: var(--color-beige-light);
  font-weight: 700;
  font-size: 0.8125rem;
}

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

.hours-table .closed {
  color: var(--color-text-light);
}

.hours-table .sun { color: #c0504d; }
.hours-table .sat { color: #4472c4; }

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-coral) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  color: var(--color-white);
}

.cta-banner__title {
  font-family: var(--font-main);
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 400;
  margin-bottom: var(--space-sm);
}

.cta-banner__desc {
  font-size: 0.9375rem;
  opacity: 0.9;
  margin-bottom: var(--space-lg);
  line-height: 1.9;
}

.cta-banner__note {
  font-size: 0.8125rem;
  opacity: 0.8;
  margin-top: var(--space-sm);
}

/* ============================================
   Form
   ============================================ */
.form-section {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.form-note {
  background-color: var(--color-beige-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  font-size: 0.875rem;
  line-height: 1.9;
  color: var(--color-text-sub);
  margin-bottom: var(--space-xl);
}

.form-note strong {
  display: block;
  color: var(--color-coral);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.form-required {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  background-color: var(--color-coral);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.form-optional {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  background-color: var(--color-beige);
  color: var(--color-text-sub);
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  flex-shrink: 0;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem var(--space-md);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: var(--color-text);
  background-color: var(--color-white);
  transition: border-color var(--transition);
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-pink);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select-wrap {
  position: relative;
}

.form-select-wrap::after {
  content: '▾';
  position: absolute;
  right: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--color-text-sub);
}

.form-radio-group,
.form-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.form-radio-label,
.form-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem var(--space-md);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.9375rem;
  transition: all var(--transition);
}

.form-radio-label:hover,
.form-checkbox-label:hover {
  border-color: var(--color-pink-light);
  background-color: var(--color-beige-light);
}

.form-radio-label input,
.form-checkbox-label input {
  accent-color: var(--color-pink);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.form-checkbox-group--inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.form-privacy {
  background-color: var(--color-beige-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  font-size: 0.8125rem;
  line-height: 1.9;
  color: var(--color-text-sub);
  margin-bottom: var(--space-md);
  max-height: 150px;
  overflow-y: auto;
}

.form-agree-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
}

.form-agree-label input {
  accent-color: var(--color-pink);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.form-submit-wrap {
  text-align: center;
  margin-top: var(--space-xl);
}

.form-submit-note {
  font-size: 0.8125rem;
  color: var(--color-text-sub);
  margin-top: var(--space-sm);
  line-height: 1.8;
}

/* ============================================
   Page Hero
   ============================================ */
.page-hero {
  padding: calc(64px + var(--space-2xl)) 0 var(--space-xl);
  text-align: center;
  background-color: var(--color-beige-light);
}

.page-hero__breadcrumb {
  font-size: 0.75rem;
  color: var(--color-text-sub);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.page-hero__breadcrumb a {
  color: var(--color-coral);
}

.page-hero__en {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-pink);
  display: block;
  margin-bottom: var(--space-xs);
}

.page-hero__title {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 400;
}

.page-hero__desc {
  font-size: 0.9375rem;
  color: var(--color-text-sub);
  margin-top: var(--space-sm);
  line-height: 1.9;
}

/* ============================================
   Reassurance Box
   ============================================ */
.reassurance-box {
  background: linear-gradient(135deg, var(--color-beige-light), var(--color-white));
  border: 1.5px solid var(--color-pink-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.reassurance-box__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-coral);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reassurance-box__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.reassurance-box__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.reassurance-box__item::before {
  content: '✓';
  color: var(--color-pink);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   Treatment Detail
   ============================================ */
.treatment-summary-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-xl);
}

.treatment-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.treatment-summary-item {
  text-align: center;
  padding: var(--space-sm);
  background-color: var(--color-beige-light);
  border-radius: var(--radius-md);
}

.treatment-summary-item__label {
  font-size: 0.6875rem;
  color: var(--color-text-sub);
  margin-bottom: 0.25rem;
}

.treatment-summary-item__value {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
}

.treatment-summary-item__value--price {
  color: var(--color-coral);
  font-family: var(--font-en);
  font-size: 1.125rem;
}

/* ============================================
   Responsive
   ============================================ */
/* === PC-FIRST RESPONSIVE REMOVED (mobile-first site) === */
























































































































































/* === 1024px BLOCK REMOVED === */

















/* ============================================
   お悩みから探す — ページ専用スタイル
   ============================================ */

/* テキストタグクラウド */
.symptom-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
}

.symptom-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1rem;
  background-color: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--color-text);
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  line-height: 1.4;
}

.symptom-tag::before {
  content: '›';
  color: var(--color-pink);
  font-size: 1rem;
  line-height: 1;
}

.symptom-tag:hover {
  background-color: var(--color-pink);
  border-color: var(--color-pink);
  color: var(--color-white);
  opacity: 1;
  transform: translateY(-1px);
}

.symptom-tag:hover::before {
  color: var(--color-white);
}

.symptom-tag--unknown {
  background-color: var(--color-beige-light);
  border-color: var(--color-gold-beige);
  color: var(--color-text-sub);
}

.symptom-tag--unknown::before {
  color: var(--color-gold-beige);
}

.symptom-tag--unknown:hover {
  background-color: var(--color-gold-beige);
  border-color: var(--color-gold-beige);
  color: var(--color-white);
}

/* スティッキーカテゴリナビ */
.worry-sticky-nav {
  position: sticky;
  top: 64px;
  z-index: 50;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 8px rgba(58, 48, 40, 0.04);
}

.worry-sticky-nav__list {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 var(--space-md);
}

.worry-sticky-nav__list::-webkit-scrollbar {
  display: none;
}

.worry-sticky-nav__link {
  flex-shrink: 0;
  display: block;
  padding: 0.875rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-sub);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}

.worry-sticky-nav__link:hover,
.worry-sticky-nav__link.is-active {
  color: var(--color-coral);
  border-bottom-color: var(--color-coral);
  opacity: 1;
}

.worry-sticky-nav__link--cta {
  color: var(--color-coral);
  font-weight: 700;
}

/* 安心メッセージバー */
.worry-reassurance {
  background-color: var(--color-beige-light);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  font-size: 0.9375rem;
  line-height: 2;
  color: var(--color-text-sub);
  text-align: center;
}

/* お悩みブロック */
.worry-sections {
  border-top: 1px solid var(--color-border);
}

.worry-block {
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid var(--color-border);
  scroll-margin-top: 110px;
}

.worry-block__header {
  margin-bottom: var(--space-xl);
}

.worry-block__en {
  display: block;
  font-family: var(--font-en);
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  color: var(--color-pink);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.worry-block__title {
  font-family: var(--font-main);
  font-size: clamp(1.25rem, 4vw, 1.625rem);
  font-weight: 400;
  color: var(--color-text);
}

.worry-block__layout {
  display: grid;
  gap: var(--space-xl);
}

.worry-block__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.worry-block__desc {
  font-size: 0.9375rem;
  line-height: 2;
  color: var(--color-text-sub);
}

/* 症状チェックリスト */
.worry-symptoms-box {
  background-color: var(--color-beige-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: 30px;
}

.worry-symptoms-box__title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-text-sub);
  letter-spacing: 0.03em;
  margin-bottom: var(--space-sm);
}

.worry-symptom-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.worry-symptom-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.6;
}

.worry-symptom-item::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background-color: var(--color-pink);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-size: 0.5625rem;
  font-weight: 700;
  margin-top: 0.0625rem;
  flex-shrink: 0;
}

/* 関連施術タグ */
.worry-treatments-row {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.worry-treatments-row__label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-text-sub);
  letter-spacing: 0.03em;
}

.worry-treatment-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.worry-treatment-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  background-color: var(--color-white);
  border: 1.5px solid var(--color-pink-light);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  color: var(--color-coral);
  text-decoration: none;
  transition: all var(--transition);
}

.worry-treatment-chip::before {
  content: '›';
  font-size: 1rem;
}

.worry-treatment-chip:hover {
  background-color: var(--color-pink);
  border-color: var(--color-pink);
  color: var(--color-white);
  opacity: 1;
}

/* 補足・注意書き */
.worry-note-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background-color: #fdf8f6;
  border-left: 3px solid var(--color-pink-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text-sub);
  line-height: 1.8;
}

.worry-note-box::before {
  content: 'i';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background-color: var(--color-pink-light);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

/* インライン Q&A */
.worry-inline-qa {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.worry-inline-qa__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.worry-qa-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.worry-qa-item__q {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.worry-qa-item__q::before {
  content: 'Q';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background-color: var(--color-coral);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-en);
  margin-top: 0.0625rem;
  flex-shrink: 0;
}

.worry-qa-item__a {
  font-size: 0.875rem;
  line-height: 1.9;
  color: var(--color-text-sub);
  padding-left: calc(22px + 0.5rem);
}

/* 何を選べばよいかわからない方へ */
.worry-unsure-section {
  background-color: var(--color-beige-light);
  scroll-margin-top: 110px;
}

.worry-unsure-inner {
  background: linear-gradient(135deg, var(--color-white) 0%, #fdf5f2 100%);
  border: 2px solid var(--color-pink-light);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
}

.worry-unsure__en {
  display: block;
  font-family: var(--font-en);
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  color: var(--color-pink);
  text-transform: uppercase;
  margin-bottom: 0.375rem;
}

.worry-unsure__title {
  font-family: var(--font-main);
  font-size: clamp(1.375rem, 4.5vw, 2rem);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.worry-unsure__desc {
  font-size: 0.9375rem;
  color: var(--color-text-sub);
  line-height: 2;
  margin-bottom: var(--space-xl);
}

.worry-unsure__list {
  display: grid;
  gap: 0.625rem;
  max-width: 400px;
  margin: 0 auto var(--space-xl);
  text-align: left;
}

.worry-unsure__list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.6;
}

.worry-unsure__list-item::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background-color: var(--color-pink);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-size: 0.5625rem;
  font-weight: 700;
  margin-top: 0.1875rem;
  flex-shrink: 0;
}

.worry-unsure__btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.worry-unsure__note {
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

/* お悩みページ レスポンシブ */
/* === WORRY-BLOCK 768px REMOVED (mobile-first) === */




























/* ============================================
   TOPページ専用スタイル (fp-)
   ============================================ */

/* ================================================
   Hero — 写真フル幅
   ================================================ */
.fp-hero {
  position: relative;
  padding-top: 64px;
  background-color: var(--color-white);
}

.fp-hero__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.fp-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ================================================
   Concept — 写真に重なる丸型グレーコンテナ
   参考画像: 写真下部に大きな円形グレー背景が重なり
             テキストが表示される。右側に花のイラスト
   ================================================ */
.fp-concept {
  position: relative;
  background-color: transparent;
  margin-top: -80px;        /* 写真に重なる */
  padding-bottom: 0;
  z-index: 1;
}

/* 左上のみが大きな角丸のコンテナ */
.fp-concept__blob {
  position: relative;
  background-color: var(--color-beige-light);
  border-radius: 0 120px 0 0;
  padding: 90px var(--space-md) calc(var(--space-2xl) + 70px);
  text-align: center;
  overflow: hidden;
}

/* チューリップフレーム右側装飾 */
.fp-concept__deco-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 150%;
  max-width: none;
  pointer-events: none;
  opacity: 0.7;
}

/* チューリップフレーム左側装飾 */
.fp-concept__deco-left {
  position: absolute;
  left: -40px;
  bottom: 0;
  width: 150%;
  max-width: none;
  pointer-events: none;
  opacity: 0.6;
}

.fp-concept__en {
  display: block;
  font-family: var(--font-en);
  font-size: 0.625rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-text-sub);
  margin-bottom: 0.5rem;
}

.fp-concept__title {
  font-family: var(--font-main);
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: var(--space-xl);
}

.fp-concept__text {
  font-size: 0.9375rem;
  line-height: 2;
  color: var(--color-text);
  text-align: center;
  margin: 0;
}

/* ================================================
   Voices — 白い大きな角丸コンテナ + 吹き出し交互
   参考画像: グレー背景に白い大きな丸角ボックス(左上直角)
             セクションタイトル→吹き出し+人物イラスト×3段
   ================================================ */
.fp-voices {
  background-color: transparent;
  position: relative;
  margin-top: -80px;
  z-index: 1;
}

/* 左上のみ大きな角丸・画面幅いっぱい・アイボリー背景 */
.fp-voices__card {
  background-color: var(--color-ivory);
  border-radius: 120px 0 0 0;
  padding: var(--space-2xl) var(--space-lg) calc(var(--space-2xl) + 80px);
  margin: 0;
}

/* セクションタイトル（大きな文字） */
.fp-voices__title {
  font-family: var(--font-main);
  font-size: clamp(1.375rem, 5vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
  text-align: center;
  margin-bottom: var(--space-2xl);
}

/* 各行：吹き出し＋イラスト */
.fp-voices__row {
  display: flex;
  align-items: flex-end;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

/* 右寄り行（回答側） */
.fp-voices__row--right {
  flex-direction: row-reverse;
}

/* 人物イラスト（高さ統一） */
.fp-voices__illust {
  flex-shrink: 0;
  width: auto;
  height: 80px;
  display: flex;
  align-items: flex-end;
}

.fp-voices__illust img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}

/* 吹き出し */
.fp-voices__bubble {
  flex: 1;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-text);
  position: relative;
  box-shadow: var(--shadow-sm);
}

/* 吹き出し三角（左向き） */
.fp-voices__bubble--left::before {
  content: '';
  position: absolute;
  right: -10px;
  bottom: 16px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--color-border);
}

.fp-voices__bubble--left::after {
  content: '';
  position: absolute;
  right: -9px;
  bottom: 17px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 9px solid var(--color-white);
}

/* 吹き出し三角（右向き） */
.fp-voices__bubble--right::before {
  content: '';
  position: absolute;
  left: -10px;
  bottom: 16px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 10px solid var(--color-border);
}

.fp-voices__bubble--right::after {
  content: '';
  position: absolute;
  left: -9px;
  bottom: 17px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 9px solid var(--color-white);
}

/* ================================================
   お悩みから探す — 大きな円形グレーコンテナ
   参考画像: 背景グレー色の大きな円形(正円)の中に
             WORRIES/タイトル/説明/3×2カード
   ================================================ */
.fp-worries {
  background-color: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-top: -155px;
}

/* 縦長スタジアム（ピル）形コンテナ */
.fp-worries__circle {
  background-color: var(--color-beige-light);
  border-radius: 175px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 75px var(--space-lg) 125px;
  text-align: center;
}

.fp-worries__en {
  display: block;
  font-family: var(--font-en);
  font-size: 0.625rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-text-sub);
  margin-bottom: 0.375rem;
}

.fp-worries__title {
  font-family: var(--font-main);
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.fp-worries__desc {
  font-size: 0.875rem;
  color: var(--color-text-sub);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.fp-worries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  width: 100%;
  margin-bottom: calc(var(--space-md) + 20px);
}

.fp-worry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.375rem;
  color: var(--color-text);
  transition: all var(--transition);
  overflow: visible;
}

.fp-worry-card:hover {
  opacity: 0.75;
  transform: translateY(-2px);
}

/* 角丸正方形アイコン（白背景） */
.fp-worry-card__icon {
  width: 85px;
  height: 85px;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-shadow: var(--shadow-sm);
}

.fp-worry-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.fp-worry-card__ja {
  font-size: 0.65rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-text);
  white-space: nowrap;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ---- Link More ---- */
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--color-text);
  letter-spacing: 0.05em;
  text-decoration: none;
  border: none;
  background: none;
  padding: 0;
}

/* 矢印付き丸（円の中心から外へ飛び出す矢印） */
.link-more__arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid currentColor;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: visible;
}

/* 矢印の軸（中心から右へ伸びる） */
.link-more__arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  height: 1px;
  width: 22px;
  background-color: currentColor;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 矢印の先端 */
.link-more__arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -8px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-more:hover .link-more__arrow::before {
  width: 46px;
}

.link-more:hover .link-more__arrow::after {
  right: -32px;
}

/* ================================================
   初めての方へ — 写真(角丸)+チェックリスト+ステップ
   参考画像: 大きな角丸写真 → チェックリスト(花瓶装飾付き
             角丸ボックス) → ステップフロー01-05
   ================================================ */
.fp-first-visit {
  padding-top: 0;
  overflow: hidden;
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

/* 写真（右辺年半円のD字形、画面左80%） */
.fp-first-visit__photo {
  width: 80%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 0 9999px 9999px 0;
  margin-bottom: var(--space-xl);
  margin-left: 0;
}

.fp-first-visit__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* セクションタイトル部 */
.fp-first-visit__head {
  text-align: center;
  padding: 0 var(--space-md) var(--space-lg);
}

.fp-first-visit__head .section-title__en {
  display: block;
  font-family: var(--font-en);
  font-size: 0.625rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-text-sub);
  margin-bottom: 0.375rem;
}

.fp-first-visit__head .section-title__ja {
  display: block;
  font-family: var(--font-main);
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text);
}

/* チェックリスト — 花瓶装飾付き・画面幅を超えるスタジアム形 */
.fp-fv-checks {
  position: relative;
  background-color: var(--color-beige-light);
  border-radius: 100px;
  padding: var(--space-xl) calc(var(--space-2xl));
  width: calc(100% + 80px);
  margin-left: -40px;
  margin-bottom: var(--space-2xl);
  overflow: visible;
}

/* 花瓶イラスト（右端） */
.fp-fv-checks::after {
  content: '';
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 150px;
  background-image: url('images/花瓶右.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}

/* 花瓶イラスト（左端） */
.fp-fv-checks::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 150px;
  background-image: url('images/花瓶左.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}

.fp-fv-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--color-text);
  padding: 0.25rem 0;
  text-align: center;
  justify-content: center;
}

.fp-fv-check::before {
  content: '\2713';
  color: var(--color-pink);
  font-size: 1rem;
  line-height: 1.4;
  flex-shrink: 0;
}

/* ================================================
   fp- レスポンシブ
   ================================================ */
@media (min-width: 480px) {
  .fp-voices__illust {
    height: 90px;
  }
}

/* === FP 768px BLOCK REMOVED (mobile-first) === */































/* === FP 1024px BLOCK REMOVED === */





/* ================================================
   トップページ: 主な施術以降のセクション — モバイルデザイン
   fp-concept / fp-voices 同様に
   「一辺だけ大きな角丸 + 直前セクションへの重なり」
   ================================================ */
/* === MOBILE BASE STYLES (was max-width:767px) === */

  /* fp-first-visit の最後のコンテナに下余白を追加して
     treatments が重なっても "詳しく見る" リンクが隠れないようにする */
  .fp-first-visit .container--narrow {
    padding-bottom: calc(var(--space-2xl) + 40px);
  }

  /* ---- 主な施術 — 右上角丸 ---- */
  #treatments {
    background-color: var(--color-ivory);
    border-radius: 0 80px 0 0;
    margin-top: -40px;
    position: relative;
    z-index: 3;
    padding: var(--space-2xl) 0 var(--space-2xl);
  }

  /* ---- 症例紹介 — 左上角丸 ---- */
  #cases {
    background-color: var(--color-beige-light);
    border-radius: 80px 0 0 0;
    margin-top: -40px;
    position: relative;
    z-index: 4;
    padding: var(--space-2xl) 0 var(--space-2xl);
  }

  /* ---- 院長紹介 — 右上角丸 ---- */
  #doctor {
    background-color: var(--color-ivory);
    border-radius: 0 80px 0 0;
    margin-top: -40px;
    position: relative;
    z-index: 5;
    padding: var(--space-2xl) 0 var(--space-2xl);
  }

  /* ---- スタッフ紹介 — 左上角丸 ---- */
  #staff {
    background-color: var(--color-white);
    border-radius: 80px 0 0 0;
    margin-top: -40px;
    position: relative;
    z-index: 6;
    padding: var(--space-2xl) 0 var(--space-2xl);
  }

  /* ---- 院内紹介 — 右上角丸 ---- */
  #clinic {
    background-color: var(--color-beige-light);
    border-radius: 0 80px 0 0;
    margin-top: -40px;
    position: relative;
    z-index: 7;
    padding: var(--space-2xl) 0 var(--space-2xl);
  }

  /* ---- 口コミ — 左上角丸 ---- */
  #reviews {
    background-color: var(--color-ivory);
    border-radius: 80px 0 0 0;
    margin-top: -40px;
    position: relative;
    z-index: 8;
    padding: var(--space-2xl) 0 var(--space-2xl);
  }

  /* ---- Instagram — 右上角丸 ---- */
  #instagram {
    background-color: var(--color-beige-light);
    border-radius: 0 80px 0 0;
    margin-top: -40px;
    position: relative;
    z-index: 9;
    padding: var(--space-2xl) 0 var(--space-2xl);
  }

  /* ---- アクセス — 左上角丸 ---- */
  #access {
    background-color: var(--color-white);
    border-radius: 80px 0 0 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
    padding: var(--space-2xl) 0 var(--space-2xl);
  }

  /* ---- CTA — グラデーションバナー自体に右上角丸 ---- */
  #cta {
    background-color: transparent;
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 11;
  }

  #cta .container--narrow {
    padding-left: 0;
    padding-right: 0;
    max-width: none;
  }

  #cta .cta-banner {
    border-radius: 0 80px 0 0;
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
  }

  /* ---- セクションタイトル EN ラベルを fp- スタイルに統一 ---- */
  #treatments .section-title__en,
  #cases .section-title__en,
  #doctor .section-title__en,
  #staff .section-title__en,
  #clinic .section-title__en,
  #reviews .section-title__en,
  #instagram .section-title__en,
  #access .section-title__en {
    color: var(--color-text-sub);
    font-size: 0.625rem;
    letter-spacing: 0.35em;
  }

  /* ---- 施術カード: モバイルで横並びレイアウトを維持 ---- */
  .treatment-card {
    grid-template-columns: 100px 1fr;
  }

  .treatment-card__img .img-placeholder {
    min-height: 100px;
  }

  /* ---- 症例カード: モバイルでは1列 ---- */
  .case-grid {
    grid-template-columns: 1fr;
  }

    /* ---- 院長紹介 — デスクトップ角丸リセット時に全角丸維持 ---- */
  .doctor-photo {
    border-radius: 150px;
  }

  /* ---- スタッフグリッド: 2列固定 ---- */
  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
/* === END MOBILE BASE STYLES === */

/* ============================================
   PC 3-Column Layout�i�X�}�zUI����480px�\���j
   ============================================ */

/* --- �f�t�H���g�i�X�}�z�j�F���b�p�[�𓧉ߓI�Ɉ��� --- */
.pc-layout,
.pc-main-col {
  display: contents;
}
.pc-side-left,
.pc-side-right {
  display: none;
}

/* --- PC���i768px�ȏ�j�F3�J�������C�A�E�g���� --- */
@media (min-width: 480px) {
  /* body�ɉ��s�����̂���w�i */
  body {
    background: linear-gradient(135deg, #f5ede6 0%, #e8ddd5 50%, #ede4da 100%);
    min-height: 100vh;
  }

  /* �w�b�_�[�E�h�����[�Efixed-cta�𒆉�480px�ɐ��� */
  .site-header {
    left: 50%;
    right: auto;
    width: 480px;
    transform: translateX(-50%);
  }

  .drawer-menu {
    left: 50%;
    right: auto;
    width: 480px;
    /* ������ԁF�E����480px�����炵�ĉ�ʊO�� */
    transform: translateX(-50%) translateY(-100%);
  }
  .drawer-menu.is-open {
    /* �J������ԁF�����ɕ\�� */
    transform: translateX(-50%) translateY(0);
  }

  .fixed-cta {
    left: 50%;
    right: auto;
    width: 480px;
    transform: translateX(-50%);
    display: flex; /* PC�����\��{�^����\�� */
  }

  /* 3�J�������b�p�[ */
  .pc-layout {
    display: grid;
    grid-template-columns: 1fr 480px 1fr;
    min-height: 100vh;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
  }

  /* �����F�X�}�zUI�G���A */
  .pc-main-col {
    display: block;
    width: 480px;
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 60px rgba(58, 48, 40, 0.18);
    overflow-x: clip;
    background: var(--color-bg, #faf8f5);
  }

  /* compare-section�Ȃǂ̃l�K�e�B�u�}�[�W���𐧌� */
  .pc-main-col .compare-section {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }
  /* ---- ���T�C�h�p�l�� ---- */
  .pc-side-left {
    display: flex;
    position: sticky;
    top: 64px;
    height: calc(100vh - 64px);
    background: linear-gradient(160deg, #fdf9f5 0%, #f0e8de 100%);
    flex-direction: column;
    overflow: hidden;
    z-index: 100;
  }

  .pc-side-left__inner {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
    justify-content: center;
  }

  .pc-side-left__logo-link {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-decoration: none;
  }

  .pc-side-left__clinic-name {
    font-family: var(--font-en, serif);
    font-size: 1.5rem;
    letter-spacing: 0.12em;
    line-height: 1.3;
    color: var(--color-text, #3a3028);
  }

  .pc-side-left__clinic-sub {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    color: var(--color-text-sub, #6b5c52);
    margin-top: 0.2rem;
  }

  .pc-side-left__nav {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .pc-side-left__nav-link {
    font-size: 0.875rem;
    color: var(--color-text, #3a3028);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--color-border, #e8ddd5);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: opacity 0.2s;
  }

  .pc-side-left__nav-link::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-accent, #c8a090);
    flex-shrink: 0;
  }

  .pc-side-left__nav-link:hover {
    opacity: 0.6;
  }

  .pc-side-left__info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }

  .pc-side-left__clinic-info {
    font-size: 0.75rem;
    color: var(--color-text-sub, #6b5c52);
    line-height: 1.7;
  }

  .pc-side-left__cta {
    font-size: 0.8125rem;
    padding: 0.75rem 1.25rem;
    min-height: 44px;
    text-align: center;
    display: block;
  }

  /* ---- �E�T�C�h�p�l�� ---- */
  .pc-side-right {
    display: flex;
    position: sticky;
    top: 64px;
    height: calc(100vh - 64px);
    background: linear-gradient(200deg, #f9f3ee 0%, #ecddd4 100%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 100;
  }

  .pc-side-right__inner {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .pc-side-right__illust {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
  }

  .pc-side-right__circle {
    position: absolute;
    border-radius: 50%;
  }

  .pc-side-right__circle--1 {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle at 40% 40%, #f5c8b8 0%, #e8a090 100%);
    top: 0;
    left: 0;
    opacity: 0.65;
  }

  .pc-side-right__circle--2 {
    width: 65px;
    height: 65px;
    background: radial-gradient(circle at 40% 40%, #fde8e0 0%, #f5c0b0 100%);
    bottom: 0;
    right: 0;
    opacity: 0.5;
  }

  .pc-side-right__circle--3 {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, #fff0ea 0%, #f8d5c8 100%);
    top: 50%;
    left: 55%;
    transform: translateY(-50%);
    opacity: 0.4;
  }

  .pc-side-right__catch {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .pc-side-right__catch-main {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.8;
    color: var(--color-text, #3a3028);
    letter-spacing: 0.03em;
  }

  .pc-side-right__catch-sub {
    font-size: 0.8125rem;
    color: var(--color-text-sub, #6b5c52);
    line-height: 1.7;
  }

  .pc-side-right__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
  }

  .pc-side-right__tag {
    font-size: 0.6875rem;
    padding: 0.25em 0.75em;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2em;
    color: var(--color-text-sub, #6b5c52);
    border: 1px solid var(--color-border, #e8ddd5);
  }

  .pc-side-right__link {
    font-size: 0.8125rem;
    padding: 0.625rem 1.25rem;
    min-height: 44px;
  }

  /* =====================================================
     サイト全体: スマホUI維持 — PC表示コンテナ制御
     ===================================================== */

  /* CSSカスタムプロパティをコンテナ幅に合わせる */
  .pc-main-col {
    container-type: inline-size;
    --max-width: 480px;
    --content-width: 430px;
  }

}

/* =====================================================
   @container: vw基準フォントをコンテナ基準に変換
   (pc-main-col が container-type: inline-size のため
    PC表示時のみ有効 / スマホ時はvw基準のままを維持)
   ===================================================== */
@container (min-width: 1px) {
  .section-title__ja {
    font-size: clamp(1.5rem, 4cqi, 2rem);
  }
  .hero__title {
    font-size: clamp(1.75rem, 6cqi, 3rem);
  }
  .cta-banner__title {
    font-size: clamp(1.25rem, 4cqi, 1.75rem);
  }
  .page-hero__title {
    font-size: clamp(1.5rem, 5cqi, 2.5rem);
  }
  .worry-block__title {
    font-size: clamp(1.25rem, 4cqi, 1.625rem);
  }
  .worry-unsure__title {
    font-size: clamp(1.375rem, 4.5cqi, 2rem);
  }
  .fp-concept__title {
    font-size: clamp(1.5rem, 5cqi, 2.25rem);
  }
  .fp-voices__title {
    font-size: clamp(1.375rem, 5cqi, 2rem);
  }
  .fp-worries__title {
    font-size: clamp(1.25rem, 4cqi, 1.75rem);
  }
  .fp-first-visit__head .section-title__ja {
    font-size: clamp(1.5rem, 5cqi, 2.25rem);
  }
}


/* ================================================
   PC 3-Column: Mobile design overrides (768px+)
   Restore mobile styles inside .pc-main-col
   ================================================ */

/* === MOBILE OVERRIDES BLOCK REMOVED (no longer needed) === */


















































































































































/* === 1024px OVERRIDE BLOCK REMOVED === */











