@charset "UTF-8";

:root {
  --bg-main: #FFFFFF;
  --bg-sub: #F6F4F9;
  --bg-card: #FFFFFF;
  --bg-card-highlight: #FAF6FF;
  --bg-card-normal: rgba(255,0,127,.2);

  --text-primary: #1F1B24;
  --text-muted: #554F5E;       /* 可読性を高めるため濃いめに調整 */

  --brand-purple: #7B2CBF;
  --brand-pink: #FF007F;
  --border-light: #E4DFEC;
  --shadow-soft: 0 8px 24px rgba(123, 44, 191, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: "Helvetica Neue", Arial, "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 80px;
}

/*テキスト内フォントサイズ可変*/
.fsize01{
  font-size: 0.1em;
}
.fsize02{
  font-size: 0.2em;
}
.fsize03{
  font-size: 0.3em;
}
.fsize04{
  font-size: 0.4em;
}
.fsize05{
  font-size: 0.5em;
}
.fsize06{
  font-size: 0.6em;
}
.fsize065{
  font-size: 0.65em;
}
.fsize07{
  font-size: 0.7em;
}
.fsize075{
  font-size: 0.75em;
}
.fsize08{
  font-size: 0.8em;
}
.fsize085{
  font-size: 0.85em;
}
.fsize09{
  font-size: 0.9em;
}
.fsize095{
  font-size: 0.95em;
}
.fsize10{
  font-size: 1.0em;
}
.fsize11{
  font-size: 1.1em;
}
.fsize12{
  font-size: 1.2em;
}
.fsize13{
  font-size: 1.3em;
}
.fsize14{
  font-size: 1.4em;
}
.fsize15{
  font-size: 1.6em;
}
.fsize16{
  font-size: 1.6em;
}
.fsize17{
  font-size: 1.7em;
}
.fsize18{
  font-size: 1.8em;
}
.fsize19{
  font-size: 1.9em;
}
.fsize20{
  font-size: 2.0em;
}

/*フッター*/
	.copyright {
	  /*background:url(footer_bun2.png) center center / cover no-repeat;*/
	  text-align: center;
	  padding-top: 2em;
    background-color: #0f1a2c;
    color:#e5d5b7;
	}

  .copyright_img {
    text-align: center;
    padding-top: 2em;
  }

	.logo_dcc img {
	  width: 300px;
	  height: auto;
	  vertical-align: middle;
	}

	.mt-1, .my-1 {
	  margin-top: .25rem!important;
	}

	.small, small {
	  font-size: 80%;
	  font-weight: 400;
	}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 52px 0;
}

.intro-section {
  background-color: var(--bg-main);
  text-align: center;
}

.feature-section {
  background-color: var(--bg-sub);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.plans-section {
  background-color: var(--bg-main);
}

.venue-section {
  background-color: var(--bg-sub);
  border-top: 1px solid var(--border-light);
}

/* HERO HEADER */
.hero-header {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #0D0F1D;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-picture {
  width: 100%;
  height: auto;
  display: block;
}

.hero-img,
.hero-picture source {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -8px); }
  60% { transform: translate(-50%, -4px); }
}

/* TYPOGRAPHY & FEATURE CARDS */
.magazine-badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  background: linear-gradient(90deg, var(--brand-pink), var(--brand-purple));
  color: #fff;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
  font-weight: bold;
}

.editorial-title {
  font-size: 2.35rem;
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text-primary);
  font-family: "Noto Sans JP", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  letter-spacing: 0.12em;
}

.editorial-lead {
  color: var(--text-primary);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  display: inline-block;
}

.grid-2col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  overflow: hidden; /* 画像角丸用 */
  display: flex;
  flex-direction: column;
}

/* 画像表示エリア */
.card-image-wrapper {
  width: 100%;
  height: 240px;
  background-color: #F0EBF8;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.speaker-img {
  object-fit: contain !important; /* 画像全体を枠内に収める */
  object-position: center bottom; /* 画像を中央下に配置（体から上を見せるため） */

  /* 必要に応じて拡大率を微調整（containで余白が出すぎる場合） */
  transform: scale(1.4);
  transform-origin: center top;
}
/* 書籍カード内の画像下キャプション */
.book-card {
  position: relative;
}
/* book-card 内の画像枠だけ縦並び（画像＋テキスト）に変更 */
.book-card .card-image-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 10px 8px; /* 上下の余白調整 */
}

/* 書籍画像自体の高さ・余白微調整 */
.book-img {
  max-height: 190px; /* 240pxの枠内に収まるよう高さ制限 */
  width: auto;
  object-fit: contain;
  padding: 0;
  margin-bottom: 6px; /* 画像とキャプションの間の余白 */
}

/* 画像直下のセンタリングキャプション */
.book-card .image-caption {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.card-content {
  padding: 24px;
  flex-grow: 1;
}

.card-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--brand-pink);
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
}

.card-name {
  font-size: 22px;
  margin-bottom: 10px;
}

.name-sub {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: normal;
  display: block;
  margin-top: 4px;
}

.speaker-profile, .book-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.card-book-title {
  font-size: 20px; /* 拡大 */
  margin-bottom: 10px;
  color: var(--brand-purple);
}

/* PROGRAM & TICKETS */
.section-header {
  text-align: center;
  margin-bottom: 35px;
}

.section-title {
  font-size: 28px; /* 拡大 */
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.section-sub {
  font-size: 15px;
  color: var(--brand-pink);
  font-weight: bold;
}
.section-sub2 {
  font-size: 15px;
  color: #333333;
  font-weight: bold;
}

.part-block {
  margin-bottom: 45px;
}

.part-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-light);
  flex-wrap: wrap;
}

.part-badge {
  background: linear-gradient(90deg, var(--brand-pink), var(--brand-purple));
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 4px 14px;
  border-radius: 6px;
}

.part-time {
  font-size: 18px; /* 拡大 */
  font-weight: bold;
  color: var(--text-primary);
}

.status-tag {
  font-size: 13px;
  font-weight: bold;
  padding: 3px 10px;
  border-radius: 4px;
  margin-left: auto;
}

.tag-info {
  background: #EBF3FF;
  color: #0066CC;
  border: 1px solid #B8D5FF;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.plan-card {
  background: var(--bg-card);
  /*border: 1px solid var(--border-light);*/
  border: 2px solid var(--brand-pink);
  border-radius: 16px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}
.plan-highlight {
  background: var(--bg-card-highlight);
  border: 2px solid var(--brand-purple);
  box-shadow: var(--shadow-soft);
}

.plan-tag {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--brand-purple);
  color: #FFF;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 12px;
}

.part-label {
  font-size: 1.4rem;
  color: var(--brand-purple);
  font-weight: bold;
  margin-bottom: 6px;
}

.plan-title {
  font-size: 19px;
  font-weight:500;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.plan-price {
  font-size: 32px; /* 拡大 */
  font-weight: bold;
  color: var(--brand-purple);
  line-height: 1;
}

.plan-price .tax {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: normal;
}

.price-breakdown {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  margin-bottom: 14px;
}

.plan-list {
  list-style: none;
  margin-bottom: 26px;
  flex-grow: 1;
}

.plan-list li {
  font-size: 15px; /* 拡大 */
  color: var(--text-primary);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

.plan-list li::before {
  content: "✓ ";
  color: var(--brand-pink);
  font-weight: bold;
  margin-right: 6px;
}

/* BUTTONS */
.btn {
  display: block;
  text-align: center;
  padding: 15px 18px; /* タップ領域を大きく */
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--brand-pink), var(--brand-purple));
  color: #FFFFFF;
  font-size:1.2rem;
  font-weight:bold;
  box-shadow: 0 4px 15px rgba(255, 0, 127, 0.3);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-10px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--brand-pink);
  background: rgba(255, 0, 127, 0.1);
  color: var(--brand-purple);
  box-shadow: 0 4px 15px rgba(255, 0, 127, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 0, 127, 0.1);
  box-shadow: 0 4px 15px rgba(255, 0, 127, 0.3);
  opacity: 0.9;
  transform: translateY(-10px);
}

/* GUIDE & VENUE */
.info-table-wrapper {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  margin-bottom: 30px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th, .info-table td {
  padding: 14px 12px;
  font-size: 15px; /* 拡大 */
  border-bottom: 1px solid var(--border-light);
  text-align: left;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

.info-table th {
  width: 25%;
  color: var(--brand-purple);
  font-weight: bold;
  white-space: nowrap;
}

.info-table td {
  color: var(--text-primary);
}

.rules-container {
  background: #fff;
  border-radius: 16px;
  padding: 26px;
  border: 1px solid var(--border-light);
}

.rules-title {
  font-size: 18px; /* 拡大 */
  color: var(--text-primary);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-light);
}

.rules-list {
  list-style: none;
}

.rules-list li {
  font-size: 13px; /* 拡大 */
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
  position: relative;
  padding-left: 16px;
}

.rules-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-pink);
  font-weight: bold;
}

.rules-list li strong {
  color: var(--text-primary);
}

/* スマホ固定追従 CTA */
.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  z-index: 999;
}

.sticky-btn {
  display: block;
  width: 100%;
  background: linear-gradient(90deg, var(--brand-pink), var(--brand-purple));
  color: #FFFFFF;
  text-align: center;
  padding: 14px 0;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px; /* 拡大 */
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(255, 0, 127, 0.3);
}

/* レスポンシブスマホ最適化調整 */
@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }
  .section-sub {
    font-size: 0.9rem;
    color: var(--brand-pink);
    font-weight: 500;
  }
  .section-sub2 {
    font-size: 0.75rem;
    color: #333333;
    font-weight: 500;
    text-align:left!important;
  }
  .section-title {
    font-size: 22px;
    text-align: center;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    color: var(--text-primary);
  }
  .editorial-title {
    font-size: 24px;
  }
  .part-header {
    flex-direction: row;
    align-items: center;
  }
  .part-time {
    font-size: 16px;
  }
  .status-tag {
    margin-left: 0;
  }
  .info-table th {
    width: 32%;
  }
  .sticky-cta-bar {
    display: block;
  }
}
/* -----------------------------------
   MESSAGE & POINTS SECTIONS
   ----------------------------------- */

/* パターンA：メッセージカードスタイル */
.message-section {
  background-color: var(--bg-main);
  padding: 40px 0;
}

.message-card {
  background: var(--bg-card-highlight);
  border: 2px solid var(--brand-purple);
  border-radius: 20px;
  padding: 36px 30px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.message-header {
  margin-bottom: 20px;
}

.message-title {
  font-size: 24px;
  color: var(--brand-purple);
  font-weight: bold;
}

.message-text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.message-signature {
  text-align: right;
  font-size: 15px;
  color: var(--text-muted);
}

.message-signature strong {
  font-size: 18px;
  color: var(--text-primary);
  margin-left: 6px;
}

/* パターンB：おすすめポイントスタイル */
.points-section {
  background-color: var(--bg-main);
  padding: 40px 0;
}

.points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.point-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 28px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
  position: relative;
}

.point-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--brand-pink);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
  opacity: 0.85;
}

.point-title {
  font-size: 18px;
  color: var(--text-primary);
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
}

.point-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* スマホ表示微調整 */
@media (max-width: 768px) {
  .message-card {
    padding: 26px 20px;
  }
  .message-title {
    font-size: 20px;
  }
  .message-text {
    font-size: 15px;
  }
}

/* -----------------------------------
   PC用 右下固定追従 CTA (Sticky Floating CTA)
   ----------------------------------- */
.pc-sticky-cta {
  display: block;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  animation: fadeIn 0.4s ease-out;
}

.pc-sticky-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-purple));
  color: #FFFFFF;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(255, 0, 127, 0.4);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.pc-sticky-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(255, 0, 127, 0.6);
  background: linear-gradient(135deg, #FF1A8C, #8B32EB);
}

.pc-btn-sub {
  font-size: 1.1rem;
  letter-spacing: 1px;
  opacity: 0.9;
  font-weight: bold;
  color: #FFF;
}

.pc-btn-main {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  color: #FFF;
}

/* スマホ表示（768px以下）ではPC用追従ボタンを隠し、スマホ用バーに切り替え */
@media (max-width: 768px) {
  .pc-sticky-cta {
    display: none;
  }
}

/* -----------------------------------
   VENUE MAP STYLES (Googleマップ)
   ----------------------------------- */
.map-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: var(--shadow-soft);
  margin-top: 5px;
  margin-bottom: 30px;
}

.map-header {
  text-align: center;
  margin-bottom: 20px;
}

.map-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.map-address {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.map-address strong {
  color: var(--text-primary);
  font-size: 16px;
}

/* マップ枠＆トーン調整 */
.map-iframe-wrapper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  background-color: #f0ebf8;
}

.map-iframe-wrapper iframe {
  display: block;
  width: 100%;
  height: 360px;
  /* ブランドに合わせてマップの彩度をわずかに抑え、ホバーでフルカラー化 */
  filter: grayscale(15%) contrast(102%);
  transition: filter 0.3s ease;
}

.map-iframe-wrapper iframe:hover {
  filter: grayscale(0%);
}

/* Googleマップアプリ遷移ボタン */
.map-footer {
  text-align: center;
  margin-top: 20px;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  padding: 10px 24px;
  margin: 0 auto;
}

.map-btn i {
  color: var(--brand-pink);
}

/* スマホ表示微調整 */
@media (max-width: 768px) {
  .map-card {
    padding: 22px 16px;
    margin-top: -1px;
    margin-bottom: 20px;
  }
  .map-iframe-wrapper iframe {
    height: 280px;
  }
}

/* ==========================================
   タイポグラフィ＆フォントの最適化
========================================== */
/* 全体フォント設定（Google Fonts Noto Sans JP を基本に） */
body {
  font-family: "Montserrat", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1.8;          /* 全体の行間を少しゆったりさせて抜け感を出す */
  letter-spacing: 0.04em;    /* 日本語全体にほんのり文字間をあける */
}

/* 英数字・ラベル類を極上におしゃれにするクラス設定 */
.magazine-badge,
.card-label,
.plan-tag,
.part-badge,
.scroll-indicator,
.point-num,
.pc-btn-sub,
.card-book-title,
.part-label {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  letter-spacing: 0.12em;     /* 英字・数字は文字間を広げるとスタイリッシュになります */
}

/* メイン見出し（EDITORIAL TITLE） */
.editorial-title {
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1.3;          /* 見出しは行間を引き締めて力強く */
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

/* リード文（解説文章） */
.editorial-lead {
  font-size: 1.05rem;
  line-height: 1.9;          /* 長文は少し行間を広げて視認性向上 */
  color: var(--text-muted);
}

/* ポイント・カードの見出し */
.point-num {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
}

.point-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.5;          /* 見出し行間 */
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.point-desc {
  font-size: 0.92rem;
  line-height: 1.75;         /* 本文行間 */
  color: var(--text-muted);
}

/* メッセージ本文 */
.message-text {
  font-size: 1rem;
  line-height: 1.85;
  letter-spacing: 0.03em;
}

/* 価格表記（数字を際立たせる） */
.plan-price {
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.02em;   /* 数字の価格は逆に少し詰めた方がかっこいい */
  line-height: 1.1;
}

.plan-price .tax {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  letter-spacing: 0.02em;
}

/* ボタンテキスト */
.btn, .sticky-btn, .pc-sticky-btn {
  letter-spacing: 0.06em;
}

/* ==========================================
   スマホ・レスポンシブ最適化 (768px以下)
========================================== */
@media screen and (max-width: 768px) {

  /* 1. カード配置の最適化 */
  .card-grid,
  .cards-wrapper {
    display: flex;
    flex-direction: column; /* スマホでは縦並びにして1つずつしっかり見せる */
    gap: 20px;
  }

  .card {
    width: 100% !important; /* 横幅いっぱいに広げる */
  }

  /* 2. 画像枠とキャプションの調整 */
  .card-image-wrapper {
    height: 200px !important; /* スマホ用に少し高さを抑えてスッキリ */
    padding: 10px;
  }

  .book-img {
    max-height: 155px; /* 画像がはみ出さないサイズ調整 */
  }

  .book-card .image-caption {
    font-size: 10px; /* スマホ用に小さく可読性を確保 */
  }

  /* 3. フォントサイズ・文字間の微調整（スマホでの読みやすさ重視） */
  body {
    font-size: 14px; /* ベースの文字サイズ */
    line-height: 1.7;
    letter-spacing: 0.03em;
  }

  .editorial-title {
    font-size: 1.65rem !important; /* スマホ画面で改行しすぎない絶妙なサイズ */
    line-height: 1.35;
    letter-spacing: 0.05em;
  }

  .card-book-title {
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .book-desc {
    font-size: 0.85rem;
    line-height: 1.65;
  }

  /* 4. タップ領域（ボタン）の最適化 */
  .btn,
  .sticky-btn,
  .pc-sticky-btn {
    min-height: 48px; /* Google推奨：指で押しやすい最低48px以上の高さ */
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ==========================================
   PROGRAM & PLANS セクションの黒をマイルドにする（確定版）
========================================== */

/* 1. セクション全体のタイトル・見出しの黒を抑える */
.plans-section,
.plans-section h2,
.plans-section h3,
.card-book-title,
.plan-title {
  color: #423A4C !important; /* ほんのり紫を感じるマイルドな濃グレー */
}

/* 2. カード内の太字（『BEATS of KOREA...』などの強調部分） */
.book-desc strong,
.card-content strong,
.plan-desc strong {
  color: #383042 !important;
  font-weight: 700;
}

/* 3. 説明文・リスト本文の黒 */
.book-desc,
.card-content,
.plan-list,
.plan-list li,
.point-desc {
  color: #554D60 !important; /* やわらかなミディアムグレー */
}

/* 4. 日時や補足テキスト（13:30〜など） */
.part-time,
.part-title
/*.card-label*/ {
  color: #5A5066 !important;
}
