@charset "UTF-8";
/**
 * _assets/scss/style.scss
 *
 * @format
 */
/** メインエントリーファイル */
/**
 * =========================================
 * デザイントークン（色・フォント・余白など）
 * =========================================
 *
 * @format
 */
/* ------------------------------
   フォント
------------------------------ */
/* ------------------------------
   カラー
------------------------------ */
/* ブランドカラー（きんまり商店街トーンに合わせ調整OK） */
/* 背景カラー（きんまり商店街トーンに合わせ調整OK） */
/* テスト用背景カラー（テスト用目立ちカラー） */
/* 文字色 */
/* 面（背景系） */
/* アクセント（購入ボタンなど） */
/* 危険系ボタン用（削除・注意書きなど） */
/* ------------------------------
   余白（Spacing）
   8px ベースのモジュールスケール
------------------------------ */
/* ------------------------------
   余白（Spacing）
   8px ベースのモジュールスケール
------------------------------ */
/* ------------------------------
   シャドウ（統一）
------------------------------ */
/**
 * _assets/scss/_breakpoints.scss
 *
 * @format
 */
/** ブレイクポイントとメディアクエリ用ミックスイン */
/**
 * _assets/scss/style.scss
 *
 * @format
 */
/** メインエントリーファイル */
/**
 * _assets/scss/_mixins.scss
 *
 * @format
 */
/** 汎用ミックスイン */
/**
 * _assets/scss/_reset.scss
 *
 * @format
 */
/** モダンな軽量リセット */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
  background: transparent;
  border: none;
}

textarea {
  resize: vertical;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * _assets/scss/style.scss
 *
 * @format
 */
/** メインエントリーファイル */
/**
 * _assets/scss/_base.scss
 *
 * @format
 */
html {
  font-size: 16px;
}

body {
  font-family: "Zen Old Mincho", serif;
  line-height: 1.7;
  color: #111;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 12px;
}

figure {
  margin: 0;
}

p {
  margin: 0 0 12px;
}

a:hover {
  text-decoration: underline;
}

img {
  height: auto;
}

.zen-old-mincho-regular {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.zen-old-mincho-medium {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
}

.zen-old-mincho-semibold {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
}

.zen-old-mincho-bold {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
}

.zen-old-mincho-black {
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-style: normal;
}

/**
 * _assets/scss/style.scss
 *
 * @format
 */
/** メインエントリーファイル */
/**
 * _assets/scss/_layout.scss
 *
 * @format
 */
.pc-br {
  display: inline;
}

.sp-br {
  display: none;
}

@media (max-width: 600px) {
  .pc-br {
    display: none;
  }
  .sp-br {
    display: inline;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================
   大理石背景セクション
   ========================================= */
.section--marble {
  /* 背景色（画像読み込み前／薄くトーンを合わせる用） */
  background-color: #ff0000;
  /* 大理石テクスチャ */
  background-image: url("../images/bg-section-marble.webp");
  background-repeat: repeat;
  background-size: 480px auto;
  /* 余白（section 共通の padding があるなら省略してもOK） */
  padding-block: 48px;
}

/* SP で少しタイトにしたければおまけでこんなのもアリ */
@media (max-width: 600px) {
  .section--marble {
    padding-block: 32px;
    background-size: 360px auto;
  }
}
/* =========================================
   全体ラッパー
   ========================================= */
.l-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* メインコンテンツ共通 */
.l-main {
  flex: 1 1 auto;
  padding-block: 0;
}

/* =========================================
   ヘッダー（背景画像バージョン）
   ========================================= */
.l-header {
  position: relative;
  width: 100%;
  /* ← 背景画像を敷く */
  background-image: url("../images/header_bg.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 2;
  /* 高さを比率で確保（画像比率：おそらく横2000 × 縦250 くらい） */
  padding-top: 12%;
  /* 枠線 & 影は不要なら消してOK */
  border-bottom: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
}

/* 内側コンテンツ（ロゴとボタン）は背景の上に重ねる） */
.l-header__inner {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 16px;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 12px;
  /* 背景が濃い部分と重なるなら白文字にしたほうが見やすい */
  color: #fff;
}

/* ロゴ枠（今は使わないので非表示） */
.site-header__logo img {
  display: none;
}

/* 「ご案内」ボタンだけ表示 */
.site-header__menu-button {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9999;
  padding: 12px 30px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #12719e, #222);
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.site-header__menu-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
}

/* SP ではもう少し高さ抑えてもOK */
@media (max-width: 600px) {
  .l-header {
    padding-top: 18%;
  }
  .l-header__inner {
    padding-inline: 4vw;
  }
}
/* =========================================
   ハンバーガーメニュー（完全版）
   ========================================= */
/* 背景の黒フェード */
.global-menu {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.8);
  padding: 40px 16px;
  display: none;
}

/* 開いた状態 */
.global-menu.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==== ボタンの並び：PC（3列） ==== */
.global-menu__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 32px;
  max-width: 900px;
  width: 100%;
  justify-items: center;
}

/* <li> は透明でOK */
.global-menu__item {
  background: transparent;
}

/* ==== 青いピル型メニュー ==== */
.global-menu__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(180px, 22vw, 260px);
  padding: 14px 0;
  border-radius: 999px;
  /* 青グラデ */
  background: linear-gradient(180deg, #2ea4ff 0%, #0060d0 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  /* 白フチ + 強めグロー + 下影 */
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85), 0 0 24px rgba(255, 255, 255, 0.9), 0 10px 24px rgba(0, 0, 0, 0.35);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

/* ホバー時：光量UP ＆ 少し浮く */
.global-menu__link:hover,
.global-menu__link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 0 2px rgb(255, 255, 255), 0 0 30px rgb(255, 255, 255), 0 14px 28px rgba(0, 0, 0, 0.4);
}

/* ========= SP（〜sm）：2列に変更 ========= */
@media (max-width: 600px) {
  .global-menu__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 560px;
    gap: 16px 20px;
  }
  .global-menu__link {
    max-width: 220px;
    padding: 10px 0;
    font-size: 0.9rem;
  }
}
/* =========================================
   ヒーローセクション
   ========================================= */
.hero {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

/* 背景画像レイヤー */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

/* picture / img を100%＆cover でフィル */
.hero__bg picture,
.hero__bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* 前景（書影・タイトルなど）はそのまま前面に */
.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__layout {
  display: grid;
  row-gap: 24px;
  grid-template-columns: 280px 320px 200px;
  column-gap: 8px;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin-inline: auto;
}

/* 左カラム：サブタイトル＋商品画像 */
.hero__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

/* 中央カラム：タイトル＋著者バー */
.hero__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 auto;
}

.hero__title img {
  display: block;
  max-width: 320px;
  width: 100%;
  height: auto;
}

.hero__subtitle img {
  display: block;
  width: clamp(120px, 18vw, 200px);
  height: auto;
}

.hero__product img {
  display: block;
  width: clamp(160px, 24vw, 220px);
  height: auto;
}

.hero__author-bar {
  width: 100%;
  max-width: 260px;
  padding: 12px 16px;
  color: #fff;
  text-align: center;
  font-weight: 700;
}

/* 右側バッジ */
.hero__badge {
  justify-self: flex-end;
  align-self: end;
  justify-content: flex-start;
  margin-top: 24px;
}
.hero__badge img {
  display: block;
  width: clamp(420px, 70vw, 720px);
  height: auto;
}

/* 下のキャプション */
.hero__caption {
  margin-top: 24px;
  font-size: 0.85rem;
  color: #666;
}

/* =========================================
   SP（～sm）専用ヒーローレイアウト
   ========================================= */
@media (max-width: 600px) {
  .hero {
    padding-block: 8px;
  }
  .hero__inner {
    position: relative;
    padding-inline: 2vw;
    max-width: 100%;
  }
  /* SP 全体レイアウト（縦並び） */
  .hero__layout {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }
  /* ---- タイトル ---- */
  .hero__main {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 2vw;
  }
  .hero__title {
    margin-top: -4vw;
  }
  .hero__title img {
    display: block;
    width: 46vw;
    max-width: 300px;
    height: auto;
    transform: translateX(26vw);
  }
  /* ---- サブタイトル（タイトルの左横、少し上目） ---- */
  .hero__subtitle {
    position: absolute;
    top: 18vw;
    left: 20vw;
    z-index: 2;
  }
  .hero__subtitle img {
    display: block;
    width: 32vw;
    max-width: 160px;
    height: auto;
  }
  /* ---- 書影（上め＆やや小さめ） ---- */
  .hero__side {
    order: 2;
    margin-top: 0vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3vw;
  }
  .hero__product img {
    display: block;
    width: 36vw;
    max-width: 180px;
    height: auto;
    transform: translateX(26vw);
  }
  /* ---- バッジ（書影の左に少しかぶせる） ---- */
  .hero__badge {
    position: absolute;
    bottom: 22vw;
    left: 28vw;
    z-index: 3;
  }
  .hero__badge img {
    display: block;
    width: 32vw;
    max-width: 180px;
    height: auto;
  }
  /* ---- 著者名バー：ヒーロー全体の左下固定 ---- */
  .hero__author-bar {
    position: absolute;
    left: -1vw;
    bottom: -3vw;
    max-width: 240px;
    margin: 0;
    transform: none;
    text-align: center;
  }
  .hero__caption {
    margin-top: 24px;
    text-align: center;
  }
}
/* =========================================
押さえのコピー
   ========================================= */
/* 中身（テキストや画像）は前面に出す */
.hero__copy_bottom {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 100vw;
  background-color: #000;
  text-align: center;
}

.hero__copy_bottom img {
  width: 80%;
  margin-inline: auto;
}

/* スマホ時は少しタイトに */
@media (max-width: 600px) {
  .hero__copy_bottom {
    max-width: 1080px;
    margin-inline: auto;
    padding-inline: 16px;
    position: relative;
    z-index: 1;
    margin: 0;
    width: 100ww;
  }
  .hero__copy_bottom img {
    width: 100%;
  }
}
/* =========================================
   共通セクション
   ========================================= */
.section {
  padding-block: 48px;
}

.section__header {
  text-align: center;
  margin-bottom: 32px;
}

.section__title {
  font-size: 1.8rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.section__subtitle {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #666;
}

/* スマホ時は少しタイトに */
@media (max-width: 600px) {
  .section {
    padding-block: 32px;
  }
  .section__title {
    font-size: 1.4rem;
  }
}
/* =========================================
   大理石背景セクション
   ========================================= */
.section--marble {
  /* 大理石テクスチャ */
  background-image: url("../images/bg-section-marble.webp");
  background-repeat: repeat;
  background-size: 480px auto;
  /* 余白（section 共通の padding があるなら省略してもOK） */
}

/* SP で少しタイトにしたければおまけでこんなのもアリ */
@media (max-width: 600px) {
  .section--marble {
    background-size: 360px auto;
  }
}
/* =========================================
   購入 & 試し読み（SVGボタン版）
   ========================================= */
.purchase-options {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.purchase-options__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

/* SVG自体のサイズ調整 */
.purchase-options__icon {
  display: block;
  width: 180px;
  max-width: 40vw;
  height: auto;
  transition: transform 0.18s ease, filter 0.18s ease;
}

/* ホバーで少しだけ浮かせる（PC想定） */
.purchase-options__item:hover .purchase-options__icon {
  transform: translateY(-3px) scale(1.03);
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.2));
}

/* SP（～sm）では縦並び＋少し小さめに */
@media (max-width: 600px) {
  .purchase-options {
    align-items: center;
    gap: 16px;
  }
  .purchase-options__icon {
    width: 160px;
    max-width: 30vw;
  }
}
/* =========================================
   イラストギャラリー
   ========================================= */
.section-illust {
  padding-block: 48px;
}

.section-illust__header {
  text-align: center;
  margin-bottom: 32px;
}

.section__title__illust-gallery img {
  width: 100%;
  max-width: 540px;
  height: auto;
  margin-inline: auto;
}

@media (max-width: 600px) {
  .section__title__illust-gallery img {
    max-width: 70%;
    margin-bottom: 1rem;
  }
}
/* サムネイルグリッド */
.illust-gallery {
  /* ラッパーとして中央揃えだけ担当 */
  max-width: 1000px;
  margin-inline: auto;
}

.illust-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(5, 1fr);
}

/* SPでは2列に並べる */
@media (max-width: 600px) {
  .illust-grid {
    max-width: 90%;
    margin-inline: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
/* サムネイル */
.illust-thumb {
  display: block;
  cursor: pointer;
  overflow: visible;
}

.illust-thumb img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  padding-block: 4px;
  box-sizing: content-box;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.illust-thumb:hover img,
.illust-thumb:focus-visible img {
  transform: scale(1.04);
  opacity: 0.9;
}

/* クレジット */
.illust-credit {
  margin-top: 24px;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}

/* =========================================
   画像モーダル（:target で開閉）
   ========================================= */
/* 画面全体のオーバーレイ */
.image-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1000;
}

/* 開いてるとき */
.image-modal.is-open {
  display: flex;
}

/* ダイアログの箱 */
.image-modal__inner {
  position: relative;
  max-width: min(90vw, 640px);
  max-height: 90vh;
}

/* 画像そのもののサイズ調整 */
.image-modal__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

/* 閉じるボタン */
.image-modal__close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: #fff;
  color: #333;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* SP で余白少し詰める */
@media (max-width: 600px) {
  .section-illust {
    padding-block: 32px;
  }
  .illust-gallery {
    gap: 16px;
  }
  .image-modal__inner {
    max-width: 94vw;
    max-height: 86vh;
  }
}
/* =========================================
   あらすじセクション
   ========================================= */
.section-story {
  position: relative;
  /* 背景：左右100%に広げて、縦方向だけリピート */
  background-color: #006938;
  background-image: url("../images/bg-section-story.webp");
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100% auto;
  padding-block: 48px;
}

.section-story__inner {
  position: relative;
  z-index: 1;
}

/* タイトル周り */
.section-story__header {
  text-align: center;
  margin-bottom: 32px;
}

.section-story__title img {
  display: block;
  max-width: 640px;
  width: 100%;
  height: auto;
  margin-inline: auto;
  margin-bottom: 24px;
}

/* 本文＆コメント */
.section-story__body {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  line-height: 2;
}

.section-story__body p {
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 600;
  color: #e4cf42;
}

.section-story__body p + p {
  margin-top: 16px;
}

.section-story__comment {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.section-story__comment img {
  display: block;
  max-width: 360px;
  width: 100%;
  height: auto;
}

/* イラスト A / B（PC は左右に浮かせる） */
.section-story__illust {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.section-story__illust img {
  display: block;
  width: 100px;
  height: auto;
}

/* 左のイラスト A（テキストにかからん位置） */
.section-story__illust--left {
  top: 140px;
  left: clamp(24px, 10vw, 80px);
}

/* 右のイラスト B（少し下めに） */
.section-story__illust--right {
  bottom: 160px;
  right: clamp(16px, 8vw, 80px);
  transform: translateX(-40%);
}

/* =========================================
   SP（〜sm）のときまとめて上書き
   ========================================= */
@media (max-width: 600px) {
  /* 背景ちょい変更したいならここで */
  .section-story {
    padding-block: 32px;
    background-image: url("../images/bg_green.jpg");
  }
  /* 内側を縦並び flex にする */
  .section-story__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  /* イラストはフローに戻す */
  .section-story__illust {
    position: static;
    transform: none;
    pointer-events: none;
  }
  .section-story__illust img {
    width: clamp(100px, 16vw, 180px);
    height: auto;
  }
  /* 並び順をコントロール！！ */
  .section-story__illust--left {
    order: 1;
  }
  .section-story__header {
    order: 2;
    width: 80%;
  }
  .section-story__body {
    order: 3;
    max-width: 32rem;
    margin-inline: auto;
    text-align: left;
    width: 80%;
  }
  .section-story__illust--right {
    order: 4;
  }
  .section-story__comment {
    order: 5;
  }
  .section-story__comment img {
    display: block;
    margin-inline: auto;
    width: 70%;
    max-width: 520px;
  }
  .section-story__body p {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 600;
    color: #e4cf42;
    text-align: center;
  }
}
/* =========================================
   著名人コメントセクション
   ========================================= */
.section--comment {
  padding-block: 24px;
}

.touma_comment {
  display: block;
  margin-inline: auto;
  max-width: 720px;
  width: 100%;
  padding-block: 16px;
}

.touma_comment img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 600px) {
  .touma_comment {
    width: 80%;
    padding-block: 16px;
  }
}
/* =========================================
   登場人物紹介セクション
   ========================================= */
/* 相関図セクション全体 */
.section-characters {
  position: relative;
  padding-block: 72px 72px;
}

/* 内側ラッパー（c-container とセットでOK） */
.section-characters__inner {
  position: relative;
}

/* タイトルのラッパー */
.section-characters__header {
  position: relative;
  text-align: center;
  margin-bottom: 32px;
}

.section-characters__title {
  display: block;
  max-width: 720px;
  width: min(90vw, 720px);
  margin-inline: auto;
  margin-top: -40px;
}

.section-characters__title img {
  display: block;
  width: 100%;
  height: auto;
}

/* 相関図本体との間の余白（お好み） */
.characters-chart {
  margin-top: 16px;
}

/* スマホでの微調整 */
@media (max-width: 600px) {
  .section-characters {
    padding-block: 48px 48px;
  }
  .section-characters__title {
    width: min(86vw, 560px);
    max-width: 90%;
    margin-top: -24px;
  }
  .characters-chart {
    margin-top: 24px;
  }
}
/* ---- 青いボード全体 ---- */
.relations-board {
  max-width: 960px;
  margin-inline: auto;
  /* ★ 上のタイトル画像側にグイッと近づける（マイナスでもOK） */
  margin-top: -120px;
  /* ★ 上だけ多めに padding を取って、中身が潰れないようにする */
  padding: 120px 24px 32px;
  background: #0074c6;
  border-radius: 96px 96px 48px 48px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  color: #111;
}

@media (max-width: 600px) {
  .relations-board {
    margin-top: -140px;
    border-radius: 48px 48px 24px 24px;
    padding: 120px 16px 24px;
  }
}
/* 左右2カラム（PC） */
.relations-board__groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

/* SP では1カラムに落とす */
@media (max-width: 600px) {
  .relations-board__groups {
    grid-template-columns: 1fr;
  }
}
/* ---- グループ（きん三姉妹 / まゆ四兄弟） ---- */
.relations-group {
  position: relative;
  background: #ffc63c;
  border-radius: 24px;
  padding: 24px 16px 16px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.relations-group--brothers {
  background: #c0f1c4;
}

/* タイトル行まとめ */
.relations-group__header {
  text-align: center;
  margin-bottom: 16px;
}

/* タイトル文字を“帯”っぽく */
.relations-group__title {
  display: inline-block;
  padding: 6px 32px;
  background: #fff;
  border-radius: 999px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  border: 2px solid #ff2900;
  color: #ff2900;
}

.relations-group__title--brothers {
  border: 2px solid #004a5c;
  color: #004a5c;
}

.relations-group__lead {
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* サムネ 2×2 グリッド */
.relations-group__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
  margin-bottom: 16px;
  place-items: center;
  justify-items: center;
  align-items: start;
}

/* カード（サムネボタン） */
.relations-card {
  display: block;
  padding: 6px;
  border: none;
  background: none;
  cursor: pointer;
  max-width: 240px;
  width: 100%;
}

.relations-card img {
  display: block;
  background: #fff;
  width: 100%;
  height: auto;
  padding: 4px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.relations-card:hover img,
.relations-card:focus-visible img {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.24);
}

/* テキストだけゾーン（名前＋説明を2カラム） */
.relations-group__notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 16px;
  background: #fae2c1;
  border-radius: 12px;
  padding: 4px 2px;
}

/* 各キャラブロック */
.relations-note {
  text-align: center;
}

/* 名前部分 */
.relations-note__name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

/* 説明テキスト */
.relations-note__text {
  font-size: 0.8rem;
  line-height: 1.4;
}

/* SP 調整 */
@media (max-width: 600px) {
  .relations-group {
    padding: 16px;
  }
  .relations-group__title {
    font-size: 1rem;
    padding-inline: 16px;
  }
  .relations-group__grid {
    gap: 8px;
  }
  .relations-group__notes {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .relations-note__text {
    font-size: 0.75rem;
  }
}
/* ---- 一番下：文字だけの人々 ---- */
.relations-others {
  margin-top: 24px;
  padding: 32px 24px;
  background: #9be3f7;
  border-radius: 32px;
}

/* タイトル（上の白いラベル風は今のままでもOKなら据え置き） */
.relations-others__title {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* リスト全体：中央寄せで折り返し */
.relations-others__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 72px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 1人分のブロック */
.relations-others__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* 先頭「・」はいらないので消しとく */
.relations-others__item::before {
  content: none;
}

/* 上段：肩書き（店名） */
.relations-others__role {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

/* 下段：名前（太く大きく） */
.relations-others__name {
  display: block;
  margin-top: 0.25em;
  font-size: 1.5rem;
  font-weight: 800;
}

/* スマホはちょいタイトめに */
@media (max-width: 600px) {
  .relations-others {
    padding: 24px 16px;
  }
  .relations-others__list {
    gap: 12px 24px;
  }
  .relations-others__name {
    font-size: 1.2rem;
  }
}
/* =========================================
   キャラ詳細モーダル
   ========================================= */
/* オーバーレイ */
.char-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 900;
}

/* 個別モーダル本体 */
.char-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 901;
  transition: opacity 0.2s ease;
}

.char-modal__inner {
  position: relative;
  max-width: 520px;
  width: min(90vw, 520px);
  background: #fffdf7;
  border: 4px solid #f0c452;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  text-align: center;
}

/* 上右の×ボタン */
.char-modal__close {
  position: absolute;
  inset-block-start: 12px;
  inset-inline-end: 12px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: #fff;
  box-shadow: 0 0 0 2px #ccc;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

/* 丸いバッジ＆アイコン */
.char-modal__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 14px;
  height: 32px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 12px;
}

.char-modal__icon {
  width: 120px;
  height: 120px;
  margin-inline: auto;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #e2fbff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.char-modal__icon img {
  width: 100%;
  height: auto;
}

/* 名前 */
.char-modal__name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.char-modal__age {
  font-size: 0.9rem;
}

/* 本文 */
.char-modal__text {
  font-size: 0.9rem;
  line-height: 1.8;
  text-align: left;
  margin-inline: auto;
  max-width: 30rem;
  margin-bottom: 16px;
}

/* 下の閉じるボタン */
.char-modal__button {
  display: inline-block;
  border: none;
  border-radius: 999px;
  padding: 10px 40px;
  background: #f0b742;
  color: #111;
  font-weight: 700;
  cursor: pointer;
}

/* ====== 表示時の状態（JSで .is-open を付ける） ====== */
.char-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.char-modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* SP 微調整 */
@media (max-width: 600px) {
  .char-modal__inner {
    padding: 16px;
  }
  .char-modal__text {
    font-size: 0.85rem;
  }
}
/* =========================================
   感想コメントセクション
   ========================================= */
.section-review {
  position: relative;
  padding-block: 72px;
  /* 例の bg_green.jpg を全面背景に */
  background-image: url("../images/bg_green.jpg");
  background-position: center top;
  background-size: 50%;
  background-repeat: repeat;
}

.section-review__inner {
  max-width: 960px;
  margin-inline: auto;
}

/* タイトルまわり（黄色い帯） */
.section-review__header {
  text-align: center;
  margin-bottom: 48px;
}

.section-review__title-band {
  display: inline-block;
  width: 50vw;
}

.section-review__title-band img {
  width: 100%;
}

/* コメント一覧グリッド */
.review-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 48px;
  max-width: 720px;
  margin-inline: auto;
}

/* コメントカード */
.review-card {
  color: #ffe48b;
  font-weight: 600;
  line-height: 2;
  text-align: left;
}

.review-card__text {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.8;
}

.review-card__credit {
  margin-top: 8px;
  font-size: 0.85rem;
  text-align: right;
  letter-spacing: 0.05em;
}

/* 続きを読むボタン */
.review-more-button {
  display: block;
  margin-inline: auto;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  margin-inline: auto;
  padding: 10px 40px;
  border-radius: 999px;
  border: 2px solid #f0b742;
  background: transparent;
  color: #f0b742;
  font-weight: 700;
  cursor: pointer;
}

/* 共通：非表示用クラス（JSと連携） */
.is-hidden {
  display: none !important;
}

/* ========= SP レイアウト ========= */
@media (max-width: 600px) {
  .section-review {
    padding-block: 48px;
  }
  .section-review__title-band {
    padding-inline: 24px;
  }
  .review-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .review-card {
    width: 80vw;
    margin-inline: auto;
    text-align: center;
  }
  .review-card__text {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
  }
  .review-card__credit {
    text-align: center;
  }
}
/* =========================================
   著者プロフィール
   ========================================= */
.section-author {
  padding-block: 48px;
}

.section-author__inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

/* りんごの画像（上の小さいやつ） */
.author__icon {
  margin-inline: auto;
  margin-bottom: 24px;
  max-width: 100px;
}
.author__icon img {
  display: block;
  width: 100%;
  height: auto;
}

/* 著者プロフィール画像（大きいボックス） */
.author__photo {
  margin-inline: auto;
  margin-bottom: 24px;
  max-width: 360px;
}
.author__photo img {
  display: block;
  width: 100%;
  height: auto;
}

/* プロフィール本文 */
.author__bio {
  max-width: 40rem;
  margin: 0 auto 32px;
  text-align: center;
  line-height: 1.9;
  font-size: 1.1rem;
  font-weight: 600;
}
.author__bio p + p {
  margin-top: 12px;
}

/* バナーたち */
.author__banners {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
  margin-inline: auto;
}

.author__banner img {
  display: block;
  width: 100%;
  height: auto;
}

/* SP でちょっとだけタイトに */
@media (max-width: 600px) {
  /* りんごの画像（上の小さいやつ） */
  .author__icon {
    margin-inline: auto;
    margin-bottom: 24px;
    max-width: 60px;
  }
  .author__icon img {
    display: block;
    width: 100%;
    height: auto;
  }
  /* 著者プロフィール画像（大きいボックス） */
  .author__photo {
    margin-inline: auto;
    margin-bottom: 24px;
    max-width: 360px;
  }
  .author__photo img {
    display: block;
    margin-inline: auto;
    width: 80%;
    height: auto;
  }
  .section-author {
    padding-block: 32px;
  }
  .section-author__inner {
    max-width: 92vw;
  }
  .author__bio {
    font-size: 0.9rem;
  }
}
/* =========================================
   購入導線セクション（下の緑のところ）
   ========================================= */
#section-purchase.section-purchase {
  background-color: #00753a;
  background-image: url("../images/bg_green.jpg");
  color: #fff;
  padding-block: 72px;
}

.section-purchase__inner {
  max-width: 1040px;
  margin-inline: auto;
  text-align: center;
}

/* 見出しコピー */
.section-purchase__copy {
  font-size: 1.4rem;
  line-height: 1.7;
  font-weight: 500;
  margin: 0 0 32px;
}

/* メインボタン周り */
.section-purchase__main {
  margin-bottom: 32px;
}

/* 共通ボタンスタイル */
.purchase-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  min-width: 220px;
  border-radius: 999px;
  background-color: #f2c94c;
  color: #111;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.purchase-btn:hover,
.purchase-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
}

/* 一番上の太いボタン */
.purchase-btn--primary {
  font-size: 1.1rem;
  min-width: clamp(260px, 40vw, 420px);
}

/* 下の4つの並び：PCは横1列、SPは2カラム想定 */
.section-purchase__stores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
}

@media (max-width: 600px) {
  #section-purchase.section-purchase {
    padding-block: 48px;
  }
  .section-purchase__copy {
    font-size: 1.1rem;
  }
  .purchase-btn--primary {
    min-width: clamp(260px, 80vw, 380px);
  }
  .section-purchase__stores {
    display: block;
    text-align: center;
  }
  .section-purchase__stores .purchase-btn {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 16px;
  }
}
/* =========================================
   下部バナー＋締めのコピー
   ========================================= */
.section-banners {
  padding-top: 72px;
  padding-bottom: 0;
  margin-bottom: 0;
}

.section-banners.section {
  margin-bottom: 0;
}

/* 中央寄せなど中身のレイアウト */
.section-banners__inner {
  text-align: center;
}

/* 見出し */
.section-banners__header {
  margin-bottom: 32px;
}

.section-banners__title {
  font-size: 1.2rem;
}

/* 上の黒いバナー */
.section-banners__top-link {
  display: block;
  align-items: center;
  justify-content: center;
  width: clamp(480px, 60vw, 600px);
  padding-block: 18px;
  padding-inline: 40px;
  margin-inline: auto;
  margin-bottom: 32px;
  color: #fff;
  border-radius: 16px;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-decoration: none;
}

/* ==== 緑の背景イラスト（フル幅） ==== */
.section-banners__visual {
  position: relative;
  max-width: none;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  margin-bottom: 0;
}

.section-banners__bg {
  display: block;
  width: 100%;
  height: auto;
}

.section-banners__copy {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  line-height: 1.8;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 8px rgba(0, 80, 80, 0.9), 0 0 12px rgba(0, 120, 120, 0.9), 0 0 18px rgba(0, 160, 160, 0.8), 0 0 30px rgba(0, 200, 200, 0.6);
  padding-inline: 1.5rem;
}

/* 締めの一文 */
.section-banners__closing {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===== SP 調整 ===== */
@media (max-width: 600px) {
  .section-banners {
    padding-top: 48px;
    padding-bottom: 0;
  }
  .section-banners__top-link {
    min-width: 0;
    width: min(92vw, 520px);
    padding-block: 14px;
    border-radius: 12px;
    font-size: 1rem;
  }
  .section-banners__visual {
    width: 100vw;
    margin-bottom: 0;
    position: relative;
  }
  .section-banners__copy {
    inset-inline: 10%;
    font-size: clamp(1.05rem, 1rem + 0.8vw, 1.4rem);
  }
  .section-banners__closing {
    font-size: 0.9rem;
  }
}
/* フッター */
.l-footer {
  margin-top: auto;
  width: 100%;
  background: #111;
  color: #eee;
  padding: 16px 0;
  font-size: 0.85rem;
  margin-top: 0 !important;
}
.l-footer__inner {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 16px;
  gap: 8px;
  text-align: center;
  margin-inline: auto;
}
@media (min-width: 900px) {
  .l-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.l-footer .btn_sgk {
  width: 10vw;
  display: block;
  margin-inline: auto;
  margin-top: 1rem;
}

/* スマホはちょいタイトめに */
@media (max-width: 600px) {
  .l-footer .btn_sgk {
    width: 15vw;
  }
}
/* ===========================
   コラムページ専用デザイン
   =========================== */
.column-wrapper {
  max-width: 820px;
  margin-inline: auto;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
}

.column-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.column-title {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  width: 50vw;
  margin-inline: auto;
}

.column-subtitle {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #555;
}

.column-body {
  width: 90%;
  margin-inline: auto;
  font-size: 1rem;
  line-height: 2;
}

.column-body p + p {
  margin-top: 1.4rem;
}

.column-body .writer {
  font-size: 0.8rem;
  line-height: 1.6;
}

.column-link {
  color: #0a7c21;
  font-weight: 700;
  text-decoration: underline;
}

.column-banner {
  text-align: center;
  margin-top: 2.4rem;
}

.column-banner img {
  max-width: 100%;
  height: auto;
}

@media (min-width: 900px) {
  .column-title {
    width: 80%;
    margin-inline: auto;
  }
}
/**
 * _assets/scss/style.scss
 *
 * @format
 */
/** メインエントリーファイル */
/**
 * _assets/scss/_components.scss
 *
 * @format
 */
/* 汎用コンテナ */
.c-container {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 16px;
}

/* ボタン */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
  padding: 0.6em 1.4em;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.15s ease;
  background-color: #0b65c2;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}
.c-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}
.c-btn:active {
  transform: translateY(0);
  box-shadow: none;
}
.c-btn--ghost {
  background: transparent;
  color: #0b65c2;
  border-color: #0b65c2;
  box-shadow: none;
}
.c-btn--ghost:hover {
  background-color: rgba(11, 101, 194, 0.06);
}
.c-btn--danger {
  background-color: #d7263d;
}

/* カード */
.c-card {
  background: #f9f9f9;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

/* 見出し帯 */
.c-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  border-bottom: 2px solid #0b65c2;
  padding-bottom: 0.4em;
}

/* スクリーンリーダー用 */
.u-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/**
 * _assets/scss/_intro.scss
 *
 * @format
 */
/* イントロの見た目用スタイル -------------------------------- */
:root {
  --bg: #f7f7f7;
  --card: #ffffff;
  --ink: #123;
  --muted: #777;
  --brand-blue: #1660b8;
  --line: #e0e0e0;
  --radius: 14px;
}

/* ページ全体 -------------------- */
body {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  color: var(--ink);
  background: var(--bg);
}

body.is-intro-active {
  overflow: hidden; /* オープニング中スクロール禁止 */
}

body.is-menu-open {
  overflow: hidden;
}

/* ===============================
   オープニングオーバーレイ
   =============================== */
.intro {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.4s ease;
}

.intro.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/* 背景B（模様） */
.intro__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.intro__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

/* 中央レイアウト */
.intro__inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  width: 100%;
  padding: 32px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  box-sizing: border-box;
}

/* テキストA */
.intro__text {
  flex: 1 1 0;
  text-align: center;
}

.intro__text-line {
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 26px);
  color: #1660b8;
  /* drop-shadow */
  filter: drop-shadow(0px 0px 8px rgba(22, 96, 184, 0.6));
  letter-spacing: 0.08em;
  margin: 0 0 8px;
  opacity: 0;
  transform: translateY(8px);
  animation: introLine 1s ease forwards;
}

.intro__text-line:nth-child(1) {
  animation-delay: 0.6s;
}

.intro__text-line:nth-child(2) {
  animation-delay: 1.8s;
}

.intro__text-line:nth-child(3) {
  animation-delay: 3s;
}

@keyframes introLine {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ビジュアルC（商店街アーケード） */
.intro__visual {
  position: relative;
  flex: 0 0 auto;
  max-width: 360px;
  width: 40%;
}

.intro__visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transform-origin: center center;
  animation: introZoom 10s ease-out forwards; /* 0〜10秒でゆっくりズーム */
}

@keyframes introZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12);
  }
}
/* スキップボタン */
.intro__skip {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.06);
  color: #333;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.intro__skip:hover {
  background: rgba(0, 0, 0, 0.14);
}

/* ホワイトアウト用の白幕（画面全体） */
.intro__whiteout {
  position: absolute;
  inset: 0;
  background: #ffffff;
  opacity: 0;
  pointer-events: none;
  /* 6秒目から4秒かけて白くなる想定 → 10秒で真っ白 */
  transition: opacity 4s ease-in-out;
  /* ★ 全要素より上に乗せる */
  z-index: 10;
}

.intro.is-whiteout .intro__whiteout {
  opacity: 1;
}

/* スマホレイアウト -------------------- */
@media (max-width: 768px) {
  .intro__inner {
    flex-direction: column;
    gap: 24px;
    padding: 24px 16px 40px;
  }
  .intro__text {
    text-align: center;
  }
  .intro__visual {
    width: 80%;
    max-width: 360px;
  }
  .intro__skip {
    right: 12px;
    bottom: 12px;
    padding: 6px 14px;
    font-size: 11px;
  }
}
/* ===============================
   本編（サイト本体のテスト）
   =============================== */
.site {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  box-sizing: border-box;
}

.site__card {
  max-width: 960px;
  width: 100%;
  background: var(--card);
  border: 10px solid var(--brand-blue);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 32px 24px;
  box-sizing: border-box;
}

.site__title {
  font-size: clamp(22px, 2.4vw, 28px);
  margin: 0 0 16px;
}

.site__body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}/*# sourceMappingURL=style.css.map */