@charset "utf-8";
/* CSS Document */

@media screen and (min-width:769px) and (max-width: 1023px) {

    
/* ---- Theme tokens ---- */
:root{
  --brand: #b8cfd4;        /* メインカラー */
  --brand-700: #5f8893;    /* 濃いめ差し色 */
  --ink: #1f262a;
  --muted: #6b7980;
  --paper: #ffffff;
}

/* ---- Base ---- */
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  color: var(--ink);
  line-height: 1.7;

  /* ★ 全体背景：ご指定の書き方を採用 ★ */
  background-image: url("http://hakumonsai.weblike.jp/2025/01_test/02_Yuta/Chuokikaku/img/back3.png");
  background-position: center;           /* 画像の見せたい中心点 */
  background-size: cover;                /* 画面いっぱいにフィット */
  background-repeat: no-repeat;          /* タイル状の繰り返しを無効 */
  background-attachment: fixed;          /* スクロールしても背景を固定（PCで映える） */
  background-color: #f6f9fa;             /* 読み込み中のフォールバック色 */
}

/* ページ幅と余白（PC） */
article{
  max-width: var(--maxw);
  margin: 0 7% 7%;
}

/* すべてのセクションは“面”でつながる前提（枠・影は使わない） */
section{
  position: relative;
  padding: 70px 0;   /* 縦リズムを統一 */
  border: 0;
  box-shadow: none;
}


.title{
    margin-bottom: 30px;

}

/* タイトルをフルブリード（画面いっぱいの横幅）にする */
article > .title{
  position: relative;
  left: 50%;
  transform: translateX(-50%); /* コンテナ中央から画面中央へずらす */
  width: 100vw;                /* 画面幅いっぱい */
  max-width: none;
  padding: 0 !important;
}

/* 画像自体は横100%で表示。行内隙間を消すために block に */
.title img{
  display: block;
  width: 100%;
  height: auto;    /* トリミングせず縦は自動 */
}


/* ========= 画像下端を透明フェード（背景と自然に接続） ========= */

/* フェード量の調整用（お好みで 40〜140px くらい） */
:root{
  --hero-fade-h: 50px;
}

/* まずタイトルをフル幅にしておく（もう指定済みなら不要） */
article > .title{
  position: relative;
}

/* モダンブラウザ：画像自体をマスクで下に向かって透明化 */
@supports (mask-image: linear-gradient(#000, transparent)) or
          (-webkit-mask-image: linear-gradient(#000, transparent)) {

  .title img{
    display:block;
    width:100%;
    height:auto;
    /* 下端だけをふわっと透明にする */
    -webkit-mask-image: linear-gradient(
      to bottom,
      rgba(0,0,0,1) 0%,
      rgba(0,0,0,1) calc(100% - var(--hero-fade-h)),
      rgba(0,0,0,0) 100%
    );
            mask-image: linear-gradient(
      to bottom,
      rgba(0,0,0,1) 0%,
      rgba(0,0,0,1) calc(100% - var(--hero-fade-h)),
      rgba(0,0,0,0) 100%
    );
    -webkit-mask-size: 100% 100%;
            mask-size: 100% 100%;
  }
}

/* フォールバック：マスク非対応時は下端に白系ベールを重ねて“馴染ませる” */
@supports (not (mask-image: linear-gradient(#000, transparent)) )and
(not (-webkit-mask-image: linear-gradient(#000, transparent))) {

  .title{ position: relative; }
  .title::after{
    content:"";
    position:absolute;
    left:0; right:0; bottom:0;
    height: var(--hero-fade-h);
    pointer-events:none;
    /* body背景が見えない環境でも違和感が出ないよう淡い白＋ブランド色で馴染ませ */
    background:
      linear-gradient(to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,.9) 80%, rgba(255,255,255,1) 100%),
      linear-gradient(to bottom,
        rgba(184,207,212,.08), rgba(184,207,212,0));
  }
}

/* （任意）横スクロール対策：フルブリード指定を使っている場合 */
body{ overflow-x: clip; }



/* =========================================================
   セクションの“綺麗な繋がり”演出
   ========================================================= */

/* タイトル以降は、薄いトーン差＋フェードで滑らかに接続 */


/* 境目のフェード（上端のみ） */
article > section:not(.title) + section:not(.title)::before{
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 56px;
  pointer-events: none;
  background: radial-gradient(120% 120% at 50% 0%,
    rgba(184,207,212,.28) 0%,
    rgba(184,207,212,.12) 40%,
    rgba(184,207,212,0) 100%);
}

/* セクション内の横幅を整える */
section > .subtitle,
section > p,
section > ul,
section > .mokuji,
section > .links > ul{
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 6px;
  text-align: center;
}


/* ---- 保険のブレイク（狭めPC） ---- */
@media (max-width: 1040px){
  section.title{ grid-template-columns: 1fr 1fr; }
  section.links ul{ grid-template-columns: repeat(2, 1fr); }
  section.mokuji ul{ grid-template-columns: repeat(3, 1fr); }
}


/* =========================================================
   目次（横並びのチップ）
   ========================================================= */
section.mokuji{
     padding-top: 32px;
     padding-bottom: 24px; 
}


section.mokuji .mokuji{
  color: var(--brand-700);
  margin-bottom: 25px;
  font-size: 33px;
  font-family: source-han-serif-jp-subset, serif;
  font-style:normal;
  font-weight: bold;
}
section.mokuji ul{
  list-style: none;
  padding: 0; 
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  font-family: "zen-kaku-gothic-new", serif;
  font-style: normal;
  font-size: 15px;
}
section.mokuji li{
  text-align: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--paper);
  color: #234048;
  transition: filter .15s ease, transform .15s ease;
}
section.mokuji li:hover{ transform: translateY(-1px); filter: brightness(1.02); }

/* 目次ボタンをアンカーに置き換えたので、aをボタン化する */
section.mokuji li{
  padding: 0; /* liの内側余白はaに移す */
}
section.mokuji li a{
  display: block;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--paper);
  color: #234048;
  text-decoration: none;
  transition: filter .15s ease, transform .15s ease, background-color .15s ease;
}
section.mokuji li a:hover{
  transform: translateY(-1px);
  filter: brightness(1.02);
}
section.mokuji li a:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(184,207,212,.6);
}

/* アンカー位置のズレ（固定ヘッダ等）対策。必要に応じて値を調整 */
section{ scroll-margin-top: 100px; }  /* 以前20pxなら上書き */

/* =========================================================
   見出し / 概要 / チケット / 注意 / 問合せ / リンク
   ========================================================= */
.subtitle{
  display: block;
  font-size: 33px;
  color: var(--brand-700);
  margin-bottom: 14px;
  position: relative;
  font-family: source-han-serif-jp-subset, serif;
  font-style:normal;
  font-weight: bold;
}
.subtitle::after{
  content: "";
  display: block; height: 3px; margin-top: 10px; border-radius: 2px;
  background: linear-gradient(90deg,
    rgba(184,207,212,0) 0%,
    rgba(184,207,212,.6) 30%,
    rgba(184,207,212,0) 100%);
}

section.outline p:nth-of-type(2){
  margin-bottom: 30px;
  text-align: center;
}


section.outline p:nth-of-type(3){
  font-size: 23px;
  color: #cd694b;
}

section.outline p:nth-of-type(4){
  margin-bottom: 30px;
}


/* 概要の日時ブロックを軽くハイライト */
section.outline p:nth-of-type(5){
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(184,207,212,.14), rgba(184,207,212,.04));
  border: 1px dashed rgba(95,136,147,.35);
}

/*概要*/
section.outline p{
  font-family: "zen-kaku-gothic-new", serif;
  font-size: 16px;
  font-style:normal;
  font-weight: bold;
}

/* チケット */
.ticketsite{
  color: var(--brand-700);
  text-decoration: none;
  border-bottom: 2px solid rgba(184,207,212,.55);
  padding-bottom: 2px;
  font-family: "zen-kaku-gothic-new", serif;
  font-size: 15px;
  font-style:normal;
}
.ticketsite:hover{ filter: brightness(1.05); }

section.ticketinfo > .subtitle{
    color:var(--brand-700);
}


/* ===== Ticket table ===== */
.ticket-table-wrap{
  max-width: 880px;
  margin: 0 auto 0px;
}

.ticket-table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--paper);
  border: 1px solid rgba(0,0,0,.06);
  overflow: hidden; /* 角丸を有効化 */
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
  font-family: "zen-kaku-gothic-new", serif;
  font-size: 15px;
  font-weight: bold;
}

.ticket-table thead th{
  text-align: left;
  padding: 14px 16px;
  background: var(--brand);
  color: var(--ink);
  font-weight: 700;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.ticket-table tbody th[scope="row"]{
  width: 32%;
  white-space: nowrap;
  padding: 14px 16px;
  font-weight: 800;
  background-color: var(--brand);
  color: var(--ink);
  border-bottom: 1.5px solid rgba(0,0,0,.1);
}

.ticket-table tbody td{
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,0,0,.1);
  vertical-align: middle;
  border-left: 1px solid rgba(0,0,0,.1);
}

/* 最終行のボーダー消し */
.ticket-table tbody tr:last-child td,
.ticket-table tbody tr:last-child th{
  border-bottom: none;
}

/* 期間セルを2行共有して見やすく（中央寄せ・薄い枠） */
.ticket-table .period-share{
  vertical-align: middle;
  border-left: 1px solid rgba(0,0,0,.1);
  border-bottom: 0;
}

   

/* 狭い画面対策（必要なら） */
@media (max-width: 900px){
  .ticket-table{ font-size: 12px; }
  .ticket-table tbody th[scope="row"]{ width: 30%; }
}



/* ticketinfo 内では br を必ず改行として扱う */
section.ticketinfo p{
  display: block !important;     /* p が flex/grid になっていても元に戻す */
  white-space: normal !important;
}

section.ticketinfo br{
  display: block !important;     /* 改行を強制 */
  line-height: 0;                /* 余計な隙間が出る場合は 0〜0.2em で微調整 */
  margin: 0; padding: 0;
}

/* もしどこかで br を消している指定があれば打ち消す */
section.ticketinfo br + br{ display: block !important; }



section.ticketinfo p{
  font-family: "zen-kaku-gothic-new", serif;
  font-size: 15px;
  font-style:normal;
  font-weight: bold;
  align-items: center;
  color:var(--ink);
}
section.ticketinfo br + br{ display: none; }




/* 行見出しの列を少し狭め＆背景をうっすら */
.ticket-table--meta tbody th[scope="row"]{
  width: 26%;
  white-space: nowrap;
  background-color: var(--brand);
}

/* テーブル下の注意書き（既存のticket-noteと同等） */
.ticket-note{
  margin: 8px 0 0px;
  font-size: 13px;
  color: var(--muted);
}



/* モバイル寄りの画面での幅調整（任意） */
@media (max-width: 1040px){
  .ticket-table--meta tbody th[scope="row"]{ width: 32%; }
}
/* ========== アコーディオン（ticketinfo用） ========== */

/* summary のデフォルト矢印を消す（Safari/Chrome） */
.acc-summary::-webkit-details-marker{ display:none; }

/* 外枠（カード風） */
section.ticketinfo details.acc{
  max-width: 950px;
  margin: 16px auto 24px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  overflow: clip; /* 角丸内に収める */
}

/* 見出し（元 .big 相当） */
section.ticketinfo .acc-summary{
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  font-family: "zen-kaku-gothic-new", serif;
  font-weight: bold;
  font-size: 20px;
  color: var(--ink);
  user-select: none;
}

/* 見出しの右側アイコン（＋／−） */
section.ticketinfo .acc-summary::after{
  content: "＋";
  font-weight: 900;
  color: var(--brand-700);
  transition: transform .25s ease, opacity .25s ease;
}
section.ticketinfo details.acc[open] > .acc-summary::after{
  content: "－";
}

/* ホバー時の軽い反応 */
section.ticketinfo .acc-summary:hover{
  background: linear-gradient(180deg, rgba(184,207,212,.12), rgba(184,207,212,0));
}

/* 開閉アニメ：gridの0fr→1frで高さをスムーズに */
section.ticketinfo .acc-panel{
  display: grid;
  grid-template-rows: 0fr;                /* 閉じているときは高さゼロ */
  transition: grid-template-rows .35s ease;
}
section.ticketinfo .acc-panel-inner{
  overflow: hidden;                       /* 角丸内に収める */
  padding: 0 16px 16px;                   /* 開いたときの内側余白 */
}
section.ticketinfo details.acc[open] .acc-panel{
  grid-template-rows: 1fr;                /* 開時に中身分の高さへ */
}

/* キーボードフォーカス見やすく */
section.ticketinfo .acc-summary:focus-visible{
  outline: none;
  box-shadow: inset 0 0 0 3px rgba(184,207,212,.45);
  border-radius: 8px;
}





/* 注意事項 */
section.caution p{
  margin-top: 20px;
  font-weight: 700;
  font-size: 20px;
  color: var(--muted);
  font-family: "zen-kaku-gothic-new", serif;
}
section.caution ul{
  margin: 8px auto 0;
  padding-left: 1.2em;
  max-width: 880px;
  text-align: left;
  font-size: 15px;
  font-family: "zen-kaku-gothic-new", serif;
  font-weight: bold;
}
section.caution li{ margin: 4px 0; }

section.caution a{
  color: var(--brand-700);
  text-decoration: none;
  border-bottom: 2px solid rgba(184,207,212,.55);
}
.renban{
    line-height: 23px;
}

/* お問い合わせ */
section.contact a{
  color: var(--brand-700);
  text-decoration: none;
  border-bottom: 2px solid rgba(184,207,212,.55);
}

section.contact p{
    font-family: "zen-kaku-gothic-new", serif;
    font-size: 15px;
    font-weight: bold;
}

section.contact a:hover{ filter: brightness(1.05); }


/* ================================
   参考リンク（整理版）
   - ボタンごとに背景画像・サイズ・位置をCSS変数で制御
   - 文字は常に前面、画像はホバー時のみ背面に表示
   ================================ */

/* デフォルト画像（各ボタンで未指定の場合のフォールバック） */
:root{
  --link-default-image: url("http://hakumonsai.weblike.jp/2025/01_test/02_Yuta/Chuokikaku/img/back3.png");
  --link-base-color: #ffffff; /* 追加：画像の“下地”の色（必要なら変更可） */
  --link-veil-1: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.58)); /* 可読性ベール */
  --link-veil-2: linear-gradient(90deg, rgba(184,207,212,.18), rgba(184,207,212,0));    /* #b8cfd4帯 */
}

/* リストのレイアウト（従来どおり） */
section.links ul{
  list-style: none;
  padding: 0; margin: 10px auto 0;
  max-width: 880px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  font-family: "zen-kaku-gothic-new", serif;
  font-size: 15px;
  font-weight: bold;
}

/* ボタンのベース */
section.links li a{
  position: relative;
  display: block;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 12px;
  color: var(--ink);
  text-decoration: none;
  overflow: hidden;         /* 角丸に沿わせる */
  transition: transform .18s ease, border-color .18s ease,
              background-size .35s ease, background-position .35s ease;
}

/* テキストは常に最前面 */
section.links li a,
section.links li a *{
  position: relative;
  z-index: 1;
  /* さらに読みやすくしたければ有効化
  text-shadow: 0 1px 0 rgba(255,255,255,.55), 0 0 10px rgba(255,255,255,.35);
  */
}

/* 変数のデフォルト値（各ボタンで上書き可能） */
section.links li a{
  --link-image: var(--link-default-image); /* 背景画像 */
  --link-pos: 50% 50%;                    /* 画像の見せる中心 */
  --link-size: 100% auto;                 /* 通常サイズ（% / cover / contain） */
  --link-size-hover: var(--link-size);    /* ホバー時のサイズ（未指定なら同じ） */
}

section.links li a,
section.links li a *{
  text-shadow: 0 1px 0 rgba(255,255,255,.65),
               0 0 10px rgba(255,255,255,.40);
}



/* ホバー/フォーカス：白ベース + ベール2枚 + 画像（外側は常に白） */
section.links li a:hover,
section.links li a:focus-visible{
  background:
    var(--link-veil-1) 0 0 / 100% 100% no-repeat,  /* 可読性ベール */
    var(--link-veil-2) 0 0 / 100% 100% no-repeat,  /* ブランド帯 */
    var(--link-image) var(--link-pos) / var(--link-size-hover) no-repeat;
  background-color: var(--link-base-color);       /* ★ 画像の外側は常に白 */
  border-color: var(--brand);
  transform: translateY(-2px);
}


/* キーボード操作の視認性 */
section.links li a:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(184,207,212,.6);
}

/* モーション控えめ設定に追従（任意） */
@media (prefers-reduced-motion: reduce){
  section.links li a{ transition: none; }
}

/* ================================
   ボタンごとの画像・サイズ・位置（ここで調整）
   - --link-size / --link-size-hover を小さくすると画像が小さくなります
   - “cover / contain / 120% auto / 80% auto” など好みで指定
   ================================ */

   /* 例：Instagram（写真系）→ 画像を少し小さめで上寄せに */
section.links a.hakujitsuInstagram{
  --link-image: url('http://hakumonsai.weblike.jp/2025/01_test/02_Yuta/Chuokikaku/img/logo.png');
  --link-size: 30% auto;
  --link-size-hover: 70% auto;
  --link-pos: 50% 40%;
}

/* 例：Xロゴは小さめ → ホバーで少し大きく */
section.links a.hakujitsuX{
  --link-image: url("http://hakumonsai.weblike.jp/2025/01_test/02_Yuta/Chuokikaku/img/logo.png");
  --link-size: 30% auto;         /* 通常：小さめ */
  --link-size-hover: 70% auto;   /* ホバー時：少し拡大 */
  --link-pos: 50% 40%;
}

/* 例：チケット（ロゴ想定）→ 枠内に収めたいので contain 推奨
   ※ 画像URLは用意できたタイミングで差し替えてください */
section.links a.ticketsite{
  --link-image: url('http://hakumonsai.weblike.jp/2025/01_test/02_Yuta/Chuokikaku/img/Ticket.png');
  --link-size: contain;
  --link-size-hover: 80% auto;    /* ズームさせない */
  --link-pos: 50% 50%;
}

/* 必要に応じて他のボタンも同様に上書き */
section.links a.kosikiWeb{
  --link-image: url('http://hakumonsai.weblike.jp/2025/01_test/02_Yuta/Chuokikaku/img/NomuraKouta.jpg');
  --link-size: cover;
  --link-size-hover: 120% auto;
  --link-pos: 0% 37%;
}
section.links a.chukiInstagram{
  --link-image: url('http://hakumonsai.weblike.jp/2025/01_test/02_Yuta/Chuokikaku/img/Chukiicon.png');
  --link-size: contain;
  --link-size-hover: 65% auto;
  --link-pos: 50% 60%;
}
section.links a.chukiX{
  --link-image: url('http://hakumonsai.weblike.jp/2025/01_test/02_Yuta/Chuokikaku/img/Chukiicon.png');
  --link-size: 28% auto;
  --link-size-hover: 65% auto;
  --link-pos: 50% 60%;
}

/* ===== Splash 基本色（任意で調整） ===== */
:root{
  --brand: #b8cfd4; /* 既に定義済みならこの行は不要 */
}

/* 画面全体を覆うオーバーレイ */
#splash{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background-color:var(--brand);                     /* ← 背景は白（お好みで var(--brand)の淡い色でも） */
  opacity: 1;
  visibility: visible;
  transition: opacity .6s ease, visibility .6s ease;
}

/* アイコンの見た目 */
.splash-icon{
  width: clamp(72px, 22vmin, 240px);
  height: auto;
  display: block;
}

/* ページ本体は最初は少しだけ透明 */
.page{
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .6s ease .1s, transform .6s ease .1s;
}

/* 準備完了（JSが body に付けるフラグ）で、スプラッシュを消し、ページを表示 */
body[data-ready="true"] #splash{
  opacity: 0;
  visibility: hidden;
}
body[data-ready="true"] .page{
  opacity: 1;
  transform: none;
}

/* モーションを控えめにする環境設定に追従（任意） */
@media (prefers-reduced-motion: reduce){
  #splash, .page{ transition: none; }
}



}