@charset "UTF-8";
/* ============================================================
   Moon Stella v2 — Moonlit Bedroom「もこもこ部屋着×月あかりの寝室」
   D案カンプ(2026-07-19 オーナー確定)を全ページ共通システム化
   - 実写ヒーローを基準に、装飾はロゴ・写真を除きSVG/CSSで統一
   - 見出し: Hachi Maru Pop(意匠限定・本文禁止)/ 本文: Kosugi Maru
   - 3色規律: 夜空ネイビー階調(地)/ベビーブルー+星あかりクリーム(物語色)
     /紙色・紺(可読文字色)。ミントは「光る部屋」挿絵内限定
   ============================================================ */

:root{
  --night-deep:#172239;
  --night:#25324c;
  --night-mid:#344462;
  --night-info:#efe5df;
  --night-sys:#e7edf4;
  --babyblue:#b9c8df;
  --babyblue-light:#dfe8f2;
  --babyblue-pale:#edf2f7;
  --blush:#e7c8cf;
  --blush-light:#f2dfe1;
  --cream:#e8c96f;
  --cool:#edf0f6;   /* b-window の終端 */
  --sand:#efe5df;   /* b-note の面色 */
  --paper:#fbf4e8;
  --paper-card:#fffaf1;
  --wall:#eadfce;
  --frame:#fff9ee;
  --ink:#303a52;
  --ink-soft:#4c566d;
  --steel:#536b8d;
  --steel-light:#8295b1;
  --head-h:58px;
}

*{margin:0;padding:0;box-sizing:border-box;}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;}
section[id]{scroll-margin-top:var(--head-h);}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
}
body{
  font-family:"Kosugi Maru","Hiragino Maru Gothic ProN",sans-serif;
  background:
    radial-gradient(circle 1.4px at 20% 30%, rgba(242,217,140,.28) 1.3px, transparent 1.5px),
    radial-gradient(circle 1.2px at 70% 60%, rgba(169,198,228,.22) 1.1px, transparent 1.3px),
    radial-gradient(circle 1px  at 45% 85%, rgba(242,217,140,.18) .9px, transparent 1.1px),
    var(--paper);
  background-size:210px 190px, 260px 230px, 180px 160px, auto;
  color:var(--ink);
  line-height:1.9;
}
h1,h2,h3,.disp{font-family:"Hachi Maru Pop","Kosugi Maru",sans-serif;font-weight:400;text-wrap:balance;}
p,li,dd{ text-wrap:pretty; }
img{max-width:100%;display:block;}
svg{display:block;}
a{color:inherit;}
a,button,summary{touch-action:manipulation;-webkit-tap-highlight-color:rgba(83,107,141,.16);}

.skip-link{
  position:fixed;z-index:100;
  top:8px;left:8px;
  padding:10px 14px;
  border-radius:10px;
  background:var(--night-deep);color:var(--paper);
  text-decoration:none;
  transform:translateY(-150%);
  transition:transform .18s ease;
}
.skip-link:focus{transform:translateY(0);}
@media (prefers-reduced-motion:reduce){
  .skip-link,.head-cta,.heroNav a,.cta,.cta-line{transition:none!important;}
}

/* JSなし環境では全表示(リビール・入場演出はJS時のみ) */
html.js .rev{opacity:0;transform:translateY(14px);transition:opacity .7s ease,transform .7s ease;}
html.js .rev.is-in,html.js.rev-fallback .rev{opacity:1;transform:none;}
@media (prefers-reduced-motion:reduce){
  html.js .rev{transform:none;transition-duration:.3s;}
}

/* ==== 世界観のモーション ==================================================
   指示書の縛りを4つ同時に満たす:
     ①transform / opacity のみ(top/left/width/height/box-shadow を動かさない)
     ②光彩・グロー・虹色・キラキラGIFは使わない
     ③「見せ場以外は即表示」——全要素ふわふわフェードは禁止。動かす対象を絞る
     ④prefers-reduced-motion は「消す」でなく「弱める」。ただし遅延は0へ戻す
   反復モーションは大きな挿絵だけに限り、画面外では止める(.is-breathing をJSが外す)
   ------------------------------------------------------------------------ */

/* もこもこが呼吸する。この店の主題そのものなので、ここだけは動かす価値がある */
@keyframes ms-breathe{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(var(--breathe,-4px));}
}
.is-breathing{animation:ms-breathe 6.4s ease-in-out infinite;will-change:transform;}

/* 順に届く感じを出す列。「ひとつずつお答えします」という文言と動きを一致させる。
   容器は .rev のままにして is-in を受け取るが、容器自身は動かさない
   (容器と子の両方が動くと移動量が二重になる) */
html.js .rev.rev-stagger{opacity:1;transform:none;}
html.js .rev-stagger > li{opacity:0;transform:translateY(11px);transition:opacity .55s ease,transform .55s ease;}
html.js .rev-stagger.is-in > li{opacity:1;transform:none;}
html.js .rev-stagger.is-in > li:nth-child(2){transition-delay:.07s;}
html.js .rev-stagger.is-in > li:nth-child(3){transition-delay:.14s;}
html.js .rev-stagger.is-in > li:nth-child(4){transition-delay:.21s;}
html.js .rev-stagger.is-in > li:nth-child(5){transition-delay:.28s;}
html.js .rev-stagger.is-in > li:nth-child(6){transition-delay:.35s;}

@media (prefers-reduced-motion:reduce){
  /* 呼吸は止めずに弱める(振幅を約1/3・周期を長く) */
  .is-breathing{--breathe:-1.5px;animation-duration:11s;}
  /* 動かないのに待たされる、が最悪。段差の遅延は必ず0へ戻す */
  html.js .rev-stagger > li{transform:none;transition-duration:.3s;}
  html.js .rev-stagger.is-in > li{transition-delay:0s!important;}
  /* 停止リストからの漏れを補修 */
  .map-actions a,.introLoad.is-done,.tel-link{transition:none!important;}
}

/* ==== ヘッダー(左: ロゴ筆記体 / 右: 2ボタン) ==== */
.siteHead{
  position:fixed;
  top:0;left:0;right:0;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  height:var(--head-h);
  padding:0 10px 0 14px;
  background:rgba(250,242,228,.96);
  border-bottom:1px solid rgba(48,58,82,.10);
  box-shadow:0 4px 18px rgba(48,58,82,.06);
}
/* ロゴリンクは画像の高さそのままだと実効20pxで、触れる領域が小さすぎた。
   幅は変えずに高さだけヘッダー内で44px確保する */
.head-mark{flex:none;display:inline-flex;align-items:center;min-height:44px;min-width:0;}
.head-mark img{width:min(96px,25vw);height:auto;}
.head-actions{display:flex;align-items:center;gap:6px;flex:none;}
/* 触れる高さを44pxにする。ただし文字サイズは上げない——375px幅で残り余白が
   27pxしかなく、1文字でも増やすと横に溢れる(しかも .page が溢れを隠すので気付けない)。
   高さだけを稼ぐので幅は増えない */
.head-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  font-size:10px;
  letter-spacing:.02em;
  padding:0 10px;
  border-radius:999px;
  text-decoration:none;
  white-space:nowrap;
  transition:transform .18s ease,box-shadow .18s ease;
}
.head-cta--main{background:var(--blush-light);color:var(--ink);box-shadow:0 3px 10px rgba(48,58,82,.12);}
.head-cta--sub{background:var(--night);color:var(--paper);}
.head-cta:hover{transform:translateY(-2px);}

/* ==== ヒーロー周辺ナビ(丸チップ) ==== */
.heroNav{
  display:flex;
  flex-wrap:nowrap;
  justify-content:center;
  gap:4px;
  background:var(--paper);
  padding:14px 8px 16px;
}
.heroNav a{
  flex:1 1 0;
  min-width:0;
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--paper-card);
  color:var(--ink);
  border-radius:999px;
  padding:8px 4px;
  font-size:clamp(10px,3vw,12px);
  letter-spacing:.02em;
  text-decoration:none;
  text-align:center;
  white-space:nowrap;
  border:1px solid rgba(83,107,141,.14);
  box-shadow:0 4px 12px rgba(48,58,82,.10);
  transition:background-color .18s ease,color .18s ease;
}
.heroNav a:hover{background:var(--blush-light);color:var(--night-deep);}

/* overflow:hidden はスクロールコンテナを作るため、
   ①子孫の position:sticky が死ぬ ②横溢れを黙って隠して検証で発覚しない、の二重の害があった。
   clip なら溢れは止めつつスクロールコンテナを作らない */
.page{overflow-x:clip;padding-top:var(--head-h);}

/* ==== 入場演出: 三日月が満ちる 0→100% ローダー(JS時のみ・初回のみ) ==== */
.introLoad{
  position:fixed;inset:0;z-index:90;
  display:none;
  background:
    radial-gradient(circle 1.4px at 22% 28%, rgba(242,217,140,.28) 1.3px, transparent 1.5px),
    radial-gradient(circle 1.2px at 74% 62%, rgba(169,198,228,.22) 1.1px, transparent 1.3px),
    var(--night-deep);
  background-size:210px 190px, 260px 230px, auto;
}
html.js .introLoad.is-armed{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:20px;
}
.intro-moon{
  position:relative;
  width:132px;height:132px;
  transform:rotate(-14deg);
}
.intro-moon svg{display:block;}
.im-base{position:absolute;inset:0;width:132px;height:132px;}
/* 満ちる部分: 下から height が育ち、中のSVGは下端固定で切り抜かれる */
.im-fillwrap{
  position:absolute;left:0;right:0;bottom:0;
  height:calc(var(--p,0) * 1.32px);
  overflow:hidden;
}
.im-fill{position:absolute;left:0;bottom:0;width:132px;height:132px;}
.intro-pct{
  font-size:13px;
  letter-spacing:.3em;
  text-indent:.3em;
  color:var(--steel-light);
  font-variant-numeric:tabular-nums;
}
.introLoad.is-done{opacity:0;transition:opacity .35s ease;pointer-events:none;}

/* ==== 共通セクション部品 ==== */
section{position:relative;}
/* 断点が960pxの一つしか無かったため、768px前後ではモバイル用の単列が横へ伸び切り、
   一行が60字を超えて読めなくなっていた。基準の最大幅を1行入れて中間幅を救う
   (≥960px では .narrow/.mid/.wide が各々の最大幅で上書きする) */
.inner{padding:56px 26px 64px;max-width:640px;margin-inline:auto;}
.label{
  display:flex;align-items:center;justify-content:center;gap:8px;
  font-size:11px;letter-spacing:.32em;text-indent:.32em;
}
.label svg{
  width:12px;height:12px;flex:none;
  fill:currentColor!important;
  transform:rotate(10deg)!important;
}
.h2{
  margin-top:15px;text-align:center;
  font-size:22.5px;line-height:1.74;letter-spacing:.035em;
}
/* ==== 帯の3ロールと継ぎ目 ====================================================
   面は3種類しか使わない。1ページに各ロール1回まで(同一ロールの再登場禁止)。

     ロール      面のなりたち              下端の色      役割
     ---------------------------------------------------------------------
     b-glow      あかりの当たった紙        var(--paper)  主役。読ませる面
     b-window    暖→涼へ落ちる縦グラデ     var(--cool)   宛先が切り替わる合図
     b-note      砂色の平面+星ドット       var(--sand)   控えめな覚え書きの面

   継ぎ目(.scallop)の色は「直上の面の下端色」でなければならない。
   以前はHTML側に16進数を9箇所直書きしていたため、セクションを並べ替えると
   全継ぎ目の前提が同時に崩れた。いまは seam-* クラスで宣言する:

     seam-paper → 直上が b-glow(または紙のheroNav)のとき
     seam-cool  → 直上が b-window のとき
     seam-sand  → 直上が b-note のとき
     クラス無し → 直上と同じ面を継ぐとき(継ぎ目SVG自体を置かない)

   下端が単色でない対角グラデーションは、平坦な継ぎ目と原理的に一致しない。
   ゆえに b-window / .pageHero はいずれも 180deg(縦)に限定する。
   実装後は必ずブラウザ上で「継ぎ目色 == 直上の下端色」を自動照合すること。
   ------------------------------------------------------------------------- */
.scallop{width:100%;height:26px;margin-bottom:-1px;}
.scallop path{fill:var(--seam,var(--paper));}
.seam-paper{--seam:var(--paper);}
.seam-cool{--seam:var(--cool);}
.seam-sand{--seam:var(--sand);}

.b-glow{background:radial-gradient(120% 70% at 50% 0%, var(--paper-card) 0%, var(--paper) 60%);color:var(--ink);}
.b-window{background:linear-gradient(180deg,var(--blush-light) 0%,var(--cool) 100%);color:var(--ink);}
.b-note{background:
  radial-gradient(circle 1.3px at 18% 26%, rgba(83,107,141,.12) 1.2px, transparent 1.4px),
  radial-gradient(circle 1.1px at 74% 58%, rgba(231,200,207,.32) 1px, transparent 1.2px),
  var(--sand);
  background-size:180px 160px, 230px 205px, auto;
  color:var(--ink);}
.b-glow .label,.b-window .label{color:var(--steel);}
/* 砂色の面(#efe5df)では --steel が 4.39:1 でAA未達。紙色の面(4.98:1)とは分ける */
.b-note .label{color:var(--ink-soft);}
.b-glow .h2,.b-window .h2,.b-note .h2{color:var(--ink);}

/* ==== FV: 実写ヒーロー全幅(2026-07-19 オーナー指示で転換) ==== */
.fv{
  position:relative;
  height:calc(82svh - var(--head-h));
  min-height:480px;
  overflow:hidden;
}
.fv-bg{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  object-position:72% 30%;
}
/* 可読性スクリム(モバイル: 下から壁色) */
.fv::before{
  content:"";
  position:absolute;inset:0;
  z-index:1;
  background:linear-gradient(0deg,
    rgba(236,223,200,.94) 0%,
    rgba(236,223,200,.72) 22%,
    rgba(236,223,200,0) 52%);
  pointer-events:none;
}
.fv-copy{
  position:absolute;
  z-index:2;
  left:0;right:0;bottom:26px;
  text-align:center;
  padding:0 22px;
}
.fv-copy h1{
  position:relative;
  display:inline-block;
}
/* 指示書§5 最警戒アンチパターン=「キラキラGIF・光彩・グロー・虹色」。
   ここには金色の0距離グローが2枚+背後の光だまりが載っていて明確に抵触していた。
   撤去し、紙に落ちる影1枚だけにする。ロゴの視認性は背景側のスクリム(.fv::before)が担う。
   指示書§2の恒久NG「ロゴへの背景箱・パネル」にも該当しないよう、面は敷かない */
.fv-logo{
  position:relative;
  width:min(250px,64vw);height:auto;
  margin:0 auto;
  filter:drop-shadow(0 3px 7px rgba(48,58,82,.26));
}
/* nowrap は「溢れたら無言で切れる」罠。通常幅では1行に収まる寸法のまま、
   極小幅では折り返させる(切られるより折り返すほうが害が小さい) */
.fv-sub{
  margin-top:12px;
  font-size:clamp(12px,3.6vw,13.5px);line-height:2.1;
  letter-spacing:.04em;color:var(--ink-soft);
  text-wrap:balance;
}
.fv-twinkles{
  position:relative;
  display:inline-block;
  width:24px;height:18px;
  margin:0 0 -4px 5px;
}
.fv-sub .tw{
  position:absolute;
  fill:#e0b23a;
  transform-box:fill-box;
  transform-origin:center;
  animation:twinkle 1.35s ease-in-out infinite;
}
.fv-sub .tw--main{left:0;top:0;width:16px;height:16px;}
.fv-sub .tw--mini{right:0;top:1px;width:9px;height:9px;animation-delay:.55s;}
@keyframes twinkle{
  0%,100%{opacity:.3;transform:scale(.68) rotate(-8deg);}
  42%{opacity:1;transform:scale(1.3) rotate(14deg);}
  68%{opacity:.62;transform:scale(.88) rotate(24deg);}
}
@media (prefers-reduced-motion:reduce){
  .fv-sub .tw{animation:none;opacity:1;transform:none;}
}

/* ==== 下層ページ用ヒーロー(窓の小型版) ==== */
/* 下端を単色 var(--paper) に確定させる(対角だと継ぎ目と原理的に合わない) */
.pageHero{
  position:relative;
  background:
    linear-gradient(180deg,rgba(251,244,232,0) 46%,var(--paper) 100%),
    radial-gradient(rgba(83,107,141,.17) 1.2px, transparent 1.4px),
    linear-gradient(180deg,#f7eadf 0%,var(--paper) 100%);
  background-size:auto,26px 26px,auto;
  padding:34px 22px 42px;
  text-align:center;
  color:var(--ink);
}
.pageHero .ph-label{
  font-size:11px;letter-spacing:.32em;text-indent:.32em;color:var(--steel);
}
.pageHero h1{
  margin-top:9px;font-size:25.5px;line-height:1.68;letter-spacing:.045em;
}
.pageHero .ph-moon{
  width:34px;height:34px;fill:var(--blush);
  margin:0 auto 8px;transform:rotate(-14deg);
  filter:drop-shadow(0 3px 0 rgba(83,107,141,.12));
}

/* ==== 求人ページ: 面は hero → b-window → b-note → b-glow の4枚だけ ====
   帯ロールは各1回。働き方と体験入店は「仕組みの説明」として1枚の面を共有し、
   あいだに継ぎ目を打たない(層の数を数えさせないため) */
.recruit-page .ph-lead{
  margin-top:18px;
  font-size:13px;line-height:2;letter-spacing:.03em;
  color:var(--ink-soft);
}

/* ==== 汎用: 説明ブロック・チップ・CTA ==== */
/* 行間2.15は空きすぎて視線が迷子になる。段落として締める */
.body-copy{
  margin-top:22px;font-size:14.5px;line-height:2.0;
  letter-spacing:.03em;color:var(--ink-soft);
}
/* 挿絵の寸法はCSSで持つ。以前はHTMLのインラインstyleで固定されていて、
   PC側の .concept-sec .c-media{width:100%} を潰し、左の列が軽くなっていた */
.c-media{width:min(230px,70%);margin:26px auto 0;}
.concept-points{margin-top:22px;display:grid;gap:12px;list-style:none;}
.concept-points li{
  display:grid;grid-template-columns:76px 1fr;gap:14px;align-items:center;
  padding:14px 16px;border:1px solid rgba(83,107,141,.12);border-radius:18px;
  background:rgba(255,253,248,.72);box-shadow:0 7px 18px rgba(34,51,79,.08);
}
.concept-points svg{width:76px;height:58px;}
.concept-points h3{font-size:14.5px;letter-spacing:.06em;color:var(--ink);}
.concept-points p{margin-top:5px;font-size:12.5px;line-height:1.85;color:var(--ink-soft);}
.b-note .body-copy{color:var(--ink-soft);}
.chips{
  margin-top:16px;display:flex;flex-wrap:wrap;justify-content:center;gap:8px;
  list-style:none;
}
.chip{
  background:var(--babyblue-pale);color:#354d70;border-radius:999px;
  padding:7px 14px;font-size:12px;letter-spacing:.05em;
}
.recruit-benefits{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;
}
.recruit-benefits .chip{
  display:flex;align-items:center;justify-content:center;min-height:36px;
  padding:7px 8px;white-space:nowrap;
}
.b-window .chip,.b-glow .chip{
  background:var(--paper-card);color:var(--ink);
  box-shadow:0 3px 10px rgba(34,51,79,.10);
}
.cta{
  display:flex;align-items:center;justify-content:center;gap:9px;
  width:100%;max-width:300px;margin:28px auto 0;
  background:var(--cream);color:var(--ink);
  text-decoration:none;text-align:center;
  padding:16px 18px;border-radius:999px;
  font-family:"Hachi Maru Pop","Kosugi Maru",sans-serif;
  font-size:16.5px;letter-spacing:.05em;
  border:1px solid rgba(83,107,141,.10);
  box-shadow:0 10px 22px rgba(48,58,82,.16);
  transition:transform .18s ease, box-shadow .18s ease;
}
.cta svg{width:16px;height:16px;fill:var(--ink);flex:none;}
.cta:hover{transform:translateY(-3px);box-shadow:0 16px 28px rgba(48,58,82,.22);}
.cta-line{
  display:flex;align-items:center;justify-content:center;gap:10px;
  width:100%;max-width:300px;margin:14px auto 0;
  background:var(--paper-card);color:var(--ink);
  text-decoration:none;padding:13px 18px;border-radius:999px;
  font-size:14px;letter-spacing:.04em;
  box-shadow:0 6px 16px rgba(34,51,79,.14);
  border:1px solid rgba(83,107,141,.12);
  transition:transform .18s ease, box-shadow .18s ease;
}
.cta-line svg{width:26px;height:26px;flex:none;}
.cta-line:hover{transform:translateY(-2px);box-shadow:0 10px 20px rgba(34,51,79,.2);}
/* リンク先が未確定のボタン。実際に使えるLINEより目立たせない。
   金色の主ボタンのまま置くと「一番押したくなるボタンが押せない」という倒錯になる */
.cta--pending{
  background:transparent;
  color:var(--steel);
  border:1px dashed rgba(83,107,141,.44);
  box-shadow:none;
  font-size:14.5px;
}
.cta--pending svg{fill:var(--steel-light);}
.cta--pending:hover{transform:none;box-shadow:none;background:rgba(255,253,248,.55);}
.cta-note{margin-top:14px;text-align:center;font-size:10.5px;color:var(--steel);}
/* 準備中ボタンを押した時の合図(モーダルの alert は使わない) */
.cta-note.is-flash{animation:noteFlash 1.5s ease;}
@keyframes noteFlash{
  0%,100%{color:var(--steel);}
  16%{color:#8a5b68;}
  52%{color:#8a5b68;}
}
@media (prefers-reduced-motion:reduce){
  .cta-note.is-flash{animation:none;text-decoration:underline;text-underline-offset:3px;}
}
.b-note .cta-note{color:var(--steel);}
.cta-row{margin-top:16px;}
a[data-apply-link]{cursor:pointer;}

/* ==== Moonlit Bedroom 共通挿絵: 刺繍ワッペンのような輪郭と布色 ==== */
.soft-art{overflow:visible;filter:drop-shadow(0 8px 8px rgba(48,58,82,.08));}
.soft-art :is(path,rect,circle,ellipse):not([opacity]){
  stroke:rgba(48,58,82,.68);
  stroke-width:1.65;
  stroke-linecap:round;
  stroke-linejoin:round;
  paint-order:stroke fill;
}
.soft-art [fill="#aac6e4"]{fill:var(--blush);}
.soft-art [fill="#cfe0ef"],.soft-art [fill="#dfe8f2"]{fill:var(--blush-light);}
.soft-art [fill="#f4e7cd"]{fill:#f3dfd4;}
.soft-art [fill="#fbf6ea"]{fill:var(--paper-card);}
.soft-art [fill="#f2d98c"]{fill:var(--cream);}
.soft-art [fill="#8fcfae"]{fill:var(--babyblue);}
.soft-art [fill="#d9bf8d"]{fill:#d8b7a4;}
.soft-art [fill="#22334f"]{fill:var(--ink);}
.soft-art [fill="#33507c"],.soft-art [fill="#56779c"]{fill:var(--steel);}
.soft-art .stitch{
  fill:none;
  stroke:rgba(255,250,241,.92);
  stroke-width:1.45;
  stroke-dasharray:3 3;
  stroke-linecap:round;
  opacity:.95;
}
/* ==== 安心材料(不安→解消の対句) ==== */
.ease-list{margin-top:26px;list-style:none;display:grid;gap:12px;}
.ease-list li{
  background:var(--paper-card);
  border-radius:18px;
  padding:16px 18px;
  color:var(--ink);
  box-shadow:0 6px 18px rgba(34,51,79,.12);
}
.ease-list .e-worry{
  display:block;font-size:11.5px;color:var(--steel);letter-spacing:.04em;
}
/* 指示書§5「Hachi Maru Pop は見出し・意匠限定、本文禁止」に抵触していた箇所。
   ここは求人ページの主役=不安への「答え」の本文であり、丸ポップの字形では
   「ありません」が「ありきせん」と読めてしまう(ま→き、の→ひ の誤読)。
   本文書体へ戻し、目立たせるのは字面の大きさと濃さで行う */
.ease-list .e-ans{
  display:block;margin-top:5px;
  font-size:15px;line-height:1.85;letter-spacing:.01em;
  color:var(--ink);
}

/* ==== ステップ(体験入店の流れ) ==== */
.steps{margin-top:28px;list-style:none;display:grid;gap:0;}
.steps li{
  position:relative;
  padding:0 0 26px 56px;
}
.steps li::before{
  content:"";position:absolute;left:19px;top:44px;bottom:4px;width:2px;
  background:rgba(86,119,156,.35);border-radius:1px;
}
.steps li:last-child::before{display:none;}
.steps .s-no{
  position:absolute;left:0;top:0;
  width:40px;height:40px;border-radius:50%;
  background:var(--cream);color:var(--ink);
  display:flex;align-items:center;justify-content:center;
  font-family:"Hachi Maru Pop","Kosugi Maru",sans-serif;
  font-size:15px;
}
.steps .s-title{
  font-family:"Hachi Maru Pop","Kosugi Maru",sans-serif;
  font-size:15.5px;color:var(--ink);line-height:1.6;padding-top:6px;
}
.steps .s-body{margin-top:6px;font-size:13px;line-height:2;color:var(--ink-soft);}

/* ==== FAQ ==== */
.faq{margin-top:26px;display:grid;gap:12px;}
.faq details{
  background:var(--paper-card);
  border-radius:16px;
  color:var(--ink);
  box-shadow:0 5px 16px rgba(34,51,79,.10);
  overflow:hidden;
}
.faq summary{
  list-style:none;cursor:pointer;
  display:flex;align-items:baseline;gap:10px;
  padding:14px 18px;
  font-size:13.5px;line-height:1.8;
}
.faq summary::-webkit-details-marker{display:none;}
.faq summary::before{
  content:"Q";flex:none;
  font-family:"Hachi Maru Pop","Kosugi Maru",sans-serif;
  color:var(--steel);
}
.faq .a{
  padding:0 18px 16px 40px;
  font-size:13px;line-height:2;color:var(--ink-soft);
}
.faq-block{
  margin-top:38px;padding-top:32px;
  border-top:1px dashed rgba(83,107,141,.28);
}
.faq-heading{
  margin-top:12px;text-align:center;
  font-size:18px;line-height:1.8;letter-spacing:.04em;
}
.faq--compact{margin-top:20px;}

/* ==== インフォメーション ==== */
.info dl{margin-top:22px;}
.info .row{
  display:flex;gap:16px;padding:13px 2px;
  border-bottom:1px dashed rgba(83,107,141,.24);
}
/* 砂色の面(#efe5df)の上で --steel は 4.4:1 でAAに届かない。--ink-soft(5.6:1)へ */
.info dt{
  flex:none;min-width:66px;padding-top:2px;
  font-size:12px;letter-spacing:.18em;color:var(--ink-soft);
}
.info dd{
  font-size:13.5px;line-height:1.9;letter-spacing:.02em;color:var(--ink);
}
/* 電話番号は「押せる」と分かる形にする(下線+44pxの触れる高さ)。
   ここはシステム欄から「お電話でお尋ねください」と送り込む着地点でもある */
.tel-link{
  display:inline-flex;align-items:center;
  min-height:44px;
  color:var(--ink);
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:4px;
  letter-spacing:.06em;
}
.map{
  position:relative;
  margin-top:26px;
  padding:8px;
  border:1px solid rgba(83,107,141,.18);border-radius:22px;
  background:rgba(255,253,248,.72);
  box-shadow:0 14px 38px rgba(34,51,79,.1);
  overflow:hidden;
}

/* キーボード操作でもホバーと同等以上に現在地を示す */
:is(a,summary):focus-visible{
  outline:3px solid #8a5b68;
  outline-offset:4px;
  border-radius:10px;
}
/* 埋め込み地図はスクロールを奪う(特にスマホの指スクロールが地図に吸われる)。
   操作を無効にして位置の把握だけに使い、拡大・経路は直下の2ボタンに委ねる */
.map iframe{display:block;width:100%;height:280px;border:0;border-radius:15px;pointer-events:none;}
/* 地図の上に敷く透明リンク。iframeの pointer-events:none で死んでいる
   Google純正ボタンの領域も含めて拾い、本物の地図へ送る */
.map-veil{position:absolute;left:8px;right:8px;top:8px;height:280px;border-radius:15px;display:block;}
.map-veil:focus-visible{outline:3px solid #8a5b68;outline-offset:2px;}
.map-actions{display:grid;grid-template-columns:1fr 1fr;gap:8px;padding-top:8px;}
.map-actions a{
  min-height:48px;padding:12px 10px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;text-align:center;
  background:var(--night-deep);color:#fff;text-decoration:none;
  font-size:12px;line-height:1.45;letter-spacing:.08em;
  box-shadow:0 8px 18px rgba(34,51,79,.12);
  transition:transform .18s ease,box-shadow .18s ease,background-color .18s ease;
}
.map-actions a.route{background:var(--blush);color:var(--night-deep);}
@media (hover:hover){
  .map-actions a:hover{transform:translateY(-2px);box-shadow:0 11px 22px rgba(34,51,79,.18);}
}

/* ==== フッター ==== */
footer{
  background:var(--night-deep);
  text-align:center;
  padding:44px 26px 40px;
}
.foot-mark{
  display:flex;align-items:center;justify-content:center;gap:10px;color:var(--paper);
}
.foot-mark svg{width:17px;height:17px;fill:var(--cream);transform:rotate(-14deg);}
.foot-wordmark{
  width:150px;height:auto;
  filter:brightness(0) invert(.95);
  opacity:.92;
}
.foot-nav{
  margin-top:20px;
  display:flex;flex-wrap:wrap;justify-content:center;gap:6px 20px;
  list-style:none;
}
/* 文字の高さ(12px)がそのまま触れる領域になっていた。行の高さで44pxを確保する */
.foot-nav a{
  display:inline-flex;align-items:center;min-height:44px;
  font-size:11.5px;letter-spacing:.1em;color:var(--steel-light);text-decoration:none;
}
.foot-nav a:hover{color:var(--paper);}
/* #5d729a は夜紺の上で 3.4:1 しかなくAA未達。--steel-light(5.2:1)へ */
/* 直上にあった注記行を廃止したため、ナビとの間隔をそのぶん取り直す */
.foot-copy{margin-top:22px;font-size:10.5px;letter-spacing:.1em;color:var(--steel-light);}

/* ==================== PC(≥960px) ==================== */
@media (min-width:960px){
  .recruit-benefits{grid-template-columns:repeat(4,minmax(0,1fr))}
  :root{--head-h:64px;}
  .siteHead{padding:0 22px 0 36px;}
  .head-mark img{width:170px;}
  .head-actions{gap:10px;}
  .head-cta{font-size:12.5px;padding:10px 18px;letter-spacing:.06em;}

  /* TOP: ナビチップを写真の裾に重ねる */
  .heroNav{
    background:transparent;
    position:relative;
    z-index:3;
    margin-top:-70px;
    padding:0;
    gap:12px;
  }
  .heroNav a{
    flex:0 0 auto;
    background:rgba(251,246,233,.9);
    backdrop-filter:blur(6px);
    padding:11px 24px;
    font-size:13px;
  }

  .fv{
    height:calc(88vh - var(--head-h));
    min-height:560px;
  }
  .fv-bg{object-position:62% 30%;}
  /* PC: 左からのスクリムに切替(ロゴを左に置くため) */
  .fv::before{
    background:linear-gradient(90deg,
      rgba(238,226,203,.94) 0%,
      rgba(238,226,203,.82) 24%,
      rgba(238,226,203,.38) 42%,
      rgba(238,226,203,0) 60%);
  }
  .fv-copy{
    left:6vw;right:auto;bottom:auto;
    top:50%;
    transform:translateY(-50%);
    width:360px;
    padding:0;
  }
  .fv-logo{width:300px;}
  .fv-sub{font-size:15px;margin-top:20px;}
  .fv-twinkles{width:27px;height:20px;margin-bottom:-5px;}
  .fv-sub .tw--main{width:18px;height:18px;}
  .fv-sub .tw--mini{width:10px;height:10px;}

  .pageHero{padding:52px 22px 52px;}
  .pageHero h1{font-size:34px;}

  .concept-sec .inner{
    display:grid;grid-template-columns:320px 1fr;
    column-gap:72px;row-gap:8px;
    grid-template-areas:"media head" "media body";
    align-items:center;
    max-width:940px;margin:0 auto;padding:92px 40px;
  }
  .concept-sec .c-head{grid-area:head;align-self:end;}
  .concept-sec .c-head .label{justify-content:flex-start;text-indent:0;}
  .concept-sec .c-head .h2{text-align:left;font-size:29px;}
  .concept-sec .c-media{grid-area:media;width:100%;max-width:300px;margin:0 auto;}
  .concept-sec .c-copy{grid-area:body;align-self:start;}
  .concept-sec .body-copy{margin-top:4px;font-size:14.5px;}
  /* 2列にすると文字列の幅が118pxしか残らず、1行9字弱で「のん/びり」のように
     語が割れる。日本語本文の可読な行長に届かないため、PCでは1列にして幅を確保する */
  .concept-points{grid-template-columns:1fr;gap:10px;}
  .concept-points li{grid-template-columns:74px 1fr;padding:14px 18px;}
  .concept-points svg{width:74px;height:58px;}

  .narrow .inner{max-width:680px;margin:0 auto;padding:92px 40px;}
  .mid .inner{max-width:780px;margin:0 auto;padding:92px 40px;}
  .wide .inner{max-width:940px;margin:0 auto;padding:92px 40px;}
  .mid .h2,.narrow .h2,.wide .h2{font-size:29px;}

  .cta-row{display:flex;justify-content:center;align-items:stretch;gap:18px;margin-top:32px;}
  .cta-row .cta,.cta-row .cta-line{margin:0;max-width:290px;flex:1;}

  .ease-list{grid-template-columns:repeat(2,1fr);gap:16px;}
  .faq-block{max-width:640px;margin:46px auto 0;padding-top:38px;}
  .faq-heading{font-size:21px;}
  .steps{max-width:560px;margin-left:auto;margin-right:auto;margin-top:34px;}

  .info-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:start;}
  .info-grid .map{margin-top:22px;}
  .info-grid .map iframe{height:310px;}
  .info-grid .map-veil{height:310px;}

  .foot-wordmark{width:180px;}
}
