/* ===================================
   グローバルスタイル - セラショット
   =================================== */

:root {
  /* === Color === */
  --ink:        #4A3C3C;
  --coral:      #E8A5B1;
  --coral-deep: #D66B7C;
  --pink:       #F5B5C1;
  --blush:      #FADDE1;
  --gold:       #D4AF77;
  --cream:      #FFF8F5;
  --ivory:      #FBF3EC;
  --white:      #FFFFFF;
  --mist:       #F0D8DD;
  --text-dark:  var(--ink);
  --text-gray:  #7A6E6E;
  --text-light: #A89A9A;

  /* 後方互換エイリアス（既存クラス破壊防止） */
  --primary-pink:     var(--coral);
  --primary-coral:    var(--coral-deep);
  --primary-purple:   var(--pink);
  --primary-lavender: var(--blush);
  --accent-gold:      var(--gold);
  --bg-white:         var(--white);
  --bg-light:         var(--cream);
  --bg-beige:         var(--blush);
  --border-light:     var(--mist);

  /* === Typography（Phase Aから継続・変更なし） === */
  --font-serif-jp: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  --font-sans-jp:  'Zen Kaku Gothic New', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif-en: 'Fraunces', 'Times New Roman', serif;
  --font-sans-en:  'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-main:     var(--font-sans-jp);

  --font-size-base:  16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  --font-size-h1: clamp(32px, 5vw, 48px);
  --font-size-h2: clamp(26px, 3.5vw, 36px);
  --font-size-h3: clamp(20px, 2.5vw, 26px);

  /* R5-D 見出しウェイト一元化 */
  --font-weight-h1: 700;
  --font-weight-h2: 600;
  --font-weight-h3: 500;

  /* === Spacing === */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 40px;
  --spacing-xl: 60px;
  --spacing-2xl: 96px;

  /* === Other === */
  --border-radius:    4px;
  --border-radius-lg: 12px;
  --box-shadow:       0 20px 60px -20px rgba(74, 60, 60, 0.12);
  --box-shadow-sm:    0 4px 16px -4px rgba(74, 60, 60, 0.08);
  --transition:       all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans-jp);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* タイポグラフィ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
}

h1, h2 {
  font-family: var(--font-serif-jp);
  letter-spacing: 0.02em;
}

h3 {
  font-family: var(--font-sans-jp);
  letter-spacing: 0.04em;
}

h1 { font-size: var(--font-size-h1); font-weight: var(--font-weight-h1); }
h2 { font-size: var(--font-size-h2); font-weight: var(--font-weight-h2); }
h3 { font-size: var(--font-size-h3); font-weight: var(--font-weight-h3); }

p {
  margin-bottom: var(--spacing-sm);
}

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

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

/* レイアウト */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

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

/* ヘッダー */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  box-shadow:
    0 1px 0 rgba(214, 107, 124, 0.06),
    0 10px 30px -18px rgba(74, 60, 60, 0.18);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* ヘッダー最上部のアクセントライン（Pro仕様） */
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    var(--coral) 0%,
    var(--pink) 30%,
    var(--gold) 60%,
    var(--coral-deep) 100%);
  background-size: 200% 100%;
  background-position: 0 0;
  pointer-events: none;
  z-index: 1;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm);
}

.header__logo {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header__logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* ヘッダーアクションエリア */
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  order: 2;
  flex: 1;
  justify-content: flex-end;
  margin-right: var(--spacing-sm);
}

.header__cta-btn {
  white-space: nowrap;
  font-size: var(--font-size-small);
  padding: 8px 16px;
}

/* ドロワーナビ内 */
.nav__header {
  padding: var(--spacing-md) var(--spacing-xs) var(--spacing-sm);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 0;
}

/* ロゴとTOPリンクの間のCTAボタン */
.nav__cta-buttons {
  display: none;
}
@media (max-width: 768px) {
  .nav__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-xs);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 0;
  }
}


.nav__cta-btn {
  flex: 1;
  text-align: center;
  padding: 10px 6px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  white-space: nowrap;
}


@media (max-width: 768px) {
  .header__actions {
    display: none;
  }
}

/* グローバルナビ（2段目）— 薄ピンクで Pro 仕様に差別化 */
.gnav {
  position: relative;
  background:
    linear-gradient(180deg, rgba(253, 238, 240, 0.92) 0%, rgba(250, 221, 225, 0.78) 100%);
  border-top: 1px solid rgba(214, 107, 124, 0.12);
  border-bottom: 1px solid rgba(214, 107, 124, 0.18);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
}

.gnav::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 560px 44px at 50% 100%, rgba(214, 107, 124, 0.12) 0%, transparent 70%);
}

.gnav__list {
  position: relative;
  z-index: 1;
  display: flex;
  list-style: none;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.gnav__list::-webkit-scrollbar {
  display: none;
}

.gnav__link {
  display: block;
  padding: 12px 20px;
  font-size: var(--font-size-small);
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.gnav__link:hover,
.gnav__link--active {
  color: var(--coral-deep);
  border-bottom-color: var(--coral-deep);
}

@media (max-width: 768px) {
  .gnav__list {
    justify-content: flex-start;
    padding: 0 4px;
  }
  .gnav__link {
    padding: 10px 14px;
    font-size: 12px;
  }
}

/* ナビゲーション */
.nav__list {
  display: flex;
  gap: var(--spacing-md);
  list-style: none;
}

.nav__link {
  font-weight: 500;
  transition: var(--transition);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius);
}

.nav__link:hover {
  background: var(--bg-light);
  color: var(--primary-pink);
}

/* ハンバーガーメニュー（常時表示・SBC方式） */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  order: 3;
}

.hamburger__line {
  width: 24px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ボタン */
.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: var(--font-size-base);
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary-pink), var(--primary-coral));
  color: var(--bg-white);
  box-shadow: 0 4px 15px rgba(232, 84, 122, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 84, 122, 0.4);
}

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

.btn--outline:hover {
  background: var(--primary-pink);
  color: var(--bg-white);
}

.btn--large {
  padding: var(--spacing-md) var(--spacing-lg);
  font-size: var(--font-size-large);
}

/* カード */
.card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: var(--spacing-md);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* セクションタイトル */
.section__title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section__title-main {
  font-size: var(--font-size-h2);
  margin-bottom: var(--spacing-xs);
  background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__title-sub {
  font-family: var(--font-serif-en);
  font-size: 13px;
  color: var(--gold);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: var(--spacing-xs);
}

.diagnosis-cta__label {
  text-align: center;
  margin-bottom: var(--spacing-xs);
}

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

/* ===================================
   パンくずリスト
   =================================== */
.breadcrumb {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
  font-size: 13px;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.breadcrumb__item:not(:last-child)::after {
  content: '›';
  color: var(--text-light);
  font-size: 14px;
}

.breadcrumb__link {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.breadcrumb__link:hover {
  color: var(--primary-pink);
}

.breadcrumb__current {
  color: var(--primary-pink);
  font-weight: 500;
}

/* フッター */
.footer {
  background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
  color: var(--bg-white);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer__section-title {
  font-size: var(--font-size-large);
  margin-bottom: var(--spacing-sm);
}

.footer__links {
  list-style: none;
}

.footer__link {
  display: block;
  padding: var(--spacing-xs) 0;
  opacity: 0.9;
  transition: var(--transition);
}

.footer__link:hover {
  opacity: 1;
  padding-left: var(--spacing-xs);
}

.footer__sns {
  display: flex;
  gap: 10px;
  margin-top: var(--spacing-sm);
}

.footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: white;
  transition: background 0.2s;
  flex-shrink: 0;
}

.footer__sns-link:hover {
  background: rgba(255, 255, 255, 0.3);
}

.footer__bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: var(--font-size-small);
  opacity: 0.8;
}

/* ドロワーナビ（SBC方式：デスクトップ・モバイル共通） */
.nav {
  position: fixed;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--bg-white);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
  transition: right 0.35s ease;
  padding: 0px var(--spacing-md) var(--spacing-md);
  z-index: 999;
  overflow-y: auto;
}

.nav--active {
  right: 0;
}

/* オーバーレイ */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
}

.nav-overlay--active {
  display: block;
}

.nav__list {
  flex-direction: column;
  gap: 0;
  padding-bottom: 200px;
}

.nav__link {
  display: block;
  padding: var(--spacing-sm) var(--spacing-xs);
  border-bottom: 1px solid var(--border-light);
  font-size: var(--font-size-large);
}

.nav__link:hover {
  background: var(--bg-beige);
  color: var(--primary-pink);
  padding-left: var(--spacing-sm);
}

/* ハンバーガー アクティブ状態（X字形成） */
.hamburger--active .hamburger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger--active .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger--active .hamburger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* レスポンシブ */
@media (max-width: 768px) {
  :root {
    --font-size-h1: 28px;
    --font-size-h2: 24px;
    --font-size-h3: 20px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
  }

  .hamburger {
    z-index: 1001;
  }
}

/* ===================================
   TOPページ専用スタイル
   =================================== */

/* ヒーローセクション */
.hero {
  padding: 0;
  overflow: hidden;
}

.hero__container {
  display: block;
  max-width: 100%;
  padding: 0;
}

.hero__image {
  width: 100%;
  line-height: 0;
  position: relative;
}

.hero__title {
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
}

.hero__title-highlight {
  background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero__description {
  font-size: var(--font-size-large);
  color: var(--text-gray);
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
}

.hero__buttons {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.hero__features {
  display: flex;
  gap: var(--spacing-md);
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.hero__feature-icon {
  width: 24px;
  height: 24px;
  background: var(--primary-pink);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.hero__feature-text {
  font-weight: 600;
  color: var(--text-dark);
}

.hero__photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
}

/* ===== Phase R5-C: ヒーロー直下 BtoBリード / バッジ / CTA / スクロール ===== */
.hero__lead {
  max-width: 960px;
  margin: clamp(32px, 6vw, 64px) auto clamp(24px, 4vw, 40px);
  padding: 0 var(--spacing-md);
  text-align: center;
}

.hero__lead-title {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}

.hero__lead-en {
  display: block;
  font-family: var(--font-serif-en);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(13px, 1.6vw, 17px);
  letter-spacing: 0.18em;
  color: var(--gold);
  opacity: 0.72;
  margin-bottom: 6px;
  text-transform: none;
}

.hero__lead-jp {
  font-family: var(--font-serif-jp);
  font-weight: 500;
  font-size: clamp(22px, 3.6vw, 34px);
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: rgba(74, 60, 60, 0.72);
  margin: 0;
}

.hero__lead-jp-line1,
.hero__lead-jp-line2 {
  display: inline;
}

.hero__lead-jp-line1::after {
  content: " / ";
  color: var(--gold);
  font-weight: 400;
  margin: 0 0.15em;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  list-style: none;
  padding: 0;
  margin: clamp(20px, 3vw, 28px) 0 0;
}

.hero__badge {
  font-family: var(--font-sans-jp);
  font-size: clamp(11px, 1.2vw, 13px);
  letter-spacing: 0.1em;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(212, 175, 119, 0.5);
  border-radius: 999px;
  padding: 6px 14px;
  backdrop-filter: blur(2px);
}

.hero__cta {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: clamp(20px, 4vw, 48px);
  margin-top: clamp(28px, 4vw, 40px);
}

.hero__cta-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.hero__btn--diagnosis {
  background: linear-gradient(135deg, var(--coral), var(--coral-deep));
  color: #fff;
  box-shadow: 0 4px 14px rgba(214, 107, 124, 0.28);
}

.hero__btn--diagnosis:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(214, 107, 124, 0.38);
}

.hero__btn--btob {
  background: linear-gradient(135deg, #b6915a, var(--gold));
  color: #fff;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 14px rgba(212, 175, 119, 0.35);
}

.hero__btn--btob:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 119, 0.5);
}

/* スクロールインジケータ */
.hero__scroll {
  display: block;
  width: 28px;
  height: 44px;
  margin: clamp(16px, 3vw, 28px) auto clamp(24px, 4vw, 40px);
  position: relative;
  text-decoration: none;
}

.hero__scroll-arrow {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg);
  animation: hero-scroll-bounce 1.8s ease-in-out infinite;
  opacity: 0.7;
}

@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateY(-4px) rotate(45deg); opacity: 0.4; }
  50%      { transform: translateY(4px)  rotate(45deg); opacity: 0.9; }
}

/* staggered fade-in（要素3つ・各300ms / 合計1秒以内） */
.hero__fade {
  opacity: 0;
  transform: translateY(8px);
  animation: hero-fade-in 0.6s ease-out forwards;
}

.hero__fade--1 { animation-delay: 0.10s; }
.hero__fade--2 { animation-delay: 0.40s; }
.hero__fade--3 { animation-delay: 0.70s; }

@keyframes hero-fade-in {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__fade { opacity: 1; transform: none; animation: none; }
  .hero__scroll-arrow { animation: none; opacity: 0.7; }
}

/* レスポンシブ */
@media (max-width: 768px) {
  .hero__lead-jp-line1::after {
    content: "";
    display: block;
    height: 0;
  }
  .hero__lead-jp-line2 { display: block; }
  .hero__cta {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .hero__cta-buttons { flex-direction: column; width: 100%; }
  .hero__btn { width: 100%; }
}

/* About Section */
.about {
  background-color: #FFFFFF;
}

.about__lead {
  font-size: var(--font-size-large);
  line-height: 1.9;
  margin-bottom: var(--spacing-md);
  text-align: center;
}

@media (min-width: 769px) {
  .about__lead img {
    max-width: 600px;
    height: auto;
  }
}

.about__features {
  margin-top: var(--spacing-lg);
}

.card-swiper {
  padding: 0 40px 48px;
  position: relative;
  --swiper-navigation-color: var(--gold);
  --swiper-navigation-size: 22px;
  --swiper-pagination-color: var(--coral-deep);
  --swiper-pagination-bullet-inactive-color: var(--coral);
  --swiper-pagination-bullet-inactive-opacity: 0.4;
  --swiper-pagination-bullet-size: 8px;
}

.card-swiper .swiper-wrapper {
  align-items: stretch;
}

.card-swiper .swiper-slide {
  height: auto;
  display: flex;
  box-sizing: border-box;
  padding: 8px 4px 16px;
}

.card-swiper .swiper-slide > * {
  width: 100%;
  background: white;
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card-swiper .swiper-slide > *:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-swiper .swiper-button-prev,
.card-swiper .swiper-button-next {
  width: 32px;
  height: 32px;
  margin-top: -16px;
}

.card-swiper .swiper-button-prev::after,
.card-swiper .swiper-button-next::after {
  font-weight: 700;
}

.card-swiper .swiper-pagination {
  bottom: 0;
}

.card-swiper .swiper-pagination-bullet-active {
  transform: scale(1.25);
}

@media (max-width: 1023px) {
  .card-swiper .swiper-button-prev,
  .card-swiper .swiper-button-next {
    display: none;
  }
}

@media (max-width: 640px) {
  .card-swiper {
    padding: 0 0 40px;
  }
}

.feature-card__icon {
  font-size: 48px;
  margin-bottom: var(--spacing-sm);
}

.feature-card__title {
  font-size: 20px;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-pink);
}

.feature-card__text {
  color: var(--text-gray);
  line-height: 1.7;
}

/* Worries Section */
.worries {
  background-color: var(--bg-light);
}

.worries__list {
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

.worry-item {
  background: white;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.worry-item__check {
  color: var(--primary-pink);
  font-size: 20px;
  font-weight: bold;
}

.worry-item__text {
  flex: 1;
  color: var(--text-dark);
}

.worries__cta {
  text-align: center;
  padding: var(--spacing-lg);
  background: white;
  border-radius: var(--border-radius);
  max-width: 600px;
  margin: 0 auto;
}

.worries__cta-text {
  font-size: var(--font-size-large);
  color: var(--text-gray);
  margin-bottom: var(--spacing-sm);
}

.worries__cta-title {
  font-size: 28px;
  background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-sm);
}

.worries__cta-image {
  margin: var(--spacing-md) auto;
  max-width: 80%;
}

.worries__cta-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(232, 84, 122, 0.2));
}

/* Radibella Intro */
.radibella-intro {
  background-color: #FFFFFF;
}

.radibella-intro__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.radibella-intro__image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #E8547A 0%, #F4A7B9 100%);
  border-radius: var(--border-radius);
}

.radibella-intro__subtitle {
  font-size: 20px;
  color: var(--primary-pink);
  margin-bottom: var(--spacing-sm);
  border-left: 4px solid var(--primary-pink);
  padding-left: var(--spacing-sm);
}

.radibella-intro__component h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.radibella-intro__effects,
.radibella-intro__merits {
  list-style: none;
  padding-left: var(--spacing-sm);
}

.radibella-intro__effects li,
.radibella-intro__merits li {
  padding: var(--spacing-xs) 0;
  position: relative;
  padding-left: var(--spacing-md);
}

.radibella-intro__effects li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-pink);
  font-weight: bold;
  font-size: 20px;
}

/* Decenba Intro */
.decenba-intro {
  background-color: #FFFFFF;
}

.decenba-intro__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.decenba-intro__image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #E8547A 0%, #F4A7B9 100%);
  border-radius: var(--border-radius);
}

.decenba-intro__subtitle {
  font-size: 20px;
  color: var(--primary-pink);
  margin-bottom: var(--spacing-sm);
  border-left: 4px solid var(--primary-pink);
  padding-left: var(--spacing-sm);
}

.decenba-intro__component h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.decenba-intro__effects,
.decenba-intro__merits {
  list-style: none;
  padding-left: var(--spacing-sm);
}

.decenba-intro__effects li,
.decenba-intro__merits li {
  padding: var(--spacing-xs) 0;
  position: relative;
  padding-left: var(--spacing-md);
}

.decenba-intro__effects li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-pink);
  font-weight: bold;
  font-size: 20px;
}

/* Target Areas */
.target-areas {
  background-color: var(--bg-light);
}

.target-areas__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--spacing-sm);
  max-width: 800px;
  margin: 0 auto var(--spacing-md);
}

.area-card {
  color: gray;
  background: white;
  padding: var(--spacing-md);
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  cursor: pointer;
}

.area-card:hover {
  background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
  color: white;
  transform: translateY(-2px);
}

.area-card__name {
  font-weight: 600;
  font-size: var(--font-size-large);
}

.target-areas__note {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Diagnosis CTA */
.diagnosis-cta {
  background-color: transparent;
  color: var(--ink);
}

.diagnosis-cta__card {
  text-align: center;
  padding: var(--spacing-xl);
}

.diagnosis-cta__title {
  font-size: 32px;
  margin-bottom: var(--spacing-md);
  color: var(--ink);
}

.diagnosis-cta__text {
  font-size: var(--font-size-large);
  margin-bottom: var(--spacing-lg);
  opacity: 0.95;
}

.diagnosis-cta .btn--primary {
  background: var(--primary-pink);
  color: white;
}

.diagnosis-cta .btn--primary:hover {
  background: var(--primary-purple);
}

/* レスポンシブ（TOPページ） */
@media (max-width: 768px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .hero__title {
    font-size: 28px;
  }
  
  .hero__buttons {
    flex-direction: column;
  }
  
  .hero__features {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .hero__image-placeholder {
    height: 300px;
  }
  
  .radibella-intro__content,
  .decenba-intro__content {
    grid-template-columns: 1fr;
  }
  
  .target-areas__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .diagnosis-cta__title {
    font-size: 24px;
  }
}

/* ユーティリティクラス */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }
.text-pink { color: var(--primary-pink); }
.text-purple { color: var(--primary-purple); }
.text-gray { color: var(--text-gray); }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }

/* パンくずリスト：ホームアイコン */
.breadcrumb__link--home {
  display: inline-block;
  padding: 6px;
  margin: -6px;
  line-height: 0;
  vertical-align: middle;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.breadcrumb__home-icon {
  display: block;
  width: 16px;
  height: 16px;
  fill: var(--text-gray);
  pointer-events: none;
}

.breadcrumb__link--home:hover .breadcrumb__home-icon {
  fill: var(--primary-pink);
}
/* 関連ページリンク（2-8 内部リンク強化） */
.related-section {
  background: var(--bg-light);
}
.related-links {
  text-align: center;
}
.related-links__title {
  font-size: var(--font-size-large);
  color: var(--text-gray);
  margin-bottom: var(--spacing-md);
  font-weight: 500;
}
.related-links__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-sm);
  max-width: 800px;
  margin: 0 auto;
}
.related-link-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  text-align: center;
  transition: var(--transition);
  display: block;
}
.related-link-card:hover {
  border-color: var(--primary-pink);
  box-shadow: var(--box-shadow);
  transform: translateY(-2px);
}
.related-link-card__title {
  display: block;
  font-weight: 700;
  color: var(--primary-pink);
  margin-bottom: var(--spacing-xs);
}
.related-link-card__desc {
  display: block;
  font-size: var(--font-size-small);
  color: var(--text-gray);
}

/* ===================================
   Phase 5: 実績・メディア・コンタクト・Cookie・浮遊CTA
   =================================== */

/* 実績数字セクション */
.stats-section {
  background: linear-gradient(135deg, var(--pink) 0%, var(--coral) 100%);
  padding: var(--spacing-xl) 0;
}

.stats-section .section__title p,
.stats-section .section__title h2 {
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.stat-card {
  text-align: center;
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-card__number {
  font-size: 42px;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-card__label {
  font-size: var(--font-size-small);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }
  .stat-card__number {
    font-size: 32px;
  }
}

/* メディア掲載セクション */
.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.media-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: var(--spacing-md) var(--spacing-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
}

.media-card__logo {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-small);
  font-weight: 700;
  color: var(--text-gray);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: var(--spacing-xs);
}

.media-card__date {
  font-size: 12px;
  color: var(--text-light);
}

.media-note {
  text-align: center;
  color: var(--text-light);
  font-size: var(--font-size-small);
  margin-top: var(--spacing-md);
}

@media (max-width: 768px) {
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }
}

/* コンタクトフォーム */
.contact-section {
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-lg);
}

.contact-info__title {
  font-size: var(--font-size-large);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

.contact-info__text {
  color: var(--text-gray);
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

.contact-info__items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.contact-info__item {
  display: flex;
  gap: var(--spacing-xs);
  align-items: flex-start;
  color: var(--text-gray);
  font-size: var(--font-size-small);
}

.contact-info__item strong {
  color: var(--text-dark);
  min-width: 80px;
}

.contact-form {
  background: white;
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  font-size: var(--font-size-small);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-label .required {
  color: var(--primary-pink);
  margin-left: 4px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: var(--font-size-small);
  font-family: var(--font-main);
  color: var(--text-dark);
  background: white;
  transition: border-color 0.2s;
}

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

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

.form-submit {
  width: 100%;
}

.form-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: var(--spacing-sm);
  text-align: center;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  .contact-form {
    padding: var(--spacing-md);
  }
}

/* 浮遊CTAボタン */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

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

.floating-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: var(--font-size-small);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.floating-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

.floating-cta__btn--apply {
  background: linear-gradient(135deg, var(--primary-pink), var(--primary-coral));
  color: white;
}

.floating-cta__btn--purchase {
  background: var(--bg-white);
  color: var(--primary-pink);
  border: 2px solid var(--primary-pink);
}

.floating-cta__close {
  position: absolute;
  top: -10px;
  right: -8px;
  width: 22px;
  height: 22px;
  background: var(--text-gray);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.floating-cta__wrap {
  position: relative;
}

@media (max-width: 768px) {
  .floating-cta {
    bottom: 16px;
    right: 12px;
  }
  .floating-cta__btn {
    padding: 12px 16px;
    font-size: 12px;
  }
}

/* Cookieバナー */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(60, 60, 60, 0.97);
  color: white;
  padding: 16px var(--spacing-md);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner--visible {
  transform: translateY(0);
}

.cookie-banner__text {
  font-size: 13px;
  line-height: 1.6;
  flex: 1;
}

.cookie-banner__text a {
  color: var(--primary-purple);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}

.cookie-banner__btn--accept {
  background: var(--primary-pink);
  color: white;
}

.cookie-banner__btn--decline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.4);
}

.cookie-banner__btn:hover {
  opacity: 0.85;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ============================================================
   R5-I 権威性バッジ / 選ばれる理由セクション
   ============================================================ */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
  justify-content: center;
  margin: 0 auto;
  max-width: 720px;
}

.badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
  min-width: 132px;
}

.badge__en {
  font-family: var(--font-serif-en);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}

.badge__jp {
  font-family: var(--font-serif-jp);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink);
  font-weight: var(--font-weight-h3);
  margin-top: 4px;
}

.badge--supervised {
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.7);
}

.badge--supervised .badge__jp {
  font-size: 14px;
  letter-spacing: 0.12em;
}

.why-us {
  background-color: #fbe8eb;
}

.why-us__lead {
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.9;
  text-align: center;
  color: var(--text-gray);
}

.why-us__note {
  max-width: 720px;
  margin: 24px auto 0;
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
  color: var(--text-gray);
}

.page-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.page-hero__badges .badge {
  background: rgba(255, 255, 255, 0.85);
  min-width: 120px;
  padding: 8px 14px;
}

@media (max-width: 768px) {
  .badge {
    padding: 8px 12px;
    min-width: 112px;
  }
  .badge__en { font-size: 9px; }
  .badge__jp { font-size: 12px; }
  .badge--supervised { padding: 10px 14px; }
  .badge--supervised .badge__jp { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .badge { transition: none; }
}
