@charset "UTF-8";
/* =========================
  Variables
========================= */
/* =========================
  Section Common
========================= */
.section {
  padding: 64px 16px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: clamp(22px, 4vw, 32px);
  margin-bottom: 8px;
}

.section-lead {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* =========================
  Page Section (共通余白)
========================= */
.page-section {
  margin-bottom: 80px;
}

@media (max-width: 767px) {
  .page-section {
    margin-bottom: 56px;
  }
}
/* =========================
  Card
========================= */
.card, .concert-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

/* =========================
  Button
========================= */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  text-align: center;
}

/* =========================
  FV
========================= */
.fv {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 520px;
  overflow: hidden;
  color: #fff;
  font-family: "Noto Serif JP", serif;
}

/* 背景メディア */
.fv-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.fv-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* オーバーレイ（暗幕） */
.fv-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

/* コンテンツ */
.fv-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
  box-sizing: border-box;
}
.fv-content h1 {
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 12px;
}
.fv-content p {
  font-size: 1rem;
  margin-bottom: 24px;
}

/* CTA ボタン（← 消えていた原因は z-index or display） */
.fv-cta {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 0.9rem;
  text-decoration: none;
  line-height: 1;
}

/* SP調整 */
@media (max-width: 767px) {
  .fv {
    height: auto;
    min-height: 100svh;
  }
}
@media (max-width: 576px) {
  .fv {
    height: calc(100svh - 110px);
    padding-top: 240px;
  }
}
/* =========================
  Concert Scroll
========================= */
.scroll-wrapper {
  position: relative;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1;
}

.scroll-btn.left {
  left: 8px;
}

.scroll-btn.right {
  right: 8px;
}

.concert-scroll {
  position: relative;
  padding-bottom: 60px;
}

.concert-heading {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.concert-track {
  display: flex;
  gap: 20px;
  padding: 0 48px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 767px) {
  .scroll-btn {
    display: none;
  }
  .concert-track {
    padding: 0 16px;
  }
}
@media (min-width: 768px) {
  .concert-track {
    padding: 0 60px;
  }
}
/* =========================
   Concert Card
========================= */
.concert-card {
  flex: 0 0 82%;
  scroll-snap-align: start;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  /* ★ ここが重要 */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.concert-card img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.concert-card .card-body {
  width: 100%;
  padding: 16px;
}
.concert-card .concert-date {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 4px;
}
.concert-card .concert-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 6px;
}
.concert-card .concert-venue {
  font-size: 0.85rem;
  color: #555;
}

@media (min-width: 768px) {
  .concert-card {
    flex: 0 0 320px;
  }
}
/* =========================
   CTA
========================= */
.concert-consult {
  margin-top: 48px;
  padding-top: 32px;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.concert-consult-text {
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: #555;
  letter-spacing: 0.04em;
}
.concert-consult .btn {
  padding: 10px 28px;
  font-size: 0.9rem;
}

.fv-cta-group {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.fv-cta {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* メインCTA */
.fv-cta.primary {
  background: #111;
  color: #fff;
}
.fv-cta.primary:hover {
  background: #000;
}

/* サブCTA */
.fv-cta.secondary {
  background: transparent;
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.4);
}
.fv-cta.secondary:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* SP調整 */
@media (max-width: 768px) {
  .fv-cta-group {
    gap: 12px;
  }
  .fv-cta {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
/* =========================
  Workshop
========================= */
.workshop {
  padding: 64px 16px;
  background: #fafafa;
}

.workshop-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ---------- header ---------- */
.workshop-header {
  text-align: center;
  margin-bottom: 40px;
}
.workshop-header h2 {
  font-size: clamp(22px, 4vw, 32px);
  margin-bottom: 8px;
}
.workshop-header .lead {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ---------- list ---------- */
.workshop-list {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .workshop-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ---------- card ---------- */
.front-section.workshop {
  padding: 4rem 0;
}

.front-section.workshop .workshop-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.front-section.workshop .workshop-header {
  text-align: center;
  margin-bottom: 2rem;
}

.front-section.workshop .workshop-header h2 {
  font-size: 2rem;
  letter-spacing: 0.05em;
}

.front-section.workshop .workshop-header .lead {
  margin-top: 0.5rem;
  color: #666;
  font-size: 0.95rem;
}

.front-section.workshop .workshop-list {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.front-section.workshop .workshop-list::-webkit-scrollbar {
  height: 6px;
}

.front-section.workshop .workshop-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.front-section.workshop .workshop-card {
  flex: 0 0 300px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.front-section.workshop .workshop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.front-section.workshop .workshop-card figure {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.front-section.workshop .workshop-card figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.front-section.workshop .workshop-card .card-body {
  padding: 1rem;
}

.front-section.workshop .workshop-card .card-body h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.front-section.workshop .workshop-card .card-body .workshop-meta {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 0.6rem;
}

.front-section.workshop .workshop-card .card-body .workshop-text {
  font-size: 0.8rem;
  color: #444;
  line-height: 1.6;
}

/* --- CTA --- */
.workshop-cta {
  margin-top: 48px;
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #ddd;
}
.workshop-cta .cta-lead {
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: #555;
}
.workshop-cta .btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.workshop-cta .btn-outline {
  border: 1px solid #111;
  color: #111;
  background: transparent;
}
.workshop-cta .btn-outline:hover {
  background: #111;
  color: #fff;
}

/* =========================
   Hall Section
========================= */
.page-section.hall {
  padding: 80px 0;
  background: #fafafa;
}

.hall-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ----- header ----- */
.hall-header {
  text-align: center;
  margin-bottom: 48px;
}
.hall-header h2 {
  font-size: 2rem;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.hall-header .lead {
  font-size: 1rem;
  color: #555;
}

/* ----- layout ----- */
.hall-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* =========================
   Left content
========================= */
.hall-content {
  flex: 1;
}

.hall-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.hall-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: #ddd;
  border-radius: 12px;
  overflow: hidden;
}

.hall-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
}

/* ----- spec ----- */
.hall-spec {
  margin: 24px 0;
  padding: 0;
}
.hall-spec li {
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid #e0e0e0;
}
.hall-spec li strong {
  font-weight: 600;
  margin-right: 6px;
}

/* ----- CTA ----- */
.hall-cta {
  margin-top: 32px;
  text-align: left;
}
.hall-cta .btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}
.hall-cta .btn:hover {
  opacity: 0.85;
}

/* =========================
   Map
========================= */
.hall-map {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  background: #ccc;
}
.hall-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================
   PC layout
========================= */
@media (min-width: 768px) {
  .hall-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }
  .hall-content {
    flex: 0 0 55%;
  }
  .hall-map {
    flex: 0 0 45%;
    aspect-ratio: auto;
    height: 420px;
    position: sticky;
    top: 120px;
  }
  .hall-header {
    margin-bottom: 64px;
  }
  .hall-header h2 {
    font-size: 2.2rem;
  }
}
/* =========================
  Lesson
========================= */
.lesson {
  background: #fff;
}
.lesson-genres {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .lesson-genres {
    grid-template-columns: repeat(3, 1fr);
  }
}
.lesson-card {
  background: #fafafa;
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
}
.lesson-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.lesson-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 16px;
}

/* =========================
  Artists
========================= */
.artists {
  background: #fff;
}

.artists-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ---------- header ---------- */
.artists-header {
  text-align: center;
  margin-bottom: 32px;
}
.artists-header h2 {
  font-size: clamp(22px, 4vw, 32px);
  margin-bottom: 8px;
}
.artists-header .lead {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ---------- scroll ---------- */
.artists-scroll {
  display: flex;
  gap: 20px;
  padding: 0 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.artists-scroll::-webkit-scrollbar {
  display: none;
}

/* ---------- card ---------- */
.artist-card {
  flex: 0 0 88%;
  scroll-snap-align: start;
  text-align: center;
}

.artist-card figure {
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
}

.artist-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.artist-card h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.artist-card .role {
  font-size: 12px;
  color: #777;
}

/* ---------- PC ---------- */
@media (min-width: 768px) {
  .artists-scroll {
    padding: 0;
  }
  .artist-card {
    flex: 0 0 20%;
  }
}
/* ---------- cta ---------- */
.artists-cta {
  margin-top: 32px;
  text-align: center;
}

.artists-cta .btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

/* =========================
  Topics
========================= */
.topics {
  padding: 32px 16px;
  background: #fff;
}

.topics-heading {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.topics-list {
  max-width: 720px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.topics-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

.topics-list time {
  margin-right: 12px;
  color: #777;
  font-size: 0.85rem;
}

/* =========================
   Message Section
========================= */
.page-section.message {
  padding: 100px 0 120px;
  background: #fff;
}

.message-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ----- header ----- */
.message-header {
  text-align: center;
  margin-bottom: 48px;
}
.message-header h2 {
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.message-header .lead {
  font-size: 0.85rem;
  color: #777;
  letter-spacing: 0.08em;
}

/* ----- body ----- */
.message-body {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #333;
}
.message-body p {
  margin-bottom: 24px;
}

/* ----- sign ----- */
.message-sign {
  margin-top: 40px;
  text-align: right;
  font-size: 0.9rem;
}
.message-sign strong {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

/* =========================
   Responsive
========================= */
@media (min-width: 768px) {
  .page-section.message {
    padding: 120px 0 140px;
  }
  .message-header h2 {
    font-size: 1.8rem;
  }
  .message-body {
    font-size: 1rem;
  }
}
/* ----- utility ----- */
.sp-only {
  display: inline;
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}
/* =========================
   foot-banner
========================= */
.join {
  background: #fff;
}

.join-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 72px 16px;
  text-align: center;
}

.join-header {
  margin-bottom: 32px;
}
.join-header h2 {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}
.join-header .lead {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}

.join-cta {
  margin-top: 24px;
}
.join-cta .btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.join-cta .btn-outline {
  border: 1px solid #111;
  color: #111;
  background: transparent;
}
.join-cta .btn-outline:hover {
  background: #111;
  color: #fff;
}

/* SP */
@media (max-width: 768px) {
  .join-inner {
    padding: 56px 16px;
  }
  .join-cta .btn {
    width: 100%;
    max-width: 300px;
  }
}
.front-section {
  padding: 48px 12px 12px 12px;
}/*# sourceMappingURL=home.css.map */