/* Codex front-page design bundle. UTF-8 / LF. */


/* ---- tokens.css ---- */

:root {
  --jofuu-pink-50: #fff5f8;
  --jofuu-pink-100: #fce4ec;
  --jofuu-pink-300: #f5b5c8;
  --jofuu-pink-500: #ee7e9a;
  --jofuu-bordeaux: #b00050;
  --jofuu-bordeaux-dark: #970043;
  --jofuu-beige-50: #fdfaf3;
  --jofuu-beige-100: #f5ebd9;
  --jofuu-beige-300: #e6d5b8;
  --jofuu-navy: #2d3464;
  --jofuu-navy-dark: #1e2447;
  --jofuu-gold: #c4a657;
  --jofuu-gold-light: #e7d28d;
  --jofuu-text: #3a2a2a;
  --jofuu-text-muted: #6e5454;
  --jofuu-text-inverse: #fdfaf3;
  --jofuu-bg: #fdfaf3;
  --jofuu-bg-alt: #fff5f8;
  --jofuu-surface: #ffffff;
  --jofuu-border: #e6d5b8;
  --jofuu-font-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  --jofuu-font-sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --fs-xs: 12px;
  --fs-sm: 13px;
  --fs-base: 15px;
  --fs-md: 17px;
  --fs-lg: 20px;
  --fs-xl: 24px;
  --fs-2xl: 32px;
  --fs-3xl: 44px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-soft: 0 4px 16px rgba(176, 80, 80, .08);
  --shadow-card: 0 2px 8px rgba(58, 42, 42, .06);
  --shadow-lift: 0 12px 32px rgba(30, 36, 71, .12);
  --container-max: 1200px;
  --header-h-pc: 72px;
  --header-h-sp: 56px;
}


/* ---- base.css ---- */

*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote, dl, dd { margin: 0; }
ul, ol { padding-left: 0; list-style: none; }
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; padding: 0; }
input, select, textarea { font: inherit; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  min-width: 320px;
  font-family: var(--jofuu-font-sans);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--jofuu-text);
  background:
    radial-gradient(circle at 8% 0%, rgba(238, 126, 154, .18), transparent 30%),
    linear-gradient(180deg, #fff7f1 0%, var(--jofuu-bg) 38%, #fff2ec 100%);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .serif {
  font-family: var(--jofuu-font-serif);
  font-weight: 700;
  line-height: 1.35;
  color: var(--jofuu-text);
}
h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
a:hover { color: var(--jofuu-bordeaux); }
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
}
.text-center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 768px) {
  h1 { font-size: var(--fs-2xl); }
  h2 { font-size: var(--fs-xl); }
  h3 { font-size: var(--fs-lg); }
  .container { padding-inline: var(--space-4); }
}


/* ---- layout.css ---- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 250, 243, .93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--jofuu-border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  height: var(--header-h-pc);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
}
.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.site-logo img { height: 70px; width: auto; }
.global-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-left: var(--space-4);
}
.global-nav a {
  padding-block: var(--space-2);
  border-bottom: 2px solid transparent;
  color: var(--jofuu-text);
  font-size: var(--fs-sm);
  font-weight: 700;
  transition: border-color .2s, color .2s;
}
.global-nav a:hover,
.global-nav a[aria-current="page"] {
  color: var(--jofuu-bordeaux);
  border-bottom-color: var(--jofuu-bordeaux);
}
.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.btn-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  color: var(--jofuu-text);
}
.btn-icon:hover {
  background: var(--jofuu-pink-50);
  color: var(--jofuu-bordeaux);
}
.header-cta {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--jofuu-bordeaux);
  color: var(--jofuu-text-inverse);
  font-size: var(--fs-sm);
  font-weight: 700;
  transition: background .2s;
}
.header-cta:hover {
  background: var(--jofuu-bordeaux-dark);
  color: var(--jofuu-text-inverse);
}
.header-toggle { display: none; }
.mobile-drawer {
  display: none;
  border-top: 1px solid var(--jofuu-border);
  background: var(--jofuu-bg);
  padding: var(--space-4);
}
.mobile-drawer nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.mobile-drawer a {
  padding: var(--space-3);
  border-radius: var(--radius-sm);
}
.mobile-drawer a:hover { background: var(--jofuu-pink-50); }
.site-footer {
  margin-top: var(--space-20);
  padding-block: var(--space-12) var(--space-6);
  background: var(--jofuu-navy-dark);
  color: var(--jofuu-text-inverse);
}
.site-footer__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
}
.site-footer h4 {
  margin-bottom: var(--space-3);
  color: var(--jofuu-gold-light);
  font-size: var(--fs-sm);
  letter-spacing: .1em;
}
.site-footer li { margin-bottom: var(--space-2); }
.site-footer a {
  color: var(--jofuu-text-inverse);
  font-size: var(--fs-sm);
  opacity: .85;
}
.site-footer a:hover {
  opacity: 1;
  color: var(--jofuu-gold-light);
}
.site-footer__brand p {
  margin-top: var(--space-3);
  font-size: var(--fs-sm);
  opacity: .8;
}
.site-footer__copy {
  max-width: var(--container-max);
  margin: var(--space-8) auto 0;
  padding: var(--space-4) var(--space-6) 0;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: var(--fs-xs);
  opacity: .7;
  text-align: center;
}
.section { padding-block: var(--space-16); }
.section-title {
  margin-bottom: var(--space-8);
  text-align: center;
}
.section-title small {
  display: block;
  margin-bottom: var(--space-2);
  color: var(--jofuu-gold);
  font-family: var(--jofuu-font-sans);
  font-size: var(--fs-xs);
  letter-spacing: .25em;
  text-transform: uppercase;
}
@media (max-width: 980px) {
  .global-nav { gap: var(--space-4); }
  .header-cta { display: none; }
}
@media (max-width: 768px) {
  .site-header__inner {
    height: var(--header-h-sp);
    padding-inline: var(--space-4);
    gap: var(--space-3);
  }
  .site-logo img { height: 42px; }
  .global-nav { display: none; }
  .header-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-pill);
  }
  .site-header[data-open="true"] .mobile-drawer { display: block; }
  .site-footer {
    margin-top: var(--space-12);
    padding-block: var(--space-8) var(--space-4);
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    padding-inline: var(--space-4);
  }
  .section { padding-block: var(--space-10); }
}


/* ---- components.css ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 12px 24px;
  border: 1.5px solid transparent;
  border-radius: var(--radius-pill);
  font-size: var(--fs-base);
  font-weight: 700;
  transition: transform .15s, background .2s, color .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--jofuu-bordeaux);
  color: var(--jofuu-text-inverse);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  background: var(--jofuu-bordeaux-dark);
  color: var(--jofuu-text-inverse);
}
.btn-secondary {
  border-color: var(--jofuu-bordeaux);
  background: var(--jofuu-surface);
  color: var(--jofuu-bordeaux);
}
.btn-secondary:hover { background: var(--jofuu-pink-50); }
.btn-gold {
  background: var(--jofuu-gold);
  color: var(--jofuu-text-inverse);
}
.btn-gold:hover {
  background: var(--jofuu-bordeaux);
  color: var(--jofuu-text-inverse);
}
.card {
  overflow: hidden;
  border: 1px solid var(--jofuu-border);
  border-radius: var(--radius-md);
  background: var(--jofuu-surface);
  box-shadow: var(--shadow-card);
  transition: transform .2s, box-shadow .2s;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}
.card__body { padding: var(--space-4); }
.card__title {
  margin-bottom: var(--space-2);
  font-size: var(--fs-md);
}
.card__meta {
  color: var(--jofuu-text-muted);
  font-size: var(--fs-xs);
}
.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.field label {
  color: var(--jofuu-text-muted);
  font-size: var(--fs-sm);
  font-weight: 700;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--jofuu-border);
  border-radius: var(--radius-sm);
  background: var(--jofuu-surface);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--jofuu-bordeaux);
  box-shadow: 0 0 0 3px rgba(176, 80, 80, .12);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: 700;
  line-height: 1.6;
}
.badge--license { background: var(--jofuu-gold-light); color: var(--jofuu-navy-dark); }
.badge--new { background: var(--jofuu-pink-500); color: #fff; }
.badge--popular { background: var(--jofuu-bordeaux); color: #fff; }
.badge--area { background: var(--jofuu-beige-100); color: var(--jofuu-text); }


/* ---- pages.css ---- */

.hero {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  border-bottom: 1px solid rgba(196, 166, 87, .42);
  background: var(--jofuu-navy-dark);
  color: var(--jofuu-text-inverse);
}
.hero__bg,
.hero__shade,
.hero__characters {
  position: absolute;
  inset: 0;
}
.hero__bg {
  background: url("../images/hero/bg-night.jpg") center / cover fixed no-repeat;
  transform: scale(1.02);
}
.hero__shade {
  background:
    linear-gradient(90deg, rgba(18, 16, 38, .12), rgba(18, 16, 38, .02) 46%, rgba(18, 16, 38, .28)),
    linear-gradient(0deg, rgba(18, 16, 38, .46), transparent 48%);
}
.hero__characters {
  z-index: 1;
  pointer-events: none;
}
.hero__characters img {
  position: absolute;
  left: calc(50% - 588px);
  bottom: 0px;
  width: 800px;
  max-width: none;
  filter: drop-shadow(0 20px 34px rgba(24, 13, 22, .28));
}
.hero__content {
  position: relative;
  z-index: 3;
  min-height: 550px;
  display: block;
}
.hero__copy {
  position: absolute;
  left: 392px;
  bottom: 54px;
  width: 500px;
  max-width: none;
  padding: 0;
  text-align: center;
  text-shadow: none;
}
.hero h1 {
  color: #fffaf5;
  font-size: 45px;
  letter-spacing: .02em;
  line-height: 1.22;
  font-weight: 700;
  -webkit-text-stroke: 0;
  text-shadow:
    0 2px 0 rgba(143, 30, 58, .86),
    0 4px 10px rgba(35, 7, 24, .72),
    0 0 18px rgba(255, 218, 224, .28);
}
.hero h1,
.hero h1 span {
  white-space: nowrap;
}
.hero h1 span { color: #fffaf5; }
.hero__lead {
  display: inline-block;
  margin-top: var(--space-2);
  padding: 6px 20px;
  border: 1px solid rgba(231, 210, 141, .72);
  border-radius: var(--radius-pill);
  background: rgba(253, 250, 243, .9);
  color: #9b4a42;
  font-family: var(--jofuu-font-serif);
  font-size: var(--fs-md);
  font-weight: 700;
  text-shadow: none;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.hero-ribbon {
  position: absolute;
  z-index: 4;
  left: calc(50% - 586px);
  top: 236px;
  width: 158px;
  aspect-ratio: 1;
  color: #fffbe4;
  text-align: center;
  filter: drop-shadow(0 14px 24px rgba(42, 26, 12, .26));
}
.hero-ribbon::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 46% 38%, #fff0a9 0%, #c59a3c 44%, #856016 100%);
  box-shadow: inset 0 0 18px rgba(255,255,255,.35);
}
.hero-ribbon img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-ribbon__text {
  position: absolute;
  z-index: 2;
  inset: 20% 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
}
.hero-ribbon__text span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}
.hero-ribbon__text strong {
  font-family: var(--jofuu-font-serif);
  font-size: 21px;
  font-weight: 700;
  white-space: nowrap;
}
.hero-ribbon__text i {
  width: 72%;
  height: 1px;
  margin: 7px 0;
  background: rgba(255, 248, 206, .7);
}
.hero-map-card {
  position: absolute;
  right: 0;
  top: 88px;
  z-index: 4;
  width: 380px;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
  backdrop-filter: none;
}
.hero-map-card__title {
  display: inline-block;
  margin: 0 0 0 64px;
  color: #f4c66f;
  font-family: var(--jofuu-font-serif);
  font-size: 20px;
  font-weight: 700;
  text-shadow: 0 3px 10px rgba(12, 4, 24, .7);
  transform: rotate(-8deg);
}
.hero > .hero__content .hero-map-card__title {
  display: none;
}
.japan-map-wrap {
  position: relative;
  min-height: 324px;
}
.japan-map-image {
  width: 300px;
  max-width: none;
  margin: 0 0 0 48px;
  filter: drop-shadow(0 14px 22px rgba(9, 2, 20, .48));
}
.map-label {
  position: absolute;
  min-width: 78px;
  padding: 6px 8px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 8px;
  background: rgba(27, 19, 51, .78);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 8px 18px rgba(24, 12, 28, .26);
  backdrop-filter: blur(3px);
}
.map-label b { color: #ffe3a5; }
.map-label:hover {
  color: #fff;
  filter: brightness(1.1) drop-shadow(0 0 6px var(--jofuu-gold-light));
}
.map-label--north { top: 46px; left: 48%; }
.map-label--chubu { top: 118px; left: 17%; }
.map-label--west { top: 164px; left: 0; }
.map-label--kansai { top: 224px; left: 49%; }
.map-label--kyushu { bottom: 18px; left: 10%; }
.map-kanto-card {
  position: absolute;
  right: 0;
  top: 176px;
  display: grid;
  gap: 4px;
  min-width: 126px;
  padding: 12px 11px;
  border: 1px solid rgba(229, 192, 118, .8);
  border-radius: 10px;
  background: rgba(255, 251, 243, .94);
  color: #7c4032;
  text-align: center;
  box-shadow: 0 16px 28px rgba(26, 8, 20, .25);
}
.map-kanto-card span,
.map-kanto-card b {
  font-family: var(--jofuu-font-serif);
}
.map-kanto-card span { font-size: var(--fs-sm); font-weight: 700; }
.map-kanto-card b { font-size: var(--fs-md); }
.map-kanto-card small {
  color: #8d5e53;
  font-size: 10px;
  line-height: 1.7;
}
.mobile-map { display: none; }
.search-panel {
  position: relative;
  z-index: 6;
  max-width: var(--container-max);
  margin: -28px auto 0;
  padding: var(--space-6);
  border: 1px solid var(--jofuu-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-lift);
}
.search-panel__grid {
  display: grid;
  grid-template-columns: 1fr 2fr 160px;
  gap: var(--space-4);
}
.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}
.quick-tag {
  appearance: none;
  cursor: pointer;
  font: inherit;
}
.quick-tag:hover,
.quick-tag:focus-visible {
  color: var(--jofuu-bordeaux);
  border-color: var(--jofuu-pink-500);
  background: var(--jofuu-pink-50);
}
.section-title--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-4);
}
.more-link {
  color: var(--jofuu-bordeaux);
  font-size: var(--fs-sm);
  font-weight: 700;
}
.area-grid,
.store-grid,
.article-grid,
.group-grid {
  display: grid;
  gap: var(--space-4);
}
.area-grid { grid-template-columns: repeat(4, 1fr); }
.store-grid { grid-template-columns: repeat(3, 1fr); }
.area-grid--10,
.area-grid { grid-template-columns: repeat(5, 1fr); }
.article-grid { grid-template-columns: repeat(3, 1fr); }
.group-grid { grid-template-columns: repeat(3, 1fr); }
.area-card { padding: var(--space-6); }
.group-card { padding: var(--space-5); }
.area-card strong {
  display: block;
  font-family: var(--jofuu-font-serif);
  font-size: var(--fs-xl);
}
.group-card strong {
  display: block;
  color: var(--jofuu-bordeaux);
  font-family: var(--jofuu-font-serif);
  font-size: var(--fs-lg);
}
.area-card span {
  display: block;
  margin-top: var(--space-2);
  color: var(--jofuu-text-muted);
  font-size: var(--fs-sm);
}
.group-card span {
  display: block;
  margin-top: var(--space-2);
  color: var(--jofuu-text-muted);
  font-size: var(--fs-sm);
}
.pick-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
  margin: calc(var(--space-8) * -1 + 10px) 0 var(--space-6);
}
.pick-tab {
  padding: 8px 16px;
  border: 1px solid var(--jofuu-border);
  border-radius: var(--radius-pill);
  background: var(--jofuu-surface);
  color: var(--jofuu-text-muted);
  font-size: var(--fs-sm);
  font-weight: 700;
}
.pick-tab.is-active {
  border-color: var(--jofuu-bordeaux);
  background: var(--jofuu-bordeaux);
  color: #fff;
}
.article-card img {
  width: 100%;
  object-fit: cover;
}
.article-card img { aspect-ratio: 16 / 9; }
/* v3 §12: store-card の img は .store-card__thumb-img として thumb ラッパ内で扱う */
.store-card > a,
.article-card > a {
  display: block;
  height: 100%;
  color: inherit;
}
.store-card > a:hover,
.article-card > a:hover {
  color: inherit;
}
.store-card .card__body,
.article-card .card__body { min-height: 150px; }
.score {
  margin-top: var(--space-3);
  color: #d88622;
  font-weight: 700;
}
.stats-strip {
  position: relative;
  isolation: isolate;
  padding-block: var(--space-16);
  background: var(--jofuu-beige-50);
  text-align: center;
}
.stats-strip::before,
.stats-strip::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 96px;
  height: 96px;
  background: url("../images/decoration/gold-sparkle.svg") center / contain no-repeat;
  opacity: .55;
  pointer-events: none;
}
.stats-strip::before { top: 16px; left: 6%; }
.stats-strip::after { right: 6%; bottom: 16px; transform: rotate(40deg); }
.stats-strip__lead {
  margin-bottom: var(--space-8);
  color: var(--jofuu-text-muted);
  font-family: var(--jofuu-font-serif);
  font-size: var(--fs-md);
  letter-spacing: .08em;
}
.stats-strip__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: end;
}
.stats-strip__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stats-strip__num {
  color: transparent;
  background: linear-gradient(180deg, var(--jofuu-bordeaux) 0%, var(--jofuu-bordeaux-dark) 60%, var(--jofuu-gold) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--jofuu-font-serif);
  font-size: clamp(var(--fs-2xl), 6vw, 64px);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.05;
  text-shadow: 0 2px 12px rgba(176, 80, 80, .12);
}
.stats-strip__label {
  margin-top: var(--space-2);
  color: var(--jofuu-text-muted);
  font-size: var(--fs-sm);
  letter-spacing: .15em;
}
.stats-strip__more {
  display: inline-block;
  margin-top: var(--space-8);
  padding-bottom: 2px;
  border-bottom: 1px dashed currentColor;
  color: var(--jofuu-bordeaux);
  font-size: var(--fs-sm);
}
.fp-charts {
  padding-block: var(--space-16);
  background: var(--jofuu-beige-50);
}
.fp-section__h2 {
  margin-bottom: var(--space-2);
  font-family: var(--jofuu-font-serif);
  font-size: var(--fs-2xl);
  text-align: center;
}
.fp-section__h2::before {
  content: "DATA";
  display: block;
  margin-bottom: var(--space-2);
  color: var(--jofuu-gold);
  font-family: var(--jofuu-font-sans);
  font-size: var(--fs-xs);
  letter-spacing: .25em;
}
.fp-section__sub {
  margin-bottom: var(--space-8);
  color: var(--jofuu-text-muted);
  font-size: var(--fs-sm);
  text-align: center;
}
.fp-charts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.fp-chart-card--full { grid-column: 1 / -1; }
.fp-chart-card {
  padding: var(--space-4);
  border: 1px solid var(--jofuu-border);
  border-radius: var(--radius-md);
  background: var(--jofuu-surface);
  box-shadow: var(--shadow-card);
}
.fp-chart-card__title {
  margin-bottom: var(--space-3);
  color: var(--jofuu-bordeaux);
  font-family: var(--jofuu-font-serif);
  font-size: var(--fs-md);
}
.fp-chart-card__wrap {
  position: relative;
  height: 280px;
}
.fp-chart-card__wrap--tall { height: 420px; }
.fp-chart-card__note {
  margin-top: var(--space-3);
  color: var(--jofuu-text-muted);
  font-size: var(--fs-xs);
  line-height: 1.8;
}
.news-list {
  display: grid;
  padding: var(--space-5);
}
.news-list a {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--space-4);
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--jofuu-border);
  color: inherit;
}
.news-list a:last-child { border-bottom: 0; }
.news-list time {
  color: var(--jofuu-gold);
  font-weight: 700;
}
.site-footer__notice {
  max-width: var(--container-max);
  margin: var(--space-6) auto 0;
  padding-inline: var(--space-5);
  color: rgba(255, 255, 255, .82);
  font-size: var(--fs-xs);
  text-align: center;
}
.bar-list {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.bar-row {
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: center;
  gap: var(--space-2);
  color: var(--jofuu-text-muted);
  font-size: var(--fs-xs);
  font-weight: 700;
}
.bar {
  overflow: hidden;
  height: 30px;
  border-radius: var(--radius-pill);
  background: var(--jofuu-beige-100);
}
.bar span {
  display: block;
  min-width: 44px;
  height: 100%;
  padding-inline: var(--space-3);
  background: linear-gradient(90deg, var(--jofuu-pink-500), var(--jofuu-bordeaux));
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 700;
  line-height: 30px;
  white-space: nowrap;
}
.guide-feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-8);
  background:
    linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,245,248,.82)),
    url("../images/dummy/column-thumb-01.jpg") right center / auto 100% no-repeat;
}
.guide-feature div { max-width: 620px; }
.guide-feature small {
  color: var(--jofuu-gold);
  font-weight: 700;
  letter-spacing: .2em;
}
.guide-feature p {
  margin-top: var(--space-3);
  color: var(--jofuu-text-muted);
}
@media (max-width: 980px) {
  .hero {
    height: 590px;
    min-height: 590px;
  }
  .hero__bg {
    background-position: center top;
    background-attachment: scroll;
  }
  .hero__characters {
    inset: 0;
  }
  .hero__characters img {
    position: absolute;
    left: calc(50% - 313px);
    bottom: 0;
    width: 660px;
    max-width: none;
    opacity: 1;
  }
  .hero__content {
    min-height: 590px;
    display: block;
    padding: 0;
  }
  .hero-map-card:not(.hero-map-card--mobile) { display: none; }
  .mobile-map {
    display: block;
    margin: var(--space-4) 0 var(--space-4);
  }
  .hero-map-card--mobile {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 430px;
    margin-inline: auto;
    padding: 0;
    border: 0;
    border-radius: var(--radius-md);
    background: transparent;
    box-shadow: none;
  }
  .hero-map-card--mobile .hero-map-card__title {
    display: none;
    margin: 0 0 var(--space-2);
    transform: none;
    text-align: center;
  }
  .hero__copy {
    position: absolute;
    left: 50%;
    bottom: 44px;
    width: 340px;
    max-width: none;
    transform: translateX(-50%);
    text-align: center;
  }
  .hero h1 {
    font-size: clamp(28px, 8vw, 38px);
  }
  .hero__lead {
    font-size: var(--fs-sm);
  }
  .hero__actions {
    justify-content: center;
  }
  .hero-ribbon {
    left: 12px;
    top: 12px;
    width: 116px;
  }
  .hero-ribbon__text span {
    font-size: 9px;
  }
  .hero-ribbon__text strong {
    font-size: 18px;
  }
  .hero-map-card--mobile .japan-map-wrap {
    width: min(100%, 410px);
    aspect-ratio: 410 / 360;
    min-height: 0;
    margin-inline: auto;
    border-radius: 14px;
    background: transparent;
  }
  .hero-map-card--mobile .japan-map-image {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 78%;
    margin: 0;
    transform: translate(-50%, -50%);
  }
  .hero-map-card--mobile .map-label {
    min-width: 78px;
    padding: 6px 7px;
    font-size: 10px;
  }
  .hero-map-card--mobile .map-kanto-card {
    right: 4%;
    top: 58%;
    min-width: 132px;
    padding: 12px 10px;
  }
  .hero-map-card--mobile .map-label--north { top: 15%; left: 52%; }
  .hero-map-card--mobile .map-label--chubu { top: 34%; left: 22%; }
  .hero-map-card--mobile .map-label--west { top: 48%; left: 5%; }
  .hero-map-card--mobile .map-label--kansai { top: 62%; left: 43%; }
  .hero-map-card--mobile .map-label--kyushu { bottom: 9%; left: 13%; }
  .search-panel {
    margin: -38px var(--space-4) 0;
  }
  .search-panel__grid,
  .article-grid,
  .fp-charts__grid {
    grid-template-columns: 1fr 1fr;
  }
  .area-grid,
  .store-grid,
  .group-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .search-panel {
    margin-top: -38px;
    border-radius: var(--radius-lg);
  }
  .search-panel__grid {
    grid-template-columns: 1fr;
  }
  .search-panel__grid .btn {
    width: 100%;
    min-height: 50px;
  }
  .section-title--row {
    align-items: flex-start;
  }
  .store-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
  }
  .store-card .card__body {
    min-height: 146px;
    padding: 16px;
  }
  .store-card .card__title {
    font-size: clamp(16px, 4.4vw, 20px);
    line-height: 1.3;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
  .store-card .card__meta,
  .store-card .score {
    font-size: 13px;
  }
  .store-card .badge {
    padding: 5px 9px;
    font-size: 11px;
  }
  .area-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
  }
  .area-card {
    padding: var(--space-4);
  }
  .area-card strong {
    font-size: var(--fs-lg);
  }
  .article-grid,
  .fp-charts__grid,
  .stats-strip__row {
    grid-template-columns: 1fr;
  }
  .fp-chart-card__wrap { height: 220px; }
  .fp-chart-card__wrap--tall { height: 460px; }
  .stats-strip {
    padding-block: var(--space-10);
  }
  .stats-strip::before,
  .stats-strip::after {
    width: 64px;
    height: 64px;
  }
  .bar-row {
    grid-template-columns: 74px 1fr;
  }
  .guide-feature {
    display: block;
    padding: var(--space-6);
    background: var(--jofuu-surface);
  }
  .guide-feature .btn {
    margin-top: var(--space-4);
    width: 100%;
  }
}
/* ---- WordPress theme integration overrides ---- */
.store-grid .store-card {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--jofuu-border);
  border-radius: var(--radius-md);
  background: var(--jofuu-surface);
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, box-shadow .18s ease;
}
.store-grid[hidden] {
  display: none !important;
}
.store-grid .store-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}
/* v3 §12: PickUp 用 grid 内のサムネ。style.css 側の .store-card__thumb（16:10 ラッパ）と整合 */
.store-grid .store-card__thumb {
  aspect-ratio: 16 / 10;
  border-radius: 0;
  background: var(--jofuu-beige-100);
}
.store-grid .store-card__thumb-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.store-grid .store-card__body {
  padding: 18px;
}
.store-grid .store-card__name {
  margin: 0 0 8px;
  font-family: var(--jofuu-font-serif);
  font-size: var(--fs-lg);
  line-height: 1.35;
}
.store-grid .store-card__name a {
  color: var(--jofuu-text);
}
.store-grid .store-card__area,
.store-grid .store-intro,
.store-grid .store-card__price {
  color: var(--jofuu-text-muted);
  font-size: var(--fs-xs);
}
.store-grid .store-card__catchphrase {
  margin-top: 8px;
  color: var(--jofuu-bordeaux);
  font-size: var(--fs-sm);
}
.store-grid .store-card__score {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 18px 18px;
  color: #d88622;
  font-weight: 700;
}
.store-grid .score-badge {
  background: linear-gradient(180deg, var(--jofuu-bordeaux), var(--jofuu-pink-500));
  border-radius: var(--radius-pill);
  color: #fff;
}
.store-grid .jofuu-license-badge {
  display: inline-flex;
  margin: 10px 0 0;
  padding: 5px 9px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--jofuu-gold-soft);
  color: #6c4b13;
  font-size: 11px;
  font-weight: 700;
}
.front-search {
  position: relative;
  z-index: 8;
  padding: 0;
}
.search-panel {
  margin-top: -28px;
}
.area-other-search .search-panel,
.content-area .search-panel {
  margin-top: 0;
}
@media (max-width: 980px) {
  .search-panel {
    margin-top: -38px;
  }
  .area-other-search .search-panel,
  .content-area .search-panel {
    margin-top: 0;
  }
}

/* Lower pages */
.content-area {
  background:
    radial-gradient(circle at 16% 0%, rgba(238, 126, 154, .11), transparent 28%),
    linear-gradient(180deg, #fff8f5 0%, #fffaf7 62%, #fff 100%);
}
.breadcrumb {
  margin: 0 0 24px;
  color: var(--jofuu-text-muted);
  font-size: var(--fs-xs);
}
.breadcrumb a {
  color: var(--jofuu-text-muted);
}
.breadcrumb a:hover {
  color: var(--jofuu-bordeaux);
}
.column-header {
  margin: 0 0 32px;
}
.column-header h1,
.area-lp__h2 {
  border-left: 4px solid var(--jofuu-bordeaux);
  padding-left: 14px;
  font-family: var(--jofuu-font-serif);
}
.column-grid {
  gap: 20px;
}
.col-card {
  border-color: var(--jofuu-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.col-card__thumb {
  background: var(--jofuu-pink-50);
}
.col-card__body {
  padding: 18px;
}
.col-card__cat {
  border-radius: 4px;
  background: var(--jofuu-pink-50);
  color: var(--jofuu-pink-600);
}
.col-card__title {
  font-family: var(--jofuu-font-serif);
}
.area-lp__hero {
  background:
    radial-gradient(circle at 80% 10%, rgba(255,255,255,.16), transparent 24%),
    linear-gradient(135deg, var(--jofuu-bordeaux), var(--jofuu-pink-500));
}
.area-lp__intro {
  border-color: var(--jofuu-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.area-other-search {
  margin-bottom: 32px;
}
.area-other-search > .area-lp__h2 {
  margin-bottom: 18px;
}
.sub-area-link {
  border-color: var(--jofuu-pink-500);
  border-radius: var(--radius-pill);
  color: var(--jofuu-bordeaux);
}
.sub-area-link:hover {
  background: var(--jofuu-bordeaux);
  color: #fff;
}
.store-list {
  display: grid;
  gap: 16px;
}
.store-list .store-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 72px;
  align-items: start;
  gap: 18px;
  padding: 16px;
  border-color: var(--jofuu-border);
  border-radius: var(--radius-md);
  background: var(--jofuu-surface);
  box-shadow: var(--shadow-card);
}
.store-list .store-card__thumb {
  width: 220px;
  height: 140px;
  border-radius: 8px;
  object-fit: cover;
}
.store-list .store-card__name {
  margin: 0 0 6px;
  font-family: var(--jofuu-font-serif);
  font-size: var(--fs-xl);
  line-height: 1.35;
  writing-mode: horizontal-tb;
}
.store-list .store-card__name a {
  color: var(--jofuu-bordeaux);
}
.store-list .store-card__body {
  min-width: 0;
}
.store-list .store-card__area,
.store-list .store-intro,
.store-list .store-card__price {
  color: var(--jofuu-text-muted);
  font-size: var(--fs-sm);
}
.store-list .store-card__catchphrase {
  color: var(--jofuu-text);
}
.store-list .store-card__score {
  justify-self: end;
  text-align: center;
}
@media (max-width: 768px) {
  .content-area {
    padding-top: 28px;
  }
  .column-header {
    margin-bottom: 28px;
  }
  .column-grid {
    grid-template-columns: 1fr;
  }
  .store-list .store-card {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
  }
  .store-list .store-card__thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 0;
  }
  .store-list .store-card__body {
    padding: 18px;
  }
  .store-list .store-card__score {
    justify-self: start;
    padding: 0 18px 18px;
  }
}
