/* ===========================
   AVANTIS - 小顔・美容整体 LP
   CSS Styles
=========================== */

/* ---- リセット & ベース ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #C9A96E;
  --gold-light: #E8D5B0;
  --gold-dark:  #A07840;
  --black:      #1A1A1A;
  --dark:       #2A2A2A;
  --gray:       #6B6B6B;
  --gray-light: #F5F3EF;
  --white:      #FFFFFF;
  --cream:      #FAF8F4;
  --line-green: #06C755;
  --font-serif: 'Noto Serif JP', serif;
  --font-sans:  'Noto Sans JP', sans-serif;
  --font-en:    'Cormorant Garamond', serif;
  --radius:     12px;
  --shadow:     0 8px 40px rgba(0,0,0,0.10);
  --shadow-sm:  0 2px 16px rgba(0,0,0,0.07);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ---- セクション共通 ---- */
section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-family: var(--font-en);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 16px;
}

.section-title.left { text-align: left; }

.section-desc {
  color: var(--gray);
  font-size: 0.9rem;
}

/* ---- ボタン ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.05em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,169,110,0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-dark), #8a6030);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-line {
  background: var(--line-green);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  transition: var(--transition);
}
.btn-line:hover { background: #05a847; transform: translateY(-2px); }

.btn-large { padding: 18px 48px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---- アニメーション ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- ヘッダー ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 5%;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-en {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--black);
}
.logo-ja {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-size: 0.85rem;
  color: var(--dark);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.nav a:hover { color: var(--gold); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem !important;
}
.nav-cta:hover { opacity: 0.85; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  padding: 16px 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  padding: 14px 5%;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--gray-light);
  color: var(--dark);
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white) !important;
  text-align: center;
  border-radius: 8px;
  margin: 8px 5%;
  border-bottom: none !important;
}

/* ---- ヒーロー ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #111;
}

/* グラデーションオーバーレイ（下側を暗く、上部は透明に近い） */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.20) 0%,
    rgba(0,0,0,0.30) 40%,
    rgba(0,0,0,0.60) 100%
  );
  z-index: 1;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(201,169,110,0.06);
  animation: float 8s ease-in-out infinite;
}
.shape1 { width: 500px; height: 500px; top: -100px; right: -100px; animation-delay: 0s; }
.shape2 { width: 300px; height: 300px; bottom: 50px; left: -50px; animation-delay: 3s; }
.shape3 { width: 200px; height: 200px; top: 50%; left: 30%; animation-delay: 5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.03); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 28px 80px;
  max-width: 760px;
  width: 100%;
}

.hero-sub {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: #f5e0b0;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  transition-delay: 0.1s;
  display: inline-block;
  background: none;
  padding: 0;
  border-radius: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.7);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6.5vw, 3.8rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 28px;
  transition-delay: 0.2s;
  text-shadow:
    0 2px 12px rgba(0,0,0,0.8),
    0 4px 30px rgba(0,0,0,0.6),
    2px 2px 0 rgba(0,0,0,0.3);
  -webkit-text-stroke: 0px;
}
.hero-title .title-line {
  display: block;
  background: none;
  padding: 0;
  border-radius: 0;
  margin-bottom: 0;
}
.hero-title .accent {
  color: #f8cc6a;
  display: block;
  background: none;
  padding: 0;
  border-radius: 0;
  margin-bottom: 0;
  text-shadow:
    0 2px 12px rgba(0,0,0,0.8),
    0 0 30px rgba(201,169,110,0.4);
}

.hero-desc {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  color: rgba(255,255,255,0.95);
  margin-bottom: 40px;
  line-height: 2;
  transition-delay: 0.3s;
  display: inline-block;
  background: none;
  padding: 0;
  border-radius: 0;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.7);
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  transition-delay: 0.4s;
}
.hero-btns .btn-outline { color: var(--gold-light); border-color: var(--gold-light); }
.hero-btns .btn-outline:hover { background: var(--gold-light); color: var(--dark); }

.hero-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  transition-delay: 0.5s;
}
.badge {
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(201,169,110,0.6);
  color: #f0e0c0;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.5), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ---- 悩みセクション ---- */
.worries { background: var(--cream); }

.worries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.worry-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0 0 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,169,110,0.12);
  transition: var(--transition);
  overflow: hidden;
}
.worry-item > p {
  padding: 0 16px;
}
.worry-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}

.worry-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #fdf6ec, #f5e8cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold-dark);
  transition: var(--transition);
}
.worry-icon svg {
  width: 38px;
  height: 38px;
}
.worry-item:hover .worry-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
}

.worry-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 16px;
}
.worry-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}
.worry-item:hover .worry-img-wrap img {
  transform: scale(1.07);
}

.worry-item p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
}
.worry-item strong { color: var(--dark); font-weight: 600; }

.worries-message {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius);
  padding: 28px 40px;
  text-align: center;
}
.worries-message p {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 400;
}
.accent-text {
  background: rgba(255,255,255,0.2);
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 500;
}

/* ---- ABOUTセクション ---- */
.about { background: var(--white); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-box {
  position: relative;
  padding-bottom: 24px;
  padding-right: 24px;
}

.img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--gold-light), #e8d0a0);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold-dark);
  font-size: 3rem;
}
.img-placeholder span {
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-family: var(--font-serif);
  letter-spacing: 0.1em;
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
  height: 80%;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.4;
}

.reasons { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }

.reason-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.reason-num {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  min-width: 48px;
  padding-top: 4px;
}

.reason-body h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 6px;
}
.reason-body p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.9;
}

/* ---- 結果セクション ---- */
.results { background: var(--gray-light); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.result-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0 0 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}
.result-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.result-photo-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  margin-bottom: 0;
}
.result-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s ease;
}
.result-card:hover .result-photo-wrap img {
  transform: scale(1.05);
}

.result-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -28px auto 16px;
  font-size: 1.2rem;
  color: var(--white);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.result-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--black);
  line-height: 1.5;
  padding: 0 16px;
}
.result-card p { font-size: 0.82rem; color: var(--gray); line-height: 1.8; padding: 0 16px; }

.stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, var(--black), var(--dark));
  border-radius: var(--radius);
  padding: 40px 0;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-num {
  font-family: var(--font-en);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-num small { font-size: 0.5em; }

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
}

/* ---- メニュー ---- */
.menu { background: var(--cream); }

.menu-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,169,110,0.15);
  position: relative;
  transition: var(--transition);
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.menu-card.featured {
  border: 2px solid var(--gold);
  transform: scale(1.03);
}
.menu-card.featured:hover { transform: scale(1.03) translateY(-6px); }

.menu-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 0.75rem;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.menu-card.featured2 {
  border: 2px solid var(--gold-dark);
}
.menu-card.featured2:hover { transform: translateY(-6px); }
.menu-card.featured2 .menu-badge { background: linear-gradient(135deg, #c8860a, #a06010); }

.price-off {
  background: #e53935;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.03em;
}

.menu-card-header h3 small {
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 400;
}
.menu-card-header h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 16px;
}

.menu-price { display: flex; align-items: flex-end; gap: 6px; flex-wrap: wrap; }
.price-original {
  font-size: 0.78rem;
  color: var(--gray);
  text-decoration: line-through;
  display: block;
  width: 100%;
}
.price-main {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold-dark);
  line-height: 1;
}
.price-tax { font-size: 0.75rem; color: var(--gray); }

.menu-list {
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.menu-list li {
  font-size: 0.85rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu-list li i { color: var(--gold); font-size: 0.75rem; }

.menu-note {
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 20px;
}

/* ---- お客様の声 ---- */
.voice { background: var(--white); }

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

.voice-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(201,169,110,0.15);
  transition: var(--transition);
}
.voice-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.voice-stars {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.voice-text {
  font-size: 0.88rem;
  color: var(--dark);
  line-height: 2;
  margin-bottom: 20px;
  font-style: italic;
}

.voice-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.voice-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-light), #e0c8a0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
}

.voice-info { display: flex; flex-direction: column; gap: 2px; }
.voice-name { font-size: 0.88rem; font-weight: 500; color: var(--black); }
.voice-age { font-size: 0.78rem; color: var(--gray); }

/* ---- 流れセクション ---- */
.flow { background: var(--gray-light); }

.flow-steps {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.flow-step {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.flow-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.flow-num {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 12px;
}

.flow-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.2rem;
  color: var(--white);
}

.flow-step h3 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--black);
}
.flow-step p { font-size: 0.8rem; color: var(--gray); line-height: 1.9; }

.flow-arrow {
  color: var(--gold-light);
  font-size: 1.2rem;
  padding-top: 80px;
  flex-shrink: 0;
}

/* ---- FAQ ---- */
.faq { background: var(--white); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--gold); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark);
  gap: 16px;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--cream); }
.faq-q i {
  color: var(--gold);
  font-size: 0.85rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-q i { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-a.open { max-height: 300px; padding: 0 24px 20px; }
.faq-a p { font-size: 0.85rem; color: var(--gray); line-height: 2; }

/* ---- CTAバナー ---- */
.cta-banner {
  background: linear-gradient(135deg, #1a1208, #2e1f0e, #1a1208);
  padding: 80px 0;
}

.cta-banner-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-banner-sub {
  font-family: var(--font-en);
  font-style: italic;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.cta-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.6;
}
.cta-banner-title span { color: var(--gold-light); }
.cta-banner-title strong { color: var(--gold); font-weight: 500; }

.cta-banner-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.cta-banner-note {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  margin-top: 16px;
}

/* ---- コンタクト ---- */
.contact { background: var(--cream); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-item > i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-item h4 {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  font-weight: 500;
}
.contact-info-item p {
  font-size: 0.88rem;
  color: var(--dark);
  line-height: 1.8;
}
.contact-info-item a { color: var(--dark); }
.contact-info-item a:hover { color: var(--gold); }

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

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  color: var(--dark);
  margin-bottom: 6px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.required {
  color: #e05555;
  font-size: 0.8em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E0DCD6;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; }

.form-privacy {
  font-size: 0.75rem;
  color: var(--gray);
  text-align: center;
  margin-top: 12px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: #f0faf4;
  border: 1px solid #a8d5b5;
  border-radius: 8px;
  margin-top: 16px;
  color: #2d7a50;
  gap: 12px;
}
.form-success.show {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form-success i { font-size: 2rem; }
.form-success p { font-size: 0.88rem; line-height: 1.8; }

/* ---- フッター ---- */
.footer {
  background: var(--black);
  padding: 60px 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 40px;
  flex-wrap: wrap;
}

.footer .logo-en { color: var(--white); }
.footer .logo-ja { color: var(--gold); }

.footer-tagline {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-top: 12px;
  font-family: var(--font-serif);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  max-width: 400px;
}
.footer-nav a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
}

/* ---- 固定CTAボタン ---- */
.fixed-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}
.fixed-cta.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.fixed-cta .btn {
  box-shadow: 0 8px 32px rgba(201,169,110,0.5);
  font-size: 0.82rem;
  padding: 12px 20px;
  white-space: nowrap;
}

/* ---- 店舗情報 ---- */
.contact-stores {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.contact-store-item {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
}
.contact-store-item h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 8px;
}
.contact-store-item h4 i {
  color: var(--gold);
  margin-right: 6px;
}
.contact-store-item p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 2px;
}
.contact-store-item p i {
  color: var(--gold);
  margin-right: 6px;
  width: 14px;
}
.contact-store-item a {
  color: var(--gold-dark);
  font-weight: 500;
}

/* ---- メニューボタン2つ ---- */
.menu-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ---- CTAバナーボタン2つ ---- */
.cta-banner-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

/* ---- ヒーローボタン2つ ---- */
.hero-btns-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 40px;
}

/* ---- ヒーロー 画像スライダー ---- */
.hero-img-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transition: opacity 1.5s ease;
  filter: brightness(1.05) saturate(1.05);
}
.hero-slide.active { opacity: 1; }

/* ---- Aboutセクション 実際の写真 ---- */
.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  display: block;
}

/* ---- 代表・技術開発者セクション ---- */
.founder {
  background: var(--white);
  padding: 100px 0;
}

.founder-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.founder-message {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 2.1;
  margin: 20px 0 28px;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  font-style: italic;
}

.founder-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.founder-name-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.founder-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
}
.founder-title {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.founder-certs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.founder-certs li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--dark);
}
.founder-certs li i {
  color: var(--gold);
  font-size: 0.8rem;
}

.founder-img-box {
  position: relative;
  padding-bottom: 24px;
  padding-left: 24px;
}
.founder-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  display: block;
  box-shadow: var(--shadow);
}
.founder-img-box::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80%;
  height: 80%;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  opacity: 0.4;
  z-index: -1;
}

/* ---- フローセクション 実際の写真 ---- */
.flow-photo-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #f5f3ef;
}
.flow-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #f5f3ef;
  display: block;
  transition: transform 0.5s ease;
}
.flow-step:hover .flow-photo { transform: scale(1.04); }

/* ---- レスポンシブ ---- */
@media (max-width: 1024px) {
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { gap: 48px; }
}

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

  .nav { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-badges { gap: 8px; }

  .worries-grid { grid-template-columns: repeat(2, 1fr); }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-image { display: none; }

  .founder-inner { grid-template-columns: 1fr; gap: 40px; }
  .founder-image { order: -1; }
  .founder-img-box { padding-left: 0; padding-bottom: 16px; }
  .founder-photo { aspect-ratio: 4/3; object-position: center top; }

  .flow-photo-wrap { aspect-ratio: 4/3; }

  .results-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-row { flex-wrap: wrap; gap: 24px; padding: 32px 20px; }
  .stat-divider { display: none; }
  .stat-item { flex: 1 1 40%; }

  .menu-cards { grid-template-columns: repeat(2, 1fr); }
  .menu-card.featured { transform: none; }
  .menu-card.featured:hover { transform: translateY(-6px); }

  .voice-cards { grid-template-columns: 1fr; }

  .flow-steps {
    flex-direction: column;
    gap: 16px;
  }
  .flow-arrow { display: none; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px 20px; }

  .footer-inner { flex-direction: column; }
  .footer-nav { max-width: 100%; }

  .fixed-cta { bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .worries-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .result-photo-wrap { height: 160px; }
  .hero-badges .badge { font-size: 0.75rem; padding: 6px 12px; }
  .flow-photo-wrap { aspect-ratio: 4/3; }
}

/* ---- WORRY ラベル拡大 ---- */
.worry-label {
  font-size: 2rem !important;
  letter-spacing: 0.3em;
  font-weight: 700;
  margin-bottom: 8px;
}

/* ---- Google 口コミバッジ (セクションヘッダー) ---- */
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50px;
  padding: 10px 24px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.google-logo {
  height: 18px;
  object-fit: contain;
}
.google-rating-badge .google-rating-stars {
  color: #fbbc04;
  font-size: 0.95rem;
  letter-spacing: 2px;
}
.google-rating-num {
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
}
.google-rating-label {
  font-size: 0.78rem;
  color: #666;
}

/* ---- voice-card-top (星 + Googleバッジ横並び) ---- */
.voice-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.voice-card-top .voice-stars {
  margin-bottom: 0;
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #4285f4;
  color: #fff;
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
}
.google-badge i { font-size: 0.75rem; }

/* ---- イニシャルアバター ---- */
.voice-avatar-initial {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--gold-light), #e0c8a0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 700;
}

/* ---- お客様の声 5列→スクロール対応 ---- */
.voice-cards {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .voice-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .voice-cards { grid-template-columns: 1fr; }
}

/* ---- メニュー カード外 予約ボタン ---- */
.menu-reserve-btns {
  margin-top: 40px;
  text-align: center;
}
.menu-reserve-label {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold-dark);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.menu-btns-wrap {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- CTAバナー メニューリスト ---- */
.cta-menu-list {
  list-style: none;
  padding: 0;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
  margin: 16px 0 24px;
}
.cta-menu-list li {
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cta-menu-list li i { color: var(--gold-light); font-size: 0.75rem; }

/* ---- 代表 ROCスタッフ注記 ---- */
.founder-roc-note {
  margin-top: 20px;
  padding: 14px 20px;
  background: rgba(201,169,110,0.1);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-size: 0.88rem;
  color: var(--dark);
  line-height: 1.8;
}

/* ---- 出版記念説明ブロック ---- */
.publish-intro {
  background: linear-gradient(135deg, #2a1f0e 0%, #3d2d12 100%);
  border-top: 1px solid rgba(201,169,110,0.3);
  border-bottom: 1px solid rgba(201,169,110,0.3);
  padding: 64px 0;
}
.publish-intro-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.publish-intro-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 500;
  color: #f5e0b0;
  line-height: 1.9;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.publish-intro-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 2.2;
}

/* ---- メニュー：1枚中央表示 ---- */
.menu-single-center {
  display: flex !important;
  justify-content: center;
  grid-template-columns: none !important;
}
.menu-card-main {
  max-width: 480px;
  width: 100%;
}

/* ---- メニューアピール文 ---- */
.menu-appeal {
  max-width: 600px;
  margin: 36px auto 0;
  text-align: center;
  background: rgba(201,169,110,0.07);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: var(--radius);
  padding: 28px 36px;
  line-height: 2;
  font-size: 0.93rem;
  color: var(--dark);
}
.menu-appeal strong {
  color: var(--gold-dark);
}

/* ---- CTAバナー 価格タイトル調整 ---- */
.cta-banner-title {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  margin-bottom: 4px;
}
.cta-price-tax {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.85;
  margin-left: 4px;
}

/* ---- hero-subdesc（価格補足） ---- */
.hero-subdesc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.45);
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  margin-top: -8px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.hero-subdesc strong {
  color: #f8cc6a;
  font-size: 1.05rem;
}

/* ---- 固定CTAボタン：スマホで小さく ---- */
@media (max-width: 768px) {
  .fixed-cta .btn {
    font-size: 0.72rem;
    padding: 10px 14px;
    max-width: 160px;
    text-align: center;
    white-space: normal;
    line-height: 1.4;
  }
  .fixed-cta {
    gap: 6px;
    bottom: 12px;
    right: 10px;
  }
}

/* ---- ビフォーアフターセクション ---- */
.beforeafter {
  background: var(--gray-light);
  padding: 80px 0;
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 16px;
}
.ba-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.ba-img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.ba-caption {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray);
  padding: 8px 12px 12px;
  margin: 0;
}
.ba-disclaimer {
  text-align: center;
  margin: 4px 0 48px;
}
.ba-disclaimer p {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.9;
}
.ba-treatment {
  margin-top: 16px;
}
.ba-treatment-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
  color: var(--gold-dark);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.ba-treatment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ba-treatment-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.ba-treatment-img {
  width: 100%;
  height: auto;
  display: block;
}


@media (max-width: 600px) {
  .ba-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ba-treatment-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
