@charset "UTF-8";

/* -------------------------
   Variables & Base Settings
------------------------- */
:root {
  --primary-color: #4A3020;    /* ダークブラウン（フライヤーのベースカラー） */
  --secondary-color: #B58A59;  /* ゴールド/黄土色系のアクセント */
  --bg-color: #F8F5F0;         /* フライヤーの温かみのあるクリーム背景 */
  --white: #FFFFFF;
  --text-color: #3E2F26;       /* 黒ではなく焦げ茶で統一感を出す */
  --accent-color: #D3430D;     /* お申し込みボタンなどの目立つオレンジ */
  
  --font-base: 'Noto Sans JP', sans-serif;
  --font-heading: 'Noto Serif JP', serif;
  --font-en: 'Montserrat', sans-serif;
}

body {
  font-family: var(--font-base);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.8;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-color);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

/* -------------------------
   Components
------------------------- */
/* セクションの共通余白設定 */
.section-padding {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .section-padding {
    padding: 50px 0;
  }
}

/* セクションタイトル */
.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  font-size: 2rem;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 15px auto 0;
}

/* CTAボタン */
.btn-cta {
  background-color: var(--accent-color);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(211, 67, 13, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none !important;
}
.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(211, 67, 13, 0.6);
  color: var(--white);
}

@media (max-width: 768px) {
  .btn-cta {
    padding: 12px 20px;
    font-size: 1.05rem;
  }
}

/* フローティングCTA (スマホなどで下に固定) */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(248, 245, 240, 0.95);
  padding: 15px;
  text-align: center;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  backdrop-filter: blur(5px);
  display: none; /* JSでコントロールするか、メディアクエリで表示 */
}
@media (max-width: 768px) {
  .floating-cta {
    display: block;
    animation: slideUp 0.5s ease;
  }
  body {
    padding-bottom: 80px; /* フロートボタンの被り防止 */
  }
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}


/* -------------------------
   Sections
------------------------- */

/* ヘッダー / ファーストビュー */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 60px 0 80px;
}
.hero-content {
  text-align: center;
}
.hero-catch {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}
.hero-title {
  font-family: var(--font-en);
  font-size: clamp(2.3rem, 10vw, 4rem);
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.hero-subtitle {
  font-size: clamp(1.2rem, 5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--primary-color);
}
.hero-img-wrap {
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  overflow: hidden;
  margin-bottom: 30px;
  background-color: var(--white);
  padding: 10px;
}
.hero-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* コンサートコンセプト (Introduction) */
.concept-section {
  background-color: var(--white);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.concept-lead {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.8;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 768px){
  .concept-lead {
    font-size: 1.15rem;
    text-align: left;
  }
}
.concept-text {
  font-size: 1.1rem;
  text-align: justify;
}

/* YouTubeセクション */
.youtube-section {
  background-color: var(--bg-color);
}
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 12px;
  overflow: hidden;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* 出演者 (Performers) */
.performers-section {
  background-color: var(--white);
}
.performer-card {
  background: var(--bg-color);
  border: none;
  border-radius: 12px;
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease;
}
.performer-card:hover {
  transform: translateY(-5px);
}
.performer-role {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.performer-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  border-bottom: 1px dashed var(--secondary-color);
  padding-bottom: 10px;
}
.performer-bio {
  font-size: 0.95rem;
  color: var(--text-color);
  margin: 0;
}

/* 開催概要 (Outline) */
.outline-section {
  background-color: var(--bg-color);
}
.outline-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.outline-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 15px;
}
.outline-table th {
  width: 110px;
  color: var(--primary-color);
  font-weight: 700;
  vertical-align: top;
  padding-right: 15px;
  position: relative;
}
.outline-table th::before {
  content: "■";
  color: var(--secondary-color);
  font-size: 0.8em;
  margin-right: 5px;
  vertical-align: middle;
}
.outline-table td {
  color: var(--text-color);
  vertical-align: top;
}
@media (max-width: 576px) {
  .outline-card {
    padding: 25px;
  }
  .outline-table th, .outline-table td {
    display: block;
    width: 100%;
  }
  .outline-table th {
    margin-bottom: 5px;
  }
}
.price-badge {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.85rem;
  margin-right: 10px;
  font-weight: bold;
}

/* ご購入の流れ・注意事項 */
.notes-section {
  background-color: #F0EAE1; /* Slightly darker than bg-color */
  border-top: 1px solid rgba(0,0,0,0.1);
}
.notes-box {
  background: var(--white);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
}
.notes-box h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  border-left: 4px solid var(--secondary-color);
  padding-left: 10px;
}
.buy-flow {
  list-style: none;
  padding: 0;
  margin: 0;
}
.buy-flow li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
}
.buy-flow li .badge-method {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.buy-flow li:last-child {
  margin-bottom: 0;
}

/* フッター */
.site-footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 50px 0 20px;
  text-align: center;
}
.site-footer a {
  color: var(--secondary-color);
}
.site-footer p {
  opacity: 0.8;
  font-size: 0.9rem;
  margin-bottom: 5px;
}
.footer-logo {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--white);
}

/* ユーティリティ */
.text-accent {
  color: var(--accent-color);
}
.fw-bold {
  font-weight: 700 !important;
}
