@charset "UTF-8";

/* ============================================================
   CUSTOM.CSS — イベントカラー変数（企画ごとに書き換え）
   base.css のデフォルト値をここで上書きするだけ。
   base.css 自体は触らない。

   WORKFLOW:
     1. :root の色変数を企画カラーに変更する
     2. 背景やフォントのカスタマイズはコメントアウトを外して追記
     3. 共通コンポーネントの変更は base.css へ
   ============================================================ */


/* ============================================================
   BRAND COLORS — 企画ごとに変更する
   ============================================================ */
:root {
    --color-main: #09102f;
    /* ページ背景色（ネイビー） */
    --color-sub1: #baa95b;
    /* メインカラー（ゴールド：ボタン・ボーダー・見出し） */
    --color-sub2: #baa95b;
    /* サブカラー */
    --color-sub3: #baa95b;
    /* アクセント */
    --color-sub4: #baa95b;
    /* アクセント濃 */
    --color-sub5: #baa95b;
    /* 薄色背景 */
    --color-local: #f1d511;
    /* 差し色 */
    --color-text: #ffffff;
    /* テキストカラー（白：暗い背景のため） */
    --color-button: #ab9535;
    /* ボタンカラー（ゴールド濃） */
    --font-family: 'Noto Sans JP', YakuHanJP, sans-serif;
}


/* ============================================================
   SECTION TITLE IMAGE — セクション見出し画像（sec_title01/02.png）
   テキスト見出し(.section-heading)の代わりに画像を全幅で表示する。
   ============================================================ */
.section-title-img {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    height: auto;
}


/* ============================================================
   SECTION HEADING — テキストセクションタイトル
   ============================================================ */
.section-heading {
    width: 100%;
    text-align: center;
    padding: 0.22rem 0.20rem 0.18rem;
    background: linear-gradient(135deg, var(--color-sub1) 0%, var(--color-sub2) 100%);
    position: relative;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0.60rem;
    height: 0.05rem;
    background: var(--color-local);
    border-radius: 0.025rem;
}

.section-heading-text {
    color: #fff;
    font-size: 0.22rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 1.2;
    font-family: var(--font-family);
    text-shadow: 0 0.01rem 0.03rem rgba(0, 0, 0, 0.2);
}


/* ============================================================
   BACKGROUND (任意)
   企画の背景色・パターンが必要な場合にコメントアウトを外す
   ============================================================ */
/* body { background-color: #f0e8ff; } */


/* ============================================================
   CONTENT-HOLDER BORDER VARIANTS (任意)
   イベントカラーの枠 + 影をつける場合
   ============================================================ */
.content-holder {
    border: 0.01rem solid #fff9;
    box-shadow: unset;
    border-radius: 0rem;
    background-color: var(--color-main);
    padding: 0.1rem 0.15rem;
}

.content-holder:before {
    content: "";
    background-color: #fff9;
    width: 0.01rem;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0.05rem;
}

.content-holder:after {
    content: "";
    background-color: #fff9;
    width: 0.01rem;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0.05rem;
}


.iconButton {
    border-radius: 0rem;
}

.iconButton::before {
    content: "";
    background-color: #fff;
    width: 0.01rem;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0.05rem;
    border: unset;
}

.iconButton::after {
    content: "";
    background-color: #fff;
    width: 0.01rem;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0.05rem;
    border: unset;
}


/* ============================================================
   DISABLED — 触れないことを視覚的に明確にする
   企画ごとの button-bg / グラデを上書きするため !important で最優先化。
   base.css の .iconButton[disabled] と同じ gray グラデを採用。
   ============================================================ */
.iconButton[disabled],
.iconButton.disabled,
.iconButton:disabled,
.iconButton[disabled].button-bg,
.iconButton.disabled.button-bg,
.iconButton:disabled.button-bg {
    background: linear-gradient(to right, gray, darkgray) !important;
    color: #fff !important;
    pointer-events: none !important;
    cursor: default !important;
}

/* disabled の内側白枠も無効化（押せそうに見えないよう） */
.iconButton[disabled]::before,
.iconButton.disabled::before,
.iconButton:disabled::before {
    border-color: rgba(255, 255, 255, 0.4) !important;
}


/* ============================================================
   STAMP / AR GRID (任意)
   ARフレーム数が異なる場合に列数を変更する
   ============================================================ */
/* .icon-grid-4 { grid-template-columns: repeat(3, 1fr); } */


/* ============================================================
   FONT OVERRIDE (任意)
   企画カスタムフォントが必要な場合 — info.inc.php の Google Font
   リンクと合わせて設定する
   ============================================================ */
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap'); */
/* main { font-family: "Noto Serif JP", sans-serif; } */
/* .fontEvent { font-family: "Noto Serif JP", sans-serif !important; } */


/* ============================================================
   SECTION HEAD OVERLAP (任意)
   セクションタイトルを content-holder に被せるレイアウト
   ============================================================ */
/* .section-head-overlap {
    position: relative;
    z-index: 1;
    margin-bottom: -0.40rem;
}
.section-head-overlap + .content-holder {
    padding-top: 0.30rem;
} */


/* ============================================================
   LINKS — 暗いネイビー背景でも読めるよう差し色（ゴールド）にする
   base.css の caution リンクは blue でコントラスト不足のため上書き
   （breakmycase と同じ方式: var(--color-local) を使用）
   ============================================================ */
ul.caution li a,
.content-holder a {
    color: var(--color-local);
}


/* ============================================================
   FONT UTILITY OVERRIDE — base.css のバグ修正 + caution の強制統一
   base.css 末尾 (line 1106) で .fontNotoSans が var(--font-family) で
   上書きされており、Noto Sans JP に切り替わらない。custom.css は base.css
   の後で読み込まれるためここで実フォント名を強制する。
   caution 系は class 指定有無に関わらず常に Noto Sans JP で固定する
   (本文の event フォントと視覚的に分離するため)。
   ============================================================ */
.fontNotoSans,
.fontNotoSans *,
.caution,
.caution *,
ul.caution,
ul.caution li,
ul.caution li a {
    font-family: "Noto Sans JP", YakuHanJP, sans-serif !important;
}