/*
Theme Name: jofuu
Theme URI: https://jofuu-navi.jp
Description: 女性向け風俗ポータルサイト jofuu-navi.jp 専用テーマ
Author: KT
Version: 0.1.0
Text Domain: jofuu
*/

/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── Base ───────────────────────────────────────────── */
:root {
  --color-primary:   #c94070;
  --color-secondary: #f7e8ec;
  --color-text:      #333;
  --color-muted:     #777;
  --color-border:    #e0e0e0;
  --color-bg:        #fafafa;
  --radius:          6px;
  --max-width:       1100px;
}

body {
  font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
}

a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

/* ─── Layout ─────────────────────────────────────────── */
.site-wrapper { min-height: 100vh; display: flex; flex-direction: column; }

.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 16px;
  width: 100%;
}

.content-area {
  flex: 1;
  padding: 16px 0 32px;
}

/* ─── Header ─────────────────────────────────────────── */
.site-header {
  background: #fff;
  border-bottom: 2px solid var(--color-primary);
  padding: 12px 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-logo {
  font-size: 22px;
  font-weight: bold;
  color: var(--color-primary);
  letter-spacing: 0.05em;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.site-nav a { color: var(--color-text); font-size: 14px; }
.site-nav a:hover { color: var(--color-primary); text-decoration: none; }

/* ─── Footer ─────────────────────────────────────────── */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: 24px 0;
  font-size: 13px;
  color: var(--color-muted);
  text-align: center;
}

/* ─── 店舗カード（v3 §12 C1: ダークピンク 弱めフィルタ）── */
.store-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease;
}
.store-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

/* サムネ：16:10 ラッパ */
.store-card__thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-secondary);
  isolation: isolate;
  box-shadow:
    0 1px 2px rgba(0,0,0,.06),
    0 10px 30px -16px rgba(120, 50, 70, .25);
  transition: box-shadow .4s ease;
}
.store-card__thumb-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.92) contrast(1.03);
  transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .6s ease;
}
/* C1: ダークピンク 弱めフィルタ */
.store-card__thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(74, 14, 42, .15) 0%, rgba(74, 14, 42, 0) 25%),
    linear-gradient(180deg, rgba(139, 26, 79, .06) 0%, rgba(107, 27, 62, .10) 100%),
    linear-gradient(180deg, rgba(60, 10, 35, 0) 55%, rgba(60, 10, 35, .45) 100%);
  pointer-events: none;
  z-index: 1;
}
.store-card:hover .store-card__thumb {
  box-shadow:
    0 1px 2px rgba(0,0,0,.06),
    0 20px 40px -18px rgba(180, 70, 100, .40);
}
.store-card:hover .store-card__thumb-img {
  transform: scale(1.03);
  filter: saturate(1.0) contrast(1.05);
}

/* PickUp 用: 下部キャプション「Editor's Pick」 */
.store-card__thumb__caption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  color: #ffd9e6;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .95;
  text-shadow: 0 1px 2px rgba(40, 5, 22, .6);
  pointer-events: none;
}

.store-card__body {
  flex: 1;
  min-width: 0;
  padding: 14px 16px 16px;
}
.store-card__name { font-weight: bold; font-size: 18px; margin-bottom: 4px; line-height: 1.4; }
.store-card__name a { color: var(--color-text); text-decoration: none; }
.store-card__name a:hover { color: var(--color-primary); }
.store-card__area { font-size: 13px; color: var(--color-muted); margin-bottom: 6px; }
.store-card__catchphrase { font-size: 14px; font-weight: 600; color: var(--color-primary); margin: 0 0 4px; line-height: 1.5; }
.store-card__summary { font-size: 14px; line-height: 1.6; }
.store-intro {
  font-size: 13px;
  line-height: 1.6;
  color: #444;
  margin-top: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.store-card__price {
  font-size: 13px;
  margin-top: 8px;
  color: var(--color-muted);
}
.store-card__price strong { color: var(--color-text); font-weight: 700; }

.store-card__score {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--color-muted);
}
.store-card__score-label { font-size: 11px; color: var(--color-muted); }

/* prefers-reduced-motion ですべての装飾アニメ無効化 */
@media (prefers-reduced-motion: reduce) {
  .store-card,
  .store-card__thumb,
  .store-card__thumb-img,
  .store-card:hover,
  .store-card:hover .store-card__thumb,
  .store-card:hover .store-card__thumb-img {
    transition: none !important;
    transform: none !important;
  }
}

/* ─── Score badge ─────────────────────────────────────── */
.score-badge {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 13px;
  font-weight: bold;
}

/* ─── Store phone float ──────────────────────────────── */
.store-phone-float {
  display: none; /* デスクトップでは非表示 */
}

@media (max-width: 768px) {
  .store-phone-float {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--color-primary);
    box-shadow: 0 -2px 12px rgba(0,0,0,.15);
  }

  .store-phone-float__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    gap: 2px;
    text-decoration: none;
  }

  .store-phone-float__label {
    font-size: 11px;
    color: rgba(255,255,255,.85);
    letter-spacing: .04em;
  }

  .store-phone-float__number {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .06em;
  }

  /* フローティングバーの高さ分コンテンツが隠れないよう余白確保 */
  body:has(.store-phone-float) main {
    padding-bottom: 72px;
  }
}

/* ─── Store detail ───────────────────────────────────── */
.store-detail__header {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}

.store-detail__name { font-size: 26px; font-weight: bold; margin-bottom: 8px; }
.store-detail__area { color: var(--color-muted); font-size: 14px; margin-bottom: 16px; }

.store-detail__scores {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.score-item { text-align: center; }
.score-item__label { font-size: 11px; color: var(--color-muted); }
.score-item__value { font-size: 20px; font-weight: bold; color: var(--color-primary); }

.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
  text-align: left;
}
.info-table th { width: 140px; color: var(--color-muted); font-weight: normal; }

/* ─── Review list ─────────────────────────────────────── */
.review-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 12px;
}

.review-item__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 8px;
}

/* ─── Area LP ─────────────────────────────────────────── */
.area-lp__sub-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.sub-area-link {
  background: #fff;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 20px;
  padding: 4px 16px;
  font-size: 14px;
  transition: background .15s;
}

.sub-area-link:hover {
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
}

/* ─── Store grid ─────────────────────────────────────── */
.store-list { display: flex; flex-direction: column; gap: 12px; }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 640px) {
  .site-nav { display: none; }
  /* v3 §12: 旧 flex-row 用の上書き（width:100% / height:160px）は撤去。
     カードは aspect-ratio 16:10 で常時統一する。 */
}

/* ── Breadcrumb ───────────────────────────────────────── */
.breadcrumb { margin: 0 0 16px; }
.breadcrumb__list { display: flex; flex-wrap: wrap; gap: 4px; list-style: none; margin: 0; padding: 0; font-size: 13px; color: var(--color-muted); }
.breadcrumb__item + .breadcrumb__item::before { content: "›"; margin-right: 4px; }
.breadcrumb__item a { color: var(--color-muted); text-decoration: none; }
.breadcrumb__item a:hover { text-decoration: underline; }
.breadcrumb__item--current { color: var(--color-text); }

/* ── Area LP Hero ─────────────────────────────────────── */
.area-lp__hero { background: var(--color-primary); color: #fff; padding: 40px 0 32px; }
.area-lp__hero-h1 { font-size: clamp(18px, 3.5vw, 26px); font-weight: 700; margin: 0 0 8px; line-height: 1.4; }
.area-lp__hero-sub { font-size: 13px; opacity: .85; margin: 0 0 20px; line-height: 1.6; }

/* 数値カード */
.area-lp__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 20px; }
.area-lp__stats--3col { grid-template-columns: repeat(3, 1fr); }
.area-lp__stat-card { background: rgba(255,255,255,.12); border-radius: var(--radius); padding: 12px 8px; text-align: center; }
.area-lp__stat-card__val { font-size: 20px; font-weight: 700; font-variant-numeric: tabular-nums; display: block; }
.area-lp__stat-card__label { font-size: 11px; opacity: .75; display: block; margin-top: 2px; }

@media (max-width: 600px) {
  .area-lp__stats { grid-template-columns: repeat(2, 1fr); }
}

/* ── Area LP Body ─────────────────────────────────────── */
.area-lp__h2 { font-size: 18px; font-weight: 700; margin: 0 0 16px; border-left: 4px solid var(--color-primary); padding-left: 10px; }
.area-lp__intro { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 20px; margin-bottom: 32px; line-height: 1.8; }
.area-lp__sub-areas { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 0; }
.area-lp__empty { color: var(--color-muted); }
.area-lp__related { margin-top: 32px; padding-top: 16px; border-top: 1px solid var(--color-border); font-size: 14px; }
.area-lp__related a { color: var(--color-primary); font-weight: 600; text-decoration: none; }
.area-lp__related a:hover { text-decoration: underline; }

/* store-card 追加クラス */
.store-card__catch { font-size: 13px; color: var(--color-primary); font-weight: bold; margin-bottom: 4px; }
.store-card__price { font-size: 13px; margin-top: 6px; }
.store-card__score { flex-shrink: 0; text-align: center; padding-top: 4px; }
.store-card__score-label { font-size: 11px; color: var(--color-muted); margin-top: 4px; }

/* ═══════════════════════════════════════════════════════
   Front Page (Step E)
   ═══════════════════════════════════════════════════════ */

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: opacity .15s, background .15s;
}
.btn--primary { background: #fff; color: var(--color-primary); }
.btn--primary:hover { opacity: .88; text-decoration: none; }
.btn--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); }
.btn--outline:hover { background: rgba(255,255,255,.1); text-decoration: none; }

/* ── Hero ─────────────────────────────────────────────── */
.fp-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #a3204e 100%);
  color: #fff;
  padding: 72px 0 56px;
  text-align: center;
}
.fp-hero__eyebrow { font-size: 13px; letter-spacing: .1em; opacity: .8; margin-bottom: 12px; }
.fp-hero__h1 { font-size: clamp(22px, 4.5vw, 38px); font-weight: 700; line-height: 1.4; margin-bottom: 16px; }
.fp-hero__sub { font-size: 15px; opacity: .9; line-height: 1.8; margin-bottom: 28px; }
.fp-hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Stats Counter ────────────────────────────────────── */
.fp-stats { background: #fff; border-bottom: 1px solid var(--color-border); padding: 28px 0; }
.fp-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
.fp-stats__val { font-size: 28px; font-weight: 700; color: var(--color-primary); font-variant-numeric: tabular-nums; display: block; }
.fp-stats__label { font-size: 12px; color: var(--color-muted); display: block; margin-top: 4px; }
.fp-stats__note { text-align: center; font-size: 12px; color: var(--color-muted); margin-top: 12px; }

@media (max-width: 600px) {
  .fp-stats__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Section共通 ─────────────────────────────────────── */
.fp-section { padding: 56px 0; }
.fp-section:nth-child(even) { background: #fff; }
.fp-section__h2 { font-size: clamp(18px, 3vw, 24px); font-weight: 700; text-align: center; margin-bottom: 8px; }
.fp-section__sub { font-size: 13px; color: var(--color-muted); text-align: center; margin-bottom: 32px; }

/* ── Prefecture Cards ────────────────────────────────── */
.fp-pref-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.fp-pref-card {
  display: flex; flex-direction: column; align-items: center;
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 16px 10px;
  text-decoration: none; color: var(--color-text);
  transition: box-shadow .15s, transform .15s;
}
.fp-pref-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,.1); transform: translateY(-2px); text-decoration: none; }
.fp-pref-card__name { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.fp-pref-card__count { font-size: 13px; color: var(--color-primary); font-weight: 600; }
.fp-pref-card__price { font-size: 11px; color: var(--color-muted); margin-top: 4px; }

@media (max-width: 768px) {
  .fp-pref-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .fp-pref-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Area Cards ──────────────────────────────────────── */
.fp-area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.fp-area-card {
  display: flex; flex-direction: column;
  background: var(--color-secondary); border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 14px 16px;
  text-decoration: none; color: var(--color-text);
  transition: box-shadow .15s;
}
.fp-area-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,.1); text-decoration: none; }
.fp-area-card__area { font-weight: 700; font-size: 16px; }
.fp-area-card__pref { font-size: 12px; color: var(--color-muted); margin: 2px 0 8px; }
.fp-area-card__count { font-size: 13px; color: var(--color-primary); font-weight: 600; }
.fp-area-card__obs { font-size: 11px; color: var(--color-muted); margin-top: 4px; }

@media (max-width: 768px) {
  .fp-area-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Picks (Tabs) ────────────────────────────────────── */
.fp-picks__tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 24px;
}
.fp-picks__tab {
  background: none; border: none; cursor: pointer;
  padding: 10px 18px; font-size: 14px; font-weight: 600;
  color: var(--color-muted); border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: color .15s, border-color .15s;
}
.fp-picks__tab.is-active { color: var(--color-primary); border-bottom-color: var(--color-primary); }
.fp-picks__tab:hover { color: var(--color-primary); }
.fp-picks__panel { display: none; }
.fp-picks__panel.is-active { display: block; }
.fp-picks__empty { color: var(--color-muted); text-align: center; padding: 24px 0; }

.fp-picks__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.fp-pick-card {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .15s;
}
.fp-pick-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,.1); }
.fp-pick-card__img { width: 100%; height: 140px; object-fit: cover; }
.fp-pick-card__img--empty { display: flex; align-items: center; justify-content: center; background: var(--color-secondary); color: var(--color-primary); font-size: 24px; }
.fp-pick-card__body { padding: 12px; flex: 1; }
.fp-pick-card__area { font-size: 12px; color: var(--color-muted); margin-bottom: 4px; }
.fp-pick-card__name { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.fp-pick-card__name a { color: var(--color-text); text-decoration: none; }
.fp-pick-card__name a:hover { color: var(--color-primary); }
.fp-pick-card__catch { font-size: 12px; color: var(--color-primary); margin-bottom: 6px; }
.fp-pick-card__meta { display: flex; gap: 10px; flex-wrap: wrap; }
.fp-pick-card__price { font-size: 13px; font-weight: 600; }
.fp-pick-card__obs { font-size: 12px; color: var(--color-muted); }
.fp-pick-card__score { padding: 12px; border-top: 1px solid var(--color-border); text-align: center; }
.fp-pick-card__score-subs { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-top: 6px; }
.fp-pick-card__score-sub { font-size: 11px; color: var(--color-muted); }
.fp-pick-card__score-sub strong { color: var(--color-primary); }

@media (max-width: 768px) {
  .fp-picks__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .fp-picks__list { grid-template-columns: 1fr; }
}

/* ── Groups ──────────────────────────────────────────── */
.fp-groups { background: var(--color-secondary); }
.fp-group-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fp-group-card {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 16px;
}
.fp-group-card__name { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.fp-group-card__count { font-size: 13px; color: var(--color-primary); font-weight: 600; margin-bottom: 4px; }
.fp-group-card__prefs { font-size: 12px; color: var(--color-muted); line-height: 1.5; }

@media (max-width: 640px) {
  .fp-group-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Charts ──────────────────────────────────────────── */
.fp-charts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.fp-chart-card {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 20px;
}
.fp-chart-card--full { grid-column: 1 / -1; }
.fp-chart-card__title { font-size: 14px; font-weight: 700; margin-bottom: 14px; color: var(--color-text); }
.fp-chart-card__wrap { position: relative; height: 240px; }
.fp-chart-card__wrap--tall { height: 320px; }

@media (max-width: 640px) {
  .fp-charts__grid { grid-template-columns: 1fr; }
  .fp-chart-card--full { grid-column: auto; }
}

/* ── Guide ────────────────────────────────────────────── */
.fp-guide { background: var(--color-secondary); }
.fp-guide__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fp-guide__step {
  background: #fff; border-radius: var(--radius);
  padding: 20px 16px; border-top: 3px solid var(--color-primary);
}
.fp-guide__step-num { font-size: 28px; font-weight: 700; color: var(--color-border); margin-bottom: 10px; }
.fp-guide__step-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.fp-guide__step-body { font-size: 13px; color: var(--color-muted); line-height: 1.7; }

@media (max-width: 768px) {
  .fp-guide__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .fp-guide__grid { grid-template-columns: 1fr; }
}

/* ── Editorial ───────────────────────────────────────── */
.fp-editorial { background: #fff; }
.fp-editorial__inner { max-width: 680px; margin: 0 auto; text-align: center; }
.fp-editorial__icon { font-size: 32px; color: var(--color-primary); margin-bottom: 16px; }
.fp-editorial__title { font-size: 20px; font-weight: 700; margin-bottom: 20px; }
.fp-editorial__body { font-size: 14px; color: var(--color-muted); line-height: 1.8; margin-bottom: 14px; }
.fp-editorial__badges { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.fp-editorial__badge {
  background: var(--color-secondary); color: var(--color-primary);
  border: 1px solid var(--color-primary); border-radius: 20px;
  padding: 5px 16px; font-size: 13px; font-weight: 600;
}

/* ─── ブログ（コラム）共通 ─────────────────────────────── */
.column-header { margin-bottom: 32px; }
.column-header h1 {
  font-size: 24px; font-weight: bold;
  border-left: 4px solid var(--color-primary);
  padding-left: 12px; margin-bottom: 8px;
}
.column-header__desc { color: var(--color-muted); font-size: 14px; }

.column-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px; margin-bottom: 40px;
}

.col-card {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: box-shadow .15s;
}
.col-card:hover { box-shadow: 0 2px 10px rgba(0,0,0,.08); }

.col-card__thumb {
  aspect-ratio: 16/9; width: 100%;
  object-fit: cover; background: var(--color-secondary); display: block;
}

.col-card__body {
  padding: 16px; flex: 1; display: flex;
  flex-direction: column; gap: 6px;
}

.col-card__cat {
  display: inline-block; font-size: 11px;
  background: var(--color-secondary); color: var(--color-primary);
  padding: 2px 8px; border-radius: 3px; align-self: flex-start;
}
.col-card__cat:hover { text-decoration: none; opacity: .85; }

.col-card__title { font-size: 16px; font-weight: bold; line-height: 1.5; }
.col-card__title a { color: var(--color-text); }
.col-card__title a:hover { color: var(--color-primary); text-decoration: none; }

.col-card__excerpt { font-size: 13px; color: var(--color-muted); line-height: 1.6; flex: 1; }
.col-card__meta { font-size: 12px; color: var(--color-muted); }

/* ─── パンくず ────────────────────────────────────────── */
.breadcrumb {
  font-size: 13px; color: var(--color-muted);
  margin-bottom: 24px; display: flex; flex-wrap: wrap;
  gap: 4px; align-items: center;
}
.breadcrumb a { color: var(--color-muted); }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb__sep { color: var(--color-border); }

/* ─── シングル記事 ─────────────────────────────────────── */
.col-single { max-width: 760px; margin-inline: auto; }
.col-single__header { margin-bottom: 28px; }
.col-single__cats { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }

.col-single__cat-tag {
  display: inline-block; font-size: 12px;
  background: var(--color-secondary); color: var(--color-primary);
  padding: 3px 10px; border-radius: 3px;
}
.col-single__cat-tag:hover { opacity: .85; text-decoration: none; }

.col-single__title { font-size: 26px; font-weight: bold; line-height: 1.4; margin-bottom: 10px; }
.col-single__meta { font-size: 13px; color: var(--color-muted); }

.col-single__thumbnail { width: 100%; border-radius: var(--radius); display: block; margin-bottom: 28px; }

.col-single__thumb-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-secondary);
  border-radius: var(--radius);
}


.col-single__content > * + * { margin-top: 16px; }

/* ── col_last: 締め文エリア ──────────────────────────── */
.col_last {
  background: var(--color-secondary);
  border-radius: 12px;
  padding: 40px 20px 20px 20px;
  margin-top: 48px;
  position: relative;
}

.col_last::before {
  content: "Have a sweet night!!";
  display: block;
  font-family: "Dancing Script", "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(26px, 3vw, 26px);
  color: var(--color-primary);
  opacity: .7;
  margin-bottom: 30px;
  line-height: 1;
  text-align: center;
}

.col_last p {
  font-size: 14px;
  line-height: 1.85;
  color: #444;
}

.col_last p + p { margin-top: 14px; }
.col-single__content h2 {
  font-size: 20px; font-weight: bold;
  border-left: 4px solid var(--color-primary);
  padding-left: 10px; margin-top: 36px;
}
.col_last h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    border: none;
    padding: 0;
    margin: 0 0 16px;
    text-align: center;
}
p.byline {
    font-size: 0.8rem;
    color: #ccc;
}
.col-single__content h3 { font-size: 17px; font-weight: bold; margin-top: 28px; }
.col-single__content ul,
.col-single__content ol { padding-left: 24px; }
.col-single__content img { border-radius: var(--radius); }
.col-single__content a { color: var(--color-primary); }
p.lead {
    background-color: #ebebeb;
    padding: 15px;
    margin: 30px 0;
    overflow: hidden;
}
.col-single__content li {
  list-style: none;
  margin: 0 0 20px 0;
  padding-left: 1.6em;
  position: relative;
}
.col-single__content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.95em;
}
.col-single__content ul {
    background-color: #ebebeb;
    padding: 25px 30px 10px 20px ;
}

.col-single__content {
    line-height: 1.8;
}


/* ─── 前後ナビ ─────────────────────────────────────────── */
.col-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 40px; }
.col-nav__item {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 16px; font-size: 14px; line-height: 1.5;
}
.col-nav__item.is-next { text-align: right; }
.col-nav__label { display: block; font-size: 11px; color: var(--color-muted); margin-bottom: 4px; }

/* ─── ページネーション ─────────────────────────────────── */
.column-pagination {
  display: flex; justify-content: center;
  gap: 6px; flex-wrap: wrap; margin: 40px 0;
}
.column-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 10px;
  border: 1px solid var(--color-border); border-radius: var(--radius);
  font-size: 14px; color: var(--color-text); background: #fff;
  transition: border-color .15s, color .15s;
}
.column-pagination .page-numbers.current {
  background: var(--color-primary); color: #fff; border-color: var(--color-primary);
}
.column-pagination .page-numbers:hover:not(.current) {
  border-color: var(--color-primary); color: var(--color-primary); text-decoration: none;
}
.column-pagination .page-numbers.dots { border: none; background: none; }

/* ─── 404 ──────────────────────────────────────────────── */
.error404-wrap { text-align: center; padding: 80px 24px; max-width: 480px; margin-inline: auto; }
.error404-wrap h1 { font-size: 80px; color: var(--color-primary); margin-bottom: 8px; line-height: 1; }
.error404-wrap p { color: var(--color-muted); margin-bottom: 12px; }

@media (max-width: 640px) {
  .column-grid { grid-template-columns: 1fr; }
  .col-single__title { font-size: 20px; }
  .col-nav { grid-template-columns: 1fr; }
}

/* ─── 関連記事セクション ─────────────────────────────────── */
.col-related {
  margin-top: 56px;
  padding: 40px 0 64px;
  border-top: 2px solid #f0ede8;
}
.col-related__heading {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 24px;
  padding-left: 12px;
  border-left: 4px solid var(--color-primary, #b14a6b);
}
.col-related__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .col-related__grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .col-related__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 500px) {
  .col-related__grid { grid-template-columns: repeat(2, 1fr); }
}
.col-related__card { margin: 0; }
.col-related__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.col-related__link:hover .col-related__thumb img {
  transform: scale(1.04);
}
.col-related__link:hover .col-related__title {
  color: var(--color-primary, #b14a6b);
}
.col-related__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-secondary);
  margin-bottom: 8px;
}
.col-related__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}
.col-related__title {
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.15s ease;
}

/* ─── トップページ コラムセクション ─────────────────────── */
.jofuu-column-section {
  padding: 64px 0;
  background: #fafaf7;
}
.jofuu-column-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.jofuu-column-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
}
.jofuu-column-section__title {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.04em;
}
.jofuu-column-section__lead {
  flex: 1 1 240px;
  font-size: 14px;
  color: #555;
  margin: 0;
}
.jofuu-column-section__more {
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  color: var(--color-primary, #b14a6b);
  white-space: nowrap;
}
.jofuu-column-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .jofuu-column-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .jofuu-column-grid { grid-template-columns: 1fr; }
}
.jofuu-column-card { margin: 0; }
.jofuu-column-card__link {
  display: block;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.jofuu-column-card__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}
.jofuu-column-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #ece9e3;
  overflow: hidden;
}
.jofuu-column-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.jofuu-column-card__thumb.is-empty {
  background: linear-gradient(135deg, #efece6 0%, #e3dfd6 100%);
}
.jofuu-column-card__body { padding: 16px 18px 20px; }
.jofuu-column-card__category {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--color-primary, #b14a6b);
  margin-bottom: 8px;
}
.jofuu-column-card__title {
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── area_lp ページネーション ─────────────────────────── */
.jofuu-pagination {
  margin: 48px 0;
  text-align: center;
}
.jofuu-pagination__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.jofuu-pagination__num,
.jofuu-pagination__prev,
.jofuu-pagination__next {
  display: inline-block;
  min-width: 36px;
  padding: 8px 12px;
  border: 1px solid #d8d4cb;
  background: #fff;
  text-decoration: none;
  font-size: 14px;
  color: #333;
  border-radius: 6px;
  transition: background 0.15s ease;
}
.jofuu-pagination__num:hover,
.jofuu-pagination__prev:hover,
.jofuu-pagination__next:hover {
  background: #f3eee5;
}
.jofuu-pagination__num.is-current {
  background: var(--color-primary, #b14a6b);
  color: #fff;
  border-color: var(--color-primary, #b14a6b);
  cursor: default;
}
.jofuu-pagination__ellipsis {
  padding: 8px 4px;
  color: #999;
}

/* ─── 他ポータル掲載リンク ───────────────────────────────── */
.jofuu-store__portals {
  margin: 48px 0;
  padding: 32px 24px;
  background: #fafaf7;
  border-radius: 10px;
}
.jofuu-store__portals .jofuu-store__h2 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
}
.jofuu-store__portals .jofuu-store__lead {
  margin: 0 0 20px;
  font-size: 13px;
  color: #555;
}
.jofuu-portal-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
.jofuu-portal-list__item a {
  display: block;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #e6e2d8;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.15s;
}
.jofuu-portal-list__item a:hover { border-color: #b14a6b; }
.jofuu-portal-list__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #2a2a2a;
}
.jofuu-portal-list__host {
  display: block;
  font-size: 11px;
  color: #888;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════
   営業届出バッジ
   ═══════════════════════════════════════════════════════ */

.jofuu-license-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  margin-top: 8px;
  margin-bottom: 12px;
}

.jofuu-license-verified {
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #a5d6a7;
}

.jofuu-license-verified .badge-icon {
  font-weight: bold;
}

.jofuu-license-verified .badge-source {
  font-size: 11px;
  color: #2e7d32;
  margin-left: 2px;
}

/* 一覧カード内の小バッジ */
.jofuu-license-badge--sm {
  font-size: 11px;
  padding: 3px 8px;
  margin-top: 6px;
}

/* エリアフィルタ */
.jofuu-area-filter {
  margin-bottom: 16px;
  padding: 10px 14px;
  background: #f0f7f0;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
}

.jofuu-area-filter__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #1b5e20;
  cursor: pointer;
  font-weight: 500;
}

.jofuu-area-filter__label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #2e7d32;
  cursor: pointer;
}

.jofuu-area-filter__check-icon {
  font-size: 13px;
  color: #2e7d32;
  display: none;
}

/* フッターディスクレーマー */
.jofuu-disclaimer {
  font-size: 11px;
  color: #666;
  padding: 12px 0;
  background: #fafafa;
  border-top: 1px solid #eee;
  line-height: 1.7;
}

/* 統計カード: 確認済強調 */
.fp-stats__card--verified .fp-stats__val {
  color: #2e7d32;
}

.fp-stats__card--verified .fp-stats__label {
  color: #2e7d32;
}

/* ─── 店舗検索 UI ────────────────────────────────────── */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

.jofuu-search-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  background: #faf6f1;
  padding: 12px 16px;
  border-radius: 8px;
  margin: 16px 0;
}
.jofuu-search-form select,
.jofuu-search-form input[type=text] {
  height: 40px;
  padding: 0 12px;
  border: 1px solid #d2c8b8;
  border-radius: 6px;
  font-size: 14px;
  background: #fff;
  box-sizing: border-box;
}
.jofuu-search-form input[type=text] {
  flex: 1;
  min-width: 200px;
}
.jofuu-search-form .jofuu-search-keyword {
  flex: 1;
  min-width: 200px;
  display: flex;
}
.jofuu-search-form .jofuu-search-keyword input[type=text] {
  width: 100%;
}
.jofuu-search-submit {
  height: 40px;
  padding: 0 24px;
  background: #b00050;
  color: #fff;
  border: 0;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.jofuu-search-submit:hover {
  background: #970043;
}

.front-search {
  padding: 8px 0 0;
}
.area-other-search {
  margin-bottom: 24px;
}

.jofuu-search-main {
  padding: 24px 0 48px;
}
.jofuu-search-header h1 {
  font-size: 24px;
  margin: 0 0 8px;
}
.jofuu-search-summary {
  font-size: 14px;
  color: #666;
  margin: 12px 0 24px;
}
.jofuu-search-empty {
  text-align: center;
  padding: 40px 16px;
  background: #faf6f1;
  border-radius: 8px;
}
.jofuu-search-empty p {
  font-size: 16px;
  margin: 0 0 16px;
}
.jofuu-search-tips {
  display: inline-block;
  text-align: left;
  margin: 0 auto;
  padding-left: 20px;
  color: #555;
  font-size: 14px;
  line-height: 1.8;
}
.jofuu-search-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  margin: 32px 0;
}
.jofuu-search-pagination a,
.jofuu-search-pagination .current {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #444;
  font-size: 14px;
}
.jofuu-search-pagination a:hover {
  background: #faf6f1;
}
.jofuu-search-pagination .current {
  background: #b00050;
  color: #fff;
  border-color: #b00050;
}

/* ─── 静的固定ページ（page.php / page-sitemap.php 共通）───── */
.static-page {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px) clamp(20px, 4vw, 40px);
  margin: 16px 0 32px;
  line-height: 1.8;
}
.static-page__title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--color-text);
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 12px;
  margin: 0 0 24px;
}
.static-page__body p.lead {
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-secondary);
  padding: 16px 20px;
  border-radius: var(--radius);
  margin: 0 0 24px;
}
.static-page__body h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 32px 0 12px;
  padding-left: 12px;
  border-left: 4px solid var(--color-primary);
  color: var(--color-text);
  line-height: 1.4;
}
.static-page__body h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 24px 0 8px;
  color: var(--color-text);
}
.static-page__body p {
  margin: 0 0 14px;
}
.static-page__body ul,
.static-page__body ol {
  margin: 0 0 16px;
  padding-left: 1.5em;
}
.static-page__body ul li,
.static-page__body ol li {
  margin-bottom: 6px;
}
.static-page__body a {
  color: var(--color-primary);
  text-decoration: underline;
}
.static-page__body a:hover { opacity: .75; }
.static-page__body .btn {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  margin: 8px 0;
}
.static-page__body .btn:hover { opacity: .85; }
.static-page__body .meta {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px dashed var(--color-border);
  font-size: 13px;
  color: var(--color-muted);
  text-align: right;
}
.static-page__body .table--info,
.static-page__body .table--history,
.static-page__body table.table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 20px;
  font-size: 14px;
}
.static-page__body .table--info th,
.static-page__body .table--info td,
.static-page__body .table--history th,
.static-page__body .table--history td,
.static-page__body table.table th,
.static-page__body table.table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}
.static-page__body .table--info th,
.static-page__body .table--history th,
.static-page__body table.table th {
  width: 30%;
  color: var(--color-muted);
  font-weight: 700;
  background: #fafafa;
}

/* ─── サイトマップ (page-sitemap.php) ─────────────────── */
.sitemap .static-page__body > section {
  margin-top: 28px;
}
.sitemap .static-page__body > section:first-child { margin-top: 0; }
.sitemap__regions {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 12px;
}
.sitemap__region {
  background: #fafafa;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.sitemap__region-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--color-border);
}
.sitemap__pref-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
}
.sitemap__pref-list li { margin: 0; }
.sitemap__pref-list a {
  font-size: 13px;
  color: var(--color-text);
  text-decoration: none;
  padding: 2px 0;
  border-bottom: 1px dashed transparent;
}
.sitemap__pref-list a:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

/* ─────────────────────────────────────────────────────
 * v3 redesign feedback
 * ───────────────────────────────────────────────────── */

/* §4: グループから探すセクションの上下余白を他セクションに揃える */
#groups.section,
.section#groups,
section#groups {
  padding-block: clamp(48px, 6vw, 80px);
}
#groups .section-title {
  margin-bottom: clamp(20px, 2.5vw, 32px);
}

/* §6: 検索ボタンを 2 行構造（PC は縦並び、SP は横並び） */
.btn-search {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
  padding: 10px 24px;
  align-self: end;
}
.btn-search__main { font-weight: 700; }
.btn-search__count { font-size: 0.85em; opacity: .9; margin-top: 2px; }
@media (max-width: 640px) {
  .btn-search { flex-direction: row; gap: 4px; }
  .btn-search__count { margin-top: 0; }
}

/* §7: パンくず共通 margin（area_lp / favorites / shop詳細 すべて揃える） */
.breadcrumb {
  margin-block: clamp(12px, 1.6vw, 20px);
}

/* §8: area_lp / favorites の H1 は背景画像の上に乗るので白文字を明示 */
.area-lp__hero-h1,
.jofuu-favs-hero__title {
  color: #fff;
}

/* §9: /search/ で見出しと検索フォームが重ならないよう余白を確保 */
.jofuu-search-header {
  padding-block: clamp(32px, 4vw, 56px);
  position: relative;
}
.jofuu-search-header h1 {
  margin-bottom: clamp(16px, 2vw, 24px);
}
.jofuu-search-header .search-panel,
.jofuu-search-header .jofuu-search-form {
  margin-block-start: clamp(16px, 2vw, 24px);
}

/* §11: フッターのナビ（6リンク） */
.site-footer__nav {
  margin-bottom: 16px;
}
.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 0;
  font-size: 13px;
}
.site-footer__links li {
  display: inline-flex;
  align-items: center;
}
.site-footer__links li + li::before {
  content: "／";
  margin: 0 8px;
  color: var(--color-border);
}
.site-footer__links a {
  color: var(--color-muted);
  text-decoration: none;
}
.site-footer__links a:hover { color: var(--color-primary); }

/* §11: お問い合わせフォーム共通スタイル */
.contact-form {
  max-width: 720px;
  margin: 0 auto;
}
.contact-form fieldset {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin: 0 0 16px;
}
.contact-form legend {
  padding: 0 8px;
  font-weight: 700;
  font-size: 14px;
}
.contact-form .field {
  margin-bottom: 14px;
}
.contact-form label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="url"],
.contact-form textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
}
.contact-form textarea { min-height: 200px; resize: vertical; }
.contact-form .req {
  display: inline-block;
  margin-left: 4px;
  padding: 1px 6px;
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  border-radius: 3px;
  font-weight: 700;
}
.contact-form .errors {
  background: #fff3f3;
  border: 1px solid #e88;
  color: #a33;
  padding: 12px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.contact-form .errors ul { margin: 0 0 0 20px; }
.contact-form .actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-form .honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-confirm-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
}
.contact-confirm-table th,
.contact-confirm-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
  text-align: left;
  vertical-align: top;
}
.contact-confirm-table th {
  width: 160px;
  color: var(--color-muted);
  font-weight: 700;
  background: #fafafa;
}

/* §11: 運営会社・規約系ページの共通スタイル */
.table--info,
.table--history {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.table--info th,
.table--info td,
.table--history th,
.table--history td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
  text-align: left;
  vertical-align: top;
}
.table--info th,
.table--history th {
  width: 160px;
  color: var(--color-muted);
  font-weight: 700;
  background: #fafafa;
}
