@charset "UTF-8";

/* =====================================================
   common.css (BEM版)
   - ベースタイポグラフィ
   - レイアウト共通パーツ
   - ボタンなどの共通UI
   ===================================================== */

/* ------------------------------
   1. ベース（html / body / タイポ）
------------------------------ */

body {
  font-family: -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", "Segoe UI",
    "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", "YuGothic", "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #222;
}

/* 文章の基本余白 */
p {
  margin-bottom: 0.9em;
}

/* 見出し共通 */
h1,
h2 {
  line-height: 1.4;
  font-weight: 700;
}

/* リンク */
a {
  transition: opacity 0.2s ease, color 0.2s ease;
}

a:hover,
a:focus-visible {
  opacity: 0.8;
}

.pc_none {
  display: none;
}

.sp_none {
  display: block;
}

@media (max-width: 599px) {
  .pc_none {
    display: block;
  }

  .sp_none {
    display: none;
  }
}

/* ------------------------------
   2. レイアウトユーティリティ
------------------------------ */

/* 中央寄せコンテナ */
.container {
  width: min(960px, 100% - 40px);
  margin-inline: auto;
}

/* セクションの縦余白 */
main > section {
  padding-block: 48px;
}

/* スマホ寄りで少し詰める */
@media (max-width: 599px) {
  main > section {
    padding-block: 36px;
  }
}

/* ------------------------------
   3. 定義リスト（概要・応募要項など）
------------------------------ */

dl {
  margin-top: 24px;
}

dt {
  font-weight: 700;
  margin-top: 16px;
}

dt:first-of-type {
  margin-top: 0;
}

dd {
  margin-top: 8px;
}

/* ------------------------------
   4. リスト系（注意書き・補足）
------------------------------ */

/* 注意書きなど（.note） */
.note {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
  font-size: 0.875rem;
  color: #555;
}

.note__item {
  position: relative;
  padding-left: 1.4em;
}

.note__item::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

/* 補足・注意用（.ets） */
.ets {
  list-style: none;
  padding-left: 0;
  margin-top: 8px;
  font-size: 0.875rem;
  color: #555;
}

.ets__item {
  position: relative;
  padding-left: 1.2em;
}

/* 冒頭に 〈 を表示 */
.ets__item::before {
  content: "〈";
  position: absolute;
  left: 0;
  top: 0;
}

/* 末尾に 〉 を表示 */
.ets__item::after {
  content: "〉";
  margin-left: 0.1em;
}

/* ------------------------------
   5. ボタン・CTA
------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 32px;
  border-radius: 999px;
  background-color: #993333;
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 0.03em;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.16);
  border: solid 5px #fff;
}

/* バリアント：プライマリーボタン */
.btn--primary {
  background-color: #993333;
  color: #fff;
}

.btn:hover,
.btn:focus-visible {
  background-color: #993333;
}

/* CTAブロック（中央寄せ） */
.cta {
  margin-top: 32px;
  text-align: center;
}

/* ------------------------------
   6. フッター
------------------------------ */

.site-footer {
  padding: 24px 0 32px;
  text-align: center;
  font-size: 0.8125rem;
  color: #d7dce6;
  background-color: #1e1e3c;
}

.site-footer__copyright {
  display: block;
}


