:root {
  --bg: #070707;
  --bg2: #0b0b0b;
  --text: #f3f0ea;
  --muted: rgba(243, 240, 234, .72);
  --gold: #c9a86a;
  --gold2: #9b7b3a;
  --line: rgba(201, 168, 106, .35);
  --shadow: 0 20px 60px rgba(0, 0, 0, .55);
  --radius: 0;
  --max: 1100px;
  --header-height: 56px;
  --wp-admin-offset: 0px;
}
@media (max-width: 900px) {
  :root {
    --header-height: 42px;
  }
}
/* ===== Animation Base ===== */

/* スクロールで現れる共通クラス */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .85s cubic-bezier(.22,1,.36,1), transform .85s cubic-bezier(.22,1,.36,1);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up[data-delay="1"] { transition-delay: .1s; }
.fade-up[data-delay="2"] { transition-delay: .22s; }
.fade-up[data-delay="3"] { transition-delay: .34s; }
.fade-up[data-delay="4"] { transition-delay: .46s; }
.fade-up[data-delay="5"] { transition-delay: .58s; }
.fade-up[data-delay="6"] { transition-delay: .70s; }

/* dividerのラインが伸びる */
.divider {
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .9s cubic-bezier(.22,1,.36,1) .35s;
}
.divider.is-visible {
  transform: scaleX(1);
}

/* ヒーロー専用（ページ読み込み時） */
.hero-anim {
  opacity: 0;
  transform: translateY(22px);
  animation: heroFadeUp .9s cubic-bezier(.22,1,.36,1) forwards;
}
.hero-anim.d1 { animation-delay: .35s; }
.hero-anim.d2 { animation-delay: .6s; }

.pill {
  opacity: 0;
  transform: translateY(10px);
  animation: heroFadeUp .7s cubic-bezier(.22,1,.36,1) forwards;
}
.pill:nth-child(1) { animation-delay: .85s; }
.pill:nth-child(2) { animation-delay: 1.0s; }
.pill:nth-child(3) { animation-delay: 1.15s; }

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Reset & Base ===== */
* {
  box-sizing: border-box;
}
html, body {
  min-height: 100%;   /* height: 100% だと html/body 両方にスクロールが発生し2重スクロールバーになるため min-height に変更 */
  width: 100%;
  /* 横スクロール（揺れ）を防止する重要な記述 */
  overflow-x: hidden;
  position: relative;
}
html {
  scroll-padding-top: calc(var(--header-height) + var(--wp-admin-offset) + 16px);
}
body {
  margin: 0;
  padding-top: var(--header-height);
  background: #000;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  letter-spacing: .04em;
  line-height: 1.8;
}
body.admin-bar {
  --wp-admin-offset: 32px;
}
@media (max-width: 782px) {
  body.admin-bar {
    --wp-admin-offset: 46px;
  }
}
/* メニュー展開時にスクロールを止めるクラス */
body.noscroll {
  overflow: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(var(--max), 92vw);
  margin: 0 auto;
}
/* ===== Header ===== */
header {
  position: fixed;
  top: var(--wp-admin-offset);
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(7, 7, 7, .55);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 0;
  font-family: "Noto Serif JP", serif;
  letter-spacing: .12em;
}
.brand .logo {
  font-weight: 600;
  font-size: 18px;
  max-width: 100px;
}
.brand .sub {
  font-size: 6px;
  color: var(--muted);
  letter-spacing: .2em;
  padding-left: 5px;
}
/* PC用メニューデフォルト */
.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  color: var(--muted);
}
/* WP wp_nav_menu の <li> を「箱なし」化：
   ・list-style の点を消す
   ・display:contents で li を擬似的に消し、内部の <a> が .menu の直接子として扱われるようにする
     → 既存の .menu a:nth-child(N) アニメーションがそのまま機能する */
.menu li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: contents;
}
.menu a {
  padding: 8px 10px;
  border-radius: 0;
  text-transform: uppercase;  /* WPメニューに小文字で入力しても大文字表示 */
  letter-spacing: .18em;
}
/* PCではメニュー項目に CSSクラス "mobile-only" を付けると非表示 */
@media (min-width: 901px) {
  .menu .mobile-only {
    display: none !important;
  }
}
.menu a:hover {
  color: var(--text);
  /*background: rgba(201, 168, 106, .08);*/
}
.cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cta .btn {
  gap: 6px;
}
.cta .btn .btn-icon {
  flex-shrink: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .02);
  color: var(--text);
  font-size: 13px;
  transition: .25s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(201, 168, 106, .35);
}
.btn.primary {
  background: linear-gradient(180deg, rgba(201, 168, 106, .22), rgba(201, 168, 106, .10));
  border-color: rgba(201, 168, 106, .45);
  color: var(--text);
}
/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
/*.hero::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .18) 55%, rgba(0, 0, 0, .75)), url("https://www.witz-jp.com/test/vip/img/shop_01.webp");
  background-size: cover;
  background-position: top 0 right -130px;
  filter: saturate(0.85) contrast(1.05);
  transform: scale(1.03);
}*/
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 500px at 30% 30%, rgba(201, 168, 106, .18), transparent 60%), linear-gradient(180deg, rgba(0, 0, 0, .0), rgba(0, 0, 0, .65));
  pointer-events: none;
}
.hero-inner {
  position: relative;
  padding: 68px 0 40px;
}
/* ▼▼▼ 動画用のスタイル（新規追加） ▼▼▼ */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.95) contrast(1.05) brightness(0.8);
}
@media (max-width: 900px) {
  .hero-video {
    /* 水平方向の位置を指定します。
      デフォルトは 50%（中央）です。
      数値を大きくするほど、動画の「右側」が画面の中心に来るようになる。
      例: 70% center, 80% center, または 'right center' など
    */
    object-position: 65% center;
  }
}
/* ▼▼▼ オーバーレイ（網掛け）の調整 ▼▼▼ */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  /* 動画の上に被せるグラデーション */
  background: radial-gradient(900px 500px at 30% 30%, rgba(201, 168, 106, .18), transparent 60%), linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
  pointer-events: none;
  z-index: 1; /* 動画より手前 */
}
/* ▼▼▼ コンテンツの重なり順を調整 ▼▼▼ */
.hero-inner {
  position: relative;
  padding: 30% 0 10%;
  z-index: 2;
}
@media (max-width: 900px) {
  .hero {
    min-height: 52vh;
  }
  .hero-inner {
    padding: 22% 0 8%;
  }
}
@media (max-width: 420px) {
  .hero-inner {
    padding: 18% 0 8%;
  }
  .hero-meta {
    margin-top: 18px;
    gap: 8px;
  }
  .pill {
    padding: 4px 10px;
    font-size: 10px;
  }
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(201, 168, 106, .92);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.kicker .line {
  width: 46px;
  height: 1px;
  background: rgba(201, 168, 106, .65);
}
h1 {
  margin: 18px 0 12px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  letter-spacing: .14em;
  line-height: 1.25;
  font-size: clamp(34px, 5vw, 60px);
  text-shadow: 0 20px 60px rgba(0, 0, 0, .6);
  max-width: 380px;
}
.lead {
  max-width: 640px;
  color: rgba(243, 240, 234, .86);
  font-size: clamp(14px, 1.6vw, 18px);
}
.hero-meta {
  margin-top: 28px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 11px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 999px;
  background: rgba(0, 0, 0, .28);
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(201, 168, 106, .65);
}
/* ===== Section base ===== */
section {
  padding: 44px 0 84px;
  background: radial-gradient(1200px 600px at 70% -10%, rgba(201, 168, 106, .12), transparent 55%), radial-gradient(900px 500px at 10% 10%, rgba(201, 168, 106, .08), transparent 55%), linear-gradient(180deg, var(--bg), var(--bg2));
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.section-title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  letter-spacing: .14em;
  font-size: clamp(18px, 2.8vw, 20px);
}
.section-sub {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 106, .55), transparent);
  margin: 16px 0 0;
}
/* ===== Concept ===== */
.concept {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}
.concept p {
  color: rgba(243, 240, 234, .86);
  margin: 0;
  font-family: 'Noto Serif JP', sans-serif;
}
.card {
  /*border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .02);
  border-radius: var(--radius);*/
  overflow: hidden;
  /*box-shadow: var(--shadow);*/
}
.card .img {
  aspect-ratio: 16/11;
  background: linear-gradient(180deg, rgba(0, 0, 0, .0), rgba(0, 0, 0, .55)), url("https://www.witz-jp.com/test/vip/img/shop_02.webp");
  background-size: cover;
  background-position: center;
}
/* Concept Slider */
.concept-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/11;
}
.concept-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.concept-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}
.concept-slide.active {
  opacity: 1;
}
.concept-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.concept-progress {
  display: flex;
  gap: 6px;
  padding: 10px 4px 0;
}
.concept-progress .progress-seg {
  flex: 1;
  height: 1px;
  background: rgba(201, 168, 106, .18);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.concept-progress .progress-seg .fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
  border-radius: 2px;
}
.concept-progress .progress-seg.done .fill {
  width: 100%;
}
.concept-progress .progress-seg.active .fill {
  animation: concept-progress-fill 4s linear forwards;
}
@keyframes concept-progress-fill {
  from { width: 0; }
  to { width: 100%; }
}
.card .body {
  padding: 8px 18px 0 0;
}
.mini {
  font-size: 12px;
  color: var(--muted);
}
/* ===== Cast ===== */
.grid-container, .cast {
  display: grid;
  gap: 0;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, 1fr);
  overflow-x: auto;
  grid-auto-columns: auto;
  scroll-snap-type: x mandatory;
}
.item, .c {
  scroll-snap-align: center;
  padding: 0;
  /*border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .02);*/
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  display: block;
  cursor: pointer;
  transition: opacity .3s;
}
a.c:hover {
  opacity: .85;
}
.item::after, .c::after {
  content: "";
  position: absolute;
  inset: 0;
  /*background: linear-gradient(180deg, rgba(0, 0, 0, .0), rgba(0, 0, 0, .52));*/
}
/* 画像設定 */
.c img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.c:hover img {
  transform: scale(1.05);
}
/* Top CAST: WP出力時もスマホでは2列の縦長カードで表示 */
#cast .cast {
  grid-auto-flow: row;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto;
  overflow-x: visible;
  scroll-snap-type: none;
}
#cast .c {
  height: auto;
  aspect-ratio: 3 / 4;
  scroll-snap-align: unset;
}
@media (min-width: 768px) {
  .grid-container, .cast {
    grid-auto-flow: row;
    /* auto-fit → auto-fill: キャストが少ない時に1枚が横一杯に伸びるのを防ぐ
       (auto-fit は空のトラックを潰して残りを引き伸ばす / auto-fill は空トラックを残す) */
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-template-rows: auto;
    overflow-x: visible;
    grid-auto-columns: auto;
  }
  .item, .c {
    height: 300px;
  }
  #cast .cast {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  #cast .c {
    height: 300px;
    aspect-ratio: auto;
  }
}
/* Scrollbar hiding */
.grid-container::-webkit-scrollbar, .cast::-webkit-scrollbar {
  display: none;
}
.grid-container, .cast {
  scrollbar-width: none;
}
/* ===== System / Price ===== */
#system {
  background: linear-gradient(180deg, #f5f0e6, #ede8dc);
  color: #1a1a1a;
}
#system .section-sub {
  color: rgba(26, 26, 26, .55);
}
#system .section-title {
  color: #1a1a1a;
}
#system .divider {
  background: linear-gradient(90deg, transparent, rgba(154, 120, 58, .5), transparent);
}
#system .price h3 {
  color: #1a1a1a;
}
#system .price .yen {
  color: #2a2a2a;
}
#system .price ul {
  color: rgba(26, 26, 26, .62);
}
/* ===== Price Table (index #system) ===== */
#system .price-table-wrap {
  max-width: 600px;
  margin: 0 auto;
}
#system .price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
#system .price-table .table-head {
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  letter-spacing: .2em;
  color: #9a783a;
  font-weight: 600;
  text-align: left;
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(154, 120, 58, .25);
}
#system .price-table th {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .1em;
  color: #1a1a1a;
  text-align: left;
  padding: 14px 0;
  width: 40%;
}
#system .price-table td {
  font-size: 14px;
  color: rgba(26, 26, 26, .55);
  padding: 14px 0;
  letter-spacing: .06em;
}
#system .price-table td.price-amount {
  text-align: right;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
  color: #2a2a2a;
  letter-spacing: .04em;
}
#system .price-table tbody tr {
  border-bottom: 1px solid rgba(154, 120, 58, .1);
}
#system .price-table tbody tr:last-child {
  border-bottom: none;
}
#system .tax-note {
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .2em;
  color: #9a783a;
  margin-top: 8px;
  padding: 16px 0;
  border-top: 1px solid rgba(154, 120, 58, .2);
  border-bottom: 1px solid rgba(154, 120, 58, .2);
}
#system .free-drink {
  max-width: 600px;
  margin: 40px auto 0;
  text-align: center;
}
#system .free-drink .free-drink-head {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  letter-spacing: .28em;
  color: #9a783a;
  margin: 0 0 12px;
  text-transform: uppercase;
}
#system .free-drink ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #1a1a1a;
  line-height: 2.2;
  letter-spacing: .08em;
}
#system .view-more-btn .view-more-text {
  color: #9a783a;
}
#system .view-more-btn .view-more-line {
  background: #9a783a;
}
@media (max-width: 500px) {
  #system .price-table th { font-size: 14px; }
  #system .price-table td.price-amount { font-size: 18px; }
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.price {
  padding: 18px;
  border-radius: var(--radius);
  /*border: 1px solid rgba(201, 168, 106, .18);
  background: linear-gradient(180deg, rgba(201, 168, 106, .08), rgba(255, 255, 255, .01));*/
}
.price h3 {
  margin: 0 0 10px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: .12em;
  font-size: 16px;
  font-weight: 600;
}
.price .yen {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  letter-spacing: .04em;
  color: rgba(243, 240, 234, .96);
}
.price ul {
  margin: 12px 0 0;
  padding: 0 0 0 18px;
  color: var(--muted);
  font-size: 13px;
}
/* ===== Gallery Slider ===== */
.gallery-slider {
  width: 100%;
  position: relative;
}
.gallery-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: gallery-scroll 36s linear infinite;
}
.gallery-track:hover {
  animation-play-state: paused;
}
.g-slide {
  width: 400px;
  height: 260px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
@media (max-width: 900px) {
  .g-slide {
    width: 260px;
    height: 200px;
  }
}
@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* ===== Access ===== */
.access {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .02);
  min-height: 360px;
}
.info {
  padding: 18px;
  border-radius: var(--radius);
  /*border: 1px solid rgba(201, 168, 106, .18);
  background: linear-gradient(180deg, rgba(201, 168, 106, .06), rgba(255, 255, 255, .01));*/
}
.info dl {
  margin: 0;
}
.info dt {
  color: rgba(201, 168, 106, .92);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-top: 12px;
}
.info dd {
  margin: 6px 0 0;
  color: rgba(243, 240, 234, .9);
}
.info .small {
  color: var(--muted);
  font-size: 13px;
}
/* ===== Reserve ===== */
.reserve {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
  align-items: start;
}
.form {
  padding: 18px;
  border-radius: var(--radius);
  /*border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .02);*/
}
label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin: 10px 0 6px;
}
input, textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 2pxpx;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .28);
  color: var(--text);
  outline: none;
  font-size: 14px;
}
input:focus, textarea:focus {
  border-color: rgba(201, 168, 106, .45);
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.form-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
/* ===== Form alert (当日予約案内) ===== */
.form-alert {
  padding: 14px 16px;
  margin: 0 0 18px;
  border: 1px solid rgba(201, 168, 106, .45);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(201, 168, 106, .12), rgba(201, 168, 106, .04));
}
.form-alert-body {
  min-width: 0;
}
.form-alert-title {
  margin: 0 0 2px;
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--text);
}
.form-alert-text {
  margin: 0 0 4px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.form-alert-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--gold);
  text-decoration: none;
  transition: color .25s;
}
.form-alert-tel:hover {
  color: #e8c882;
}
.form-alert-tel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201, 168, 106, .15);
  color: var(--gold);
  flex-shrink: 0;
}
.form-alert-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 8px 16px;
  background: #06C755;
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  border-radius: 4px;
  text-decoration: none;
  transition: background .25s, transform .25s;
}
.form-alert-line:hover {
  background: #05a847;
  transform: translateY(-1px);
}
.form-alert-line-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
@media (max-width: 420px) {
  .form-alert { padding: 12px 12px; }
  .form-alert-tel { font-size: 16px; }
  .form-alert-tel-icon { width: 24px; height: 24px; }
}

/* ===== Required badge ===== */
label .req {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 6px;
  font-size: 10px;
  letter-spacing: .08em;
  color: #fff;
  background: #c0392b;
  border-radius: 2px;
  vertical-align: middle;
}
/* ===== Radio group (VIP room) ===== */
.radio-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 8px 2px 4px;
}
.radio-group .radio-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
}
.radio-group .radio-item input[type="radio"] {
  width: auto;
  margin: 0;
  padding: 0;
  accent-color: var(--gold);
  cursor: pointer;
}
/* ===== Footer ===== */
footer {
  border-top: 1px solid rgba(255, 255, 255, .06);
  color: var(--muted);
  font-size: 13px;
    background: #000;
}

/* ===== フッター：シンプル中央揃え ===== */
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 52px 24px /*100px*/; /* 下はモバイルCTAの高さ分 */
  text-align: center;
}
.footer-logo-wrap img {
  width: 140px;
  opacity: 0.8;
  display: block;
}
.footer-address {
  font-style: normal;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.footer-address a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 0.2s, border-color 0.2s;
}
.footer-address a:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
  margin: 0;
}

.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px 0 90px;
}
/* ===== Floating Coupon Banner ===== */
.floating-coupon{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:55;
  transition:opacity .4s, transform .4s;
}
.floating-coupon.is-hidden{
  opacity:0;
  pointer-events:none;
  transform:translateY(10px);
}
.floating-coupon a{
  display:block;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 4px 20px rgba(0,0,0,.5);
  transition:transform .25s;
}
.floating-coupon a:hover{
  transform:scale(1.03);
}
.floating-coupon img{
  display:block;
  width:160px;
  height:auto;
}
.floating-coupon-close{
  position:absolute;
  top:-8px;right:-8px;
  width:24px;height:24px;
  border-radius:50%;
  background:rgba(0,0,0,.7);
  color:#fff;
  border:1px solid rgba(255,255,255,.2);
  font-size:14px;
  line-height:1;
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  z-index:1;
  transition:background .2s;
}
.floating-coupon-close:hover{
  background:rgba(0,0,0,.9);
}

/* ===== Mobile fixed actions ===== */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  background: rgba(7, 7, 7, .72);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: none;
  z-index: 60;
}
.mobile-cta .row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 10px;
  width: min(var(--max), 96vw);
  margin: 0 auto;
}
.mobile-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
}
.mobile-cta .btn-icon {
  flex-shrink: 0;
  opacity: .9;
}
.mobile-cta .btn span {
  white-space: nowrap;
}
/* ===== Hamburger & Drawer Styles ===== */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text);
  margin: 5px 0;
  transition: 0.3s;
}
/* ドロワー背景オーバーレイ */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.drawer-overlay.is-active {
  opacity: 0;
  visibility: visible;
}
@media (max-width: 900px) {
.drawer-overlay.is-active {
  opacity: 1;
  visibility: visible;
}
}
/* ===== Responsive ===== */
@media (max-width: 900px) {
  /* Hide standard CTA in Header */
  .cta {
    display: none;
  }
  /* Hamburger Visible */
  .hamburger {
    display: block;
    position: absolute;
    right: 0;
  }
  .hamburger.is-active span:nth-child(1) {
    transform: translate(0, 7px) rotate(45deg);
  }
  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active span:nth-child(3) {
    transform: translate(0, -7px) rotate(-45deg);
  }
  /* Mobile Drawer Menu */
  .menu {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: var(--wp-admin-offset);
    right: -100%;
    width: 70%;
    height: calc(100vh - var(--wp-admin-offset));
    background: rgba(7, 7, 7, 0.95);
    backdrop-filter: blur(10px);
    transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    padding: 20px;
    z-index: 90;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }
  .menu.is-active {
    right: 0;
  }
  .menu a {
    font-size: 16px;
    width: 100%;
    text-align: center;
    padding: 5px 0;
    /*border-bottom: 1px solid rgba(255,255,255,0.05);*/
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .menu.is-active a {
    opacity: 1;
    transform: translateY(0);
  }
  /* WPメニューでは <li><a></li> 構造のため li:nth-child を併記
     （フォールバックメニュー時の a:nth-child も併存させる） */
  .menu.is-active a:nth-child(1),
  .menu.is-active li:nth-child(1) a {
    transition-delay: 0.1s;
  }
  .menu.is-active a:nth-child(2),
  .menu.is-active li:nth-child(2) a {
    transition-delay: 0.15s;
  }
  .menu.is-active a:nth-child(3),
  .menu.is-active li:nth-child(3) a {
    transition-delay: 0.2s;
  }
  .menu.is-active a:nth-child(4),
  .menu.is-active li:nth-child(4) a {
    transition-delay: 0.25s;
  }
  .menu.is-active a:nth-child(5),
  .menu.is-active li:nth-child(5) a {
    transition-delay: 0.3s;
  }
  .menu.is-active a:nth-child(6),
  .menu.is-active li:nth-child(6) a {
    transition-delay: 0.35s;
  }
  .menu.is-active a:nth-child(7),
  .menu.is-active li:nth-child(7) a {
    transition-delay: 0.4s;
  }
  .menu.is-active a:nth-child(8),
  .menu.is-active li:nth-child(8) a {
    transition-delay: 0.45s;
  }
  .menu.is-active a:nth-child(9),
  .menu.is-active li:nth-child(9) a {
    transition-delay: 0.5s;
  }
  .menu.is-active a:nth-child(10),
  .menu.is-active li:nth-child(10) a {
    transition-delay: 0.55s;
  }
  /* Grid adjustments */
  .concept {
      grid-template-columns: 1fr;
  }
  .grid3 {
    grid-template-columns: 1fr;
  }
  .access {
    grid-template-columns: 1fr;
  }
  .reserve {
    grid-template-columns: 1fr;
  }
  .floating-coupon{
    bottom:80px;
    right:12px;
  }
  .floating-coupon img{
    width:120px;
  }
  .mobile-cta {
    display: block;
  }
  footer {
    padding-bottom: 0;
  }
  .footer-inner {
    padding-bottom: 120px; /* モバイルCTA分 */
  }
  .footer-address {
    font-size: 11px;
  }
}
/* GoogleMAP　モノクロ*/
.map iframe {
  /* グレースケール100% + 色反転92% + コントラスト調整 */
  filter: grayscale(100%) invert(100%) contrast(100%);
  mix-blend-mode: screen; /* 枠線を馴染ませる（任意） */
}
/* ===== Recruit Section with Bubbles ===== */
#recruit {
  position: relative;
  /* 背景色はお好みで調整してください */
  /* background: linear-gradient(180deg, var(--bg2), var(--bg)); */
  overflow: hidden; /* シャボン玉がセクション外にはみ出さないようにする */
}
/* 内容は泡より上 */
#recruit .container {
  position: relative;
  z-index: 2;
}
/* 泡レイヤー：下1/3だけ（高さは好みで微調整OK） */
#recruit .bubbleCanvas {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%; /* ←ここが「下1/3」 */
  min-height: 180px; /* 小さいセクションでも帯が潰れない保険 */
  max-height: 320px; /* 大きいセクションで帯がデカくなりすぎない */
  width: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: .55; /* 上品に馴染ませる */
}
.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: auto;
}
.recruit {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 168, 106, .18);
  background: linear-gradient(180deg, rgba(201, 168, 106, .08), rgba(255, 255, 255, .01));
}
.recruit h3 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  letter-spacing: .12em;
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 900px) {
  .grid2 {
    grid-template-columns: 1fr;
  }
}
/* ===== Instagram Section ===== */
#instagram{
  padding:80px 0;
}
.insta-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:4px;
}
.insta-item{
  display:block;
  aspect-ratio:1/1;
  overflow:hidden;
}
.insta-ph{
  width:100%;height:100%;
  background:
    linear-gradient(135deg,rgba(201,168,106,.08),rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.06);
  position:relative;
}
.insta-ph::after{
  content:'';
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:28px;height:28px;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(201,168,106,.25)' stroke-width='1.5'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Ccircle cx='12' cy='12' r='5'/%3E%3Ccircle cx='17.5' cy='6.5' r='1.5'/%3E%3C/svg%3E") no-repeat center/contain;
}
.insta-item:hover .insta-ph{
  background:rgba(201,168,106,.12);
}
@media(max-width:500px){
  .insta-grid{gap:2px;}
}

/* ===== Group Section ===== */
/* グリッドコンテナ設定 */
.group-list {
  display: grid;
  /* PC時は3列 (1fr 1fr 1fr) */
  grid-template-columns: repeat(3, 1fr);
  gap: 15px; /* ボタン同士の間隔 */
}
/* 個別の店舗ボタン設定 */
.group-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px 10px;
 /* background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);*/
  border-radius: var(--radius);
  transition: all 0.3s ease;
  text-decoration: none; /* リンクの下線を消す */
}
/* ホバー時の動き（明るく＆少し浮く） */
/*.group-item:hover {
  background: rgba(201, 168, 106, 0.12);
  border-color: rgba(201, 168, 106, 0.6);
  transform: translateY(-2px);
}*/
/* 地域名（上の小さい文字） */
.group-item .area {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}
/* 店舗名（下の大きい文字） */
.group-item .shop-name {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--text);
  font-weight: 500;
  border-top: solid 1px #333;
  width: 50%;
}
.group-item .shop-name::before {}
/* ▼ スマホ表示の設定（900px以下） */
@media (max-width: 900px) {
  .group-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .group-item {
    padding: 20px 5px; /* スマホ用に余白を調整 */
  }
  .group-item .shop-name {
    font-size: 13px; /* 少し文字を小さくして改行を防ぐ */
  }
}
/* ===== FAQ Section ===== */
.faq-list {
  max-width: 600px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
/* 質問部分 (summary) */
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 10px;
  cursor: pointer;
  list-style: none;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  transition: 0.3s;
}
.faq-q::-webkit-details-marker {
  display: none;
}
.faq-q:hover {
  background: rgba(255, 255, 255, 0.02);
  color: var(--gold);
}
/* アイコン */
.faq-q .icon {
  position: relative;
  width: 16px;
  height: 16px;
  display: block;
}
.faq-q .icon::before, .faq-q .icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--muted);
  transform: translate(-50%, -50%);
  transition: transform 0.3s /*cubic-bezier(0.22, 1, 0.36, 1)*/ ;
}
.faq-q .icon::before {
  width: 100%;
  height: 1px;
}
.faq-q .icon::after {
  width: 1px;
  height: 100%;
}
/* details[open] 時のスタイル */
details[open] .faq-q {
  color: var(--gold);
}
details[open] .icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
/* ▼▼▼ アニメーション用に変更した箇所 ▼▼▼ */
.faq-a {
  overflow: hidden; /* 高さを削るために必須 */
  /* ここにはpaddingをつけない */
}
.faq-inner {
  padding: 0 10px 24px; /* paddingはここに移動 */
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
/* 開いた瞬間に中身をふわっと表示 */
details[open] .faq-inner {
  opacity: 1;
  transform: translateY(0);
}
/* ===== Info Section ===== */
.info-list {
  display: grid;
  /* PCは2列表示 */
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.info-item {
  display: flex;
  background: rgba(255, 255, 255, 0.02);
  /*border: 1px solid rgba(255, 255, 255, 0.08);*/
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.info-item:hover .info-btn {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}
.info-item:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 168, 106, 0.4);
}
/* サムネイル画像エリア */
.info-thumb {
  width: 40%; /* 画像の幅 */
  position: relative;
  overflow: hidden;
}
/* 画像なしのNEWSカード */
.info-thumb.no-img {
  background: linear-gradient(135deg, #1a1610 0%, #251f14 100%);
  display: flex;
  align-items: flex-start;
}
.info-thumb.no-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40L40 0M0 0l40 40' stroke='%23c9a86a' stroke-opacity='.06' stroke-width='1'/%3E%3C/svg%3E") repeat;
}
.info-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 枠いっぱいにトリミング */
  transition: transform 0.5s ease;
}
.info-item:hover .info-thumb img {
  transform: scale(1.05); /* ホバーで少し拡大 */
}
/* カテゴリラベル（左上） */
.info-cat {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  padding: 4px 8px;
  font-weight: 600;
}
/* テキストエリア */
.info-body {
  width: 60%;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* 上下均等配置 */
}
.info-body time {
  font-size: 11px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
}
.info-head {
  margin: 8px 0;
  font-size: 15px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.5;
  /* 2行以上になったら「...」にする設定 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.info-text {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 12px;
  /* 2行（約30文字程度）で「...」にする設定 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* 詳細ボタン */
.info-btn {
  align-self: flex-end;
  font-size: 11px;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  transition: 0.3s;
  display: inline-block;
}
.info-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}
.grid1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 380px;
  margin: 5% auto 0;
}
.info.btn {
  margin-top: 5%;
  padding: 3% 0;
}
.info.btn a {
  display: block;
  margin: 0;
  font-family: "Noto Serif JP", serif;
  letter-spacing: .12em;
  font-size: 13px;
  font-weight: 600;
}

/* ===== VIEW MORE ボタン ===== */
.view-more-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 20px 48px;
  margin: 48px auto 0;
  width: fit-content;
  text-decoration: none;
  position: relative;
  cursor: pointer;

  /* 枠線：初期状態は透明 → is-visibleで出現 */
  border: 1px solid transparent;
  transition: border-color 0.8s ease 0.3s; /* 0.3s遅れて出現 */
  overflow: hidden;
}

/* スクロールで見えたとき：枠線が出る */
.view-more-btn.is-visible {
  border-color: rgba(201, 168, 106, 0.4);
}

/* シマー光（斜め）：hover & active両対応 */
.view-more-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(201, 168, 106, 0.22) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  opacity: 0;
  pointer-events: none;
}
/* PC：hover時シマー */
.view-more-btn:hover::before {
  animation: btn-shimer 0.7s ease forwards;
}
/* スマホ：tap時シマー */
.view-more-btn:active::before {
  animation: btn-shimer 0.5s ease forwards;
}
@keyframes btn-shimer {
  0%   { left: -75%; opacity: 1; }
  100% { left: 130%; opacity: 1; }
}

/* hover & active 共通：枠線を濃く */
.view-more-btn:hover,
.view-more-btn:active {
  border-color: rgba(201, 168, 106, 0.75);
}

/* テキスト */
.view-more-text {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: letter-spacing 0.45s ease;
}
/*.view-more-btn:hover .view-more-text,
.view-more-btn:active .view-more-text {
  letter-spacing: 0.42em;
}*/

/* ライン：初期は幅0 → is-visibleで伸びる */
.view-more-line {
  display: block;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  position: relative;
  z-index: 1;

  /* is-visible時：幅が伸びてフェードイン（枠線より少し遅れて） */
  transition:
    width  0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s,
    opacity 0.4s ease 0.6s;
}
/* スクロールで見えたとき：ラインが伸びる */
.view-more-btn.is-visible .view-more-line {
  width: 32px;
  opacity: 0.7;
}
/* hover & active：さらに伸びる */
.view-more-btn:hover .view-more-line,
.view-more-btn:active .view-more-line {
 /* width: 56px;*/
  opacity: 1;
  /*transition:
    width  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s,
    opacity 0.3s ease 0s;*/
}
/* ▼▼▼ スマホ表示の制御（重要） ▼▼▼ */
@media (max-width: 900px) {
  .info-list {
    grid-template-columns: 1fr; /* 1列にする */
  }
  /* 2つ目以降の記事（:nth-child(n+2)）を非表示にする */
  .info-item:nth-child(n+3) {
    display: none;
  }
  /* スマホレイアウト調整（画像を上、テキストを下にする場合） */
  /* 横並びのままが良ければ以下は削除してOKです */
  .info-item {
    flex-direction: column;
  }
  .info-thumb {
    width: 100%;
    height: 180px;
  }
  .info-body {
    width: 100%;
  }
}
/* ===== Coupon Section ===== */
.coupon-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 3px; /* 外枠の太さ（グラデーション用） */
  /* ゴールドのグラデーション枠を作成 */
  background: linear-gradient(135deg, #9b7b3a 0%, #f3f0ea 50%, #9b7b3a 100%);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
}

.coupon-inner {
  background: #0b0b0b; /* カードの内側の色 */
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(201, 168, 106, 0.3); /* 内側の細い枠線 */
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ラベル (INVITATION) */
.coupon-header .label {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 4px 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.coupon-header h3 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  color: var(--text);
  font-weight: 500;
}

/* 特典内容 */
.benefit {
  margin: 15px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit .txt {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 5px;
}

.benefit .price {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  color: var(--gold);
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(201, 168, 106, 0.4); /* 金色に光らせる */
}

/* 注意書き */
.note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  opacity: 0.8;
}

/* スマホ用の調整 */
@media (max-width: 600px) {
  .coupon-inner {
    padding: 20px 15px;
  }
  .benefit .price {
    font-size: 26px;
  }
}
