/* ==========================================================================
   ひだまり整体サロン LP スタイルシート
   ========================================================================== */

/* --- 1. 変数と基本設定 --- */
:root {
  --primary: #ff8e9e;        /* 優しいピーチピンク */
  --primary-light: #fff0f2;  /* 背景用極薄ピンク */
  --primary-dark: #e06d7d;   /* 濃いピンク */
  --secondary: #ff7d41;      /* 予約ボタン用暖色オレンジ */
  --secondary-hover: #e8652a;/* 予約ボタンホバー */
  --text-dark: #4a3b32;      /* 優しいダークブラウン（黒の代わり） */
  --text-light: #806f66;     /* 補足用マイルドブラウン */
  --bg-light: #fffcfc;       /* ほんのり温かみのある白背景 */
  --bg-pure: #ffffff;        /* 純白 */
  --accent-gold: #e5b83b;    /* 実績用ゴールド */
  --border-color: #fcebeb;   /* 枠線用薄ピンク */
  --shadow-sm: 0 2px 8px rgba(74, 59, 50, 0.05);
  --shadow-md: 0 8px 24px rgba(74, 59, 50, 0.08);
  --shadow-lg: 0 16px 32px rgba(255, 142, 158, 0.15);
  
  --font-main: 'Noto Sans JP', sans-serif;
  --font-serif: 'Shippori Mincho', serif;
}

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

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* --- 2. ユーティリティ & レイアウト --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

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

section {
  padding: 90px 0;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

.section-header {
  margin-bottom: 50px;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.95rem;
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  background-color: var(--primary-light);
  padding: 4px 16px;
  border-radius: 30px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }
}

/* --- 3. ボタンコンポーネント --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.btn-header {
  padding: 8px 24px;
  font-size: 0.85rem;
  background-color: var(--primary);
  color: var(--bg-pure);
  box-shadow: none;
}

.btn-header:hover {
  background-color: var(--primary-dark);
}

.btn-cta {
  background: linear-gradient(135deg, var(--secondary) 0%, #ff5722 100%);
  color: var(--bg-pure);
  padding: 18px 45px;
  border-radius: 50px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 10px 25px rgba(255, 118, 65, 0.4);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 118, 65, 0.6);
}

.btn-cta:active {
  transform: translateY(-1px);
}

.btn-sub-text {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 2px;
  letter-spacing: 0.05em;
}

.btn-main-text {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

@media (max-width: 576px) {
  .btn-main-text {
    font-size: 1.05rem;
  }
}

/* 脈動アニメーション */
.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

/* --- 4. ヘッダー --- */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo-area {
  display: flex;
  flex-direction: column;
}

.logo-sub {
  font-size: 0.75rem;
  color: var(--primary-dark);
  font-weight: 700;
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
}

.header-info-desktop {
  display: flex;
  gap: 20px;
}

.info-badge {
  font-size: 0.8rem;
  color: var(--text-light);
  background-color: var(--primary-light);
  padding: 6px 14px;
  border-radius: 4px;
  font-weight: 500;
}

.info-badge i {
  color: var(--primary-dark);
  margin-right: 4px;
}

@media (max-width: 992px) {
  .header-info-desktop {
    display: none;
  }
}

/* --- 5. ファーストビュー (Hero) --- */
.hero-section {
  background: radial-gradient(circle at top right, #fff0f2 0%, var(--bg-light) 60%);
  padding: 60px 0 100px;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
}

.hero-labels {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .hero-labels {
    align-items: center;
  }
}

.label-limited {
  background-color: #ff3344;
  color: var(--bg-pure);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.label-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 500;
}

@media (max-width: 576px) {
  .label-sub {
    font-size: 0.95rem;
  }
}

.hero-main-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .hero-main-title {
    font-size: 2rem;
  }
}

.highlight-pink {
  position: relative;
  display: inline-block;
}

.highlight-pink::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 12px;
  background-color: rgba(255, 142, 158, 0.3);
  z-index: -1;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 35px;
}

@media (max-width: 768px) {
  .hero-description {
    font-size: 0.95rem;
  }
}

/* 料金ボックス */
.hero-pricing-box {
  background-color: var(--bg-pure);
  border: 2px dashed var(--primary);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 35px;
  display: inline-block;
  text-align: left;
  box-shadow: var(--shadow-sm);
  width: 100%;
  max-width: 480px;
}

@media (max-width: 992px) {
  .hero-pricing-box {
    margin-left: auto;
    margin-right: auto;
  }
}

.pricing-label {
  font-size: 0.8rem;
  color: var(--primary-dark);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.pricing-flex {
  display: flex;
  align-items: baseline;
  gap: 15px;
  flex-wrap: wrap;
}

.price-old {
  font-size: 0.95rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.price-new {
  color: #ff3344;
  font-weight: 700;
  display: flex;
  align-items: baseline;
}

.price-new .small {
  font-size: 0.85rem;
  margin-right: 4px;
  color: var(--text-dark);
}

.price-new .num {
  font-size: 2.2rem;
  line-height: 1;
}

.price-new .yen {
  font-size: 1.2rem;
  margin-left: 2px;
}

.price-new .tax {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-left: 4px;
  font-weight: 400;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
}

.hero-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* 画像に重ねる実績バッジ */
.hero-badges {
  position: absolute;
  bottom: -20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
}

@media (max-width: 576px) {
  .hero-badges {
    position: static;
    margin-top: 15px;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }
}

.badge-item {
  background-color: var(--bg-pure);
  padding: 12px 18px;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  border: 1px solid var(--border-color);
  justify-content: center;
}

@media (max-width: 576px) {
  .badge-item {
    padding: 8px 14px;
    flex: initial;
  }
}

.badge-number {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .badge-number {
    font-size: 1.05rem;
  }
}

.badge-text {
  font-size: 0.75rem;
  color: var(--text-dark);
  font-weight: 700;
  text-align: left;
  line-height: 1.2;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .badge-text {
    font-size: 0.7rem;
  }
}

/* --- 6. 悩みセクション (Pain) --- */
.pain-section {
  background-color: var(--primary-light);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .pain-grid {
    grid-template-columns: 1fr;
  }
}

.pain-card {
  background-color: var(--bg-pure);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1px solid var(--border-color);
}

.pain-icon {
  background-color: #fef0f2;
  color: var(--primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.pain-text {
  font-size: 1rem;
  color: var(--text-dark);
}

.pain-text strong {
  color: var(--primary-dark);
  font-weight: 700;
}

.pain-message-box {
  background-color: var(--bg-pure);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--primary);
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 576px) {
  .pain-message-box {
    padding: 24px;
  }
}

.pain-message-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.pain-message-desc {
  font-size: 1rem;
  line-height: 1.8;
}

/* --- 7. USPセクション (強み) --- */
.usp-section {
  background-color: var(--bg-pure);
}

.usp-list {
  max-width: 800px;
  margin: 0 auto;
}

.usp-item {
  display: flex;
  gap: 30px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
  align-items: flex-start;
}

.usp-item:last-child {
  border-bottom: none;
}

@media (max-width: 576px) {
  .usp-item {
    flex-direction: column;
    gap: 15px;
  }
}

.usp-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 142, 158, 0.3);
  font-family: var(--font-serif);
  line-height: 1;
}

.usp-item-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.usp-item-desc {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* --- 8. スタッフ紹介 (Staff) --- */
.staff-section {
  background-color: var(--primary-light);
  padding: 80px 0;
}

.staff-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 920px;
  margin: 0 auto 30px;
}

.staff-card-primary,
.staff-card-secondary {
  background-color: var(--bg-pure);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: center;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.staff-card-primary:hover,
.staff-card-secondary:hover {
  transform: translateY(-4px);
}

.staff-card-secondary {
  border-left: 5px solid #2b547e;
}

@media (max-width: 768px) {
  .staff-card-primary,
  .staff-card-secondary {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    gap: 20px;
    text-align: center;
  }
}

.staff-photo-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.staff-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--primary-light);
}

.director-photo {
  border-color: #e3edf7;
  object-position: center top;
}

.staff-role-badge {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-dark);
  color: var(--bg-pure);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.director-badge {
  background-color: #2b547e;
}

.staff-notice-banner {
  background-color: #ffffff;
  border: 1.5px solid var(--primary);
  border-radius: 16px;
  padding: 16px 24px;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  line-height: 1.6;
}

.staff-notice-banner i {
  font-size: 1.4rem;
  color: var(--primary);
  flex-shrink: 0;
}

.staff-title {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-family: var(--font-serif);
}

.staff-name {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--font-serif);
}

.staff-post {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
}

.staff-intro {
  font-size: 0.95rem;
  color: var(--text-dark);
}

/* 監修者枠 */
.supervisor-box {
  background-color: var(--bg-pure);
  border-left: 6px solid var(--primary);
  padding: 30px;
  border-radius: 0 16px 16px 0;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.supervisor-badge {
  background-color: var(--text-dark);
  color: var(--bg-pure);
  display: inline-block;
  font-size: 0.75rem;
  padding: 2px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.supervisor-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.supervisor-license {
  font-size: 0.85rem;
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 15px;
}

.supervisor-text {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* --- 9. 口コミ (Reviews) --- */
.review-section {
  background-color: var(--bg-pure);
}

.review-stats {
  text-align: center;
  margin-bottom: 50px;
}

.stats-stars {
  color: var(--accent-gold);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.stats-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-dark);
  font-family: var(--font-serif);
  margin-bottom: 6px;
}

.stats-number .small {
  font-size: 1.2rem;
  color: var(--text-light);
}

.stats-label {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.review-user {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
}

.review-stars {
  color: var(--accent-gold);
  font-size: 0.9rem;
}

.review-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.review-desc {
  font-size: 0.9rem;
  color: var(--text-dark);
}

/* --- 10. 施術の流れ (Flow) --- */
.flow-section {
  background-color: var(--primary-light);
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .flow-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .flow-steps {
    grid-template-columns: 1fr;
  }
}

.flow-step {
  background-color: var(--bg-pure);
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  border: 1px solid var(--border-color);
}

.flow-step-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-serif);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 10px;
}

.flow-step-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: var(--font-serif);
}

.flow-step-desc {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* --- 11. オファーボックス（コンバージョン） --- */
.offer-section {
  background-color: var(--bg-pure);
  padding: 100px 0;
}

.offer-box {
  background: radial-gradient(circle at top left, #fffbfb 0%, #fff0f2 100%);
  border: 3px solid var(--primary);
  border-radius: 32px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 768px) {
  .offer-box {
    padding: 40px 20px;
    border-radius: 24px;
  }
}

.offer-tag {
  color: var(--primary-dark);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 12px;
}

.offer-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  .offer-title {
    font-size: 1.5rem;
  }
}

.offer-limit-badge {
  background-color: #ff3344;
  color: var(--bg-pure);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 6px 20px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(255, 51, 68, 0.2);
}

/* 価格対比 */
.offer-price-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .offer-price-layout {
    gap: 15px;
  }
}

.price-card {
  display: flex;
  flex-direction: column;
}

.price-card.original .p-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

.price-card.original .p-val {
  font-size: 1.4rem;
  text-decoration: line-through;
  color: var(--text-light);
}

.price-arrow {
  color: var(--primary);
  font-size: 1.8rem;
}

@media (max-width: 576px) {
  .price-arrow {
    display: none;
  }
}

.price-card.special {
  background-color: var(--bg-pure);
  border: 2px solid #ff3344;
  padding: 15px 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.price-card.special .p-label-red {
  color: #ff3344;
  font-weight: 700;
  font-size: 0.85rem;
}

.price-card.special .p-val-big {
  color: #ff3344;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}

.price-card.special .p-unit {
  font-size: 1.5rem;
}

.price-card.special .p-tax {
  font-size: 0.75rem;
  color: var(--text-light);
}

@media (max-width: 576px) {
  .price-card.special .p-val-big {
    font-size: 2.5rem;
  }
}

.offer-features {
  display: inline-block;
  text-align: left;
  margin-bottom: 40px;
}

.feature-line {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-line i {
  color: var(--primary-dark);
  margin-right: 8px;
}

.offer-reason {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-lg {
  max-width: 550px;
  padding: 22px 50px;
}

/* --- 12. よくある質問 (FAQ) --- */
.faq-section {
  background-color: var(--primary-light);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-pure);
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  outline: none;
  font-family: var(--font-main);
}

.faq-icon {
  font-size: 0.9rem;
  color: var(--primary-dark);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 24px;
  background-color: #fffbfc;
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.95rem;
  color: var(--text-light);
}

/* JavaScriptでトグルのクラス */
.faq-item.active .faq-answer {
  max-height: 200px; /* 十分な高さ */
  opacity: 1;
  padding-top: 10px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* --- 13. フッター --- */
.footer {
  background-color: var(--text-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--bg-pure);
  margin-bottom: 15px;
}

.footer-address {
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  max-width: 600px;
  margin: 0 auto 30px;
}

.footer-copyright {
  font-size: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

/* --- 14. スマホ追従フッターCTA --- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-pure);
  padding: 12px 20px;
  box-shadow: 0 -4px 15px rgba(74, 59, 50, 0.1);
  z-index: 999;
  display: none; /* 初期は非表示 */
}

.sticky-cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary) 0%, #ff5722 100%);
  color: var(--bg-pure);
  padding: 10px 20px;
  border-radius: 40px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 125, 65, 0.3);
}

.sticky-cta-sub {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.9;
  line-height: 1;
  margin-bottom: 2px;
}

.sticky-cta-main {
  font-size: 1.05rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  /* スマホ環境下でスクロールしたらJSで表示させるためのベース */
  .sticky-cta.show {
    display: block;
  }
  
  body {
    /* 追従フッターの高さ分だけ下にマージンをとる */
    padding-bottom: 76px;
  }
}

/* --- 15. 追加: Google口コミ埋め込み & アクセス・店舗情報 --- */
.review-embed-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--bg-light);
  border: 1px dashed var(--primary);
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.embed-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.access-section {
  background-color: var(--bg-pure);
}

.access-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

@media (max-width: 992px) {
  .access-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.map-wrapper {
  width: 100%;
  height: 100%;
  min-height: 350px;
}

.info-table-wrapper {
  width: 100%;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.info-table th,
.info-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border-color);
  text-align: left;
}

.info-table th {
  background-color: var(--primary-light);
  color: var(--text-dark);
  font-weight: 700;
  width: 120px;
  white-space: nowrap;
  border-radius: 4px;
}

.info-table td {
  color: var(--text-dark);
  line-height: 1.6;
}

/* --- 16. 追加: ヘッダー電話番号 & LINE予約ボタン --- */
.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.phone-label {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 2px;
}

.phone-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.phone-number i {
  color: var(--primary-dark);
  margin-right: 4px;
}

.phone-number:hover {
  color: var(--primary-dark);
}

@media (max-width: 992px) {
  .header-phone {
    display: none; /* スマホ・タブレットではヘッダーの電話は非表示に（オファーエリアや追従で対応するため） */
  }
}

.offer-cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  width: 100%;
}

.btn-line {
  background: linear-gradient(135deg, #06C755 0%, #05b04b 100%) !important;
  box-shadow: 0 10px 25px rgba(6, 199, 85, 0.3) !important;
}

.btn-line:hover {
  box-shadow: 0 15px 30px rgba(6, 199, 85, 0.5) !important;
}

.offer-alternative {
  margin-top: 30px;
  border-top: 1px dashed var(--border-color);
  padding-top: 24px;
}

.alt-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 8px;
}

.alt-phone-link {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
}

.alt-phone-link i {
  color: var(--primary-dark);
  font-size: 1.6rem;
}

.alt-phone-link:hover {
  color: var(--primary-dark);
}

.alt-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
}

.table-phone-link {
  color: var(--text-dark);
  font-weight: 700;
  text-decoration: underline;
}

.table-phone-link:hover {
  color: var(--primary-dark);
}

/* --- 17. 残り枠カウンター --- */
.slots-counter {
  background: linear-gradient(135deg, #fff5f5 0%, #fff0f2 100%);
  border: 2px solid #ff3344;
  border-radius: 16px;
  padding: 20px 24px;
  margin: 20px auto 0;
  max-width: 480px;
  text-align: center;
}

.slots-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.slots-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.slots-label i {
  color: #ff3344;
  margin-right: 4px;
}

.slots-visual {
  display: flex;
  gap: 8px;
  align-items: center;
}

.slot-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 3px solid #ddd;
  transition: all 0.3s ease;
}

.slot-dot.filled {
  background-color: #cccccc;
  border-color: #cccccc;
}

.slot-dot.remaining {
  background-color: #ff3344;
  border-color: #ff3344;
  animation: slot-pulse 1.5s infinite;
}

@keyframes slot-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 51, 68, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(255, 51, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 51, 68, 0); }
}

.slots-text {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.slots-remaining {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ff3344;
  line-height: 1;
  font-family: var(--font-serif);
}

.slots-unit {
  font-size: 1rem;
  font-weight: 700;
  color: #ff3344;
}

.slots-warning {
  font-size: 0.8rem;
  color: #ff3344;
  font-weight: 700;
}

.slots-warning i {
  margin-right: 4px;
}

/* --- 14. 施設・院内環境ギャラリー (添付画像活用) --- */
.gallery-section {
  background-color: var(--bg-soft);
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.gallery-card {
  background-color: var(--bg-pure);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.gallery-img-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-info {
  padding: 24px;
}

.gallery-tag {
  display: inline-block;
  background-color: #fef0f2;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.gallery-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.gallery-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- 15. USPインソールサムネイル画像 --- */
.usp-item-with-img {
  position: relative;
}

.usp-img-wrapper {
  margin-top: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  max-width: 360px;
}

.usp-thumb-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* --- 16. LINE限定特典バナー --- */
.line-bonus-box {
  background: linear-gradient(135deg, #ebfbf0 0%, #e6f9ec 100%);
  border: 2px dashed #06c755;
  border-radius: 16px;
  padding: 20px 24px;
  margin: 24px 0;
  text-align: center;
  position: relative;
}

.line-bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #06c755;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(6, 199, 85, 0.3);
}

.line-bonus-text {
  font-size: 0.95rem;
  color: #1b4d2e;
  line-height: 1.6;
}

.line-bonus-text strong {
  color: #06c755;
  font-size: 1.05rem;
  background: linear-gradient(transparent 60%, #c4f7d4 60%);
}

/* --- 17. スクロールアニメーション (Scroll Fade-In) --- */
.js-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

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

/* --- 18. 他店との比較表セクション --- */
.comparison-section {
  background-color: var(--bg-soft);
  padding: 80px 0;
}

.comparison-table-wrapper {
  margin-top: 40px;
  overflow-x: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  background-color: var(--bg-pure);
  border: 1px solid var(--border-color);
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  vertical-align: middle;
  font-size: 0.95rem;
}

.comparison-table thead th {
  background-color: #f8f9fa;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  font-size: 1rem;
}

.comparison-table th.col-feature {
  width: 22%;
  background-color: #f1f3f5;
  text-align: left;
}

.comparison-table th.col-other {
  width: 25%;
  color: var(--text-muted);
}

.comparison-table th.col-target {
  width: 28%;
  background: linear-gradient(135deg, #fff5f7 0%, #ffe8ed 100%);
  color: var(--primary-dark);
  font-size: 1.15rem;
  font-family: var(--font-serif);
  position: relative;
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  border-top: 3px solid var(--primary);
}

.table-recommend-badge {
  display: block;
  font-size: 0.75rem;
  font-family: var(--font-sans);
  background-color: var(--primary);
  color: #fff;
  padding: 2px 10px;
  border-radius: 12px;
  width: fit-content;
  margin: 0 auto 6px;
  box-shadow: 0 2px 6px rgba(224, 98, 126, 0.4);
}

.feature-title {
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
}

.feature-title i {
  color: var(--primary);
  margin-right: 6px;
}

.feature-priority {
  display: inline-block;
  font-size: 0.7rem;
  background-color: #ff3344;
  color: #fff;
  padding: 1px 8px;
  border-radius: 10px;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-priority.sub {
  background-color: #e0627e;
}

.other-cell {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  background-color: #fafafa;
}

.target-cell {
  background-color: #fffafb;
  color: var(--text-dark);
  line-height: 1.6;
  border-left: 2px solid var(--primary-light);
  border-right: 2px solid var(--primary-light);
  position: relative;
}

.target-cell strong {
  color: var(--primary-dark);
}

.cell-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  background-color: #fef0f2;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 4px;
}

.highlight-row .target-cell {
  background-color: #fff0f3;
  font-size: 0.98rem;
}

/* --- 19. 安心の3大約束 & 返金保証セクション --- */
.guarantee-section {
  background-color: var(--bg-pure);
  padding: 80px 0;
}

.guarantee-box {
  background: linear-gradient(135deg, #ffffff 0%, #fffbfb 100%);
  border: 3px double #e0627e;
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 10px 30px rgba(224, 98, 126, 0.1);
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 576px) {
  .guarantee-box {
    padding: 30px 20px;
  }
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #e0627e;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 25px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(224, 98, 126, 0.3);
}

.guarantee-main-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 30px;
}

/* オファー理由カード */
.offer-reason-card {
  background-color: #fef5f7;
  border-left: 5px solid var(--primary);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 36px;
  text-align: left;
}

.reason-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.reason-title i {
  color: var(--primary);
}

.reason-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.8;
}

.reason-text strong {
  color: #ff3344;
  background: linear-gradient(transparent 70%, #ffd6dd 70%);
}

/* 3つの約束グリッド */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .guarantee-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.guarantee-card {
  background-color: #ffffff;
  border: 1px solid #f3d4dc;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.guarantee-card:hover {
  transform: translateY(-4px);
}

.guarantee-icon {
  width: 56px;
  height: 56px;
  background-color: #fef0f2;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
  border: 1px solid #f9cbd5;
}

.guarantee-card-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.guarantee-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: left;
}

/* --- 20. スマートフォン完全対応 (Mobile Responsive Optimization) --- */
.scroll-hint-mobile {
  display: none;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  animation: hint-pulse 2s infinite;
}

@keyframes hint-pulse {
  0%, 100% { opacity: 0.7; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(4px); }
}

@media (max-width: 768px) {
  .scroll-hint-mobile {
    display: block;
  }

  /* 比較表のスマホ用Sticky固定 */
  .comparison-table th.col-feature,
  .comparison-table td.feature-title {
    position: sticky;
    left: 0;
    z-index: 5;
    background-color: #ffffff;
    box-shadow: 3px 0 8px rgba(0, 0, 0, 0.05);
    min-width: 140px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 14px 12px;
    font-size: 0.85rem;
  }

  /* スティッキー追従フッターのiPhone Safe-Area対応 */
  .sticky-cta {
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
  }

  .sticky-cta-btn {
    border-radius: 30px;
    padding: 12px 20px;
    box-shadow: 0 4px 15px rgba(224, 98, 126, 0.4);
  }

  /* ヒーローセクションのスマホ最適化 */
  .hero-main-title {
    font-size: 1.75rem;
    line-height: 1.4;
  }

  .hero-pricing-box {
    padding: 16px;
  }

  .price-new .num {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .btn-cta {
    padding: 16px 20px;
  }

  .btn-main-text {
    font-size: 1.05rem;
  }
}

/* --- 21. レスポンシブ改行＆テキスト折り返しユーティリティ --- */
.pc-only {
  display: inline;
}

.sp-only {
  display: none;
}

.inline-block {
  display: inline-block;
}

@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }

  .sp-only {
    display: inline !important;
  }

  /* スマホ画面での文字溢れ・途切り防止 */
  h1, h2, h3, p, span, td, th {
    word-break: normal;
    overflow-wrap: break-word;
  }

  .offer-title,
  .section-title,
  .hero-main-title {
    letter-spacing: 0.02em;
    line-height: 1.45;
  }
}

/* バッジ・タグ・ラベル類の単語途切れ完全防止 */
.cell-tag,
.table-recommend-badge,
.staff-role-badge,
.director-badge,
.gallery-tag,
.guarantee-badge,
.feature-priority,
.pricing-label,
.offer-tag,
.p-label,
.p-label-red,
.badge-number,
.badge-text,
.filter-badge {
  white-space: nowrap !important;
  word-break: keep-all !important;
}

/* --- 22. 当サロンが向いている方・向いていない方 (Filter Section) --- */
.filter-section {
  background-color: var(--bg-soft);
  padding: 80px 0;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .filter-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.filter-card {
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  background-color: var(--bg-pure);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.filter-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.filter-card-negative {
  background-color: #f9f9fb;
  border-color: #e2e4e8;
}

.filter-card-positive {
  background: linear-gradient(135deg, #ffffff 0%, #fff6f8 100%);
  border: 2px solid var(--primary-light);
  box-shadow: 0 8px 24px rgba(224, 98, 126, 0.12);
}

.filter-card-header {
  margin-bottom: 20px;
  text-align: center;
}

.filter-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 25px;
}

.negative-badge {
  background-color: #e9ecef;
  color: #495057;
}

.positive-badge {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(224, 98, 126, 0.3);
}

.filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.filter-list li {
  font-size: 0.95rem;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.filter-card-negative .filter-list li {
  color: var(--text-muted);
}

.filter-card-negative .filter-list li i {
  color: #adb5bd;
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.filter-card-positive .filter-list li {
  color: var(--text-dark);
  font-weight: 500;
}

.filter-card-positive .filter-list li i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* --- 23. 対象症状タグ一覧 (Symptom Tags) --- */
.symptom-tags-container {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 2px dashed var(--primary-light);
  text-align: center;
}

.symptom-tags-label {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.symptom-tags-label i {
  color: var(--primary);
  margin-right: 6px;
}

.symptom-tags-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.symptom-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #fef0f2;
  color: var(--primary-dark);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 25px;
  border: 1px solid #f9cbd5;
  transition: transform 0.2s ease, background-color 0.2s ease;
  white-space: nowrap !important;
  word-break: keep-all !important;
}

.symptom-tag:hover {
  transform: translateY(-2px);
  background-color: #ffe0e6;
}

.symptom-tag i {
  color: var(--primary);
  font-size: 0.8rem;
}









