/* CSS変数 */
:root {
  --bg-primary: #1a1a1a;
  --bg-secondary: #222;
  --bg-tertiary: #333;
  --bg-dark: #111;
  --bg-section: #2a2a2a;
  --text-primary: #fff;
  --text-secondary: #c0c0c0;
  --text-muted: #999;
  --text-dark: #666;
  --border-color: #444;
}

/* 全体 */
body {
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* PC表示では改行タグを非表示に */
.sp {
  display: none;
}

#index {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex-grow: 1;
  padding: 20px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--bg-secondary);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/* ヘッダー */
.site-header {
  text-align: center;
  padding: 40px 0 20px;
  background-color: var(--bg-dark);
}

.header-logo {
  max-width: 500px;
  width: 90%;
  height: auto;
}

/* セクション */
.info-section {
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
  margin-bottom: 20px;
}

.info-section:last-child {
  border-bottom: none;
}

.section-title {
  color: var(--text-primary);
  border-left: 4px solid var(--text-primary);
  padding-left: 10px;
  font-size: 1.5em;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
}

/* テキスト */
.intro-text {
  text-align: center;
  color: var(--text-secondary);
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: 'Noto Sans JP', sans-serif;
}

.note-text, .payment-note {
  color: var(--text-muted);
}

/* グッズ販売の注釈を小さく */
.goods-note, .pay-note {
  font-size: 0.85em;
  color: var(--text-muted);
  margin: 5px 0;
}

/* 注釈テキスト全般に適用するクラス */
.note-small {
  font-size: 0.85em !important;
  color: var(--text-muted) !important;
  margin: 5px 0;
}

/* チケット取り扱いセクション内のnote-smallクラスに対する追加スタイル */
.ticket-handling .note-small {
  font-size: 0.85em !important;
  color: var(--text-muted) !important;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 5px;
}

/* 引用 */
blockquote {
  font-style: italic;
  border-left: 3px solid var(--text-primary);
  padding-left: 20px;
  margin: 20px 0;
  background-color: rgba(255, 255, 255, 0.03);
  padding: 15px 20px;
  border-radius: 5px;
}

/* リンクとボタン */
a {
  color: var(--text-primary);
  text-decoration: underline;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  min-width: 180px;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.primary-btn {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border: 2px solid var(--text-primary);
}

.primary-btn:hover {
  background-color: #eee;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.secondary-btn {
  background-color: transparent;
  border: 2px solid var(--text-primary);
  color: var(--text-primary);
}

.secondary-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* 公演概要セクション */
.event-details {
  background-color: var(--bg-tertiary);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  border-bottom: none;
}

.event-details p {
  margin: 10px 0;
}

.event-details-name {
  font-size: 1.8em;
  font-weight: 700;
  color: var(--text-primary);
}

.event-image {
  max-width: 350px;
  width: 100%;
  height: auto;
}

/* イベント会場セクションのスタイル調整 */
.event-details .event-venue {
    margin-bottom: 20px;
}

.event-details .event-venue p {
    margin: 0;
}

.event-details .event-venue ul {
    list-style-type: none;
    text-align: center;
    padding: 0;
    margin-top: 5px;
}

.event-details .event-venue li {
    margin-bottom: 0px;
    line-height: 1.1;
}

/* ハイライトリストのスタイル */
.event-details .event-highlights .highlights-list {
  list-style-type: disc;
  text-align: left;
  padding-left: 25px;
  margin: 20px 0;
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
}

.event-details .event-highlights .highlights-list li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.event-highlights .highlights-title,
.artist-comment .comment-title {
    text-align: center;
    margin: 20px 0 10px;
    font-size: 1.1em;
    font-weight: 600;
}

/* PCブラウザでの見どころ紹介のテキストを調整 */
.event-highlights p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* コメント部分のPCブラウザでのスタイルを元に戻す */
.artist-comment p {
    text-align: center;
}

/* チケット取り扱いセクション */
.info-section.ticket-handling {
  background-color: var(--bg-section);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.ticket-handling .section-title {
  border-left: none;
  padding-left: 0;
  margin-bottom: 10px;
  font-size: 1.8em;
  color: var(--text-primary);
}

.ticket-handling .purchase-option {
    margin-bottom: 20px;
}

.ticket-handling .purchase-option:nth-of-type(2) {
    margin-top: 100px;
}

.ticket-handling p {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

/* スケジュールの行間を詰める */
.schedule p {
    margin: 2px 0;
}

/* フッター */
.site-footer {
  text-align: center;
  padding: 20px 0;
  background-color: var(--bg-dark);
  color: var(--text-dark);
  font-size: 0.9em;
}

/* ------------------------------------------------------------- */
/* スマートフォン向けレスポンシブデザイン */
/* ------------------------------------------------------------- */
@media (max-width: 768px) {
  /* スマホ表示では改行タグを表示に */
  .sp {
    display: block;
  }

  .main-content {
    padding: 10px;
  }
  .content-wrapper {
    padding: 20px 10px;
  }
  .site-header {
    padding: 30px 0 15px;
  }
  .header-logo {
    max-width: 80%;
  }

  .section-title {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    border-left: 4px solid var(--text-primary);
    padding-left: 10px;
  }
  
  .intro-text {
    font-size: 1em;
    font-weight: 700;
    margin: 15px 0;
    text-align: center;
  }

  .info-section {
    padding: 15px 0;
    margin-bottom: 15px;
  }

  .event-details p, .event-details .event-venue p {
      text-align: center;
  }
  
  .event-details .event-venue ul {
      text-align: center;
  }

  .event-details-name,
  .event-highlights .highlights-title,
  .artist-comment .comment-title {
      text-align: center;
  }
  
  .event-details-name {
    font-size: 1.5em;
  }

  .price-highlight {
    font-size: 1.3em;
  }
  
  .event-details .event-venue li {
      margin-bottom: 2px;
      line-height: 1.1;
  }

  .button-group {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95em;
    box-sizing: border-box;
  }
  
  .ticket-handling .purchase-option {
      text-align: center;
  }

  .ticket-handling .button-group {
    flex-direction: column;
    gap: 10px;
  }
  
  .ticket-handling .button-group a {
    min-width: auto;
    flex: 1;
  }

  .ticket-handling p {
    margin-bottom: 10px;
  }
  
  .site-footer {
    padding: 15px 0;
    font-size: 0.8em;
  }
}