@charset "UTF-8";

.btn-fv-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: #fde8e9; 
  border-radius: 10px; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06); 
  height: 64px;
  padding: 0 8px;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease; 
}

/* ==========================================
   Variables & Base Settings（共通変数・基本設定）
   ========================================== */
:root {
  --white: #ffffff;
  --bg-beige: #fdfaf2;
  --bg-gray: #f9f8f6;
  --text-dark: #333333;
  --text-muted: #666666;
  --gold: #c9a054;
  --gold-light: #f6efe2;
  --font-sans: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  --font-serif: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: #fdfaf2;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;

  background-image:
    radial-gradient(#d45d79 1.8px, transparent 1.8px),
    radial-gradient(#f7c8d5 1.8px, transparent 1.8px);

  background-size: 48px 48px;
  background-position: 0 0, 24px 24px;

  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.section-padding {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.bg-beige {
  background-color: transparent !important;
}

.container {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  text-align: center;
  line-height: 1.4;
  margin-top: 5px;
  margin-bottom: 40px;
}

.badge {
  display: block;
  text-align: center;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

/* ==========================================
   Section_FV（ファーストビュー）
   ========================================== */
#fv {
  width: 100% !important;
  max-width: 100% !important;
  background-color: transparent !important;
  text-align: center;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  z-index: 1;
}

.fv-h1 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: #7d7374;
  padding: 12px 15px;
  background: var(--white);
  line-height: 1.5;
  letter-spacing: 0.03em;
  border-bottom: 1px solid #f5ede6;
  position: relative;
  z-index: 2;
}

.fv-h1 span {
  font-size: 0.6rem;
  font-weight: 400;
  color: #bfa1a2;
  letter-spacing: 0.12em;
}

.fv-img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto;
  display: block;
  margin: 0 auto;
}

.fv-badge-area {
  padding: 45px 20px 40px 20px;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at 50% 10%, #fffbf7 0%, transparent 100%) !important;
  overflow: hidden;
}

.price-balloon {
  display: inline-block;
  background: linear-gradient(135deg, #dfba73 0%, var(--gold) 50%, #b2883b 100%);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: bold;
  padding: 8px 28px;
  border-radius: 50px;
  margin-bottom: 30px;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 12px rgba(201, 160, 84, 0.3);
  position: relative;
  z-index: 2;
}

.price-balloon::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: #b2883b transparent transparent transparent; 
}
.fv-price-grid-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background-color: transparent !important;
}

.sp-price-card {
  width: 100%;
  background: var(--white);
  border: 1px solid #f2e6dc;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 8px 20px rgba(138, 116, 86, 0.08);
  text-align: left;
  position: relative;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sp-price-card.is-recommend {
  border: 2px solid transparent;
  background-image: linear-gradient(var(--white), var(--white)), linear-gradient(135deg, #ebd6ae 0%, var(--gold) 50%, #a47b30 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 12px 28px rgba(201, 160, 84, 0.18);
}

.sp-price-card.is-recommend::after {
  content: "人気No.1";
  position: absolute;
  top: -14px;
  left: 18px;
  background: linear-gradient(90deg, #dd4b4b 0%, #c62828 100%);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 3px 12px;
  border-radius: 4px;
  box-shadow: 0 3px 8px rgba(198, 40, 40, 0.3);
  z-index: 10;
}

.sp-price-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
  border-bottom: 1px dashed #ebd6ae;
  padding-bottom: 10px;
  gap: 10px;
}

.sp-price-title {
  font-size: 1.05rem;
  font-weight: bold;
  color: var(--text-dark);
  letter-spacing: 0.03em;
  line-height: 1.4;
}

/* 丸型からすっきりとした四角いバッジ型に変更 */
.sp-badge {
  background: #fff1f2;
  color: #e11d48;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid #fecdd3;
  flex-shrink: 0;
  white-space: nowrap;
}

.sp-old-price {
  display: block;
  font-size: 0.75rem;
  color: #a3a3a3;
  text-decoration: line-through;
  text-decoration-color: #c4b3b3;
  margin-bottom: 12px;
}

.sp-new-price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  line-height: 1;
  margin-top: auto;
  white-space: nowrap;
}

.sp-price-label {
  font-size: 0.75rem;
  font-weight: bold;
  color: #887273;
  margin-right: 6px;
}

.sp-price-num {
  font-size: 2.3rem;
  color: var(--gold);
  font-family: var(--font-serif);
  font-weight: bold;
  letter-spacing: -0.02em;
  text-shadow: 0.5px 0.5px 0px rgba(255, 255, 255, 0.8);
  line-height: 1;
}

.sp-price-unit {
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: bold;
  margin-left: 2px;
  font-family: var(--font-sans);
}

@media (min-width: 768px) {
 .fv-price-grid-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 1200px;
    justify-content: center;
    gap: 16px;
    padding: 10px 24px;
    width: 100%;
    box-sizing: border-box;
  }
  

  .sp-price-card {
    flex: 1 1 260px; 
    min-width: 240px;
    max-width: 300px;
    padding: 28px 20px 24px 20px;
    box-sizing: border-box;
  }

  .sp-price-card.is-recommend {
    transform: translateY(-8px);
  }
  
  .sp-price-card.is-recommend:hover {
    transform: translateY(-12px);
  }
  
  .sp-price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(138, 116, 86, 0.12);
  }

  .sp-price-title {
    font-size: 1.1rem;
    min-height: 44px;
  }
}

@media (max-width: 340px) {
  .sp-price-num {
    font-size: 1.9rem;
  }
}

/* ==========================================
   Section_FV-Nav（ナビゲーションリンク）
   ========================================== */
.fv-nav-area {
  background-color: transparent !important;
  padding: 30px 20px 40px 20px;
  position: relative;
  z-index: 1;
}

.fv-nav-scroll-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (hover: hover) {
  .btn-fv-nav:hover {
    background-color: #fbcbcb; 
    transform: translateY(-4px); 
    box-shadow: 0 8px 20px rgba(220, 160, 160, 0.2); 
  }
}

.btn-fv-nav:active {
  background-color: #fbcbcb; 
  transform: scale(0.96);
  transition: transform 0.1s ease, background-color 0.1s ease;
}

.btn-fv-nav .nav-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  color: #887273; 
  letter-spacing: 0.08em;
  margin-bottom: 1px;
}

.btn-fv-nav .nav-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #4a3e3f; 
  letter-spacing: 0.02em;
}

@media (min-width: 640px) {
  .fv-nav-area {
    padding: 40px 0 35px 0;
  }
  .fv-nav-scroll-wrap {
    max-width: 640px;
    margin: 0 auto;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 20px;
  }
}

/* ==========================================
   Section_悩み（共感・お悩み訴求）
   ========================================== */
#onayami {
  position: relative;
  z-index: 1;
  background-color: transparent !important;
}
.onayami-visual {
  text-align: center;
  margin-bottom: 30px;
}
.onayami-visual img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
}
.onayami-txt {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #8a7456;
  text-align: center;
  font-weight: bold;
  line-height: 1.6;
}
.onayami-list {
  margin-top: 30px;
  list-style: none;
  padding: 24px 20px 24px 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(138, 116, 86, 0.03);
}
.onayami-list li {
  font-size: 1rem;
  margin-bottom: 18px;
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
  color: #222222;
  text-align: left;
}
.onayami-list li:last-child {
  margin-bottom: 0;
}
.onayami-list li span {
  position: absolute;
  left: 0;
  color: #c9a054;
  font-weight: bold;
}
#onayami .onayami-list li strong {
  color: #b68d40;
  font-weight: bold;
}
.onayami-solution-bridge {
  margin: 60px 15px 0;
  padding-bottom: 0;
  border-radius: 16px;
  background-color: transparent !important;
}
.bridge-dark-zone {
  background: linear-gradient(135deg, #fbf7f4 0%, #f3e6df 100%);
  padding: 35px 15px 50px 15px;
  color: #333333;
  text-align: center;
  border: 1px solid #eaddd7;
  border-radius: 16px;
  box-sizing: border-box;
  position: relative;
}
.bridge-cause-title {
  font-size: 0.9rem;
  color: #8a7456;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  font-weight: bold;
}
.bridge-cause-keyword {
  font-size: 5.8vw;
  font-weight: bold;
  color: #333333;
  margin: 0 0 20px 0;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.bridge-cause-keyword span {
  color: #e07a5f;
  border-bottom: 2px solid #e07a5f;
  padding-bottom: 2px;
}
.bridge-img-wrap {
  width: 100%;
  max-width: 480px;
  margin: 0 auto 20px;
}
.bridge-content-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.bridge-cause-txt {
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 25px;
  color: #555555;
  text-align: left;
}
.bridge-question-badge {
  display: block;
  background-color: #f3dbc7;
  padding: 20px 40px;
  border-radius: 12px;
  font-size: 1.25rem;
  color: #8a7456;
  font-weight: bold;
  max-width: 480px;
  width: 90%;
  position: relative;
  margin: 30px auto -85px auto;
  z-index: 10;
  box-sizing: border-box;
  text-align: center;
  animation: floatUpDown 2s ease-in-out infinite;
}

.bridge-question-badge::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 12px 12px 0 12px;
  border-style: solid;
  border-color: #f3dbc7 transparent transparent transparent;
}
.bridge-to-features-balloon {
  display: block;
  background-color: var(--gold);
  color: #ffffff;
  padding: 20px 40px;
  border-radius: 12px;
  font-size: 1.25rem;
  font-weight: bold;
  max-width: 480px;
  width: 90%;
  position: relative;
  margin: 40px auto -85px auto;
  z-index: 10;
  box-sizing: border-box;
  text-align: center;
  animation: floatUpDown 2s ease-in-out infinite;
}

.bridge-to-features-balloon::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 12px 12px 0 12px;
  border-style: solid;
  border-color: var(--gold) transparent transparent transparent;
}

.bridge-light-zone {
  background-color: #ffffff;
  border: 1px solid #eaddd7;
  margin-top: 64px;
  padding: 40px 15px;
  text-align: center;
  border-radius: 16px;
  box-sizing: border-box;
}
.bridge-answer-catch {
  color: #d4a373;
  font-weight: bold;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.bridge-answer-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333333;
  line-height: 1.4;
  margin: 0 0 25px 0;
  letter-spacing: 0.02em;
}
.bridge-answer-txt {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #666666;
  max-width: 600px;
  margin: 0 auto 30px;
  text-align: left;
}
.bridge-to-features {
  font-size: 0.9rem;
  font-weight: bold;
  color: #d4a373;
  letter-spacing: 0.05em;
  animation: bounce 2s infinite;
}
.bridge-arrow {
  display: inline-block;
  margin: 0 5px;
}
.sp-only {
  display: block;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.bridge-main-catch-wrap {
  text-align: center;
  width: 100%;
  max-width: 540px;
  margin: 10px auto 30px auto;
}
.bridge-main-catch-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  #onayami .container {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  #onayami .onayami-visual {
    width: 100% !important;
    max-width: 850px;
    margin: 0 auto 40px !important;
    display: flex;
    justify-content: center;
  }
  #onayami .onayami-visual picture,
  #onayami .onayami-target-img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block;
    border-radius: 12px;
  }
  #onayami .onayami-txt {
    text-align: center;
    margin-bottom: 35px;
    font-size: 1.35rem;
  }
  #onayami .onayami-list {
    max-width: 580px;
    margin: 0 auto 50px;
    text-align: left;
  }
  .onayami-solution-bridge {
    max-width: 750px;
    margin: 60px auto 0;
  }
  .bridge-dark-zone {
    padding: 50px 40px;
  }
  .bridge-cause-keyword {
    font-size: 2.4rem;
  }
  .bridge-cause-txt {
    font-size: 0.9rem;
    text-align: center;
  }
    .bridge-question-badge {
    padding: 24px 50px;
    font-size: 1.35rem;
    max-width: 520px;
    margin: 40px auto -100px auto;
  }
  .bridge-question-badge::after {
    bottom: -10px;
    border-width: 10px 10px 0 10px;
  }
  .bridge-to-features-balloon {
   padding: 24px 50px;
    font-size: 1.35rem;
    max-width: 520px;
    margin: 50px auto -100px auto;
  }

  .bridge-light-zone {
    margin-top: 86px;
    padding: 50px 40px;
  }
  .bridge-answer-title {
    font-size: 1.8rem;
  }
  .bridge-answer-txt {
    text-align: center;
    font-size: 0.9rem;
  }
  .sp-only {
    display: none;
  }
  .bridge-main-catch-wrap {
    max-width: 640px;
    margin-bottom: 40px;
  }
  }

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .bridge-question-badge {
    padding: 16px 24px;
    font-size: 1.05rem;
    max-width: 90%;
    margin: 20px auto -60px auto;
  }
  .bridge-question-badge::after {
    bottom: -10px;
    border-width: 10px 10px 0 10px;
  }
  .bridge-to-features-balloon {
    font-size: 0.9rem;
    padding: 12px 16px;
    margin: 30px auto 15px;
    width: 85%;
  }
.bridge-to-features-balloon {
    padding: 16px 24px;
    font-size: 1.05rem;
    max-width: 90%;
    margin: 30px auto -60px auto;
  }
  .bridge-to-features-balloon::after {
    bottom: -10px;
    border-width: 10px 10px 0 10px;
  }
}

/* ==========================================
   Section_特徴（クリニックの強み・こだわり）
   ========================================== */
#features {
  position: relative;
  z-index: 1;
  background-color: transparent !important;
}

.intro-ask {
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.features-intro {
  max-width: 750px;
  margin: 0 auto 40px;
  text-align: center;
}

.features-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333333;
}

.feature-diagram {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 50px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(138, 116, 86, 0.05);
}

.feature-diagram img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  background-color: transparent !important;
}

.feature-item {
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  text-align: left;
  border: 1px solid rgba(138, 116, 86, 0.1);
  box-shadow: 0 6px 20px rgba(138, 116, 86, 0.04);
}

.feature-img-wrap {
  width: 100%;
  background: #f9f8f6;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 4 / 3;
}

.feature-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-text-content h3 {
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: bold;
  font-family: var(--font-sans);
}

.feature-text-content p {
  font-size: 0.95rem;
  text-align: left;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0;
}

.features-honesty-note {
  max-width: 800px;
  margin: 50px auto 0;
  padding: 24px;
  background: rgba(201, 160, 84, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  text-align: left;
}

.features-honesty-note p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0;
}
.feature-mid-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin: 60px 0 40px;
  color: #333;
}

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

@media (max-width: 767px) {
  .features-intro {
    text-align: left;
    margin-bottom: 30px;
  }
  .features-intro p {
    font-size: 0.95rem;
  }
  .intro-ask {
    font-size: 1rem;
  }
  .feature-diagram {
    margin-bottom: 40px;
    border-radius: 12px;
  }
  .features-honesty-note p {
    font-size: 0.85rem;
  }
}

/* ==========================================
   Section_理由用 独立カスタムスタイル
   ========================================== */

/* 共通ユーティリティ（インライン回避用） */
.relative { position: relative; }
.z-1 { z-index: 1; }
.overflow-hidden { overflow: hidden; }
.text-center { text-align: center; }

/* レイアウトコンテナ */
.why-rows-container {
  position: relative;
  margin-top: 50px;
}

/* 各行の基本設定（スマホベース） */
.why-row-item {
  display: block;
  margin-bottom: 60px;
  position: relative;
}
.why-row-item:last-child {
  margin-bottom: 0;
}

/* 画像エリア */
.why-image-box {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  aspect-ratio: 3 / 2;
}

.why-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.why-image-box:hover .why-img {
  transform: scale(1.04);
}

/* テキストコンテンツエリア */
.why-content-box {
  position: relative;
  padding: 30px 20px 0 20px;
}

/* 数字バッジ */
.why-badge-wrap {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}
.why-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
  z-index: 2;
}
.why-badge-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #df3a6f; /* クリニックのテーマカラー */
  border-radius: 50%;
  z-index: 1;
}

/* 見出しと説明文 */
.why-heading {
  color: #333333;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 15px;
}
.why-description {
  color: #666666;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

/* 所属学会エリアの追加スタイル */
.why-affiliations {
  margin-top: 15px;
  padding: 12px 15px;
  background-color: #fcf8f9; /* ほんのりピンクがかった上品な背景 */
  border-left: 3px solid #df3a6f;
  border-radius: 0 8px 8px 0;
  text-align: left; /* スマホ・PC問わずリスト内は左寄せで見やすく */
}
.why-affiliations-title {
  font-size: 11px;
  font-weight: bold;
  color: #df3a6f;
  margin: 0 0 5px 0;
  letter-spacing: 0.05em;
}
.why-affiliations-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
}
.why-affiliations-list li {
  font-size: 11px;
  color: #555555;
  line-height: 1.4;
  position: relative;
  padding-left: 8px;
}
.why-affiliations-list li::before {
  content: '・';
  position: absolute;
  left: 0;
  top: 0;
  color: #df3a6f;
}

/* スマホ用配置ユーティリティ */
.margin-left-auto { margin-left: auto; }
.text-align-right { text-align: right; }


/* ------------------------------------------
   PCサイズへのレスポンシブ対応 (768px以上)
   ------------------------------------------ */
@media (min-width: 768px) {
  .md-only { display: none; }
  
  .why-rows-container {
    margin-top: 80px;
  }
  
  /* PC時は左右2カラムの横並びに */
  .why-row-item {
    display: flex;
    align-items: center;
    margin-bottom: 120px;
  }
  
  /* 50%ずつの幅に制限 */
  .why-image-box,
  .why-content-box {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  /* 画像とテキストの余白調整 */
  .why-content-box {
    padding: 0 0 0 80px;
  }
  
  /* 1、3行目を反転して互い違い（アシンメトリー）にする */
  .why-row-reverse {
    flex-direction: row-reverse;
  }
  .why-row-reverse .why-content-box {
    padding: 0 80px 0 0;
  }
  
  /* 2行目（右寄せ）の文章をPC時のみ左並びに戻す */
  .text-align-left-pc {
    text-align: left;
    display: inline-block;
  }

  /* 所属学会エリアのPC用調整 */
  .why-affiliations {
    margin-top: 20px;
    display: inline-block; /* 横幅をコンテンツに合わせる */
    max-width: 90%;
  }
  .why-affiliations-title {
    font-size: 12px;
  }
  .why-affiliations-list li {
    font-size: 12px;
  }

  /* 中央を貫くおしゃれな縦の装飾線 */
  .why-rows-container::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: calc(100% - 100px);
    background: linear-gradient(to bottom, rgba(223,58,111,0) 0%, rgba(223,58,111,0.2) 15%, rgba(223,58,111,0.2) 85%, rgba(223,58,111,0) 100%);
    z-index: 1;
  }
  
  /* バッジと画像の角丸をPC用に少し大きく */
  .why-image-box {
    border-radius: 24px;
  }
  .why-badge-wrap {
    width: 70px;
    height: 70px;
  }
  .why-number {
    font-size: 28px;
  }
  .why-heading {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .why-description {
    font-size: 15px;
  }
}

/* ==========================================
   Section_料金（本数別料金プラン）グラデーション版
   ========================================== */
#lp-price {
  position: relative;
  z-index: 1;
  background-color: transparent !important;
  padding: 40px 16px;
}

#lp-price .section-title-wrap {
  text-align: center;
  margin-bottom: 32px;
}

#lp-price .section-sub-title {
  display: block;
  font-size: 14px;
  color: #bfa265;
  margin-bottom: 8px;
}

#lp-price h2 {
  font-size: 26px;
  color: #4a3e3f;
  margin: 0;
}

.price-grid-2x2 {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.price-card-v2 {
  background: #ffffff !important;
  border: 1px solid #ebd6d9;
  border-radius: 12px;
  padding: 28px 20px 24px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  position: relative;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.price-card-v2.featured-card-v2 {
  border: 2px solid #bfa265;
  box-shadow: 0 6px 20px rgba(191, 162, 101, 0.15);
}

.card-badge-v2 {
  position: absolute;
  top: -14px;
  left: 16px;
  color: #ffffff !important;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 4px;
  z-index: 10;
}

.card-badge-v2.pink-badge {
  background: #de437b !important;
}

.card-badge-v2.gold-badge {
  background: #bfa265 !important;
}

.card-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.card-title-text {
  flex: 1;
}

.price-card-v2 h3 {
  font-size: 1.15rem;
  color: #4a3e3f !important;
  margin: 0;
  line-height: 1.4;
  text-align: left;
}

.card-heading-image {
  flex-shrink: 0;
}

.card-heading-image img {
  border-radius: 8px;
  object-fit: cover;
}

.price-row-v2 {
  display: flex;
  gap: 16px;
  border-top: 1px dashed #ebd6d9;
  border-bottom: 1px dashed #ebd6d9;
  padding: 12px 0;
  margin-bottom: 16px;
}

.price-type-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.price-type-label {
  font-size: 0.75rem;
  color: #8a7a7b;
  margin-bottom: 4px;
  font-weight: bold;
}

.price-type-label.font-pink {
  color: #de437b;
}

.price-amount-v2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #4a3e3f;
  margin: 0;
  line-height: 1.1;
  white-space: nowrap;
}

.price-type-block.recommend-type .price-amount-v2 {
  color: #bfa265;
  font-size: 1.65rem;
}

.price-amount-v2.font-pink {
  color: #de437b !important;
}

.price-amount-v2 span {
  font-size: 0.8rem;
  color: #4a3e3f;
  margin-left: 2px;
}

.card-desc-v2 {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #666666 !important;
  margin: 0;
  text-align: left;
}

@media (min-width: 768px) {
  #lp-price {
    padding: 60px 0;
  }

  .price-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 24px;
    padding: 0;
  }

  .price-card-v2 {
    height: 100%;
  }
}
/* ==========================================
   Section_流れ（施術ステップ）
   ========================================== */
#flow {
  position: relative;
  z-index: 1;
  background-color: transparent !important;
  padding: 40px 16px;
}

.flow-steps {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: transparent !important;
  width: 100%;
  max-width: 960px;
}

.step-card {
  border: 1px solid #ebd6d9;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(194, 141, 151, 0.1);
}

.step-header {
  background: #bfa265 !important;
  color: #ffffff !important;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: bold;
  letter-spacing: 0.03em;
}

.step-body {
  padding: 20px 16px;
  background: #ffffff !important;
}

.step-body p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #333333 !important;
  margin: 0;
  text-align: left;
}

@media (min-width: 768px) {
  #flow {
    padding: 60px 16px;
  }
  
  .flow-steps {
    margin-top: 40px;
    flex-direction: row;
    gap: 20px;
  }
  
  .step-card {
    flex: 1;
    width: auto;
  }
  
  .step-body {
    padding: 20px;
  }
}
/* ==========================================
   Section_FAQ（よくあるご質問）
   ========================================== */
#lp-faq {
  position: relative;
  z-index: 1;
  background-color: transparent !important;
}

.accordion-container {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  background-color: transparent !important;
}

.accordion-item {
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 20px;
}

.faq-q {
  font-weight: bold;
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
}

.faq-q .q-prefix {
  color: var(--gold);
  margin-right: 8px;
  font-weight: 900;
}

.faq-a {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid #f5f5f5;
  padding-top: 12px;
}

/* ==========================================
   Section_アクセス（地図・クリニック紹介）
   ========================================== */
#access {
  position: relative;
  z-index: 1;
  background-color: transparent !important;
}

.access-layout {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
  background-color: transparent !important;
}

.map-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.map-wrap iframe {
  display: block;
}

.access-info p {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 10px;
}

.access-info p strong {
  font-size: 1.3rem;
}

.access-info .text-muted {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================
   Section_CTA・ガイドライン（コンバージョンエリア）
   ========================================== */
#lp-conversion {
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
  background-color: transparent !important;
}

.solution-cta {
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  background-color: transparent !important;
}

.cta-micro-copy {
  font-size: 0.95rem;
  color: #c28d97;
  font-weight: bold;
  margin-bottom: 10px;
}

.btn-main-consult {
  display: block;
  max-width: 400px;
  margin: 0 auto 40px auto !important;
  background: #de437b;
  box-shadow: 0 4px 15px rgba(222, 67, 123, 0.3);
  text-decoration: none;
  text-align: center;
  color: var(--white);
  font-weight: bold;
  padding: 18px;
  border-radius: 50px;
  font-size: 1.2rem;
  transition: opacity 0.2s ease;
}

.btn-main-consult:hover {
  opacity: 0.8;
}

.btn-main-consult:active {
  transform: scale(0.98);
  opacity: 0.9;
}

.solution-cta .text-muted {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 12px;
}
.guideline-info {
  margin-top: 50px;
  padding: 25px;
  border: 1px solid #ebd6d9;
  border-radius: 6px;
  background: var(--white);
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: left;
}

.guideline-info .font-bold {
  font-weight: bold;
}

.guideline-info .margin-top-sm {
  margin-top: 15px;
}
/* ==========================================
   Section_固定フッター（スマホ用追従コンバージョン）
   ========================================== */
#sp-fixed-cta.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  padding: 25px 0 12px 0;
  box-sizing: border-box;
}

#sp-fixed-cta .cta-double-wrapper {
  position: relative;
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 15px;
  box-sizing: border-box;
}

#sp-fixed-cta .btn-cta {
  text-decoration: none;
  box-sizing: border-box;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

#sp-fixed-cta .btn-cta:hover {
  opacity: 0.95;
  transform: scale(1.02);
}

#sp-fixed-cta .btn-cta .cta-sub {
  font-size: 0.65rem;
  font-weight: normal;
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}

#sp-fixed-cta .btn-cta .cta-main {
  font-size: 1rem;
  letter-spacing: 0.05em;
}

#sp-fixed-cta .btn-tel {
  flex: 1;
  background: #ffffff;
  border: 1.5px solid #de437b;
  color: #de437b;
  padding: 8px 0;
}

#sp-fixed-cta .btn-tel .cta-sub {
  color: #a3a3a3;
}

#sp-fixed-cta .cta-web-container {
  flex: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#sp-fixed-cta .cta-badge {
  position: absolute;
  top: -24px;
  background: #fff0f3;
  color: #de437b;
  font-size: 0.65rem;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(222, 67, 123, 0.15);
  z-index: 10;
}

#sp-fixed-cta .cta-badge-arrow {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: #fff0f3 transparent transparent transparent;
}

#sp-fixed-cta .btn-web-highlight {
  width: 100%;
  background: #de437b;
  color: #ffffff;
  border: none;
  margin: 0;
  padding: 8px 0;
  box-shadow: 0 6px 16px rgba(222, 67, 123, 0.35);
}

#sp-fixed-cta .btn-web-highlight .cta-sub {
  color: #ffffff;
  opacity: 0.95;
}

#sp-fixed-cta .btn-web-highlight .cta-main {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
}

#sp-fixed-cta .cta-svg-icon {
  fill: #ffffff;
}

  
  /* スマホ環境下での固定フッターの最終調整（競合を排除） */
  #sp-fixed-cta.fixed-cta {
    padding: 22px 0 10px 0;
  }
  #sp-fixed-cta .cta-double-wrapper {
    max-width: 390px;
    gap: 10px;
    padding: 0 12px;
  }
  #sp-fixed-cta .btn-cta .cta-sub {
    font-size: 0.6rem;
  }
  #sp-fixed-cta .btn-tel {
    flex: 1;
    background: #ffffff;
    border: 1.5px solid #de437b;
    color: #de437b;
    padding: 8px 0;
  }
  #sp-fixed-cta .btn-web-highlight {
    flex: 2;
    background: #de437b;
    color: #ffffff;
    padding: 8px 0;
    box-shadow: 0 4px 12px rgba(222, 67, 123, 0.3);
  }

/* ==========================================
   Responsive Settings（レスポンシブメディアクエリ）
   ========================================== */
@media (max-width: 767px) {
  .section-padding {
    padding: 40px 0;
  }
  .section-title {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }
  .onayami-txt {
    font-size: 1.2rem;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .flow-steps {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .access-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  #lp-conversion {
    padding-bottom: 100px;
  }
  .btn-main-consult {
    font-size: 1.05rem;
    padding: 14px;
  }
  .fixed-cta {
    padding: 8px 0;
  }
  .cta-double-wrapper {
    max-width: 390px;
    gap: 8px;
    padding: 0 10px;
  }
  .btn-cta .cta-sub {
    font-size: 0.6rem;
  }
  .btn-tel {
    flex: 1;
    background: var(--white);
    border: 1.5px solid #c28d97;
    color: #c28d97;
    padding: 8px 0;
  }
  .btn-web {
   flex: 2;
    background: linear-gradient(135deg, #e3a8b4 0%, #c28d97 100%);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(194, 141, 151, 0.25);
    border: none !important;
  }
}

/* ==========================================
   Scroll Fade-In Animation（フェードインアニメーション用）
   ========================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

#onayami.is-show,
#features.is-show,
#comparison.is-show,
#lp-price.is-show,
#flow.is-show,
#lp-faq.is-show,
#access.is-show,
#lp-conversion.is-show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ==========================================
   PC Settings（PC用改行コントロール）
   ========================================== */
@media (min-width: 768px) {
  .onayami-list .sp-only {
    display: none;
  }
}
/* ==========================================
   HTML要素が背景を隠してしまう問題の強制透明化
   ========================================== */
.site-fade-wrapper,
main,
.bg-beige {
  background-color: transparent !important;
}
/* ==========================================
   Section_症例 (ビフォーアフター - 1カラム最適化)
   ========================================== */
#cases {
  position: relative;
  z-index: 1;
  background-color: transparent !important;
}

.case-single-wrapper {
  margin-top: 40px;
  max-width: 720px; 
  margin-left: auto;
  margin-right: auto;
}

.case-card.is-single {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(138, 116, 86, 0.1);
  box-shadow: 0 6px 20px rgba(138, 116, 86, 0.04);
  padding: 30px; 
}

.case-img-box {
  border-radius: 8px;
  overflow: hidden;
  background: #f9f8f6;
  margin-bottom: 24px;
}

.case-img-box img {
  width: 100%;
  height: auto;
  display: block;
}

.case-info h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: bold;
  text-align: left;
}

.case-meta {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: bold;
  margin-bottom: 16px;
  text-align: left;
}

.case-detail {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: left;
}

.case-message-zone {
  max-width: 720px;
  margin: 40px auto 0;
  text-align: center;
}

.case-message-zone p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.case-warning {
  max-width: 720px;
  margin: 50px auto 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  border: 1px dashed #dddddd;
  text-align: left;
}

.warning-title {
  font-size: 0.8rem;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.case-warning p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.section-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(138, 116, 86, 0.2), transparent);
  margin: 50px 0;
}

.case-doctor-profile {
  max-width: 720px;
  margin: 0 auto;
  background: #fbf6ec; 
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid rgba(201, 160, 84, 0.25); 
  text-align: left;
}

.doctor-profile-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}

.doctor-photo-wrap {
  flex: 0 0 auto;
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(138, 116, 86, 0.1);
  background-color: #ffffff;
}

.doctor-photo-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.doctor-text-wrap {
  width: 100%;
}

.doctor-name {
  font-size: 1.5rem;
  color: var(--gold);
  margin: 15px 0 10px;
  font-weight: bold;
  text-align: center;
}

.doctor-lead {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 24px;
  text-align: center;
}

.doctor-history-table {
  width: 100%;
  max-width: 600px;
  margin: 20px auto 0;
  border-collapse: collapse;
  font-size: 0.9rem;
  line-height: 1.6;
}

.doctor-history-table tr {
  border-bottom: 1px solid rgba(138, 116, 86, 0.1);
}

.doctor-history-table tr:last-child {
  border-bottom: none;
}

.doctor-history-table th {
  text-align: left;
  vertical-align: top;
  width: 120px;
  color: var(--gold);
  font-weight: bold;
  padding: 10px 0;
  white-space: nowrap;
}

.doctor-history-table td {
  text-align: left;
  vertical-align: top;
  padding: 10px 0 10px 10px;
  color: var(--text-dark);
}

.doctor-societies-wrap,
.doctor-message-box {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.doctor-societies-title {
  text-align: center;
  padding-left: 0;
}

.doctor-societies-title::before {
  display: none !important;
}

.doctor-societies-list {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
}

.doctor-societies-list li {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 13px;
  color: #555555;
}

.doctor-societies-list li::before {
  display: none !important;
}

.doctor-message-box {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px dashed rgba(201, 160, 84, 0.3);
}

.doctor-message-box p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.doctor-message-box p:last-child {
  margin-bottom: 0;
  font-weight: bold;
}

@media (max-width: 767px) {
  .case-card.is-single {
    padding: 16px;
  }
  .case-info h3 {
    font-size: 1.1rem;
  }
  .case-detail {
    font-size: 0.85rem;
    text-align: left;
  }
  .case-message-zone p {
    font-size: 0.9rem;
    text-align: left;
  }
  .case-doctor-profile {
    padding: 30px 20px;
  }
  .doctor-profile-flex {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .doctor-photo-wrap {
    flex: 0 0 auto;
    width: 60%;
    max-width: 180px;
  }
  .doctor-text-wrap {
    width: 100%;
  }
  .doctor-name {
    font-size: 1.3rem;
    text-align: center;
  }
  .doctor-lead {
    font-size: 1rem;
    text-align: center;
  }
  .doctor-history-table {
    font-size: 0.85rem;
    margin: 20px 0 30px 0;
  }
  .doctor-history-table th {
    width: 100px;
  }
  .doctor-message-box p {
    font-size: 0.9rem;
  }
  .doctor-societies-wrap {
    margin-top: 30px;
    padding-top: 25px;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  .doctor-societies-title {
    text-align: left;
    padding-left: 12px;
  }
  .doctor-societies-title::before {
    display: block !important;
  }
  .doctor-societies-list {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 16px;
  }
  .doctor-societies-list li {
    font-size: 14px;
    flex: 0 0 calc(50% - 8px);
    box-sizing: border-box;
  }
  .doctor-message-box {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}
/* ==========================================
   症例セクション内 ガイドラインテーブル用スタイル
   ========================================== */
.case-info-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-align: left;
}

.case-detail-sub {
  margin-top: 10px;
}

.case-guideline-box {
  background-color: #f9f8f6;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #eaddd7;
  margin-top: 25px;
}

.case-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: left;
}

.case-spec-table tr {
  border-bottom: 1px dashed #eaddd7;
}

.case-spec-table tr:last-child {
  border-bottom: none;
}

.case-spec-table th {
  padding: 14px 10px 14px 0;
  font-weight: bold;
  color: var(--text-dark);
  width: 120px;
  vertical-align: middle;
  font-size: 1.05rem;
}

.case-spec-table th.align-top {
  vertical-align: top;
  padding-top: 14px;
}

.case-spec-table td {
  padding: 14px 0 14px 15px;
  border-left: 1px solid #eaddd7;
  color: var(--text-muted);
}

.case-spec-table td.highlight-date {
  color: #d45d79;
  font-weight: bold;
}

.case-spec-table td.case-price-cell {
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: bold;
  font-family: var(--font-serif);
}

.case-price-note {
  font-size: 0.85rem;
  font-weight: normal;
  color: var(--text-muted);
  margin-left: 5px;
}

.case-risk-list {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
}

.case-guideline-note {
  font-size: 0.75rem;
  color: #d9534f;
  font-weight: bold;
  margin-top: 15px;
  text-align: left;
  padding-left: 5px;
}

@media screen and (max-width: 767px) {
  .case-guideline-box {
    padding: 15px;
  }

  .case-spec-table {
    display: block;
    width: 100%;
  }

  .case-spec-table tbody,
  .case-spec-table tr,
  .case-spec-table th,
  .case-spec-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .case-spec-table tr {
    padding: 12px 0;
  }

  .case-spec-table th,
  .case-spec-table td {
    padding: 0 !important;
    border: none !important;
    text-align: left;
  }

  .case-spec-table th {
    font-size: 0.9rem;
    margin-bottom: 4px;
  }

  .case-spec-table td {
    font-size: 0.9rem;
    margin-bottom: 4px;
  }
  
  .case-spec-table tr:last-child td {
    margin-bottom: 0;
  }


  .case-risk-list {
    padding-left: 18px;
  }
}
/* ==========================================
   フェードイン修正
   ========================================== */
#onayami, #features, #comparison, #lp-price, #flow, #lp-faq, #access, #lp-conversion {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

#onayami.is-show, #features.is-show, #comparison.is-show, #lp-price.is-show, #flow.is-show, #lp-faq.is-show, #access.is-show, #lp-conversion.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   ダウンタイム
   ========================================== */
#lp-downtime {
  background: #fdfbf8;
  padding: 60px 0;
}

#lp-downtime .section-title-wrap {
  text-align: center;
  margin-bottom: 40px;
}

#lp-downtime .section-sub-title {
  display: block;
  font-size: 14px;
  color: #bfa265;
  margin-bottom: 8px;
}

.downtime-container {
  width: 100%;
}

.downtime-container h3 {
  font-size: 18px;
  color: #4a3e3f;
  border-left: 4px solid #c28d97;
  padding-left: 12px;
  margin: 40px 0 20px 0;
}

.timeline-wrap {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.timeline-row {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  min-width: 600px;
}

.timeline-label {
  width: 100px;
  font-size: 14px;
  font-weight: bold;
  color: #4a3e3f;
  flex-shrink: 0;
}

.timeline-bar {
  color: #ffffff;
  font-size: 11px;
  padding: 8px 12px;
  border-radius: 0 20px 20px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.05);
}

.bar-3days { 
  background: linear-gradient(90deg, #c28d97 0%, #e8b7c0 100%); 
  width: 33%; 
}
.bar-1week { 
  background: linear-gradient(90deg, #caa972 0%, #ebd4ad 100%); 
  width: 50%; 
}
.bar-2weeks { 
  background: linear-gradient(90deg, #bfa265 0%, #d9c496 100%); 
  width: 75%; 
}
.bar-1month { 
  background: linear-gradient(90deg, #8a7a7b 0%, #b3a4a5 100%); 
  width: 100%; 
}

.timeline-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-left: 100px;
  border-top: 1px dashed #e5ded4;
  padding-top: 8px;
  min-width: 600px;
}

.timeline-scale span {
  font-size: 11px;
  color: #8a7a7b;
  text-align: center;
  flex: 1;
}

.downtime-notice {
  font-size: 12px;
  color: #888888;
  margin-top: 8px;
  text-align: right;
}

.downtime-table-wrap {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  margin-bottom: 24px;
  width: 100%;
}

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

.downtime-table th, .downtime-table td {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid #f2ede6;
}

.downtime-table th {
  background: #fff0f2;
  color: #4a3e3f;
  width: 25%;
  text-align: left;
  font-weight: bold;
}

.downtime-table td {
  color: #4a3e3f;
  width: 75%;
  line-height: 1.6;
  text-align: left;
}

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

@media (max-width: 767px) {
  #lp-downtime {
    padding: 40px 0;
  }
  .timeline-wrap {
    padding: 16px 12px;
  }
  .timeline-label {
    width: 80px;
    font-size: 13px;
  }
  .timeline-scale {
    padding-left: 80px;
  }
  .downtime-table th, .downtime-table td {
    padding: 12px 10px;
    font-size: 13px;
  }
  .downtime-table th {
    width: 30%;
  }
  .downtime-table td {
    width: 70%;
  }
}
/* アクセスセクション内 Instagram導線 */
.clinic-sns-inline {
  margin-top: 20px;
  text-align: left;
}

.clinic-insta-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background-color: #fafafa;
  border: 1px solid #e0e0e0;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.clinic-insta-link:active {
  background-color: #f0f0f0;
  opacity: 0.9;
}

@media (hover: hover) {
  .clinic-insta-link:hover {
    background-color: #f0f0f0;
    opacity: 0.9;
  }
}

.insta-icon-img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  margin-right: 8px;
  flex-shrink: 0;
}

.clinic-insta-text {
  font-size: 13px;
  color: #333333;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
}

@media screen and (max-width: 359px) {
  .clinic-insta-text {
    font-size: 12px;
  }
  .clinic-insta-link {
    padding: 6px 10px;
  }
}
/* アクセスセクション内 院内写真レイアウト */
.clinic-photos-wrap {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.clinic-photos-wrap::-webkit-scrollbar {
  display: none;
}

.clinic-photo-item {
  flex: 0 0 70%;
  max-width: 70%;
  text-align: center;
}

.clinic-photo-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.photo-caption {
  display: block;
  font-size: 11px;
  color: #666666;
  margin-top: 6px;
  line-height: 1.3;
  white-space: normal;
}

@media screen and (min-width: 769px) {
  .clinic-photos-wrap {
    overflow-x: visible;
    white-space: normal;
    max-width: 900px;
    margin: 40px auto 0;
    justify-content: center;
  }
  
  .clinic-photo-item {
    flex: 1;
    max-width: calc(33.333% - 8px);
  }
}
/* SP料金カードのリボン・価格メリハリ調整 */
.sp-price-card {
  position: relative;
  padding-top: 25px;
}

.sp-card-ribbon {
  position: absolute;
  top: -10px;
  left: 15px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  color: #ffffff;
  line-height: 1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  letter-spacing: 0.03em;
}

.ribbon-primary {
  background-color: #d6336c;
}

.ribbon-accent {
  background-color: #b28851;
}

.ribbon-sub {
  background-color: #495057;
}

.ribbon-info {
  background-color: #6c757d;
}

/* 5つ目：本格ケア用のゴールド・ベージュ系ラベルカラー */
.ribbon-total {
  background-color: #c19a6b;
}

.sp-old-price {
  color: #666666 !important;
}

.sp-price-num {
  font-weight: 700;
}

.sp-price-unit {
  font-size: 11px;
  font-weight: 600;
  color: #333333;
  margin-left: 2px;
  display: inline-block;
  transform: scale(0.9);
}
.review-badge-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 900px;
  width: 100%;
  margin: 50px auto 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.google-review-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 32px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  text-align: center;
  min-width: 200px;
  max-width: 240px;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.google-review-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.review-stars {
  font-size: 20px;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #ffb300 0%, #fca103 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.review-title {
  font-size: 14px;
  font-weight: 700;
  color: #4a4a4a;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.review-score {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 6px;
}

.score {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
}

.score-text {
  font-size: 14px;
  font-weight: 500;
  color: #8c8c8c;
  margin-left: 4px;
}

.review-count {
  font-size: 13px;
  font-weight: 600;
  color: #595959;
  background-color: #f0f2f5;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.review-date {
  font-size: 10px;
  color: #a6a6a6;
  letter-spacing: 0.02em;
}

.review-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.review-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.review-check {
  color: #fca103;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.4;
}

.review-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #4a4a4a;
  text-align: left;
}

@media (max-width: 768px) {
  .review-badge-wrapper {
    flex-direction: column;
    gap: 24px;
  }
  .google-review-badge {
    width: 100%;
  }
}