:root{
  --bg:#f5f7fb;
  --text:#0f172a;
  --muted:#6b7280;
  --card:#ffffff;
  --shadow: 0 14px 40px rgba(15,23,42,.08);
  --shadow-soft: 0 10px 25px rgba(15,23,42,.08);
  --radius:22px;
  --tile-radius:26px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:var(--font);
  background: radial-gradient(900px 450px at 50% 0%, #ffffff 0%, var(--bg) 70%);
  color:var(--text);
}
.container{max-width:1180px;margin:0 auto;padding:28px 18px 58px}
.header{text-align:center;margin-top:6px}
.h1{font-size:52px;letter-spacing:.2px;margin:10px 0 6px;font-weight:900}
.sub{font-size:14px;color:var(--muted);margin:0 0 14px}

.segment{
  display:inline-flex;
  gap:8px;
  background:#eef2ff;
  padding:8px;
  border-radius:999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 10px 22px rgba(15,23,42,.08);
}
.segment a{
  text-decoration:none;
  color:var(--muted);
  font-weight:700;
  font-size:14px;
  padding:10px 16px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.segment a.active{
  background:#fff;
  color:var(--text);
  box-shadow: var(--shadow-soft);
}

.nav{
  margin:22px auto 20px;
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}
.chip{
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 18px;
  border-radius:999px;
  background:#fff;
  box-shadow: var(--shadow);
  min-width:160px;
  justify-content:flex-start;
  text-decoration:none;
  color:var(--text);
  font-weight:700;
}
.chip .dot{
  width:34px;height:34px;border-radius:50%;display:grid;place-items:center;
  color:#fff;font-weight:900;font-size:14px;
}
.dot.food{background:#ff6b6b}
.dot.stay{background:#22c55e}
.dot.travel{background:#3b82f6}
.dot.friends{background:#8b5cf6}
.dot.help{background:#facc15;color:#1f2937}

.grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(178px, 1fr));
  gap:30px;
  align-items:start;
  justify-items:center;
  margin-top:10px;
}
.tile-wrap{width:178px;text-align:center}
.tile-wrap--featured{
  width:100%;
  max-width:386px;
  grid-column:span 2;
}
.tile{
  position:relative;
  width:178px;
  height:178px;
  border-radius:var(--tile-radius);
  display:grid;
  place-items:center;
  text-decoration:none;
  transition: transform .08s ease;
  box-shadow:none;
  background:transparent;
  overflow:hidden;
}
.tile:hover{transform: translateY(-2px); box-shadow:none}
.tile--featured{
  width:100%;
  height:210px;
}
.tile-wrap--featured .label{
  font-size:14px;
}
.label{
  margin-top:12px;
  font-size:12px;
  letter-spacing:.6px;
  font-weight:800;
  color:#0b1224;
}

/* Tile colors (match the feel of screenshot) */
.c-kaiten{background:#ff6b6b}
.c-sushi{background:#2dd4bf}
.c-okonomiyaki{background:#f97316}
.c-cafe{background:#6d5efc}
.c-wagashi{background:#ff6db0}
.c-soba{background:#9aa0ff}
.c-udon{background:#6fb2ff}
.c-family{background:#ff6b6b}
.c-yakiniku{background:#ffa23a}
.c-tempura{background:#f6b2a6}
.c-donburi{background:#d96b52}
.c-seafood{background:#00d1c7}
.c-curry{background:#f6c65a}
.c-washoku{background:#f2d08a}
.c-shabu{background:#e6d3a1}

/* RAMEN: Gold + PRO (no frame) */
.c-ramen{
  background: linear-gradient(180deg, #f9d976 0%, #f39f86 100%);
}
.badge{
  position:absolute;
  right:10px;
  top:10px;
  background:#111827;
  color:#fff;
  padding:5px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  letter-spacing:.3px;
}

.icon{width:100%;height:100%;opacity:1; display:grid; place-items:center; position:relative}
.icon svg{width:64px;height:64px}
.icon path,.icon circle,.icon rect,.icon line{stroke:#fff;stroke-width:3.2;fill:none;stroke-linecap:round;stroke-linejoin:round}
.icon .fill{fill:#fff;stroke:none}

/* New tile images — edge-to-edge without outer frames */
.icon-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:50% 50%;
  border-radius:24px;
  box-shadow: 0 10px 20px rgba(15,23,42,.14);
  transform: scale(var(--img-scale, 1.15));
  will-change: transform;
}

.tile::before{display:none}

/* Extras section under tiles */
.extras{max-width:980px; margin:34px auto 0;}
.extras-title{font-weight:900; letter-spacing:.2px; font-size:16px; color:#0b1224; margin:0 0 12px; text-align:left;}
.extras-grid{display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap:16px;}
@media (max-width: 860px){ .extras-grid{grid-template-columns:1fr;} }

.promo-card{
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 18px;
  text-decoration:none;
  color: var(--text);
  transition: transform .10s ease, box-shadow .10s ease;
}
.promo-card:hover{ transform: translateY(-2px); box-shadow: 0 18px 52px rgba(15,23,42,.12); }
.promo-top{display:flex; align-items:center; gap:12px;}
.promo-icon{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center;
  font-weight:1000;
  background: linear-gradient(180deg, rgba(15,23,42,.08), rgba(15,23,42,.04));
  border:1px solid rgba(15,23,42,.10);
}

/* Promo icons as images (from your アイコン.zip) */
.promo-icon--img{ background: transparent; border: none; }
.promo-icon-img{
  width:44px; height:44px;
  border-radius:14px;
  display:block;
  object-fit:cover;
  box-shadow: 0 10px 20px rgba(15,23,42,.12);
}
.promo-kicker{font-size:12px; color: var(--muted); font-weight:800; letter-spacing:.4px;}
.promo-h{font-size:16px; font-weight:1000; letter-spacing:.1px; margin-top:2px;}
.promo-p{margin-top:10px; font-size:13px; color:#334155; line-height:1.55;}
.promo-cta{margin-top:12px; display:flex; align-items:center; gap:10px; flex-wrap:wrap;}
.promo-btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 12px; border-radius:14px;
  background:#111827; color:#fff; font-weight:1000; font-size:13px;
}
.promo-note{font-size:12px; color: var(--muted); font-weight:700;}

.page-card{
  max-width:960px;
  margin:16px auto 0;
  background:#fff;
  border-radius:18px;
  box-shadow: var(--shadow);
  padding:22px;
}
.h2{margin:0 0 10px;font-size:26px}
.p{margin:0;color:#334155;line-height:1.6}
.preview{
  margin-top:14px;
  padding:14px 16px;
  border-radius:14px;
  background:#f8fafc;
  border:1px solid #e5e7eb;
}
.locked{margin-top:14px}
.locked ul{margin:10px 0 0;padding-left:20px;color:#334155}
.cta{
  margin-top:16px;
  display:flex;
  gap:10px;
  align-items:center;
}
.btn{
  border:none;
  border-radius:12px;
  padding:12px 14px;
  font-weight:900;
  cursor:pointer;
}
.btn.primary{background:#111827;color:#fff}
.btn.ghost{background:#fff;border:1px solid #e5e7eb;color:#111827}
.small{font-size:12px;color:#6b7280;margin-left:auto}

@media (max-width: 980px){
  .grid{grid-template-columns: repeat(3, minmax(166px, 1fr));}
  .tile-wrap--featured{max-width:362px;}
  .tile--featured{height:200px;}
}
@media (max-width: 560px){
  .h1{font-size:34px}
  .grid{grid-template-columns: repeat(2, minmax(150px, 1fr)); gap:18px;}
  .tile-wrap{width:150px}
  .tile{width:150px;height:150px}
  .tile-wrap--featured{grid-column:1 / -1; max-width:318px; width:100%;}
  .tile-wrap--featured .tile{width:100%; height:170px;}
  .chip{min-width:140px}
}

/* PRO gate */
html.pro-checking body { opacity: 0.02; }
html.pro-ok body { opacity: 1; }


.hero-board{
  display:grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap:24px;
  align-items:center;
  max-width:1060px;
  margin:20px auto 8px;
  padding:22px;
  border-radius:28px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(15,23,42,.08);
  box-shadow: var(--shadow);
}
.hero-board-copy{text-align:left}
.hero-board-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.7px;
  text-transform:uppercase;
  color:#7c3aed;
  background:#f3e8ff;
  padding:8px 12px;
  border-radius:999px;
}
.hero-board-title{
  margin:14px 0 10px;
  font-size:30px;
  line-height:1.15;
  font-weight:900;
  letter-spacing:.2px;
}
.hero-board-text{
  margin:0;
  color:#334155;
  font-size:14px;
  line-height:1.7;
}
.hero-board-actions{
  margin-top:16px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.hero-board-frame{
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.92));
  border-radius:24px;
  padding:14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 16px 34px rgba(15,23,42,.10);
}
.hero-board-img{
  width:100%;
  display:block;
  border-radius:18px;
}
.grid-note{
  max-width:1060px;
  margin:18px auto 8px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.9px;
  text-transform:uppercase;
  color:#64748b;
}

@media (max-width: 900px){
  .hero-board{
    grid-template-columns:1fr;
    padding:18px;
  }
  .hero-board-title{font-size:26px}
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 14px;
  border-radius:999px;
  background:#ede9fe;
  color:#6d28d9;
  font-size:12px;
  font-weight:900;
  letter-spacing:.9px;
  text-transform:uppercase;
}
.home-shell{padding-top:34px}
.header--home{max-width:860px;margin:0 auto 8px}
.sub--hero{max-width:720px;margin:0 auto 2px;font-size:16px;line-height:1.7}
.nav--home{margin-top:10px;margin-bottom:20px}
.section{max-width:1060px;margin:24px auto 0}
.section-head{display:flex;align-items:end;justify-content:space-between;gap:22px;margin-bottom:12px}
.section-head.compact{align-items:center}
.section-kicker{
  font-size:12px;
  font-weight:900;
  letter-spacing:.9px;
  text-transform:uppercase;
  color:#64748b;
  margin-bottom:6px;
}
.section-title{margin:0;font-size:30px;line-height:1.15;letter-spacing:.1px}
.section-text{max-width:430px;margin:0;color:#475569;font-size:14px;line-height:1.7}
.section-head--solo{justify-content:flex-start}
.section--categories{margin-top:14px}
.section--extras{margin-top:34px}
.extras-grid--home{grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}

@media (max-width: 900px){
  .section-head{flex-direction:column;align-items:flex-start}
  .section-text{max-width:none}
  .extras-grid--home{grid-template-columns:1fr}
}


.floating-review{
  position:fixed;
  left:18px;
  bottom:18px;
  z-index:40;
  display:flex;
  align-items:center;
  gap:14px;
  max-width:360px;
  padding:14px 16px;
  border-radius:22px;
  background:rgba(17,24,39,.94);
  color:#fff;
  text-decoration:none;
  box-shadow:0 18px 44px rgba(15,23,42,.24);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}
.floating-review:hover{transform:translateY(-2px)}
.floating-review__icon{
  width:58px;
  height:58px;
  flex:0 0 58px;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,.24);
}
.floating-review__icon img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.floating-review__copy{
  display:flex;
  flex-direction:column;
  gap:4px;
  line-height:1.35;
}
.floating-review__eyebrow{
  font-size:11px;
  letter-spacing:.9px;
  text-transform:uppercase;
  font-weight:900;
  color:#fbbf24;
}
.floating-review__copy strong{
  font-size:15px;
  font-weight:900;
}
.floating-review__copy span:last-child{
  font-size:12px;
  color:rgba(255,255,255,.82);
}

@media (max-width: 760px){
  .floating-review{
    left:12px;
    right:12px;
    bottom:12px;
    max-width:none;
    padding:12px 14px;
  }
  .floating-review__icon{
    width:50px;
    height:50px;
    flex-basis:50px;
  }
  .floating-review__copy strong{font-size:14px}
}


.chip.is-active{
  box-shadow: 0 0 0 2px rgba(59,130,246,.16), var(--shadow);
}

.stay-intro-card{margin-top:26px}
.stay-flow{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}
.stay-step{
  background:#f8fafc;
  border:1px solid rgba(15,23,42,.08);
  border-radius:18px;
  padding:16px;
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.stay-step strong{
  width:32px;
  height:32px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#111827;
  color:#fff;
  font-size:14px;
  flex:0 0 32px;
}
.stay-step span{font-size:14px;line-height:1.55;color:#334155;font-weight:700}
.stay-title-sm{font-size:28px;margin-top:8px}
.stay-text-wide{max-width:760px}
.stay-region-map{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.stay-region-btn{
  border:none;
  background:linear-gradient(180deg,#ffffff,#f8fafc);
  border-radius:22px;
  padding:18px;
  text-align:left;
  box-shadow:var(--shadow-soft);
  border:1px solid rgba(15,23,42,.08);
  cursor:pointer;
  min-height:112px;
}
.stay-region-btn.is-current{
  box-shadow:0 0 0 2px rgba(34,197,94,.18), 0 14px 34px rgba(15,23,42,.10);
  border-color:rgba(34,197,94,.34);
}
.stay-region-btn.is-soon{
  opacity:.58;
  cursor:not-allowed;
}
.stay-region-label{
  display:block;
  font-size:18px;
  font-weight:900;
  color:#0f172a;
}
.stay-region-note{
  display:block;
  margin-top:8px;
  font-size:12px;
  font-weight:800;
  color:#64748b;
  letter-spacing:.4px;
  text-transform:uppercase;
}
.stay-area-chips{
  margin-top:16px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.area-chip{
  border:none;
  padding:12px 16px;
  border-radius:999px;
  background:#f8fafc;
  color:#0f172a;
  font-weight:800;
  cursor:pointer;
  box-shadow:var(--shadow-soft);
}
.area-chip.is-active{
  background:#111827;
  color:#fff;
}
.stay-results-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
}
.stay-results-meta{
  color:#64748b;
  font-size:13px;
  font-weight:800;
}
.request-status{
  min-height:20px;
  margin-top:12px;
  color:#166534;
  font-size:13px;
  font-weight:800;
}
.stay-property-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.stay-property-card{
  border:1px solid rgba(15,23,42,.08);
  border-radius:20px;
  padding:18px;
  background:#fff;
  box-shadow:var(--shadow-soft);
}
.stay-property-top{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:flex-start;
}
.stay-property-area{
  font-size:12px;
  font-weight:900;
  letter-spacing:.5px;
  text-transform:uppercase;
  color:#64748b;
}
.stay-property-title{
  margin:6px 0 0;
  font-size:20px;
  line-height:1.25;
}
.stay-property-facts{
  margin-top:10px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.stay-property-fact{
  display:inline-flex;
  align-items:center;
  padding:7px 10px;
  border-radius:999px;
  background:#f8fafc;
  color:#0f172a;
  font-size:12px;
  font-weight:800;
  border:1px solid rgba(15,23,42,.08);
}
.stay-property-id{
  font-size:11px;
  color:#64748b;
  font-weight:800;
  background:#f8fafc;
  border-radius:999px;
  padding:8px 10px;
}
.stay-property-actions{
  margin-top:16px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.stay-btn{min-width:190px;justify-content:center;text-decoration:none;display:inline-flex;align-items:center}
.stay-property-note{
  margin-top:12px;
  font-size:12px;
  color:#475569;
  line-height:1.5;
}
.stay-note{margin-top:16px}

@media (max-width: 980px){
  .stay-region-map{grid-template-columns:repeat(2,minmax(0,1fr));}
  .stay-property-grid{grid-template-columns:1fr;}
}
@media (max-width: 680px){
  .stay-flow{grid-template-columns:1fr;}
  .stay-region-map{grid-template-columns:1fr;}
  .stay-results-head{flex-direction:column;align-items:flex-start}
  .stay-title-sm{font-size:24px}
}

/* Stay weather-map refresh */
.stay-results-head--top{align-items:flex-start}
.stay-area-intro{margin-top:8px}
.stay-reset-btn{min-width:180px}

.stay-region-weather{margin-top:18px}
.stay-japan-weather__frame{
  position:relative;
  min-height:560px;
  border-radius:34px;
  padding:24px;
  background:linear-gradient(180deg,#ecfeff,#dbeafe 58%,#c7e6ff 100%);
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 24px 60px rgba(15,23,42,.12);
  overflow:hidden;
}
.stay-japan-weather__legend,
.stay-area-board__legend{
  position:relative;
  z-index:3;
  display:inline-flex;
  align-items:center;
  padding:8px 13px;
  border-radius:999px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(255,255,255,.92);
  color:#0f172a;
  font-size:11px;
  font-weight:900;
  letter-spacing:.6px;
  text-transform:uppercase;
  box-shadow:0 10px 26px rgba(15,23,42,.08);
  backdrop-filter:blur(8px);
}
.stay-japan-weather__title,
.stay-area-board__title{
  position:relative;
  z-index:3;
  margin-top:14px;
  font-size:40px;
  line-height:1;
  font-weight:950;
  color:#083344;
  text-shadow:0 2px 0 rgba(255,255,255,.45);
}
.stay-japan-weather__subtitle,
.stay-area-board__subtitle{
  position:relative;
  z-index:3;
  margin-top:8px;
  max-width:380px;
  color:#164e63;
  font-size:14px;
  line-height:1.7;
  font-weight:700;
}
.stay-japan-weather__surface,
.stay-area-board__map-surface{
  position:absolute;
  inset:14px;
  border-radius:28px;
  overflow:hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(255,255,255,.75) 0 42px, transparent 43px),
    radial-gradient(circle at 78% 18%, rgba(255,255,255,.55) 0 58px, transparent 59px),
    radial-gradient(circle at 58% 30%, rgba(255,255,255,.22) 0 120px, transparent 121px),
    linear-gradient(180deg,#6ed1ff 0%, #5cb8f8 44%, #3f8edc 100%);
}
.stay-japan-weather__svg,
.stay-area-board__svg{
  width:100%;
  height:100%;
  display:block;
}
.stay-japan-weather__svg .water,
.stay-area-board__svg .water{fill:transparent}
.stay-japan-weather__svg .land,
.stay-area-board__svg .land{fill:#4cab52; stroke:rgba(255,255,255,.95); stroke-width:8}
.stay-japan-weather__svg .border,
.stay-area-board__svg .line{fill:none; stroke:rgba(255,255,255,.9); stroke-width:5; stroke-linecap:round; stroke-linejoin:round}
.stay-area-board__svg .land-alt{fill:#69be5e; stroke:rgba(255,255,255,.92); stroke-width:6}
.stay-area-board__svg .mountain{fill:#7ab54a; stroke:rgba(255,255,255,.92); stroke-width:6}
.stay-area-board__svg .lake{fill:#98e0ff; stroke:rgba(255,255,255,.88); stroke-width:6}
.stay-area-board__svg .shore{fill:none; stroke:rgba(255,255,255,.82); stroke-width:7; stroke-linecap:round}
.stay-area-board__svg .node{fill:#fff; stroke:#0f766e; stroke-width:4}

.stay-japan-region-btn,
.stay-area-spot{
  position:absolute;
  z-index:4;
  width:auto;
  max-width:min(240px,42%);
  min-height:auto;
  border:none;
  text-align:left;
  padding:12px 14px 11px;
  border-radius:16px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.96);
  box-shadow:0 12px 28px rgba(15,23,42,.18);
  cursor:pointer;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease;
  backdrop-filter: blur(8px);
}
.stay-japan-region-btn::after,
.stay-area-spot::after{
  content:"";
  position:absolute;
  left:18px;
  bottom:-12px;
  width:18px;
  height:18px;
  background:inherit;
  border-right:1px solid rgba(255,255,255,.96);
  border-bottom:1px solid rgba(255,255,255,.96);
  transform:rotate(45deg);
  box-shadow:8px 8px 18px rgba(15,23,42,.06);
}
.stay-japan-region-btn:hover,
.stay-area-spot:hover{transform:translateY(-2px); box-shadow:0 16px 34px rgba(15,23,42,.22)}
.stay-japan-region-btn.is-current,
.stay-area-spot.is-active{background:#fff7d6; box-shadow:0 0 0 3px rgba(245,158,11,.16), 0 16px 34px rgba(15,23,42,.22)}
.stay-japan-region-btn.is-soon{background:rgba(226,232,240,.9); color:#475569; box-shadow:0 8px 18px rgba(15,23,42,.10); cursor:not-allowed}
.stay-japan-region-btn__name,
.stay-area-spot__label{display:block; font-size:18px; font-weight:950; color:#0f172a; line-height:1.1}
.stay-japan-region-btn__status,
.stay-area-spot__note{display:block; margin-top:4px; color:#334155; font-size:11px; line-height:1.35; font-weight:900; text-transform:uppercase; letter-spacing:.45px}
.stay-area-spot__note{text-transform:none; letter-spacing:.05px; font-size:12px; font-weight:800}
.stay-area-spot__count{display:inline-flex; margin-top:8px; padding:5px 9px; border-radius:999px; background:#e0f2fe; color:#0c4a6e; font-size:10px; font-weight:950; border:1px solid rgba(14,165,233,.18)}

.stay-japan-weather .region-hokkaido{top:70px; right:92px}
.stay-japan-weather .region-tohoku{top:178px; right:152px}
.stay-japan-weather .region-kanto{top:322px; right:134px}
.stay-japan-weather .region-chubu{top:276px; left:356px}
.stay-japan-weather .region-kansai{top:376px; left:296px}
.stay-japan-weather .region-chugoku{top:360px; left:130px}
.stay-japan-weather .region-shikoku{top:454px; left:250px}
.stay-japan-weather .region-kyushu-okinawa{top:448px; left:44px}

.stay-area-board{margin-top:18px}
.stay-area-board__frame{
  position:relative;
  min-height:520px;
  border-radius:34px;
  padding:24px;
  background:linear-gradient(180deg,#ecfeff,#dbeafe 58%,#c7e6ff 100%);
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 24px 60px rgba(15,23,42,.12);
  overflow:hidden;
}
.stay-area-board__count{
  position:absolute;
  z-index:3;
  top:24px;
  right:24px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.84);
  border:1px solid rgba(255,255,255,.94);
  font-size:11px;
  font-weight:950;
  color:#0f172a;
  box-shadow:0 10px 22px rgba(15,23,42,.08);
}
.stay-area-board__map-surface--soon{display:grid; place-items:center; background:linear-gradient(180deg,#dbeafe,#bfdbfe)}
.stay-area-board__soon{padding:16px 20px; border-radius:18px; background:rgba(255,255,255,.88); font-size:16px; font-weight:900; color:#0f172a; box-shadow:0 10px 24px rgba(15,23,42,.10)}

.stay-area-board--kanto .spot-shibuya{top:148px; left:18%}
.stay-area-board--kanto .spot-meguro{top:286px; left:39%}
.stay-area-board--kanto .spot-ota{top:198px; right:8%}

.stay-area-board--chubu .spot-lake{top:158px; left:10%}
.stay-area-board--chubu .spot-kodachi{top:300px; left:38%}
.stay-area-board--chubu .spot-town{top:162px; right:9%}

@media (max-width: 980px){
  .stay-japan-weather__frame,
  .stay-area-board__frame{min-height:unset; padding:22px}
  .stay-japan-weather__surface,
  .stay-area-board__map-surface{position:relative; inset:auto; margin-top:18px; min-height:260px}
  .stay-japan-region-btn,
  .stay-area-spot{position:relative; width:100%; margin-top:14px}
  .stay-area-board__count{position:relative; top:auto; right:auto; margin-top:14px}
}

@media (max-width: 680px){
  .stay-japan-weather__title,
  .stay-area-board__title{font-size:28px}
  .stay-reset-btn{width:100%}
  .stay-japan-region-btn,
  .stay-area-spot{max-width:100%}
}


.stay-japan-weather__frame::before,
.stay-area-board__frame::before{
  content:"";
  position:absolute;
  inset:14px;
  border-radius:28px;
  background:linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,0));
  pointer-events:none;
  z-index:1;
}
.stay-japan-weather__frame::after,
.stay-area-board__frame::after{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  bottom:14px;
  height:110px;
  background:linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.14));
  pointer-events:none;
  z-index:1;
}
.stay-japan-weather__title,
.stay-japan-weather__subtitle,
.stay-japan-weather__legend,
.stay-area-board__title,
.stay-area-board__subtitle,
.stay-area-board__legend,
.stay-area-board__count{max-width:430px}
