/* ============================================
   BASE & RESET
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* ── ミルキーベージュ × ダスティローズ × ラベンダーモーブ ── */
  --color-base:    #FDFAF7;
  --color-base-2:  #F8F2ED;
  --color-base-3:  #F2E8DF;
  --color-main:    #D8A7B7;
  --color-main-dk: #C08898;
  --color-accent:  #9D8AB3;
  --color-accent2: #7B6896;
  --color-sub:     #EDD9E2;
  --color-gold:    #C4A4B4;
  --color-gold-lt: #DFC0CC;
  --color-text:    #3D3040;
  --color-text-md: #7D6878;
  --color-text-lt: #B0A0AA;
  --color-white:   #ffffff;
  --color-border:  #E8D5DE;

  --font-en: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-jp: 'Noto Sans JP', sans-serif;

  --max-w: 1100px;
  --gap-section: 120px;
  --hdr-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-jp);
  color: var(--color-text);
  background: var(--color-base);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: opacity .2s; }
a:hover { opacity: .75; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-jp); border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes lineGrow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%       { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%       { transform: scaleY(1); transform-origin: bottom; }
  100%      { transform: scaleY(0); transform-origin: bottom; }
}

/* Fade-in via IntersectionObserver — start invisible */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s cubic-bezier(.22,1,.36,1),
              transform .75s cubic-bezier(.22,1,.36,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }
.reveal.d4 { transition-delay: .50s; }

/* Hero — visible immediately, JS adds subtle stagger after load */
.hero-anim { opacity: 1; transform: none; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 36px;
  border-radius: 2px;
  font-family: var(--font-jp);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .08em;
  transition: all .28s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: linear-gradient(135deg, var(--color-main) 0%, var(--color-accent) 100%);
  color: var(--color-white);
  border: 1.5px solid transparent;
}
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.1);
  opacity: 0;
  transition: opacity .2s;
}
.btn--primary:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(157,138,179,.38);
}
.btn--primary:hover::after { opacity: 1; }
.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
}
.btn--outline:hover {
  background: var(--color-accent);
  color: var(--color-white);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(157,138,179,.25);
}
.btn--hdr {
  background: var(--color-main);
  color: var(--color-white);
  border: 1.5px solid var(--color-main);
  padding: 10px 26px;
  font-size: .83rem;
}
.btn--hdr:hover {
  background: var(--color-main-dk);
  border-color: var(--color-main-dk);
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(216,167,183,.4);
}
.btn--full { width: 100%; }
.btn--lg { padding: 18px 44px; font-size: 1rem; }

/* ============================================
   SECTION COMMONS
   ============================================ */
.section { padding: var(--gap-section) 0; }

.sec-hd {
  text-align: center;
  margin-bottom: 72px;
}
.sec-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .3em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
}
.sec-label::before,
.sec-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--color-gold);
  opacity: .5;
}
.sec-label::before { right: calc(100% + 10px); }
.sec-label::after  { left:  calc(100% + 10px); }

.sec-title {
  font-family: var(--font-jp);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.55;
  color: var(--color-text);
  letter-spacing: .04em;
}
.sec-title-en {
  font-family: var(--font-en);
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: .12em;
  color: var(--color-text);
}

/* ============================================
   HEADER
   ============================================ */
.hdr {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  height: var(--hdr-h);
  background: rgba(255,253,251,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.hdr.scrolled {
  border-color: var(--color-border);
  box-shadow: 0 4px 32px rgba(92,68,56,.07);
}
.hdr__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.hdr__logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-shrink: 0;
}
.hdr__logo-en {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: .15em;
}
.hdr__logo-txt {
  font-family: var(--font-en);
  font-size: .7rem;
  color: var(--color-text-md);
  letter-spacing: .1em;
  font-weight: 300;
}
.hdr__nav { margin-left: auto; }
.hdr__nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hdr__nav-link {
  font-family: var(--font-en);
  font-size: .8rem;
  letter-spacing: .14em;
  color: var(--color-text-md);
  font-weight: 400;
  position: relative;
  transition: color .2s;
}
.hdr__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--color-gold);
  transition: width .28s ease;
}
.hdr__nav-link:hover,
.hdr__nav-link.active { color: var(--color-accent); opacity: 1; }
.hdr__nav-link:hover::after,
.hdr__nav-link.active::after { width: 100%; }

.hdr__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hdr__burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--color-accent);
  transition: all .3s;
  transform-origin: center;
}
.hdr__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hdr__burger.open span:nth-child(2) { opacity: 0; }
.hdr__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--hdr-h) + 72px);
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(216,167,183,.14) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(157,138,179,.1) 0%, transparent 70%),
    linear-gradient(160deg, #FDFAF7 0%, #F8EFF4 50%, #F2E8DF 100%);
}

/* decorative geometric */
.hero::before {
  content: '';
  position: absolute;
  top: 80px; right: -60px;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(216,167,183,.18);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 130px; right: -10px;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(157,138,179,.15);
  pointer-events: none;
}

/* accent line left */
.hero__deco-line {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--color-main) 20%, var(--color-accent) 60%, transparent);
  opacity: .4;
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .16em;
  color: var(--color-gold);
  margin-bottom: 32px;
}
.hero__label::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--color-gold);
}

.hero__title {
  font-family: var(--font-jp);
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: .04em;
  color: var(--color-text);
  margin-bottom: 32px;
  position: relative;
}
.hero__title-accent {
  color: var(--color-main);
}
.hero__title-under {
  position: relative;
  display: inline-block;
}
.hero__title-under::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-main), var(--color-gold));
  border-radius: 2px;
  opacity: .6;
}

.hero__sub {
  font-size: .95rem;
  line-height: 2;
  color: var(--color-text-md);
  margin-bottom: 44px;
  font-weight: 300;
  padding-left: 16px;
  border-left: 2px solid var(--color-sub);
}

.hero__cta {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

/* scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-text-lt);
  font-family: var(--font-en);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--color-text-lt), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
  transform-origin: top;
}

/* ---- Hero Visual Cards ---- */
.hero__visual {
  position: relative;
  height: 500px;
  perspective: 800px;
}

.hvc {
  position: absolute;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow:
    0 2px 8px rgba(92,68,56,.07),
    0 12px 48px rgba(92,68,56,.12);
  border: 1px solid rgba(226,213,206,.8);
}

/* formula card */
.hvc--formula {
  top: 0; left: 0;
  width: 268px;
  padding: 26px;
  animation: fadeUp .9s .4s both;
}
.hvc__badge {
  display: inline-block;
  font-family: var(--font-en);
  font-size: .63rem;
  letter-spacing: .2em;
  color: var(--color-gold);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(184,155,106,.35);
  padding-bottom: 10px;
  margin-bottom: 18px;
  width: 100%;
}
.hvc__row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.hvc__row:last-child { margin-bottom: 0; }
.hvc__ing {
  font-size: .66rem;
  color: var(--color-text-md);
  width: 88px;
  flex-shrink: 0;
  letter-spacing: .04em;
}
.hvc__bar {
  flex: 1; height: 5px;
  background: var(--color-base-3);
  border-radius: 3px;
  overflow: hidden;
}
.hvc__bar span {
  display: block;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--color-main), var(--color-accent));
}
.hvc__pct {
  font-family: var(--font-en);
  font-size: .62rem;
  letter-spacing: .06em;
  color: var(--color-accent);
  width: 34px;
  text-align: right;
}

/* bottle card */
.hvc--bottle {
  top: 48px; right: 16px;
  padding: 32px 28px 28px;
  animation: fadeUp .9s .55s both;
}
.bottle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.bottle__pump {
  width: 12px; height: 30px;
  background: linear-gradient(180deg, var(--color-accent), var(--color-accent2));
  border-radius: 6px 6px 0 0;
  margin-bottom: -1px;
}
.bottle__neck {
  width: 24px; height: 12px;
  background: linear-gradient(180deg, #D4BCC8, #C0A8B8);
  border-radius: 2px 2px 0 0;
}
.bottle__body {
  width: 72px; height: 130px;
  background: linear-gradient(160deg, #FBF4F8 0%, #F0DDE8 45%, #E8D0DC 100%);
  border-radius: 4px 4px 10px 10px;
  border: 1px solid rgba(232,213,222,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.bottle__body::before {
  content: '';
  position: absolute;
  top: 0; left: 12px;
  width: 8px; bottom: 0;
  background: rgba(255,255,255,.25);
  border-radius: 0 0 4px 4px;
}
.bottle__lbl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.bottle__brand {
  font-family: var(--font-en);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--color-accent);
}
.bottle__name {
  font-family: var(--font-en);
  font-size: .58rem;
  letter-spacing: .15em;
  color: var(--color-text-lt);
  font-weight: 300;
  text-transform: uppercase;
}

/* SNS card */
.hvc--sns {
  bottom: 32px; left: 28px;
  width: 230px;
  padding: 18px;
  animation: fadeUp .9s .7s both;
}
.sns__hd {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.sns__av {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-main) 0%, var(--color-accent) 100%);
  border: 2px solid rgba(255,255,255,.8);
  flex-shrink: 0;
}
.sns__info span {
  display: block;
}
.sns__info span:first-child {
  font-size: .72rem;
  font-weight: 700;
  color: var(--color-text);
}
.sns__info span:last-child {
  font-size: .6rem;
  color: var(--color-text-lt);
}
.sns__img {
  height: 88px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--color-sub) 0%, #DFC0CC 40%, #E8D5E4 100%);
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.sns__img::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0, transparent 9px,
    rgba(255,255,255,.12) 9px, rgba(255,255,255,.12) 18px
  );
}
.sns__img-overlay {
  position: absolute;
  bottom: 8px; right: 8px;
  background: rgba(92,68,56,.6);
  color: #fff;
  font-size: .58rem;
  padding: 3px 8px;
  border-radius: 10px;
  letter-spacing: .06em;
  z-index: 1;
}
.sns__stats {
  display: flex;
  justify-content: space-between;
}
.sns__stats span {
  font-size: .6rem;
  color: var(--color-text-md);
}

/* concept tag card */
.hvc--tag {
  top: 200px; right: -10px;
  padding: 18px 22px;
  animation: fadeUp .9s .85s both;
}
.concept-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.concept-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  color: var(--color-text-md);
}
.concept-tag__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.concept-tag__dot--rose { background: var(--color-main); }
.concept-tag__dot--gold { background: var(--color-gold); }
.concept-tag__dot--brown { background: var(--color-accent); }

/* ============================================
   HOOK（課題提起）
   ============================================ */
.hook {
  background: linear-gradient(180deg, var(--color-base-2) 0%, var(--color-base) 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
}
.hook::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--color-main), transparent);
}
.hook__title {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: .05em;
  color: var(--color-text);
  margin-bottom: 28px;
}
.hook__em {
  background: linear-gradient(transparent 62%, var(--color-sub) 62%);
  padding: 0 2px;
}
.hook__desc {
  font-size: .98rem;
  line-height: 2.2;
  color: var(--color-text-md);
  letter-spacing: .04em;
}

/* ============================================
   PROBLEM
   ============================================ */
.prob {
  background:
    linear-gradient(180deg, var(--color-base-2) 0%, var(--color-base-3) 100%);
  position: relative;
}
.prob::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.prob__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.prob__card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow .3s, transform .3s, border-color .3s;
}
.prob__card:hover {
  box-shadow: 0 8px 36px rgba(92,68,56,.1);
  transform: translateY(-3px);
  border-color: rgba(201,143,143,.35);
}
.prob__num {
  font-family: var(--font-en);
  font-size: .85rem;
  font-weight: 300;
  color: var(--color-main);
  letter-spacing: .08em;
  flex-shrink: 0;
  min-width: 24px;
  padding-top: .15em;
}
.prob__card p {
  font-size: .87rem;
  line-height: 1.75;
  color: var(--color-text);
}

.prob__close {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent2) 100%);
  border-radius: 6px;
  padding: 44px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.prob__close::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.prob__close::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(216,167,183,.12);
}
.prob__close p {
  color: rgba(255,253,251,.9);
  font-size: 1.08rem;
  line-height: 1.85;
  letter-spacing: .04em;
  position: relative;
  z-index: 1;
}
.prob__close strong {
  color: var(--color-sub);
  font-weight: 700;
}

/* ============================================
   SUPPORT AREAS
   ============================================ */
.supp {
  background: var(--color-base);
}
.supp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.supp__card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .35s, transform .35s;
}
.supp__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-main), var(--color-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s ease;
}
.supp__card:hover::before { transform: scaleX(1); }
.supp__card:hover {
  box-shadow: 0 16px 56px rgba(92,68,56,.12);
  transform: translateY(-6px);
}
.supp__num {
  font-family: var(--font-en);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--color-base-3);
  letter-spacing: .06em;
  line-height: 1;
  margin-bottom: 16px;
  transition: color .3s;
}
.supp__card:hover .supp__num { color: var(--color-sub); }
.supp__ttl {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
  letter-spacing: .04em;
}
.supp__sub {
  font-family: var(--font-en);
  font-size: .7rem;
  color: var(--color-gold);
  letter-spacing: .18em;
  margin-bottom: 28px;
  font-weight: 400;
  text-transform: uppercase;
}
.supp__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.supp__list li {
  font-size: .85rem;
  color: var(--color-text-md);
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}
.supp__list li::before {
  content: '';
  position: absolute;
  left: 0; top: .68em;
  width: 6px; height: 1px;
  background: var(--color-main);
}

/* ============================================
   STRENGTH
   ============================================ */
.str {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(157,138,179,.08) 0%, transparent 70%),
    var(--color-base-2);
}
.str__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.str__card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 44px 32px;
  text-align: center;
  transition: box-shadow .3s, transform .3s;
}
.str__card:hover {
  box-shadow: 0 12px 48px rgba(92,68,56,.1);
  transform: translateY(-4px);
}
.str__icon {
  width: 60px; height: 60px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(216,167,183,.14), rgba(157,138,179,.12));
  border-radius: 50%;
  border: 1px solid rgba(216,167,183,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-main);
}
.str__icon svg { width: 28px; height: 28px; }
.str__num {
  font-family: var(--font-en);
  font-size: .72rem;
  letter-spacing: .2em;
  color: var(--color-gold);
  margin-bottom: 12px;
  display: block;
}
.str__ttl {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
  color: var(--color-text);
  margin-bottom: 16px;
  letter-spacing: .04em;
}
.str__desc {
  font-size: .84rem;
  line-height: 1.85;
  color: var(--color-text-md);
  font-weight: 300;
}
.str__note {
  text-align: center;
  padding: 40px 56px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.str__note::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-main), var(--color-gold), var(--color-main));
}
.str__note p {
  font-size: .96rem;
  line-height: 1.9;
  color: var(--color-text-md);
}
.str__note strong { color: var(--color-accent); font-weight: 700; }

/* ============================================
   SERVICE
   ============================================ */
.svc {
  background: var(--color-base);
}
.svc__lead {
  text-align: center;
  font-size: .95rem;
  line-height: 2.1;
  color: var(--color-text-md);
  letter-spacing: .03em;
  margin: -20px 0 52px;
}
.svc__cta {
  text-align: center;
  margin-top: 44px;
}
.svc__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 44px;
}
.svc__card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .35s;
}
.svc__card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,143,143,.06) 0%, transparent 70%);
  transform: translate(40%, 40%);
}
.svc__card:hover {
  box-shadow: 0 16px 64px rgba(92,68,56,.12);
}
.svc__card--hi {
  background: linear-gradient(155deg, #FDF7F4 0%, var(--color-white) 60%);
  border-color: rgba(201,143,143,.28);
}
.svc__card--hi::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; bottom: 0;
  background: linear-gradient(180deg, var(--color-main), var(--color-gold));
  border-radius: 8px 0 0 8px;
}
.svc__plan {
  font-family: var(--font-en);
  font-size: .75rem;
  letter-spacing: .22em;
  color: var(--color-gold);
  text-transform: uppercase;
  font-weight: 400;
}
.svc__ttl {
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
  letter-spacing: .03em;
}
.svc__target {
  font-size: .84rem;
  color: var(--color-text-md);
  line-height: 1.75;
  padding: 16px 20px;
  background: var(--color-base-2);
  border-radius: 4px;
  border-left: 3px solid var(--color-main);
}
.svc__target-lbl {
  display: inline-block;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--color-main-dk);
  margin-right: 8px;
  text-transform: uppercase;
  font-family: var(--font-en);
}
.svc__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.svc__list li {
  font-size: .86rem;
  color: var(--color-text);
  padding-left: 20px;
  position: relative;
  line-height: 1.65;
}
.svc__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-main);
  font-size: .78rem;
  top: .12em;
  font-weight: 700;
}
.svc__price {
  text-align: center;
  padding: 32px;
  background: var(--color-base-2);
  border-radius: 6px;
  border: 1px dashed var(--color-border);
}
.svc__price p {
  font-size: .88rem;
  color: var(--color-text-md);
  line-height: 1.85;
}
.svc__price-yen {
  font-family: var(--font-en);
  font-size: 1.1rem;
  color: var(--color-gold);
  margin-right: 4px;
  font-style: italic;
}

/* ============================================
   FLOW
   ============================================ */
.flow {
  background: var(--color-base-2);
}
.flow__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
}
/* connecting line */
.flow__steps::before {
  content: '';
  position: absolute;
  top: 25px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border) 10%, var(--color-border) 90%, transparent);
}
.flow__step {
  flex: 1;
  max-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.flow__dot {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-main), var(--color-accent));
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(157,138,179,.38);
}
.flow__ttl {
  font-size: .9rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.flow__desc {
  font-size: .76rem;
  color: var(--color-text-lt);
  line-height: 1.75;
  font-weight: 300;
}
.flow__arrow {
  color: var(--color-border);
  font-size: 1.2rem;
  padding-top: 16px;
  flex-shrink: 0;
  align-self: flex-start;
}

/* ============================================
   PROFILE
   ============================================ */
.prof {
  background: var(--color-base);
}
.prof__inner {
  display: flex;
  gap: 72px;
  align-items: flex-start;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 64px;
  position: relative;
  overflow: hidden;
}
.prof__inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-main) 0%, var(--color-gold) 50%, var(--color-main) 100%);
}
.prof__av-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.prof__av {
  width: 168px; height: 168px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--color-main), var(--color-sub), var(--color-accent));
}
.prof__av-in {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #F8EEF4, #EDD8E8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.prof__av-init {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--color-accent);
}
.prof__badges {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
}
.prof__badge {
  font-size: .67rem;
  padding: 4px 14px;
  border-radius: 12px;
  background: rgba(201,143,143,.1);
  border: 1px solid rgba(201,143,143,.22);
  color: var(--color-main-dk);
  letter-spacing: .06em;
  white-space: nowrap;
}
.prof__body { flex: 1; }
.prof__name {
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: .2em;
  color: var(--color-accent);
  margin-bottom: 8px;
}
.prof__role {
  font-size: .83rem;
  color: var(--color-text-lt);
  line-height: 1.75;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}
.prof__desc {
  font-size: .9rem;
  line-height: 2.1;
  color: var(--color-text);
  margin-bottom: 40px;
  font-weight: 300;
}
.prof__desc strong { color: var(--color-accent); font-weight: 700; }
.prof__kpi {
  display: flex;
  gap: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}
.prof__kpi-item { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.prof__kpi-num {
  font-family: var(--font-jp);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: .04em;
}
.prof__kpi-lbl {
  font-size: .7rem;
  color: var(--color-text-md);
  letter-spacing: .04em;
  line-height: 1.6;
}

/* ============================================
   COLUMN
   ============================================ */
.col-sec {
  background: var(--color-base-2);
}
.col-sec__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.col-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  transition: box-shadow .3s, transform .3s;
}
.col-card:hover {
  box-shadow: 0 10px 40px rgba(92,68,56,.1);
  transform: translateY(-3px);
}
.col-tag {
  font-size: .65rem;
  letter-spacing: .1em;
  color: var(--color-main-dk);
  background: rgba(201,143,143,.09);
  border: 1px solid rgba(201,143,143,.2);
  padding: 3px 10px;
  border-radius: 2px;
  display: inline-block;
  width: fit-content;
}
.col-ttl {
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text);
}
.col-exc {
  font-size: .82rem;
  line-height: 1.85;
  color: var(--color-text-md);
  font-weight: 300;
  flex: 1;
}
.col-more {
  font-family: var(--font-en);
  font-size: .75rem;
  color: var(--color-gold);
  letter-spacing: .08em;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--color-base);
}
.faq__wrap {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: 0 4px 32px rgba(92,68,56,.06);
}
.faq__item { border-bottom: 1px solid var(--color-border); }
.faq__item:last-child { border-bottom: none; }
.faq__q {
  width: 100%;
  text-align: left;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  transition: background .2s;
}
.faq__q:hover { background: var(--color-base-2); }
.faq__q span:first-child {
  font-size: .9rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.65;
  letter-spacing: .03em;
}
.faq__ic {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--color-main);
  font-size: 1.1rem;
  font-weight: 300;
  transition: all .3s;
  line-height: 1;
}
.faq__q[aria-expanded="true"] .faq__ic {
  transform: rotate(45deg);
  background: var(--color-main);
  color: white;
  border-color: var(--color-main);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  padding: 0 32px;
}
.faq__a.open {
  max-height: 300px;
  padding: 0 32px 28px;
}
.faq__a p {
  font-size: .86rem;
  line-height: 1.95;
  color: var(--color-text-md);
  padding-left: 20px;
  border-left: 2px solid var(--color-sub);
  font-weight: 300;
}

/* ============================================
   CONTACT
   ============================================ */
.cta-sec {
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(157,138,179,.1) 0%, transparent 70%),
    linear-gradient(175deg, var(--color-base) 0%, var(--color-base-3) 100%);
}
.cta-sec__inner {
  max-width: 780px;
  margin: 0 auto;
}
.cta-sec__title {
  font-size: 1.65rem;
}
.cta-sec__desc {
  text-align: center;
  font-size: .9rem;
  line-height: 1.95;
  color: var(--color-text-md);
  margin-top: -28px;
  margin-bottom: 52px;
}
.form-wrap {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 52px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: 0 4px 40px rgba(92,68,56,.07);
  position: relative;
}
.form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-main), var(--color-gold), var(--color-main));
  border-radius: 8px 8px 0 0;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form__grp {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__lbl {
  font-size: .83rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: .04em;
}
.form__req {
  font-size: .65rem;
  color: var(--color-main);
  background: rgba(201,143,143,.1);
  padding: 2px 7px;
  border-radius: 2px;
  margin-left: 6px;
  font-weight: 400;
}
.form__inp,
.form__sel,
.form__ta {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-jp);
  font-size: .9rem;
  color: var(--color-text);
  background: var(--color-base);
  transition: border-color .22s, box-shadow .22s, background .22s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form__inp:focus,
.form__sel:focus,
.form__ta:focus {
  border-color: var(--color-main);
  box-shadow: 0 0 0 3px rgba(201,143,143,.13);
  background: var(--color-white);
}
.form__inp::placeholder, .form__ta::placeholder { color: var(--color-text-lt); }
.form__sel-wrap { position: relative; }
.form__sel-wrap::after {
  content: '∨';
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-lt);
  pointer-events: none;
  font-size: .78rem;
}
.form__ta { resize: vertical; min-height: 136px; line-height: 1.75; }
.form__submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.form__note {
  font-size: .7rem;
  color: var(--color-text-lt);
  text-align: center;
  letter-spacing: .04em;
}
.thanks {
  text-align: center;
  padding: 72px 40px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}
.thanks__ic {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-main), var(--color-accent));
  color: white;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 8px 24px rgba(157,138,179,.35);
}
.thanks h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.thanks p { font-size: .88rem; color: var(--color-text-md); }

/* ============================================
   FOOTER
   ============================================ */
.ftr {
  background: var(--color-accent);
  color: rgba(255,253,251,.82);
  padding: 64px 0 32px;
}
.ftr__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 28px;
}
.ftr__logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}
.ftr__logo-en {
  font-family: var(--font-en);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--color-sub);
  letter-spacing: .16em;
}
.ftr__logo-txt {
  font-family: var(--font-en);
  font-size: .7rem;
  color: rgba(255,253,251,.5);
  letter-spacing: .1em;
}
.ftr__desc {
  font-size: .8rem;
  line-height: 1.9;
  color: rgba(255,253,251,.55);
  font-weight: 300;
}
.ftr__nav ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}
.ftr__nav a {
  font-family: var(--font-en);
  font-size: .78rem;
  letter-spacing: .14em;
  color: rgba(255,253,251,.55);
  transition: color .2s;
}
.ftr__nav a:hover { color: var(--color-sub); opacity: 1; }
.ftr__copy {
  text-align: center;
  font-size: .7rem;
  color: rgba(255,253,251,.35);
  letter-spacing: .1em;
  font-family: var(--font-en);
}

/* ============================================
   FLOATING CTA
   ============================================ */
.float-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  background: linear-gradient(135deg, var(--color-main) 0%, var(--color-accent) 100%);
  /* ラベンダー→ダスティローズのグラデ */
  color: var(--color-white);
  padding: 14px 28px;
  border-radius: 32px;
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .08em;
  box-shadow: 0 8px 32px rgba(92,68,56,.3);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: all .35s cubic-bezier(.22,1,.36,1);
}
.float-cta.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.float-cta:hover {
  box-shadow: 0 14px 44px rgba(92,68,56,.4);
  transform: translateY(-3px);
  opacity: 1;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 920px) {
  :root { --gap-section: 88px; }

  .hdr__nav { display: none; }
  .hdr__burger { display: flex; }
  .hdr__nav.open {
    display: flex;
    position: fixed;
    top: var(--hdr-h); left: 0; right: 0;
    background: rgba(255,253,251,.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    padding: 24px 32px;
    box-shadow: 0 8px 32px rgba(92,68,56,.1);
  }
  .hdr__nav.open .hdr__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .hero__title { font-size: 2.1rem; }
  .hero__visual { height: 340px; }

  .prob__grid  { grid-template-columns: repeat(2, 1fr); }
  .supp__grid  { grid-template-columns: 1fr; }
  .str__grid   { grid-template-columns: 1fr; }
  .svc__grid   { grid-template-columns: 1fr; }
  .col-sec__grid { grid-template-columns: repeat(2, 1fr); }

  .prof__inner { flex-direction: column; align-items: center; padding: 44px; text-align: center; }
  .prof__kpi   { justify-content: center; }

  .flow__steps::before { display: none; }
  .flow__steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .flow__step {
    flex-direction: row;
    text-align: left;
    max-width: 100%;
    padding: 22px 0;
    border-bottom: 1px solid var(--color-border);
    gap: 24px;
  }
  .flow__step:last-child { border-bottom: none; }
  .flow__arrow { display: none; }
  .flow__dot { flex-shrink: 0; }

  .form__row { grid-template-columns: 1fr; }
  .form-wrap { padding: 36px 28px; }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 600px) {
  :root { --gap-section: 64px; }

  .container { padding: 0 20px; }

  .hvc--formula { width: 200px; padding: 18px; }
  .hvc--bottle  { right: 4px; top: 30px; padding: 22px 18px; }
  .bottle__body { width: 56px; height: 104px; }
  .hvc--sns     { bottom: 8px; left: 10px; width: 185px; }
  .hvc--tag     { display: none; }
  .hero__visual { height: 280px; }
  .hero__title  { font-size: 1.6rem; }
  .hero__sub    { font-size: .87rem; }
  .hero__cta    { flex-direction: column; }
  .hero__cta .btn { width: 100%; }

  .hook         { padding: 72px 0; }
  .hook__title  { font-size: 1.22rem; }
  .hook__desc   { font-size: .88rem; line-height: 2; }
  .hook__desc br { display: none; }

  .sec-title    { font-size: 1.35rem; }
  .prob__grid   { grid-template-columns: 1fr; }
  .col-sec__grid { grid-template-columns: 1fr; }
  .svc__card    { padding: 32px 24px; }
  .prof__inner  { padding: 28px 20px; }
  .prof__av     { width: 130px; height: 130px; }
  .str__note    { padding: 28px 24px; }
  .prob__close  { padding: 32px 28px; }
  .prob__close p { font-size: .95rem; }

  .ftr__inner   { flex-direction: column; gap: 32px; }
  .ftr__nav ul  { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 10px 20px; }

  .float-cta {
    bottom: 16px; right: 16px; left: 16px;
    text-align: center; border-radius: 6px;
  }
  .form-wrap { padding: 24px 18px; }
}

/* ============================================
   RECOMMEND（こんな企業様におすすめ）
   ============================================ */
.rec { background: var(--color-base); }
.rec__list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.rec__item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: .88rem;
  line-height: 1.7;
  color: var(--color-text);
  transition: box-shadow .25s, border-color .25s;
}
.rec__item:hover {
  box-shadow: 0 6px 28px rgba(157,138,179,.12);
  border-color: rgba(216,167,183,.4);
}
.rec__check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-main), var(--color-accent));
  color: #fff;
  font-size: .68rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .12em;
}

/* ============================================
   DELIVERABLES（ご相談後に整理できること）
   ============================================ */
.deliv { background: var(--color-base-2); }
.deliv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.deliv__item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .86rem;
  color: var(--color-text);
  line-height: 1.6;
  transition: box-shadow .25s, transform .25s;
}
.deliv__item:hover {
  box-shadow: 0 6px 24px rgba(157,138,179,.12);
  transform: translateY(-2px);
}
.deliv__check {
  color: var(--color-main-dk);
  font-size: .85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.deliv__note {
  text-align: center;
  font-size: .82rem;
  color: var(--color-text-md);
  letter-spacing: .04em;
}

/* ============================================
   BEFORE / AFTER
   ============================================ */
.ba { background: var(--color-base); }
.ba__rows {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ba__row {
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  align-items: stretch;
  gap: 0;
}
.ba__card {
  border-radius: 6px;
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}
.ba__card p {
  font-size: .88rem;
  line-height: 1.7;
}
.ba__card--before {
  background: var(--color-base-2);
  border: 1px solid var(--color-border);
}
.ba__card--before p { color: var(--color-text-md); }
.ba__card--after {
  background: var(--color-white);
  border: 1px solid rgba(216,167,183,.45);
  box-shadow: 0 4px 20px rgba(157,138,179,.1);
}
.ba__card--after p { color: var(--color-text); font-weight: 500; }
.ba__tag {
  font-family: var(--font-en);
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.ba__card--before .ba__tag { color: var(--color-text-lt); }
.ba__card--after  .ba__tag { color: var(--color-main-dk); }
.ba__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-main);
  font-size: 1.1rem;
}

/* ============================================
   FORM CHECKBOXES（希望する支援内容）
   ============================================ */
.form__checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
  padding: 4px 0;
}
.form__check {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .86rem;
  color: var(--color-text);
  cursor: pointer;
  line-height: 1.5;
}
.form__check input {
  width: 16px;
  height: 16px;
  accent-color: var(--color-accent);
  cursor: pointer;
  flex-shrink: 0;
}

/* ============================================
   RESPONSIVE for new sections
   ============================================ */
@media (max-width: 920px) {
  .deliv__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .rec__list   { grid-template-columns: 1fr; }
  .deliv__grid { grid-template-columns: 1fr; }
  .ba__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .ba__arrow {
    transform: rotate(90deg);
    padding: 2px 0;
  }
  .form__checks { grid-template-columns: 1fr; }
}
