/* =========================
   THEME VARIABLES
   ここだけ公演ごとに変更
   ※このファイルは「しげる my friend」専用のテーマ値
========================= */
:root {
  --accent: #C0523A;          /* デイゴの花をイメージした朱色（見出しサイドライン等） */
  --accent-strong: #1F3654;   /* 琉球藍をイメージした深い紺（プライマリボタンなど） */
  --text: #3a332a;
  --text-muted: #6b6152;
  --link: #1F3654;

  --header-bg: #F4ECDA;       /* 古い写真のような、少し色褪せたクリーム */
  --page-bg: #FBF7EE;         /* ページ背景 */
  --card-bg: #FFFDF7;         /* コンテンツ背景 */

  --content-max: 800px;       /* 本文の最大幅 */
  --radius-lg: 15px;

  /* ロゴの最大幅（% or px） */
  --logo-max-pc: 90%;
  --logo-max-sp: 95%;
}

/* =========================
   RESET / BASE
========================= */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--page-bg);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--link); }

.content-wrapper {
  max-width: var(--content-max);
  margin: 25px auto;
  padding: 30px;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 20px rgba(31,54,84,0.08);
}

/* =========================
   HEADER
========================= */
.site-header {
  background: var(--header-bg);
  color: var(--text);
  text-align: center;
  padding: 44px 20px 38px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin: 0 auto 25px;
  border-bottom: 1px solid #E4D6BC;
  position: relative;
  overflow: hidden;
}

/* 赤瓦屋根モチーフ（フラリア用の控えめな装飾） */
.site-header::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0px, var(--accent) 18px,
    transparent 18px, transparent 24px
  );
  opacity: 0.55;
}

.header-logo {
  max-width: var(--logo-max-pc);
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ロゴ画像が未入稿の間はテキストタイトルで代替表示 */
.header-title-fallback {
  font-family: 'Shippori Mincho', serif;
  font-size: 2.1em;
  letter-spacing: 0.06em;
  color: var(--accent-strong);
  margin-bottom: 8px;
}
.header-title-fallback .en {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.4em;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-top: 10px;
}

/* =========================
   SECTIONS / TYPO
========================= */
.info-section {
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px dashed #E4D6BC;
}
.info-section:last-of-type { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }

.section-title {
  font-size: 1.6em;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  padding-left: 10px;
  border-left: 5px solid var(--accent);
}

.intro-text {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 35px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.9;
  padding: 16px 14px;
}
.intro-text p + p { margin-top: 12px; }

p { font-size: 1em; margin-bottom: 1.2em; }
ul { list-style: none; padding-left: 0; margin-bottom: 1.5em; }
ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 0.8em;
  line-height: 1.6;
  color: #4a4236;
}
ul li::before {
  content: '▪︎';
  color: var(--accent);
  position: absolute;
  left: 0;
  top: 0.05em;
  font-size: 1.2em;
  line-height: 1.6;
}

/* 番号リスト（手順） */
.step-list { padding-left: 20px; margin-bottom: 1.5em; }
.step-list li { margin-bottom: 1em; line-height: 1.6; font-size: 1em; }
.step-list li::marker { font-weight: 700; color: var(--accent); }

/* 強調 */
.price-highlight { color: var(--accent-strong); font-size: 1.4em; font-weight: 700; letter-spacing: .03em; }
.id-pw-highlight { color: var(--accent); font-size: 1.2em; font-weight: 700; }

@media (max-width: 700px) {
  .id-pw-highlight {
    font-size: 1.6em;
  }
}

/* 注意書き */
.payment-note {
  background: #F6EDE3;
  border-left: 4px solid var(--accent-strong);
  padding: 8px 12px;
  border-radius: 6px;
  color: #4a4236;
}

.note-text, .tel-link, .external-link { font-size: .95em; color: var(--text-muted); }
.external-link { text-decoration: underline; text-underline-offset: 3px; }
.tel-link { text-decoration: none; padding: 3px 2px; }

/* =========================
   BUTTONS
========================= */
.button-group { text-align: center; margin: 40px 0; }

.btn {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.2em;
  text-decoration: none;
  cursor: pointer;
  transition: all .3s ease;
  white-space: nowrap;
  margin: 10px;
}

.primary-btn {
  background: var(--accent-strong);
  color: #fff;
  box-shadow: 0 5px 15px rgba(31,54,84,.35);
}
.primary-btn:hover {
  background: #16283f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(31,54,84,.5);
}

.secondary-btn {
  background: #F5F0E4;
  color: var(--text);
  border: 1px solid #D9C9A8;
  box-shadow: 0 3px 10px rgba(0,0,0,.08);
}
.secondary-btn:hover {
  background: #EDE3CE;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,.12);
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: var(--header-bg);
  color: var(--text-muted);
  text-align: center;
  padding: 20px 15px;
  font-size: .9em;
  margin-top: 30px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  border-top: 1px solid #E4D6BC;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .content-wrapper {
    margin: 15px auto;
    padding: 20px;
    border-radius: 0;
    box-shadow: none;
  }
  .site-header {
    padding: 30px 15px;
    border-radius: 0;
    margin-bottom: 15px;
  }
  .header-title-fallback { font-size: 1.6em; }
  .section-title { font-size: 1.4em; margin-bottom: 15px; }
  .info-section { margin-bottom: 25px; padding-bottom: 20px; }
  .intro-text { font-size: .90em; margin-bottom: 25px; }
  p, ul li, ol li { font-size: .95em; }

  .header-logo { max-width: var(--logo-max-sp); }

  .btn {
    display: block;
    width: calc(100% - 20px);
    margin: 8px auto;
    padding: 15px 25px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.3em; }
  .btn { font-size: 1em; padding: 12px 20px; }
  p, ul li, ol li { font-size: .9em; }
}


/* ========================================
   Better Place VISUAL THEME
   ALTAR BOYZのベース構造は変更せず、
   hero・色・雰囲気だけBetter Placeへ
======================================== */

:root {
  --accent: #C0523A;
  --accent-strong: #1F3654;
  --text: #3a332a;
  --text-muted: #6b6152;
  --link: #1F3654;
  --header-bg: #F4ECDA;
  --page-bg: #FBF7EE;
  --card-bg: #FFFDF7;
  --content-max: 800px;
  --radius-lg: 15px;
}

body {
  background: var(--page-bg);
  color: var(--text);
}

.site-header {
  padding: 0;
  margin: 0 auto 25px;
  background: var(--header-bg);
  border: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.site-header::after {
  display: none;
}

.header-logo {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.content-wrapper {
  background: var(--card-bg);
  box-shadow: 0 8px 20px rgba(31,54,84,0.08);
}

.intro-text {
  color: var(--text);
  font-family: 'Shippori Mincho', serif;
}

.intro-text strong {
  color: var(--accent-strong);
}

.info-section {
  border-bottom-color: #E4D6BC;
}

.section-title {
  color: var(--accent-strong);
  font-family: 'Shippori Mincho', serif;
}

.price-highlight,
.id-pw-highlight {
  color: var(--accent);
}

.payment-note {
  background: #F6EDE3;
  border-left-color: var(--accent);
}

/* 先行予約特典 */
.benefit-banner {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 0 35px;
  padding: 17px 22px;
  border: 1px solid #DCCFBD;
  background: #FFFDF7;
}

.benefit-label {
  min-width: 175px;
  text-align: center;
  color: var(--accent-strong);
  font-family: 'Shippori Mincho', serif;
}

.benefit-label span {
  display: block;
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: .75em;
  font-weight: 700;
  letter-spacing: .12em;
}

.benefit-label strong {
  display: block;
  font-size: 1.15em;
}

.benefit-detail {
  padding-left: 22px;
  border-left: 1px solid #A9A094;
  color: var(--accent-strong);
  font-family: 'Shippori Mincho', serif;
}

.benefit-detail strong {
  display: block;
}

.benefit-detail small {
  display: block;
  color: var(--text-muted);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: .72em;
}

/* 申込みガイドはALTAR型の読みやすさを維持 */
.application-section .guide-list {
  padding-left: 24px;
  margin-bottom: 0;
}

.application-section .guide-list li {
  margin-bottom: 22px;
  padding-left: 8px;
}

.application-section .guide-title {
  color: var(--accent-strong);
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 1.05em;
  margin-bottom: 6px;
}

.application-section .guide-content {
  color: var(--text);
  line-height: 1.7;
}

.application-section .guide-content ul {
  margin-top: 6px;
}

.application-section .guide-content li {
  margin-bottom: 7px;
}

.application-section .guide-content li::before {
  color: var(--accent);
}

.button-group {
  margin-top: 40px;
}

.primary-btn {
  background: var(--accent-strong);
}

.secondary-btn {
  background: #F5F0E4;
  color: var(--accent-strong);
  border-color: #D9C9A8;
}

.site-footer {
  background: var(--header-bg);
  border-top-color: #E4D6BC;
}

@media (max-width: 768px) {
  .benefit-banner {
    display: block;
    text-align: center;
  }

  .benefit-label {
    min-width: 0;
  }

  .benefit-detail {
    margin-top: 12px;
    padding: 12px 0 0;
    border-left: 0;
    border-top: 1px solid #A9A094;
  }
}


/* ========================================
   最新HTML用：申込み方法 01〜06
   HTMLの中身は変更せず、表示だけ整える
======================================== */

/* 親の ol は標準の「1. 2. 3.」を消す */
.application-section > .guide-list {
  list-style: none;
  counter-reset: guide-step;
  padding-left: 0;
}

.application-section > .guide-list > li {
  position: relative;
  list-style: none;
  counter-increment: guide-step;
  display: grid;
  grid-template-columns: 58px 165px 1fr;
  column-gap: 18px;
  align-items: start;
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px dashed #ded8cf;
}

/* 01〜06の丸数字 */
.application-section > .guide-list > li::before {
  content: counter(guide-step, decimal-leading-zero);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .9rem;
  font-weight: 700;
}

/* タイトル */
.application-section > .guide-list > li > .guide-title {
  padding-top: 8px;
  margin: 0;
}

/* 本文 */
.application-section > .guide-list > li > .guide-content {
  padding-top: 4px;
}

/* 6番の中の注意事項は「01〜06」と別物なので、
   親li用の番号・余白を継承させない */
.application-section .guide-content ul {
  list-style: none;
  padding-left: 0;
  margin: 8px 0 0;
}

.application-section .guide-content ul li {
  position: relative;
  margin: 0 0 7px;
  padding: 0 0 0 1.1em;
  list-style: none;
}

.application-section .guide-content ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

/* 親liに付いている古い ::before の指定が
   内側のulまで影響しないようにする */
.application-section > .guide-list > li > .guide-content li::after {
  content: none;
}

@media (max-width: 700px) {
  .application-section > .guide-list > li {
    grid-template-columns: 48px 110px 1fr;
    column-gap: 10px;
    padding: 16px 0;
  }

  .application-section > .guide-list > li::before {
    width: 38px;
    height: 38px;
    font-size: .8rem;
  }

  .application-section > .guide-list > li > .guide-title {
    font-size: .9rem;
  }

  .application-section > .guide-list > li > .guide-content {
    font-size: .75rem;
  }
}

@media (max-width: 700px) {
  .application-section > .guide-list > li:nth-child(6) .guide-content {
    font-size: .85rem;
  }
}

/* キャスト特別受付 */
.intro-text .cast-name {
  margin: 0 0 10px;
  text-align: center;
  font-family: 'Shippori Mincho', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent-strong);
}

@media (max-width: 700px) {
  .intro-text .cast-name {
    font-size: 1.15rem;
    margin-bottom: 18px;
  }
}

.age-note {
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.7;
}
/* スマホだけ注意書きを少し小さくする */
@media (max-width: 700px) {
  .age-note {
    font-size: 0.75em;
  }
}

.benefit-random {
  display: block;
  font-size: 0.9em;
  margin-top: 4px;
  color: var(--accent-strong);
}