@charset "UTF-8";
/* =====================================================================
   通勤エリア 新デザイン  style.css
   設計メモ：
   ・モバイルファースト。768px以上をPCレイアウトとする。
   ・装飾の強い上部（AREA/検索カード/NEW STORE文字）は画像、
     繰り返す構造（店舗カード/都道府県/フッター）はHTML+CSSで実装。

   2026-07-07 本番組込み対応（全セレクタを .area-rnw スコープ化）
   ・本番の共通header/footerの枠（main.css / phone.css / style.css / nav.css）
     と共存させるため、全ルールを .area-rnw 配下に限定した。
   ・【重要】今後ルールを追加する時も必ず先頭に「.area-rnw 」を付けること。
     付け忘れると本番の全ページにスタイルが漏れる。
   ・旧 :root / html / body に書いていたものは .area-rnw 自体に移動済み。
   ・スコープ化前のファイルは style.css.bak-20260707 として残置。
   ===================================================================== */


/* ---------- デザイントークン ---------- */
.area-rnw{
  --black: #333;
  --navy:#2d3e45;
  --yellow:#fffabb;
  --yellow-soft:#fdf6c4;
  --yellow-soft2:#f2e782;
  --coral:#f07888;
  --red:#eb3e4f;
  --ink:#3a3a3a;
  --gray:#7a7a7a;
  --card-head:#8c9aa3;
  --line-green:#52b749;
  --reserve-pink:#f5849a;
  --max:1180px;
  --radius:18px;
  --hokkaido-color:#60bcd8;
  --touhoku-color:#6db9bf;
  --kanto-color:#7fbece;
  --chubu-color:#98c47e;
  --kinki-color:#afba70;
  --chugoku-color:#d6a938;
  --shikoku-color:#e5ab7a;
  --kyushu-color:#dd8796;
  --okinawa-color:#d59cbb;
}


/* ---------- ベース（旧 html/body リセット相当） ---------- */
.area-rnw, .area-rnw *, .area-rnw *::before, .area-rnw *::after{box-sizing:border-box;}
.area-rnw{
  margin:0;
  font-family:"Noto Sans JP",system-ui,sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.7;
  font-size:15px;
  overflow-x:hidden; /* 旧htmlのはみ出しクリップ相当（ティッカー等） */
  overflow-x:clip;   /* 対応ブラウザではスクロールコンテナ化を避ける */
  word-break:normal; /* 本番 body{word-break:break-all} の継承打ち消し */
}

/* ---------- 本番CSS打ち消しリセット 2026-07-07 ----------
   main.css / phone.css が h1,p,img 等の「素のタグ」に当てているスタイルを
   .area-rnw 内ではブラウザ標準相当に戻す（スタンドアロン時の見た目を再現）。
   クラス指定のデザインルールは .area-rnw .foo（クラス2つ分）の詳細度で
   このリセットより強いので、通常の追加スタイルはそのまま勝つ。 */
.area-rnw :is(h1,h2,h3,h4,h5,h6){font-family:inherit;font-weight:bold;color:inherit;line-height:inherit;text-align:inherit;background:none;padding:0;min-height:0;width:auto;clear:none;}
.area-rnw h1{font-size:2em;margin:.67em 0;}
.area-rnw h2{font-size:1.5em;margin:.83em 0;}
.area-rnw h3{font-size:1.17em;margin:1em 0;}
.area-rnw h4{font-size:1em;margin:1.33em 0;}
.area-rnw h5{font-size:.83em;margin:1.67em 0;}
.area-rnw h6{font-size:.67em;margin:2.33em 0;}
.area-rnw p{margin:1em 0;padding:0;color:inherit;font-size:inherit;line-height:inherit;letter-spacing:normal;}
.area-rnw :is(table,ol,blockquote,h2){clear:none;}
.area-rnw footer{font-size:inherit;}
/* 本番 a:hover{color:#ffab2e} は、後述の .area-rnw a{color:inherit} と同詳細度のため
   読込順（新CSSは本文<link>で常に本番CSSより後）で打ち消される。個別の打ち消しはしない */
.area-rnw p strong{background:none;color: #7cb8dd;position:static;border-bottom: 2px #777 dashed;} /* 本番 p strong の蛍光マーカー装飾打ち消し */
/* 本番CSSの固定幅打ち消し（.area-rnw 内で使う本番include: cat-area-voice 等） */
.area-rnw .category-area_voice{width:auto;max-width:900px;}
.area-rnw .category-area_voice .voice_inner{width:auto;max-width:800px;}
.area-rnw .voice_comment_point{width:auto !important;max-width:680px;}

.area-rnw img{max-width:100%;height:auto;transition:none;border-radius: 0.5rem;}
/* PC表示（初期状態） */
.apage-logo_sp {
  display: none;
}
.apage-logo_pc {
  display: block;
}

/* スマホ表示（画面幅768px以下） */
@media (max-width: 768px) {
  .apage-logo_pc {
    display: none;
  }
  .apage-logo_sp {
    display: block;
  }
}

.area-rnw a{color:inherit;text-decoration:none;transition:none;} /* transition:none は本番 a{transition:.3s} の打ち消し。個別に付けたいリンクはクラス側で指定 */
.area-rnw ul{list-style:none;margin:0;padding:0;}
.area-rnw .arrow{
  font-size: 0;
  display: inline-block;
  width: 10px;
  height: 31px;
  background: url(../img/area/arrow-w.svg) no-repeat center / contain;
  margin-left: 8px;
}

/* =====================================================================
   ヘッダー
   ===================================================================== */
.area-rnw .site-header{position:sticky;top:0;z-index:100;background:black;}
.area-rnw .site-header__inner{
  max-width:var(--max);margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 18px;
}
.area-rnw .site-header__logo img{height:26px;width:auto;}
.area-rnw .hamburger{
  width:48px;height:48px;border:none;border-radius:50%;
  background:#f5b223;cursor:pointer;
  display:flex;flex-direction:column;justify-content:center;align-items:center;gap:5px;
  flex:0 0 auto;
}
.area-rnw .hamburger span{display:block;width:22px;height:2.5px;background:#fff;border-radius:2px;transition:.25s;}
.area-rnw .hamburger.is-open span:nth-child(1){transform:translateY(7.5px) rotate(45deg);}
.area-rnw .hamburger.is-open span:nth-child(2){opacity:0;}
.area-rnw .hamburger.is-open span:nth-child(3){transform:translateY(-7.5px) rotate(-45deg);}

.area-rnw .breadcrumb{border-top:1px solid rgba(255,255,255,.12);}
.area-rnw .breadcrumb__inner{
  max-width:var(--max);margin:0 auto;padding:10px 18px;
  font-size:13px;color:#cdd5d8;display:flex;align-items:center;gap:10px;
}
.area-rnw .breadcrumb a{color:#cdd5d8;font-weight:500;}
.area-rnw .breadcrumb__sep{color:#7e8c92;}

/* =====================================================================
   メインビジュアル（AREA）  ※2026-06-12 文言テキスト化で再構成
   ---------------------------------------------------------------------
   構造: .hero__inner（背景=hero-logo.webp: ブロブ+ロゴ+キャラ） > h1
   文言は実テキスト。位置は .hero__inner の padding（下%・左%）で調整。
   ===================================================================== */
.area-rnw .hero{background: #fff;padding: 0px 3% 30px;}
.area-rnw .hero__inner {
  max-width: 560px;
  margin: 0 auto;
  background: url(../img/area/hero-logo.webp) no-repeat center / contain;
  aspect-ratio: 707 / 443;
  display: flex;
  align-items: flex-end;
  box-sizing: border-box;
  padding: 0 0 12% 10%;
  position: relative;
  container-type: inline-size;
}

.area-rnw .hero__title{margin: 0;line-height: 1.4;font-weight: 900;color: #000;}
.area-rnw .hero__title-sub{display:block;font-size:18px;}
.area-rnw .hero__title-main{display:block;font-size:25px;letter-spacing:.04em;}

/* =====================================================================
   検索導線
   ===================================================================== */
.area-rnw .search{
  background: var(--yellow);
  padding: 75px 6px 60px;
  position: relative;
}
.area-rnw .search::before{
  content:"";
  position:absolute;
  left:0;right:0;
  bottom:100%;                /* .searchの上辺に接して上側へ */
  height:24px;                /* 画像の実寸高 */
  background:url(../img/area/search_bg-upper.webp) no-repeat center / 100% 100%;
  pointer-events:none;
}
.area-rnw .search__inner{max-width:680px;margin:0 auto;position:relative;}

.area-rnw .search__inner::before{
  content: "Search";
  font-family: "caflisch-script-pro", cursive;
  font-weight: 600;
  font-size: 5.2rem;
  color: var(--yellow-soft2);
  position: absolute;
  top: -45px;
  left: 5%;
  pointer-events: none;
  line-height: 1;
  transform: rotate(-12deg);
  letter-spacing: 0px;
}

/* 2026-06-15 search scriptロゴ・ドット区切り */
.area-rnw .search__dots{
  display: block;
  text-align: center;
  font-size: 40px;
  color: var(--black);
  line-height: 1;
  margin: 0px auto 0;
}
.area-rnw .search__lead{
  text-align: center;
  font-weight: 700;
  font-size: clamp(18px, 5.5vw, 30px);
  color: var(--black);
  position: relative;
  margin: 0 0 26px;
  line-height: 1.3;
}
/* 角ガッコ装飾 */
.area-rnw .search__lead-text{position:relative;display:inline-block;padding:4px 28px;}
/* ::before = 左ブラケット [ */
.area-rnw .search__lead-text::before{
    content: "";
      position: absolute;
      top: 0;
      width: 16px;
      height: 100%;
      border: 5px solid #000;
      left: 0;
      border-right: none;
      border-radius: 2px;
}
/* ::after = 右ブラケット ] */
.area-rnw .search__lead-text::after{
    content: "";
      position: absolute;
      top: 0;
      width: 16px;
      height: 100%;
      border: 5px solid #000;
      right: 0;
      border-left: none;
      border-radius: 2px;
}
.area-rnw .search__lead strong{font-weight:900;}
.area-rnw .search__chevron{display: block;
  width: 20px;
  height: 20px;
  margin: -5px auto 0;
  border-right: 5px solid var(--black);
  border-bottom: 5px solid var(--black);
  transform: rotate(45deg);
  border-radius: 3px;
}
.area-rnw .search__cards{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 0 14px;
}
.area-rnw .search-card{
  position:relative;display:block;
  transition:transform .15s;text-decoration:none;
}
.area-rnw .search-card:hover{transform:translateY(-3px);}
.area-rnw .search-card__bg{
  width:100%;height:auto;display:block;
}
.area-rnw .search-card__text{
  position: absolute;
  bottom: 40%;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  font-size: clamp(12px, 4vw, 28px);
  color: #fff;
  text-align: center;
  line-height: 1.4;
  width: 75%;
  white-space: nowrap;
}
.area-rnw .search-card__arrow{
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: clamp(22px, 7vw, 34px);
  height: clamp(22px, 7vw, 34px);
}

/* =====================================================================
   NEW STORE TOP5
   ===================================================================== */
.area-rnw .newstore{
  background: var(--coral);
  position: relative;
  padding-top: 50px;
  padding-bottom: 0px;
}
/* 2026-06-16 ticker ribbons（電光掲示板スクロール） */
.area-rnw .ticker1{
  position: absolute;
  left: -8%;
  width: 116%;
  height: 30px;
  background: #222;
  overflow: hidden;
  z-index: 1;
  transform: rotate(-1.62deg);
}
.area-rnw .ticker2{
  position: absolute;
  left: -8%;
  width: 116%;
  height: 30px;
  background: #222;
  overflow: hidden;
  z-index: 1;
  transform: rotate(3.38deg);
}
.area-rnw .ticker--top1{ top:-18px; }
.area-rnw .ticker--top2{ top:16px; }
.area-rnw .ticker--btm{ bottom:-18px; }
.area-rnw .ticker__track{
  display:flex;align-items:center;
  white-space:nowrap;height:100%;
  animation:ticker-fwd 20s linear infinite;
}
.area-rnw .ticker__track--rev{ animation:ticker-rev 24s linear infinite; }
.area-rnw .ticker__item{
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: transparent;
  -webkit-text-stroke: 1px #f56866;
  letter-spacing: .18em;
  padding: 0 1.8em 0 0em;
}
.area-rnw .ticker--top1 .ticker__item{ -webkit-text-stroke-color:#ffcf7b; }
.area-rnw .ticker--top1 .ticker__top5{ color:#ffcf7b; -webkit-text-stroke:0px; }
.area-rnw .ticker--top2 .ticker__top5{ color:#f56866; -webkit-text-stroke:0px; }
.area-rnw .ticker--btm .ticker__item{ color:transparent; -webkit-text-stroke:1px #f56866; }
.area-rnw .ticker--btm .ticker__top5{ color:#f56866; -webkit-text-stroke:0px; }
.area-rnw .ticker__crown{
  height: 10px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  bottom: 1px;
  position: relative;
  left: 2px;
}
@keyframes ticker-fwd{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}
@keyframes ticker-rev{
  from{ transform:translateX(-50%); }
  to{ transform:translateX(0); }
}
.area-rnw .newstore__body{
  padding: 4px 0px 50px 16px;
  position: relative;
}
.area-rnw .newstore__body::after{
  content: "TOP 5";
  font-family: "caflisch-script-pro", cursive;
  font-weight: 600;
  font-size: 3.5rem;
  color: var(--red);
  position: absolute;
  bottom: 0px;
  right: 7%;
  pointer-events: none;
  line-height: 1;
  transform: rotate(-10deg);
  z-index: 0;
}
.area-rnw .newstore__title{
  font-family: "caflisch-script-pro", cursive;
  font-weight: 600;
  font-size: 3.7rem;
  color: var(--red);
  transform: rotate(-11deg);
  display: inline-block;
  margin: 0 0 10px;
  line-height: 1.1;
  position: relative;
  left: -6%;
  top: -16px;
}
.area-rnw .newstore__scroller{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  cursor: grab;
  scrollbar-width: none;
  margin-top: -45px;
  z-index: 1;
  position: relative;
}
.area-rnw .newstore__scroller::-webkit-scrollbar{display:none;}
.area-rnw .newstore__scroller.is-dragging{cursor:grabbing;user-select:none;}
.area-rnw .newstore__list{display:flex;gap:14px;width:max-content;}
.area-rnw .ns-card{
  background:#fff;border-radius:14px;padding:12px;width:230px;flex:0 0 auto;
  box-shadow:0 6px 14px rgba(0,0,0,.12);
}
.area-rnw .ns-card__head{display:flex;align-items:center;gap:8px;margin-bottom:8px;}
.area-rnw .ns-card__crown{position:relative;width:46px;height:36px;flex:0 0 auto;
  background:url(../img/area/crown-bg.svg) no-repeat center / contain;
  display:flex;align-items:center;justify-content:center;}
.area-rnw .ns-card__rank{
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  line-height: 1;
  margin-top: 12px;
}
.area-rnw .ns-card__name{
  font-weight: 700;
  font-size: 15px;
  color: #f56866;
}
.area-rnw .ns-card__thumb img{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:8px;}
.area-rnw .ns-card__area{margin:8px 0 0;font-weight:700;font-size:14px;display:flex;align-items:center;gap:4px;}
.area-rnw .ns-card__area::before{content:'';display:block;width:13px;height:18px;flex:0 0 auto;background:url(../img/area/map-pin.svg) no-repeat center / contain;}

/* =====================================================================
   都道府県別 店舗一覧
   ===================================================================== */
.area-rnw .region{
  background-color: var(--bg);
  background-image:
    radial-gradient(rgba(255,255,255,.5) 4px, transparent 4px),
    radial-gradient(rgba(255,255,255,.5) 4px, transparent 4px);
  background-size: 36px 36px;
  background-position: 0 0, 18px 18px;
  padding: 0px;
}
.area-rnw .region__panel{
  padding: 8rem 0;
}
.area-rnw .region__inner{max-width:var(--max);margin:0 auto;}


.area-rnw .region--hokkaido{--bg:#cee9f4;--accent:var(--hokkaido-color);}
.area-rnw .region--tohoku{--bg:#cadee0;--accent:var(--touhoku-color);}
.area-rnw .region--kanto{--bg:#cee9f4;--accent:var(--kanto-color);}
.area-rnw .region--chubu{--bg:#d3edc5;--accent:var(--chubu-color);}
.area-rnw .region--kinki{--bg:#dee2c3;--accent:var(--kinki-color);}
.area-rnw .region--chugoku{--bg:#f2e7c7;--accent:var(--chugoku-color);}
.area-rnw .region--shikoku{--bg:#efdac7;--accent:var(--shikoku-color);}
.area-rnw .region--kyushu{--bg:#f2d1d4;--accent:var(--kyushu-color);}
.area-rnw .region--okinawa{--bg:#e0b7ce;--accent:var(--okinawa-color);}

.area-rnw .pref{
  background: white;
  padding: 0 16px 24px;
  margin-bottom: 84px;
}
.area-rnw .pref:last-child{margin-bottom:0;}
.area-rnw .pref__head{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
  padding-left: 6px;
  justify-content: center;
  position: relative;
  top: -20px;
}
.area-rnw .pref__tab{
  margin: 0;
  position: relative;
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: clamp(16px, 5.2vw, 24px);
  padding: 2px 25px;
  border-radius: 4px;
  letter-spacing: 6px;
  text-shadow: 0px 0px 0 #333, 0px 0 0 #333, 0 0px 0 #333, 0px 0px 0 #333, 0px 0px 0 #333, 0px 0px 0 #333, 0.2px -0.2px 0 #333;
  cursor: pointer;
}
.area-rnw .pref__tab::before{
  content: '';
  position: absolute;
  width: 20px;
  height: 24px;
  background: url(../img/area/pref_tab01.svg) no-repeat center / contain;
  pointer-events: none;
}

.area-rnw .pref__tab::after{
  content: '';
  position: absolute;
  width: 28px;
  height: 51px;
  background: url(../img/area/pref_tab02.svg) no-repeat center / contain;
  pointer-events: none;
}
.area-rnw .pref__tab::before{
  top: -4px;
  left: -4px;
  transform: scaleX(1);
}
.area-rnw .pref__tab::after{
  bottom: -5px;
  right: -12px;
}
.area-rnw .pref__pin{font-size:18px;}

.area-rnw .pref__scroller{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  cursor: grab;
  scrollbar-width: none;
  padding: 12px 0;
  margin: -12px 0 0 3%;
}
.area-rnw .pref__scroller::-webkit-scrollbar{display:none;}
.area-rnw .pref__scroller.is-dragging{cursor:grabbing;scroll-snap-type:none;user-select:none;}
.area-rnw .pref__track{display:flex;gap:14px;padding:0 12px;}

.area-rnw .store-card{
  flex: 0 0 55vw;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .04), 0 0 20px rgba(0, 0, 0, .13);
  display: flex;
  flex-direction: column;
  padding: 5px 12px 0;
}
.area-rnw .store-card a, .area-rnw .store-card img{-webkit-user-drag:none;user-select:none;}
.area-rnw .store-card__name{
  color: #333333;
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 12px;
  letter-spacing: .04em;
  margin: 0 auto;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: calc(1rem * 1.7 * 2 + 16px);
}
.area-rnw .store-card__thumb{position:relative;}
.area-rnw .store-card__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset -3px -3px 10px #fff, inset -3px -3px 10px #fff, inset 3px 3px 10px #fff, inset -3px -3px 20px #fff, inset -3px -3px 20px #fff, inset 3px 3px 5px #fff, inset -3px -3px 10px #FFF;
  height: 101%;
  width: 101%;
  left: -1px;
  top: -1px;
}

.area-rnw .store-card__thumb img{width:100%;aspect-ratio:4/3;object-fit:cover;}
.area-rnw .store-card__desc{
  margin: 0;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--black);
  line-height: 1.6;
  flex: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: calc(16px * 1.6 * 3 + 100px);
}
.area-rnw .store-card__btn {
  margin: 0 auto 14px;
  text-align: center;
  background: #3c90aa;
  color: white;
  font-size: 18px;
  padding: 8px 0px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  letter-spacing: 2px;
  line-height: 1;
  flex-shrink: 0;
}
.area-rnw .store-card__btn .arrow{
  font-size: 0;
  display: inline-block;
  width: 10px;
  height: 21px;
  background: url(../img/area/arrow-w.svg) no-repeat center / contain;
  margin-left: 8px;
}

.area-rnw .pref__more{
  text-align: center;
  margin: 20px auto 10px;
}
.area-rnw .more-btn{
  display: inline-flex;
  background: var(--accent);
  color: white;
  font-weight: 700;
  font-size: 18px;
  padding: 5px 28px;
  border-radius: 24px;
  letter-spacing: 2px;
  line-height: 28px;
}

/* =====================================================================
   フッター
   ===================================================================== */
.area-rnw .cta{background:#fffbbc;padding:34px 18px 40px;}
.area-rnw .cta__buttons{
  max-width:760px;margin:0 auto 28px;
  display:grid;grid-template-columns:1fr;gap:14px;
}
.area-rnw .cta-btn{
  display:flex;align-items:center;justify-content:center;gap:10px;
  color:#fff;font-weight:700;font-size:16px;padding:16px;border-radius:12px;
  box-shadow:0 5px 0 rgba(0,0,0,.12);
}
.area-rnw .cta-btn--line{background:#00b900;}
.area-rnw .cta-btn--reserve{
  background: #f56a66;
}
.area-rnw .cta-btn__icon{
  width:44px;height:44px;flex-shrink:0;display:block;
}
.area-rnw .cta__links{max-width:760px;margin:0 auto;text-align:center;}
.area-rnw .cta__home{
  display:block;background:#fffbbc;border:2px solid black;color:black;
  font-weight:900;font-size:18px;letter-spacing:.1em;
  padding:14px;border-radius:26px;margin-bottom:18px;
}
/* 2026-07-14 デザイン対応: flex-wrap(幅に応じて折返し数が変動・各ピルは文字数なりの幅)だと
   行ごとに列位置がバラバラで不揃いに見えるため、3列固定グリッドに変更。
   件数(現状11件)に関わらず3列で自動折返しし、縦の列がきれいに揃う。 */
.area-rnw .cta__pills{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:8px;
}
.area-rnw .cta__pills a{
  display:flex;align-items:center;justify-content:center;
  background:#fffbbc;border:1.5px solid black;
  color:black;font-size:11px;font-weight:500;white-space:nowrap;
  padding:8px 4px;border-radius:16px;
}
.area-rnw .site-footer {clear: both;}
.area-rnw .site-footer__bottom{background:#111;color:#fff;text-align:center;padding:28px 18px 32px;}
.area-rnw .site-footer__logo{height:26px;width:auto;margin:0 auto 14px;}
.area-rnw .site-footer__nav{margin:0 0 8px;font-size:13px;}
.area-rnw .site-footer__nav a{color:#fff;}
.area-rnw .site-footer__nav span{margin:0 10px;color:#666;}
.area-rnw .site-footer__copy{margin:0;font-size:11px;color:#9a9a9a;letter-spacing:.04em;}

/* =====================================================================
   スワイプヒント（SP限定）
   ===================================================================== */
.area-rnw .pref{position:relative;}
.area-rnw .swipe-hint{
  position:absolute;
  right:12px;
  bottom:52px;
  width:44px;height:44px;
  background:rgba(255,255,255,.92);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:20px;
  box-shadow:0 2px 10px rgba(0,0,0,.18);
  pointer-events:none;
  z-index:5;
  animation:swipe-bounce 1.1s ease-in-out infinite;
  transition:opacity .35s;
}
.area-rnw .swipe-hint.is-gone{opacity:0;}
@keyframes swipe-bounce{
  0%,100%{transform:translateX(0);}
  50%{transform:translateX(-7px);}
}
@media(min-width:768px){.area-rnw .swipe-hint{display:none;}}

/* =====================================================================
   PC レイアウト（768px〜）
   ===================================================================== */
@media (min-width:768px){
  .area-rnw{font-size:16px;}
  .area-rnw .hero__inner{max-width:760px;}
  /* 2026-07-06 PC限定: タイトルを.hero__inner基準の絶対配置に。
     ベースのpadding(16%/10%)は親.hero(≒ビューポート)基準で解決される
     ため解像度で位置がズレていた。絶対配置のleft/top%はコンテナ自身
     基準なので背景アート(hero-logo.webp)と常に同じ位置関係を保つ。
     位置はカンプ準拠: AREAロゴの下・中央揃え。 */
  /* paddingはSP用の位置決め。PCは絶対配置なので0にリセット
     （%paddingを残すとcqwの基準(content-box)がビューポート連動で
     変わってしまい文字サイズが安定しないため） */
  .area-rnw .hero__inner{padding:0;}
  .area-rnw .hero__title{
    position: absolute;
    left: 32.5%;
    top: 52.5%;
    transform: translateX(-50%);
    text-align: center;
  }
  /* 2026-07-06 文字サイズ: カンプ(area_top_pc)の比率に合わせ、
     コンテナ幅(cqw)基準でアートと同率で伸縮（PC全解像度で比率固定） */
  .area-rnw .hero__title-sub{font-size:3.6cqw;letter-spacing:.18em;}
  .area-rnw .hero__title-main{font-size:5.2cqw;letter-spacing:.14em;}
  .area-rnw .ribbon__track::before{font-size:20px;}
  .area-rnw .newstore__body{padding:8px 24px 40px;max-width:var(--max);margin:0 auto;}
  /* 2026-07-06 NEW STORE: PCは5枚を幅内に収めて表示（横スクロール廃止、
     カードは等分で伸縮・最大230px。SPは従来のカルーセルのまま） */
  .area-rnw .newstore__scroller{overflow:visible;}
  .area-rnw .newstore__list{width:auto;gap:18px;justify-content:center;}
  .area-rnw .ns-card{flex:1 1 0;width:auto;max-width:230px;min-width:0;}
  /* 2026-07-06 ticker帯: カンプ(PC)に合わせて角度を浅く */
  .area-rnw .ticker--top1{transform:rotate(-0.6deg);}
  .area-rnw .ticker--top2{transform:rotate(1.1deg);}
  .area-rnw .ticker--btm{transform:rotate(2.2deg);}

  .area-rnw .pref__track{gap:20px;}
  .area-rnw .store-card{flex:0 0 calc((100% - 80px)/4.4);}
  .area-rnw .store-card__desc{font-size:13px;}

  .area-rnw .cta__buttons{grid-template-columns:1fr 1fr;}
  .area-rnw .site-footer__logo{height:30px;}

  /* 2026-07-14 デザイン対応（.ai: 通勤エリアー北海道_pc/hokkaido_pc_1.ai 下部フッターCTA）
     LINE/面接予約ボタンをカンプ通り完全な角丸(スタジアム形状)+色付きグロー影に変更。
     ピルリンク一覧はflex-wrap(幅に応じて折返し数が変動)だと2行目の位置がカンプとズレる
     （カンプは6列グリッドで、2行目は1行目と同じ列位置から詰まって並ぶ）ため、
     6列固定グリッドに変更し件数に関わらず列位置が揃うようにした。 */
  .area-rnw .cta-btn{
    border-radius: 999px;
    padding: 12px 30px;
    box-shadow: 0 10px 22px -6px rgba(0,0,0,.3);
  }
  .area-rnw .cta-btn--line{ box-shadow: 0 10px 24px -6px rgba(0,185,0,.55); }
  .area-rnw .cta-btn--reserve{ box-shadow: 0 10px 24px -6px rgba(245,106,102,.55); }
  .area-rnw .cta__pills{
    display: grid;
    grid-template-columns: repeat(6, minmax(0,1fr));
    gap: 8px;
    justify-content: normal;
  }
  .area-rnw .cta__pills a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    padding: 8px 4px;
    font-size: 11.5px;
    white-space: nowrap;
  }
}

@media (min-width:1100px){
  .area-rnw .region, .area-rnw .newstore__body{padding-left:24px;padding-right:24px;}
}

/* =====================================================================
   絞り込み検索モーダル
   ===================================================================== */
.area-rnw .smodal{
  position:fixed;inset:0;z-index:200;
  display:flex;align-items:flex-start;justify-content:center;
  padding-top:60px;
}
.area-rnw .smodal[hidden]{display:none;}
.area-rnw .smodal__overlay{position:absolute;inset:0;background:rgba(0,0,0,.52);}
.area-rnw .smodal__panel{
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 14px;
  width: min(92vw, 420px);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 20px 28px;
}
.area-rnw .smodal__close{
  position:absolute;top:-14px;right:-14px;
  width:36px;height:36px;border:none;border-radius:50%;
  background:black;color:#fff;
  font-size:20px;line-height:1;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  z-index:10;
}
/* ステップインジケーター */
.area-rnw .smodal__steps{
  display:flex;align-items:flex-start;
  gap:0;
  margin:-20px -20px 20px;
  background:#fff;
  border-radius:14px 14px 0 0;
  overflow:hidden;
}
.area-rnw .smodal__step-arrow{display:none;}
.area-rnw .smodal__step{
  flex:1;
  height:46px;
  background:#ddd;color:#aaa;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  padding:0 8px;
  transition:height .2s ease;
}
.area-rnw .smodal__step:first-child{
  clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%);
}
.area-rnw .smodal__step:not(:first-child):not(:last-child){
  clip-path: polygon(95% 0%, 100% 50%, 95% 100%, 0% 100%, 5% 50%, 0% 0%);
}
.area-rnw .smodal__step:last-child{
  clip-path: polygon(100% 0%, 100% 100%, 90% 100%, 0% 100%, 5% 50%, 0% 0%);
}
.area-rnw .smodal__step span{
  display: block;
  font-size: 12px;
  letter-spacing: .06em;
  line-height: 1;
}
.area-rnw .smodal__step strong{
  display: block;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
}

.area-rnw .smodal__step.is-active{
  background: var(--reserve-pink);
  color: #fff;
}
.area-rnw .smodal__step.is-active strong{font-size:22px;}
.area-rnw .smodal__step.is-done{background:var(--reserve-pink);color:#fff;}
.area-rnw .smodal__bubble{
  background: #f8f8f8;
  border-radius: 12px;
  padding: 14px 16px 14px 23px;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 188px;
  color: var(--black);
  position: relative;
  font-weight: 800;
  letter-spacing: 2px;
  top: 0;
}
.area-rnw .smodal__bubble::after{
  content: '';
  position: absolute;
  bottom: -20px;
  left: 12%;
  width: 28px;
  height: 35px;
  background: url(../img/area/smodal__bubble__arrow.svg) no-repeat center / contain;
  pointer-events: none;
  z-index: -1;
  background-size: 100%;
}
.area-rnw .smodal__chara-row .smodal__bubble::after{
  bottom: auto;
  top: 40%;
  left: -16px;
  transform: rotate(0deg) scaleX(-1) translate(-100%, 10px);
}
.area-rnw .smodal__bubble-accent{color:var(--reserve-pink);font-weight:700;}
.area-rnw .smodal__bubble small{
  display: block;
  font-size: 11px;
  color: var(--black);
}
.area-rnw .smodal__chara{
  display: block;
  width: 180px;
  margin: 4px auto 0px;
  position: absolute;
  top: 185px;
  left: 25vw;
}
.area-rnw .smodal__chara-row{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px -20px;
}
.area-rnw .smodal__chara-row .smodal__bubble{
  flex: 1;
  margin-bottom: 0;
  font-weight: 700;
  letter-spacing: 0;
  padding: 14px 5px 14px 20px;
  left: -30px;
  top: -15px;
}
.area-rnw .smodal__chara-sm{
  width: 105px;
  flex: 0 0 105px;
  align-self: flex-start;
  z-index: 1;
}
.area-rnw .smodal__label{
  display: flex;
  font-weight: 700;
  font-size: 18px;
  margin: 0 8px 10px;
  color: var(--black);
  letter-spacing: 4px;
  justify-content: center;
  gap: 4px;
}
.area-rnw .smodal__select{
  width: 100%;
  padding: 20px 38px 20px 14px;
  border: 1.5px solid #666666;
  border-radius: 8px;
  font-size: 18px;
  appearance: none;
  -webkit-appearance: none;
  /* 2026-07-06 url()を引用符で囲む: 未エンコードのスペースを含むdata URIは
     引用符なしだと不正なCSSになり矢印が描画されなかった（SP含む修正） */
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  margin-bottom: 18px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: .07rem;
}
/* 次へ・検索ボタン */
.area-rnw .smodal__next-btn, .area-rnw .smodal__next-btn, .area-rnw .smodal__submit-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 80%;
  margin: 0 auto 20px;
  background: var(--reserve-pink);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  padding: 12px;
  border: none;
  border-radius: 26px;
  cursor: pointer;
  letter-spacing: 1px;
}

/* 無効化（disabled）時のボタンの見た目 */
.area-rnw .smodal__next-btn:disabled, .area-rnw .smodal__submit-btn:disabled {
  background: #ccc;
  color: #fff;
  cursor: not-allowed;
  opacity: 0.7;
}

/* 矢印アイコンの透過処理 */
.area-rnw .smodal__next-btn:disabled, .area-rnw .smodal__submit-btn:disabled .smodal__btn-arrow {
  opacity: 0.5;
}

.area-rnw .smodal__btn-arrow{
  display:inline-block;width:9px;height:13px;
  background:url(../img/area/arrow-w.svg) no-repeat center / contain;
}
.area-rnw .smodal__btn-arrow--prev {
  display: inline-block;
  width: 9px;
  height: 13px;
  background: url(../img/area/arrow-w.svg) no-repeat center / contain;
  transform: scaleX(-1); /* ここで左右反転 */
}

.area-rnw .smodal__store-note{
  font-size: 11px;
  color: var(--black);
  margin: -2px 0 8px;
  text-align: left;
  font-weight: 700;
}
.area-rnw .smodal__store-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 40px;
  max-height: 220px;
  overflow-y: auto;
  border-radius: 6px;
}
.area-rnw .smodal__store-btn{
  background: #ffffff;
  border: 1.5px solid var(--black);
  border-radius: 5px;
  padding: 8px 4px;
  font-size: 12px;
  cursor: pointer;
  text-align: center;
  line-height: 1.3;
  color: var(--black);
  transition: background .15s, border-color .15s;
  font-weight: 700;
  letter-spacing: .3px;
}
.area-rnw .smodal__store-btn.is-selected{
  background:var(--reserve-pink);border-color:var(--reserve-pink);color:#fff;
}
/* こだわり条件 (STEP 03) */
.area-rnw .smodal__cond-title{
  display:flex;align-items:center;justify-content:center;
  gap:6px;font-size:17px;font-weight:700;
  color:var(--ink);margin:0 0 12px;
}
.area-rnw .smodal__cond-heart{color:var(--reserve-pink);}
.area-rnw .smodal__cond-grid{
  display:grid;grid-template-columns:repeat(6,1fr);
  gap:8px;margin-bottom:14px;
}
.area-rnw .smodal__cond-btn{
  grid-column:span 2;
  background:#fff;border:1.5px solid var(--black);border-radius:5px;
  padding:8px 4px;font-size:12px;cursor:pointer;
  color:var(--black);line-height:1.4;text-align:center;
  font-weight:700;letter-spacing:.3px;
  transition:background .15s,border-color .15s,color .15s;
}
.area-rnw .smodal__cond-btn--wide{ grid-column:span 3; }
.area-rnw .smodal__cond-btn.is-selected{
  background:var(--reserve-pink);border-color:var(--reserve-pink);color:#fff;
}
.area-rnw .smodal__count{
  text-align:center;font-size:14px;font-weight:700;
  color:var(--reserve-pink);margin:0 0 14px;
}

/* 2026-07-06 検索モーダル PC調整（min-width:768px）
   ・カードを画面の上下左右中央に（カードが縦に収まらない時は.smodal側がスクロール）
   ・×ボタンはカードの外（右上・白）に
   ・キャラはビューポート基準(left:25vw)をやめ、通常フローでカード内中央に
   ※smodal本体のスタイルより後に書くこと（前に置くと後勝ちで打ち消される） */
@media (min-width:768px){
  .area-rnw .smodal{overflow-y:auto;padding:40px 0;}
  .area-rnw .smodal__panel{margin:auto;overflow:visible;}
  .area-rnw .smodal__close{
    top:-48px;right:0;width:44px;height:44px;
    background:none;color:#fff;font-size:42px;font-weight:700;
  }
  .area-rnw .smodal__bubble{margin-bottom:14px;}
  .area-rnw .smodal__chara{position:static;width:150px;margin:0 auto 10px;}
}


/* =====================================================================
   都道府県ページ（/area/{pref}/）新デザイン 2026-06-22
   ===================================================================== */

.area-rnw .apage-hero{
  background-color: var(--area-theme-bg-color);
  background-image: radial-gradient(rgba(255, 255, 255, .55) 7px, transparent 7px), radial-gradient(rgba(255, 255, 255, .55) 7px, transparent 7px);
  background-size: 65px 65px;
  background-position: 0 0, 35px 35px;
  padding: 0;
  overflow-x: clip;
  position: relative;
	margin:0 0 3rem;
}

.area-rnw .apage-hero__inner{
  height: 200px;            /* Heroエリアの高さ（60vh 等のレスポンシブ単位も可） */
  display: flex;
  justify-content: center;  /* 左右中央配置 */
  align-items: center;      /* 上下中央配置 */
  overflow:hidden;
}
.area-rnw .apage-hero__logo {
  height: 100%;             /* Heroの高さに合わせる */
  width: auto;              /* アスペクト比を維持 */
  max-width: 100%;          /* 画面幅が画像より狭い場合に溢れ出ないよう防止 */
  object-fit: contain;
}


/*
.area-rnw .apage-hero__inner{
  margin: 0 auto;
  max-width: 560px;
  position: relative;
  min-height: 300px;
  padding: 18px;
}
.area-rnw .apage-hero__logo {
  display: block;
  width: 100%;
  max-width: 280px;
  position: absolute;
  z-index: 1;
  top: 38%;
}
*/
.area-rnw .apage-hero__map{
  display: block;
  position: absolute;
  right: -200px;
  top: -25px;
  width: 580px;
  max-width: 600px;
  z-index: 0;
}
.area-rnw .apage-chara{
  display: block;
  position: absolute;
  right: -35px;
  bottom: 10px;
  width: 48%;
  max-width: 145px;
  z-index: 0;
}

.area-rnw .apage-h1sec{
  background: #fff;
  padding: 12px 0 0px;
  position: relative;
	margin:0 0 3rem;
}
.area-rnw .apage-h1sec__inner{
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  padding-top: 42px;
}

.area-rnw .apage-h1sec__title{
  background: url(../img/area/h1-ribon.svg) no-repeat center / 85% auto;
  margin: 0 auto;
  padding: 5px 0;
  position: relative;
  min-height: 88px;
  display: flex;
  align-items: center;
}
.area-rnw .apage-h1sec__arc{
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.area-rnw .apage-h1sec__bubble{
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -48px;
  left: 25px;
  width: 130px;
  height: 89px;
  pointer-events: none;
  z-index: 2;
  font-size: 22px;
  font-weight: 900;
  color: #000;
  line-height: 1.3;
  padding-bottom: 16px;
  transform: rotate(-10deg);
}
.area-rnw .apage-h1sec__bubble::before{
  content: '';
  position: absolute;
  inset: 0;
  background: url(../img/area/h1-hukidashi.svg) no-repeat center / contain;
  z-index: -1;
  transform: rotate(10deg);
}
/* --- 地図後のタグ説明文 --- */
.area-rnw .apage-tag-desc{
  background: #fff;
  padding: 24px 20px 28px;
}
.area-rnw .apage-tag-desc__inner{
  max-width: 560px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.9;
  color: black;
  font-family: "noto-sans-cjk-jp", "Noto Sans JP", sans-serif;
  font-weight: 700;
}

/* --- 地図後のカテゴリ説明文（ACF） --- */
.area-rnw .apage-cat-desc{
  background: #fff;
  padding: 24px 20px 28px;
}
.area-rnw .apage-cat-desc__inner{
  max-width: 560px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.9;
  color: black;
  font-family: "noto-sans-cjk-jp", "Noto Sans JP", sans-serif;
  font-weight: 700;
}

/* --- 紹介文（term_description） --- */
.area-rnw .apage-desc{
  background: #fff8f0;
  padding: 0 20px 28px;
}
.area-rnw .apage-desc__inner{
  max-width: 560px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.85;
  color: var(--black);
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.area-rnw .apage-desc__inner p{ margin: 0 0 .6em; }
.area-rnw .apage-desc__inner p:last-child{ margin-bottom: 0; }

.area-rnw .apage-areas{
  background-color: var(--area-theme-bg-color);
  background-image: linear-gradient(rgba(255, 255, 255, .38) 2px, transparent 2px), linear-gradient(90deg, rgba(255, 255, 255, .38) 2px, transparent 1px);
  background-size: 16px 16px;
  padding: 50px 10%;
  margin: 0 2% 50px;
  border-radius: 8px;
}
.area-rnw .apage-areas__inner{
  max-width: 560px;
  margin: 0 auto;
}
/* 2026-06-29 ヘッダー行: 中央寄せ・虫メガネを::afterで絶対配置 */
.area-rnw .apage-areas__head{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 6px;
}
.area-rnw .apage-areas__head::before{
  content: 'Area';
  font-family: "caflisch-script-pro", cursive;
  font-weight: 600;
  font-size: 2.8rem;
  color: #579ed2;
  line-height: 1;
  align-self: flex-start;
  margin-bottom: 2px;
  pointer-events: none;
  transform: rotate(-15deg);
  position: absolute;
  top: -20px;
  left: 20px;
}
.area-rnw .apage-areas__head::after{
  content: '';
  position: absolute;
  right: -4%;
  top: 25%;
  transform: translateY(-50%);
  width: 70px;
  height: 80px;
  background: url(../img/area/search-lens.svg) no-repeat center / contain;
  pointer-events: none;
}
.area-rnw .apage-areas__head-left{ flex: unset; }
.area-rnw .apage-areas__script{
  display: none; /* ::before で代替 */
  font-family: "caflisch-script-pro", cursive;
  font-weight: 600;
  font-size: 1.9rem;
  color: black;
  line-height: 1;
  margin-bottom: 2px;
}
.area-rnw .apage-areas__heading{
  display: inline-flex;
  flex-direction: column;
  position: relative;
  padding: 5px 30px;
  margin: 0;
}
.area-rnw .apage-areas__heading::before, .area-rnw .apage-areas__heading::before, .area-rnw .apage-areas__heading::after{
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 15px;
  border: 4px solid black;
  border-radius: 2px;
}
.area-rnw .apage-areas__heading::before{ left: 0; border-right: none; }
.area-rnw .apage-areas__heading::after{ right: 0; border-left: none; }
.area-rnw .apage-areas__heading-en{
  display: block;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .12em;
  color: black;
  line-height: 1;
  text-align: center;
  margin-bottom: 4px;
}
.area-rnw .apage-areas__heading-ja{
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
  color: black;
  white-space: nowrap;
  line-height: 1.5;
}
.area-rnw .apage-areas__lens{
  display: none; /* ::after で代替 */
}
/* 区切り（点線＋矢印） */
.area-rnw .apage-areas__divider{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2px 0 14px;
  line-height: 1;
  gap: 0;
}
.area-rnw .apage-areas__dots{
  font-size: 18px;
  color: black;
  line-height: 1;
}
.area-rnw .apage-areas__arrow-down{
  font-size: 16px;
  font-weight: 900;
  color: black;
}
.area-rnw .apage-areas__list{
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.area-rnw .apage-areas__btn{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 0px;
  border-radius: 50px;
  font-family: "noto-sans-cjk-jp", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  background: var(--area-theme-bg-color);
  color: black;
  border: 2.5px solid black;
  transition: opacity .15s;
}
.area-rnw .apage-areas__btn::after{
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 20px;
  background: url('../img/area/cta-btn-line-default.svg') no-repeat center / contain;
}
.area-rnw .apage-areas__btn--featured::after{
  background-image: url('../img/area/cta-btn-line-active.svg');
}
.area-rnw .apage-areas__btn--featured{
  background: #47b4ea;
  color: #fff;
  border-color: #47b4ea;
  box-shadow: 2px 2px 5px rgb(255 255 255 / 30%), -2px -2px 5px rgb(255 255 255 / 30%), 2px 2px 5px rgb(255 255 255 / 30%);
}
.area-rnw .apage-areas__btn:hover, .area-rnw .apage-areas__btn:focus-visible{ opacity: .85; }
.area-rnw .apage-areas__chevron{ display: none; /* ::after で代替 */ }

.area-rnw .apage-voice{
  background: none;
  padding: 60px 0 60px;
  position: relative;
  margin-top: 200px;
  isolation: isolate;
  display: block;
}
.area-rnw .apage-voice::after{
  content: '';
  position: absolute;
  inset: 0px;
  background-color: #85c7e8;
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, .28) 0px, rgba(255, 255, 255, .28) 4px, transparent 2px, transparent 11px);
  -webkit-mask-image: url(../img/area/apage-voice.svg);
  mask-image: url(../img/area/apage-voice.svg);
  -webkit-mask-size: 100% 100%;
  mask-size: 200% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  z-index: -1;
  pointer-events: none;
}
.area-rnw .apage-voice__head{
  position: relative;
  margin: 30px 0 60px;
  padding: 0px 20px 0 82px;
}
.area-rnw .apage-voice__head::before{
  content: '';
  position: absolute;
  left: 12%;
  top: 60%;
  transform: translateY(-55%);
  width: 70px;
  height: 70px;
  background: url(../img/area/voice-megaphone.svg) no-repeat center / contain;
}
.area-rnw .apage-voice__area {
  display: block;
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: black;
  letter-spacing: .2em;
  white-space: nowrap; /* 2026-07-17 left値変更でシュリンク幅が圧縮され折り返す事故があったため1行固定 */
  transform: rotate(-10deg);
  position: absolute;
  top: -30px;
  padding: 0 0 0 85px;
  left: 90px;
	width: 100%;
}
.area-rnw .apage-voice__title{
  display: block;
  margin: 0;
  font-size: clamp(20px, 5.5vw, 26px);
  font-weight: 700;
  line-height: 1.3;
  color: black;
  text-align: center;
}
.area-rnw .apage-voice__title-main{
  display: inline-block;
  letter-spacing: .08em;
  padding: 4px 10px;
  position: relative;
}
.area-rnw .apage-voice__title-main::before, .area-rnw .apage-voice__title-main::after{
  content: '';
  position: absolute;
  left: -35px;
  right: -25px;
  height: 3px;
  background: black;
}
.area-rnw .apage-voice__title-main::before{
  top: -14px;
  transform: rotate(-10deg);
}
.area-rnw .apage-voice__title-main::after{
  bottom: -14px;
  transform: rotate(10deg);
}
.area-rnw .apage-voice__body{
  max-width: 600px;
  margin: 0 auto;
}
/* cat-area-voice.php が出力するクラスを上書き — カルーセル化
   2026-07-08 デザイン対応: 本番CSS(phone.css/main.css)がこのincludeの共有クラス
   (.category-area_voice / .voice_inner / .voice_comment_point)に独自の背景・余白を
   当てているため（コルクボード画像・白背景・margin!importantでの余白等）、
   青ストライプ背景が隠れて見た目が崩れていた。ここで明示的に打ち消す。 */
.area-rnw .apage-voice .category-area_voice > h2{ display: none; }
.area-rnw .apage-voice .category-area_voice{
  background: none; /* 本番: background-color:#fff を打ち消し（青ストライプを透過させる） */
  width: auto;       /* 本番: 900px(PC)/100%(SP) 固定幅を打ち消し */
  padding: 0;
}
.area-rnw .apage-voice .voice_inner{
  margin: 0 0 0 10px;
  background: none; /* 本番: voice_background_cork.webp（コルク画像）を打ち消し */
  width: auto;       /* 本番: 800px(PC)/100%(SP) 固定幅を打ち消し */
}
.area-rnw .apage-voice .background_rgba{
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 14px;
  padding: 55px 16px 20px;
  scrollbar-width: none;
  /* 2026-07-14 デザイン対応: css/page_voice.css の .background_rgba{background-color:rgba(255,255,255,.5)}
     がheader.php経由で全ページに読み込まれており、ストライプ背景の上に薄い白帯が乗って見えていたため打ち消す */
  background: none;
}
.area-rnw .apage-voice .background_rgba::-webkit-scrollbar{ display: none; }
.area-rnw .apage-voice .voice_comment_point{
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 16px;
  padding: 18px 16px 20px !important;
  display: grid;
  grid-template-columns: 96px 1fr;
  /* 2026-07-14: 固定width:380px !important があり、380px未満の狭い画面(iPhone SE=375px等)で
     カードが画面幅をはみ出し横スクロール/崩れの原因になっていたため削除。
     flex:0 0 100%（カルーセルの1枚=親要素の実幅）に任せる。 */
  gap: 6px 14px;
  align-items: start;
  position: relative;
  margin: 0 !important;
}
.area-rnw .apage-voice .voice_comment_title{
  display: none;
}

.area-rnw .apage-voice .voice_comment_point .age_area {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 2px;
  padding: 2px;
  background: #000;
  border: none;
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, calc(100% - 16px) 50%, 100% 100%, 0 100%);
  height: auto;
  width: auto;
  max-width: none;
  align-self: start;
  justify-self: start;
  /* 2026-07-14: marginはスマホ用のデフォルト値。PC専用の値は下のPCブロック
     (@media (min-width:768px)、.apage-voice__body の直前あたり)側に分離した。
     このルール(メディアクエリの外側=ベース)を直接編集するとスマホ・PC両方に
     効いてしまうため、PCだけ調整したい場合はPC側ブロックに書くこと。 */
  margin: -16px 0 0;
  z-index: 1;
}
.area-rnw .apage-voice .voice_comment_point .age_area dt{ display: none; }
.area-rnw .apage-voice .voice_comment_point .age_area dd{ margin: 0; font-size: 14px; font-weight: 900; line-height: 1; }
.area-rnw .apage-voice .voice_comment_point .age_area dd.age_area_age{
  background: #47b4ea;
  color: #000000;
  padding: 7px 10px;
}
.area-rnw .apage-voice .voice_comment_point .age_area dd.age_area_age span{ font-size: 14px; font-family: inherit; letter-spacing: 0; }
.area-rnw .apage-voice .voice_comment_point .age_area dd.age_area_area{
  background: #fff;
  color: #000;
  padding: 7px 28px 7px 10px;
}
.area-rnw .apage-voice .voice_comment_point .age_area dd + dd::before{ content: ''; margin: 0; }
.area-rnw .apage-voice .text_center{
  grid-column: 2;
  grid-row: 2;
  font-size: 13px;
  font-weight: 700;
  /* 2026-07-10 デザイン対応: css/page_voice.css が同じh2要素に
     color/text-align を !important で強制しているため、こちらも !important で上書き */
  color: #47b4ea !important;
  margin: 0;
  text-align: left !important;
  line-height: 1.4;
  align-self: start;
}
.area-rnw .apage-voice .voice_comment_text{
  grid-column: 1 / -1;
  grid-row: 3;
  background: rgb(179 219 242 / 20%);
  border-radius: 10px;
  padding: 5px 15px;
}
.area-rnw .apage-voice .voice_comment_text p{
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: black;
  font-weight: 700;
  letter-spacing: .08em;
}

/* 基本スタイル（スマホ用） */
.area-rnw .apage-voice::before {
    content: '';
    display: block;
    position: absolute;
    top: -150px;
    left: 0%;
    transform: translateX(0%);
    width: 100%;
    height: 320px;
    background-color: #BBB;
    background-repeat: no-repeat;
    -webkit-mask-image: url(../img/area/apage-voice.svg);
    mask-image: url(../img/area/apage-voice.svg);
    -webkit-mask-size: 100% 100%;
    mask-size: 150% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    z-index: -1;

    /* スライド用のCSS変数 */
    background-image: var(--bg-img);
    background-position: var(--bg-pos);
    background-size: var(--bg-size);
    transition: var(--bg-trans, none);
}

/* 2026-07-10 デザイン対応: css/page_voice.css が .voice_comment_point::after に
   左上の斜め装飾アイコン(icon-naname-3color.png)を当てているため打ち消す。
   （::beforeは下の丸写真ルールで完全に上書きされるので対応不要） */

.area-rnw .apage-voice .voice_comment_thumb {
    content: '';
    position: absolute;
    top: -50px;
    left: 20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ddd center / cover no-repeat;
    box-shadow: 0 0 0 5px #fff;
}

/* --- おすすめ店舗 --- */
.area-rnw .apage-recshops{
	margin: -50px auto 0 auto;
	max-width: 1200px;
	margin-top: -150px;
	padding: 150px 16px 50px;
	background: #fff;
	position: relative;
	background-color: var(--area-theme-bg-color);
	background-image: radial-gradient(rgba(255, 255, 255, .55) 7px, transparent 7px), radial-gradient(rgba(255, 255, 255, .55) 7px, transparent 7px);
	background-size: 65px 65px;
	background-position: 0 0, 35px 35px;
	background-attachment: fixed;
}
/* 2026-07-10 デザイン対応: PICK UP吹き出しをセクション基準の%位置(::before)から
   見出し(h2)の内側span基準のpx位置に変更。従来は.apage-recshopsの幅に対する%指定だったため、
   セクション幅が変わる（10%padding追加やレスポンシブ変化）たびに見出しとの相対位置がズレていた。
   h2自体の::before/::afterは左右のブラケット装飾で使用済みのため、見出し内の
   .apage-recshops__pref-name（「都道府県名」テキスト）のspanに::beforeとして持たせる。
   position指定が無いのでpref-nameの::beforeはpref-nameの祖先のうち直近でposition:relativeな
   要素(=h2自体)を基準に配置される＝見出しの位置に完全追従する。 */
.area-rnw .apage-recshops__pref-name::before{
  content: '';
  position: absolute;
  top: -46px;
  left: -20px;
  width: 64px;
  height: 64px;
  background: url(../img/area/pickup.svg) no-repeat center / contain;
  z-index: 1;
}
.area-rnw .apage-voice, .area-rnw .apage-voice~.apage-recshops{
  background-color: var(--area-theme-bg-color);
  background-image: radial-gradient(rgba(255, 255, 255, .55) 7px, transparent 7px), radial-gradient(rgba(255, 255, 255, .55) 7px, transparent 7px);
  background-size: 65px 65px;
  background-position: 0 0, 35px 35px;
  background-attachment: fixed;
}
.area-rnw .apage-recshops__title {
  text-align: center;
  font-size: clamp(18px, 5vw, 24px);
  font-weight: 900;
  color: black;
  margin: 0 0 12px;
  line-height: 1.2;
  letter-spacing: .08rem;
  position: relative;
  display: inline-block;
  padding: 0px 30px 6px;
  left: 50%;
  transform: translateX(-50%);
}
.area-rnw .apage-recshops__title::before{
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 20px; height: 100%;
  border: 4px solid #333;
  border-right: none;
  border-radius: 3px 0 0 3px;
}
.area-rnw .apage-recshops__title::after{
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 20px; height: 100%;
  border: 4px solid #333;
  border-left: none;
  border-radius: 0 3px 3px 0;
}
.area-rnw .apage-recshops__pref-name{
  font-size: 0.75em;
}
.area-rnw .apage-recshops__hint{
  margin: 0 0 24px;
  text-align: center;
  line-height: 1;
}
.area-rnw .apage-recshops__hint::before{
  content: '⋮';
  display: block;
  font-size: 22px;
  color: #333;
  font-weight: 900;
  margin-bottom: 4px;
}
.area-rnw .apage-recshops__hint::after{
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-right: 3px solid #333;
  border-bottom: 3px solid #333;
  transform: rotate(45deg);
  margin: 0 auto;
  border-radius: 2px;
}
.area-rnw .apage-shop{
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 4px 18px rgba(0,0,0,.09);
	padding: 1rem;
}
.area-rnw .apage-shop:last-child{ margin-bottom: 0; }
.area-rnw .apage-shop__name {
  color: #7cb8dd;
  margin: 0 auto;
  font-size: 24px;
  font-weight: 700;
  padding: 0px 0px 2px;
	margin:1.5rem 1rem;
  text-align: center;
  letter-spacing: .5px;
	border-bottom: 2px dashed #888;
}
/* 2026-07-08 デザイン対応: 総当たり2列グリッドから「メイン1枚+サムネ複数」構成に変更 */
.area-rnw .apage-shop__gallery{
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 1rem;
	margin: 0 0 1.5rem;
}
.area-rnw .apage-shop__gallery-main img{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.area-rnw .apage-shop__gallery-thumbs {
  display: grid;
  gap: 10px;
  grid-area: benefits;
  grid-template-columns: repeat(3, 1fr);
  align-self: start;
  padding: 10px 0;
}
.area-rnw .apage-shop__gallery-thumbs img {
  flex: 1 1 0;
  min-width: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  box-shadow: 1px 1px 3px rgb(69 68 68 / 86%);
}
.area-rnw .apage-shop__subtitle {
  font-size: 18px;
  color: black;
	padding: 0px 1rem 0px;
    margin: 0 0 1rem;
  text-align: center;
  letter-spacing: 0.08rem;
  font-weight: 900;
  /* 2026-07-08 デザイン対応: 見出し両脇にシェブロン装飾を追加 */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.area-rnw .apage-shop__subtitle::before,
.area-rnw .apage-shop__subtitle::after {
  content: '';
  flex: 1 1 0;
  min-width: 0;
  height: 16px;
  background-repeat: repeat-x;
  background-position: 0;
  background-size: 18px 20px;
}
.area-rnw .apage-shop__subtitle::before {
  background-image: url(../img/area/arrow-right-lightblue.svg);
}
.area-rnw .apage-shop__subtitle::after {
  background-image: url(../img/area/arrow-left-lightblue.svg);
}
.area-rnw .apage-shop__benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0px 1rem 0px;
	margin:0 0 1.5rem;
}
.area-rnw .apage-shop__benefit {
  background: #fff;
  border: 2px solid #b3dbf2;
  border-radius: 10px;
  font-size: 12px;
  padding: 8px 4px;
  text-align: center;
  color: #9dc9e1;
  font-weight: 700;
  line-height: 1.3;
}
.area-rnw .apage-shop__desc {
	padding:0rem 1rem;
	line-height: 1.75;
	color: black;
	text-align: justify;
	margin: 0 0 1rem;
}
.area-rnw .apage-shop__desc p{ margin: 0 0 .5em; }
.area-rnw .apage-shop__desc p:last-child{ margin-bottom: 0; }
.area-rnw .apage-shop__btn {
  display: block;
  position: relative;
  text-align: center;
  margin: 1.5rem auto;
    max-width: 250px;
  background: var(--area-theme-bg-color);
  color: black;
  font-weight: 800;
  font-size: 20px;
  padding: 12px 65px;
  border-radius: 26px;
  letter-spacing: .12rem;
  line-height: 1;
	box-sizing:border-box;
	border:1px solid #4442;
	border-bottom-width:2px;
}
.area-rnw .apage-shop__btn .arrow{ display: none; }
.area-rnw .apage-shop__btn::after {
  content: '';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 25px;
  background: url(../img/area/arrow-b.svg) no-repeat center / contain;
}

.area-rnw .apage-voice{ margin-top: 460px; }
.area-rnw .apage-voice__head::before {left: 50%;transform: translateX(-170px) translateY(-55%);}
.area-rnw .apage-voice__area{ left: 50%; white-space: normal; transform: translateX(-222px) rotate(-10deg); width: 100%; }
  .area-rnw .apage-voice::before {
      top: -320px;
      height: 100%;
      -webkit-mask-image: url(../img/area/toshi-area-mask.png);
      mask-image: url(../img/area/toshi-area-mask.png);
      -webkit-mask-size: 100% 100%;
      mask-size: 100% 100%;
      width: 100%;
      height: 100%;
  }
  .area-rnw .apage-voice::after{
  -webkit-mask-image: url(../img/area/toshi-area-mask.png);
  mask-image: url(../img/area/toshi-area-mask.png);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}



/* PC (768px+) */
@media (min-width: 768px) {
/*  .area-rnw .apage-hero__logo{ max-width: 460px; }	*/
  .area-rnw .apage-h1sec__title{ font-size: 24px; }
  .area-rnw .apage-chara{ max-width: 150px; bottom: -40px; }

.area-rnw .apage-voice{ margin-top: 460px; }
.area-rnw .apage-voice__head::before {left: 50%;transform: translateX(-170px) translateY(-55%);}
  .area-rnw .apage-voice__area{ left: 50%; white-space: normal; transform: translateX(-222px) rotate(-10deg); width: 100%;}
    .area-rnw .apage-voice::before {
        top: -320px;
        height: 100%;
        -webkit-mask-image: url(../img/area/toshi-area-mask.png);
        mask-image: url(../img/area/toshi-area-mask.png);
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
        width: 100%;
        height: 100%;
    }
    .area-rnw .apage-voice::after{
    -webkit-mask-image: url(../img/area/toshi-area-mask.png);
    mask-image: url(../img/area/toshi-area-mask.png);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
  .area-rnw .apage-areas__list{ max-width: 480px; margin: 0 auto; }
  .area-rnw .apage-areas__heading-ja{ font-size: 20px; }
  .area-rnw .apage-areas__head::before{ font-size: 2.2rem; }
  .area-rnw .apage-areas__lens{ display: none; }
  .area-rnw .apage-areas__head::after{ width: 68px; height: 74px; }
  .area-rnw .apage-recshops{ padding-left: 10%; padding-right: 10%; }
  .area-rnw .apage-areas{ margin-left: 10%; margin-right: 10%; }
        .area-rnw .apage-shop {
          display: grid;
          grid-template-columns: 1fr 1fr;
          grid-template-rows: auto auto auto 1fr auto auto;
          column-gap: 32px;
          row-gap: 10px;
          padding: 28px 50px 36px;
          grid-template-areas: "name name" "gallery subtitle" "gallery benefits" "gallery spacer" "desc desc" "btn btn";
          margin-bottom: 36px;
        }
  .area-rnw .apage-shop__name{ grid-area: name; width: 100%; padding: 0; text-align: center; }
  .area-rnw .apage-shop__gallery{ grid-area: gallery; }
  .area-rnw .apage-shop__subtitle{ grid-area: subtitle; align-self: start; padding: 0 0 8px; }
  .area-rnw .apage-shop__benefits{ grid-area: benefits; grid-template-columns: repeat(3, 1fr); align-self: start; padding: 0; }
  .area-rnw .apage-shop__desc{ grid-area: desc; }
  .area-rnw .apage-shop__btn{ grid-area: btn; max-width: 380px;  }
  /* 2026-07-10 デザイン対応: 応募者の声カードは最大3件しか取得しないため(WP_Query posts_per_page:3)、
     PC幅ではスワイプカルーセルではなく3枚横並びグリッドで全件見せる。
     .apage-voice__body の max-width:600px のままだと1カード180px程度まで狭くなり、
     カード内部の「アバター130px+1fr」グリッドが破綻して文字が縦1列に折り返されるため、
     3カード分の余裕を持たせて max-width を広げる（130px+テキストが収まる目安で1カード340px前後） */
  .area-rnw .apage-voice__body{ max-width: 1100px; }
  /* 2026-07-14 デザイン対応: 冒頭の「本番CSS打ち消しリセット」(ファイル先頭付近)で
     .category-area_voice に max-width:900px、.voice_inner に max-width:800px を
     残したまま(widthのみauto化)にしていたため、.apage-voice__body を1100pxに広げても
     2階層下のこの2つが800px上限のまま効いてしまい、3カードが(800-gap)/3≈246pxにしか
     広がらず、カード内テキストが意図した340px前後の幅で収まらず右にはみ出して見切れていた。
     .apage-voice内に限定してmax-widthを解除し、.apage-voice__bodyの1100pxまで広がるようにする。 */
  .area-rnw .apage-voice .category-area_voice{ max-width: none; }
  .area-rnw .apage-voice .voice_inner{ max-width: none; }
  .area-rnw .apage-voice .background_rgba{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
  }
  .area-rnw .apage-voice .voice_comment_point{ width: 100%; }
  .area-rnw .apage-voice .voice_comment_point .age_area{ margin: -34px 0 0 24px; }
}

/* =====================================================================
   都道府県の子カテゴリ(エリア/都市)ページ 絞り込みボタン非表示／地図サムネの店舗名調整
   2026-07-17 デザイン対応
   - 絞り込みボタン(.boxes_sort_area)はデザインに存在しないため非表示。ただし#boxes_tag自体は
     DOMから削除しない（/area/トップの検索モーダルから ?cond= で遷移してきた時に自動クリックする
     仕組み(testuser_category-area.php内、2026-07-11実装)が#boxes_tag liの存在に依存しているため）。
   - 地図下のサムネイル(.marker-button p、店舗名ラベル)は共有CSS(css/cat-index-map.css、
     プレフェクチャートップとも共通)がright/bottom:5pxの小さいバッジ型にしているが、
     デザイン参照でサムネ幅いっぱいに角丸無しで密着させたいとの指定があったため上書き。
   - どちらも #r_main を起点にスコープ（都道府県トップのapage系は#r_mainを使わない方針のため、
     このセレクタなら都市ページにのみ安全に効く）。#r_main付きで詳細度は既に勝っているが、
     共有CSS側の仕様変更等による事故を避けるため念のため !important も付与。
   ===================================================================== */
#r_main .boxes_sort_area{ display: none !important; }
#r_main .marker-button p{
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: auto !important;
  border-radius: 0 !important;
  text-align: left !important;
  padding: 6px 10px !important;
}

/* =====================================================================
   都道府県の子カテゴリ(エリア/都市)ページ ヒーロー（店舗写真バナー＋リボン見出し）
   2026-07-17 デザイン対応（.ai: 通勤エリアー北海道ーすすきの_pc/susukino_pc_1.ai）
   都道府県トップの apage-hero(ロゴ+地図+キャラ) とは別の、都市ページ専用のシンプルな
   ヒーロー。テンプレート側でこのセクションだけ .area-rnw でローカルにラップしている。
   ===================================================================== */
.area-rnw .acity-areahero{ position: relative; }
.area-rnw .acity-areahero__photo{
  width: 100%;
  aspect-ratio: 1440 / 220;
  background-size: cover;
  background-position: center;
}
.area-rnw .acity-areahero__ribbon-wrap{
  display: flex;
  justify-content: center;
  padding: 32px 20px;
}
.area-rnw .acity-areahero__ribbon{
  background: url(../img/area/h1-ribon.svg) no-repeat center / contain;
  width: min(90%, 480px);
  aspect-ratio: 580.23 / 142;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 20px;
  font-size: 26px;
  font-weight: 900;
  color: #000;
  text-align: center;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
@media (max-width: 560px){
  .area-rnw .acity-areahero__ribbon{ font-size: 20px; }
}

/* =====================================================================
   都道府県の子カテゴリ(エリア/都市)ページ 店舗一覧グリッド
   2026-07-11 デザイン対応（.ai: 通勤エリアー北海道ーすすきの_pc/susukino_pc_1_ol.ai）
   このページ(testuser_category-area.php の「以下、旧デザイン」分岐)は .area-rnw で
   ラップされていない（本番そのままの #r_area > #r_main 構造）。よって .area-rnw ではなく
   一意な #boxes を起点にスコープする。カード自体は絞り込みJS(js/sort.js、共通ファイル)が
   `#boxes .post` を対象に動くため class="post acity-shop ..." のまま維持し、
   本番の div.post{width:50%;padding:0 20px;border:1px solid...} 等を明示的に上書きしている。
   吹き出し風の写真フレームは .ai内の実ベジェパスをPythonで抽出し、objectBoundingBox方式の
   SVG clipPath(#acity-blob-clip、PHP側に定義済み)としてレスポンシブに再現。
   ===================================================================== */
#boxes.acity-shop-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background-color: var(--area-theme-bg-color);
  background-image: radial-gradient(rgba(255,255,255,.55) 7px, transparent 7px), radial-gradient(rgba(255,255,255,.55) 7px, transparent 7px);
  background-size: 65px 65px;
  background-position: 0 0, 35px 35px;
  border-radius: 20px;
  padding: 48px 48px 40px;
  margin: 0 1rem 40px;
  width: auto;
}
#boxes.acity-shop-grid .acity-shop{
  position: relative;
  width: auto;
  margin: 0;
  padding: 0 32px 40px;
  border: none;
  box-sizing: border-box;
  background: none;
  border-right: 5px dashed rgba(70,140,190,.4);
}
#boxes.acity-shop-grid .acity-shop:nth-child(3n){ border-right: none; }
#boxes.acity-shop-grid .acity-shop:nth-child(n+4){
  border-top: 1px dashed rgba(70,140,190,.4);
  padding-top: 40px;
  margin-top: 40px;
}
#boxes.acity-shop-grid .acity-shop__name{
  display: block;
  width: auto;
  min-height: 0;
  margin: 0 0 10px; /* 2026-07-17: タイトルと写真の余白を20px→10pxに詰めた */
  padding: 0;
  font-size: 22px;
  font-weight: 900;
  color: #222;
  line-height: 1.3;
  text-align: center;
  background: none;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
#boxes.acity-shop-grid .acity-shop__name a{ color: inherit; text-decoration: none; }
#boxes.acity-shop-grid .acity-shop__photo{
  position: relative;
  width: 100%;
  aspect-ratio: 308 / 190;
  margin: 0 0 20px;
}
#boxes.acity-shop-grid .acity-shop__photo a{ display: block; width: 100%; height: 100%; }
#boxes.acity-shop-grid .acity-shop__photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  -webkit-mask-image: url(../img/area/store-img-mask.png);
  mask-image: url(../img/area/store-img-mask.png);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
#boxes.acity-shop-grid .acity-shop__photo::before{
  content: '';
  position: absolute;
  inset: -6px;
  background: #fff;
  -webkit-mask-image: url(../img/area/store-img-mask.png);
  mask-image: url(../img/area/store-img-mask.png);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  z-index: -1;
}
#boxes.acity-shop-grid .acity-shop__photo::after{
  content: '';
  position: absolute;
  inset: -8px;
  background-image: url(../img/area/store-img-stroke.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 2;
}
#boxes.acity-shop-grid .acity-shop__desc{
  margin: 0 0 24px;
  padding: 0;
  height: auto;
}
#boxes.acity-shop-grid .acity-shop__desc p{
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #1a1a1a;
  text-align: left;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-weight: 700;
}
#boxes.acity-shop-grid .acity-shop__btn{
  display: block;
  position: relative;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  text-align: center;
  background: #47b4ea;
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  padding: 14px 20px;
  border-radius: 30px;
  text-decoration: none;
  letter-spacing: .08em;
  box-sizing: border-box;
}
#boxes.acity-shop-grid .acity-shop__btn .arrow{ display: none; }
#boxes.acity-shop-grid .acity-shop__btn::after{
  content: '';
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 18px;
  background: url(../img/area/arrow-w.svg) no-repeat center / contain;
}
@media (max-width: 912px){
  #boxes.acity-shop-grid{ grid-template-columns: 1fr; padding: 24px 20px 8px; }
  #boxes.acity-shop-grid .acity-shop{ border-right: none; padding: 0 0 32px; }
  #boxes.acity-shop-grid .acity-shop:nth-child(n+2){
    border-top: 1px dashed rgba(70,140,190,.4);
    padding-top: 32px;
    margin-top: 32px;
  }
}
@media (min-width: 913px) and (max-width: 1180px){
  #boxes.acity-shop-grid{ grid-template-columns: repeat(2, 1fr); }
  #boxes.acity-shop-grid .acity-shop:nth-child(3n){ border-right: 1px dashed rgba(70,140,190,.4); }
  #boxes.acity-shop-grid .acity-shop:nth-child(2n){ border-right: none; }
  #boxes.acity-shop-grid .acity-shop:nth-child(n+3){
    border-top: 1px dashed rgba(70,140,190,.4);
    padding-top: 40px;
    margin-top: 40px;
  }
}

/* =====================================================================
   グローバルメニュー（ハンバーガー展開・WP版のみ）
   ===================================================================== */
.area-rnw .global-menu{display:none;background:black;border-top:1px solid rgba(255,255,255,.12);}
.area-rnw .global-menu.is-open{display:block;}
.area-rnw .global-menu ul{max-width:var(--max);margin:0 auto;padding:14px 18px;display:flex;flex-wrap:wrap;gap:8px;}
.area-rnw .global-menu a{
  display:inline-block;background:rgba(255,255,255,.08);color:#fff;
  font-size:13px;font-weight:500;padding:6px 14px;
  border-radius:16px;border:1px solid rgba(255,255,255,.25);
}




/* ==========================================================================
   Voice Section Component Scoped Styles (.voice-section)
   外部CSSや全域スタイル(*, body, .container等)へ影響を与えない完全スコープ化
   ========================================================================== */

.voice-section {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 70px;
  overflow: hidden;
  color: #333333;
  box-sizing: border-box;
}

.voice-section *,
.voice-section *::before,
.voice-section *::after {
  box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   Upper Slideshow Area (Dynamic SVG Mountain Arch Shape)
   -------------------------------------------------------------------------- */
.voice-section .slideshow-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 220px;
  background-color: transparent;
  overflow: hidden;
  z-index: 2;
  clip-path: url(#double-mountain-clip);
  -webkit-clip-path: url(#double-mountain-clip);
}

@media (min-width: 768px) {
  .voice-section .slideshow-wrapper {
    height: 350px;
  }
}

.voice-section .slideshow-inner {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.voice-section .slide-item {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.voice-section .slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.voice-section .slideshow-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}

.voice-section .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.voice-section .dot.active {
  background-color: #319ed9;
  width: 24px;
  border-radius: 10px;
}

/* --------------------------------------------------------------------------
   Main Container (Stripes & Decorative Patterns)
   -------------------------------------------------------------------------- */
.voice-section .container {
  width: 100%;
  max-width: 1200px;
  margin: -50px auto 0 auto;
  padding: 60px 20px 70px 20px;
  position: relative;
  z-index: 1;
  background-color: #85c7e8;
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, .28) 0px, rgba(255, 255, 255, .28) 4px, transparent 2px, transparent 11px);
  clip-path: url(#bottom-concave-clip);
  -webkit-clip-path: url(#bottom-concave-clip);
}

@media (min-width: 768px) {
  .voice-section .container {
    margin: -80px auto 0 auto;
    padding: 90px 20px 100px 20px;
  }
}

/* --------------------------------------------------------------------------
   Title Unit (Megaphone & Header)
   -------------------------------------------------------------------------- */
.voice-section .title-unit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 15px 0 25px 0;
  transform: rotate(-2deg);
}

.voice-section .megaphone-icon {
  width: 65px;
  height: 55px;
  flex-shrink: 0;
}

.voice-section .megaphone-svg {
  width: 100%;
  height: 100%;
}

.voice-section .title-text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.voice-section .sub-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #222222;
  margin-bottom: -2px;
}

.voice-section .main-title {
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: #222222;
  line-height: 1.2;
}

.voice-section .title-text-box::before,
.voice-section .title-text-box::after {
  content: '';
  position: absolute;
  left: -20px;
  right: -20px;
  height: 2px;
  background-color: #222222;
}

.voice-section .title-text-box::before {
  top: -4px;
}

.voice-section .title-text-box::after {
  bottom: -4px;
}

/* --------------------------------------------------------------------------
   Cards Section (Desktop / Mobile)
   -------------------------------------------------------------------------- */
.voice-section .cards-wrapper-outer {
  position: relative;
  width: 100%;
}

.voice-section .scroll-arrow-hint {
  display: none;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  align-items: center;
  justify-content: center;
  color: #319ed9;
  z-index: 5;
  cursor: pointer;
  animation: voice-pulse-arrow 1.8s infinite ease-in-out;
}

@keyframes voice-pulse-arrow {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(5px); }
}

.voice-section .cards-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  width: 100%;
}

/* 画面幅がカード3枚分＋サイドメニュー250px (1274px未満) 狭くなった時点で自動的に横スクロール表示へ切り替え */
@media (max-width: 1273px) {
  .voice-section .cards-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 20px 0;
    scrollbar-width: none;
  }
  .voice-section .cards-wrapper::-webkit-scrollbar {
    display: none;
  }

  .voice-section .cards-container {
    display: flex;
    justify-content: flex-start;
    width: max-content;
    gap: 16px;
    padding: 0 10px;
    margin: 0 auto;
  }

  .voice-section .card-item {
    width: 320px;
    max-width: 320px;
    scroll-snap-align: center;
    flex-shrink: 0;
  }
}

/* --------------------------------------------------------------------------
   Individual Card Design (Overlapping Avatar & Ribbon Flag Badge)
   -------------------------------------------------------------------------- */
.voice-section .card-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 14px 16px 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1 1 0;
  max-width: 340px;
  margin-top: 75px; /* 上部にはみ出すアバター＆バッジのための十分なスペース */
}

.voice-section .card-header {
  display: flex;
  align-items: flex-start;
  position: relative;
  min-height: 75px;
  margin-bottom: 12px;
}

/* カード枠上部から半分上にはみ出る大きめ丸型アバター */
.voice-section .avatar-box {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: -90px; /* 枠線上端から約半分上にはみ出し */
  left: 6px;
  border: 4px solid #ffffff;
  box-shadow: 0 3px 8px rgba(0,0,0,0.12);
  background-color: #ffffff;
  z-index: 3;
}

.voice-section .avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ヘッダー右側コンテンツ */
.voice-section .badge-and-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 140px;
  flex: 1;
  padding-top: 14px; /* バッジがはみ出てもコピーテキストと被らない余白 */
}

/* カード枠上端線に跨がる形で約半分上にはみ出るリボンバッジ */
.voice-section .tag-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 900;
  background-color: #ffffff;
  position: absolute;
  top: -46px; /* 白枠の上端線を跨いで約半分が上にはみ出る絶妙な位置 */
  left: 140px;
  z-index: 4;
  border: 2px solid #222222;
  border-radius: 4px 0 0 4px;
  border-right: none;
  box-shadow: 1px 1px 0px #000;
  padding-right: 12px;
  /* 右端の凹型（内側に凹むリボン矢印切り込み `<`） */
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 50%, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 50%, 100% 100%, 0 100%);
}

.voice-section .tag-badge .age {
  background-color: #3caee3;
  color: #000000;
  padding: 2px 7px;
  font-weight: 900;
  border-right: 2px solid #222222;
}

.voice-section .tag-badge .job {
  color: #222222;
  padding: 2px 8px 2px 6px;
  font-weight: 900;
}

.voice-section .copy-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: #3caee3;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-top: 4px;
}

.voice-section .card-body {
  background-color: #f2f8fc;
  border-radius: 14px;
  padding: 14px;
  font-size: 0.83rem;
  line-height: 1.6;
  color: #222222;
  font-weight: 700;
  flex: 1;
}

.voice-section .card-body .marker {
  background: linear-gradient(transparent 55%, #fff100 55%);
  font-weight: 900;
}

.voice-section .bottom-pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-image: radial-gradient(#ffffff 25%, transparent 26%);
  background-size: 18px 18px;
  background-position: 0 0;
  opacity: 0.7;
  mask-image: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
  pointer-events: none;
}

.area-rnw .apage-recshops {
}
