/* ===================
   Blocks CSS - v1
   セクション・ブロックのスタイル
   =================== */

/* ===================
   共通CSSリセット
   s.cssの.sectionスタイルを上書き
   =================== */
.page-content .section {
  margin-bottom: 0 !important;
}

/* 上部に戻るボタン: z-indexを上げて他要素の上に表示 */
.footer__pageTop {
  z-index: 100 !important;
}

/* ===================
   アニメーション
   =================== */

/* ぽよんアニメーション（バウンス入場） */
@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
  70% {
    transform: scale(0.95);
  }
  85% {
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* バッジ用バウンスアニメーション（ボールが跳ねるイメージ） */
@keyframes badgeBounce {
  0% {
    opacity: 0;
    transform: scale(0.6) translateY(10px);
  }
  40% {
    opacity: 1;
    transform: scale(1.05) translateY(-5px);
  }
  60% {
    transform: scale(0.97) translateY(2px);
  }
  80% {
    transform: scale(1.02) translateY(-1px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* スクロールトリガーアニメーション用（バッジ） */
.animate-on-scroll {
  opacity: 0;
  transform: scale(0.6) translateY(10px);
}

.animate-on-scroll.is-visible {
  animation: badgeBounce 0.5s ease-out forwards;
}

/* ===================
   PC/SP 表示切り替え（.page-content内で優先適用）
   =================== */
.pc-only,
.page-content .pc-only {
  display: block !important;
}

.sp-only,
.page-content .sp-only {
  display: none !important;
}

@media (max-width: 768px) {
  .pc-only,
  .page-content .pc-only {
    display: none !important;
  }

  .sp-only,
  .page-content .sp-only {
    display: block !important;
  }
}

/* 1000px以上でのみ表示（タブレット以下で非表示） */
.br-lg-only {
  display: inline;
}

@media (max-width: 1000px) {
  .br-lg-only {
    display: none;
  }
}

/* 1000px以下でのみ表示（タブレット以下で改行） */
.br-md-only {
  display: none;
}

@media (max-width: 1000px) {
  .br-md-only {
    display: inline;
  }
}

/* ===================
   ページ全体
   =================== */

.page {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 0px; /* テスト: 0pxで変化確認 */
  background: transparent;
  overflow: visible;
}

/* ブラウザ横スクロール防止 - コンテンツエリア内のみ */
/* overflow-x: hiddenだとスクロールバーが出るため、clipを使用 */
.page-content {
  overflow: clip;
}

/* KV〜Aboutエリアの背景グラデーション */
.gradient-area {
  position: relative;
  /* z-indexは設定しない（スタッキングコンテキストを作らない） */
  /* Figmaグラデーション: 0%=#FFFFFF, 55%=#F5E1CE, 100%=#FFFFFF */
  background: linear-gradient(to bottom, #FFFFFF 0%, #F5E1CE 55%, #FFFFFF 100%);
}

/* ウェーブ遷移エリア（カテゴリ間の接続部分） */
.wave-transition {
  position: relative;
  width: 100%;
  line-height: 0; /* 画像下の余白を削除 */
  overflow: visible; /* イラストがはみ出せるように */
}

/* 背景画像のクリッピング */
.wave-transition-prev-bg,
.wave-transition-next-bg {
  overflow: hidden;
}

/* ウェーブ画像 */
.wave-transition-img {
  display: block;
  width: 100%;
  height: auto;
}

/* 前のブロックの背景（カテゴリ間遷移用） */
.wave-transition-prev-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  z-index: 0;
}

.wave-transition-prev-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top; /* カテゴリセクションと同じ位置から表示 */
}

/* 次のブロックの背景（カテゴリ間遷移用） */
.wave-transition-next-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 0;
}

.wave-transition-next-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* ウェーブ画像を最前面に */
.wave-transition .wave-transition-img {
  position: relative;
  z-index: 1;
}

/* 入口ウェーブ（gradient→Category01）: 背景divは不要 */
.wave-transition-blue .wave-transition-prev-bg,
.wave-transition-blue .wave-transition-next-bg {
  display: none;
}

/* ABOUTセクションとウェーブの間隔を調整 */
.wave-transition-blue {
  margin-top: -40px;
}

/* カテゴリ＋ウェーブラッパー: 背景を一体化 */
.category-wave-wrapper {
  position: relative;
}

/* 青ラッパー: Category 01 + オレンジウェーブ */
.category-wave-wrapper-blue {
  background: url('../img/icons/bg_blue.jpg') top center / cover no-repeat;
}

/* オレンジラッパー: Category 02 + グリーンウェーブ */
.category-wave-wrapper-orange {
  background: url('../img/icons/bg_orange.jpg') top center / cover no-repeat;
}

/* ラッパー内のカテゴリは背景不要 */
.category-wave-wrapper .category-bg {
  display: none;
}

/* カテゴリ下部のパディング（ウェーブ遷移エリアとの間隔） */
.category-wave-wrapper-blue .category {
  padding-bottom: 120px;
}

.category-wave-wrapper-orange .category {
  padding-bottom: 120px;
}

/* 左右の木イラスト（コンテンツより下に表示） */
.section-illust {
  z-index: 1;
}

/* ウェーブ遷移エリアのイラスト（ブラウザ端に固定、コンテンツより下） */
.wave-illust {
  position: absolute;
  bottom: 0;
  z-index: 1;
  height: auto;
}

.wave-illust-left {
  left: calc(50% - 50vw); /* ブラウザ左端に固定 */
}

.wave-illust-right {
  right: calc(50% - 50vw); /* ブラウザ右端に固定 */
}

/* Category01→02: 左にキッズ+カカオ、右に木 */
.wave-transition-orange .wave-illust-left {
  left: calc(50% - 50vw + 30px); /* ブラウザ端から30pxマージン */
  width: min(300px, 20.83vw);
}

.wave-transition-orange .wave-illust-right {
  width: min(160px, 11.11vw); /* Figmaデザインに合わせたサイズ */
}

/* Category02→03: 左に木、右にキッズ+カカオ */
.wave-transition-green .wave-illust-left {
  width: min(160px, 11.11vw); /* Figmaデザインに合わせたサイズ */
}

.wave-transition-green .wave-illust-right {
  right: calc(50% - 50vw + 30px); /* ブラウザ端から30pxマージン */
  bottom: 50px; /* ウェーブより上に配置 */
  width: min(260px, 18.06vw);
}

/* ===================
   KV（キービジュアル）
   =================== */

.kv {
  position: relative;
  width: 100%;
  aspect-ratio: 1440 / 808;
  min-height: unset;
  overflow: hidden;
}

.kv-bg {
  display: block;
}

.kv-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* PC版コンテンツ */
.kv-content-pc {
  display: flex !important;
}

/* SP版コンテンツ - PC版では非表示 */
.kv-content-sp {
  display: none !important;
}

.kv-images {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1474px;
  height: 796px;
  z-index: 2;
}

.kv-illust {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1430px;
  height: 648px;
  z-index: 3;
}

.kv-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 5%;
}

/* 上部テキスト + キッズイラストのラッパー */
.kv-sub-wrap {
  display: flex;
  align-items: center;
  gap: clamp(2px, 0.278vw, 4px);
  margin-bottom: clamp(5px, 0.556vw, 8px);
}

.kv-sub-text {
  font-size: clamp(14px, 1.528vw, 22px);
  font-weight: var(--fw-bold);
  color: var(--color-brown);
}

.kv-kids-left {
  width: clamp(28px, 3.056vw, 44px);
  height: auto;
}

.kv-kids-right {
  width: clamp(36px, 3.889vw, 56px);
  height: auto;
}

/* 1チョコ for 1スマイル ロゴ */
.kv-logo {
  width: clamp(220px, 23.889vw, 344px);
  height: auto;
  margin-bottom: clamp(10px, 1.111vw, 16px);
}

.kv-title {
  width: clamp(420px, 45.347vw, 653px);
  height: auto;
  margin-bottom: clamp(10px, 1.111vw, 16px);
  /* ぽよんアニメーション */
  animation: popIn 0.6s ease-out 0.3s both;
}

/* h1ラッパー - レイアウトに影響しない */
.kv-h1 {
  margin: 0 !important;
  margin-bottom: clamp(10px, 1.111vw, 16px) !important;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: inherit;
  font-weight: inherit;
}

/* h1内の.kv-titleはmargin-bottom不要（h1に移動） */
.kv-h1 .kv-title {
  margin-bottom: 0;
}

.kv-copy {
  font-size: clamp(14px, 1.528vw, 22px);
  font-weight: var(--fw-bold);
  color: var(--color-brown);
  text-align: center;
  line-height: 1.6;
  max-width: clamp(400px, 41.667vw, 600px);
}

/* ===================
   セクション共通
   =================== */

.section {
  position: relative;
  width: 100%;
  padding: 0;
}

/* アクションカードセクション間のマージン: 80px */
.section + .section {
  margin-top: 80px;
}

.section-inner {
  position: relative;
  z-index: 5; /* イラストより上にコンテンツを表示 */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===================
   About セクション
   =================== */

.about {
  position: relative;
  z-index: 5; /* イラストより上にコンテンツを表示 */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding-bottom: 0;
}

.about-block {
  display: flex;
  flex-direction: column;
  width: 780px;
}

.about-row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 20px 68px;
  align-items: start;
  position: relative;
  z-index: 10; /* イラストより上に表示 */
}

.about-row .about-text {
  grid-column: 1;
  grid-row: 1;
}

.about-row .about-img {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}

.about-row .about-link {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
}

.about-img {
  flex-shrink: 0;
}

.about-img img {
  display: block;
}

.about-img-circles {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-img-circles .bracket-text {
  margin-bottom: 8px;
}

.about-circle {
  border-radius: 50%;
  position: relative;
}

.about-circle:first-of-type {
  z-index: 2;
}

.about-circle + .about-circle {
  margin-top: -36px;
  z-index: 1;
}

.about-content {
  flex: 1;
  max-width: 420px;
}

.about-title {
  font-size: 36px;
  font-weight: var(--fw-bold);
  color: var(--color-brown);
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.05em;
}

.about-title .color-red {
  color: #E60020;
}

.about-title .color-brown {
  color: var(--color-brown);
}

.about-title .color-orange {
  color: var(--color-orange);
}

.about-title-sub {
  font-size: 34px;
  color: var(--color-brown);
}

.about-title-campaign-name {
  font-size: 36px;
  color: var(--color-brown);
}

.about-text {
  font-size: 18px;
  font-weight: var(--fw-medium);
  color: var(--color-brown);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-text:last-of-type {
  margin-bottom: 0;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: var(--color-orange);
  text-decoration: underline;
  margin-top: 4px;
}

/* サマーキャンペーンとはセクション - 画像左・テキスト右レイアウト */
.about-block-campaign .about-row {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto;
  gap: 40px;
  margin-bottom: 130px;
}

.about-block-campaign .about-row .about-img,
.about-block-campaign .about-row .about-img.about-img-circles {
  grid-column: 1 !important;
  grid-row: 1 !important;
}

.about-block-campaign .about-row .about-content,
.about-block-campaign .about-row .about-content-campaign {
  grid-column: 2 !important;
  grid-row: 1 !important;
}

.about-content-campaign {
  max-width: 440px;
}

/* ===================
   Action Nav セクション
   =================== */

.action-nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 833px;
  margin: 0 auto;
}

.action-nav-category {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.action-nav-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.action-nav-title-line {
  width: 14px;
  height: 40px;
  background: var(--color-brown);
}

.action-nav-title-text {
  font-size: 28px;
  font-weight: var(--fw-bold);
  color: var(--color-brown);
}

.action-nav-cards {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.action-nav-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-white);
  border: 2px solid var(--color-brown);
  border-radius: 8px;
  padding: 16px 24px;
  cursor: pointer;
  transition: all 0.2s;
}

.action-nav-card:hover {
  background: var(--bg-page);
}

.action-nav-card-badge {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
}

.action-nav-card-badge img {
  width: 100%;
  height: 100%;
}

.action-nav-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.action-nav-card-title {
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: var(--color-brown);
  line-height: 1.4;
}

.action-nav-card-period {
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--color-brown);
}

/* ===================
   Category セクション
   =================== */

.category {
  position: relative;
  padding: 40px 0 80px; /* 上部パディングを小さく */
  margin-top: -1px; /* ウェーブとの1pxすき間を解消 */
}

.category-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 1px); /* 上端の1pxを確実にカバー */
  z-index: 0;
}

.category-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top; /* 画像上端を基準に配置 */
}

.category-inner {
  position: relative;
  z-index: 3; /* ウェーブより上にコンテンツを表示 */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.category-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

.category-title-line {
  width: 14px;
  height: 40px;
  background: var(--color-brown);
}

.category-title-text {
  font-size: 28px;
  font-weight: var(--fw-bold);
  color: var(--color-brown);
}

/* ===================
   Action カード
   =================== */

.action-card {
  position: relative;
  background: var(--color-white);
  border: 3px solid var(--color-brown);
  border-radius: 24px;
  padding: 40px 60px;
  margin: 0 auto 40px;
  width: 800px;
  overflow: visible;
}

.action-card:last-child {
  margin-bottom: 0;
}

.action-card-badge {
  position: absolute;
  top: -20px;
  left: -30px;
  width: 120px;
  height: 120px;
  z-index: 10;
}

.action-card-badge img {
  width: 100%;
  height: 100%;
}

.action-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.action-card-icon {
  margin-top: -9px;
}

.action-card-sub-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.action-card-sub-title-line {
  width: 14px;
  height: 40px;
  background: var(--color-brown);
}

.action-card-sub-title-text {
  font-size: 20px;
  font-weight: var(--fw-bold);
  color: var(--color-brown);
}

.action-card-title {
  font-size: 40px;
  font-weight: var(--fw-bold);
  color: var(--color-brown);
  line-height: 1.3;
  text-align: center;
  margin: 0;
}

.action-card-date {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  font-size: 22px;
  font-weight: var(--fw-medium);
  color: var(--color-brown);
  margin-bottom: 16px;
}

.action-card-date img {
  margin-right: 8px;
  position: relative;
  top: 3px;
}

.action-card-date .date-num {
  font-size: 26px;
  color: var(--color-blue);
}

.action-card-date .date-day {
  color: var(--color-blue);
}

.action-card-date .date-slash {
  font-size: 22px;
  color: var(--color-blue);
}

/* オレンジ版（Action 02, 03用） */
.action-card-date-orange {
  color: var(--color-orange);
}

.action-card-date-orange .date-label {
  color: var(--color-brown);
}

.action-card-date-orange .date-num {
  font-size: 26px;
  color: var(--color-orange);
}

.action-card-date-orange .date-day {
  color: var(--color-orange);
}

/* 注記テキスト（「必着」など） */
.action-card-date .date-note {
  font-size: 18px;
  font-weight: var(--fw-medium);
  color: inherit;
}

/* グリーン版（Action 04, 05用） */
.action-card-date-green {
  color: var(--color-green);
}

.action-card-date-green .date-num {
  font-size: 26px;
  color: var(--color-green);
}

.action-card-date-green .date-day {
  color: var(--color-green);
}

.action-card-date-green .date-slash {
  font-size: 22px;
  color: var(--color-green);
}

.action-card-date-green .date-tilde {
  color: var(--color-green);
}

.action-card-date-green .date-label {
  color: var(--color-brown);
}

.action-card-divider {
  width: 100%;
  height: 1px;
  background: var(--color-brown);
  margin: 24px 0;
}

.action-card-body {
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: var(--color-brown);
  line-height: 1.5;
  margin-top: 12px;
  margin-bottom: 18px;
}

/* イベント情報テーブル */
.info-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-table-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-table-th {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  height: 26px;
  background: var(--color-blue);
  color: var(--color-white);
  border-radius: 2px;
  font-size: 14px;
  font-weight: var(--fw-bold);
  padding: 8px 6px;
  box-sizing: border-box;
}

.info-table-td {
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: var(--color-brown);
}

/* 画像ペア（2枚横並び・密接） */
.img-pair {
  display: flex;
  width: 680px;
  height: 191px;
  border: 1px solid #ccc;
  border-radius: 16px;
  overflow: hidden;
  box-sizing: border-box;
}

.img-pair-left {
  width: 50%;
  height: 100%;
}

.img-pair-right {
  position: relative;
  width: 50%;
  height: 100%;
}

/* 1枚画像エリア */
.img-single {
  width: 680px;
  height: 191px;
  border: 1px solid #ccc;
  border-radius: 16px;
  overflow: hidden;
  box-sizing: border-box;
}

.img-single-lg {
  height: 231px;
}

/* 募集要項テーブル（Action 03用） */
.entry-table {
  width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.entry-table-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 14px;
  text-align: left;
}

.entry-table-th {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  min-width: 100px;
  height: 26px;
  flex-shrink: 0;
  padding: 8px 6px;
  background: var(--color-orange);
  color: var(--color-white);
  font-weight: var(--fw-bold);
  font-size: 14px;
  border-radius: 2px;
  box-sizing: border-box;
}

.entry-table-td {
  flex: 1;
  padding-top: 4px;
  color: var(--color-brown);
  font-size: 16px;
  font-weight: var(--fw-medium);
  line-height: 1.6;
}

.entry-table-note {
  font-size: 12px;
  display: block;
  margin-top: 4px;
}

/* 応募方法セクション */
.entry-section {
  margin-top: 40px;
  width: 690px;
  margin-left: auto;
  margin-right: auto;
}

.entry-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.entry-section-title-line {
  height: 28px;
}

.entry-section-title-line-right {
  transform: scaleX(-1);
}

.entry-section-title-text {
  font-size: 20px;
  font-weight: var(--fw-bold);
  color: var(--color-brown);
}

/* タブナビゲーション */
.entry-tabs {
  display: flex;
  width: 690px;
}

.entry-tab {
  flex: 1;
  height: 63px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding-top: 14px;
  font-size: 18px;
  font-weight: var(--fw-bold);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  background: #C8B3A7;
  color: var(--color-brown);
  border-radius: 16px 16px 0 0;
}

.entry-tab-active {
  background: var(--color-orange);
  color: var(--color-white);
}

.entry-tab:hover:not(.entry-tab-active) {
  background: #B8A397;
}

[data-tab="web"] .entry-tab-highlight {
  font-size: 22px;
}

[data-tab="mail"] .entry-tab-highlight {
  font-size: 20px;
}

/* タブパネル */
.entry-panel {
  display: none;
  background: #F0EFEC;
  border-radius: 0 0 16px 16px;
  padding: 24px 32px 32px;
}

.entry-panel-active {
  display: block;
}

.entry-panel-content {
  max-width: 580px;
  margin: 0 auto;
}

/* 3ステップフロー */
.entry-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  margin-top: 16px;
  margin-bottom: 24px;
}

.entry-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 160px;
}

.entry-step-icon-wrap {
  position: relative;
  width: 120px;
  height: 120px;
}

.entry-step-badge {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 36px;
  height: 36px;
  z-index: 1;
}

.entry-step-icon {
  width: 120px;
  height: 120px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.entry-step-icon img {
  max-width: 48%;
  max-height: 48%;
}

.entry-step-icon img.entry-step-icon-lg {
  max-width: 53%;
  max-height: 53%;
}

.entry-step-icon img.entry-step-icon-md {
  max-width: 42%;
  max-height: 42%;
}

.entry-step-icon img.entry-step-icon-sm {
  max-width: 38%;
  max-height: 38%;
}

.entry-step-text {
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--color-brown);
  text-align: center;
  line-height: 1.6;
  white-space: nowrap;
}

.entry-step-arrow {
  display: flex;
  align-items: center;
  padding-top: 48px;
}

.entry-step-arrow img {
  width: 13px;
  height: auto;
}

/* 注意事項 */
.entry-divider {
  width: 100%;
  height: 3px;
  background: var(--color-orange);
  margin: 24px 0;
}

.entry-notes {
  margin-bottom: 24px;
}

.entry-notes-title {
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--color-brown);
  margin-bottom: 8px;
}

.entry-notes-list {
  font-size: 12px;
  color: var(--color-brown);
  line-height: 1.8;
  list-style: none;
  padding-left: 1em;
  margin: 0;
}

.entry-notes-list li {
  position: relative;
  padding-left: 1em;
}

.entry-notes-list li::before {
  content: "";
  position: absolute;
  left: -0.2em;
  top: 0.7em;
  width: 4px;
  height: 4px;
  background: var(--color-brown);
  border-radius: 50%;
}

.entry-notes-privacy {
  font-size: 12px;
  margin-top: 12px;
}

.entry-notes-privacy a {
  color: var(--color-orange);
  text-decoration: underline;
}

.entry-notes-privacy a:hover {
  text-decoration: none;
}

/* 郵送応募パネル */
.entry-mail-info {
  text-align: center;
}

.entry-mail-text {
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: var(--color-brown);
  margin-bottom: 24px;
}

.entry-mail-address {
  background: var(--color-white);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 16px;
}

.entry-mail-address p {
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: var(--color-brown);
  line-height: 1.8;
  margin: 0;
}

.entry-mail-note {
  font-size: 12px;
  color: var(--color-brown);
  margin: 0;
}

/* Web応募ボックス（レガシー互換） */
.entry-box {
  background: #F0EFEC;
  border-radius: 0 0 16px 16px;
  padding: 24px 32px 32px;
}

.entry-box-title {
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: var(--color-brown);
  text-align: center;
  margin-bottom: 24px;
}

/* 応募規約エリア */
.entry-terms {
  margin-bottom: 24px;
}

.entry-terms-label {
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--color-brown);
  margin-bottom: 8px;
  text-align: center;
}

.entry-terms-content {
  background: var(--color-white);
  border-radius: 16px;
  padding: 24px;
  padding-right: 20px;
  height: 200px;
  display: flex;
  gap: 16px;
}

.entry-terms-content-inner {
  flex: 1;
  overflow-y: scroll;
  padding-right: 12px;
  font-size: 12px;
  color: var(--color-brown);
  line-height: 1.6;
}

/* スクロールバーのスタイル */
.entry-terms-content-inner::-webkit-scrollbar {
  width: 8px;
}

.entry-terms-content-inner::-webkit-scrollbar-track {
  background: #F0EFEC;
  border-radius: 100px;
}

.entry-terms-content-inner::-webkit-scrollbar-thumb {
  background: var(--color-orange);
  border-radius: 100px;
}

.entry-terms-content-inner::-webkit-scrollbar-thumb:hover {
  background: #e55f00;
}

.entry-terms-content-inner a {
  color: var(--color-orange);
  text-decoration: underline;
}

.entry-terms-content-inner a:hover {
  text-decoration: none;
}

/* チェックボックス */
.entry-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.entry-checkbox input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  min-width: 30px;
  border: 2px solid var(--color-brown);
  border-radius: 6px;
  background: var(--color-white);
  cursor: pointer;
  position: relative;
}

.entry-checkbox input[type="checkbox"]:checked {
  background: url('../img/icons/checkbox-checked.png') no-repeat center center;
  background-size: contain;
  border: none;
}

.entry-checkbox label {
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: var(--color-brown);
  cursor: pointer;
}

/* 画像キャプション */
.img-caption {
  position: absolute;
  bottom: 8px;
  left: 12px;
  font-size: 15px;
  font-weight: var(--fw-black);
  color: var(--color-brown);
}

/* イベントボタン */
.page-content .btn-link-event {
  display: inline-flex;
  height: 47px;
  border-radius: 30px;
  padding: 12px 32px;
}

.action-card-btn-wrap {
  text-align: center;
  margin-top: 32px;
}

.action-card-donation {
  background: var(--bg-page);
  padding: 16px 24px;
  margin-bottom: 24px;
}

.action-card-donation-tag {
  display: inline-flex;
  align-items: center;
  background: var(--color-orange);
  color: var(--color-white);
  border-radius: var(--radius-tag);
  padding: 4px 12px;
  font-size: 14px;
  font-weight: var(--fw-bold);
  margin-bottom: 8px;
}

.action-card-donation-text {
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--color-brown);
  line-height: 1.2;
}

.action-card-images {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.action-card-images img {
  flex: 1;
  border-radius: 8px;
  object-fit: cover;
}

.action-card-list {
  margin-bottom: 24px;
}

.action-card-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-page);
  border-radius: 2px;
  margin-bottom: 6px;
  font-size: 14px;
}

.action-card-list-item:last-child {
  margin-bottom: 0;
}

.action-card-btn {
  display: flex;
  justify-content: center;
}

/* ===================
   カカオの木（装飾）
   =================== */

.cacao-tree {
  position: absolute;
  width: 146px;
  height: auto;
  z-index: 3; /* テキストより下、ウェーブより上に表示 */
}

.cacao-tree-left {
  left: 0;
  top: 200px;
}

.cacao-tree-right {
  right: 0;
  top: 200px;
}

/* ===================
   Action Card Large（アクションカード大）
   =================== */

.action-card-lg {
  position: relative;
  border-radius: var(--radius-card-lg);
  overflow: visible;
  max-width: 800px;
  margin: 0 auto;
  filter: drop-shadow(20px 20px 10px #DCCFC6);
}

.action-card-lg-badge {
  position: absolute;
  top: -20px;
  left: -30px;
  width: 85px;
  height: 85px;
  z-index: 10;
}

.action-card-lg-badge img {
  width: 100%;
  height: 100%;
}

.action-card-lg-inner {
  background: var(--color-white);
  border-radius: var(--radius-card-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.action-card-lg-image {
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.action-card-lg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.action-card-lg-content {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 8px 48px 5px;
}

.action-card-lg-left {
  flex: 0 0 350px;
  width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-card-lg-right {
  flex: 0 0 354px;
  width: 354px;
  display: flex;
  flex-direction: column;
}

.action-card-lg-title {
  font-size: 30px;
  font-weight: var(--fw-bold);
  color: var(--color-brown);
  line-height: 1.4;
  text-align: center;
}

.action-card-lg-desc {
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: var(--color-brown);
  line-height: 1.5;
}

.action-card-lg-date-wrap {
  margin-top: auto;
}

.action-card-lg-date-wrap .divider-orange,
.action-card-lg-date-wrap .divider-blue {
  margin-top: 8px;
}

.action-card-lg-date {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  margin-top: 1px;
}

.action-card-lg-date img {
  align-self: center;
  margin-right: 6px;
  position: relative;
  top: 3px;
}

.action-card-lg-date .date-label {
  font-size: 20px;
  font-weight: var(--fw-medium);
  color: var(--color-brown);
}

.action-card-lg-date .date-num {
  font-size: 28px;
  font-weight: var(--fw-bold);
  color: var(--color-blue);
}

.action-card-lg-date .date-day {
  font-size: 24px;
  font-weight: var(--fw-bold);
  color: var(--color-blue);
}

.action-card-lg-date .date-slash {
  font-size: 24px;
  font-weight: var(--fw-bold);
  color: #0068B7;
}

.action-card-lg .btn-link-full {
  width: 100%;
  border-radius: 0 0 var(--radius-card-lg) var(--radius-card-lg);
}

/* ===================
   Action Card Small（アクションカード小）
   =================== */

.action-card-sm-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.action-card-sm {
  position: relative;
  width: 380px;
  background: var(--color-white);
  border-radius: var(--radius-card-md);
  overflow: visible;
  filter: drop-shadow(20px 20px 10px #DCCFC6);
}

.action-card-sm-badge {
  position: absolute;
  top: -10px;
  left: -30px;
  width: 90px;
  height: 90px;
  z-index: 20;
}

.action-card-sm-badge img {
  width: 100%;
  height: 100%;
}

.action-card-sm-image {
  width: 100%;
  height: 110px;
  overflow: hidden;
  border-radius: var(--radius-card-md) var(--radius-card-md) 0 0;
}

.action-card-sm-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.action-card-sm-content-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -16px;
}

.action-card-sm-ttl-base {
  width: 300px;
  height: 16px;
  display: block;
  position: relative;
  z-index: 11;
}

.action-card-sm-content {
  position: relative;
  z-index: 12;
  width: 280px;
  padding: 0;
  margin-top: -8px;
}

.action-card-sm-title {
  font-size: 28px;
  font-weight: var(--fw-bold);
  color: var(--color-brown);
  line-height: 1.3;
  margin: 0;
  text-align: center;
}

.action-card-sm-title-line {
  margin: 9px 0 6px;
}

.action-card-sm-desc {
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: var(--color-brown);
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 0;
}

.action-card-sm-date-wrap {
  margin-top: 12px;
  margin-bottom: 6px;
}

.action-card-sm-date-wrap .divider-orange {
  margin-bottom: 4px;
}

.action-card-sm-date {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  white-space: nowrap;
}

.action-card-sm-date img {
  align-self: center;
  margin-right: 6px;
  position: relative;
  top: 2px;
}

.action-card-sm-date .date-label {
  font-size: 20px;
  font-weight: var(--fw-medium);
  color: var(--color-brown);
}

.action-card-sm-date .date-num {
  font-size: 28px;
  font-weight: var(--fw-bold);
  color: var(--color-blue);
}

.action-card-sm-date .date-day {
  font-size: 24px;
  font-weight: var(--fw-bold);
  color: var(--color-blue);
}

.action-card-sm-date .date-slash {
  font-size: 24px;
  font-weight: var(--fw-bold);
  color: var(--color-blue);
}

/* オレンジ版（Action 02, 03用） */
.action-card-sm-date-orange {
  color: var(--color-orange);
}

.action-card-sm-date-orange .date-num {
  color: var(--color-orange);
}

.action-card-sm-date-orange .date-day {
  color: var(--color-orange);
}

.action-card-sm-date-orange .date-slash {
  font-size: 24px;
  font-weight: var(--fw-bold);
  color: var(--color-orange);
}

/* 注記テキスト（「必着」など） */
.action-card-sm-date .date-note {
  font-size: 18px;
  font-weight: var(--fw-medium);
  color: inherit;
}

.action-card-sm-date-orange .date-tilde {
  font-size: 24px;
  color: var(--color-orange);
}

/* グリーン版（Action 04, 05用） */
.action-card-sm-date-green {
  color: var(--color-green);
}

.action-card-sm-date-green .date-num {
  color: var(--color-green);
}

.action-card-sm-date-green .date-day {
  color: var(--color-green);
}

.action-card-sm-date-green .date-slash {
  font-size: 24px;
  font-weight: var(--fw-bold);
  color: var(--color-green);
}

.action-card-sm-date-green .date-tilde {
  font-size: 24px;
  color: var(--color-green);
}

.action-card-sm > .btn-link {
  width: 100%;
  border-radius: 0 0 var(--radius-card-md) var(--radius-card-md);
}

/* アクションカード小 - 青色バージョン（Action 01用） */
.action-card-sm-blue .action-card-sm-title-line {
  background-color: var(--color-blue);
}

.action-card-sm-date-blue .date-num,
.action-card-sm-date-blue .date-day,
.action-card-sm-date-blue .date-slash {
  color: var(--color-blue);
}

.btn-link-blue {
  background-color: var(--color-blue);
}

/* ===================
   Category 背景・ウェーブ・イラスト
   （メインスタイルは上部で定義済み）
   =================== */

.category-wave-top {
  top: 0;
  left: 0;
}

.category-wave-bottom {
  bottom: 0;
  left: 0;
}

.category-illust {
  position: absolute;
  z-index: 50; /* ウェーブより上に表示 */
}

.category-illust-left {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
}

.category-illust-right {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
}

.category-illust-bottom {
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
}

/* ===================
   Action Card 2カラム
   =================== */

.action-card-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ===================
   タブレット・狭幅PC対応（1000px以下）
   =================== */

@media (max-width: 1000px) {
  .action-card {
    width: calc(100% - 80px);
    max-width: 800px;
  }

  /* アクションカード大のレスポンシブ対応 */
  .action-card-lg-content {
    flex-wrap: wrap;
    gap: 8px;
  }

  .action-card-lg-left {
    flex: 1 1 auto;
    width: auto;
    min-width: 200px;
  }

  .action-card-lg-right {
    flex: 1 1 auto;
    width: auto;
    min-width: 280px;
    border-top: 3px solid var(--color-blue);
    padding-top: 4px;
    margin-top: 4px;
  }

  /* 応募期間の改行を有効にする */
  .action-card-sm-date {
    white-space: normal;
    flex-wrap: wrap;
  }

  .page-content .card-donation {
    width: 100%;
    max-width: 680px;
  }

  .img-pair {
    width: 100%;
    max-width: 680px;
    height: auto;
    aspect-ratio: 680 / 191;
  }

  .img-pair-left,
  .img-pair-right {
    height: auto;
  }

  .img-pair-left img,
  .img-pair-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .entry-table {
    width: 100%;
    max-width: 680px;
  }

  .img-single {
    width: 100%;
    max-width: 680px;
    height: auto;
    aspect-ratio: 680 / 191;
  }

  .img-single-lg {
    aspect-ratio: 680 / 231;
  }

  .img-single img,
  .img-single picture img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .btn-link-full {
    width: 100%;
    max-width: 800px;
  }

  .entry-download-buttons {
    width: 100%;
    max-width: 690px;
    flex-wrap: wrap;
  }

  .btn-download-pill {
    flex: 1 1 auto;
    min-width: 240px;
    padding: 16px 20px;
  }

  .entry-section {
    width: 100%;
    max-width: 690px;
  }

  .entry-tabs {
    width: 100%;
    max-width: 690px;
  }

  /* About リキッド対応 */
  .about {
    padding: 0 40px;
  }

  .about-block {
    width: 100%;
    max-width: 780px;
  }

  .about-row {
    gap: 20px 40px;
  }

  .about-content {
    max-width: none;
  }
}

/* ===================
   SP版（375px）レスポンシブ
   =================== */

@media (max-width: 768px) {
  /* ページ全体 SP */
  .page {
    max-width: 100%;
    width: 100%;
  }

  /* ヘッダー SP */
  .header {
    height: 70px;
    padding: 0 16px;
  }

  .header-logo {
    height: 36px;
  }

  /* KV SP */
  .kv {
    aspect-ratio: unset;
    min-height: auto;
    height: auto;
    position: relative;
  }

  .kv-bg {
    position: relative;
    display: block;
  }

  .kv-bg-img {
    position: relative;
    object-fit: contain;
    object-position: center top;
    width: 100%;
    height: auto;
  }

  .kv-content-pc {
    display: none !important;
  }

  .kv-content-sp {
    display: flex !important;
    position: relative;
    margin-top: -130px;
    padding-bottom: 80px;
    z-index: 10;
  }

  .kv-content {
    padding-left: 16px;
    padding-right: 16px;
    justify-content: flex-start;
  }

  .kv-sub-wrap {
    gap: 6px;
    margin-bottom: 2px;
  }

  .kv-sub-text {
    font-size: 14px;
    color: var(--color-brown);
  }

  .kv-sub-text-icon {
    font-size: 14px;
  }

  .kv-logo {
    width: 63%;
    max-width: 67%;
    margin-bottom: 0;
  }

  .kv-title {
    width: 106%;
    max-width: 110%;
    margin-bottom: 14px;
    margin-top: 0;
  }

  .kv-copy {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    font-size: 4.27vw;
    max-width: 96%;
    line-height: 1.7;
    text-align: center;
    white-space: normal;
  }

  /* セクション共通 SP */
  .section {
    padding: 20px 0;
  }

  .section + .section {
    margin-top: 12px;
  }

  .section-inner {
    padding: 0 16px;
  }

  /* 左右の木イラスト SP */
  .section-illust {
    width: 65px !important;
    top: -110px !important;
  }

  .section-illust-left {
    left: calc(50% - 50vw) !important;
  }

  .section-illust-right {
    right: calc(50% - 50vw) !important;
  }

  /* ウェーブエリア SP専用 木イラスト */
  .wave-illust-sp {
    position: absolute;
    width: 65px;
    height: auto;
    bottom: -30px;
    z-index: 10;
  }

  .wave-illust-sp-left {
    left: 0;
  }

  .wave-illust-sp-right {
    right: 0;
  }

  /* オレンジウェーブ SP: 右側非表示、左側中央 */
  .wave-transition-orange .wave-illust-right {
    display: none;
  }

  .wave-transition-orange .wave-illust-left {
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
  }

  /* グリーンウェーブ SP: 左側非表示、右側中央 */
  .wave-transition-green .wave-illust-left {
    display: none;
  }

  .wave-transition-green .wave-illust-right {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    bottom: -15px;
  }

  /* About SP */
  .about {
    gap: 48px;
    padding: 0 16px;
  }

  .about-block {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 16px;
    max-width: 100%;
    width: 100%;
  }

  .about-title {
    font-size: 24px;
    margin-bottom: 8px;
    text-align: center;
  }

  .about-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .about-row .about-text {
    order: 1;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 0;
    text-align: left;
  }

  .about-row .about-img {
    width: 66%;
    max-width: 250px;
    order: 2;
    align-self: center;
  }

  .about-row .about-link {
    order: 3;
    margin-top: 0;
    align-self: flex-start;
    font-size: 14px;
  }

  /* テキスト上、2枚の写真を横並び＋少し重なる SP */
  .about-img.about-img-circles {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .about-img-circles {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .about-img-circles .bracket-text {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
    width: 100%;
    position: relative;
    z-index: 10;
  }

  /* 2枚の写真を横並び＋重ねる */
  .about-img-circles .about-circle {
    width: 165px !important;
    height: 165px !important;
    position: relative;
  }

  .about-img-circles .about-circle:first-of-type {
    z-index: 2;
    margin-right: -35px;
  }

  .about-img-circles .about-circle + .about-circle {
    margin-top: 0 !important;
    z-index: 1;
  }

  .about-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    order: 1;
    text-align: left;
  }

  .about-content .about-text {
    text-align: left;
  }

  /* キャンペーンセクションはセンタリング */
  .about-content-campaign {
    max-width: 100%;
    text-align: center;
  }

  .about-content-campaign .about-title {
    text-align: center;
  }

  .about-content-campaign .about-text {
    text-align: justify;
  }

  .about-title-sub {
    font-size: 20px;
  }

  .about-title-campaign-name {
    font-size: 22px;
  }

  /* キャンペーンブロック SP - グリッドを解除してフレックス縦並びに */
  .about-block-campaign .about-row {
    display: flex !important;
    flex-direction: column;
    gap: 24px;
  }

  .about-block-campaign .about-row .about-content,
  .about-block-campaign .about-row .about-content-campaign {
    order: 1;
  }

  .about-block-campaign .about-row .about-img,
  .about-block-campaign .about-row .about-img.about-img-circles {
    order: 2;
    width: 100%;
    max-width: 100%;
  }

  /* Action Nav SP */
  .action-nav {
    gap: 32px;
    max-width: 91%;
    width: 100%;
  }

  .action-nav-category {
    gap: 16px;
  }

  .action-nav-title-line {
    width: 10px;
    height: 30px;
  }

  .action-nav-title-text {
    font-size: 20px;
  }

  .action-nav-cards {
    flex-direction: column;
    gap: 12px;
  }

  .action-nav-card {
    padding: 16px;
    gap: 12px;
    width: 100%;
  }

  .action-nav-card-badge {
    width: 70px;
    height: 70px;
  }

  .action-nav-card-title {
    font-size: 16px;
  }

  .action-nav-card-period {
    font-size: 12px;
  }

  /* Category セクション SP */
  .category {
    padding: 32px 0;
  }

  .category-inner {
    padding: 0 16px;
  }

  .category-title {
    margin-bottom: 32px;
  }

  .category-title-line {
    width: 10px;
    height: 30px;
  }

  .category-title-text {
    font-size: 18px;
  }

  /* セクションタイトル（吹き出し）の下マージン SP */
  .title-section-sm-inline {
    margin-bottom: 20px !important;
  }

  /* Action カード SP */
  .action-card {
    width: 100%;
    padding: 24px 16px;
    margin-bottom: 24px;
    border-width: 2px;
    border-radius: 16px;
  }

  .action-card:last-child {
    margin-bottom: 60px;
  }

  /* カテゴリ1・2はウェーブまでのマージンを小さく */
  .category-blue .action-card:last-child,
  .category-orange .action-card:last-child {
    margin-bottom: 0;
  }

  .action-card-badge {
    top: -12px;
    left: -12px;
    width: 70px;
    height: 70px;
  }

  .action-card-header {
    padding-left: 0;
    padding-top: 12px;
    gap: 8px;
    margin-bottom: 12px;
  }

  .action-card-sub-title-line {
    width: 10px;
    height: 30px;
  }

  .action-card-sub-title-text {
    font-size: 16px;
  }

  .action-card-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .action-card-date {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .action-card-date .date-num {
    font-size: 20px;
  }

  .action-card-date .date-note {
    font-size: 14px;
  }

  .action-card-divider {
    margin: 16px 0;
    height: 2px;
  }

  /* アクション詳細カード：日付下ライン SP */
  .action-card .divider-blue,
  .action-card .divider-orange,
  .action-card .divider-green {
    height: 2px;
  }

  .action-card-body {
    font-size: 17px;
    margin-bottom: 16px;
  }

  .action-card-donation {
    padding: 12px 16px;
    margin-bottom: 16px;
  }

  .action-card-donation-tag {
    font-size: 12px;
    padding: 3px 10px;
  }

  .action-card-donation-text {
    font-size: 12px;
  }

  .action-card-images {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
  }

  .action-card-images img {
    width: 100%;
    height: auto;
  }

  .action-card-list {
    margin-bottom: 16px;
  }

  .action-card-list-item {
    padding: 8px 12px;
    font-size: 17px;
    margin-bottom: 4px;
  }

  .action-card-btn {
    flex-direction: column;
    gap: 12px;
  }

  .action-card-btn .btn {
    width: 100%;
  }

  /* カカオの木 SP */
  .cacao-tree {
    width: 60px;
  }

  .cacao-tree-left,
  .cacao-tree-right {
    top: 100px;
  }

  /* Action Card Large SP - action-card-sm と同じレイアウト */
  .action-card-lg {
    border-radius: 20px;
    overflow: visible;
  }

  .action-card-lg-badge {
    top: -8px;
    left: -8px;
    width: 60px;
    height: 60px;
  }

  .action-card-lg-inner {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
  }

  .action-card-lg-image {
    width: 100%;
    height: 140px;
    border-radius: 20px 20px 0 0;
  }

  .action-card-lg-content {
    flex-direction: column;
    gap: 0;
    padding: 20px;
    position: relative;
    background: var(--color-white);
  }

  .action-card-lg-left {
    width: 100%;
    text-align: center;
  }

  .action-card-lg-title {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .action-card-lg-desc {
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
  }

  .action-card-lg-right {
    display: none;
  }

  .action-card-lg-date-wrap {
    margin-top: 12px;
    margin-bottom: 10px;
    justify-content: center;
  }

  .action-card-lg .btn-link-full {
    border-radius: 0 0 20px 20px;
  }

  .action-card-lg-date {
    font-size: 14px;
  }

  .action-card-lg-date strong {
    font-size: 20px;
  }

  .action-card-lg .btn-link-full {
    border-radius: 0 0 var(--radius-card-md) var(--radius-card-md);
  }

  /* SP版: 詳しくはこちらボタンを茶色に */
  .action-card-sm .btn-link-blue,
  .btn-link-blue {
    background-color: var(--color-brown) !important;
  }

  /* Action Card Large下のマージン調整 */
  .action-card-lg {
    margin-bottom: 0;
    filter: drop-shadow(14px 14px 5px #DCCFC6);
  }

  /* Action Card Small SP */
  .action-card-sm-grid {
    flex-direction: column;
    gap: 40px;
  }

  .action-card-sm {
    width: 100%;
    border-radius: 24px;
    filter: drop-shadow(14px 14px 5px #DCCFC6);
  }

  .action-card-sm-badge {
    top: -8px;
    left: -8px;
    width: 70px;
    height: 70px;
  }

  .action-card-sm-image {
    height: 100px;
    border-radius: 24px 24px 0 0;
  }

  .action-card-sm-content-wrap {
    margin-top: -12px;
  }

  .action-card-sm-ttl-base {
    width: 85%;
    height: 14px;
  }

  .action-card-sm-content {
    width: 80%;
    padding: 0;
    margin-top: -6px;
  }

  .action-card-sm-title {
    font-size: 26px;
    margin-bottom: 6px;
  }

  .action-card-sm-desc {
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.5;
  }

  .action-card-sm-date-wrap {
    margin-top: 8px;
    margin-bottom: 10px;
  }

  .action-card-sm-date-wrap .divider-blue,
  .action-card-sm-date-wrap .divider-orange,
  .action-card-sm-date-wrap .divider-green {
    height: 2px;
    margin-bottom: 8px;
  }

  .action-card-sm-date {
    font-size: 14px;
  }

  .action-card-sm-date .date-label {
    font-size: 16px;
  }

  .action-card-sm-date .date-num {
    font-size: 22px;
  }

  .action-card-sm-date .date-day {
    font-size: 20px;
  }

  .action-card-sm-date .date-note {
    font-size: 14px;
  }

  .action-card-sm > .btn-link {
    border-radius: 0 0 24px 24px;
    height: 47px;
    font-size: 16px;
  }

  .page-content .action-card-sm-title-line {
    height: 2px;
  }

  /* Category イラスト SP */
  .category-illust-left,
  .category-illust-right {
    width: 60px;
  }

  .category-illust-bottom {
    width: 200px;
    bottom: 20px;
  }

  /* Action Card 2カラム SP */
  .action-card-2col {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* 画像ペア SP - 縦積み */
  .img-pair {
    flex-direction: column;
    width: 100%;
    height: auto;
    aspect-ratio: unset;
    border-radius: 0 !important;
    border: none !important;
  }

  .img-pair-left,
  .img-pair-right {
    width: 100%;
    height: auto;
    aspect-ratio: 340 / 191;
    overflow: hidden;
    border: 1px solid #ccc;
  }

  /* 1枚目: 上だけ角丸、下は直角 */
  .img-pair-left {
    border-radius: 16px 16px 0 0 !important;
    border-bottom: none;
  }

  /* 2枚目: 下だけ角丸、上は直角 */
  .img-pair-right {
    border-radius: 0 0 16px 16px !important;
  }

  .img-pair-left img,
  .img-pair-right img {
    border-radius: 0 !important;
  }

  /* 画像シングル SP */
  .img-single {
    width: 100%;
    height: auto !important;
    aspect-ratio: unset;
  }

  .img-single-lg {
    aspect-ratio: unset;
  }

  .img-single img,
  .img-single picture img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

  /* 情報テーブル SP */
  .info-table-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }

  .info-table-th {
    min-width: 70px;
    font-size: 12px;
    padding: 6px 4px;
  }

  .info-table-td {
    font-size: 14px;
  }

  /* 募集要項テーブル SP */
  .entry-table {
    width: 100%;
  }

  .entry-table-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }

  .entry-table-th {
    width: 22%;
    min-width: 70px;
    font-size: 12px;
    padding: 6px 4px;
    flex-shrink: 0;
    height: auto;
  }

  .entry-table-td {
    font-size: 15px;
  }

  /* 応募タブ SP */
  .entry-section {
    width: 100%;
    margin-top: 40px;
  }

  .entry-section-title {
    margin-bottom: 12px;
  }

  .entry-tabs {
    width: 100%;
    flex-direction: row;
  }

  .entry-tab {
    flex: 1;
    display: block;
    height: auto;
    min-height: 60px;
    padding: 12px 8px;
    font-size: 16px;
    border-radius: 12px 12px 0 0;
    line-height: 1.4;
    text-align: center;
    white-space: normal;
    word-break: break-all;
  }

  .entry-tab-highlight {
    font-size: 20px;
  }

  .entry-panel {
    border-radius: 0 0 12px 12px;
    padding: 8px 16px 20px;
  }

  /* 応募ステップ SP - 横並び（アイコン左、テキスト右） */
  .entry-steps {
    flex-direction: column;
    gap: 0;
    margin-top: 4px;
    margin-bottom: 20px;
    align-items: center;
  }

  .entry-step {
    flex-direction: row;
    width: 100%;
    max-width: 280px;
    gap: 16px;
    align-items: center;
    padding: 12px 0;
    justify-content: flex-start;
    margin: 0 auto;
  }

  .entry-step-icon-wrap {
    width: 32vw;
    max-width: 120px;
    height: 32vw;
    max-height: 120px;
    flex-shrink: 0;
  }

  .entry-step-icon {
    width: 32vw;
    max-width: 120px;
    height: 32vw;
    max-height: 120px;
  }

  .entry-step-badge {
    width: 36px;
    height: 36px;
    object-fit: contain;
  }

  .entry-step-text {
    text-align: left;
    white-space: normal;
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
    min-width: 0;
  }

  .entry-step-text br {
    display: none;
  }

  /* 矢印を下向きに表示 - アイコンの中央に配置 */
  .entry-step-arrow {
    display: flex;
    justify-content: flex-start;
    padding: 0;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding-left: 52px;
    box-sizing: border-box;
  }

  .entry-step-arrow img {
    transform: rotate(90deg);
    width: 12px;
    height: auto;
  }

  /* 応募規約 SP */
  .entry-terms-content {
    height: 380px !important;
    padding: 24px !important;
    padding-right: 10px !important;
    display: flex !important;
    gap: 8px !important;
  }

  .entry-terms-content-inner {
    flex: 1 !important;
    overflow-y: scroll !important;
    overflow-x: hidden !important;
    padding-right: 12px !important;
    max-height: 100% !important;
  }

  .entry-terms-content-inner::-webkit-scrollbar {
    width: 8px !important;
    -webkit-appearance: none !important;
    appearance: none !important;
  }

  .entry-terms-content-inner::-webkit-scrollbar-track {
    background: #F0EFEC !important;
    border-radius: 100px !important;
  }

  .entry-terms-content-inner::-webkit-scrollbar-thumb {
    background: var(--color-orange) !important;
    border-radius: 100px !important;
  }

  .entry-checkbox label {
    font-size: 14px;
  }

  /* 郵送応募パネル SP */
  .entry-address-section {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
    padding: 16px;
  }

  .entry-address-section .entry-mail-address {
    text-align: center;
  }

  .entry-download-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-download-pill {
    width: 100%;
    min-width: auto;
  }
}

/* ===================
   郵送応募パネル追加スタイル
   =================== */

/* 送付先エリア */
.entry-address-section {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  background: var(--color-white);
  border-radius: 16px;
  padding: 10px 24px;
  margin-bottom: 24px;
}

.entry-address-label {
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: var(--color-orange);
  margin: 0;
  text-align: center;
}

.entry-address-section .entry-mail-address {
  background: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.entry-address-section .entry-mail-address p {
  font-size: 14px;
  line-height: 1.4;
}

/* SP版 送付先エリア */
@media (max-width: 768px) {
  .entry-address-section {
    grid-template-columns: 50px 1fr;
    gap: 8px;
    padding: 16px 12px;
  }

  .entry-address-label {
    font-size: 14px;
    line-height: 1.4;
  }

  .entry-address-section .entry-mail-address p {
    font-size: 12px;
    line-height: 1.6;
    text-align: left;
  }
}

/* 団体応募について */
.entry-group-info {
  margin-bottom: 24px;
}

.entry-group-title {
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--color-brown);
  margin-bottom: 4px;
}

.entry-group-text {
  font-size: 12px;
  font-weight: var(--fw-medium);
  color: var(--color-brown);
  line-height: 1.8;
  margin: 0;
}

.entry-group-text.entry-note {
  padding-left: 1em;
  text-indent: -1em;
}

/* ダウンロードボタンエリア */
.entry-download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.btn-download-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--color-brown);
  color: var(--color-white);
  font-size: 16px;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  padding: 16px 32px;
  border-radius: 40px;
  text-align: left;
  min-width: 260px;
  height: 67px;
  box-sizing: border-box;
  transition: opacity 0.2s;
}

.btn-download-pill:hover {
  opacity: 0.85;
}

.btn-download-pill img {
  flex-shrink: 0;
}

/* ===================
   クイズモーダル
   =================== */

/* オーバーレイ */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  box-sizing: border-box;
  overflow-y: auto;
}

.modal-overlay.is-open {
  display: flex;
}

/* モーダルラッパー（閉じるボタンのはみ出し用） */
.modal-box {
  position: relative;
  width: 100%;
  max-width: 800px;
}

/* 閉じるボタン（モーダルボックスの外側に配置） */
.modal-close {
  position: absolute;
  top: -28px;
  right: -28px;
  width: 80px;
  height: 80px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.2s;
  z-index: 20;
}

.modal-close img {
  display: block;
  width: 100%;
  height: 100%;
}

/* モーダルコンテンツ（外側の枠） */
.modal-box-inner {
  background: #f0efec;
  border: 4px solid var(--color-brown);
  border-radius: 16px;
  padding: 52px 22px 52px 40px;
  box-sizing: border-box;
  height: 650px;
  max-height: calc(100vh - 120px);
  display: flex;
  gap: 16px;
}

/* モーダルコンテンツ（スクロール領域） */
.modal-content-scroll {
  flex: 1;
  overflow-y: auto;
  padding-right: 16px;
}

/* モーダルボックスのスクロールバー（応募規約と同じスタイル） */
.modal-content-scroll::-webkit-scrollbar {
  width: 8px;
}

.modal-content-scroll::-webkit-scrollbar-track {
  background: #FFFFFF;
  border-radius: 100px;
}

.modal-content-scroll::-webkit-scrollbar-thumb {
  background: var(--color-green);
  border-radius: 100px;
}

.modal-content-scroll::-webkit-scrollbar-thumb:hover {
  background: #005a33;
}

.modal-close:hover {
  opacity: 0.85;
}

/* タイトル */
.modal-title {
  font-size: 28px;
  font-weight: var(--fw-bold);
  color: var(--color-brown);
  text-align: center;
  margin: 0 0 24px;
  line-height: 1.4;
}

.modal-title .color-red {
  color: #E60020;
}

.modal-title .color-orange {
  color: var(--color-orange);
}

/* タイトル横のアクセント（緑の縦線） */
.modal-title-accent {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 6px;
  height: 40px;
  background: var(--color-green);
  border-radius: 3px;
}

/* Question バッジ */
.modal-question-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-green);
  color: var(--color-white);
  font-size: 16px;
  font-weight: var(--fw-bold);
  padding: 8px 24px;
  border-radius: 20px;
  margin: 0 auto 20px;
  display: block;
  width: fit-content;
}

/* 質問文 */
.modal-question-text {
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: var(--color-brown);
  line-height: 1.8;
  text-align: left;
  margin: 0 0 16px;
}

/* 選択肢 */
.modal-choices {
  margin-bottom: 24px;
}

.modal-choice {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
  cursor: pointer;
}

.modal-choice input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-brown);
  border-radius: 50%;
  background: var(--color-white);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.modal-choice input[type="radio"]:checked {
  border-color: var(--color-green);
}

.modal-choice input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--color-green);
  border-radius: 50%;
}

.modal-choice-text {
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: var(--color-brown);
  line-height: 1.5;
}

/* 正解を見るボタン */
.modal-answer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  height: 44px;
  background: var(--color-brown);
  color: var(--color-white);
  font-size: 16px;
  font-weight: var(--fw-bold);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  margin: 0 auto 20px;
  transition: opacity 0.2s;
}

.modal-answer-btn:hover {
  opacity: 0.85;
}

.page-content .modal-answer-arrow {
  width: 10px !important;
  height: 15px !important;
  transform: rotate(90deg);  /* 下向き（正解を見る） */
  transition: transform 0.3s;
}

.page-content .modal-answer-btn.is-open .modal-answer-arrow {
  transform: rotate(-90deg);  /* 上向き（正解を隠す） */
}

/* 正解エリア */
.modal-answer-area {
  display: none;
}

.modal-answer-area.is-visible {
  display: block;
  padding-bottom: 8px;
  margin-bottom: 0;
  border-bottom: 3px solid var(--color-green);
}

/* 最後の問題の解答エリアはラインなし */
.quiz-item:last-of-type .modal-answer-area.is-visible {
  border-bottom: none;
}

.modal-answer-label {
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: var(--color-green);
  margin: 24px 0 16px;
}

.modal-answer-content {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.modal-answer-image {
  flex-shrink: 0;
  width: 230px;
  height: 153px;
  overflow: hidden;
}

.modal-answer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-answer-text {
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: var(--color-brown);
  line-height: 1.6;
  margin: 0;
}

.modal-answer-line {
  height: 3px;
  background: var(--color-green);
  border-radius: 2px;
  margin-top: 16px;
}

/* クイズアイテム */
.quiz-item {
  max-width: 600px;
  margin: 0 auto 16px;
  padding-bottom: 16px;
}

.quiz-item:last-of-type {
  margin-bottom: 16px;
}

/* 段階表示: 最初はQ1以外を非表示 */
.quiz-item.quiz-hidden {
  display: none !important;
  border: none !important;
}

.quiz-item.quiz-visible {
  display: block;
}

/* 選択肢のスタイル（ラジオボタン付き） */
.modal-choices {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-choice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.modal-choice input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--color-brown);
  border-radius: 50%;
  margin: 2px 0 0 0;
  cursor: pointer;
  position: relative;
}

.modal-choice input[type="radio"]:checked {
  border-color: var(--color-green);
}

.modal-choice input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--color-green);
  border-radius: 50%;
}

.modal-choices .modal-choice-text {
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: var(--color-brown);
  line-height: 1.4;
}

/* 正解を見るボタン 非アクティブ状態 */
.modal-answer-btn:disabled {
  background: #aaa;
  cursor: not-allowed;
  opacity: 0.6;
}

.modal-answer-btn:disabled:hover {
  opacity: 0.6;
}

/* 正解・残念ラベル */
.modal-answer-label.is-correct,
.modal-answer-label.is-wrong {
  color: var(--color-green);
}

/* モーダル SP対応 */
@media (max-width: 768px) {
  .modal-overlay {
    padding: 40px 24px;
  }

  .modal-box-inner {
    padding: 24px 12px 24px 20px;
    max-height: calc(100vh - 80px);
    gap: 8px;
  }

  .modal-content-scroll {
    padding-right: 10px;
  }

  .modal-content-scroll::-webkit-scrollbar {
    width: 6px;
  }

  .modal-close {
    top: -16px;
    right: -12px;
    width: 44px;
    height: 44px;
  }

  .modal-title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-right: 8px;
  }

  .modal-title-accent {
    display: none;
  }

  .modal-question-badge {
    font-size: 14px;
    padding: 6px 20px;
  }

  .modal-question-text {
    font-size: 14px;
    text-align: left;
  }

  .modal-choice-text {
    font-size: 14px;
  }

  .modal-choice input[type="radio"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }

  .modal-choice input[type="radio"]:checked::after {
    width: 8px;
    height: 8px;
  }

  .modal-answer-btn {
    height: 48px;
    font-size: 16px;
  }

  .modal-answer-content {
    flex-direction: column;
    gap: 16px;
  }

  .modal-answer-image {
    width: 100%;
    height: auto;
    aspect-ratio: 230 / 153;
  }

  .modal-answer-text {
    font-size: 14px;
  }
}

/* ========================================
   記事モーダル（1チョコ入門）
======================================== */

/* 記事モーダル専用のボックススタイル */
.page-content .article-modal-box {
  position: relative;
}

/* 記事モーダルの閉じるボタン位置調整 */
.page-content .article-modal-box .modal-close {
  top: 20px;
  right: -28px;
}

/* 波形ヘッダー */
.page-content .article-modal-header {
  position: relative;
  height: 100px;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: -4px;
}

.page-content .article-modal-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -4px;
  background: url('../img/icons/modal-frame-top.svg') no-repeat center bottom;
  background-size: 100% 100%;
}

.page-content .article-modal-illust {
  width: 343px;
  height: auto;
  position: relative;
  z-index: 1;
}

/* 記事モーダル内側のスタイル */
.page-content .article-modal-inner {
  margin-top: 0;
  padding-top: 40px;
  border-top: none !important;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.page-content .article-content {
  max-width: 600px;
  margin: 0 auto;
}

.page-content .article-text {
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: var(--color-brown);
  line-height: 1.5;
  margin: 0 0 24px;
}

.page-content .article-text-highlight {
  font-weight: var(--fw-bold);
  text-align: center;
  margin-top: 32px;
}

.page-content .article-image {
  width: 100%;
  max-width: 530px;
  margin: 0 auto 24px;
}

.page-content .article-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
}

/* 記事モーダル SP対応 */
@media (max-width: 768px) {
  /* 波形ヘッダー SP版 - PC版と同じ構造 */
  .page-content .article-modal-header {
    height: 54px;
    margin-bottom: -2px;
  }

  .page-content .article-modal-header::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: url('../img/icons/modal-frame-top-sp.svg') !important;
    background-repeat: no-repeat !important;
    background-position: center bottom !important;
    background-size: 100% 100% !important;
  }

  /* 波形上のイラストは非表示（SP版はボックス内に配置） */
  .page-content .article-modal-illust {
    display: none;
  }

  /* ボックス - PC版と同様に上辺ボーダーなし */
  /* 波形54px + ボックス668px = 合計722px */
  .page-content .article-modal-inner {
    position: relative;
    padding-top: 0;
    padding-bottom: 24px;
    display: flex;
    flex-direction: column;
    height: 668px;
    max-height: calc(100vh - 110px);
    border-width: 2px;
  }

  /* イラストをボックス内上部に配置（スクロール外） */
  .page-content .article-modal-inner::before {
    content: '';
    display: block;
    width: 260px;
    height: 60px;
    margin: 0 auto 4px;
    background: url('../img/icons/modal-top-illust.png') no-repeat center;
    background-size: contain;
    flex-shrink: 0;
  }

  .page-content .article-modal-box .modal-close {
    top: 8px;
    right: -12px;
    width: 44px;
    height: 44px;
  }

  /* スクロール領域 - 応募規約ボックスと同じスタイル */
  .page-content .article-modal-inner .modal-content-scroll {
    flex: 1;
    overflow-y: scroll !important;
    overflow-x: hidden;
    padding-right: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .page-content .article-modal-inner .modal-content-scroll::-webkit-scrollbar {
    width: 8px !important;
    -webkit-appearance: none !important;
    appearance: none !important;
  }

  .page-content .article-modal-inner .modal-content-scroll::-webkit-scrollbar-track {
    background: #F0EFEC !important;
    border-radius: 100px !important;
  }

  .page-content .article-modal-inner .modal-content-scroll::-webkit-scrollbar-thumb {
    background: var(--color-green) !important;
    border-radius: 100px !important;
  }

  .page-content .article-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .page-content .article-image {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .page-content .article-modal-box .modal-title {
    font-size: 26px;
    margin-bottom: 16px;
  }
}
