/* =========================================================
   Laplace 採用特化型HP  styles.css
   基調: ホワイト × チャコール × くすみローズ(最小限) / モバイルファースト
   参照トーン: BOTANIST(白基調・余白・幾何学サンセリフ)
   見出し=Zen Maru Gothic(やわらかい丸ゴシック・太め) / ラテン=Poppins
   ========================================================= */

:root {
  --bg:        #ffffff;   /* ホワイト基調 */
  --bg-alt:    #f8f5f2;   /* ごく淡いウォームオフホワイト(alt section) */
  --bg-card:   #ffffff;   /* カード白 */

  --rose:      #ff6699;   /* SKIN GARDEN ビビッドピンク(装飾・大きめ強調) */
  --rose-soft: #ffd6e2;   /* 淡ピンク罫・縁 */
  --rose-deep: #d81b60;   /* 強調テキスト(em/eyebrow/Q#/リンク) — 白地で約4.9:1, AA達成 */
  --blush:     #fff1f6;   /* アイコン地・ごく淡いピンク面 */

  --ink:       #322c28;   /* 本文チャコール */
  --ink-strong:#211c19;   /* 見出し */
  --ink-mut:   #6b645c;   /* 補助テキスト — 淡グレー帯でも約4.6:1, AA達成 */
  --line:      #ebe5df;   /* ウォームグレー罫 */
  --line-soft: #f2eeea;   /* さらに淡い罫 */
  --shadow:    0 16px 40px rgba(60, 50, 45, 0.09);

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);     /* 上質な減速(エキスポ) */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1); /* 軽い跳ね(吹き出しのポップ) */

  --round: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Sans",
           "Yu Gothic", "Meiryo", sans-serif;
  --sans:  "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic",
           "YuGothic", "Meiryo", sans-serif;
  --latin: "Poppins", var(--sans);

  --maxw: 1080px;
  --pad:  clamp(1.25rem, 5vw, 3rem);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 84px; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.95;
  font-size: 15px;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;   /* 長いラテン語(GirlsBar等)が枠を超える時のみ最終手段で折り返す保険 */
}

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

/* ---------- shared layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

.section { padding-block: clamp(4.5rem, 12vw, 8rem); }
.section--alt { background: var(--bg-alt); }

.eyebrow {
  font-family: var(--latin);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--rose-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.85em;
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--rose-soft);
}

.section-title {
  font-family: var(--round);
  font-weight: 700;
  font-size: clamp(1.5rem, 5vw, 2.3rem);
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: var(--ink-strong);
  margin-bottom: 1.6rem;
  text-wrap: balance;       /* 見出しは行頭/行末を自動で均す（手動<br>に頼らない） */
  word-break: auto-phrase;  /* 文節境界で改行し、単語の途中で割らない */
  line-break: strict;
}
.section-title em { font-style: normal; color: var(--rose-deep); white-space: nowrap; position: relative; }  /* 強調句を1かたまりで保持（全ブラウザで文節を割らない） */
/* 強調句の下線を、スクロールで入ってきた時に左から引く(さりげない作り込み) */
.section-title em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -0.08em; height: 3px;
  background: var(--rose); border-radius: 3px; opacity: 0.5;
  transform: scaleX(0); transform-origin: left;
  transition: transform .7s var(--ease-out) .2s;
}
.section-title.is-visible em::after { transform: scaleX(1); }

.lead { color: var(--ink-mut); max-width: 34em; font-size: 0.97rem; line-height: 1.95; }
.lead + .lead { margin-top: 0.9rem; }

/* 日本語の自然な折り返し（文節境界で改行・末尾の孤立語を抑制） */
.lead, .hero__sub p, .faq__a p, .chat__bubble, .access__cta-lead {
  line-break: strict;
  word-break: auto-phrase;
  text-wrap: pretty;
  letter-spacing: 0.03em;
}

/* 見出し下のグリッド上マージン（旧インラインstyleを集約） */
.faq__list, .point__grid, .gallery__grid, .chat { margin-top: 2.4rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--sans);
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 1.05em 2.3em;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: background-color .25s var(--ease-out), color .25s var(--ease-out), transform .2s var(--ease-out), box-shadow .25s var(--ease-out), border-color .25s var(--ease-out);
  cursor: pointer;
}
.btn--primary {
  background: #141414;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* 光沢スイープ(ホバー時に一度通り抜ける高級感の演出) */
.btn--primary::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: -75%; width: 45%; z-index: -1;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-18deg);
  transition: left .7s var(--ease-out);
  pointer-events: none;
}
.btn--primary:hover { background: #2c2c2c; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26); }
.btn--primary:hover::before { left: 140%; }
.btn--ghost { background: transparent; color: var(--ink-strong); border-color: var(--line); }
.btn--ghost:hover { background: var(--bg-alt); border-color: var(--rose-soft); color: var(--rose-deep); }
.btn:active { transform: scale(0.97); }
.btn__arrow { font-family: var(--latin); font-size: 1.1em; line-height: 1; }

/* ---------- header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.brand { display: flex; align-items: center; }
.brand__logo { display: block; height: 44px; width: auto; }

.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: 1.9rem; }
.nav__list a {
  position: relative;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  transition: color .2s ease;
}
.nav__list a:hover { color: var(--rose-deep); }
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -5px;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}
.nav__list a:hover::after { transform: scaleX(1); }
.header__cta { display: none; }
.header__actions { display: none; align-items: center; gap: 1.4rem; }

/* hamburger */
.burger {
  width: 44px; height: 44px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px;
  background: none; border: none; cursor: pointer;
}
.burger span {
  width: 24px; height: 1.5px;
  background: var(--ink-strong);
  transition: transform .3s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 66px 0 0 0;
  z-index: 75;
  background: rgba(255, 255, 255, 0.98);
  padding: var(--pad);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s ease, opacity .25s ease;
}
.drawer[data-open="true"] { transform: translateY(0); opacity: 1; pointer-events: auto; }
.drawer a {
  font-family: var(--round);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0.04em;
  color: var(--ink-strong);
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.drawer a:not(.btn) {
  transition: background-color .18s ease, padding-left .18s ease, box-shadow .18s ease;
}
.drawer[data-open="true"] a { animation: drawerItemIn .42s ease backwards; }
.drawer[data-open="true"] a:nth-child(1) { animation-delay: .05s; }
.drawer[data-open="true"] a:nth-child(2) { animation-delay: .10s; }
.drawer[data-open="true"] a:nth-child(3) { animation-delay: .15s; }
.drawer[data-open="true"] a:nth-child(4) { animation-delay: .20s; }
.drawer[data-open="true"] a:nth-child(5) { animation-delay: .25s; }
.drawer[data-open="true"] a:nth-child(6) { animation-delay: .30s; }
.drawer a:not(.btn):active { background: var(--blush); }
.drawer a:not(.btn).is-selecting {
  background: var(--blush);
  padding-left: 0.7rem;
  box-shadow: inset 3px 0 0 var(--rose);
}
.drawer a span {
  font-family: var(--latin);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: var(--ink-mut);
  display: block;
  margin-top: 0.2em;
}
.drawer .btn { margin-top: 1.6rem; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;    /* svh 非対応ブラウザ向けフォールバック */
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 66px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background-color: var(--bg);
  /* 店内写真に白いベールを強めに重ね、白基調・余白の効いたエアリーな印象に */
  background-image:
    linear-gradient(100deg, rgba(255,255,255,0.86) 0%, rgba(255,255,255,0.64) 45%, rgba(255,255,255,0.18) 100%),
    linear-gradient(to bottom, rgba(255,255,255,0.16), rgba(248,245,242,0.40)),
    url('img/hero.jpg');
  background-size: cover;
  background-position: center 46%;
  background-repeat: no-repeat;
  animation: heroBgIn 1.8s var(--ease-out) both;   /* 読み込み時に一度だけゆっくりズームアウト */
}
.hero__inner { padding-block: clamp(3rem, 10vw, 6rem); }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--latin);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--rose-deep);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 2rem;
  padding: 0.5em 1.2em;
  margin-bottom: 1.9rem;
  box-shadow: 0 4px 14px rgba(60, 50, 45, 0.05);
}
.hero__badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 4px rgba(255, 102, 153, 0.18);
  animation: dotPulse 2.6s ease-in-out infinite;
}
.hero__title {
  font-family: var(--round);
  font-weight: 700;
  font-size: clamp(1.55rem, 6.4vw, 3.3rem);
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--ink-strong);
  text-wrap: balance;
  word-break: auto-phrase;
  line-break: strict;
}
.hero__title .accent { color: var(--rose-deep); display: block; text-wrap: balance; word-break: auto-phrase; line-break: strict; }
.hero__en { font-family: var(--latin); font-weight: 600; letter-spacing: 0.02em; }
.hero__sub {
  margin-top: 1.8rem;
  color: var(--ink);
  font-size: 0.99rem;
  max-width: 30em;
}
.hero__sub p { margin: 0; }
.hero__sub p + p { margin-top: 0.85rem; }
.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}
.hero__actions .btn { width: 100%; }

/* ヒーロー入場：読み込み時にバッジ→見出し→本文→ボタンを上品にスタッガー表示 */
.hero__badge   { animation: heroIn .9s var(--ease-out) .15s backwards; }
.hero__title   { animation: heroIn .9s var(--ease-out) .28s backwards; }
.hero__sub     { animation: heroIn .9s var(--ease-out) .44s backwards; }
.hero__actions { animation: heroIn .9s var(--ease-out) .58s backwards; }

/* ---------- message ---------- */
.message__grid { display: grid; gap: 2.4rem; }
.message__portrait {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.message__body {
  font-family: "Klee One", var(--round);
  font-size: 0.94rem;
  line-height: 1.85;
  color: var(--ink);
  padding: 2em 1.7em;
  background-color: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.message__body p {
  margin: 0 0 1.1em;
  text-wrap: pretty;
  line-break: strict;
  word-break: auto-phrase;
}
.message__body p:last-child { margin-bottom: 0; }
.message__body p.quote-line { margin-bottom: 0.25em; }  /* 2つの問いかけを近接させ「対」に見せる */
.signature {
  font-size: 0.85rem;
  color: var(--ink-mut);
  letter-spacing: 0.08em;
}
.message__body .signature {
  margin-top: 1.6em;
  font-size: 1rem;
  text-align: right;
  color: var(--rose-deep);
}

/* 手紙が一文字ずつ綴られていく演出（JSで .char に分割→完了後は素テキストへ復元し禁則/auto-phraseを確定） */
.message__body .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.18em) scale(0.96);
}
.message__body.is-typing .char {
  opacity: 1;
  transform: none;
  transition: opacity 0.36s var(--ease-out), transform 0.36s var(--ease-out);
}
.message__body .signature.type-tail { opacity: 0; }
.message__body.is-typing .signature.type-tail {
  opacity: 1;
  transition: opacity 0.7s var(--ease-out);
}
@media (prefers-reduced-motion: reduce) {
  .message__body .char,
  .message__body .signature.type-tail { opacity: 1; transform: none; transition: none; }
}

/* ---------- FAQ ---------- */
.faq__list { display: grid; gap: 1rem; align-items: start; }
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq__item[open] { border-color: var(--rose-soft); box-shadow: 0 8px 22px rgba(60,50,45,0.06); }
summary.faq__q {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.25rem 1.4rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--round);
  font-weight: 700;
  font-size: 1.0rem;
  letter-spacing: 0.01em;
  color: var(--ink-strong);
  transition: color .18s ease;
}
summary.faq__q::-webkit-details-marker { display: none; }
summary.faq__q:hover { color: var(--rose-deep); }
.faq__q .qn {
  font-family: var(--latin);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--rose-deep);
  flex-shrink: 0;
}
.faq__qtext { flex: 1; }
.faq__chev {
  width: 17px; height: 17px;
  stroke: var(--rose-deep);
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform .25s ease;
}
.faq__item[open] .faq__chev { transform: rotate(180deg); }
.faq__a {
  padding: 0 1.4rem 1.4rem;
  color: var(--ink-mut);
  font-size: 0.92rem;
}
.faq__a p { margin: 0; }

/* ---------- features (働きやすい理由) ---------- */
.point__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}
.point__card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.8rem 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  text-align: center;
  min-width: 0;   /* auto-phrase時に列(1fr=min-content)が膨張して横溢れするのを防ぐ */
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.point__card:hover { border-color: var(--rose-soft); transform: translateY(-3px); box-shadow: 0 14px 28px rgba(60, 50, 45, 0.08); }
.point__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.point__icon svg { width: 23px; height: 23px; stroke: var(--rose-deep); }
.point__label {
  font-family: var(--round);
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  color: var(--ink-strong);
  text-wrap: balance;        /* 2行になる時は均等に */
  word-break: auto-phrase;   /* 文節境界で折る（未経験者さん / 大歓迎） */
  line-break: strict;
}
/* カードが奇数の時、最後の1枚をスマホ2列で全幅にして孤立させない */
.point__card:nth-child(odd):last-child { grid-column: 1 / -1; }

/* ---------- voice（LINE/DM風チャットUI） ---------- */
.chat { display: flex; flex-direction: column; gap: 1.6rem; max-width: 600px; margin-inline: auto; }
.chat__thread {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem 1.15rem 1.4rem;
  box-shadow: var(--shadow);
}
.chat__name {
  font-family: var(--round);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink-mut);
  text-align: center;
  padding-bottom: 0.85rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.chat__row { display: flex; align-items: flex-start; gap: 0.5rem; margin-top: 0.65rem; }
.chat__row:first-of-type { margin-top: 0; }
.chat__row--out { justify-content: flex-end; }
.chat__row--in  { justify-content: flex-start; }
.chat__avatar {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
}
.chat__avatar svg { width: 25px; height: 25px; fill: var(--rose); }
.chat__stack { display: flex; flex-direction: column; align-items: flex-start; gap: 0.35rem; min-width: 0; max-width: 80%; }
.chat__bubble {
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 0.65em 0.95em;
  border-radius: 15px;
}
.chat__bubble--in {
  background: var(--bg-alt);
  color: var(--ink);
  border: 1px solid var(--line);
  border-top-left-radius: 5px;
  max-width: 100%;
}
.chat__bubble--out {
  background: var(--rose-deep);
  color: #fff;
  border-bottom-right-radius: 5px;
  max-width: 80%;
}

/* チャット：スレッドが入ってきたら、会話が流れるように吹き出しを順次ポップ表示 */
.chat__thread.reveal .chat__row--out .chat__bubble,
.chat__thread.reveal .chat__row--in .chat__avatar,
.chat__thread.reveal .chat__stack .chat__bubble { opacity: 0; }
.chat__thread.is-visible .chat__row--out .chat__bubble        { animation: chatPop .5s var(--ease-spring) .15s both; }
.chat__thread.is-visible .chat__row--in .chat__avatar          { animation: chatPop .45s var(--ease-spring) .34s both; }
.chat__thread.is-visible .chat__stack .chat__bubble:nth-child(1) { animation: chatPop .5s var(--ease-spring) .46s both; }
.chat__thread.is-visible .chat__stack .chat__bubble:nth-child(2) { animation: chatPop .5s var(--ease-spring) .64s both; }

/* auto-phrase 本文を含む flex/grid 子要素は min-width:0 で縮小可能にし、
   min-content 膨張による横溢れ(文節折り返しの落とし穴)を防ぐ */
.faq__item, .message__body { min-width: 0; }

/* ---------- gallery ---------- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);   /* 横に3枚 */
  gap: 0.6rem;
}
.gallery__tile {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.gallery__tile:focus-visible { outline: 2px solid var(--rose-deep); outline-offset: 3px; }
.gallery__grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease-out);
}
.gallery__tile:hover img,
.gallery__tile:active img { transform: scale(1.06); }   /* ホバー/タップでゆっくりズーム(枠内でクリップ) */

/* ギャラリー写真の拡大表示（ライトボックス・JSで生成） */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vw;
  background: rgba(20, 16, 18, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity .32s var(--ease-out), visibility .32s var(--ease-out);
}
.lightbox[data-open="true"] { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: 92vw;
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.92);
  transition: transform .38s var(--ease-spring);
}
.lightbox[data-open="true"] .lightbox__img { transform: scale(1); }
.lightbox__close {
  position: absolute;
  top: max(0.9rem, env(safe-area-inset-top));
  right: max(0.9rem, env(safe-area-inset-right));
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s var(--ease-out);
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.30); }
.lightbox__close:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  .lightbox, .lightbox__img { transition: none; }
  .lightbox__img { transform: none; }
}

/* ---------- access ---------- */
.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-top: 2.2rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.map-link { margin-top: 1rem; text-align: center; font-size: 0.86rem; }
.map-link a { color: var(--rose-deep); font-weight: 600; letter-spacing: 0.03em; }
.info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9rem;
  margin-top: 2.4rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;            /* 角丸で表全体を箱として囲う */
}
.info-table th, .info-table td {
  text-align: left;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: none; }
.info-table th {
  width: 7em;
  background: var(--bg-alt);    /* ラベル列を淡グレー地で囲み、ピンクのチカチカを解消 */
  color: var(--ink-strong);     /* 見出しはチャコール（ピンク廃止） */
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border-right: 1px solid var(--line-soft);
}
.info-table td { color: var(--ink); background: var(--bg-card); }
.info-table a { color: var(--rose-deep); font-weight: 600; }  /* 電話リンクのみ差し色 */

.access__cta-lead {
  margin-top: 2.8rem;
  max-width: 30em;
  margin-inline: auto;
  text-align: center;
  color: var(--ink-mut);
  font-size: 0.92rem;
  line-height: 1.95;
}
.access__cta { margin-top: 1.4rem; text-align: center; }

/* ---------- footer ---------- */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding-block: clamp(3rem, 8vw, 4.5rem);
  text-align: center;
}
.footer__logo { height: 56px; width: auto; margin: 0 auto; display: block; }
.footer__copy {
  margin-top: 2.4rem;
  font-family: var(--latin);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  color: var(--ink-mut);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
}
.footer__copy::before,
.footer__copy::after {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: var(--rose-soft);
}

/* ---------- sticky mobile CTA bar ---------- */
.sticky-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 70;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 0.7rem var(--pad);
  padding-bottom: calc(0.7rem + env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform .35s ease;
}
.sticky-cta[data-show="true"] { transform: translateY(0); }
.sticky-cta .btn { width: 100%; padding-block: 0.95em; }

/* ---------- micro-interactions ---------- */
@keyframes drawerItemIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255, 102, 153, 0.20); }
  50%      { box-shadow: 0 0 0 7px rgba(255, 102, 153, 0.03); }
}
@keyframes faqAnswerIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.faq__item[open] .faq__a { animation: faqAnswerIn .3s ease; }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroBgIn {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
@keyframes chatPop {
  from { opacity: 0; transform: translateY(10px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.point__card:nth-child(2), .gallery__grid > *:nth-child(2) { transition-delay: .08s; }
.point__card:nth-child(3), .gallery__grid > *:nth-child(3) { transition-delay: .16s; }
.point__card:nth-child(4) { transition-delay: .24s; }

/* ---------- focus ---------- */
:focus-visible { outline: 2px solid var(--rose-deep); outline-offset: 3px; }

/* =========================================================
   responsive — tablet / desktop
   ========================================================= */
@media (min-width: 720px) {
  body { font-size: 16px; }
  .hero__actions .btn { width: auto; }
  .faq__list { grid-template-columns: 1fr 1fr; }
  .point__grid { grid-template-columns: repeat(3, 1fr); }
  .point__card:nth-child(odd):last-child { grid-column: auto; }  /* 3列では通常配置(3+2)に戻す */
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .message__grid { grid-template-columns: 0.85fr 1.15fr; align-items: center; }
  .map-embed { aspect-ratio: 16 / 7; }
}

@media (min-width: 960px) {
  .header__inner { height: 78px; }
  .brand__logo { height: 52px; }
  .hero { padding-top: 78px; }
  .drawer { inset: 78px 0 0 0; }
  .nav { display: block; }
  .header__cta { display: inline-flex; }
  .header__actions { display: flex; }
  .burger { display: none; }
  .sticky-cta { display: none; }
  .header__cta.btn { padding: 0.7em 1.6em; font-size: 0.82rem; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .chat__thread .chat__bubble, .chat__thread .chat__avatar { opacity: 1 !important; }
  .section-title em::after { transform: scaleX(1); transition: none; }
  .gallery__tile:hover img, .gallery__tile:active img { transform: none; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ===== 募集要項カード（案C: 2カラム・スペックカード／2026-06-25） ===== */
#recruit{
  --vc-gap:16px;
  box-sizing:border-box;
  font-family:var(--sans);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
}
#recruit *,#recruit *::before,#recruit *::after{box-sizing:border-box;}

/* ---- card ---- */
#recruit .vc-cards{
  display:flex;
  flex-direction:column;
  gap:22px;
}
#recruit .vc-card{
  background:var(--bg-card);
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
#recruit .vc-card:hover{
  transform:translateY(-3px);
}

/* ---- band (top) ---- */
#recruit .vc-band{
  position:relative;
  padding:20px 18px 18px;
  background:var(--blush);
  border-bottom:1px solid var(--rose-soft);
}
#recruit .vc-band::before{
  content:"";
  position:absolute;
  left:0;top:0;bottom:0;
  width:4px;
  background:var(--rose);
}
#recruit .vc-band-top{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:12px;
}
#recruit .vc-job{
  font-family:var(--round);
  font-weight:700;
  font-size:1.18rem;
  line-height:1.2;
  color:var(--ink-strong);
  margin:0;
  letter-spacing:0.02em;
}
#recruit .vc-emp{
  display:inline-flex;
  align-items:center;
  gap:4px;
  background:#fff;
  color:var(--rose-deep);
  font-size:0.66rem;
  font-weight:700;
  line-height:1;
  padding:0.42em 0.8em;
  border-radius:999px;
  border:1px solid var(--rose-soft);
  letter-spacing:0.04em;
  white-space:nowrap;
}

/* ---- pay highlight ---- */
#recruit .vc-pay{
  display:flex;
  align-items:baseline;
  flex-wrap:wrap;
  gap:6px 8px;
}
#recruit .vc-pay-unit{
  font-family:var(--round);
  font-size:0.74rem;
  font-weight:700;
  color:var(--ink-mut);
  letter-spacing:0.04em;
}
#recruit .vc-pay-num{
  font-family:var(--latin);
  font-weight:700;
  font-size:1.5rem;
  line-height:1;
  color:var(--rose-deep);
  letter-spacing:-0.01em;
}
#recruit .vc-pay-num .vc-yen{
  font-family:var(--round);
  font-size:1rem;
  font-weight:700;
  margin-left:1px;
}
#recruit .vc-pay-tail{
  font-family:var(--round);
  font-size:0.82rem;
  font-weight:700;
  color:var(--ink-strong);
  letter-spacing:0.02em;
}
#recruit .vc-pay-note{
  display:block;
  width:100%;
  font-size:0.72rem;
  line-height:1.6;
  color:var(--ink-mut);
  margin-top:8px;
}

/* ---- body ---- */
#recruit .vc-body{
  padding:18px 18px 20px;
}

/* job description line */
#recruit .vc-role{
  display:flex;
  gap:9px;
  font-size:0.8rem;
  line-height:1.75;
  color:var(--ink);
  margin:0 0 16px;
  padding-bottom:16px;
  border-bottom:1px dashed var(--line);
}
#recruit .vc-role .vc-role-ico{
  flex:none;
  margin-top:2px;
  color:var(--rose);
}
#recruit .vc-role b{
  color:var(--ink-strong);
  font-weight:700;
}

/* ---- spec grid (2col) ---- */
#recruit .vc-specs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1px;
  background:var(--line-soft);
  border:1px solid var(--line-soft);
  border-radius:14px;
  overflow:hidden;
}
#recruit .vc-spec{
  background:var(--bg-card);
  padding:11px 13px 12px;
}
#recruit .vc-spec-label{
  display:flex;
  align-items:center;
  gap:5px;
  font-family:var(--round);
  font-size:0.65rem;
  font-weight:700;
  color:var(--rose-deep);
  letter-spacing:0.06em;
  margin:0 0 5px;
}
#recruit .vc-spec-label svg{flex:none;opacity:0.9;}
#recruit .vc-spec-val{
  font-size:0.8rem;
  line-height:1.65;
  color:var(--ink-strong);
  font-weight:500;
}
#recruit .vc-spec-val .vc-strong{
  font-family:var(--latin);
  font-weight:700;
  font-size:0.92rem;
  color:var(--ink-strong);
}
#recruit .vc-spec-sub{
  display:block;
  font-size:0.71rem;
  line-height:1.6;
  color:var(--ink-mut);
  font-weight:400;
  margin-top:2px;
}

/* ---- chip groups (待遇 / 歓迎) ---- */
#recruit .vc-chipblock{
  margin-top:16px;
}
#recruit .vc-chipblock + .vc-chipblock{margin-top:14px;}
#recruit .vc-chip-head{
  display:flex;
  align-items:center;
  gap:6px;
  margin:0 0 9px;
}
#recruit .vc-chip-head .vc-line{
  flex:1;
  height:1px;
  background:var(--line);
}
#recruit .vc-chip-title{
  font-family:var(--round);
  font-size:0.7rem;
  font-weight:700;
  letter-spacing:0.08em;
  color:var(--ink-mut);
}
#recruit .vc-chips{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
}
#recruit .vc-chip{
  display:inline-flex;
  align-items:center;
  font-size:0.71rem;
  font-weight:500;
  line-height:1.3;
  color:var(--ink);
  background:var(--bg-alt);
  border:1px solid var(--line);
  border-radius:999px;
  padding:0.42em 0.82em;
  transition:transform .35s var(--ease-spring), background .3s var(--ease-out), border-color .3s var(--ease-out);
}
#recruit .vc-chip:hover{
  transform:translateY(-2px);
  background:var(--blush);
  border-color:var(--rose-soft);
}

/* >=440px : breathing room */
@media (min-width:440px){
  #recruit .vc-band{padding:22px 22px 20px;}
  #recruit .vc-body{padding:20px 22px 22px;}
  #recruit .vc-pay-num{font-size:1.7rem;}
  #recruit .vc-job{font-size:1.3rem;}
}

/* >=720px : cards side by side */
@media (min-width:720px){
  #recruit .vc-cards{
    display:grid;
    grid-template-columns:1fr 1fr;
  }
  /* subgrid で「給与帯(行1)」と「本体(行2)」の高さを2カード間で揃える */
  #recruit .vc-card{
    display:grid;
    grid-template-rows:subgrid;
    grid-row:span 2;
    min-width:0;
  }
}

@media (prefers-reduced-motion:reduce){
  #recruit .vc-card,#recruit .vc-chip{transition:none;}
  #recruit .vc-card:hover,#recruit .vc-chip:hover{transform:none;}
}

/* 募集要項: 給与の次に置く強調コール（キャスト=シフト柔軟 / ホール=未経験払拭。2026-04イーアイデムアンケート根拠） */
#recruit .vc-pitch{
  background:var(--blush);
  border:1px solid var(--rose-soft);
  border-radius:13px;
  padding:13px 15px 14px;
  margin-bottom:16px;
}
#recruit .vc-pitch-label{
  display:flex; align-items:center; gap:6px;
  font-family:var(--round); font-size:0.74rem; font-weight:700;
  letter-spacing:0.06em; color:var(--rose-deep); margin:0 0 6px;
}
#recruit .vc-pitch-label svg{ flex:none; }
#recruit .vc-pitch-lead{
  font-size:0.92rem; line-height:1.6; color:var(--ink-strong); font-weight:500; margin:0;
}
#recruit .vc-pitch-lead b{ font-weight:700; color:var(--rose-deep); }
#recruit .vc-pitch-sub{
  font-size:0.76rem; line-height:1.7; color:var(--ink-mut); margin:6px 0 0;
}
/* 募集要項: 当たり前の条件（応募資格20歳以上）は控えめな注記へ降格 */
#recruit .vc-note{
  margin-top:14px;
  font-size:0.72rem;
  line-height:1.6;
  color:var(--ink-mut);
}
