/* === ヒーローセクション === */
.hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--primary);
}

.hero_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero_content {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0;
  width: 100%;
}

.hero_content .container {
  color: #fff;
}

.hero_name {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.hero_tagline {
  font-size: 0.95rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .hero { height: 320px; }
  .hero_name { font-size: 1.5rem; }
}

/* === セクション === */
.section {
  padding: 3rem 0;
}

.section_header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.section_title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.section_more {
  font-size: 0.82rem;
  color: var(--accent);
  transition: opacity 0.15s;
}

.section_more:hover { opacity: 0.7; }

/* === ライブイベントカード === */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-card {
  display: flex;
  gap: 1rem;
  background: var(--card-bg);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: box-shadow 0.15s;
}

.event-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.event-card_image {
  width: 140px;
  min-height: 120px;
  flex-shrink: 0;
  background: var(--bg-muted);
  object-fit: cover;
}

.event-card_body {
  flex: 1;
  padding: 1rem 1rem 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.event-card_date {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
}

.event-card_title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.event-card_venue {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.event-card_info {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: auto;
}

.event-card_status--cancelled {
  color: #c00;
  font-weight: 500;
}

@media (max-width: 768px) {
  .event-card { flex-direction: column; }
  .event-card_image { width: 100%; height: 180px; }
  .event-card_body { padding: 1rem; }
}

/* === スケジュール全件ページ === */
.schedule-page { padding: 2rem 0 3rem; }

.schedule-page_title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.schedule-year {
  margin-bottom: 2rem;
}

.schedule-year_label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--border);
}

/* === コンテンツページ（プロフィール・レッスン等） === */
.content-page {
  padding: 2.5rem 0 3rem;
}

.content-page_title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* === 演奏経歴 === */
.history-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.history-item {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.history-item_date {
  flex-shrink: 0;
  width: 90px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.history-item_body {
  flex: 1;
}

.history-item_title {
  font-size: 0.92rem;
  font-weight: 500;
}

.history-item_venue {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.history-item_category {
  display: inline-block;
  font-size: 0.7rem;
  padding: 0.1rem 0.5rem;
  background: var(--bg-muted);
  border-radius: 3px;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* === アートワークギャラリー === */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.gallery_item {
  border-radius: 8px;
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
}

.gallery_image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.gallery_caption {
  padding: 0.6rem 0.8rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* === 空状態 === */
.empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
