@charset "UTF-8";

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

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


/* ============================================================
   BRAND COLORS — 企画ごとに変更する
   ============================================================ */
:root {
   --color-main: #006400;
   /* ページ背景色 */
   --color-content: #c9b9a9;
   /* コンテンツ背景色 */
   --color-sub1: #006400;
   /* メインカラー（青：ボタン・ボーダー・見出し） */
   --color-sub2: #006400;
   /* サブカラー（濃い青：グラデーション端） */
   --color-sub3: #006400;
   /* アクセント（ピンク） */
   --color-sub4: #006400;
   /* アクセント濃（ピンク濃） */
   --color-sub5: #d9534f;
   /* 薄青背景 */
   --color-local: #f1d511;
   /* 差し色（黄色） */
   --color-text: #1a1a2e;
   /* テキストカラー */
   --color-button: #000;
   /* ボタンカラー */
   --font-family: 'M PLUS Rounded 1c', YakuHanJP, sans-serif;
}


/* ============================================================
   SECTION HEADING — テキストセクションタイトル
   ============================================================ */
.section-heading {
   width: 100%;
   padding-top: 0.15rem;
   text-align: center;
   position: relative;
}

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

.section-heading-text {
   color: var(--color-black);
   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); */
   text-shadow: unset;

}

.contents-title {
   text-align: center;
   margin-bottom: 0.10rem;
}

.contents-title .titleBorder {
   display: inline-block;
   /* background-color: var(--color-sub1); */
   color: var(--color-sub1);
   border: 0.03rem solid var(--color-sub1);
   padding: 0.06rem 0.20rem;
   border-radius: 0;
   font-weight: 700;
   font-size: 0.20rem;
   line-height: 1;
   -webkit-font-smoothing: antialiased;
}


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


/* ============================================================
   CONTENT-HOLDER BORDER VARIANTS (任意)
   イベントカラーの枠 + 影をつける場合
   ============================================================ */
/* .content-holder.sub1-border {
    border: 3px solid var(--color-sub1);
    box-shadow: 0.04rem 0.04rem 0 var(--color-sub1);
} */

.content-holder {
   background-color: var(--color-content);
   border: 0.02rem solid var(--color-black);
   box-shadow: unset;
   border-radius: 0rem;
   margin-top: 0.08rem;
}


/* ============================================================
   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;
} */