@charset "UTF-8";

html {
  scroll-behavior: smooth;
}

#Access {
  scroll-margin-top: 80px;
}

/* =========================================
   ベース設定
========================================= */
:root {
  --bg-dark: #0d0d0d;
  --bg-card: rgba(30, 30, 30, 0.6); /* 半透明のカード背景 */
  --text-main: #f5f5f5;
  --accent-gold: #d4af37;
  --border-steel: #333333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  background-image:
    linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)),
    url("../img/HP背景.png");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;

  color: var(--text-main);
  font-family:
    "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  padding-bottom: 60px;
}

/* オープニングビデオ専用スタイル */
#opening-video-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000; /* 漆黒 */
  z-index: 9999; /* 何よりも上に表示 */
  display: flex;
  align-items: center;
  justify-content: center;
}

#opening-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画面いっぱいに広げる（上下左右カット） */
}

#skip-button {
  position: absolute;
  bottom: 30px;
  right: 30px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px 20px;
  font-family: "Playfair Display", serif;
  font-size: 12px;
  letter-spacing: 2px;
  cursor: pointer;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.3);
}

/* ビデオが消える時のアニメーション */
.video-fade-out {
  opacity: 0;
  transition: opacity 1.5s ease;
  pointer-events: none;
}

/* =========================================
   オープニングムービー再生中の制御用
========================================= */

/* ① スクロールを禁止する */
body.is-movie-playing {
  overflow: hidden;
}

/* ② ハンバーガーメニューを非表示にする */
body.is-movie-playing #hamburger {
  display: none; 
}


/* ハンバーガーメニュー展開時のスクロール禁止用 */
body.is-menu-open {
  overflow: hidden;
}

/* =========================================
   視覚的アニメーション（ふわっと表示 ＆ 拡大）
========================================= */

/* ① スクロール連動のふわっと表示（初期状態は透明＆少し下） */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

/* 画面に入った時にこのクラスが付与され、フワッと元の位置へ現れる */
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* ② 画像のじわっと拡大（ホバー＆タップ時） */
.amu-img {
  /* 既存の .amu-img の設定に「動きをなめらかにする」魔法を追記 */
  transition: transform 0.6s ease;
}

/* カードに触れた（マウスオーバー/タップ）時に写真を1.05倍にする */
.amu-card:hover .amu-img,
.amu-card:active .amu-img {
  transform: scale(1.08);
}

a {
  text-decoration: none;
  color: inherit;
}

/* --- セクション共通 --- */
.screen {
  min-height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* セクションのタイトル（修正版） */
.section-title {
  font-family:  "Noto Serif JP", serif !important;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--accent-gold);
  animation: subtlePulse 4s infinite alternate ease-in-out;

  opacity: 1;
  clip-path: none;
}

/* タイトルが静かに光るアニメーション */
@keyframes subtlePulse {
  0% {
    text-shadow: 0 0 2px rgba(212, 175, 55, 0.1);
  }
  50% {
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
  }
  100% {
    text-shadow: 0 0 2px rgba(212, 175, 55, 0.1);
  }
}

.title-jp {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: 11px;
  color: #888;
  margin-left: 10px;
  letter-spacing: 1px;
  vertical-align: middle;
}

/* =========================================
   ヘッダー ＆ ハンバーガーメニュー
========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 9999;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.hamburger {
  width: 32px;
  height: 22px;
  cursor: pointer;
  position: relative;
  pointer-events: auto;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  transition: all 0.3s ease;
}

.hamburger span:nth-of-type(1) {
  top: 0;
}
.hamburger span:nth-of-type(2) {
  top: 10px;
}
.hamburger span:nth-of-type(3) {
  bottom: 0;
}

.hamburger.active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}
.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
.hamburger.active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}

.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(13, 13, 13, 0.95);
  z-index: 9998;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-menu.active {
  opacity: 1;
  visibility: visible;
}

.nav-list {
  list-style: none;
  text-align: center;
}
/* メニューのリストアイテム（上書き） */
.nav-list li {
  margin-bottom: 20px;
  /* 最初は透明にして少し下にずらしておく */
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

/* メニューが開いた（.active が付いた）時に定位置へ表示 */
.nav-menu.active .nav-list li {
  opacity: 1;
  transform: translateY(0);
}

/* ▼ 時間差の設定（上から順番に遅らせて表示） ▼ */
.nav-menu.active .nav-list li:nth-child(1) {
  transition-delay: 0.1s;
}
.nav-menu.active .nav-list li:nth-child(2) {
  transition-delay: 0.2s;
}
.nav-menu.active .nav-list li:nth-child(3) {
  transition-delay: 0.3s;
}
.nav-menu.active .nav-list li:nth-child(4) {
  transition-delay: 0.4s;
}
.nav-menu.active .nav-list li:nth-child(5) {
  transition-delay: 0.5s;
}
.nav-menu.active .nav-list li:nth-child(6) {
  transition-delay: 0.6s;
}
.nav-menu.active .nav-list li:nth-child(7) {
  transition-delay: 0.7s;
}
.nav-menu.active .nav-list li:nth-child(8) {
  transition-delay: 0.8s;
}
.nav-menu.active .nav-list li:nth-child(9) {
  transition-delay: 0.9s;
}
/* メニュー項目がもっと多い場合は、nth-child(6)以降を同様に追加してください */

/* =========================================
   ここから追加：メニューの文字デザイン
========================================= */
/* メニューの英語部分 */
.nav-list a {
  font-family: "Playfair Display", serif;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-main);
  transition: color 0.3s ease;
  display: block; /* ★ここが重要！文字を横に並べず、ブロックとして独立させる魔法 */
}

/* タップした時の色 */
.nav-list a:active,
.nav-list a:hover {
  color: var(--accent-gold);
}

/* メニューの日本語部分 */
.nav-sub {
  display: block; /* ★ここが重要！英語の下に改行して配置する魔法 */
  font-family: "Noto Serif JP", serif;
  font-size: 10px;
  color: #888;
  letter-spacing: 1px;
  margin-top: 5px;
  font-weight: normal;
}

/* =========================================
   ① HERO画面 (1スクロール目)
========================================= */
.hero-screen {
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px);
  z-index: -2;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* レンガが少し見えるように調整 */
  z-index: -1;
}

.hero-content {
  text-align: center;
  z-index: 1;
}
.hero-logo {
  margin: 0 auto 30px;
  width: 220px;
  text-align: center;
}
.hero-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-hours {
  font-size: 16px;
  letter-spacing: 2px;
  border-bottom: 1px solid var(--accent-gold);
  padding-bottom: 5px;
  display: inline-block;
  font-family: "Playfair Display", serif;
}

.scroll-down {
  position: absolute;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-text {
  font-size: 10px;
  letter-spacing: 2px;
  font-family: "Playfair Display", serif;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background-color: var(--text-main);
  animation: scrolldown 1.5s infinite;
}

@keyframes scrolldown {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* =========================================
   ② SYSTEM (2スクロール目上部)
========================================= */
.system-area {
  flex: 1;
  padding: 40px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
 
  /* background-color を削除済（レンガが透ける） */
}

.system-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sys-card {
  background: var(--bg-card);
  border: 1px solid #444;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* --- 特注リボン（お得！） --- */
.sys-ribbon {
  position: absolute;
  top: -8px;
  left: -8px;
  background-color: var(--accent-gold);
  color: #000;
  font-size: 11px;
  font-weight: bold;
  padding: 4px 12px;
  transform: rotate(-15deg);
  z-index: 2;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.sys-ribbon::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: rgba(255, 255, 255, 0.6);
  transform: rotate(30deg);
  animation: ribbonShine 4s infinite;
}

@keyframes ribbonShine {
  0% {
    left: -100%;
  }
  15% {
    left: 200%;
  }
  100% {
    left: 200%;
  }
}

/* --- 1段目（大） --- */
.large-card {
  padding: 30px 15px 20px;
  border-color: var(--accent-gold);
  animation: goldGlow 3s infinite alternate;
}

@keyframes goldGlow {
  0% {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
  }
  50% {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
  }
  100% {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
  }
}

.sys-icon {
  width: 50px;
  margin-bottom: 10px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0px);
  }
}

.sys-icon img {
  width: 100%;
  height: auto;
}
.sys-note {
  font-size: 11px;
  color: #ccc;
  margin-bottom: 5px;
}

.sys-title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--text-main);
}

.large-card .sys-price {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  color: var(--accent-gold);
  font-weight: bold;
}

.large-card .tax {
  font-size: 14px;
  font-weight: normal;
}
.sys-time {
  font-size: 13px;
  color: #aaa;
  margin-top: 5px;
}

/* --- 2段目（小） --- */
.sys-sub-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.small-card {
  padding: 20px 5px;
}
.sys-icon-s {
  width: 30px;
  margin-bottom: 10px;
}
.sys-icon-s img {
  width: 100%;
  height: auto;
}

.sys-name {
  font-family: "Playfair Display", serif;
  font-size: 13px;
  font-weight: bold;
}

.sys-jp {
  font-size: 10px;
  color: #888;
  margin-top: 2px;
}

.small-card .sys-price {
  font-family: "Noto Serif JP", serif;
  margin-top: 5px;
  font-size: 16px;
  color: var(--accent-gold);
  font-weight: bold;
}

.small-card .tax {
  font-size: 10px;
  font-weight: normal;
}

.sys-btn-wrap {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}


/* カードのグリッド設定（1列縦積み） */
.amu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px; /* カード同士の隙間を少し広げる */
  margin-bottom: 30px;
}

/* 横長カード本体（参考画像デザイン） */
/* 偶数番目（2個目、4個目...）のカードの左右を入れ替える */
.amu-card:nth-child(even) {
  flex-direction: row-reverse;
}

/* 左側：テキストエリア */
.amu-text {
  flex: 1.2;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

/* 右側：写真エリア */
.amu-img {
  flex: 0.8;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* 奇数番目（通常）のグラデーション：左側を黒くしてテキストと馴染ませる */
.amu-card:nth-child(odd) .amu-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.85), transparent);
  z-index: 1;
}

/* 偶数番目（反転時）のグラデーション：右側を黒くしてテキストと馴染ませる */
.amu-card:nth-child(even) .amu-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(to left, rgba(10, 10, 10, 0.85), transparent);
  z-index: 1;
}
.amu-card {
  background-color: rgba(10, 10, 10, 0.85);
  border: 1px solid #444;
  display: flex;
  height: 140px; /* 高さを少し出してゆとりを持たせる */
  overflow: hidden;
  position: relative;
}

/* 左側：テキストエリア */
.amu-text {
  flex: 1.2;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.amu-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: var(--text-main);
}

.amu-card p {
  font-size: 11px;
  color: #ccc;
  line-height: 1.6;
}

/* 右側：写真エリア */
.amu-img {
  flex: 0.8;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* 写真の境界線をぼかすグラデーション */
.amu-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.85), transparent);
  z-index: 1;
}

/* ボタンエリア */
.amu-buttons {
  display: flex;
  justify-content: center;
}

/* ボタンの基本設定（上書き） */
.btn-outline {
  width: 100%;
  max-width: 300px;
  text-align: center;
  margin: 0 auto;
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 18px;
  font-size: 13px;
  color: var(--text-main);
  border: 1px solid #555;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  letter-spacing: 1px;
  /* ▼ ここから塗りつぶし用に追加 ▼ */
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease; /* 文字色の変化だけをなめらかに */
}

/* 左から流れてくる背景色の設定 */
.btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--text-main); /* 塗りつぶす色（白） */
  z-index: -1;
  transform: translateX(-101%); /* 最初は左枠外に隠しておく */
  transition: transform 0.4s ease;
}

.btn-outline span {
  color: var(--accent-gold);
  font-weight: bold;
  transition: color 0.4s ease;
  z-index: 2;
}

/* タップ（ホバー）した時の動き */
.btn-outline:hover,
.btn-outline:active {
  color: var(--bg-dark); /* 文字を黒に */
}

/* 背景が左から右へスライドイン */
.btn-outline:hover::before,
.btn-outline:active::before {
  transform: translateX(0);
}

/* =========================================
   ③ NEWS + ACCESS + FOOTER (3スクロール目)
========================================= */
.news-area {
  flex: 3;
  padding: 60px 20px 20px;
  position: relative;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.news-item {
  display: flex;
  gap: 15px;
  align-items: center;
}
.news-item img {
  width: 80px;
  height: 50px;
  object-fit: cover;
}
.news-title {
  font-size: 13px;
}

.view-all {
  position: absolute;
  right: 20px;
  font-size: 11px;
  color: var(--accent-gold);
  letter-spacing: 1px;
  font-family: "Playfair Display", serif;
}

/* ACCESS */
.access-area {
  flex: 4;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.access-photos {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.access-photos img {
  flex: 1;
  height: 120px;
  object-fit: cover;
  border: 1px solid var(--border-steel);
}

.access-map {
  margin-bottom: 15px;
}

.access-info {
  font-size: 12px;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* .btn-map {
  display: block;
  text-align: center;
  background-color: var(--border-steel);
  padding: 15px;
  font-size: 13px;
  font-weight: bold;
} */

/* FOOTER */
.footer-area {
  flex: 1;
  background-color: rgba(0, 0, 0, 0.8); /* 少しだけレンガを透かせる */
  padding: 20px;
  padding-bottom: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family:  "Noto Serif JP", serif !important;
}

.footer-contact p {
  font-size: 10px;
  color: #888;
  margin-bottom: 3px;
}
.tel-number {
  font-size: 18px;
  font-weight: bold;
  color: var(--accent-gold);
}

.footer-company {
  text-align: right;
}
.footer-company p:first-child {
  font-family: "Playfair Display", serif;
  font-size: 12px;
  margin-bottom: 3px;
}
.footer-company p:last-child {
  font-size: 10px;
  color: #888;
}

/* =========================================
   追従CTAバー
========================================= */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  display: flex;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}

.cta-tel {
  flex: 1;
  background-color: #1a1a1a;
  color: var(--text-main);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: bold;
  border-top: 1px solid var(--border-steel);
}

.cta-line {
  flex: 1;
  background: linear-gradient(
    45deg,
    #405de6 0%,
    #5851db 15%,
    #833ab4 30%,
    #c13584 45%,
    #e1306c 60%,
    #fd1d1d 75%,
    #f77737 90%,
    #fcaf45 100%
  );
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: bold;
}

/* =========================================
   ABOUT ページ専用スタイル（左寄せ版）
========================================= */

/* ① ヒーローエリア */
.about-hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  padding: 120px 25px 150px; /* 左側にゆとりを持たせる */
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* 中身を左寄せ */
  justify-content: flex-start;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2)),
    url("../img/kv.png"); /* 任意の背景画像 */
  background-size: cover;
  background-position: center;
}

.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(to bottom, transparent, var(--bg-dark));
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  text-align: left; /* テキストを左寄せ */
  width: 100%;
}

/* ABOUTタイトルの左寄せ上書き */
.about-hero .section-title {
  text-align: left;
  margin-left: 0;
  margin-bottom: 40px;
}

.about-text-area {
  width: 100%;
}

.about-catchphrase {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  line-height: 1.6;
  color: var(--accent-gold);
  margin-bottom: 30px;
  letter-spacing: 2px;
  font-weight: bold;
}

.about-desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-main);
  text-align: left;
  display: block; /* inline-blockからblockに変更 */
  padding: 15px;
  border-radius: 4px;
  max-width: 100%; /* 横幅いっぱいに */
}

/* ② 店舗情報エリア */
.about-info-section {
  position: relative;
  padding: 0 20px 100px;
  background-color: var(--bg-dark);
  margin-top: -100px;
  z-index: 10;
}

.about-info-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-steel);
  border-radius: 12px;
  padding: 40px 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

.about-info-list {
  list-style: none;
  padding: 0;
}

.about-info-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.about-info-list li:last-child {
  margin-bottom: 0;
}

.info-icon-wrap {
  width: 28px;
  margin-right: 20px;
  margin-top: -2px;
  flex-shrink: 0;
}

.info-icon {
  width: 100%;
  height: auto;
  display: block;
}

.info-text-wrap {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-family: "Playfair Display", serif;
  color: var(--accent-gold);
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  line-height: 1;
}

.info-val {
  font-size: 13px;
  line-height: 1.7;
  color: #e0e0e0;
}

/* =========================================
   SYSTEM ページ専用スタイル
========================================= */

/* ① ヒーローエリア */
.system-hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  padding: 120px 25px 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)),
    url("../img/ウイスキーmenu.png"); /* SYSTEM用の背景画像 */
  background-size: cover;
  background-position: center;
}

.system-hero .section-title {
  text-align: left;
  margin-left: 0;
  margin-bottom: 40px;
}

.system-catchphrase {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  line-height: 1.6;
  color: var(--accent-gold);
  margin-bottom: 30px;
  letter-spacing: 2px;
  font-weight: bold;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.9);
}

.system-desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-main);
  padding: 15px;
  border-radius: 4px;
  max-width: 100%;
}

/* ② 料金コンテンツエリア */
.system-main-section {
  position: relative;
  padding: 0 20px 40px;
  background-color: var(--bg-dark);
  margin-top: -100px;
  z-index: 10;
}

/* メインカード */
.sys-main-card {
  background: var(--bg-card) !important;
  border: 1px solid var(--accent-gold) !important;
  border-radius: 12px;
  padding: 45px 25px 35px;
  text-align: center;
  margin-bottom: 20px;
  animation: goldGlow 3s infinite alternate;
}

.sys-detail-title {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--text-main);
}

.sys-detail-sub {
  font-size: 12px;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.sys-detail-price {
  font-family: "Noto Serif JP", serif;
  font-size: 42px;
  font-weight: bold;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.sys-detail-price .currency {
  font-size: 20px;
  margin-right: 5px;
}
.sys-detail-price .tax {
  font-size: 14px;
  font-weight: normal;
}

.sys-detail-time {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 20px;
}

.sys-detail-line {
  width: 250px;
  height: 1px;
  background: var(--accent-gold);
  margin: 0 auto 20px;
}

.sys-detail-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #aaa;
}

/* サブグリッド */
.sys-sub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.sys-sub-card {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-steel) !important;
  padding: 20px 5px;
  text-align: center;
  border-radius: 8px;
}

.sub-label {
  font-family: "Playfair Display", serif;
  font-size: 12px;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.sub-price {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.sub-note {
  font-size: 9px;
  color: #888;
  line-height: 1.3;
}

/* インフォメーションカード */
.sys-info-card {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-steel) !important;
  padding: 30px 20px;
  border-radius: 12px;
}

.info-title {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: var(--accent-gold);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.info-list {
  list-style: none;
}

.info-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #333;
  font-size: 12px;
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list li span:first-child {
  color: var(--accent-gold);
  font-weight: bold;
}

.info-list li span:last-child {
  color: #ccc;
}

/* =========================================
   SYSTEM ページ：過ごし方の提案スタイル
========================================= */
.system-styles-section {
  padding: 20px;
  background-color: var(--bg-dark);
}

/* 縦2列（2カラム）のグリッド設定 */
.style-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 横に2等分 */
  gap: 12px; /* カード同士の隙間 */
  margin-top: 30px;
}

.style-card {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-steel) !important;
  border-radius: 8px;
  padding: 25px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}

/* 飲み放題（左側）を少し強調する場合 */
.style-card:first-child {
  border-color: var(--accent-gold) !important;
}

.style-header {
  margin-bottom: 15px;
}

.style-label {
  font-family: "Playfair Display", serif;
  font-size: 10px;
  color: var(--accent-gold);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 5px;
}

.style-title {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: var(--text-main);
}

.style-text {
  font-size: 11px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 15px;
  font-family: "Noto Serif JP", serif;
}

.style-tag {
  font-size: 9px;
  color: var(--accent-gold);
  opacity: 0.7;
  letter-spacing: 0.5px;
}

/* =========================================
   STYLEカードの背景画像設定
========================================= */

/* PARTY（飲み放題）カードの背景画像 */
.style-card-party {
  /* 文字を読みやすくするため、画像の上に黒のグラデーションを敷く */
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(15, 15, 15, 0.9)),
    url("../img/乾杯.png") !important; /* ※お好きな画像パスに変更 */
  background-size: cover !important;
  background-position: center !important;
  border-color: var(--accent-gold) !important;
}

/* CHILL（単品）カードの背景画像 */
.style-card-chill {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(15, 15, 15, 0.9)),
    url("../img/しっぽり.png") !important; /* ※お好きな画像パスに変更 */
  background-size: cover !important;
  background-position: center !important;
}

/* 画像の上でも文字をくっきり見せるための微調整 */
.style-card .style-title {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}
.style-card .style-text {
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 2;
}

/* =========================================
   FLOOR ページ：タイトルライン ＆ 漆黒切替
========================================= */

/* フォント指定 */
.floor-hero-visual *,
.floor-black-content * {
  font-family: "Playfair Display", "Noto Serif JP", serif !important;
}

/* ① ヒーローエリア（画像背景） */
.floor-hero-visual {
  position: relative;
  width: 100%;
  min-height: 75vh;
  padding: 140px 20px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* メイン背景画像 */
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2)),
    url("../img/kv3.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* センター配置のタイトルとゴールドライン */
.titled-line {
  position: relative;
  display: inline-block;
  padding-bottom: 25px; /* 線との距離 */
  margin-bottom: 40px;
}

.titled-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px; /* 線の長さ */
  height: 2px; /* 線の太さ */
  background-color: var(--accent-gold); /* INDEX共通のゴールド */
}

/* 画像の下部を黒へ溶け込ませる */
.hero-to-black-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, transparent, #000000);
  pointer-events: none;
}

/* ② コンテンツエリア（完全な黒背景） */
.floor-black-content {
  position: relative;
  background-color: #000000 !important;
  padding: 40px 20px 100px;
  z-index: 20;
}

/* 各フロアカードの背景も少し透ける黒に */
.floor-item {
  display: flex;
  background: rgba(15, 15, 15, 0.95);
  border: 1px solid #222;
  margin-bottom: 30px;
  backdrop-filter: blur(5px);
}

.floor-en {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: 0.1em;
}

/* キャッチコピーの装飾 */
.floor-catchphrase {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1.6;
  margin-bottom: 25px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}
.floor-desc {
  font-size: 13px;
  line-height: 2;
  color: #eee;
}

/* ② フロアコンテンツ（交互レイアウト） */
.floor-content-section {
  background-color: #000;
  padding: 40px 15px 80px;
}

.floor-item {
  display: flex;
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid #222;
  margin-bottom: 20px;
  overflow: hidden;
}

.floor-item.reverse {
  flex-direction: row-reverse;
}

.floor-img {
  width: 50%;
  min-height: 250px;
  background-size: cover;
  background-position: center;
}

.floor-info {
  width: 50%;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.floor-en {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: 0.1em;
}

.floor-jp {
  font-size: 10px;
  color: #888;
  letter-spacing: 0.2em;
}

.floor-text {
  font-size: 11px;
  line-height: 1.8;
  color: #ccc;
  margin: 15px 0;
}

.floor-icon {
  width: 25px;
  opacity: 0.5;
  filter: sepia(1) saturate(5) hue-rotate(10deg); /* ゴールドっぽく加工 */
}

/* ③ 流れるギャラリー */
.floor-gallery-section {
  background-color: #000;
  padding-bottom: 120px;
  overflow: hidden;
}

.gallery-slider {
  margin-top: 40px;
  width: 100%;
}

.gallery-track {
  display: flex;
  width: calc(250px * 4); /* 画像幅 * 枚数 */
  animation: scroll 30s linear infinite;
}

.gallery-img-item {
  width: 250px;
  height: 180px;
  margin-right: 10px;
  background-size: cover;
  background-position: center;
  border: 1px solid #222;
  flex-shrink: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 8 - 80px));
  } /* 8枚分移動 */
}

/* スマホ対応：横並びを縦並びにするか調整 */
@media (max-width: 600px) {
  .floor-item {
    flex-direction: column;
  }
  .floor-item.reverse {
    flex-direction: column;
  }
  .floor-img,
  .floor-info {
    width: 100%;
  }
  .floor-img {
    min-height: 200px;
  }
}

/* =========================================
   MENU ページ：漆黒・統合デザイン
========================================= */

/* フォント指定：欧文は Playfair Display / 和文は Noto Serif JP */
body,
h1,
h2,
h3,
h4,
.btn-outline,
.nomi-title,
.category-en,
.price-num {
  font-family: "Playfair Display", "Noto Serif JP", serif !important;
}

.bg-black-only {
  background-color: #000000 !important;
}

/* ナビゲーションをセンター寄せ */
.nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ① ヒーローエリア（センター寄せ） */
.menu-hero-visual {
  position: relative;
  width: 100%;
  min-height: 75vh;
  padding: 30px 20px 100px;
  display: flex;
  flex-direction: column;
  align-items: center; /* センター寄せ */
  text-align: center; /* テキスト中央 */
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)),
    url("../img/HP背景.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* パララックス効果 */
}

.section-title {
  font-size: 50px;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}

.section-title span.title-jp {
  font-size: 12px;
  letter-spacing: 0.4em;
  display: block;
  margin-top: 8px;
}

.menu-catchphrase {
  font-size: 26px;
  line-height: 1.5;
  color: var(--accent-gold);
  margin-bottom: 25px;
  letter-spacing: 0.1em;
}

.menu-desc {
  font-size: 13px;
  line-height: 2;
  color: #eee;
  max-width: 600px;
  margin: 0 auto;
}

.hero-to-black-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, transparent, #000000);
  pointer-events: none;
  z-index: 1;
}

/* ② ブラックコンテンツエリア */
.menu-black-content {
  position: relative;
  background-color: #0d0d0d !important;
  padding: 4px 20px 10px;
  z-index: 20;
}

/* 飲み放題カード（INDEXデザイン継承） */
.menu-nomi-card {
  background-color: rgba(15, 15, 15, 0.9) !important;
  backdrop-filter: blur(8px);
  border: 1px solid var(--accent-gold) !important;
  padding: 50px 20px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  animation: goldGlow 3s infinite alternate; /* ゴールド発光 */
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

.nomi-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}

.nomi-catch {
  font-size: 14px;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 35px;
  opacity: 0.9;
}

/* 5つのアイコン配置 */
.nomi-icons-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 35px;
}

.nomi-icon-item {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  padding: 10px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nomi-icon-item img {
  width: 100%;
  filter: drop-shadow(0 0 5px var(--accent-gold));
}

.nomi-price {
  margin-bottom: 25px;
}

.price-num {
  font-size: 60px;
  font-weight: 400;
  color: var(--accent-gold);
}

.tax {
  font-size: 18px;
  color: var(--accent-gold);
  margin-left: 5px;
}

/* ボタン：コンパクト版 */
.nomi-btn-area {
  margin-bottom: 30px;
}

.btn-compact {
  padding: 8px 25px !important;
  font-size: 12px !important;
  display: inline-block;
  background: rgba(212, 175, 55, 0.05);
}

.nomi-description {
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  max-width: 90%;
  margin: 0 auto;
}

.nomi-description p {
  font-size: 12px;
  line-height: 1.8;
  color: #aaa;
  text-align: left;
}

/* 単品アコーディオン */
.accordion-item {
  background-color: rgba(15, 15, 15, 0.9) !important;
  border: 1px solid #222 !important;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
}

.accordion-item.active {
  border-color: var(--accent-gold) !important;
}

.accordion-header {
  padding: 22px 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.accordion-icon-wrap {
  width: 32px;
  margin-right: 15px;
  flex-shrink: 0;
}

.accordion-icon {
  width: 100%;
  filter: drop-shadow(0 0 5px var(--accent-gold));
}

.accordion-title-wrap {
  display: flex;
  flex-direction: column;
}

.category-en {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.category-jp {
  font-size: 10px;
  color: #777;
  letter-spacing: 0.2em;
}

.price-sample {
  margin-left: auto;
  margin-right: 35px;
  font-size: 14px;
  color: var(--accent-gold);
  font-weight: bold;
}

.icon-plus::before {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-gold);
  font-size: 22px;
  transition: transform 0.3s;
}

.accordion-item.active .icon-plus::before {
  transform: translateY(-50%) rotate(45deg);
}

.accordion-content {
  max-height: 0;
  transition: max-height 0.5s ease-out;
  background: rgba(0, 0, 0, 0.6);
}

.accordion-item.active .accordion-content {
  max-height: 1500px;
}

.content-inner {
  padding: 30px 20px;
}

/* 展開時の画像（1枚） */
.category-featured-img {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  margin-bottom: 30px;
  border: 1px solid #333;
}

/* 展開時のメニュー（6つ） */
.menu-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #333;
  padding-bottom: 8px;
}

.menu-item .name {
  font-size: 12px;
  color: #eee;
}

.menu-item .price {
  font-size: 12px;
  color: var(--accent-gold);
  font-weight: bold;
}

/* カテゴリ内詳細ボタン */
.menu-more-area {
  margin-top: 35px;
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 25px;
}

.and-more {
  font-size: 14px;
  color: var(--accent-gold);
  margin-bottom: 15px;
  font-style: italic;
  letter-spacing: 0.1em;
}

/* ページ最下部のボタン */
.menu-full-btn-area {
  text-align: center;
  margin-top: 70px;
}

/* --- 共通CTAバー --- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65px;
  display: flex;
  z-index: 1000;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.6);
}

.cta-tel,
.cta-line {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  color: #fff;
}

.cta-tel {
  background-color: #222;
  border-top: 1px solid #444;
}
.cta-line {
  background-color: #06c755;
}

/* =========================================
   NEWS ページ：漆黒・リスト・Playfair 統合
========================================= */

/* フォント指定 */
.news-hero-visual *,
.news-list-section * {
  font-family: "Playfair Display", "Noto Serif JP", serif !important;
}

/* ① ヒーローエリア */
.news-hero-visual {
  position: relative;
  width: 100%;
  min-height: 60vh;
  padding: 140px 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)),
    url("../img/news_hero_bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.news-catchphrase {
  font-size: 16px;
  letter-spacing: 0.3em;
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.news-desc {
  font-size: 13px;
  line-height: 1.8;
  color: #eee;
}

/* ② ニュースリストセクション */
.news-list-section {
  background-color: #000;
  padding: 40px 20px 120px;
  z-index: 20;
}

.news-container {
  max-width: 800px; /* ニュースは読みやすさ重視で幅を絞る */
  margin: 0 auto;
}

/* 記事カード */
.news-post-card {
  margin-bottom: 30px;
  background-color: rgba(15, 15, 15, 0.95) !important;
  border: 1px solid #222 !important;
  overflow: hidden;
  transition: all 0.3s;
}

.news-post-card:hover {
  border-color: var(--accent-gold) !important;
}

.news-link {
  text-decoration: none;
  display: flex; /* PC/タブレットでは横並び */
}

.news-img {
  width: 35%;
  min-height: 180px;
  background-size: cover;
  background-position: center;
}

.news-content {
  width: 65%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-meta {
  margin-bottom: 10px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.news-date {
  font-size: 12px;
  color: #888;
  letter-spacing: 0.1em;
}

.news-tag {
  font-size: 10px;
  padding: 2px 8px;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  border-radius: 2px;
}

.news-title {
  font-size: 16px;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 10px;
}

.news-excerpt {
  font-size: 12px;
  color: #aaa;
  line-height: 1.7;
}

/* ページネーション */
.pagination {
  text-align: center;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-num {
  font-size: 14px;
  color: #888;
  cursor: pointer;
  padding-bottom: 5px;
  transition: 0.3s;
}

.page-num.active {
  color: var(--accent-gold);
  border-bottom: 1px solid var(--accent-gold);
}

/* スマホ対応 */
@media (max-width: 650px) {
  .news-link {
    flex-direction: column;
  }
  .news-img {
    width: 100%;
    height: 180px;
  }
  .news-content {
    width: 100%;
    padding: 20px;
  }
}

/* =========================================
   NEWS セクション
========================================= */
.news-area {
  padding: 60px 0;
  width: 100%;
}

/* 記事を縦に並べる設定 */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 15px; /* 記事同士の隙間 */
  margin-top: 30px;
  margin-bottom: 40px;
}

/* 記事カード全体のデザイン */
.news-item {
  display: flex;
  align-items: center;
  background: var(--bg-card); /* 半透明のカード背景 */
  border: 1px solid var(--border-steel);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-main);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

/* マウスを乗せた時（ホバー時）のアクション */
.news-item:hover {
  transform: translateY(-3px);
  border-color: var(--accent-gold);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* サムネイル画像（正方形に固定） */
.news-item img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-right: 1px solid var(--border-steel);
}

/* テキストが入る右側のエリア */
.news-text {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1; /* 残りのスペースを埋める */
}

/* 日付のデザイン */
.news-date {
  font-family: "Playfair Display", serif;
  font-size: 0.8rem;
  color: var(--accent-gold);
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}

/* タイトルのデザイン */
.news-title {
  font-size: 0.95rem;
  line-height: 1.5;
  /* 長い文章は2行で「...」と省略する魔法のコード */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =========================================
   VIEW ALL ボタン
========================================= */
.news-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.view-all {
  font-family: "Playfair Display", serif;
  color: var(--text-main);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
  padding: 20px 20px;
  margin: top 50px;
}

.view-all span {
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

.view-all:hover {
  color: var(--accent-gold);
}

.view-all:hover span {
  transform: translateX(5px); /* 矢印が右に動く */
}

/* =========================================
   RECRUIT ページ：漆黒 ＆ インタラクティブグリッド
========================================= */

/* フォント統一 */
.recruit-hero-visual *,
.recruit-features-section * {
  font-family: "Playfair Display", "Noto Serif JP", serif !important;
}

/* ① ヒーローエリア */
.recruit-hero-visual {
  position: relative;
  width: 100%;
  min-height: 70vh;
  padding: 140px 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
    url("../img/recruit_hero_bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.recruit-sub {
  font-size: 16px;
  color: var(--text-main);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

.recruit-catch {
  font-size: 26px;
  color: var(--accent-gold);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 25px;
}

.recruit-desc {
  font-size: 13px;
  line-height: 2;
  color: #eee;
}

/* ② 特徴セクション */
.recruit-features-section {
  background-color: #000;
  padding: 50px 15px 50px;
}

/* 3枚のイメージ画像 */
.recruit-visual-row {
  display: flex;
  gap: 10px;
  margin-top: -60px; /* ヒーローに少し食い込ませる */
  margin-bottom: 50px;
  z-index: 20;
  position: relative;
}

.recruit-v-img {
  flex: 1;
  height: 120px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  border: 1px solid #333;
}

/* グリッドレイアウト */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 60px;
}

.feature-card {
  padding: 35px 15px;
  text-align: center;
  background-color: rgba(15, 15, 15, 0.95) !important;
  border: 1px solid #222 !important;
  animation: goldGlow 4s infinite alternate; /* INDEXの発光を継承 */
}

.feature-card.full-width {
  grid-column: 1 / 3;
}

.feature-icon-wrap {
  width: 40px;
  margin: 0 auto 15px;
}

.feature-icon {
  width: 100%;
  filter: drop-shadow(0 0 5px var(--accent-gold));
}

.feature-card h4 {
  font-size: 16px;
  color: var(--text-main);
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}

.feature-card p {
  font-size: 11px;
  color: #aaa;
  line-height: 1.6;
}

/* アクションボタン */
.recruit-action-area {
  text-align: center;
}

.action-note {
  margin: 40px 0 20px;
  font-size: 14px;
  color: var(--text-main);
}

/* 塗りつぶしのゴールドボタン */
.btn-filled-gold {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-gold);
  color: #000 !important;
  padding: 18px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 20px;
  transition: opacity 0.3s;
}

.btn-filled-gold:hover {
  opacity: 0.8;
}

.btn-icon {
  width: 20px;
  margin-right: 10px;
}

.btn-tel-link {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}

.btn-tel-link .time {
  font-size: 12px;
  color: #888;
  font-weight: normal;
}

/* 詳細ページのデザイン */
.news-detail-section {
  padding: 120px 0 60px; /* ヘッダー分を空ける */
}

.back-link {
  color: var(--accent-gold);
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 30px;
}

.post-header {
  margin-bottom: 40px;
  text-align: center;
}

.post-date {
  color: var(--accent-gold);
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
}

.post-title {
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 15px;
}

.post-thumbnail {
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-steel);
}

.post-thumbnail img {
  width: 100%;
  display: block;
}

/* 記事本文（リッチエディタの中身） */
.post-body {
  line-height: 1.8;
  color: var(--text-main);
}

.post-body h2 {
  color: var(--accent-gold);
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #333;
}

.post-body p {
  margin-bottom: 20px;
}

.post-body img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 8px;
}

/* タップハイライトを消す（スマホでの不自然な青い反応を防止） */
* {
  -webkit-tap-highlight-color: transparent;
}

/* =========================================
   スマートフォン用レスポンシブ対応（768px以下）
   ※NEWS, RECRUIT, FLOOR用の追加レイアウト
========================================= */
@media (max-width: 768px) {

  /* --- 共通：ヒーロー（一番上の画像）エリアの調整 --- */
  /* PC版の padding（140px等）だとスマホでは広すぎるため縮小します */
  .floor-hero-visual,
  .news-hero-visual,
  .recruit-hero-visual {
    padding: 100px 15px 60px;
    min-height: auto; 
  }

  /* =========================================
     FLOOR ページのスマホ対応
  ========================================= */
  /* タイトル下のゴールドライン（500px固定幅）を画面幅に合わせる */
  .titled-line::after {
    width: 80%; /* 画面の80%の長さに自動調整 */
  }

  /* =========================================
     RECRUIT ページのスマホ対応
  ========================================= */
  /* 特徴カードの横2列グリッドを、縦1列（1fr）に変更 */
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  /* フルサイズのカードも1列目に合わせる */
  .feature-card.full-width {
    grid-column: 1 / 2;
  }
  
  /* 3枚並びのイメージ画像が縦に潰れないように高さ調整 */
  .recruit-v-img {
    height: 80px; 
  }

  /* =========================================
     NEWS ページのスマホ対応
  ========================================= */
  /* 詳細ページのタイトル文字サイズをスマホ向けに縮小 */
  .post-title {
    font-size: 1.4rem;
  }
  
  /* TOP等に置くNEWS一覧（リスト型）の余白と文字調整 */
  .news-text {
    padding: 10px;
  }
  .news-title {
    font-size: 0.85rem;
  }
}

/* =========================================
   Q&A セクション
========================================= */
.faq-section {
  padding: 10px 15px;
  background-color: #0d0d0d;
  font-family: "Playfair Display", "Noto Serif JP", serif !important;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

/* 質問（Q）のテキスト設定 */
.faq-question {
  font-size: 14px;
  font-weight: bold;
  color: var(--text-main);
  line-height: 1.6;
  padding-right: 25px; /* 右側の「＋」アイコンに文字が被らないように */
  width: calc(100% - 40px);
}

/* Qのゴールドマーク */
.faq-q-mark {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: var(--accent-gold);
  font-weight: bold;
  margin-right: 15px;
  line-height: 1;
}

/* 回答（A）のボックス設定 */
.faq-answer-box {
  display: flex;
  align-items: flex-start;
  border-top: 1px dashed #333; /* QとAの境界線 */
  padding-top: 25px;
}

/* Aのシルバーマーク */
.faq-a-mark {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: #888;
  font-weight: bold;
  margin-right: 15px;
  line-height: 1;
}

/* 回答（A）のテキスト設定 */
.faq-answer-box p {
  font-size: 13px;
  color: #ccc;
  line-height: 1.8;
  margin: 0;
}

/* === スマホ用微調整（既存の @media (max-width: 768px) の中に入れてもOKです） === */
@media (max-width: 768px) {
  .faq-q-mark,
  .faq-a-mark {
    font-size: 22px;
    margin-right: 10px;
  }
  .faq-question {
    font-size: 13px;
  }
  .faq-answer-box p {
    font-size: 12px;
  }
}






/* ====================================================
   EVENTページ：チケット＆タブのデザイン（スマホ対応完全版）
   ==================================================== */

/* タブボタンのデザイン */
.event-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    width: 100%;
}

.event-tabs button {
    background-color: #251f1a;
    border: 2px solid #3e352f;
    color: #a59b93;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    /* スマホ画面でも均等に広がるように設定 */
    flex: 1;
    max-width: 250px;
}

.event-tabs button.active {
    color: #f39c12; /* エジソン電球のアンバー色 */
    border-color: #f39c12;
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.3);
}

/* イベントチケットのデザイン */
.event-ticket {
    background-color: #2e2620;
    border: 2px solid #3e352f;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    /* パソコン画面で大きくなりすぎないよう制限 */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* チケットの切り取り線（ヴィンテージ風） */
.event-ticket::before {
    content: "";
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    border-top: 2px dashed #1e1a16;
}

.ticket-header {
    background-color: #110d0a;
    padding: 15px 20px;
    color: #f39c12;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 1px;
}

.ticket-body {
    padding: 30px 20px 20px;
}

.ticket-title {
    margin: 0 0 10px 0;
    font-size: 22px;
    color: #f4efe9;
}

.ticket-desc {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* 参加ボタン */
.entry-btn {
    display: inline-block;
    background-color: #d35400;
    color: white;
    padding: 14px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 4px 0 #a04000;
    transition: transform 0.1s;
}

.entry-btn:active {
    transform: translateY(4px);
    box-shadow: none;
}

/* ====================================================
   スマホ画面用の調整（画面幅768px以下で適用）
   ==================================================== */
@media (max-width: 768px) {
    .event-tabs {
        gap: 5px; /* ボタンの隙間を狭める */
        padding: 0 10px; /* 画面端からの余白 */
    }

    .event-tabs button {
        padding: 10px;
        font-size: 14px; /* 小さい画面用に文字を調整 */
    }

    .event-ticket {
        margin-left: 10px;
        margin-right: 10px;
    }

    .ticket-header {
        padding: 12px 15px;
        font-size: 15px;
    }

    /* ヘッダーの高さが変わるため、切り取り線の位置も調整 */
    .event-ticket::before {
        top: 42px;
    }

    .ticket-body {
        padding: 20px 15px 15px;
    }

    .ticket-title {
        font-size: 19px; /* 長めのタイトルも折り返しにくくする */
    }

    .entry-btn {
        display: block; /* スマホではボタンを横幅いっぱい（100%）にして押しやすくする */
        width: 100%;
        box-sizing: border-box;
        padding: 16px;
        font-size: 16px;
    }
}

/* ====================================================
   カレンダー表示のデザイン
   ==================================================== */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    background-color: #110d0a;
    padding: 10px 20px;
    border: 2px solid #3e352f;
    border-radius: 8px;
    font-family:  "Noto Serif JP", serif !important;
}

.calendar-header h3 {
    margin: 0;
    color: #f39c12;
    font-size: 20px;
    letter-spacing: 2px;
}

.calendar-header button {
    background: none;
    border: none;
    color: #a59b93;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s;
}

.calendar-header button:hover {
    color: #f4efe9;
}

/* カレンダーのマス目（スチールの格子風） */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background-color: #3e352f; /* 格子の線の色 */
    border: 2px solid #3e352f;
    border-radius: 8px;
    overflow: hidden;
}

.cal-cell {
    background-color: #2e2620;
    min-height: 100px;
    padding: 5px;
    display: flex;
    flex-direction: column;
}

.cal-header-cell {
    background-color: #110d0a;
    color: #a59b93;
    text-align: center;
    padding: 10px 5px;
    font-size: 14px;
    font-weight: bold;
    min-height: auto;
}

.cal-date {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 5px;
    font-weight: bold;
}

/* 今日の日付 */
.cal-cell.today .cal-date {
    color: #d35400;
    background-color: rgba(211, 84, 0, 0.2);
    border-radius: 50%;
    width: 24px;
    text-align: center;
    line-height: 24px;
}

.cal-cell.empty {
    background-color: #1e1a16;
}

/* カレンダー内のイベントラベル */
.cal-event-label {
    background-color: #d35400;
    color: white;
    font-size: 11px;
    padding: 4px;
    border-radius: 3px;
    margin-bottom: 3px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: transform 0.1s;
}

.cal-event-label:active {
    transform: scale(0.95);
}

/* ====================================================
   ポップアップ（モーダル）のデザイン
   ==================================================== */
.modal-overlay {
    display: none; /* 初期は非表示 */
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    width: 100%;
    max-width: 500px;
    margin: 0; /* 中央配置用 */
    position: relative;
}

.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #f4efe9;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* スマホ用カレンダー調整 */
@media (max-width: 768px) {
    .cal-cell { min-height: 70px; padding: 2px; }
    .cal-header-cell { padding: 5px 2px; font-size: 12px; }
    .cal-event-label { font-size: 10px; padding: 2px; }
    .calendar-header h3 { font-size: 16px; }
}

/* イベントページ専用：背景画像を暗くして店舗の世界観を維持 */
.screen {
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url("../img/HP背景.png");
    background-size: cover;
    background-position: center;
}

/* ポップアップのチケットを店舗のカードに合わせる */
.modal-content .event-ticket {
    background-color: #1a1a1a !important;
    border: 1px solid var(--accent-gold) !important;
}

/* カレンダーの曜日セルの色を調整 */
.cal-header-cell {
    background-color: #0d0d0d !important;
    color: var(--accent-gold) !important;
}

/* z-indexを最大にして隠れないようにする */
.modal-overlay {
    z-index: 99999 !important;
}

/* モーダルの中身に高さを持たせる */
.modal-content {
    background: #1a1a1a;
    border: 1px solid var(--accent-gold);
    max-height: 80vh;
    overflow-y: auto; /* 長い文章でもスクロールできるように */
}

/* =========================================
   EVENT (TOPページ用セクション)
========================================= */
.event-area {
  padding: 60px 20px 20px;
  position: relative;
  z-index: 10;
}

.event-intro {
  font-size: 13px;
  line-height: 1.8;
  color: #ccc;
  text-align: center;
  margin-bottom: 35px;
  font-family: "Noto Serif JP", serif;
}

.top-event-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* TOPに表示するチケットは、説明文を2行で省略してスッキリ見せる */
.top-event-list .ticket-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 15px;
}

/* ====================================================
   EVENTページ＆カレンダー：サイト全体統一デザイン版
   ==================================================== */

/* タブボタン（MENUなどの統一フォントへ） */
.event-tabs button {
    background-color: rgba(15, 15, 15, 0.8);
    border: 1px solid var(--border-steel);
    color: #888;
    padding: 12px 30px;
    font-family: "Playfair Display", "Noto Serif JP", serif;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: none;
}
.event-tabs button.active {
    background-color: rgba(15, 15, 15, 0.95);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* 統一イベントカード（NEWSやSYSTEMと同じガラス風・横並び構造） */
.event-card {
    display: flex;
    background-color: rgba(15, 15, 15, 0.95) !important;
    border: 1px solid var(--border-steel) !important;
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    max-width: 100%;
}
.event-card:hover {
    border-color: var(--accent-gold) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
}

/* 画像エリア（左） */
.event-card-img {
    width: 40%;
    background-size: cover;
    background-position: center;
    min-height: 220px;
}

/* テキストエリア（右） */
.event-card-content {
    width: 60%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.event-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 12px;
}
.event-date {
    font-family: "Playfair Display", serif;
    color: var(--accent-gold);
    font-size: 14px;
    letter-spacing: 1px;
}
.event-tag {
    font-size: 10px;
    padding: 3px 8px;
    border: 1px solid var(--border-steel);
    color: #aaa;
    border-radius: 2px;
    letter-spacing: 0.1em;
}
.event-title {
    font-size: 20px;
    color: var(--text-main);
    margin-bottom: 15px;
    font-family: "Noto Serif JP", serif;
    font-weight: bold;
}
.event-desc {
    font-size: 12px;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* スマホ用縦並び */
@media (max-width: 768px) {
    .event-card { flex-direction: column; }
    .event-card-img { width: 100%; min-height: 180px; }
    .event-card-content { width: 100%; padding: 20px; }
    .event-title { font-size: 18px; }
}

/* ====================================================
   カレンダーの統一デザイン（漆黒 × ゴールド）
   ==================================================== */
.calendar-header {
    background-color: rgba(15, 15, 15, 0.95);
    border: 1px solid var(--border-steel);
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 15px 20px;
}
.calendar-header h3 {
    color: var(--accent-gold);
    font-family: "Playfair Display", "Noto Serif JP", serif;
    font-size: 18px;
}
.calendar-header button {
    border: 1px solid #333;
    padding: 5px 15px;
    border-radius: 4px;
    color: #aaa;
}
.calendar-header button:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}
.calendar-grid {
    background-color: #333; /* マス目の線の色 */
    border: 1px solid var(--border-steel);
}
.cal-cell {
    background-color: #0d0d0d;
    transition: background-color 0.3s;
}
.cal-cell:hover {
    background-color: #1a1a1a;
}
.cal-header-cell {
    background-color: rgba(15, 15, 15, 0.95);
    color: var(--accent-gold);
    font-family: "Playfair Display", "Noto Serif JP", serif;
    font-weight: normal;
}
.cal-date {
    font-family: "Playfair Display", serif;
    color: #888;
}
/* 今日の日付 */
.cal-cell.today .cal-date {
    color: var(--bg-dark);
    background-color: var(--accent-gold);
}
/* イベントラベル */
.cal-event-label {
    background-color: rgba(212, 175, 55, 0.1);
    border-left: 2px solid var(--accent-gold);
    color: var(--text-main);
    padding: 4px 6px;
    border-radius: 2px;
}
.cal-event-label:hover {
    background-color: rgba(212, 175, 55, 0.2);
}

/* モーダルの中身を統一カードと同じにする */
.modal-content {
    background-color: rgba(15, 15, 15, 0.98);
    border: 1px solid var(--accent-gold);
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
}

/* =========================================
   モーダル開閉時のスクロール制御
========================================= */
/* ポップアップが開いている時は、裏側（body）のスクロールを禁止する */
body.is-modal-open {
    overflow: hidden !important;
}

/* ポップアップの中身はスクロールできるようにする */
.modal-content {
    max-height: 80vh; /* 画面の高さの80%を最大値にする */
    overflow-y: auto; /* はみ出た分はスクロール可能に */
    -webkit-overflow-scrolling: touch; /* スマホで滑らかにスクロールさせる魔法 */
}

/* ポップアップ専用のスクロールバー（お店の世界観に合わせたゴールド） */
.modal-content::-webkit-scrollbar {
    width: 6px;
}
.modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}
.modal-content::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

/* =========================================
   ENTRY (イベント参加ページ)
========================================= */
.entry-screen {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url("../img/HP背景.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
}

.entry-container {
    max-width: 500px;
    margin: 0 auto 50px;
    padding: 0 15px;
}

.entry-card {
    background-color: rgba(15, 15, 15, 0.95);
    border: 1px solid var(--border-steel);
    border-radius: 8px;
    padding: 30px 20px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.target-event-box {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #333;
}

.target-label {
    font-size: 11px;
    color: var(--accent-gold);
    letter-spacing: 2px;
    margin-bottom: 5px;
}

#target-event-name {
    font-size: 20px;
    color: var(--text-main);
    font-family: "Noto Serif JP", serif;
    font-weight: bold;
}

/* 入力フォームのデザイン */
.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-size: 12px;
    color: #aaa;
    margin-bottom: 8px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    background-color: #0d0d0d;
    border: 1px solid #333;
    color: var(--text-main);
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 16px; /* スマホでズームされないための16px */
    font-family: "Noto Serif JP", sans-serif;
    transition: border-color 0.3s;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background-color: #1a1a1a;
}

/* LINE送信ボタン */
.btn-line-submit {
    width: 100%;
    background-color: #06C755; /* LINEグリーン */
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    transition: opacity 0.3s, transform 0.1s;
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
}

.btn-line-submit:hover {
    opacity: 0.9;
}
.btn-line-submit:active {
    transform: translateY(2px);
}

.submit-note {
    text-align: center;
    font-size: 10px;
    color: #777;
    margin-top: 15px;
    line-height: 1.6;
}

/* =========================================
   TOPページ用：イベントアコーディオン
========================================= */
.top-event-accordion {
    background-color: rgba(15, 15, 15, 0.95) !important;
    border: 1px solid var(--border-steel) !important;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* 開いたときの枠線アカリ */
.top-event-accordion.active {
    border-color: var(--accent-gold) !important;
}

.top-event-header {
    padding: 20px;
    cursor: pointer;
    position: relative;
}

.top-event-header .event-title {
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 0;
    font-family: "Noto Serif JP", serif;
    font-weight: bold;
    padding-right: 35px; /* プラスアイコンと文字が重なるのを防ぐ */
}

/* アコーディオンの中身（初期状態は高さゼロで隠す） */
.top-event-content {
    max-height: 0;
    transition: max-height 0.4s ease-out;
    background: rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

/* 開いたときに高さを広げる */
.top-event-accordion.active .top-event-content {
    max-height: 1000px; /* 画像や文章が入る十分な高さ */
}

.top-event-content-inner {
    padding: 5px 20px 20px;
}

/* 既存のプラスマークを回転させて「×」にする処理をTOPイベントにも適用 */
.top-event-accordion.active .icon-plus::before {
    transform: translateY(-50%) rotate(45deg);
}


/* =========================================
   EVENTページ：リスト用アコーディオン
========================================= */
.event-accordion {
    background-color: rgba(15, 15, 15, 0.95) !important;
    border: 1px solid var(--border-steel) !important;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.event-accordion.active {
    border-color: var(--accent-gold) !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.event-accordion-header {
    padding: 20px;
    cursor: pointer;
    position: relative;
}

.event-accordion-header .event-title {
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 0;
    font-family: "Noto Serif JP", serif;
    font-weight: bold;
    padding-right: 35px;
}

.event-accordion-content {
    max-height: 0;
    transition: max-height 0.4s ease-out;
    background: rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.event-accordion.active .event-accordion-content {
    max-height: 1000px;
}

.event-accordion-content-inner {
    padding: 5px 20px 20px;
}

/* アコーディオンのプラスアイコンを×に */
.event-accordion.active .icon-plus::before {
    transform: translateY(-50%) rotate(45deg);
}

/* =========================================
   カレンダー：イベントがある日の強調デザイン
========================================= */
/* イベントありのマス */
.cal-cell.has-event {
    background-color: rgba(212, 175, 55, 0.15); /* ほんのりゴールド背景 */
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* イベントありの日付数字 */
.cal-cell.has-event .cal-date {
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.1em;
}

/* イベントタイトル横につくドットマーク */
.event-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
    box-shadow: 0 0 4px var(--accent-gold);
}