/* ============================================================
   HEB GYM 塚口店 LP
   Pinterest風 ミニマル — オフホワイト × ベージュ × くすみグリーン
   ============================================================ */

:root {
  /* ── Color palette ── */
  --off-white:   #faf8f5;       /* ページ背景 */
  --cream:       #f4efe8;       /* セクション交互背景 */
  --beige:       #e8ddd0;       /* ボーダー・薄装飾 */
  --beige-mid:   #d4c5b0;       /* アクセントライン */
  --warm-gray:   #8a7e72;       /* サブテキスト */
  --taupe:       #5c5045;       /* 本文 */
  --dark:        #2a2420;       /* 見出し */

  --sage:        #7a9275;       /* プライマリーグリーン */
  --sage-deep:   #5e7459;
  --sage-light:  #a9be9f;
  --sage-pale:   #edf2eb;

  --line-green:  #06c755;
  --line-dark:   #00b900;

  /* ── Typography ── */
  --font-jp:     'Noto Sans JP', sans-serif;
  --font-serif:  'Cormorant Garamond', 'Times New Roman', serif;
  --font-en:     'DM Sans', sans-serif;

  /* ── Spacing & shape ── */
  --r-sm:   4px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-full: 999px;

  --shadow-xs: 0 1px 6px rgba(60,40,20,.06);
  --shadow-sm: 0 3px 16px rgba(60,40,20,.08);
  --shadow-md: 0 8px 32px rgba(60,40,20,.12);

  --ease: all .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-jp);
  color: var(--taupe);
  background: var(--off-white);
  line-height: 1.8;
  overflow-x: hidden;
}
a  { color: inherit; text-decoration: none; transition: var(--ease); }
a:hover { opacity: .78; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-jp); }
input,textarea,select { font-family: var(--font-jp); }
ul { list-style: none; }

/* ── Layout ── */
.container    { max-width: 1060px; margin: 0 auto; padding: 0 24px; }
.section-pad  { padding: 100px 0; }
.bg-cream     { background: var(--cream); }
.bg-sage-pale { background: var(--sage-pale); }
.text-center  { text-align: center; }
.text-sage    { color: var(--sage); }

/* ── Type helpers ── */
.eyebrow {
  display: block;
  font-family: var(--font-en);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}
.eyebrow--light { color: rgba(255,255,255,.6); }

.heading-serif {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: .01em;
}

.heading-center {
  font-size: clamp(1.3rem, 2.8vw, 1.85rem);
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 56px;
  color: var(--dark);
}
.heading-center--white { color: #fff; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage);
  color: #fff;
  padding: 15px 34px;
  border-radius: var(--r-full);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .03em;
  box-shadow: 0 4px 20px rgba(94,116,89,.28);
  transition: var(--ease);
  justify-content: center;
}
.btn-primary:hover { background: var(--sage-deep); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(94,116,89,.38); opacity: 1; }
.btn-large { padding: 17px 42px; font-size: 1.02rem; }
.btn-full  { width: 100%; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--sage);
  color: var(--sage-deep);
  padding: 11px 26px;
  border-radius: var(--r-full);
  font-size: .86rem;
  font-weight: 600;
  transition: var(--ease);
}
.btn-outline:hover { background: var(--sage-pale); opacity: 1; }
.btn-outline--dark { border-color: var(--taupe); color: var(--taupe); }
.btn-outline--dark:hover { background: var(--cream); opacity: 1; }

.btn-line-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--line-green);
  color: #fff;
  padding: 17px 38px;
  border-radius: var(--r-full);
  font-size: 1.02rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(6,199,85,.3);
  transition: var(--ease);
  justify-content: center;
}
.btn-line-large:hover { background: var(--line-dark); transform: translateY(-2px); opacity: 1; }
.btn-line-large i { font-size: 1.3rem; }

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Hero fade-in ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .85s ease forwards;
}
.fade-in:nth-child(1) { animation-delay: .1s; }
.fade-in:nth-child(2) { animation-delay: .28s; }
.fade-in:nth-child(3) { animation-delay: .46s; }
.fade-in:nth-child(4) { animation-delay: .62s; }
.fade-in:nth-child(5) { animation-delay: .78s; }
.fade-in:nth-child(6) { animation-delay: .94s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   STICKY CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(250,248,245,.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--beige);
  box-shadow: 0 -4px 20px rgba(60,40,20,.08);
  transform: translateY(100%);
  transition: transform .4s ease;
}
.sticky-cta.visible { transform: translateY(0); }

.sticky-cta__main {
  flex: 3;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  background: var(--sage); color: #fff;
  padding: 12px 10px; border-radius: var(--r-full);
  font-size: .87rem; font-weight: 700;
  box-shadow: 0 2px 12px rgba(94,116,89,.25);
  transition: var(--ease);
}
.sticky-cta__main:hover { background: var(--sage-deep); opacity: 1; }

.sticky-cta__line {
  flex: 1.2;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  background: var(--line-green); color: #fff;
  padding: 12px 8px; border-radius: var(--r-full);
  font-size: .84rem; font-weight: 700;
  transition: var(--ease);
}
.sticky-cta__line:hover { background: var(--line-dark); opacity: 1; }
.sticky-cta__line i { font-size: 1.1rem; }

.sticky-cta__tel {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  background: #fff; color: var(--taupe);
  padding: 12px 8px; border-radius: var(--r-full);
  font-size: .8rem; font-weight: 600;
  border: 1.5px solid var(--beige);
  transition: var(--ease);
}
.sticky-cta__tel:hover { background: var(--cream); opacity: 1; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(250,248,245,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: var(--ease);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 28px;
  max-width: 1060px; margin: 0 auto;
  gap: 24px;
}
.header__logo { height: 36px; width: auto; }
.header__nav {
  display: flex; gap: 28px;
}
.header__nav a {
  font-family: var(--font-en);
  font-size: .73rem; font-weight: 500;
  letter-spacing: .14em; text-transform: lowercase;
  color: var(--warm-gray);
  transition: var(--ease);
}
.header__nav a:hover { color: var(--sage-deep); opacity: 1; }
.header__cta {
  background: var(--sage); color: #fff;
  padding: 9px 22px; border-radius: var(--r-full);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .03em;
  box-shadow: 0 2px 12px rgba(94,116,89,.25);
  white-space: nowrap;
  transition: var(--ease);
}
.header__cta:hover { background: var(--sage-deep); transform: translateY(-1px); opacity: 1; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  padding-top: 60px;
}
.hero__media { position: absolute; inset: 0; }
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 55% center;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,16,12,.88) 0%,
    rgba(20,16,12,.45) 45%,
    rgba(20,16,12,.1)  100%
  );
}
.hero__body {
  position: relative; z-index: 1;
  width: 100%; max-width: 1060px;
  margin: 0 auto;
  padding: 0 28px 80px;
  color: #fff;
}
.hero__en {
  font-family: var(--font-en);
  font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
  opacity: .6; margin-bottom: 14px;
}
.hero__title {
  font-family: var(--font-jp);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero__title-line1 {
  display: block;
  font-size: clamp(2.2rem, 6vw, 4rem);
  letter-spacing: .04em;
}
.hero__title-line2 {
  display: block;
  font-size: clamp(2.4rem, 6.5vw, 4.4rem);
  letter-spacing: .03em;
  color: var(--sage-light);
}
.hero__sub {
  font-size: clamp(.9rem, 2vw, 1.05rem);
  opacity: .85; line-height: 1.9;
  margin-bottom: 26px; max-width: 520px;
}
.hero__sub em { color: #c8ddb8; font-style: normal; font-weight: 700; }

.hero__pills {
  display: flex; flex-wrap: wrap; gap: 7px;
  margin-bottom: 32px;
}
.hero__pills span {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff; padding: 4px 14px;
  border-radius: var(--r-full);
  font-size: .74rem; letter-spacing: .04em;
  backdrop-filter: blur(6px);
}

.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }

.btn-hero-main {
  display: inline-flex; flex-direction: column; align-items: center; gap: 3px;
  background: #fff; color: var(--sage-deep);
  padding: 16px 34px; border-radius: var(--r-full);
  font-size: .97rem; font-weight: 800;
  box-shadow: 0 6px 28px rgba(0,0,0,.22);
  transition: var(--ease);
}
.btn-hero-main:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,0,0,.3); opacity: 1; }
.btn-hero-main small { font-size: .7rem; font-weight: 400; opacity: .6; margin-top: 1px; }
.btn-hero-main i { margin-right: 4px; color: var(--sage); }

.btn-hero-line {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--line-green); color: #fff;
  padding: 16px 28px; border-radius: var(--r-full);
  font-size: .95rem; font-weight: 700;
  box-shadow: 0 4px 18px rgba(6,199,85,.38);
  transition: var(--ease);
}
.btn-hero-line:hover { background: var(--line-dark); transform: translateY(-2px); opacity: 1; }
.btn-hero-line i { font-size: 1.25rem; }

.hero__caption { font-size: .72rem; opacity: .45; letter-spacing: .05em; }

.hero__scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.4);
}
.hero__scroll-line {
  display: block; width: 1px; height: 38px;
  background: rgba(255,255,255,.35);
  animation: scrollLine 1.6s ease-in-out infinite;
}
.hero__scroll-text { font-family: var(--font-en); font-size: .58rem; letter-spacing: .22em; }
@keyframes scrollLine {
  0%,100% { opacity: .35; transform: scaleY(1) translateY(0); }
  50% { opacity: .8; transform: scaleY(1) translateY(4px); }
}

/* ============================================================
   CONCEPT
   ============================================================ */
.concept__wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.concept__img { position: relative; }
.concept__img img {
  width: 100%; height: 560px;
  object-fit: cover;
  border-radius: var(--r-lg);
}
.concept__img-deco {
  position: absolute;
  bottom: -18px; right: -18px;
  width: 55%; height: 55%;
  border: 1.5px solid var(--beige-mid);
  border-radius: var(--r-lg);
  z-index: -1;
  pointer-events: none;
}
.concept__text { padding: 12px 0; }
.concept__lead {
  font-size: .97rem; font-weight: 500;
  line-height: 1.9; margin-bottom: 14px;
}
.concept__lead strong { color: var(--sage-deep); font-weight: 700; }
.concept__body {
  font-size: .88rem; color: var(--warm-gray);
  line-height: 1.9; margin-bottom: 30px;
}

/* ============================================================
   PAIN POINTS
   ============================================================ */
.pain__grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 18px; margin-bottom: 36px;
}
.pain__card {
  background: #fff; border-radius: var(--r-md);
  padding: 28px 20px; text-align: center;
  box-shadow: var(--shadow-xs);
  border-top: 2px solid var(--beige);
  transition: var(--ease);
}
.pain__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-top-color: var(--sage-light); }
.pain__icon-wrap {
  width: 50px; height: 50px;
  background: var(--sage-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.2rem; color: var(--sage);
}
.pain__card p { font-size: .86rem; line-height: 1.65; }
.pain__card strong { color: var(--sage-deep); font-weight: 700; }

.pain__resolve {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #fff; border: 1.5px solid var(--sage-light);
  border-radius: var(--r-md); padding: 18px 32px;
}
.pain__resolve i { color: var(--sage); font-size: 1.25rem; }
.pain__resolve p { font-weight: 700; font-size: .97rem; color: var(--sage-deep); }

/* ============================================================
   FEATURES
   ============================================================ */
.features__grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 28px;
}
.feature-item {
  background: #fff; border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-xs);
  transition: var(--ease);
}
.feature-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-item__img { position: relative; overflow: hidden; }
.feature-item__img img {
  width: 100%; height: 270px;
  object-fit: cover;
  transition: transform .65s ease;
}
.feature-item:hover .feature-item__img img { transform: scale(1.04); }
.feature-item__num {
  position: absolute; top: 14px; left: 16px;
  font-family: var(--font-en);
  font-size: 3rem; font-weight: 700;
  color: rgba(255,255,255,.45); line-height: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.feature-item__body { padding: 24px 26px 28px; }
.feature-item__body h3 {
  font-size: 1.03rem; font-weight: 800;
  margin-bottom: 10px; color: var(--dark);
  line-height: 1.45;
  display: flex; align-items: center; gap: 8px;
}
.feature-item__body h3::before {
  content: '';
  display: inline-block;
  width: 3px; height: 1.1em;
  background: var(--sage-light); border-radius: 2px;
  flex-shrink: 0;
}
.feature-item__body p { font-size: .85rem; color: var(--warm-gray); line-height: 1.8; }
.feature-item__body strong { color: var(--sage-deep); font-weight: 700; }

/* ============================================================
   SERVICE
   ============================================================ */
.service__grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 22px;
}
.service-card {
  background: #fff; border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--shadow-xs);
  transition: var(--ease);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service-card__photo { overflow: hidden; }
.service-card__photo img {
  width: 100%; height: 210px;
  object-fit: cover;
  transition: transform .55s ease;
}
.service-card:hover .service-card__photo img { transform: scale(1.05); }
.service-card__body { padding: 22px 24px; }
.service-card__no {
  font-family: var(--font-en);
  font-size: .65rem; font-weight: 600;
  letter-spacing: .18em; color: var(--sage);
  display: block; margin-bottom: 7px;
}
.service-card__body h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; color: var(--dark); }
.service-card__body p { font-size: .83rem; color: var(--warm-gray); line-height: 1.75; margin-bottom: 12px; }
.service-card__tag-list { display: flex; flex-wrap: wrap; gap: 5px; }
.service-card__tag-list span {
  font-size: .7rem; color: var(--sage-deep);
  background: var(--sage-pale); padding: 3px 10px;
  border-radius: var(--r-full); font-weight: 500;
}
.service__more { text-align: center; margin-top: 44px; }

/* ============================================================
   FLOW
   ============================================================ */
.flow__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 14px; align-items: start;
  margin-bottom: 48px;
}
.flow__step { text-align: center; }
.flow__step-circle {
  width: 44px; height: 44px;
  background: var(--sage); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.flow__step-n {
  font-family: var(--font-en);
  font-size: .72rem; font-weight: 700;
  color: #fff; letter-spacing: .05em;
}
.flow__step-img {
  width: 100%; height: 155px;
  object-fit: cover;
  border-radius: var(--r-md);
  margin-bottom: 14px;
  box-shadow: var(--shadow-xs);
}
.flow__step h3 { font-size: .93rem; font-weight: 800; margin-bottom: 6px; color: var(--dark); }
.flow__step p  { font-size: .78rem; color: var(--warm-gray); line-height: 1.65; }
.flow__arrow {
  display: flex; align-items: center; justify-content: center;
  padding-top: 86px; color: var(--beige-mid); font-size: 1.3rem;
}
.flow__cta { text-align: center; }
.flow__note { margin-top: 12px; font-size: .76rem; color: var(--warm-gray); }

/* ============================================================
   VOICES
   ============================================================ */
.voices__grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 22px;
}
.voice-card {
  background: #fff; border-radius: var(--r-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-xs);
  border-bottom: 2px solid var(--beige);
  transition: var(--ease);
}
.voice-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-bottom-color: var(--sage-light); }
.voice-card__top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.voice-card__icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--beige);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--beige-mid);
  color: var(--sage);
  font-size: 1.4rem;
}
.voice-card__stars { color: #c8a450; font-size: .82rem; margin-bottom: 3px; }
.voice-card__prof  { font-size: .76rem; color: var(--warm-gray); }
.voice-card__concern { font-size: .76rem; color: var(--sage); font-weight: 600; margin-bottom: 10px; }
.voice-card__txt {
  font-size: .84rem; color: var(--taupe);
  line-height: 1.8; margin-bottom: 12px;
}
.voice-card__result {
  font-size: .8rem; font-weight: 700;
  color: var(--sage-deep);
  display: flex; align-items: center; gap: 6px;
}
.voice-card__result i { color: var(--sage-light); }

/* ============================================================
   PRICE
   ============================================================ */
.price__tabs {
  display: flex; gap: 8px; justify-content: center;
  margin-bottom: 40px; flex-wrap: wrap;
}
.price__tab {
  padding: 10px 26px; border-radius: var(--r-full);
  font-size: .86rem; font-weight: 600;
  border: 1.5px solid var(--beige);
  color: var(--warm-gray); background: #fff;
  transition: var(--ease);
}
.price__tab:hover { border-color: var(--sage-light); color: var(--sage-deep); }
.price__tab.active { background: var(--sage); color: #fff; border-color: var(--sage); }

.price__panel { display: none; }
.price__panel.active { display: block; }

.price__label-only {
  text-align: center; font-size: .8rem; font-weight: 600;
  color: var(--sage); background: var(--sage-pale);
  padding: 8px; border-radius: var(--r-sm); margin-bottom: 20px;
}

.price__cards {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px; margin-bottom: 10px;
}
.price-card {
  background: #fff; border-radius: var(--r-md);
  padding: 28px 16px; text-align: center;
  box-shadow: var(--shadow-xs);
  border: 1.5px solid var(--beige);
  transition: var(--ease); position: relative;
}
.price-card:hover { border-color: var(--sage-light); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card--best { border-color: var(--sage); background: var(--sage-pale); }
.price-card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--sage); color: #fff;
  font-size: .66rem; font-weight: 700;
  padding: 4px 12px; border-radius: var(--r-full); white-space: nowrap;
}
.price-card__name { font-size: .82rem; color: var(--warm-gray); font-weight: 600; margin-bottom: 8px; }
.price-card__price {
  font-family: var(--font-en);
  font-size: 1.55rem; font-weight: 700;
  color: var(--dark); margin-bottom: 6px; line-height: 1.1;
}
.price-card__price small { font-size: .72rem; color: var(--warm-gray); font-weight: 400; }
.price-card__per { font-size: .76rem; color: var(--warm-gray); }
.price__note { font-size: .78rem; color: var(--warm-gray); text-align: right; margin-top: 4px; }

/* Campaign Banner */
.price__campaign {
  margin-top: 20px;
  background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
  border: 2px solid #f59e0b;
  border-radius: var(--r-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.campaign-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f59e0b;
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--r-full);
  white-space: nowrap;
  letter-spacing: .02em;
}
.price__campaign p {
  font-size: .9rem;
  color: var(--dark);
  font-weight: 600;
  margin: 0;
}
.price__campaign p s {
  color: var(--warm-gray);
  font-weight: 400;
  margin-right: 4px;
}
.price__campaign p strong {
  color: #d97706;
  font-size: 1.1rem;
}

.price__trial {
  margin-top: 56px;
  background: linear-gradient(140deg, var(--sage-deep) 0%, var(--sage) 100%);
  border-radius: var(--r-lg); padding: 52px 40px;
  text-align: center; color: #fff;
  box-shadow: 0 8px 40px rgba(94,116,89,.3);
}
.price__trial-catch { font-size: .88rem; opacity: .78; margin-bottom: 8px; }
.price__trial-price { font-size: 1.4rem; margin-bottom: 8px; }
.price__trial-price strong { font-family: var(--font-en); font-size: 3rem; font-weight: 700; }
.price__trial-desc { font-size: .84rem; opacity: .68; margin-bottom: 28px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq__list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq__item { background: #fff; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-xs); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 17px 22px; font-size: .9rem; font-weight: 600;
  color: var(--dark); text-align: left; gap: 12px; transition: var(--ease);
}
.faq__q:hover { background: var(--sage-pale); }
.faq__icon { color: var(--sage); font-size: .9rem; flex-shrink: 0; transition: transform .3s ease; }
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq__a p {
  padding: 0 22px 18px; padding-top: 14px;
  font-size: .86rem; color: var(--warm-gray); line-height: 1.85;
  border-top: 1px solid var(--beige);
}
.faq__item.open .faq__a { max-height: 320px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--dark);
  position: relative; overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(122,146,117,.15) 0%, transparent 65%);
  pointer-events: none;
}
.contact .container { position: relative; }
.contact__lead {
  text-align: center; color: rgba(255,255,255,.65);
  margin-bottom: 44px; line-height: 1.9; font-size: .9rem;
}

/* Booking Cards Grid */
.contact__booking {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 680px;
  margin: 0 auto 32px;
}
.booking-card {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 18px; border-radius: var(--r-md);
  transition: var(--ease); color: #fff; text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.booking-card:hover { transform: translateY(-3px); opacity: 1; }
.booking-card__icon {
  font-size: 1.6rem; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border-radius: 50%;
  background: rgba(255,255,255,.15);
}
.booking-card__body { flex: 1; }
.booking-card__title { font-size: .9rem; font-weight: 700; margin-bottom: 3px; }
.booking-card__sub { font-size: .74rem; opacity: .75; }
.booking-card__arrow { font-size: .8rem; opacity: .55; flex-shrink: 0; }

.booking-card--line {
  background: var(--line-green);
  box-shadow: 0 4px 18px rgba(6,199,85,.4);
}
.booking-card--line:hover { background: var(--line-dark); }
.booking-card--web {
  background: rgba(122,146,117,.85);
  border: 1px solid rgba(255,255,255,.2);
}
.booking-card--web:hover { background: var(--sage); }
.booking-card--tel {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
}
.booking-card--tel:hover { background: rgba(255,255,255,.22); }
.booking-card--official {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.8);
}
.booking-card--official:hover { background: rgba(255,255,255,.14); }

.contact__note {
  text-align: center; font-size: .78rem; color: rgba(255,255,255,.45);
  margin-top: 8px;
}

@media (max-width: 520px) {
  .contact__booking { grid-template-columns: 1fr; }
}
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: .82rem; font-weight: 600;
  color: var(--taupe); margin-bottom: 5px;
}
.badge-req {
  background: var(--sage); color: #fff;
  padding: 2px 7px; border-radius: 4px;
  font-size: .66rem; margin-left: 6px; vertical-align: middle;
}
.badge-opt {
  background: var(--beige-mid); color: #fff;
  padding: 2px 7px; border-radius: 4px;
  font-size: .66rem; margin-left: 6px; vertical-align: middle;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 15px;
  border: 1.5px solid var(--beige); border-radius: var(--r-sm);
  font-size: .91rem; color: var(--dark);
  background: var(--off-white);
  transition: var(--ease); outline: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage-light);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(122,146,117,.12);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-check {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 20px; font-size: .82rem; color: var(--warm-gray);
}
.form-check input[type="checkbox"] { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; accent-color: var(--sage); }
.link-underline { color: var(--sage); text-decoration: underline; }
.form-error { font-size: .74rem; color: #c0392b; margin-top: 4px; min-height: 16px; }

/* Side contact */
.contact__side { display: flex; flex-direction: column; gap: 12px; }
.contact-line-btn {
  display: flex; align-items: center; gap: 14px;
  background: var(--line-green); color: #fff;
  padding: 16px 18px; border-radius: var(--r-md);
  transition: var(--ease);
  box-shadow: 0 4px 18px rgba(6,199,85,.38);
}
.contact-line-btn:hover { background: var(--line-dark); transform: translateY(-2px); opacity: 1; }
.contact-line-btn__icon { font-size: 1.9rem; flex-shrink: 0; }
.contact-line-btn__label { font-size: .9rem; font-weight: 700; }
.contact-line-btn__sub { font-size: .74rem; opacity: .8; }
.contact-line-btn__arrow { margin-left: auto; font-size: .82rem; opacity: .65; }

.contact-tel-box {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-md); padding: 20px 18px; text-align: center; color: #fff;
}
.contact-tel-box__label { font-size: .78rem; opacity: .7; margin-bottom: 8px; }
.contact-tel-box__num {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  font-family: var(--font-en); font-size: 1.45rem; font-weight: 700; color: #fff;
  background: rgba(255,255,255,.1); padding: 11px;
  border-radius: var(--r-md); margin-bottom: 8px; transition: var(--ease);
}
.contact-tel-box__num:hover { background: rgba(255,255,255,.2); opacity: 1; }
.contact-tel-box__hours { font-size: .76rem; opacity: .6; line-height: 1.7; }

.contact-web-btn,
.contact-official-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 18px; border-radius: var(--r-md);
  font-size: .85rem; font-weight: 600; transition: var(--ease);
}
.contact-web-btn {
  background: rgba(255,255,255,.12); color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}
.contact-web-btn:hover { background: rgba(255,255,255,.22); opacity: 1; }
.contact-official-btn {
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.15);
}
.contact-official-btn:hover { background: rgba(255,255,255,.14); opacity: 1; }

.form-success {
  display: none; text-align: center; background: #fff;
  border-radius: var(--r-lg); padding: 52px 36px;
  max-width: 500px; margin: 36px auto 0;
  box-shadow: var(--shadow-md);
}
.form-success i { font-size: 2.8rem; color: var(--sage-light); margin-bottom: 16px; display: block; }
.form-success h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.form-success p { font-size: .86rem; color: var(--warm-gray); line-height: 1.8; margin-bottom: 20px; }
.btn-line-sm {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--line-green); color: #fff;
  padding: 10px 24px; border-radius: var(--r-full);
  font-size: .86rem; font-weight: 700; transition: var(--ease);
}
.btn-line-sm:hover { background: var(--line-dark); opacity: 1; }

/* ============================================================
   ACCESS
   ============================================================ */
.access__wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 52px; align-items: start; }
.access__title { font-size: 1.08rem; font-weight: 800; color: var(--sage-deep); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1.5px solid var(--beige); }
.access__list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.access__list li { display: flex; align-items: flex-start; gap: 12px; font-size: .85rem; line-height: 1.7; }
.access__list li i { color: var(--sage); margin-top: 3px; width: 15px; flex-shrink: 0; }
.access__list li a { color: var(--sage-deep); text-decoration: underline; }
.access__list li span { font-size: .78rem; color: var(--warm-gray); }
.access__btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-map-link,.btn-line-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; border-radius: var(--r-full);
  font-size: .82rem; font-weight: 600; transition: var(--ease);
}
.btn-map-link { background: var(--sage); color: #fff; box-shadow: var(--shadow-xs); }
.btn-map-link:hover { background: var(--sage-deep); transform: translateY(-2px); opacity: 1; }
.btn-line-link { background: var(--line-green); color: #fff; }
.btn-line-link:hover { background: var(--line-dark); transform: translateY(-2px); opacity: 1; }

/* ============================================================
   FOOTER CTA
   ============================================================ */
.footer-cta {
  background: var(--cream);
  border-top: 1px solid var(--beige);
  padding: 96px 24px; text-align: center;
}
.footer-cta__en { font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; color: var(--sage); margin-bottom: 10px; opacity: .85; }
.footer-cta__title { font-size: clamp(1.55rem, 3.8vw, 2.3rem); font-weight: 900; margin-bottom: 14px; color: var(--dark); }
.footer-cta__text { font-size: .9rem; color: var(--warm-gray); margin-bottom: 36px; line-height: 1.85; }
.footer-cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white-rose {
  background: var(--dark); color: #fff;
  box-shadow: 0 4px 20px rgba(42,36,32,.25);
}
.btn-white-rose:hover { background: var(--taupe); opacity: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,.65); padding: 52px 0 24px; }
.footer__inner { display: grid; grid-template-columns: 2fr 2fr 1fr; gap: 40px; margin-bottom: 32px; align-items: start; }
.footer__logo { height: 32px; filter: brightness(0) invert(1); margin-bottom: 8px; opacity: .85; }
.footer__tagline { font-size: .8rem; opacity: .45; font-style: italic; font-family: var(--font-serif); }
.footer__info { display: flex; flex-direction: column; gap: 8px; }
.footer__info p { font-size: .8rem; display: flex; align-items: flex-start; gap: 8px; }
.footer__info i { color: var(--sage-light); width: 14px; margin-top: 2px; }
.footer__info a { color: rgba(255,255,255,.65); }
.footer__info a:hover { color: #fff; opacity: 1; }
.footer__sns { display: flex; gap: 10px; justify-content: flex-end; }
.footer__sns a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: #fff;
  font-size: .92rem; transition: var(--ease);
}
.footer__sns-line { background: rgba(6,199,85,.2) !important; }
.footer__sns-line:hover { background: var(--line-green) !important; opacity: 1; }
.footer__sns a:hover { background: var(--sage) !important; opacity: 1; }
.footer__copy { text-align: center; font-size: .7rem; opacity: .3; border-top: 1px solid rgba(255,255,255,.07); padding-top: 20px; }

/* ============================================================
   RESPONSIVE — Tablet ≤ 900px
   ============================================================ */
@media (max-width: 900px) {
  .section-pad { padding: 68px 0; }
  .header__nav { display: none; }
  .concept__wrap { grid-template-columns: 1fr; gap: 36px; }
  .concept__img img { height: 380px; }
  .concept__img-deco { display: none; }
  .pain__grid { grid-template-columns: repeat(2,1fr); }
  .features__grid { grid-template-columns: 1fr 1fr; }
  .service__grid { grid-template-columns: 1fr 1fr; }
  .flow__row { grid-template-columns: 1fr 1fr; gap: 22px; }
  .flow__arrow { display: none; }
  .voices__grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .price__cards { grid-template-columns: repeat(2,1fr); }
  .contact__wrap { grid-template-columns: 1fr; }
  .access__wrap { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__sns { grid-column: 1/-1; justify-content: flex-start; }
  .footer-cta__btns { flex-direction: column; align-items: center; }
}

/* ============================================================
   RESPONSIVE — Mobile ≤ 600px
   ============================================================ */
@media (max-width: 600px) {
  .section-pad { padding: 52px 0; }
  .container { padding: 0 18px; }
  .hero__body { padding: 0 20px 96px; }
  .hero__ctas { flex-direction: column; }
  .btn-hero-main,.btn-hero-line { width: 100%; justify-content: center; }
  .pain__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .service__grid { grid-template-columns: 1fr; }
  .flow__row { grid-template-columns: 1fr; }
  .voices__grid { grid-template-columns: 1fr; }
  .price__cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .contact__form { padding: 26px 18px; }
  .access__btns { flex-direction: column; }
  .btn-map-link,.btn-line-link { width: 100%; justify-content: center; }
  .footer__inner { grid-template-columns: 1fr; gap: 20px; }
  .footer__sns { justify-content: flex-start; }
  .footer-cta { padding: 64px 20px; }
}
