* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #4b0f16;
  color: #ffffff;
  font-family: "Shippori Mincho", serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =========================
   HEADER
========================= */

header {
  width: 100%;

  padding: 20px 60px;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  background: rgba(35, 0, 0, 0.82);

  backdrop-filter: blur(6px);

  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  letter-spacing: 0.15em;
  font-weight: 700;
}

.logo img {
  width: 220px;
  display: block;
}

.menu-toggle {
  display: none;

  background: transparent;

  border: 1px solid rgba(212,175,55,0.5);

  color: #ffffff;

  padding: 8px 14px;

  cursor: pointer;

  font-family: inherit;
  font-size: 0.8rem;
}

nav {
  display: flex;
  justify-content: flex-end;
  gap: 28px;

  margin-top: 16px;
}

nav a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);

  transition: 0.3s;
}

nav a:hover {
  color: #d4af37;
}

/* =========================
   HERO
========================= */

.hero {
  width: 100%;
  min-height: 100vh;

  position: relative;

  background:
    url("../images/topbanner.png");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 180px 20px 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      rgba(20,0,0,0.25),
      rgba(20,0,0,0.72)
    );
}

.hero-content {
  position: relative;
  z-index: 1;

  text-align: center;

  width: 100%;
  max-width: 900px;

  padding: 0 20px;
}

.hero-title {
  font-size: 5rem;
  letter-spacing: 0.18em;

  margin-bottom: 20px;

  line-height: 1.3;

  text-shadow:
    0 0 20px rgba(0,0,0,0.5);
}

.hero-sub {
  font-size: 1rem;
  letter-spacing: 0.3em;

  color: rgba(255,255,255,0.82);

  margin-bottom: 50px;
}

.audition-banner {
  display: inline-block;

  padding: 18px 40px;

  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(212,175,55,0.45);

  transition: 0.3s;
}

.audition-banner:hover {
  background: rgba(212,175,55,0.15);

  transform: translateY(-2px);
}

.audition-title {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.audition-text {
  font-size: 0.85rem;

  color: rgba(255,255,255,0.8);

  line-height: 1.8;
}

/* =========================
   NEWS
========================= */

.news-section {
  background: #3b0c12;

  padding: 100px 10%;
}

.section-title {
  font-size: 2rem;

  color: #d4af37;

  margin-bottom: 40px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-item {
  padding-bottom: 15px;

  border-bottom:
    1px solid rgba(255,255,255,0.15);
}

.news-date {
  font-size: 0.8rem;

  color: rgba(255,255,255,0.6);

  margin-bottom: 5px;
}

.news-text {
  font-size: 1rem;

  line-height: 1.8;
}

/* =========================
   NEXT STAGE
========================= */

.next-stage {
  margin-top: 80px;

  text-align: center;
}

.next-stage-title {
  font-size: 1.8rem;

  color: #d4af37;

  margin-bottom: 30px;
}

.flyer {
  width: 320px;
  max-width: 100%;

  margin: 0 auto;
}

.flyer img {
  width: 100%;
  display: block;

  border:
    1px solid rgba(212,175,55,0.4);

  box-shadow:
    0 0 30px rgba(0,0,0,0.4),
    0 0 10px rgba(212,175,55,0.1);
}


/* =========================
   SYSTEM NOTICE
========================= */

.system-notice {

  text-align: center;

  padding: 70px 20px;

  border-top:
    1px solid rgba(255,255,255,0.08);

  color: rgba(255,255,255,0.45);

  font-size: 0.7rem;

  line-height: 1.8;

  background: #2a070b;

  margin-top: 80px;
}

.system-notice p {
  margin-bottom: 6px;
}

/* =========================
   PAGE HERO
========================= */

.page-hero {
  position: relative;

  width: 100%;
  height: 320px;

  overflow: hidden;

  padding-top: 120px;

  border-top:
    1px solid rgba(212,175,55,0.28);

  border-bottom:
    1px solid rgba(212,175,55,0.28);

  background: #2a070b;
}

.page-hero img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  filter:
    brightness(55%);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;

  background:
    rgba(0,0,0,0.35);

  z-index: 1;
}

.page-hero-content {
  position: absolute;

  inset: 0;

  z-index: 2;

  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;

  padding-top: 70px;
}

.page-hero-content h1 {
  font-size: 52px;

  margin-bottom: 10px;

  letter-spacing: 0.1em;
}

.page-hero-content p {
  font-size: 14px;

  letter-spacing: 0.3em;

  color: #d0c4aa;
}

/* =========================
   ABOUT PAGE
========================= */

.about-page {
  width: 90%;
  max-width: 1000px;

  margin: 80px auto;
}

.about-box {
  margin-bottom: 70px;

  padding: 40px;

  background: rgba(20, 10, 10, 0.75);

  border: 1px solid #6d4d25;
}

.about-box h2 {
  font-size: 28px;

  margin-bottom: 30px;

  color: #f2e8d5;

  border-left: 4px solid #8d6a36;

  padding-left: 15px;
}

.about-box p {
  line-height: 2.2;

  margin-bottom: 20px;

  color: #d8d2c6;
}

.logo-box {
  text-align: center;
}

.about-logo {
  width: 520px;
  max-width: 90%;

  margin-bottom: 40px;
}

.theater-image img {
  width: 100%;

  display: block;

  margin-bottom: 25px;

  border: 1px solid #6d4d25;
}

/* =========================
   MEMBERS PAGE
========================= */

.member-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.member-card {
  display: flex;
  align-items: center;
  gap: 35px;

  padding-bottom: 30px;

  border-bottom:
    1px solid rgba(255,255,255,0.08);
}

.member-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.member-image {
  flex-shrink: 0;
}

.member-image img {
  width: 180px;
  height: 240px;

  object-fit: cover;

  display: block;

  border:
    1px solid rgba(212,175,55,0.25);

  filter:
    brightness(0.92);
}

.member-profile {
  flex: 1;
}

.member-profile h2 {
  font-size: 2rem;

  color: #f2e8d5;

  margin-bottom: 18px;

  letter-spacing: 0.08em;
}

.member-role {
  font-size: 1rem;

  color: #d4af37;

  margin-bottom: 12px;

  line-height: 1.8;
}

.member-years {
  font-size: 0.92rem;

  color: rgba(255,255,255,0.7);

  line-height: 1.8;
}

.leader .member-profile h2 {
  font-size: 2.4rem;
}

.newcomer {
  background:
    rgba(255,255,255,0.02);

  padding-top: 10px;
  padding-bottom: 40px;
}

/* =========================
   STAGE PAGE
========================= */

.stage-main {
  display: flex;
  gap: 50px;

  align-items: stretch;
}

.stage-flyer {
  width: 380px;

  flex-shrink: 0;
}

.stage-flyer img {
  width: 100%;

  display: block;

  border:
    1px solid rgba(212,175,55,0.25);

  box-shadow:
    0 0 30px rgba(0,0,0,0.35);
}

.stage-detail {
  flex: 1;

  padding-top: 10px;
}

.stage-number {
  font-size: 0.95rem;

  color: #d4af37;

  letter-spacing: 0.08em;

  margin-bottom: 18px;
}

.stage-title {
  font-size: 3.2rem;

  line-height: 1.2;

  margin-bottom: 12px;

  color: #f3eadb;
}

.stage-genre {
  display: inline-block;

  font-size: 0.9rem;

  padding: 6px 14px;

  margin-bottom: 35px;

  border:
    1px solid rgba(212,175,55,0.35);

  color: #d4af37;
}

.stage-description {
  margin-bottom: 40px;
}

.stage-description p {
  line-height: 2.3;

  color: #ddd4c6;

  margin-bottom: 18px;
}

.stage-cast,
.stage-ticket {
  margin-bottom: 35px;
}

.stage-cast h4,
.stage-ticket h4 {
  font-size: 1.1rem;

  color: #d4af37;

  margin-bottom: 15px;
}

.stage-cast ul {
  list-style: none;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stage-cast li {
  color: #f0e7d7;
}

.stage-ticket p {
  line-height: 2;
}

.ticket-note {
  font-size: 0.9rem;

  color: rgba(255,255,255,0.7);
}

/* =========================
   ARCHIVE PAGE
========================= */

.archive-note {
  font-size: 0.9rem;

  color: rgba(255,255,255,0.7);

  margin-bottom: 40px;

  line-height: 1.8;
}

.archive-item {
  margin-bottom: 45px;
}

.archive-item:last-child {
  margin-bottom: 0;
}

.archive-layout {
  display: flex;
  gap: 35px;

  align-items: flex-start;
}

.archive-flyer {
  width: 170px;

  flex-shrink: 0;
}

.archive-flyer img {
  width: 100%;

  display: block;

  border:
    1px solid rgba(212,175,55,0.25);

  box-shadow:
    0 0 20px rgba(0,0,0,0.3);

  filter:
    contrast(0.96)
    brightness(0.95);

  transition: 0.3s;
}


.archive-content {
  flex: 1;
}

.archive-header {
  margin-bottom: 18px;
}

.archive-number {
  font-size: 0.9rem;

  color: #d4af37;

  letter-spacing: 0.08em;

  margin-bottom: 10px;
}

.archive-title {
  font-size: 2.4rem !important;

  line-height: 1.3;

  margin: 0 !important;

  border: none !important;

  padding: 0 !important;

  color: #f3eadb;
}

.archive-genre {
  display: inline-block;

  margin-bottom: 28px;

  padding: 6px 14px;

  border:
    1px solid rgba(212,175,55,0.25);

  color: #d4af37;

  font-size: 0.82rem;
}

.archive-description {
  line-height: 2.2;

  color: #ddd4c6;

  margin-bottom: 35px;
}

.archive-cast h3 {
  font-size: 1rem;

  color: #d4af37;

  margin-bottom: 14px;
}

.archive-cast ul {
  list-style: none;

  display: flex;
  flex-direction: column;

  gap: 10px;
}

.archive-cast li {
  color: #f0e7d7;
}

/* =========================
   RESPONSIVE
========================= */

@media screen and (max-width: 900px) {

  header {
    padding: 18px 16px;
  }

  .logo {
    font-size: 1.8rem;
  }

  .logo img {
    width: 170px;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    display: none;

    flex-direction: column;
    gap: 14px;

    margin-top: 20px;

    padding-top: 18px;

    border-top:
      1px solid rgba(212,175,55,0.25);
  }

  nav.open {
    display: flex;
  }

  nav a {
    font-size: 0.9rem;
  }

  .hero {
    min-height: 88vh;

    padding-top: 180px;

    background:
      url("../images/topbanner-sp.png");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }

  .hero-title {
    font-size: 2.8rem;
    letter-spacing: 0.1em;

    margin-bottom: 16px;
  }

  .hero-sub {
    font-size: 0.72rem;
    letter-spacing: 0.18em;

    margin-bottom: 34px;

    line-height: 1.8;
  }

  .audition-banner {
    width: 100%;
    max-width: 320px;

    padding: 16px 18px;
  }

  .audition-title {
    font-size: 1rem;
  }

  .audition-text {
    font-size: 0.78rem;
  }

  .news-section {
    padding: 80px 7%;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .news-text {
    font-size: 0.92rem;
  }

  .next-stage-title {
    font-size: 1.5rem;
  }

  .flyer {
    width: 220px;
  }

  .page-hero {
    height: 220px;

    padding-top: 80px;
  }

  .page-hero-content {
    padding-top: 50px;
  }

  .page-hero-content h1 {
    font-size: 36px;
  }

  .page-hero-content p {
    font-size: 12px;
  }

  .about-page {
    width: 92%;

    margin: 50px auto;
  }

  .about-box {
    padding: 25px;

    margin-bottom: 40px;
  }

  .about-box h2 {
    font-size: 22px;

    margin-bottom: 20px;
  }

  .about-box p {
    font-size: 14px;

    line-height: 2;
  }

  .about-logo {
    width: 320px;
  }

  .member-card {
    flex-direction: column;
    align-items: flex-start;

    gap: 20px;
  }

  .member-image img {
    width: 140px;
    height: 190px;
  }

  .member-profile h2 {
    font-size: 1.5rem;
  }

  .member-role {
    font-size: 0.92rem;
  }

  .member-years {
    font-size: 0.85rem;
  }

  .stage-main {
    flex-direction: column;

    gap: 35px;
  }

  .stage-flyer {
    width: 100%;
    max-width: 320px;

    margin: 0 auto;
  }

  .stage-title {
    font-size: 2.3rem;
  }

  .archive-layout {
    flex-direction: column;

    gap: 25px;
  }

  .archive-flyer {
    width: 160px;

    margin: 0 auto;
  }

  .archive-title {
    font-size: 2rem !important;
  }

}

/* =========================
   AUDITION PAGE
========================= */

.audition-form {
  display: flex;
  flex-direction: column;

  gap: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;

  gap: 10px;
}

.form-group label {
  font-size: 0.95rem;

  color: #d4af37;

  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;

  padding: 14px 16px;

  background:
    rgba(0,0,0,0.2);

  border:
    1px solid rgba(212,175,55,0.2);

  color: #f3eadb;

  font-family: inherit;

  font-size: 0.95rem;

  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;

  border:
    1px solid rgba(212,175,55,0.5);

  background:
    rgba(0,0,0,0.35);
}

.form-group textarea {
  min-height: 120px;

  line-height: 2;
}

.form-group select {
  cursor: pointer;
}

.audition-submit {
  width: 220px;

  padding: 16px;

  background:
    rgba(212,175,55,0.08);

  border:
    1px solid rgba(212,175,55,0.35);

  color: #f3eadb;

  font-family: inherit;

  font-size: 1rem;

  cursor: pointer;

  transition: 0.3s;
}

.audition-submit:hover {
  background:
    rgba(212,175,55,0.18);
}

.audition-note {
  margin-top: 35px;

  font-size: 0.85rem;

  color:
    rgba(255,255,255,0.6);

  line-height: 2;
}

.audition-complete {
  display: none;

  padding: 40px;

  text-align: center;

  border:
    1px solid rgba(212,175,55,0.25);

  background:
    rgba(0,0,0,0.18);
}

.audition-complete p {
  margin-bottom: 12px;

  line-height: 2;
}

/* =========================
   RESPONSIVE
========================= */

@media screen and (max-width: 900px) {

  .audition-submit {
    width: 100%;
  }

}

/* =========================
   NEWS PAGE
========================= */

.news-accordion {
  display: flex;
  flex-direction: column;

  gap: 14px;
}

.news-entry {
  border:
    1px solid rgba(212,175,55,0.18);

  background:
    rgba(0,0,0,0.12);
}

.news-toggle {
  width: 100%;

  display: flex;
  flex-direction: column;

  align-items: flex-start;

  gap: 8px;

  padding: 22px 24px;

  background: transparent;

  border: none;

  color: #f3eadb;

  font-family: inherit;

  text-align: left;

  cursor: pointer;

  transition: 0.3s;
}

.news-toggle:hover {
  background:
    rgba(255,255,255,0.03);
}

.news-date {
  font-size: 0.8rem;

  color:
    rgba(255,255,255,0.55);

  letter-spacing: 0.08em;
}

.news-title {
  font-size: 1rem;

  line-height: 1.8;
}

.news-detail {
  display: none;

  padding:
    0 24px 24px;

  border-top:
    1px solid rgba(255,255,255,0.06);
}

.news-detail.open {
  display: block;
}

.news-detail p {
  line-height: 2.2;

  color: #d8d2c6;

  margin-top: 18px;
}

/* =========================
   RESPONSIVE
========================= */

@media screen and (max-width: 900px) {

  .news-toggle {
    padding: 18px;
  }

  .news-title {
    font-size: 0.92rem;

    line-height: 1.8;
  }

  .news-detail {
    padding:
      0 18px 18px;
  }

}

.news-note {
  margin-bottom: 22px;

  font-size: 0.85rem;

  color:
    rgba(255,255,255,0.55);

  line-height: 1.8;
}

.news-pagination {
  margin-top: 45px;

  text-align: center;
}

.news-next {
  display: inline-block;

  padding: 12px 20px;

  border:
    1px solid rgba(212,175,55,0.28);

  color: #d4af37;

  font-size: 0.9rem;

  transition: 0.3s;
}

.news-next:hover {
  background:
    rgba(212,175,55,0.08);
}

.news-archive-note {
  margin-top: 50px;

  text-align: center;

  font-size: 0.8rem;

  color:
    rgba(255,255,255,0.4);

  line-height: 2;
}

/* =========================
   CONTACT PAGE
========================= */

.contact-form {
  display: flex;
  flex-direction: column;

  gap: 28px;
}

.contact-note {
  margin-top: 18px;

  font-size: 0.85rem;

  color:
    rgba(255,255,255,0.55);

  line-height: 1.8;
}

/* =========================
   CONTACT BANNER
========================= */

.contact-banner-section {

  margin-top: 70px;

  background: #4b0f16;

  padding:
    40px 10% 80px;

  text-align: center;
}

.contact-banner {

  display: inline-block;

  padding: 18px 40px;

  border:
    1px solid rgba(212,175,55,0.35);

  background:
    rgba(255,255,255,0.04);

  color: #f3eadb;

  font-size: 1rem;

  letter-spacing: 0.08em;

  transition: 0.3s;

  text-decoration: none;
}

.contact-banner:hover {

  background:
    rgba(212,175,55,0.12);

  color: #d4af37;

  transform: translateY(-2px);
}

.contact-banner-title {

  font-size: 1rem;

  margin-bottom: 6px;
}

.contact-banner-text {

  font-size: 0.82rem;

  color:
    rgba(255,255,255,0.7);
}

@media screen and (max-width: 900px) {

  .contact-banner-section {

    padding:
      30px 7% 60px;
  }

  .contact-banner {

    width: 100%;

    max-width: 320px;

    padding: 16px;
  }

}