@charset "utf-8";
/* ===========================================================
   trinity 復元版 補助CSS
   元テーマ(style-1.css)に対する最小限の上書き・補正
=========================================================== */

/* iOS Safari/Chrome(WebKit)の文字自動拡大を無効化。
   これを入れないと、SPで font-size を指定しても iPhone だけ
   勝手に拡大され（例：00:00 が縮まらず詰まる）原因になる。 */
html, body {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* WebScrapBook が焼き付けた swiper のインラインサイズ依存を解消し、
   Swiper4 が自前でレイアウトできるようにする */
.topPage_swiper,
.location_swiper {
  width: 100%;
  overflow: hidden;
}
.topPage_swiper .swiper-slide,
.location_swiper .swiper-slide {
  height: auto;
}
.topPage_swiper .slide-img img,
.location_swiper .slide-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 六角形パーティクル背景（サブページのみ）。
   重なり：地色(-4) → 六角形(-3) → 鳳凰(-2) → 本文。固定で全画面に敷く */
#hexParticles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  pointer-events: none;
  display: block;
}

/* 画像が読み込めない場合でもレイアウトが大きく崩れないように */
img {
  max-width: 100%;
}

/* スムーズスクロール */
html {
  scroll-behavior: smooth;
}

/* SPハンバーガーメニューを開いたときに表示する
   （元テーマJSが display を直接操作していた挙動を CSS クラスで再現）
   デスクトップ(>=768px)では別ルールで常時表示のため SP のみに適用 */
@media (max-width: 767px) {
  #mainMenu_wrapper.is-active {
    display: block;
  }
}

/* ===========================================================
   ヘッダー／ナビゲーション メンテナンス版
   ルール：
   - 2つのロゴは基本縮小しない
   - 縮小が必要な場合は2つのロゴを同率で縮小
   - ナビ文字サイズは固定し、画面幅で大きく/小さくしない
   - 収まらない場合はランキングボタンの左右幅だけを縮める
=========================================================== */

/* ランキングボタン：文字サイズ・高さは固定。可変するのは左右paddingのみ */
.rankingButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 40px;
  padding: 0 40px;
  margin-left: 24px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
  color: #2a2300;
  background: linear-gradient(180deg, #ffd400 0%, #ffc400 100%);
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
  transition: background .15s ease, transform .1s ease, box-shadow .15s ease;
}
.rankingButton:hover {
  background: linear-gradient(180deg, #ffe23a 0%, #ffd000 100%);
  box-shadow: 0 3px 10px rgba(0,0,0,.3);
}
.rankingButton:active {
  transform: translateY(1px);
  box-shadow: 0 1px 4px rgba(0,0,0,.25);
}

/* annexロゴ：メインロゴと同じグループとして扱う */
#mainHeader_annexLogo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  margin-left: 10px;
  text-decoration: none;
  line-height: 0;
}
#mainHeader_annexLogo img {
  display: block;
  width: auto;
  height: auto;
}

/* SP(<768px)：ロゴ2つ＋ランキング＋ハンバーガーを1行で管理 */
@media (max-width: 767px) {
  #mainHeader_container {
    display: flex !important;
    align-items: stretch;
    justify-content: flex-start;
    min-width: 0;
  }

  #mainHeader_logo,
  #mainHeader_annexLogo {
    flex: 0 0 auto;
    align-self: center;
  }

  /* ロゴは縮小せず固定。431px以上は130px（動かさない）*/
  #mainHeader_logo img,
  #mainHeader_annexLogo img {
    width: 130px;
    max-width: none;
    height: auto;
  }

  .rankingButton {
    height: 34px;
    padding: 0 10px;
    margin-left: auto;
    margin-right: 10px;
    font-size: 13px;
    letter-spacing: 0.04em;
    align-self: center;
  }

  /* 〜430px：ロゴ130では入らないため固定の小さめサイズに（段階固定・動かさない）*/
  @media (max-width: 430px) {
    #mainHeader_logo img,
    #mainHeader_annexLogo img {
      width: 104px;
    }
    #mainHeader_annexLogo { margin-left: 6px; }
    .rankingButton {
      padding: 0 7px;
      margin-right: 6px;
    }
  }

  /* 〜360px：さらに狭い端末用に固定（動かさない）*/
  @media (max-width: 360px) {
    #mainHeader_logo img,
    #mainHeader_annexLogo img {
      width: 88px;
    }
    #mainHeader_annexLogo { margin-left: 4px; }
    .rankingButton {
      padding: 0 5px;
      margin-right: 4px;
      font-size: 12px;
    }
  }

  #mainHeader_sp {
    margin-left: 0;
    align-self: stretch;
    flex: 0 0 auto;
  }
  #menu-triggerWrapper {
    height: 100%;
  }

  #mainMenu_wrapper.is-active {
    display: block;
  }
}

/* PC(>=768px)：ロゴ2つは基本固定。ナビ文字も固定 */
@media (min-width: 768px) {
  #mainHeader_container {
    display: flex !important;
    align-items: center;
    min-width: 0;
  }

  #mainHeader_logo {
    flex: 0 0 auto;
    margin: 5px 0 !important;
  }

  #mainHeader_logo img,
  #mainHeader_annexLogo img {
    max-width: 130px;
    max-height: 60px;
    width: auto;
    height: auto;
  }

  #mainMenu .sp-only-menu { display: none; }

  #mainMenu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
  }

  #mainMenu li {
    margin: 0 12px;
    font-size: 14px !important;
    white-space: nowrap;
  }

  #mainMenu a .en,
  #mainMenu a span {
    font-size: 14px !important;
    white-space: nowrap;
  }

  #mainMenu a span {
    font-size: 14px !important;
  }
}

/* 1200〜1440px：ロゴ・文字は変えず、余白だけ整理 */
@media (min-width: 1200px) and (max-width: 1440px) {
  #mainHeader_wrapper { margin: 0 4%; }
  #mainMenu li { margin: 0 10px; }
  .rankingButton {
    padding-left: 24px;
    padding-right: 24px;
    margin-left: 16px;
  }
}

/* 1001〜1199px：ランキングボタンの左右幅・余白を詰める */
@media (min-width: 1001px) and (max-width: 1199px) {
  #mainHeader_wrapper { margin: 0 3%; }
  #mainMenu li { margin: 0 6px; }
  .rankingButton {
    padding-left: 14px;
    padding-right: 14px;
    margin-left: 10px;
  }
}

/* 881〜1000px：ナビ14pxを収めるためランキングをSP相当に縮小（ロゴはフルサイズ維持） */
@media (min-width: 881px) and (max-width: 1000px) {
  #mainHeader_wrapper { margin: 0 2.5%; }
  #mainMenu li { margin: 0 4px; }
  .rankingButton {
    height: 30px;
    padding: 0 8px;
    margin-left: 8px;
    font-size: 12px;
    letter-spacing: 0.02em;
  }
}

/* 768〜880px：ロゴは縮小しない。ナビ文字だけ12pxに戻し、ランキング最小で収める */
@media (min-width: 768px) and (max-width: 880px) {
  #mainHeader_wrapper { margin: 0 1%; }
  #mainHeader_annexLogo { margin-left: 5px; }
  #mainMenu li { margin: 0 2px; font-size: 12px !important; }
  #mainMenu a .en,
  #mainMenu a span { font-size: 12px !important; }

  /* ランキングを最小幅に（文字・高さも小さく）*/
  .rankingButton {
    height: 28px;
    padding: 0 5px;
    margin-left: 5px;
    font-size: 11px;
    letter-spacing: 0;
  }
}

/* ===========================================================
   背景の飾り（鳳凰ロゴをさりげなく上下左右にランダム配置）
   - 全ページ共通。固定配置で本文の背後に薄く敷く
   - pointer-events:none で操作の邪魔をしない
=========================================================== */
/* body の地色を最背面レイヤーへ退避し、その上に飾り→本文の順で重ねる */
body {
  background-color: transparent !important;
}
#bgDecorBase {
  position: fixed;
  inset: 0;
  z-index: -4;
  background-color: #f6f6f6;  /* 元の body 地色 */
  pointer-events: none;
}

/* 背景の鳳凰飾り（元サイト準拠：右側に配置）。パララックスで動く装飾なので残す。
   #bgDecor は全画面の透明コンテナ。中の d1 に鳳凰を描画（d2は重なり防止で非表示） */
#bgDecor {
  position: fixed;
  inset: 0;
  z-index: -2;             /* 地色の前面・本文の背後 */
  pointer-events: none;
  overflow: hidden;
  will-change: transform;  /* パララックスでmain.jsがtranslate3dを更新 */
}
#bgDecor .bgDecor_item {
  position: absolute;
  display: block;
  background: url("decor-phoenix.png") center / contain no-repeat;
}
/* 右上の鳳凰 */
#bgDecor .d1 {
  top: 2vw;
  right: -6vw;
  width: 69vw;
  height: 69vw;
  max-width: 1020px;
  max-height: 1020px;
}
/* d2〜d6 は非表示（d1とd2が重なって二重・濃く見えるのを防ぐ） */
#bgDecor .d2,
#bgDecor .d3,
#bgDecor .d4,
#bgDecor .d5,
#bgDecor .d6 { display: none; }

@media (max-width: 767px) {
  #bgDecor .d1 {
    top: 10vw;
    right: -16vw;
    width: 117vw;
    height: 117vw;
  }
}

/* スクロール追従する巨大な鳳凰イラスト（#top_illust = position:fixed の logo-illust.svg）を削除。
   HTML側からも除去済みだが、CSSでも保険で非表示にする */
#top_illust { display: none !important; }

/* ===========================================================
   現在のご利用状況（カウントダウンタイマー）
   元 assets/css/header.css + index.php + 元サイトスクショに忠実
   PC: 最大1010px中央・白地ボーダーなし・9卓＋黒密着
   SP: メイン画像と同じ幅・外枠ボーダーのみ(下地透過)・タイトル下のボーダーは切る
       卓間ぎゅっと・角丸なし・黒ボックスの数字を大きく
=========================================================== */
.state_outer {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1042px;          /* 青874 + 余白11 + 黒157 = 1042 */
  margin: 40px auto 24px;     /* 上：バーと重ならない / 下：詰める */
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
}
@media (min-width: 768px) {
  #mainImage_slider {
    max-width: 1042px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* タイトル＋一言コメント（PC:左寄せ・コメント無しでもスペース確保）*/
.state_head {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 1.6em;
  padding-left: 0.5em;
  margin-bottom: 0.4em;
  min-height: 1.8em;
}
.state_ttl { font-weight: bold; font-size: 24px; }
.state_word { font-size: 18px; flex: 1 1 auto; }

/* 卓の並び（隙間なしベタ塗り青）*/
.shop_box { display: flex; justify-content: center; }
.shop_box p {
  color: rgb(255,255,255);
  font-size: 16px;
  margin: 0;
  padding: 1em 0;
  text-align: center;
  line-height: 1.6;
  box-sizing: border-box;
}
.shop_box strong { font-size: 32px; font-weight: bold; }
.shop_box p.shop_play_11,
.shop_box p.shop_play_12,
.shop_box p.shop_play_13,
.shop_box p.shop_play_14 {
  background: rgb(0,121,194);
  flex: 1 1 0;
  min-width: 0;
}
/* 黒ボックス */
.shop_box p.shop_wait_4 {
  background: rgb(0,0,0);
  font-size: 15px;
  line-height: 1.9;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 0 0 147px;          /* 黒枠を合計10px縮小（157→147）→ 青枠が10px広がる */
  width: 147px;
  margin-left: 11px;        /* 青枠との余白11px */
}
.shop_box p.shop_wait_4 strong { font-size: 21px; margin: 0 1px; }
.shop_box p.shop_wait_4 .wl { display: block; }
.shop_box p.shop_wait_4 .wl-now { font-size: 13px; margin-top: 6px; }

/* PC: 10卓目の空セルは隠す */
@media screen and (min-width: 768px) {
  .shop_box p.shop_empty { display: none; }
}

/* ===== スマホ ===== */
@media screen and (max-width: 767px) {
  /* メイン画像のSP横幅（margin 5%）に外枠を合わせる */
  .state_outer {
    margin: 0 5% 50px;
    width: auto;
    border: 1px solid rgb(204,204,204);
    background: transparent;       /* 下地は透ける */
    padding: 0 0 14px;
  }
  /* タイトル：中央。下のボーダーは切る（白背景で線を隠す）*/
  .state_head {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding-left: 0;
    margin: 0 auto 12px;
    min-height: 0;
    transform: translateY(-50%);
    width: max-content;
    background: #f6f6f6;           /* 上枠線を文字部分だけ隠す */
    padding-left: 14px;
    padding-right: 14px;
  }
  .state_ttl { font-size: 18px; }
  .state_word { display: none; }
  /* タイトルと青枠の間を詰める */
  .state_head + .shop_box,
  .shop_box:first-of-type { margin-top: -19px; }

  /* 卓：5列・隙間なし・角丸なし・ぎゅっと寄せる */
  .shop_box { flex-wrap: wrap; margin: 0 6px; }   /* 左右余白を詰めてセル幅を確保 */
  /* ↓ iOSの「文字を大きく」(Dynamic Type)設定でも詰まらないよう、
       セル内の文字は全て vw(画面幅基準)で指定。px指定だと端末の文字拡大倍率が
       掛かってセル幅を超える。vw は画面幅追従なので拡大設定の影響を受けない。 */
  .shop_box p { font-size: 3.2vw; padding: 8px 0; white-space: nowrap; }  /* ﾗｽﾊﾝ0人/ｽﾀｯﾌ0人 の改行防止 */
  .shop_box strong { font-size: 5vw !important; }   /* 0の数字 */
  .shop_box strong[id^="CountDown"] {
    font-size: 4.6vw !important;                    /* 00:00：セル幅(画面の約1/5)に必ず収まる */
    letter-spacing: -0.5px;
  }
  .shop_box p.shop_play_11,
  .shop_box p.shop_play_12,
  .shop_box p.shop_play_14,
  .shop_box p.shop_empty {
    flex: 0 0 20%;
    width: 20%;
    border-radius: 0;            /* 角丸なし */
  }
  .shop_box p.shop_empty { display: block; background: rgb(0,121,194); }

  /* 1段目と2段目の間に余白（6卓目から改行＆上に余白）*/
  .shop_box p.sp-first,
  .shop_box p.sp-first ~ p { margin-top: 10px; }

  /* 黒ボックス：全幅・横並び・最下段。数字を大きく */
  .shop_box p.shop_wait_4 {
    flex: 0 0 100%;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
    gap: 0.5em;
    font-size: 3.7vw;          /* 文字拡大設定でも1行に収まるよう vw */
    line-height: 1.8;
    border-radius: 0;
    margin-top: 10px;
    margin-left: 0;           /* PC用の左余白11pxを打ち消す（SPで右ズレ防止） */
    flex-wrap: wrap;          /* 万一あふれても折り返して見切れ防止 */
  }
  .shop_box p.shop_wait_4 .wl { display: inline-block; }
  .shop_box p.shop_wait_4 .wl-now { font-size: 3.4vw; }
  .shop_box p.shop_wait_4 strong { font-size: 5.5vw; }   /* 0名/1名の数字を大きく */

  /* 一言コメント枠（黒ボックスの下）*/
  .state_word_sp {
    display: block;
    text-align: center;
    font-size: 18px;
    margin: 12px 10px 0;
    min-height: 1.6em;
  }
}
@media screen and (min-width: 768px) { .state_word_sp { display: none; } }

/* ===== 離れ：ベース色を #11999e に（本店は青 rgb(0,121,194) のまま） ===== */
.state_outer--hanare .shop_box p.shop_play_11,
.state_outer--hanare .shop_box p.shop_play_12,
.state_outer--hanare .shop_box p.shop_play_13,
.state_outer--hanare .shop_box p.shop_play_14 {
  background: #11999e;
}
@media screen and (max-width: 767px) {
  .state_outer--hanare .shop_box p.shop_empty { background: #11999e; }
}

/* メイン画像上のニュースカード：スマホのみ非表示（PCは画像内右下に表示） */
@media screen and (max-width: 767px) {
  #mainImage_news { display: none !important; }
}

/* ページネーションバーをメイン画像の下（外側）に配置 */
#mainImage_slider .swiper-pagination {
  bottom: -28px !important;   /* 画像の下端の外に出す */
}
@media (min-width: 768px) {
  #mainImage_slider .swiper-pagination {
    bottom: -30px !important;
  }
}

/* メイン画像：最大幅1042pxに達したら高さも比率で固定（1920px等で下に隙間が出るのを防ぐ）
   画像アスペクト比 640/1200 = 0.533 → 1042px幅なら高さ約555px */
@media (min-width: 768px) {
  .topPage_swiper {
    height: 40vw;
    max-height: 555px;     /* 1042px幅時の画像高さで頭打ち */
  }
  .topPage_swiper .swiper-slide,
  .topPage_swiper .slide-img { height: 100%; }
  .topPage_swiper .slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* ニュースカードをメイン画像内の右下に配置（PC） */
@media (min-width: 768px) {
  #mainImage_slider { position: relative; }
  #mainImage_news.newsItem_container {
    position: absolute;
    right: 20px;           /* 画像右端から20px内側 */
    bottom: 40px;
    z-index: 3;
    margin: 0;
    max-width: 340px;
  }
}

/* ABOUTセクション上の隙間を詰める（元 margin-top:12〜16vw が広すぎ） */
#top_about {
  margin-top: 3vw !important;
}
@media (min-width: 768px) {
  #top_about { margin-top: 40px !important; }
}

/* ===========================================================
   お問い合わせフォーム（contact/index.html）
   サブページのトーンに合わせる：白カード地・青アクセント・必須は赤
=========================================================== */
.contactForm_req_note {
  display: inline-block;
  margin-top: 6px;
  font-size: 14px;
  color: #888;
}
.contactForm {
  max-width: 760px;
  margin: 36px auto 0;
}
.contactForm_row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid #e5e5e5;
}
.contactForm_row:first-of-type { border-top: 1px solid #e5e5e5; }

.contactForm_label {
  flex: 0 0 220px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  color: #333;
  padding-top: 8px;
}
.contactForm_req {
  display: inline-block;
  padding: 2px 9px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  background: #d8403a;          /* 必須バッジ：赤 */
  border-radius: 3px;
  letter-spacing: 0.04em;
}
.contactForm_field {
  flex: 1 1 320px;
  min-width: 0;
}

/* 入力欄 */
.contactForm_field input[type="text"],
.contactForm_field input[type="email"],
.contactForm_field input[type="tel"],
.contactForm_field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  font-size: 16px;            /* 16px：iOSで自動ズームしない */
  font-family: inherit;
  color: #222;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contactForm_field input::placeholder,
.contactForm_field textarea::placeholder { color: #aaa; }
.contactForm_field input:focus,
.contactForm_field textarea:focus {
  outline: none;
  border-color: rgb(0,121,194);
  box-shadow: 0 0 0 3px rgba(0,121,194,.15);
}
.contactForm_field textarea { resize: vertical; line-height: 1.6; }

/* 文字数カウンタ */
.contactForm_counter {
  margin-top: 6px;
  text-align: right;
  font-size: 13px;
  color: #999;
}

/* ラジオ */
.contactForm_radios {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding-top: 8px;
}
.contactForm_radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #333;
  cursor: pointer;
}
.contactForm_radio input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: rgb(0,121,194);
  cursor: pointer;
}

/* 送信ボタン */
.contactForm_submitWrap {
  margin-top: 36px;
  text-align: center;
}
.contactForm_submit {
  min-width: 280px;
  padding: 16px 40px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgb(0,121,194);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,.18);
  transition: background .15s ease, transform .1s ease, box-shadow .15s ease;
}
.contactForm_submit:hover { background: rgb(0,103,166); box-shadow: 0 4px 14px rgba(0,0,0,.24); }
.contactForm_submit:active { transform: translateY(1px); }

/* SP：ラベルと入力を縦積み */
@media (max-width: 767px) {
  .contactForm { margin-top: 24px; }
  .contactForm_row {
    flex-direction: column;
    padding: 18px 0;
  }
  .contactForm_label {
    flex: none;
    width: 100%;
    padding-top: 0;
    margin-bottom: 10px;
    font-size: 15px;
  }
  .contactForm_field { flex: none; width: 100%; }
  .contactForm_submit { width: 100%; min-width: 0; }
}


/* ===== 本文も外部リンクも無い記事＝クリック不可 ===== */
/* href無しの <a.news-disabled> はクリック無効・カーソル通常 */
.newsItem_container.is-nolink a.news-disabled {
  cursor: default;
  pointer-events: none;
}
.newsItem_container.is-nolink a.news-disabled:hover {
  opacity: 1;
}
/* 本文あり＝タイトルにアンダーライン（クリックして読めることを示す） */
.newsItem_container.is-hasbody .newsItem_body h2,
.newsItem_container.is-hasbody .newsItem_body h3 {
  text-decoration: underline;
  text-underline-offset: 4px;
}
