/* ==========================================================================
   勝負めしコンテスト 特設サイト - style.css
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --cream: #f5ecda;
  --cream-2: #f9f3e4;
  --cream-3: #eee0c5;
  --navy: #0d2843;
  --navy-dark: #081a2c;
  --red: #b8252c;
  --red-dark: #951b22;
  --gold: #c8a766;
  --gold-dark: #a4843f;
  --gold-light: #e6cf9a;
  --ink: #2c2419;
  --ink-soft: #6b6256;
  --line: rgba(168, 134, 64, 0.35);

  --serif: "Shippori Mincho B1", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans:  "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream-2);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }

/* スクロールフェードイン */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.icon-img {
  display: block;
  object-fit: contain;
  max-width: 100%;
  height: auto;
}
.nobr { white-space: nowrap; }

/* ブラシ装飾はセクションの背景レイヤーとして組み込み済み（below) */
ul, ol { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
dl, dd { margin: 0; }
h1, h2, h3, h4, p { margin: 0; }


/* ==========================================================================
   NAV PC (ヒーロー通過後にスライドイン)
   ========================================================================== */
.nav-pc {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(180deg, #1c1c1c 0%, #060606 100%);
  color: #fff;
  border-bottom: 2px solid var(--gold);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}
.nav-pc.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav-pc__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-pc__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-pc__logo img {
  height: 40px;
  width: auto;
  display: block;
}
.nav-pc__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-pc__brand-eyebrow {
  font-family: var(--serif);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--gold-light);
}
.nav-pc__brand-title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: #fff;
  margin-top: 2px;
}
.nav-pc__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  flex: 1;
  justify-content: center;
}
.nav-pc__list a {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-pc__list a:hover { color: var(--gold-light); }
.nav-pc__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, #c93530 0%, #a01a22 100%);
  color: #fff;
  padding: 10px 26px;
  border-radius: 4px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 3px 0 rgba(110, 18, 24, 0.6);
  transition: transform 0.15s;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-pc__cta:hover { transform: translateY(-2px); }
.nav-pc__cta-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-pc__cta-icon img { width: 20px; height: 20px; }

/* 中間幅（小さめのノートPC）：メニュー＋応募CTAが1行に収まるよう縮小 */
@media (max-width: 1180px) and (min-width: 1025px) {
  .nav-pc__inner { gap: 12px; padding: 12px 18px; }
  .nav-pc__logo img { height: 34px; }
  .nav-pc__list a { padding: 7px 7px; font-size: 0.78rem; letter-spacing: 0; }
  .nav-pc__cta { padding: 9px 18px; font-size: 0.85rem; gap: 7px; letter-spacing: 0.04em; }
  .nav-pc__cta-icon { width: 18px; height: 18px; }
  .nav-pc__cta-icon img { width: 16px; height: 16px; }
}


/* ==========================================================================
   NAV (ハンバーガーメニュー)
   ========================================================================== */
.nav-toggle { display: none; }
.nav-overlay { display: none; }
.nav-menu { display: none; }

@media (max-width: 1024px) {
  /* ハンバーガーボタン */
  .nav-toggle {
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 54px;
    height: 54px;
    background: linear-gradient(180deg, #1c1c1c 0%, #060606 100%);
    border: 1.5px solid var(--gold);
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    transition: background 0.2s;
  }
  .nav-toggle__lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 22px;
  }
  .nav-toggle__line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold-light);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
  }
  .nav-toggle__label {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    color: var(--gold-light);
    margin-top: 2px;
  }
  .nav-toggle.is-open .nav-toggle__line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .nav-toggle.is-open .nav-toggle__line:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.is-open .nav-toggle__line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-toggle.is-open .nav-toggle__label { display: none; }

  /* オーバーレイ（背景の薄暗化） */
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 150;
  }
  .nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }

  /* スライドメニューパネル */
  .nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 86%;
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, #1c1c1c 0%, #060606 100%);
    color: #fff;
    padding: 80px 0 30px;
    box-shadow: -6px 0 20px rgba(0, 0, 0, 0.4);
    transform: translateX(100%);
    transition: transform 0.32s ease;
    z-index: 160;
    overflow-y: auto;
  }
  .nav-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }
  .nav-menu.is-open { transform: translateX(0); }

  .nav-menu__title {
    text-align: center;
    font-family: var(--serif);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.4em;
    color: var(--gold-light);
    padding: 0 30px 20px;
    border-bottom: 1px solid rgba(200, 167, 102, 0.25);
    margin-bottom: 8px;
  }
  .nav-menu__diamond {
    color: var(--gold);
    font-size: 0.75rem;
    margin: 0 12px;
  }

  .nav-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
  }
  .nav-menu__list li {
    border-bottom: 1px dashed rgba(200, 167, 102, 0.2);
  }
  .nav-menu__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    color: #fff;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s, background 0.2s;
  }
  .nav-menu__link::before {
    content: "›";
    color: var(--gold);
    font-weight: 800;
    font-size: 1.2rem;
    transition: color 0.2s;
  }
  .nav-menu__link:hover,
  .nav-menu__link:active {
    color: var(--gold-light);
    padding-left: 36px;
    background: rgba(200, 167, 102, 0.08);
  }

  .nav-menu__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 18px 24px 10px;
    padding: 14px 20px;
    background: linear-gradient(180deg, #c93530 0%, #a01a22 100%);
    color: #fff;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.06em;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 3px 0 rgba(110, 18, 24, 0.6);
  }
  .nav-menu__cta-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav-menu__cta-icon img { width: 24px; height: 24px; }

  /* スクロール抑止 */
  body.nav-open { overflow: hidden; }
}


/* ==========================================================================
   TOP BANNER (三島市制施行85周年記念事業)
   ========================================================================== */
.top-banner {
  background: linear-gradient(180deg, #1c1c1c 0%, #060606 100%);
  color: #fff;
  text-align: center;
  padding: 6px 16px;
  position: relative;
  border-bottom: 2px solid var(--gold);
}
.top-banner__inner {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  color: var(--gold-light);
}
.top-banner__inner strong {
  color: #fff;
  font-size: 1.65rem;
  font-weight: 800;
  margin: 0 6px;
  letter-spacing: 0.02em;
}
.top-banner__deco {
  color: var(--gold);
  font-size: 0.85rem;
  margin: 0 12px;
}


/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: clamp(720px, 50vw, 1080px);
  background: var(--cream);
  overflow: hidden;
  isolation: isolate;
}

/* shrine background photo (images/hero-bg.jpg) */
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  background:
    radial-gradient(ellipse at center 30%, rgba(0,0,0,0) 35%, rgba(245, 236, 218, 1) 75%),
    linear-gradient(180deg, #6ea8c7 0%, #4d8aa9 45%, #6b8b66 70%, #2d4a3a 100%);
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
/* cloud sparkle decorations + top white fade */
.hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(to bottom,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0.7) 30%,
      rgba(255, 255, 255, 0.3) 55%,
      rgba(255, 255, 255, 0) 75%),
    radial-gradient(circle at 8% 8%, rgba(200, 167, 102, 0.55) 0, transparent 18%),
    radial-gradient(circle at 92% 6%, rgba(200, 167, 102, 0.55) 0, transparent 18%),
    radial-gradient(circle at 5% 95%, rgba(200, 167, 102, 0.45) 0, transparent 22%),
    radial-gradient(circle at 95% 95%, rgba(200, 167, 102, 0.45) 0, transparent 22%);
}

.hero__side {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 22%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
.hero__side--left { left: 0; }
.hero__side--right {
  left: auto;
  right: 0;
  width: 22%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 100%);
}

.hero__date-img {
  position: absolute;
  bottom: 80px;
  right: 40px;
  width: 340px;
  height: auto;
  max-width: none;
  z-index: 3;
  display: block;
}
.hero__deco-arc {
  position: absolute;
  top: 0;
  left: 0;
  width: 360px;
  max-width: none;
  height: auto;
  display: block;
  z-index: 2;
  pointer-events: none;
}
.hero__deco-brush-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 520px;
  max-width: none;
  height: auto;
  display: block;
  z-index: 2;
  pointer-events: none;
}
.hero__vertical-img {
  position: absolute;
  top: 40px;
  left: 30px;
  height: 620px;
  max-height: 85vh;
  width: auto;
  max-width: none;
  display: block;
  z-index: 3;
}

.hero__center {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 20px;
  display: flex;
  justify-content: center;
}
.hero__title-wrap {
  margin: 0;
  display: inline-block;
  max-width: 760px;
  width: 65%;
}
.hero__title-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 0 rgba(255, 255, 255, 0.5));
}


/* ==========================================================================
   CAMPAIGN
   ========================================================================== */
/* 受付停止メッセージ（投票フォーム・応募フォーム共通）*/
.vote-closed,
.form-closed {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 2px solid var(--gold);
  border-radius: 14px;
  padding: 48px 30px;
  box-shadow: 0 10px 30px rgba(13, 40, 67, 0.1);
}
.vote-closed__icon, .form-closed__icon { font-size: 2.4rem; margin-bottom: 10px; }
.vote-closed__title, .form-closed__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
  margin: 0 0 14px;
}
.vote-closed__lead, .form-closed__lead { font-size: 0.95rem; line-height: 1.9; color: var(--ink-soft); margin: 0 0 24px; }
.vote-closed__btn, .form-closed__btn {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--navy);
  padding: 12px 32px;
  border-radius: 30px;
  transition: opacity 0.2s;
}
.vote-closed__btn:hover, .form-closed__btn:hover { opacity: 0.85; }

/* 応募の受付停止：応募ボタンを全ページ非表示 */
.entry-closed .nav-pc__cta,
.entry-closed .nav-menu__cta,
.entry-closed .entry__cta-primary { display: none !important; }
/* 投票の受付停止：投票ボタンを全ページ非表示 */
.voting-closed .card__vote,
.voting-closed .vr-vote-cta { display: none !important; }
/* 応募の受付停止：応募フォームページはフォームを隠して受付終了を表示 */
#entry-closed-notice { display: none; }
.entry-closed #entry-closed-notice { display: block; }
.entry-closed #entry-form { display: none !important; }

/* デジタルスタンプラリー カミングスーン表示 */
.campaign__coming { display: none; }
.campaign--coming .campaign__body,
.campaign--coming .campaign__foot,
.campaign--coming .campaign__lead,
.campaign--coming .campaign__badge { display: none; }
.campaign--coming .campaign__coming {
  display: block;
  max-width: 720px;
  margin: 8px auto 0;
  text-align: center;
  background: #fff;
  border: 2px solid var(--gold);
  border-radius: 14px;
  padding: 56px 30px;
  box-shadow: 0 10px 30px rgba(13, 40, 67, 0.1);
}
.campaign__coming-en {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  margin: 0 0 16px;
  text-transform: uppercase;
}
.campaign__coming-jp {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 2;
  color: var(--ink);
  margin: 0;
}
@media (max-width: 640px) {
  .campaign--coming .campaign__coming { padding: 40px 20px; }
  .campaign__coming-jp { font-size: 0.92rem; }
}

/* 勝負メニュー一覧 カミングスーン表示 */
.menu__coming { display: none; }
.menu--coming .filter,
.menu--coming .menu-list,
.menu--coming .menu__lead,
.menu--coming .menu__badge { display: none; }
.menu--coming .menu__coming {
  display: block;
  max-width: 720px;
  margin: 8px auto 0;
  text-align: center;
  background: #fff;
  border: 2px solid var(--gold);
  border-radius: 14px;
  padding: 56px 30px;
  box-shadow: 0 10px 30px rgba(13, 40, 67, 0.1);
}
.menu__coming-en {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  margin: 0 0 16px;
  text-transform: uppercase;
}
.menu__coming-jp {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 2;
  color: var(--ink);
  margin: 0;
}
@media (max-width: 640px) {
  .menu--coming .menu__coming { padding: 40px 20px; }
  .menu__coming-jp { font-size: 0.92rem; }
}

/* 投票結果 カミングスーン表示 */
.result__coming { display: none; }
.result--coming .result-cards,
.result--coming .result__total,
.result--coming .vr-cats,
.result--coming .vr-heading,
.result--coming .result__lead { display: none; }
.result--coming .result__coming {
  display: block;
  max-width: 720px;
  margin: 8px auto 0;
  text-align: center;
  background: #fff;
  border: 2px solid var(--gold);
  border-radius: 14px;
  padding: 56px 30px;
  box-shadow: 0 10px 30px rgba(13, 40, 67, 0.1);
}
.result__coming-en {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  margin: 0 0 16px;
  text-transform: uppercase;
}
.result__coming-jp {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 2;
  color: var(--ink);
  margin: 0;
}
@media (max-width: 640px) {
  .result--coming .result__coming { padding: 40px 20px; }
  .result__coming-jp { font-size: 0.92rem; }
}

.campaign {
  position: relative;
  padding: 80px 0;
  background-color: var(--cream-2);
  background-image:
    url('images/bg-washi-gold-brush-left.png'),
    url('images/bg-washi-gold-brush-right.png'),
    url('images/bg-washi-gold-brush.jpg');
  background-size:
    560px auto,
    520px auto,
    auto;
  background-position:
    top left,
    bottom right,
    top left;
  background-repeat:
    no-repeat,
    no-repeat,
    repeat;
  overflow: hidden;
}
.campaign::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}
.campaign__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

.campaign__badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: url('images/stamp_rally_kaisai_red_badge.png') no-repeat center/contain;
  z-index: 2;
}

.campaign__head { text-align: center; margin-bottom: 50px; }
.campaign__eyebrow {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--ink);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.campaign__eyebrow .line {
  display: inline-block;
  width: 50px;
  height: 1px;
  background: var(--ink-soft);
}
.campaign__eyebrow .diamond {
  color: var(--gold-dark);
  font-size: 0.7rem;
  margin: 0 4px;
}
.campaign__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4rem);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.campaign__title .accent { color: var(--red); }
.campaign__lead {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink-soft);
}

.campaign__body {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.step {
  background: #fff;
  border-radius: 8px;
  padding: 24px 16px 20px;
  text-align: center;
  position: relative;
  margin: 0 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid var(--gold-light);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  z-index: 1;
}
.step__num {
  width: 34px;
  height: 34px;
  margin: 0 auto 14px;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
}
.step__num i {
  display: inline-block;
  transform: rotate(-45deg);
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.2rem;
  font-style: normal;
  line-height: 1;
}
.step--red .step__num { background: var(--red); }
.step--gold .step__num { background: var(--gold-dark); }
.step--navy .step__num { background: var(--navy); }

.step__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.step__desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.5;
}
.step__icon {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.step__icon svg,
.step__icon .icon-img {
  width: 90px;
  height: 90px;
}
.step__period {
  background: var(--red);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 10px 6px;
  border-radius: 4px;
  line-height: 1.5;
}
.step__period--navy { background: var(--navy); }
.step--gold .step__period { background: var(--gold-dark); }

.overview {
  background: #fff;
  border: 2px solid var(--navy);
  border-radius: 8px;
  overflow: hidden;
}
.overview__head {
  background: var(--navy);
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.15em;
  padding: 12px;
  text-align: center;
  position: relative;
}
.overview__head::before,
.overview__head::after {
  content: "◆";
  color: var(--gold);
  font-size: 0.7rem;
  margin: 0 8px;
}
.overview__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px 20px;
}
.overview__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 8px 20px;
  border-right: 1px dashed var(--line);
  border-bottom: none;
  font-size: 0.85rem;
  line-height: 1.6;
}
.overview__row:last-child { border-right: none; }
.overview__icon svg,
.overview__icon .icon-img { width: 40px; height: 40px; }
.overview__label {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
  width: 100%;
}
.overview__value {
  color: var(--ink);
  font-size: 0.85rem;
}
.overview__value small {
  display: block;
  color: var(--ink-soft);
  font-size: 0.72rem;
  margin-top: 4px;
}

/* black foot CTA bar */
.campaign__foot {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: 8px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  color: #fff;
}
.campaign__foot-label {
  position: relative;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.3;
  background: linear-gradient(180deg, #c8a766, #a4843f);
  color: #fff;
  padding: 14px 24px 14px 18px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
  text-align: center;
}
.campaign__foot-steps {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
}
.campaign__foot-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  line-height: 1.4;
}
.campaign__foot-icon svg,
.campaign__foot-icon .icon-img { width: 36px; height: 36px; }
.campaign__foot-cta {
  background: linear-gradient(180deg, #c93530, #a01a22);
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 30px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 3px 0 rgba(0,0,0,0.3);
  white-space: nowrap;
}
.campaign__foot-cta .arrow {
  width: 24px;
  height: 24px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.campaign__foot-cta .arrow svg {
  width: 12px;
  height: 12px;
  display: block;
}


/* ==========================================================================
   お知らせ（投稿一覧）— 他セクションと統一したデザイン
   ========================================================================== */
.news {
  position: relative;
  padding: 90px 20px 80px;
  background-color: var(--cream-2);
  background-image:
    url('images/bg-washi-gold-brush-left.png'),
    url('images/bg-washi-gold-brush-right.png'),
    url('images/bg-washi-gold-brush.jpg');
  background-size:
    560px auto,
    520px auto,
    auto;
  background-position:
    top left,
    bottom right,
    top left;
  background-repeat:
    no-repeat,
    no-repeat,
    repeat;
  overflow: hidden;
}
.news::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  pointer-events: none;
}
.news__inner {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.news__head { text-align: center; margin-bottom: 48px; }
.news__eyebrow {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--ink);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.news__eyebrow .line { display: inline-block; width: 50px; height: 1px; background: var(--ink-soft); }
.news__eyebrow .diamond { color: var(--gold-dark); font-size: 0.7rem; margin: 0 4px; }
.news__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4rem);
  letter-spacing: 0.08em;
}
.news__title .accent { color: var(--red); }
.news__list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid var(--cream-3);
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(13, 40, 67, 0.07);
  overflow: hidden;
}
.news__item { border-bottom: 1px solid var(--cream-3); }
.news__item:last-child { border-bottom: none; }
.news__link {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 28px;
  text-decoration: none;
  transition: background 0.2s;
}
.news__link:hover { background: var(--cream-2); }
.news__date {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold-dark);
  letter-spacing: 0.06em;
}
.news__item-title {
  flex: 1;
  min-width: 0;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.6;
}
.news__arrow {
  flex: 0 0 auto;
  color: var(--gold-dark);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.2s;
}
.news__link:hover .news__arrow { transform: translateX(4px); }
@media (max-width: 640px) {
  .news { padding: 60px 14px 56px; }
  .news__head { margin-bottom: 32px; }
  .news__link { flex-wrap: wrap; gap: 4px 14px; padding: 16px 18px; }
  .news__item-title { flex-basis: 100%; font-size: 0.98rem; }
  .news__arrow { display: none; }
}

/* ---- お知らせ詳細ページ ---- */
.news-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.news-article__meta { margin-bottom: 14px; }
.news-article__date {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-dark);
  letter-spacing: 0.06em;
}
.news-article__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: 0.04em;
  padding-bottom: 22px;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--gold);
}
.news-article__body {
  font-size: 1rem;
  line-height: 2;
  color: var(--ink);
}
.news-article__back {
  display: inline-block;
  margin-top: 44px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  letter-spacing: 0.08em;
  padding: 10px 26px;
  border: 1.5px solid var(--navy);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.85);
  transition: all 0.2s;
}
.news-article__back:hover { background: var(--navy); color: #fff; }
.news-article__empty { text-align: center; color: var(--ink-soft); padding: 40px 0; }

/* ==========================================================================
   ABOUT (キャンペーン概要)
   ========================================================================== */
.about {
  position: relative;
  padding: 90px 0 80px;
  background-color: var(--cream-2);
  background-image:
    url('images/bg-washi-gold-brush-left.png'),
    url('images/bg-washi-gold-brush-right.png'),
    url('images/bg-washi-gold-brush.jpg');
  background-size:
    560px auto,
    520px auto,
    auto;
  background-position:
    top left,
    bottom right,
    top left;
  background-repeat:
    no-repeat,
    no-repeat,
    repeat;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  pointer-events: none;
}
.about__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

.about__badge {
  position: absolute;
  top: -25px;
  right: 0;
  width: 220px;
  height: 220px;
  background: url('images/catch-circle-red.png') no-repeat center/contain;
  color: #fff;
  z-index: 2;
}
.about__badge span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.about__badge strong {
  display: block;
  font-size: 1.5rem;
  margin-top: 6px;
  line-height: 1.4;
}

.about__head { text-align: center; margin-bottom: 56px; }
.about__eyebrow {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--ink);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.about__eyebrow .line {
  display: inline-block;
  width: 50px;
  height: 1px;
  background: var(--ink-soft);
}
.about__eyebrow .diamond {
  color: var(--gold-dark);
  font-size: 0.7rem;
  margin: 0 4px;
}
.about__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4rem);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.about__title .accent { color: var(--red); }
.about__lead {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 2;
}

/* 3 pillars - horizontal editorial layout */
.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 56px;
}
.about-pillar {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  padding: 28px 36px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--gold);
}
.about-pillar:nth-child(1) { border-left-color: var(--red); }
.about-pillar:nth-child(2) { border-left-color: var(--gold-dark); }
.about-pillar:nth-child(3) { border-left-color: var(--navy); }

.about-pillar__num {
  text-align: center;
  font-family: var(--serif);
  line-height: 1;
  padding-right: 36px;
  border-right: 1px solid var(--line);
}
.about-pillar__num-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.about-pillar__num-value {
  display: block;
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.about-pillar:nth-child(1) .about-pillar__num-value { color: var(--red); }
.about-pillar:nth-child(2) .about-pillar__num-value { color: var(--gold-dark); }
.about-pillar:nth-child(3) .about-pillar__num-value { color: var(--navy); }

.about-pillar__content {
  padding-left: 0;
}
.about-pillar__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}
.about-pillar__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: translateY(-50%) rotate(45deg);
}
.about-pillar:nth-child(1) .about-pillar__title::before { background: var(--red); }
.about-pillar:nth-child(2) .about-pillar__title::before { background: var(--gold-dark); }
.about-pillar:nth-child(3) .about-pillar__title::before { background: var(--navy); }

.about-pillar__body {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.9;
}

/* Info bar - 4 columns horizontal */
.about__info {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: 8px;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  box-shadow: 0 4px 14px rgba(13, 40, 67, 0.2);
}
.about__info-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 18px;
  border-right: 1px solid rgba(200, 167, 102, 0.3);
  gap: 8px;
}
.about__info-row:last-child { border-right: none; }
.about__info-label {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--gold-light);
  letter-spacing: 0.15em;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(200, 167, 102, 0.4);
  width: 100%;
}
.about__info-value {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
}


/* ==========================================================================
   ENTRY (出品者募集)
   ========================================================================== */
.entry {
  position: relative;
  padding: 90px 0 80px;
  background-color: var(--cream-2);
  background-image:
    url('images/bg-washi-gold-brush-left.png'),
    url('images/bg-washi-gold-brush-right.png'),
    url('images/bg-washi-gold-brush.jpg');
  background-size:
    560px auto,
    520px auto,
    auto;
  background-position:
    top left,
    bottom right,
    top left;
  background-repeat:
    no-repeat,
    no-repeat,
    repeat;
  overflow: hidden;
}
.entry::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  pointer-events: none;
}
.entry__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

.entry__badge {
  position: absolute;
  top: -50px;
  right: 10px;
  width: 220px;
  height: 220px;
  background: url('images/catch-circle-red.png') no-repeat center/contain;
  color: #fff;
  z-index: 4;
}
.entry__badge span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.entry__badge strong {
  display: block;
  font-size: 1.55rem;
  margin-bottom: 4px;
  line-height: 1.3;
}

.entry__head { text-align: center; margin-bottom: 40px; max-width: 880px; margin-left: auto; margin-right: auto; }
.entry__eyebrow {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--ink);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.entry__eyebrow .line {
  display: inline-block;
  width: 50px;
  height: 1px;
  background: var(--ink-soft);
}
.entry__eyebrow .diamond {
  color: var(--gold-dark);
  font-size: 0.7rem;
  margin: 0 4px;
}
.entry__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4rem);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.entry__title .accent { color: var(--red); }
.entry__logo {
  display: block;
  margin: 18px auto 22px;
  max-width: 320px;
  width: 60%;
  height: auto;
}
.entry__lead {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 2;
}

/* 募集期間ブロック */
.entry__period {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 880px;
}
.entry__period-label {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.2em;
  color: var(--ink);
  margin-bottom: 22px;
}
.entry__period-label .diamond {
  color: var(--gold-dark);
  font-size: 0.9rem;
  margin: 0 12px;
}
/* 募集部門ラベル（募集期間ラベルと同じ見た目／部門一覧の上で中央寄せ） */
.entry__cat-label { text-align: center; }

.entry__period-cards {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: stretch;
}

.period-card {
  background: #fff;
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 24px 20px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}
.period-card--end {
  border-color: var(--red);
}
.period-card__tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-dark);
  color: #fff;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  padding: 4px 18px;
  border-radius: 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.period-card--end .period-card__tag {
  background: var(--red);
}
.period-card__year {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  margin-bottom: 6px;
  margin-top: 6px;
}
.period-card--end .period-card__year {
  color: var(--red);
}
.period-card__date {
  font-family: var(--serif);
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  line-height: 1;
  margin-bottom: 8px;
}
.period-card__month,
.period-card__day {
  font-size: 3.6rem;
  letter-spacing: -0.02em;
}
.period-card__sep {
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--gold-dark);
}
.period-card--end .period-card__sep {
  color: var(--red);
}
.period-card__dow {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--ink);
  padding-top: 8px;
  border-top: 1px dashed var(--line);
  width: 80%;
}

/* Arrow between cards */
.period-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.period-arrow__line {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--gold) 0%, var(--gold-dark) 50%, var(--red) 100%);
  position: relative;
}
.period-arrow__head {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--red));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* 対局2日間メニュー提供スケジュール */
.entry__schedule {
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  padding: 28px 32px;
  max-width: 880px;
  margin: 0 auto 40px;
  text-align: center;
}
.entry__schedule-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 14px;
}
.entry__schedule-title .diamond {
  color: var(--gold-dark);
  font-size: 0.7rem;
  margin: 0 8px;
}
.entry__schedule-lead {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 22px;
}
.entry__schedule-lead strong {
  color: var(--red);
  font-weight: 800;
}
.entry__schedule-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.entry-sched {
  background: var(--navy);
  color: #fff;
  border-radius: 6px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.entry-sched__time {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  line-height: 1;
}
.entry-sched__menu {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

/* 3カテゴリカード */
.entry__categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}
.entry-cat {
  background: #fff;
  border-radius: 8px;
  padding: 30px 22px 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  border-top: 4px solid;
}
.entry-cat--red { border-top-color: var(--red); }
.entry-cat--gold { border-top-color: var(--gold-dark); }
.entry-cat--navy { border-top-color: var(--navy); }
.entry-cat__num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.entry-cat--red .entry-cat__num { background: var(--red); }
.entry-cat--gold .entry-cat__num { background: var(--gold-dark); }
.entry-cat--navy .entry-cat__num { background: var(--navy); }
.entry-cat__icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.entry-cat__icon svg,
.entry-cat__icon .icon-img { width: 80px; height: 80px; }
.entry-cat__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.entry-cat--red .entry-cat__title { color: var(--red); }
.entry-cat--gold .entry-cat__title { color: var(--gold-dark); }
.entry-cat--navy .entry-cat__title { color: var(--navy); }
.entry-cat__desc {
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 12px;
}
.entry-cat__example {
  font-size: 0.78rem;
  color: var(--ink-soft);
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}

/* 応募条件 */
.entry__req {
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  padding: 28px 40px;
  max-width: 1080px;
  margin: 0 auto 40px;
}
.entry__req-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin-bottom: 24px;
}
.entry__req-title .diamond {
  color: var(--gold-dark);
  font-size: 0.85rem;
  margin: 0 10px;
}
.entry__req-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
}
.entry__req-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink);
}
.entry__req-note {
  display: block;
  margin-top: 3px;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.entry__req-list .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 3px;
}

/* CTA ボタン群 */
.entry__cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.entry__cta-primary,
.entry__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 32px;
  border-radius: 6px;
  font-family: var(--serif);
  transition: transform 0.15s, box-shadow 0.15s;
  text-align: left;
}
.entry__cta-primary {
  background: linear-gradient(180deg, #c93530 0%, #a01a22 100%);
  color: #fff;
  box-shadow: 0 4px 0 #6e1218;
  min-width: 340px;
}
.entry__cta-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 0 #6e1218; }
.entry__cta-secondary {
  background: #fff;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  min-width: 260px;
  font-weight: 700;
}
.entry__cta-secondary:hover { background: var(--navy); color: #fff; }
.entry__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.entry__cta-icon svg { width: 28px; height: 28px; }
.entry__cta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  flex: 1;
}
.entry__cta-text small {
  font-size: 0.72rem;
  opacity: 0.85;
  font-weight: 500;
  margin-bottom: 2px;
}
.entry__cta-text strong {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.entry__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  padding-bottom: 2px;
  flex-shrink: 0;
}


/* ==========================================================================
   SCHEDULE (企画スケジュール)
   ========================================================================== */
.schedule {
  position: relative;
  padding: 90px 0 80px;
  background-color: var(--cream-2);
  background-image:
    url('images/bg-washi-gold-brush-left.png'),
    url('images/bg-washi-gold-brush-right.png'),
    url('images/bg-washi-gold-brush.jpg');
  background-size:
    560px auto,
    520px auto,
    auto;
  background-position:
    top left,
    bottom right,
    top left;
  background-repeat:
    no-repeat,
    no-repeat,
    repeat;
  overflow: hidden;
}
.schedule::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}
.schedule__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

.schedule__badge {
  position: absolute;
  top: -25px;
  right: 0;
  width: 220px;
  height: 220px;
  background: url('images/catch-circle-red.png') no-repeat center/contain;
  color: #fff;
  z-index: 2;
}
.schedule__badge span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #fff;
}
.schedule__badge strong {
  display: block;
  font-size: 1.5rem;
  margin-top: 6px;
  line-height: 1.4;
}

.schedule__head { text-align: center; margin-bottom: 50px; }
.schedule__eyebrow {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--ink);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.schedule__eyebrow .line {
  display: inline-block;
  width: 50px;
  height: 1px;
  background: var(--ink-soft);
}
.schedule__eyebrow .diamond {
  color: var(--gold-dark);
  font-size: 0.7rem;
  margin: 0 4px;
}
.schedule__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  color: var(--ink);
}
.schedule__title .accent { color: var(--red); }
.schedule__lead {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.9;
}

/* タイムライン: 5 vertical "banner" panels */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
  align-items: stretch;
}
.timeline__step {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Header strip (top) */
.timeline__head {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 16px 8px 14px;
  text-align: center;
  position: relative;
  border-radius: 8px 8px 0 0;
}
.timeline__head::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.timeline__head--red {
  background: linear-gradient(180deg, #c93530 0%, #951b22 100%);
}
.timeline__head--gold {
  background: linear-gradient(180deg, #c8a766 0%, #a4843f 100%);
}
.timeline__head--navy {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
}
.timeline__head--feature {
  background: linear-gradient(180deg, #d83a3a 0%, #7e1419 100%);
}
.timeline__head--feature::after {
  background: linear-gradient(to right, transparent, var(--gold-light), transparent);
  height: 4px;
}

.timeline__head-label {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}
.timeline__head--feature .timeline__head-label {
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}
.timeline__head-month {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -0.02em;
}
.timeline__head-month span {
  font-size: 1rem;
  font-weight: 500;
  margin-left: 2px;
}

/* Body */
.timeline__body {
  padding: 22px 14px 24px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
}
.timeline__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  line-height: 1.4;
  color: var(--ink);
}
.timeline__title .venue {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--red);
  font-weight: 700;
  margin-top: 4px;
}
.timeline__date {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  padding: 10px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  width: 100%;
}
.timeline__date small {
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0 1px;
}
.timeline__desc {
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-top: auto;
}

.timeline__step--feature {
  box-shadow: 0 8px 30px rgba(216, 58, 58, 0.4);
}
.timeline__step--feature .timeline__title {
  color: var(--red);
}


/* ==========================================================================
   MENU
   ========================================================================== */
.menu {
  position: relative;
  padding: 80px 0;
  background-color: var(--cream-2);
  background-image:
    url('images/bg-washi-gold-brush-left.png'),
    url('images/bg-washi-gold-brush-right.png'),
    url('images/bg-washi-gold-brush.jpg');
  background-size:
    560px auto,
    520px auto,
    auto;
  background-position:
    top left,
    bottom right,
    top left;
  background-repeat:
    no-repeat,
    no-repeat,
    repeat;
  overflow: hidden;
}
.menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  pointer-events: none;
  z-index: 0;
}
.menu__inner {
  position: relative;
  z-index: 1;
}
.menu__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
}

.menu__badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 220px;
  background: url('images/catch-circle-red.png') no-repeat center/contain;
  color: #fff;
  z-index: 2;
}
.menu__badge span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.menu__badge strong {
  display: block;
  font-size: 1.5rem;
  margin-top: 6px;
  line-height: 1.4;
}

.menu__head { text-align: center; margin-bottom: 40px; }
.menu__eyebrow {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--ink);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.menu__eyebrow .line {
  display: inline-block;
  width: 50px;
  height: 1px;
  background: var(--ink-soft);
}
.menu__eyebrow .diamond {
  color: var(--gold-dark);
  font-size: 0.7rem;
  margin: 0 4px;
}
.menu__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.menu__title .accent { color: var(--red); }
.menu__lead {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.9;
}
.menu__lead .hl { color: var(--red); font-weight: 700; }

/* filter bar */
.filter {
  background: #fff;
  border-radius: 8px;
  padding: 18px 22px;
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.filter__label {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.filter__tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-soft);
  background: #fff;
  border: 1.5px solid #e0d5be;
  border-radius: 4px;
  transition: all 0.2s;
}
.tab__icon svg,
.tab__icon .icon-img { width: 20px; height: 20px; }
.tab__count {
  margin-left: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.7;
  letter-spacing: 0;
}
.tab.is-active .tab__count {
  opacity: 0.85;
  color: var(--gold-light);
}
.tab.is-active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.tab:hover:not(.is-active) {
  border-color: var(--gold);
  color: var(--ink);
}

.filter__group--area { min-width: 250px; }
.select {
  position: relative;
  background: #fff;
  border: 1.5px solid #e0d5be;
  border-radius: 4px;
  padding: 10px 32px 10px 36px;
}
.select__icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.select__icon svg,
.select__icon .icon-img { width: 22px; height: 22px; }
.select select {
  appearance: none;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  width: 100%;
  outline: none;
}
.select__arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-dark);
  pointer-events: none;
}

.filter__count {
  text-align: right;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.filter__count-icon svg,
.filter__count-icon .icon-img { width: 32px; height: 32px; }
.filter__count-num { font-size: 1rem; }
.filter__count-num strong {
  font-size: 2rem;
  color: var(--ink);
  margin: 0 2px;
}
.filter__count small {
  display: block;
  font-size: 0.7rem;
  color: var(--ink-soft);
  font-weight: 400;
}

/* menu cards grid */
.menu-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.card__badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 14px 6px 12px;
  letter-spacing: 0.05em;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.card__badge--red { background: var(--red); }
.card__badge--gold { background: #5a7d3c; }
.card__badge--navy { background: var(--navy); }

.card__photo {
  height: 180px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #d4c5a8;
  flex-shrink: 0;
}
.card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* fallback placeholder colors (画像未配置時に表示) */
.card__photo--01 {
  background-image:
    radial-gradient(circle at 50% 60%, #d8b56e 0, #8b5a2e 60%, #4a2f18 100%);
}
.card__photo--02 {
  background-image:
    radial-gradient(circle at 50% 50%, #f5e8d3 0, #c9a878 60%, #6b4a2a 100%);
}
.card__photo--03 {
  background-image:
    radial-gradient(circle at 50% 50%, #e8c98a 0, #b88240 60%, #5a3818 100%);
}
.card__photo--04 {
  background-image:
    radial-gradient(circle at 50% 40%, #f5f3df 0, #d6e0a0 60%, #7a8a4a 100%);
}
.card__photo--05 {
  background-image:
    radial-gradient(circle at 50% 55%, #d8a05c 0, #8b4a1e 60%, #3d1f0c 100%);
}
.card__photo--06 {
  background-image:
    radial-gradient(circle at 50% 60%, #f9e8c0 0, #d4b078 50%, #6b4528 100%);
}
.card__photo--07 {
  background-image:
    radial-gradient(circle at 50% 50%, #c5d8a8 0, #6f9152 60%, #2e4a1c 100%);
}
.card__photo--08 {
  background-image:
    radial-gradient(circle at 50% 50%, #e8d4a0 0, #a8804a 60%, #5a3a1c 100%);
}
.card__num {
  position: absolute;
  left: 16px;
  top: 158px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.card__num::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(255,255,255,0.65);
  pointer-events: none;
}
.card__num i {
  display: inline-block;
  transform: rotate(-45deg);
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.15rem;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.02em;
}

.card__body {
  padding: 28px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--ink);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.card__desc {
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-align: left;
  line-height: 1.7;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}

/* 価格表示 */
.card__price {
  text-align: center;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.card__price-value {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--red);
  letter-spacing: -0.02em;
  line-height: 1;
}
.card__price-tax {
  font-size: 0.72rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.card__store {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}
.card__store-icon svg,
.card__store-icon .icon-img { width: 22px; height: 22px; }

/* 店舗詳細情報リスト */
.card__info {
  margin-bottom: 16px;
}
.card__info-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 8px;
  font-size: 0.78rem;
  line-height: 1.5;
  padding: 5px 0;
  align-items: start;
}
.card__info-label {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 2px 0;
  border-right: 1px solid var(--line);
}
.card__info-value {
  color: var(--ink);
  word-break: break-all;
}

/* アクション (地図 + 投票) - 縦並び */
.card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 4px;
}
.card__map {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  background: #fff;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 4px;
  letter-spacing: 0.06em;
  transition: all 0.15s;
}
.card__map:hover {
  background: var(--navy);
  color: #fff;
}
.card__map-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.card__map-icon img {
  width: 20px;
  height: 20px;
}

/* 投票ボタン (vote) */
.card__vote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  background: linear-gradient(180deg, #c93530 0%, #a01a22 100%);
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  border-radius: 4px;
  box-shadow: 0 3px 0 rgba(110, 18, 24, 0.6);
  transition: transform 0.15s, box-shadow 0.15s;
}
.card__vote:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 0 rgba(110, 18, 24, 0.6);
}
.card__vote-icon {
  font-size: 1.1rem;
  line-height: 1;
}
.card__vote-text {
  letter-spacing: 0.12em;
}

/* フィルタ非表示 */
.card.is-hidden { display: none; }

/* bottom CTA row */
.menu__cta-row {
  display: block;
}
.menu__cta-map {
  background: var(--cream-3);
  border-radius: 6px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.menu__cta-icon svg,
.menu__cta-icon .icon-img { width: 44px; height: 44px; }
.menu__cta-text { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.menu__cta-text strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
}
.menu__cta-text small {
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.menu__cta-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.menu__cta-stamp {
  background: linear-gradient(180deg, #1c1c1c 0%, #060606 100%);
  border-radius: 6px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.menu__cta-stamp::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 30%, rgba(200, 167, 102, 0.3) 0, transparent 30%),
    radial-gradient(circle at 10% 80%, rgba(200, 167, 102, 0.2) 0, transparent 25%);
}
.menu__cta-stamp .menu__cta-text {
  position: relative;
  text-align: center;
}
.menu__cta-stamp .menu__cta-text small {
  color: #d6cdb8;
  font-size: 0.85rem;
}
.menu__cta-stamp .menu__cta-text strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
}
.menu__cta-stamp .menu__cta-arrow {
  background: #fff;
  color: var(--navy);
  position: relative;
}


/* ==========================================================================
   ADMIN (管理画面)
   ========================================================================== */
.page-admin {
  background: #f4f6f9;
  font-family: var(--sans);
  color: #1f2937;
  min-height: 100vh;
}
.page-admin .admin-btn,
.page-admin button,
.page-admin input,
.page-admin select {
  font-family: var(--sans);
}

/* Login */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.admin-login__card {
  background: #fff;
  border-radius: 10px;
  padding: 40px 32px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 10px 30px rgba(13, 40, 67, 0.12);
  text-align: center;
}
.admin-login__logo {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: 0.12em;
  color: var(--red);
  line-height: 1.1;
}
.admin-login__logo span {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  color: var(--navy);
}
.admin-login__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: #0d2843;
  margin: 0 0 6px;
}
.admin-login__sub {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0 0 24px;
}
.admin-login__form { text-align: left; }
.admin-login__error {
  margin-top: 12px;
  color: #b8252c;
  font-size: 0.85rem;
  text-align: center;
}

.admin-field {
  margin-bottom: 16px;
}
.admin-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #374151;
}
.admin-field input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.admin-field input:focus {
  outline: none;
  border-color: #0d2843;
  box-shadow: 0 0 0 3px rgba(13, 40, 67, 0.1);
}

/* Buttons */
.admin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 16px;
  background: #fff;
  border: 1.5px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  color: #374151;
  text-decoration: none;
}
.admin-btn:hover { background: #f9fafb; border-color: #9ca3af; }
.admin-btn--primary {
  background: #0d2843;
  border-color: #0d2843;
  color: #fff;
}
.admin-btn--primary:hover { background: #1e3a5f; border-color: #1e3a5f; }
.admin-btn--success {
  background: #10b981;
  border-color: #10b981;
  color: #fff;
}
.admin-btn--success:hover { background: #059669; border-color: #059669; }
.admin-btn--danger {
  background: #ef4444;
  border-color: #ef4444;
  color: #fff;
}
.admin-btn--danger:hover { background: #dc2626; border-color: #dc2626; }
.admin-btn--ghost {
  background: transparent;
  border-color: #9ca3af;
}
.admin-btn--small {
  padding: 5px 12px;
  font-size: 0.78rem;
}
.admin-btn--block {
  width: 100%;
}

/* Dashboard Header */
.admin-header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.admin-header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  flex-wrap: wrap;
}
.admin-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #0d2843;
}
.admin-header__brand span {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}
.admin-header__brand-logo { color: var(--red); font-weight: 800; }
.admin-header__brand-logo + span {
  padding-left: 12px;
  border-left: 1.5px solid #d1d5db;
}
.admin-header__nav {
  display: flex;
  align-items: center;
  gap: 8px 16px;
  flex-wrap: wrap;
}
.admin-header__nav a {
  font-size: 0.88rem;
  color: #4b5563;
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 2px;
}
.admin-header__nav a:hover { color: #0d2843; }
/* ナビ内でボタン化されたリンクは通常リンクの余白指定を打ち消し、ボタンと同じ高さにする */
.admin-header__nav a.admin-btn { padding: 9px 16px; }
.admin-header__nav a.is-active {
  color: #0d2843;
  font-weight: 700;
  border-bottom: 2px solid var(--red);
}

/* Stats */
.admin-stats {
  max-width: 1400px;
  margin: 28px auto 0;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.admin-stat {
  background: #fff;
  border-radius: 8px;
  padding: 18px 20px;
  border-left: 4px solid #cbd5e1;
}
.admin-stat--pending { border-left-color: #f59e0b; }
.admin-stat--approved { border-left-color: #10b981; }
.admin-stat--rejected { border-left-color: #ef4444; }
.admin-stat__label {
  font-size: 0.78rem;
  color: #6b7280;
  margin: 0 0 4px;
  letter-spacing: 0.04em;
}
.admin-stat__value {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0d2843;
  margin: 0;
  line-height: 1;
}
.admin-stat__value small {
  font-size: 0.85rem;
  font-weight: 500;
  color: #6b7280;
  margin-left: 4px;
}

/* Controls */
.admin-controls {
  max-width: 1400px;
  margin: 22px auto 14px;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.admin-filters {
  display: inline-flex;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}
.admin-filter {
  background: transparent;
  border: none;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  border-right: 1px solid #e5e7eb;
  transition: all 0.15s;
}
.admin-filter:last-child { border-right: none; }
.admin-filter:hover { background: #f9fafb; color: #0d2843; }
.admin-filter.is-active { background: #0d2843; color: #fff; }
.admin-search input {
  padding: 8px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 0.88rem;
  min-width: 240px;
  background: #fff;
}
.admin-search input:focus {
  outline: none;
  border-color: #0d2843;
}
.admin-cat-select {
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 0.88rem;
  background: #fff;
  color: #1f2937;
  cursor: pointer;
}
.admin-cat-select:focus { outline: none; border-color: #0d2843; }

/* Table */
.admin-table-wrap {
  max-width: 1400px;
  margin: 0 auto 40px;
  padding: 0 28px;
  overflow-x: auto;
}
.admin-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  font-size: 0.88rem;
}
.admin-table th,
.admin-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid #f1f5f9;
}
.admin-table thead th {
  background: #f9fafb;
  color: #6b7280;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid #e5e7eb;
}
.admin-table tbody tr:hover { background: #f9fafb; }
.admin-empty {
  text-align: center;
  padding: 40px 0;
  color: #9ca3af;
}
.admin-thumb {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.admin-actions {
  white-space: nowrap;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

/* Status / Category badges */
.admin-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.admin-status--pending {
  background: #fef3c7;
  color: #92400e;
}
.admin-status--approved {
  background: #d1fae5;
  color: #065f46;
}
.admin-status--rejected {
  background: #fee2e2;
  color: #991b1b;
}
.admin-cat {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
}
.admin-cat--red { background: var(--red); }
.admin-cat--gold { background: #5a7d3c; }
.admin-cat--navy { background: var(--navy); }

/* Modal */
/* hidden 属性を最優先で尊重（display 指定による上書きを防ぐ） */
[hidden] { display: none !important; }

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.admin-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 40, 67, 0.55);
}
.admin-modal__panel {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 28px 32px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.admin-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  font-size: 1.2rem;
  color: #6b7280;
  cursor: pointer;
  border-radius: 4px;
}
.admin-modal__close:hover { background: #f3f4f6; color: #0d2843; }
.admin-modal__panel--wide { max-width: 680px; }

/* ---- 新規追加ボタン / コントロール右側 ---- */
.admin-controls__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---- 並べ替え列 ---- */
.admin-th-order { width: 56px; text-align: center; }
.admin-order { text-align: center; white-space: nowrap; }
.admin-order-btn {
  display: inline-block;
  width: 24px;
  height: 22px;
  line-height: 1;
  padding: 0;
  margin: 1px;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  color: #0d2843;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.15s;
}
.admin-order-btn:hover:not(:disabled) { background: #0d2843; color: #fff; border-color: #0d2843; }
.admin-order-btn:disabled { opacity: 0.3; cursor: default; }
.admin-order-na { color: #cbd5e1; }

/* ---- 編集ボタン ---- */
.admin-btn--edit {
  background: #fff;
  border-color: var(--gold-dark);
  color: var(--gold-dark);
}
.admin-btn--edit:hover { background: var(--gold-dark); color: #fff; border-color: var(--gold-dark); }
.admin-btn--delete { background: #fff; border-color: #ef4444; color: #ef4444; }
.admin-btn--delete:hover { background: #ef4444; color: #fff; border-color: #ef4444; }

/* ---- 編集 / 新規追加 フォーム ---- */
.admin-edit__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.3rem;
  color: #0d2843;
  margin: 0 0 18px;
  padding-right: 32px;
}
.admin-edit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
.admin-field--full { grid-column: 1 / -1; }
.admin-edit-form .admin-field { margin-bottom: 0; }
.admin-edit-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #374151;
}
.admin-edit-form input[type="text"],
.admin-edit-form input[type="number"],
.admin-edit-form select,
.admin-edit-form textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.92rem;
  background: #fff;
  transition: border-color 0.15s;
}
.admin-edit-form input:focus,
.admin-edit-form select:focus,
.admin-edit-form textarea:focus {
  outline: none;
  border-color: #0d2843;
  box-shadow: 0 0 0 3px rgba(13, 40, 67, 0.1);
}
.admin-edit-form textarea { resize: vertical; }
.admin-radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.admin-radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  margin-bottom: 0;
  cursor: pointer;
}
.admin-radio-row input { width: auto; }
.admin-edit__subhead {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.95rem;
  color: #0d2843;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 6px;
  margin-top: 6px;
}
.admin-edit__photo { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.admin-edit__photo img {
  max-width: 160px;
  max-height: 160px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}
.admin-edit__photo-note { color: #6b7280; font-size: 0.78rem; }
.admin-edit__hint { display: block; color: #6b7280; font-size: 0.78rem; margin-top: 4px; line-height: 1.6; }
.admin-edit__hint code {
  background: #f1f3f5;
  border-radius: 3px;
  padding: 1px 4px;
  font-size: 0.92em;
  color: #b8252c;
}
/* お知らせ管理 一覧 */
.admin-news-list { margin-bottom: 18px; max-height: 60vh; overflow-y: auto; }
.admin-news-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 4px;
  border-bottom: 1px solid #e5e7eb;
}
.admin-news-item__main { display: flex; align-items: center; gap: 10px; min-width: 0; flex: 1; }
.admin-news-item__date { font-size: 0.82rem; color: #6b7280; white-space: nowrap; }
.admin-news-item__title { font-weight: 600; color: #1f2937; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.admin-news-item__actions { display: flex; gap: 6px; flex: 0 0 auto; }
.admin-news-badge { font-size: 0.72rem; font-weight: 700; padding: 2px 8px; border-radius: 20px; white-space: nowrap; }
.admin-news-badge.is-on { background: #d1fae5; color: #065f46; }
.admin-news-badge.is-off { background: #f3f4f6; color: #6b7280; }

/* お知らせ本文エディター（簡易リッチテキスト） */
.rte { border: 1.5px solid #d1d5db; border-radius: 6px; overflow: hidden; }
.rte__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}
.rte__select { padding: 5px 8px; border: 1px solid #d1d5db; border-radius: 5px; font-size: 0.82rem; background: #fff; }
.rte__custom { display: inline-flex; align-items: center; cursor: pointer; font-size: 1rem; }
.rte__custom input[type="color"] { width: 26px; height: 24px; border: none; background: none; padding: 0; cursor: pointer; }
.rte__btn {
  padding: 4px 9px; border: 1px solid #d1d5db; border-radius: 5px;
  background: #fff; cursor: pointer; font-size: 0.82rem; color: #374151; line-height: 1.4;
}
.rte__btn:hover { background: #eef2f7; border-color: #9ca3af; }
.rte__btn--source { margin-left: auto; }
.rte__btn.is-active { background: #0d2843; border-color: #0d2843; color: #fff; }
.rte__area {
  min-height: 200px;
  max-height: 460px;
  overflow-y: auto;
  padding: 14px 16px;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #1f2937;
  outline: none;
}
.rte__area:focus { background: #fffdf7; }
.rte__area:empty::before { content: "本文を入力してください。"; color: #9ca3af; }
.rte__area a { color: #1d4ed8; text-decoration: underline; }
.rte__source {
  display: block;
  width: 100%;
  min-height: 200px;
  max-height: 460px;
  padding: 14px 16px;
  border: none;
  outline: none;
  resize: vertical;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
  line-height: 1.7;
  color: #1f2937;
  background: #f8fafc;
}

.admin-check-inline { display: flex; align-items: center; gap: 8px; font-size: 0.92rem; font-weight: 600; color: #374151; cursor: pointer; margin: 0; }
.admin-check-inline input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
}
.admin-mail-test { display: flex; gap: 8px; align-items: center; }
.admin-mail-test input { flex: 1; }
.admin-edit__error {
  color: #b8252c;
  font-size: 0.86rem;
  margin: 14px 0 0;
  text-align: right;
}
.admin-edit__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

/* ---- 投票結果 ---- */
.admin-votes__total {
  font-size: 0.95rem;
  color: #374151;
  margin: 0 0 18px;
}
.admin-votes__total strong {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--red);
  margin: 0 4px;
}
.admin-votes__rank {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}
.admin-votes__rank-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}
.admin-votes__rank-no {
  flex: 0 0 24px;
  height: 24px;
  border-radius: 50%;
  background: #0d2843;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-votes__rank-item:nth-child(1) .admin-votes__rank-no { background: var(--gold-dark); }
.admin-votes__rank-name {
  flex: 0 0 200px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1f2937;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-votes__rank-name small { display: block; color: #9ca3af; font-weight: 400; font-size: 0.74rem; }
.admin-votes__bar {
  flex: 1 1 auto;
  height: 14px;
  background: #f0f0f0;
  border-radius: 7px;
  overflow: hidden;
}
.admin-votes__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #b8252c, #d4565b);
  border-radius: 7px;
  transition: width 0.4s ease;
}
.admin-votes__rank-count {
  flex: 0 0 56px;
  text-align: right;
  font-weight: 700;
  color: #0d2843;
}
.admin-votes__rank-count small { font-weight: 400; font-size: 0.72rem; margin-left: 1px; }
.admin-votes__list-wrap { max-height: 260px; overflow-y: auto; border: 1px solid #eee; border-radius: 6px; }
.admin-votes__table { box-shadow: none; }
.admin-votes__table th { background: #f4f6f9; }

/* ---- 投票結果ページ (vote-results.html) ---- */
.vr-loading { text-align: center; padding: 80px 20px; color: #6b7280; }
.vr-wrap { max-width: 1100px; margin: 0 auto; padding: 28px 20px 60px; }
.vr-summary {
  background: #0d2843;
  color: #fff;
  border-radius: 12px;
  padding: 26px;
  text-align: center;
}
.vr-summary__label { font-size: 0.9rem; letter-spacing: 0.1em; opacity: 0.85; margin: 0; }
.vr-summary__value { font-family: var(--serif); font-weight: 800; font-size: 3rem; line-height: 1.1; margin: 4px 0; }
.vr-summary__value small { font-size: 1.1rem; margin-left: 6px; font-weight: 700; }
.vr-summary__note { font-size: 0.8rem; opacity: 0.8; margin: 0; }
.vr-heading {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: #0d2843;
  text-align: center;
  margin: 34px 0 14px;
}
.vr-heading .diamond { color: var(--gold-dark); font-size: 0.8em; margin: 0 6px; }
.vr-panel {
  background: #fff;
  border-radius: 10px;
  padding: 14px 22px;
  box-shadow: 0 4px 14px rgba(13, 40, 67, 0.06);
}
.vr-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.vr-cat {
  background: #fff;
  border-radius: 10px;
  padding: 0 18px 14px;
  box-shadow: 0 4px 14px rgba(13, 40, 67, 0.06);
  border-top: 4px solid #ccc;
}
.vr-cat--red { border-top-color: var(--red); }
.vr-cat--gold { border-top-color: var(--gold-dark); }
.vr-cat--navy { border-top-color: var(--navy); }
.vr-cat__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 0 10px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 4px;
}
.vr-cat__name { font-family: var(--serif); font-weight: 700; font-size: 1.05rem; color: #0d2843; }
.vr-cat__total { font-weight: 700; color: var(--red); }
.vr-cat__total small { font-size: 0.7rem; font-weight: 400; margin-left: 1px; color: #6b7280; }
.vr-cat .admin-votes__rank-name { flex: 1 1 0; }
.vr-cat .admin-votes__bar { flex: 0 0 50px; }
.vr-list-wrap { max-height: none; overflow: visible; border: none; border-radius: 0; }
.vr-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
}
.vr-pager__info { font-size: 0.85rem; color: #374151; }

/* 公開設定トグル */
.vr-settings { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.vr-toggle { display: inline-flex; align-items: center; gap: 12px; cursor: pointer; }
.vr-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.vr-toggle__track { position: relative; flex: 0 0 auto; width: 46px; height: 26px; background: #cbd5e1; border-radius: 13px; transition: background 0.2s; }
.vr-toggle__track::after { content: ''; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: transform 0.2s; box-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.vr-toggle input:checked + .vr-toggle__track { background: #10b981; }
.vr-toggle input:checked + .vr-toggle__track::after { transform: translateX(20px); }
.vr-toggle__text { font-size: 0.92rem; font-weight: 700; color: #1f2937; }
.vr-toggle__text small { display: block; font-weight: 400; font-size: 0.76rem; color: #6b7280; margin-top: 1px; }

/* 公開設定パネル内のトグルを横幅いっぱいにして、状態バッジを右端に寄せる */
.vr-settings .vr-toggle { width: 100%; }
.vr-status {
  margin-left: auto;
  flex: 0 0 auto;
  align-self: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 13px;
  border-radius: 999px;
  white-space: nowrap;
}
.vr-status::before { content: '●'; font-size: 0.6em; margin-right: 5px; vertical-align: 1px; }
.vr-status.is-on   { background: #d1fae5; color: #047857; }  /* 公開中・受付中 */
.vr-status.is-stop { background: #fee2e2; color: #b91c1c; }  /* 停止中 */
.vr-status.is-cs   { background: #fef3c7; color: #b45309; }  /* カミングスーン中 */
.vr-status.is-off  { background: #e5e7eb; color: #6b7280; }  /* 非公開 */
@media (max-width: 560px) {
  .vr-status { margin-left: 0; }
}

/* アンケート集計 */
.vr-survey { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.vr-survey__title { font-family: var(--serif); font-weight: 700; font-size: 0.98rem; color: #0d2843; margin: 0 0 12px; padding-bottom: 6px; border-bottom: 2px solid var(--gold); }
.vr-survey__empty { color: #9ca3af; font-size: 0.85rem; margin: 0; }
.vr-bar { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.vr-bar__label { flex: 0 0 40%; font-size: 0.82rem; color: #374151; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vr-bar__track { flex: 1 1 auto; height: 12px; background: #f0f0f0; border-radius: 6px; overflow: hidden; }
.vr-bar__track > span { display: block; height: 100%; background: linear-gradient(90deg, #0d2843, #3a5a7a); border-radius: 6px; }
.vr-bar__count { flex: 0 0 auto; font-weight: 700; font-size: 0.82rem; color: #0d2843; min-width: 20px; text-align: right; }

/* 投票一覧: CSVボタン行・コメント列 */
.vr-list-head { display: flex; justify-content: flex-end; margin-bottom: 10px; }
.vr-comment { max-width: 200px; white-space: normal; font-size: 0.78rem; color: #4b5563; }
.vr-email { font-size: 0.76rem; color: #4b5563; word-break: break-all; max-width: 170px; }
/* 投票一覧の表は少しコンパクトに */
.admin-votes__table th, .admin-votes__table td { font-size: 0.8rem; padding: 8px 9px; }

/* ハニーポット（bot対策・人間には不可視） */
.form-hp { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
@media (max-width: 768px) {
  .vr-cats { grid-template-columns: 1fr; }
  .vr-survey { grid-template-columns: 1fr; }
  .vr-summary__value { font-size: 2.4rem; }
}

/* ---- 公開向け 結果CTA / LP 投票結果セクション ---- */
.result__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(184, 37, 44, 0.3);
  transition: all 0.15s;
}
.result__cta-btn:hover { background: var(--red-dark); transform: translateY(-1px); }
.vr-vote-cta { text-align: center; margin-top: 28px; }

/* 順位リスト（写真＋商品名＋票数 / グラフなし） */
.result-rank { list-style: none; margin: 0; padding: 0; }
.result-rank__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 4px;
  border-bottom: 1px solid #eee;
}
.result-rank__item:last-child { border-bottom: none; }
.result-rank__no {
  flex: 0 0 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.result-rank__item:nth-child(1) .result-rank__no { background: var(--gold-dark); }
.result-rank__photo {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  background: #f0f0f0;
}
.result-rank__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.result-rank__name {
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 700;
  color: #1f2937;
  font-size: 0.95rem;
  line-height: 1.35;
}
.result-rank__name small { display: block; font-weight: 400; color: #9ca3af; font-size: 0.78rem; margin-top: 2px; }
.result-rank__count {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--red);
  white-space: nowrap;
}
.result-rank__count small { font-size: 0.72rem; font-weight: 400; color: #6b7280; margin-left: 2px; }
.vr-cat .result-rank__photo { flex-basis: 46px; width: 46px; height: 46px; }
.vr-cat .result-rank__count { font-size: 1.1rem; }
.vr-cat .result-rank__item { gap: 10px; }
/* 総合ランキング用カテゴリバッジ */
.result-rank__cat {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 1px 8px;
  border-radius: 4px;
  margin-right: 6px;
  color: #fff;
  vertical-align: middle;
}
.result-rank__cat--red { background: var(--red); }
.result-rank__cat--gold { background: var(--gold-dark); }
.result-rank__cat--navy { background: var(--navy); }

/* 総合ランキング：カード型 */
.result-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.result-cards .admin-empty { grid-column: 1 / -1; }
.result-note {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.8;
  padding: 28px 16px;
}
.result-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(13, 40, 67, 0.1);
  display: flex;
  flex-direction: column;
}
.result-card__media { position: relative; aspect-ratio: 4 / 3; background: #f0f0f0; }
.result-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.result-card__rank {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.result-card:nth-child(1) .result-card__rank { background: var(--gold-dark); }
.result-card:nth-child(2) .result-card__rank { background: #8c98a4; }
.result-card:nth-child(3) .result-card__rank { background: #b9794a; }
.result-card__body { padding: 12px 14px 14px; }
.result-card__body .result-rank__cat { margin-bottom: 6px; }
.result-card__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  color: #1f2937;
  margin: 0;
  line-height: 1.35;
}
.result-card__shop { font-size: 0.78rem; color: #9ca3af; margin: 3px 0 0; }
.result-card__count {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--red);
  margin: 8px 0 0;
}
.result-card__count small { font-size: 0.72rem; font-weight: 400; color: #6b7280; margin-left: 2px; }
@media (max-width: 768px) { .result-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .result-cards { grid-template-columns: 1fr; } }

.result {
  position: relative;
  padding: 90px 20px 80px;
  background-color: var(--cream-2);
  background-image:
    url('images/bg-washi-gold-brush-left.png'),
    url('images/bg-washi-gold-brush-right.png'),
    url('images/bg-washi-gold-brush.jpg');
  background-size:
    560px auto,
    520px auto,
    auto;
  background-position:
    top left,
    bottom right,
    top left;
  background-repeat:
    no-repeat,
    no-repeat,
    repeat;
  overflow: hidden;
}
.result::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  pointer-events: none;
}
.result__inner { max-width: 1040px; margin: 0 auto; position: relative; z-index: 1; }
.result__head { text-align: center; margin-bottom: 48px; }
.result__eyebrow {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--ink);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.result__eyebrow .line { display: inline-block; width: 50px; height: 1px; background: var(--ink-soft); }
.result__eyebrow .diamond { color: var(--gold-dark); font-size: 0.7rem; margin: 0 4px; }
.result__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4rem);
  letter-spacing: 0.08em;
  color: var(--ink);
  margin: 0 0 18px;
}
.result__title .accent { color: var(--red); }
.result__lead {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 2;
  margin: 0;
}
.result__panel { background: #fff; border-radius: 12px; padding: 14px 24px; box-shadow: 0 8px 24px rgba(13, 40, 67, 0.08); }
.result__total { text-align: center; margin: 18px 0 0; font-size: 0.95rem; color: var(--ink); }
.result__total strong { font-family: var(--serif); font-size: 1.5rem; color: var(--red); margin: 0 4px; }
.result__cta { text-align: center; margin-top: 24px; }
@media (max-width: 768px) {
  .result { padding: 52px 16px; }
}

.admin-detail__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.admin-detail__id {
  margin-left: auto;
  font-size: 0.78rem;
  color: #9ca3af;
}
.admin-detail__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 16px;
  color: #0d2843;
}
.admin-detail__photo {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 12px;
}
.admin-detail__price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--red);
  margin: 0 0 18px;
}
.admin-detail__price small {
  font-size: 0.7rem;
  color: #6b7280;
  font-weight: 500;
  margin-left: 4px;
}
.admin-detail__section {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f1f5f9;
}
.admin-detail__section:last-child { border-bottom: none; }
.admin-detail__section h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.admin-detail__section p {
  margin: 0;
  line-height: 1.7;
  color: #374151;
}
.admin-detail__list {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 6px 14px;
  margin: 0;
}
.admin-detail__list dt {
  font-weight: 600;
  color: #6b7280;
  font-size: 0.85rem;
}
.admin-detail__list dd {
  margin: 0;
  color: #1f2937;
  font-size: 0.92rem;
}
.admin-detail__actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .admin-table th, .admin-table td { padding: 8px 10px; font-size: 0.78rem; }
  .admin-thumb { width: 40px; height: 40px; }
  .admin-edit__grid { grid-template-columns: 1fr; }
}


/* ==========================================================================
   FORM PAGE (応募フォーム)
   ========================================================================== */
.page-form { background: var(--cream-2); }

.page-header {
  position: relative;
  padding: 60px 0 50px;
  background-color: var(--cream-2);
  background-image: url('images/bg-washi-gold-brush.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}
.page-header__inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
}
.page-header__back {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  letter-spacing: 0.08em;
  margin-top: 24px;
  margin-bottom: 20px;
  padding: 8px 18px;
  border: 1.5px solid var(--navy);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.85);
  transition: all 0.2s;
}
.page-header__back:hover { background: var(--navy); color: #fff; }
.page-header__eyebrow {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--ink);
  margin-bottom: 14px;
}
.page-header__eyebrow .diamond {
  color: var(--gold-dark);
  font-size: 0.7rem;
  margin: 0 10px;
}
.page-header__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.page-header__title .accent { color: var(--red); }
.page-header__title-sub {
  display: block;
  font-size: clamp(1.1rem, 2.8vw, 1.7rem);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.page-header__title-main {
  display: block;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  line-height: 1.1;
}
.page-header__lead {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.9;
}

.form-page {
  padding: 60px 20px 80px;
}
.form-page__inner {
  max-width: 880px;
  margin: 0 auto;
}

/* Form structure */
.form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.form-section {
  background: #fff;
  border-radius: 10px;
  padding: 36px 40px 32px;
  border: none;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.06);
}
.form-section__legend {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 0 24px;
  width: 100%;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 28px;
}
.form-section__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.form-section__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ink);
  letter-spacing: 0.06em;
}
.form-section__sub {
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  margin-left: auto;
}

/* Form field */
.form-field {
  margin-bottom: 22px;
}
.form-field:last-child { margin-bottom: 0; }
.form-field__label {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.form-field__note {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 6px;
  letter-spacing: 0.03em;
}
.required {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 6px;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 22px;
}
.form-row .form-field { margin-bottom: 0; }

/* Inputs */
.form-input,
.form-textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: #fbf8f0;
  border: 1.5px solid #e0d5be;
  border-radius: 5px;
  padding: 12px 16px;
  transition: border-color 0.2s, background 0.2s;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold-dark);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(200, 167, 102, 0.2);
}
.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
}

.form-input-suffix {
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-input-suffix .form-input { flex: 1; }
.form-input-suffix__unit {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}

/* Radio group */
.form-radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.form-radio {
  cursor: pointer;
}
.form-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
}
.form-radio__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 12px;
  border: 2px solid #e0d5be;
  border-radius: 6px;
  background: #fbf8f0;
  transition: all 0.2s;
  text-align: center;
}
.form-radio__box img {
  width: 56px;
  height: 56px;
}
.form-radio__box span {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.form-radio input[type="radio"]:checked + .form-radio__box {
  border-color: var(--red);
  background: rgba(184, 37, 44, 0.05);
  box-shadow: 0 3px 8px rgba(184, 37, 44, 0.15);
}
.form-radio input[type="radio"]:focus + .form-radio__box {
  box-shadow: 0 0 0 3px rgba(200, 167, 102, 0.3);
}

/* File input */
.form-file {
  position: relative;
}
.form-file__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.form-file__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #fff;
  border: 1.5px dashed var(--gold-dark);
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  transition: all 0.2s;
}
.form-file__label:hover {
  background: rgba(200, 167, 102, 0.1);
  border-color: var(--gold);
}
.form-file__icon { font-size: 1.2rem; }
.form-file__text {
  display: inline-block;
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}

/* 画像プレビュー */
.form-file__preview {
  margin-top: 16px;
}
.form-file__preview img {
  display: block;
  max-width: 240px;
  max-height: 240px;
  width: auto;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(44, 36, 25, 0.14);
}
.form-file__remove {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  border: 1.5px solid var(--red);
  color: var(--red);
  border-radius: 6px;
  padding: 7px 14px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}
.form-file__remove:hover { background: var(--red); color: #fff; }

/* 応募完了モーダル */
.form-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.form-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 40, 67, 0.55);
}
.form-modal__panel {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 44px 32px 34px;
  width: 100%;
  max-width: 440px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(13, 40, 67, 0.32);
  animation: formModalPop 0.3s ease;
}
@keyframes formModalPop {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.form-modal__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-modal__icon--vote { background: var(--red); }

/* 投票フォーム: メニュー未選択の案内 */
.vote-notice {
  background: #fff;
  border: 1.5px dashed var(--gold-dark);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.8;
}
.vote-notice a { color: var(--red); font-weight: 700; }
.form-modal__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
  margin: 0 0 12px;
}
.form-modal__lead {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0 0 28px;
}
.form-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 8px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  transition: all 0.15s;
}
.form-modal__btn:hover { background: var(--cream-2); }
.form-modal__btn--primary {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.form-modal__btn--primary:hover { background: var(--navy-dark); }

/* Agreement section */
.form-section--agree {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--gold);
}
.form-agree__intro {
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.7;
}
.form-agree__list {
  background: rgba(245, 236, 218, 0.5);
  border-radius: 6px;
  padding: 18px 22px;
  list-style: none;
  margin-bottom: 16px;
}
.form-agree__list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 6px;
}
.form-agree__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
}
.form-agree__note {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-top: 2px;
}
.form-agree__link {
  font-size: 0.92rem;
  margin-bottom: 22px;
}
.form-agree__link a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 16px 20px;
  background: rgba(184, 37, 44, 0.05);
  border: 1.5px solid var(--red);
  border-radius: 6px;
  transition: background 0.2s;
}
.form-checkbox:hover { background: rgba(184, 37, 44, 0.1); }
.form-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}
.form-checkbox__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 2px solid var(--red);
  border-radius: 4px;
  background: #fff;
  flex-shrink: 0;
  position: relative;
}
.form-checkbox input[type="checkbox"]:checked + .form-checkbox__mark::after {
  content: "✓";
  color: var(--red);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
}
.form-checkbox__text {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.6;
}
.form-checkbox__text strong { color: var(--red); }

/* Submit button */
.form-actions {
  text-align: center;
  padding-top: 12px;
}
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(180deg, #c93530 0%, #a01a22 100%);
  color: #fff;
  padding: 20px 50px;
  border: none;
  border-radius: 6px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 0 4px 0 #6e1218;
  transition: transform 0.15s, box-shadow 0.15s;
  min-width: 360px;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #6e1218;
}
.form-submit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}
.form-submit__icon img { width: 32px; height: 32px; }
.form-submit__text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  text-align: left;
}
.form-submit__text small {
  font-size: 0.72rem;
  opacity: 0.85;
  font-weight: 500;
  margin-bottom: 2px;
}
.form-submit__text strong {
  font-size: 1.3rem;
  font-weight: 800;
}
.form-submit__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
  padding-bottom: 2px;
}
.form-actions__note {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* 投票対象メニュー表示 */
.vote-target {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: center;
  background: rgba(245, 236, 218, 0.4);
  border-radius: 8px;
  padding: 18px;
}
.vote-target__photo {
  position: relative;
  height: 180px;
  border-radius: 6px;
  overflow: hidden;
}
.vote-target__photo .card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vote-target__num {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 36px;
  height: 36px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.vote-target__num i {
  display: inline-block;
  transform: rotate(-45deg);
  font-family: var(--serif);
  font-weight: 800;
  font-size: 0.95rem;
  font-style: normal;
}
.vote-target__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vote-target__category {
  position: static;
  top: auto;
  left: auto;
  display: inline-block;
  width: fit-content;
  padding: 4px 14px 4px 12px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.78rem;
  color: #fff;
  letter-spacing: 0.05em;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.vote-target__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin: 0;
}
.vote-target__store {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.vote-target__price {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--red);
}
.vote-target__price small {
  font-size: 0.7rem;
  color: var(--ink-soft);
  font-weight: 500;
  margin-left: 4px;
}
.vote-target__change {
  font-size: 0.85rem;
  color: var(--navy);
  text-decoration: underline;
  margin-top: 4px;
}
.vote-target__change:hover { color: var(--red); }

/* ラジオ横並び（line） */
.form-radio-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.form-radio-line__item {
  flex: 1;
  min-width: 140px;
  cursor: pointer;
  position: relative;
}
.form-radio-line__item input[type="radio"] {
  position: absolute;
  opacity: 0;
}
.form-radio-line__item span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  background: #fbf8f0;
  border: 1.5px solid #e0d5be;
  border-radius: 4px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  transition: all 0.2s;
  text-align: center;
}
.form-radio-line__item input[type="radio"]:checked + span {
  background: rgba(184, 37, 44, 0.06);
  border-color: var(--red);
  color: var(--red);
}

/* チェックボックス グループ（横並び） */
.form-checkgroup {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.form-checkgroup__item {
  cursor: pointer;
  position: relative;
}
.form-checkgroup__item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}
.form-checkgroup__item span {
  display: inline-block;
  padding: 10px 18px;
  background: #fbf8f0;
  border: 1.5px solid #e0d5be;
  border-radius: 30px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  transition: all 0.2s;
}
.form-checkgroup__item input[type="checkbox"]:checked + span {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
}

/* 投票ボタン（送信） */
.form-submit--vote {
  background: linear-gradient(180deg, #c93530 0%, #a01a22 100%);
}
.form-submit--vote .form-submit__icon {
  font-size: 1.6rem;
  color: #fff;
  width: auto;
}

/* セレクトボックスのアイコン */
select.form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path fill='%23a4843f' d='M2 4l4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: linear-gradient(180deg, #1c1c1c 0%, #060606 100%);
  color: #fff;
  padding: 60px 20px 0;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right,
    transparent 0%,
    var(--gold) 20%,
    var(--gold-light) 50%,
    var(--gold) 80%,
    transparent 100%);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer__brand {
  text-align: left;
}
.footer__brand-logo {
  width: 240px;
  height: auto;
  display: block;
}

.footer__cols {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr;
  gap: 40px;
}
/* メニュー用リンクリスト */
.footer__list--nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #d6cdb8;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.footer__list--nav a::before {
  content: "›";
  color: var(--gold);
  font-weight: 800;
}
.footer__list--nav a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}
.footer__col-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(200, 167, 102, 0.3);
}
.footer__list {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #d6cdb8;
}
.footer__list li { margin-bottom: 8px; }
.footer__list li.footer__host { white-space: nowrap; }
.footer__list li.footer__contact-gap { margin-top: 16px; }
.footer__list li a { color: inherit; text-decoration: none; }
.footer__list li a:hover { text-decoration: underline; }
.footer__list li small {
  font-size: 0.78rem;
  color: #a89e89;
  margin-left: 4px;
}
.footer__list--links a {
  color: #d6cdb8;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer__list--links a::before {
  content: "›";
  color: var(--gold);
  font-weight: 700;
}
.footer__list--links a:hover { color: var(--gold-light); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 22px;
  font-size: 0.78rem;
  color: #a89e89;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__copy { letter-spacing: 0.04em; }
.footer__credit { letter-spacing: 0.04em; }


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
/* 中間サイズ: 縦テキストとタイトルが衝突しないよう調整 */
@media (max-width: 1280px) and (min-width: 1025px) {
  .hero__vertical-img { height: 480px; left: 20px; top: 30px; }
  .hero__title-wrap { width: 55%; max-width: 620px; }
}

@media (max-width: 1024px) {
  /* PC用ナビは非表示（ハンバーガー使用） */
  .nav-pc { display: none; }

  /* バッジをタブレット用に縮小 */
  .about__badge, .entry__badge, .schedule__badge, .menu__badge {
    width: 150px; height: 150px;
  }
  .about__badge span, .entry__badge span, .schedule__badge span, .menu__badge span {
    font-size: 0.72rem;
  }
  .about__badge strong, .entry__badge strong, .schedule__badge strong, .menu__badge strong {
    font-size: 1.05rem;
  }

  .hero__vertical-img { height: 500px; top: 30px; left: 20px; }
  .hero__deco-arc { width: 280px; }
  .hero__date-img { width: 280px; bottom: 60px; right: 0; }
  .overview__list { grid-template-columns: repeat(2, 1fr); }
  .overview__row:nth-child(2) { border-right: none; }
  .overview__row:nth-child(1),
  .overview__row:nth-child(2) { border-bottom: 1px dashed var(--line); padding-bottom: 20px; }
  .overview__row:nth-child(3),
  .overview__row:nth-child(4) { padding-top: 20px; }

  .steps { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .step { margin: 0; }
  .step:not(:last-child)::after { display: none; }

  .campaign__foot { grid-template-columns: 1fr; text-align: center; }
  .campaign__foot-steps { flex-wrap: wrap; }

  .menu-list { grid-template-columns: repeat(2, 1fr); }
  .filter { grid-template-columns: 1fr; }
  .menu__cta-row { grid-template-columns: 1fr; }

  .about-pillar { grid-template-columns: 90px 1fr; gap: 24px; padding: 22px 24px; }
  .about-pillar__num { padding-right: 24px; }
  .about-pillar__num-value { font-size: 2.6rem; }
  .about__info { grid-template-columns: repeat(3, 1fr); }
  .about__badge { width: 130px; height: 130px; top: -10px; right: 10px; }

  .entry__schedule-list { grid-template-columns: 1fr; }
  .entry__categories { grid-template-columns: 1fr; gap: 16px; }
  .entry__period-cards { grid-template-columns: 1fr; gap: 0; }
  .period-arrow {
    transform: none;
    height: 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .period-arrow__line {
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold) 0%, var(--gold-dark) 50%, var(--red) 100%);
  }
  .period-arrow__head {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .period-card__month, .period-card__day { font-size: 2.8rem; }
  .entry__req-list { grid-template-columns: 1fr; }
  .entry__cta { flex-direction: column; align-items: stretch; }
  .entry__cta-primary, .entry__cta-secondary { min-width: 0; width: 100%; }
  .entry__badge { width: 130px; height: 130px; right: 10px; top: -10px; }
  .entry__period-from .md, .entry__period-to .md { font-size: 1.8rem; }

  .timeline { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .timeline__step--feature { transform: none; grid-column: auto; }
  .schedule__badge { width: 130px; height: 130px; top: -10px; right: 10px; }

  .footer__top { grid-template-columns: 1fr; gap: 30px; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer__col:first-child { grid-column: 1 / -1; }

  .form-section { padding: 28px 24px; }
  .form-section__legend { flex-wrap: wrap; gap: 10px; padding-bottom: 18px; margin-bottom: 22px; }
  .form-section__sub { margin-left: 0; width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .form-radio-group { grid-template-columns: 1fr; }
  .form-submit { min-width: 0; width: 100%; padding: 18px 24px; }
  .vote-target { grid-template-columns: 1fr; }
  .vote-target__photo { height: 220px; }
}

@media (max-width: 640px) {
  /* HERO */
  .hero { min-height: 480px; }
  .hero__side { width: 16%; }
  .hero__deco-arc { width: 120px; }
  .hero__vertical-img { height: 150px; top: 22px; left: 12px; }
  .hero__center {
    padding-top: 18px;
    padding-right: 14px;
    justify-content: flex-end;
  }
  .hero__title-wrap { width: 72%; max-width: 270px; }
  .hero__date-img { width: 160px; top: 300px; bottom: auto; right: 10px; }
  .hero__deco-brush-right { width: 200px; }

  /* TOP BANNER */
  .top-banner { padding: 6px 12px; }
  .top-banner__inner { font-size: 0.78rem; letter-spacing: 0.1em; }
  .top-banner__inner strong { font-size: 1.15rem; margin: 0 3px; }
  .top-banner__deco { font-size: 0.65rem; margin: 0 6px; }

  /* セクション共通余白 */
  .about, .entry, .schedule, .menu, .campaign { padding: 60px 0 50px; }

  /* ブラシ装飾をスマホ用に縮小 */
  .about, .schedule, .entry, .menu, .campaign {
    background-size: 280px auto, 260px auto, auto;
  }

  /* 赤丸バッジ - スマホはヘッダー上部に中央配置（テキストと被らないように） */
  .about__badge, .entry__badge, .schedule__badge, .menu__badge, .campaign__badge {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    top: auto;
    right: auto;
    left: auto;
  }
  .about__badge span, .entry__badge span, .schedule__badge span,
  .menu__badge span { font-size: 0.74rem; }
  .about__badge strong, .entry__badge strong, .schedule__badge strong,
  .menu__badge strong { font-size: 1.1rem; margin-top: 4px; margin-bottom: 4px; }

  /* セクションタイトル (h2) - スマホで縮小 */
  .about__title, .entry__title, .schedule__title, .menu__title, .campaign__title, .result__title {
    font-size: 1.7rem;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
    white-space: nowrap;
  }

  /* セクションのアイブロウ (◇付き) */
  .about__eyebrow, .entry__eyebrow, .schedule__eyebrow, .menu__eyebrow, .campaign__eyebrow, .result__eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    gap: 6px;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .about__eyebrow .line, .entry__eyebrow .line, .schedule__eyebrow .line,
  .menu__eyebrow .line, .campaign__eyebrow .line, .result__eyebrow .line { width: 14px; }
  .about__eyebrow .diamond, .entry__eyebrow .diamond, .schedule__eyebrow .diamond,
  .menu__eyebrow .diamond, .campaign__eyebrow .diamond, .result__eyebrow .diamond { margin: 0 2px; font-size: 0.62rem; }

  /* セクションリード文 - 中央寄せ、Japanese line-break改善 */
  .about__lead, .entry__lead, .schedule__lead, .menu__lead, .campaign__lead, .result__lead {
    font-size: 0.88rem;
    line-height: 1.85;
    text-align: center;
  }
  /* About / Entry / Stamp Rally / Menu リード文は左寄せ */
  .about__lead, .entry__lead, .campaign__lead, .menu__lead { text-align: left; }
  /* リード文の <br> による強制改行を無効化 */
  .about__lead br, .entry__lead br, .schedule__lead br,
  .menu__lead br, .campaign__lead br { display: none; }
  /* About 3つの柱の本文 - 左寄せ、強制改行なし */
  .about-pillar__body {
    text-align: left;
  }
  /* スタンプラリーのステップ説明 */
  .step__desc {
    text-align: center;
    line-break: strict;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
  /* メニューカードの説明 - PCと同じ自然な折り返し（「、」で改行しない） */
  .card__desc {
    text-align: left;
  }

  /* ABOUT */
  .about-pillar { grid-template-columns: 1fr; gap: 16px; text-align: center; padding: 22px 20px; }
  .about-pillar__num { border-right: none; border-bottom: 1px solid var(--line); padding: 0 0 12px; }
  .about-pillar__num-value { font-size: 2.2rem; }
  .about-pillar__title { padding-left: 0; font-size: 1.2rem; }
  .about-pillar__title::before { display: none; }
  .about-pillar__body { font-size: 0.85rem; line-height: 1.8; }
  .about__info { grid-template-columns: 1fr; padding: 18px 20px; }
  .about__info-row { border-right: none; border-bottom: 1px solid rgba(200, 167, 102, 0.3); padding: 12px 0; }
  .about__info-row:last-child { border-bottom: none; }
  .about__info-label { font-size: 0.78rem; }
  .about__info-value { font-size: 0.88rem; }

  /* SCHEDULE - 2カラム */
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .timeline__step--feature { grid-column: auto; }
  .timeline__head { padding: 10px 6px 8px; }
  .timeline__head-label { font-size: 0.68rem; }
  .timeline__head-month { font-size: 1.6rem; }
  .timeline__body { padding: 14px 10px 16px; }
  .timeline__icon { width: 48px; height: 48px; margin-bottom: 10px; }
  .timeline__title { font-size: 0.92rem; margin-bottom: 10px; }
  .timeline__date { font-size: 0.88rem; padding: 6px 0; margin-bottom: 10px; }
  .timeline__date small { font-size: 0.7rem; }
  .timeline__desc { font-size: 0.72rem; line-height: 1.55; }

  /* ENTRY */
  .entry__period-label { font-size: 1.1rem; }
  .entry__period-label .diamond { font-size: 0.75rem; margin: 0 8px; }
  .period-card { padding: 20px 16px 18px; }
  .period-card__month, .period-card__day { font-size: 2.4rem; }
  .period-card__sep { font-size: 1.8rem; }
  .period-card__year { font-size: 0.85rem; }
  .period-card__dow { font-size: 0.85rem; }
  .period-card__tag { font-size: 0.7rem; padding: 3px 14px; }
  .entry-cat { padding: 24px 18px 20px; }
  .entry-cat__title { font-size: 1.3rem; }
  .entry-cat__desc { font-size: 0.85rem; }
  .entry-cat__example { font-size: 0.72rem; }
  .entry__req { padding: 22px 20px; }
  .entry__req-title { font-size: 1.15rem; }
  .entry__req-list li { font-size: 0.85rem; line-height: 1.65; }
  .entry__cta-primary, .entry__cta-secondary { padding: 14px 18px; gap: 12px; }
  .entry__cta-text strong { font-size: 1rem; }
  .entry__cta-text small { font-size: 0.68rem; }
  .entry__cta-icon { width: 32px; height: 32px; }
  .entry__cta-icon svg, .entry__cta-icon .icon-img { width: 24px; height: 24px; }

  /* MENU */
  .menu-list { grid-template-columns: 1fr; gap: 16px; }
  .filter { padding: 14px 16px; }
  .filter__label { font-size: 0.85rem; }
  .tab { padding: 6px 10px; font-size: 0.72rem; gap: 4px; }
  .tab__icon svg, .tab__icon .icon-img { width: 16px; height: 16px; }
  .tab__count { font-size: 0.68rem; margin-left: 2px; }
  .card__title { font-size: 1.2rem; }
  .card__desc { font-size: 0.82rem; }
  .card__price-value { font-size: 1.3rem; }
  .card__store { font-size: 0.9rem; }
  .card__info-row { font-size: 0.78rem; }
  .card__info-label { font-size: 0.7rem; }
  .card__map { font-size: 0.85rem; padding: 9px 10px; }
  .card__vote { font-size: 0.9rem; padding: 9px 10px; }

  /* STAMP RALLY */
  .campaign__body { gap: 24px; }
  .steps { grid-template-columns: 1fr; }
  .step { padding: 22px 18px 18px; }
  .step__title { font-size: 1.2rem; }
  .step__desc { font-size: 0.85rem; }
  .step__icon svg, .step__icon .icon-img { width: 70px; height: 70px; }
  .step__period { font-size: 0.75rem; }
  .overview__list { grid-template-columns: 1fr; padding: 14px; }
  .overview__row { border-right: none; border-bottom: 1px dashed var(--line); padding: 14px 10px; }
  .overview__row:last-child { border-bottom: none; }
  .overview__icon svg, .overview__icon .icon-img { width: 36px; height: 36px; }
  .overview__label { font-size: 0.88rem; }
  .overview__value { font-size: 0.85rem; }
  .campaign__foot { grid-template-columns: 1fr; padding: 16px; gap: 14px; text-align: center; }
  .campaign__foot-label { clip-path: none; padding: 10px 16px; }
  .campaign__foot-steps { display: flex; flex-direction: column; gap: 14px; align-items: center; }
  .campaign__foot-steps li { font-size: 0.85rem; justify-content: center; }
  .campaign__foot-cta { font-size: 0.95rem; padding: 14px 20px; width: 100%; justify-content: center; }

  /* FORM PAGES */
  .page-header { padding: 40px 0 36px; }
  .form-page { padding: 40px 16px 60px; }
  .form-section__title { font-size: 1.25rem; }
  .form-section__num { width: 42px; height: 42px; font-size: 1.05rem; }
  .form-field__label { font-size: 0.9rem; }
  .form-input, .form-textarea, select.form-input { font-size: 0.95rem; padding: 10px 14px; }

  /* FOOTER */
  .footer { padding: 40px 16px 0; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__bottom { justify-content: center; text-align: center; flex-direction: column; gap: 4px; }
  .footer__brand-logo { width: 200px; }
  .footer__col-title { font-size: 0.88rem; }
  .footer__list { font-size: 0.82rem; }
}
