* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  background: #000;
  color: #fff;
  font-family: "Times New Roman", serif;
}

/* ========================
   HEADER
======================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 78px;
  padding: 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.82);
  z-index: 1000;
}

/* 左上ロゴ */

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  width: 155px;
  height: auto;
  display: block;
}

/* メニュー */

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #d40000;
}

/* ========================
   HERO
======================== */

.hero {
  position: relative;

  width: 100%;
  height: 100vh;

  min-height: 720px;

  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;

  overflow: hidden;
}

/* 写真を少し暗くする */

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.12) 0%,
      rgba(0, 0, 0, 0.18) 35%,
      rgba(0, 0, 0, 0.30) 65%,
      rgba(0, 0, 0, 0.86) 100%
    );
  z-index: 1;
}

/* 中央の大きいロゴ */

.hero-logo {
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  width: min(500px, 44vw);
  z-index: 2;
}

.hero-logo img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: screen;
  opacity: 0.95;
  filter: brightness(1.02) contrast(1.08);
  .hero-logo img {
  filter:
    drop-shadow(0 3px 8px rgba(0, 0, 0, 0.9))
    drop-shadow(0 0 12px rgba(180, 0, 0, 0.45));

  opacity: 1;
}
}

/* SCROLL */

.scroll {
  position: absolute;

  left: 50%;
  bottom: 2%;

  transform: translateX(-50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;

  z-index: 2;
}

.scroll span {
  font-size: 10px;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.8);
}

.scroll-line {
  width: 1px;
  height: 32px;
  background: #c40000;
}

/* ========================
   TABLET
======================== */

@media (max-width: 1000px) {

  .header {
    padding: 0 24px;
  }

  .header-logo img {
    width: 160px;
  }

  .nav {
    gap: 20px;
  }

  .nav a {
    font-size: 12px;
  }

  .hero-logo {
    width: 72vw;
  }
}

/* ========================
   SMARTPHONE
======================== */

@media (max-width: 768px) {

  .header {
    height: 70px;
    padding: 0 18px;
  }

  .header-logo img {
    width: 135px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 100svh;

    background-position: center top;
  }

  .hero-logo {
    width: 88vw;
    bottom: 12%;
  }

  .scroll {
    bottom: 3%;
  }
}
/* ========================
   NEWS
======================== */

.news-section {
  background:
    radial-gradient(
      circle at top right,
      rgba(120, 0, 0, 0.12),
      transparent 40%
    ),
    #050505;

  padding: 100px 40px;
}

.news-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 40px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 18px;
}

.section-heading h2 {
  font-size: 34px;
  font-weight: normal;
  letter-spacing: 4px;
}

.view-more {
  color: #b50000;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
}

.news-list {
  display: flex;
  flex-direction: column;
}

.news-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;

  padding: 24px 0;

  color: #fff;
  text-decoration: none;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);

  transition:
    padding-left 0.3s ease,
    color 0.3s ease;
}

.news-item:hover {
  padding-left: 12px;
  color: #d00000;
}

.news-date {
  color: #d00000;
  font-size: 13px;
  letter-spacing: 1px;
}

.news-title {
  font-size: 15px;
  letter-spacing: 0.8px;
}

@media (max-width: 768px) {

  .news-section {
    padding: 70px 20px;
  }

  .section-heading h2 {
    font-size: 26px;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 8px;

    padding: 20px 0;
  }

  .news-title {
    font-size: 14px;
    line-height: 1.8;
  }
}
/* ========================
   LIVE SCHEDULE
======================== */

.live-section {
  background: #000;
  padding: 100px 40px 120px;
}

.live-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.live-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.live-card {
  position: relative;

  min-height: 260px;
  padding: 28px 24px;

  display: flex;
  flex-direction: column;

  background:
    linear-gradient(
      to bottom,
      rgba(110, 0, 0, 0.18),
      rgba(0, 0, 0, 0.95)
    );

  border: 1px solid rgba(255, 255, 255, 0.13);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.live-card:hover {
  transform: translateY(-8px);
  border-color: rgba(180, 0, 0, 0.8);

  background:
    linear-gradient(
      to bottom,
      rgba(150, 0, 0, 0.3),
      rgba(0, 0, 0, 0.95)
    );
}

.live-date {
  color: #d00000;
  font-size: 13px;
  letter-spacing: 2px;

  margin-bottom: 24px;
}

.live-card h3 {
  font-size: 19px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 1px;

  margin-bottom: 14px;
}

.live-info {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 1px;

  margin-bottom: 30px;
}

.live-button {
  margin-top: auto;

  width: fit-content;

  padding: 10px 18px;

  border: 1px solid rgba(255, 255, 255, 0.35);

  color: #fff;
  text-decoration: none;

  font-size: 10px;
  letter-spacing: 2px;

  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.live-button:hover {
  color: #fff;
  border-color: #b50000;
  background: #8c0000;
}

/* スマホ */
@media (max-width: 900px) {

  .live-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 600px) {

  .live-section {
    padding: 70px 20px 90px;
  }

  .live-grid {
    grid-template-columns: 1fr;
  }

  .live-card {
    min-height: 220px;
  }
}
/* ========================
   PROFILE
======================== */

.profile-section {
  background:
    radial-gradient(
      circle at center,
      rgba(120, 0, 0, 0.12),
      transparent 55%
    ),
    #050505;

  padding: 100px 40px 120px;
}

.profile-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.member-card {
  position: relative;
  overflow: hidden;

  min-height: 440px;

  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.member-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center top;

  display: block;

  transition:
    transform 0.5s ease,
    filter 0.5s ease;

  filter: brightness(0.78);
}

.member-card::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      transparent 35%,
      rgba(0, 0, 0, 0.3) 58%,
      rgba(0, 0, 0, 0.95) 100%
    );

  pointer-events: none;
}

.member-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.95);
}

.member-info {
  position: absolute;

  left: 22px;
  right: 22px;
  bottom: 22px;

  z-index: 2;
}

.member-part {
  color: #d00000;

  font-size: 10px;
  letter-spacing: 3px;

  margin-bottom: 8px;
}

.member-info h3 {
  color: #fff;

  font-size: 22px;
  font-weight: normal;
  letter-spacing: 2px;

  margin-bottom: 18px;
}

.member-button {
  display: inline-block;

  padding: 8px 14px;

  color: #fff;
  text-decoration: none;

  border: 1px solid rgba(255, 255, 255, 0.4);

  font-size: 9px;
  letter-spacing: 2px;

  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.member-button:hover {
  background: #8b0000;
  border-color: #b50000;
}

/* タブレット */
@media (max-width: 1050px) {

  .profile-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

/* スマホ */
@media (max-width: 650px) {

  .profile-section {
    padding: 70px 20px 90px;
  }

  .profile-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .member-card {
    min-height: 520px;
  }
}
/* ========================
   DISCOGRAPHY
======================== */

.discography-section {
  background: #050505;
  padding: 100px 40px 120px;
}

.discography-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.discography-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.disc-card {
  cursor: pointer;
}

.disc-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;

  filter: brightness(0.82);

  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.disc-card:hover img {
  transform: scale(1.025);
  filter: brightness(1);
}

.disc-info {
  padding-top: 18px;
}

.disc-type {
  color: #c80000;
  font-size: 10px;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.disc-info h3 {
  font-size: 19px;
  font-weight: normal;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.disc-date {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 1px;
}


/* ========================
   MOVIE
======================== */

.movie-section {
  background:
    radial-gradient(
      circle at center,
      rgba(110, 0, 0, 0.13),
      transparent 60%
    ),
    #000;

  padding: 100px 40px 120px;
}

.movie-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.movie-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.12);
}

.movie-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.movie-title {
  margin-top: 14px;

  color: #fff;

  font-size: 13px;
  letter-spacing: 2px;
}


/* ========================
   FOOTER
======================== */

.footer {
  background: #020202;

  padding: 80px 30px 35px;

  text-align: center;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo img {
  width: 180px;
  height: auto;
}

.footer-nav {
  margin-top: 40px;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 28px;
}

.footer-nav a,
.footer-sns a {
  color: rgba(255, 255, 255, 0.75);

  text-decoration: none;

  font-size: 11px;
  letter-spacing: 2px;

  transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-sns a:hover {
  color: #c60000;
}

.footer-sns {
  margin-top: 32px;

  display: flex;
  justify-content: center;

  gap: 30px;
}

.copyright {
  margin-top: 45px;

  color: rgba(255, 255, 255, 0.3);

  font-size: 9px;
  letter-spacing: 1px;
}


/* ========================
   RESPONSIVE
======================== */

@media (max-width: 900px) {

  .discography-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 700px) {

  .movie-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 600px) {

  .discography-section,
  .movie-section {
    padding: 70px 20px 90px;
  }

  .discography-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    padding-top: 60px;
  }

  .footer-nav {
    gap: 18px;
  }

  .footer-logo img {
    width: 150px;
  }
}
/* ========================
   SMOOTH SCROLL
======================== */

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 80px;
}


/* ========================
   GOODS
======================== */

.goods-section {
  background: #050505;
  padding: 100px 40px 120px;
}

.goods-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.goods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.goods-card {
  overflow: hidden;
}

.goods-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;

  display: block;

  filter: brightness(0.8);

  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

.goods-card:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}

.goods-info {
  padding-top: 18px;
}

.goods-info h3 {
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 2px;
}

.goods-info p {
  margin-top: 8px;

  color: #b60000;

  font-size: 12px;
  letter-spacing: 1px;
}

.goods-store {
  margin-top: 55px;
  text-align: center;
}

.goods-store a {
  display: inline-block;

  padding: 14px 28px;

  border: 1px solid rgba(255, 255, 255, 0.4);

  color: #fff;
  text-decoration: none;

  font-size: 11px;
  letter-spacing: 3px;

  transition: 0.3s;
}

.goods-store a:hover {
  background: #8b0000;
  border-color: #b50000;
}


/* ========================
   CONTACT
======================== */

.contact-section {
  position: relative;

  min-height: 520px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 100px 30px;

  background:
    radial-gradient(
      circle at center,
      rgba(150, 0, 0, 0.18),
      transparent 55%
    ),
    #000;

  text-align: center;
}

.contact-small {
  color: #b50000;

  font-size: 11px;
  letter-spacing: 5px;

  margin-bottom: 25px;
}

.contact-inner h2 {
  font-size: clamp(38px, 6vw, 80px);

  font-weight: normal;
  letter-spacing: 5px;

  line-height: 1.1;
}

.contact-text {
  margin-top: 30px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 13px;
  letter-spacing: 1px;
}

.contact-button {
  display: inline-block;

  margin-top: 40px;
  padding: 15px 30px;

  border: 1px solid rgba(255, 255, 255, 0.5);

  color: #fff;
  text-decoration: none;

  font-size: 11px;
  letter-spacing: 3px;

  transition: 0.3s;
}

.contact-button:hover {
  background: #8b0000;
  border-color: #b50000;
}


/* ========================
   SCROLL ANIMATION
======================== */

.reveal {
  opacity: 0;
  transform: translateY(45px);

  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


/* ========================
   MOBILE MENU BUTTON
======================== */

.menu-button {
  display: none;

  width: 34px;
  height: 25px;

  background: none;
  border: 0;

  cursor: pointer;

  position: relative;
  z-index: 1100;
}

.menu-button span {
  display: block;

  width: 100%;
  height: 1px;

  margin: 7px 0;

  background: #fff;

  transition: 0.3s;
}


/* ========================
   MOBILE
======================== */

@media (max-width: 768px) {

  .header {
    height: 70px;
    padding: 0 18px;
  }

  .header-logo img {
    width: 125px;
  }

  .menu-button {
    display: block;
  }

  .nav {
    position: fixed;

    top: 0;
    right: -100%;

    width: 100%;
    height: 100vh;

    background: rgba(0, 0, 0, 0.97);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 28px;

    transition: right 0.45s ease;

    z-index: 1050;
  }

  .nav.open {
    right: 0;
  }

  .nav a {
    font-size: 17px;
    letter-spacing: 3px;
  }

  .menu-button.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-button.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-button.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .goods-section {
    padding: 70px 20px 90px;
  }

  .goods-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    min-height: 480px;
  }

}
/* ========================
   GOODS
======================== */

.goods-section {
  background: #050505;
  padding: 100px 40px 120px;
}

.goods-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.goods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.goods-card {
  overflow: hidden;
}

.goods-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;

  filter: brightness(0.8);

  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

.goods-card:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}

.goods-info {
  padding-top: 18px;
}

.goods-info h3 {
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 2px;
}

.goods-info p {
  margin-top: 8px;
  color: #b60000;
  font-size: 12px;
  letter-spacing: 1px;
}

.goods-store {
  margin-top: 55px;
  text-align: center;
}

.goods-store a {
  display: inline-block;
  padding: 14px 28px;

  border: 1px solid rgba(255, 255, 255, 0.4);

  color: #fff;
  text-decoration: none;

  font-size: 11px;
  letter-spacing: 3px;

  transition: 0.3s;
}

.goods-store a:hover {
  background: #8b0000;
  border-color: #b50000;
}

@media (max-width: 768px) {
  .goods-section {
    padding: 70px 20px 90px;
  }

  .goods-grid {
    grid-template-columns: 1fr;
  }
}
/* ========================
   CONTACT
======================== */

.contact-section {
  position: relative;

  min-height: 600px;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 100px 30px;

  background:
    radial-gradient(
      circle at center,
      rgba(130, 0, 0, 0.22) 0%,
      rgba(50, 0, 0, 0.10) 35%,
      transparent 65%
    ),
    #030303;

  text-align: center;

  overflow: hidden;
}

/* 背景の赤い光 */

.contact-section::before {
  content: "";

  position: absolute;

  width: 450px;
  height: 450px;

  background: rgba(160, 0, 0, 0.08);

  filter: blur(100px);

  border-radius: 50%;
}


/* 中身 */

.contact-inner {
  position: relative;
  z-index: 2;
}


/* CONTACT */

.contact-label {
  margin-bottom: 25px;

  color: #a50000;

  font-size: 11px;
  letter-spacing: 6px;
}


/* 大きいタイトル */

.contact-title {
  margin: 0;

  color: #eee;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(45px, 6vw, 85px);
  font-weight: normal;

  line-height: 1.05;
  letter-spacing: 5px;
}


/* 説明 */

.contact-text {
  margin-top: 35px;

  color: rgba(255,255,255,0.5);

  font-size: 12px;
  letter-spacing: 2px;
}


/* ボタン */

.contact-button {
  display: inline-block;

  margin-top: 40px;

  padding: 16px 34px;

  border: 1px solid rgba(255,255,255,0.35);

  color: #fff;

  font-size: 11px;
  letter-spacing: 4px;

  text-decoration: none;

  transition: 0.35s;
}


.contact-button:hover {
  background: #8c0000;

  border-color: #b00000;

  box-shadow: 0 0 30px rgba(180,0,0,0.25);
}


/* スマホ */

@media (max-width: 768px) {

  .contact-section {
    min-height: 500px;

    padding: 80px 20px;
  }

  .contact-title {
    font-size: 40px;

    letter-spacing: 3px;
  }

  .contact-text {
    line-height: 2;
  }

}
/* =========================
   SP HERO IMAGE
========================= */

@media (max-width: 768px) {

  .hero {
    background-image: url("main-sp.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }

}
/* =========================
   SP 中央ロゴ調整
========================= */
@media (max-width: 768px) {

  .hero-logo {
    position: absolute;
    left: 50%;
    top: 75%;
    transform: translate(-50%, -50%);
    width: auto;
    z-index: 5;
  }

  .hero-logo img {
    display: block;
    width: 180px !important;
    height: auto;
    max-width: none;
  }

}
@media (max-width: 768px) {

  .profile-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .member-card {
    min-height: 0;
    height: 280px;
  }

  .member-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center 22%;
  }

  .member-info {
    left: 16px;
    right: 16px;
    bottom: 14px;
  }

  .member-part {
    font-size: 8px;
    letter-spacing: 2px;
    margin-bottom: 4px;
  }

  .member-info h3 {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .member-button {
    padding: 6px 11px;
    font-size: 8px;
  }

}
@media (max-width: 768px) {

  .discography-grid .disc-card {
    display: none;
  }

  .discography-grid .disc-card:first-child {
    display: block;
  }

  .discography-grid {
    grid-template-columns: 1fr;
  }

}
@media (max-width: 768px) {

  .movie-grid .movie-card {
    display: none;
  }

  .movie-grid .movie-card:first-child {
    display: block;
  }

  .movie-grid {
    grid-template-columns: 1fr;
  }

}
@media (max-width: 768px) {

  .goods-grid {
    display: none;
  }

  .goods-store {
    margin-top: 25px;
  }

}
/* =========================
   HERO LOGO ANIMATION
========================= */

.hero-logo {
  opacity: 0;
  animation: logoFadeIn 1.5s ease forwards;
  animation-delay: 0.8s;
}

@keyframes logoFadeIn {
  0% {
    opacity: 0;
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
  }
}
.hero {
  position: relative;
  overflow: hidden;
  background-image: none !important;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("main.jpg");
  background-size: cover;
  background-position: center;

  animation: heroZoom 8s ease-out forwards;

  z-index: 0;
}

@keyframes heroZoom {
  0% {
    transform: scale(1.08);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* =========================
   HERO BACKGROUND MOTION
========================= */

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("main.jpg");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;

  z-index: 0;

  animation: heroOpening 3s ease-out forwards;
}.hero-logo,
.scroll,
.hero-shade {
  z-index: 2;
}

@keyframes heroOpening {
  0% {
    opacity: 0;
    transform: scale(1.10);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* スマホ */
@media (max-width: 768px) {
  .hero::before {
    background-image: url("main-sp.jpg");
    background-position: center top;
  }
}

@keyframes heroBgMove {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}

/* スマホ */
@media (max-width: 768px) {
  .hero::before {
    background-image: url("main-sp.jpg");
    background-position: center top;
  }
}
/* スクロールアニメーション */

.reveal {
  transform: translateY(40px);
  transition: transform 0.8s ease;
}

.reveal.active {
  transform: translateY(0);
}
/* =========================
   PROFILE 時間差アニメーション
========================= */
/* PROFILE 順番に表示 */

.member-card:nth-child(1) {
  transition-delay: 0s;
}

.member-card:nth-child(2) {
  transition-delay: 0.12s;
}

.member-card:nth-child(3) {
  transition-delay: 0.24s;
}

.member-card:nth-child(4) {
  transition-delay: 0.36s;
}

.member-card:nth-child(5) {
  transition-delay: 0.48s;
}
/* =========================
   LIVE CARD ANIMATION
========================= */

.live-card {
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease,
    border-color 0.5s ease;
}

/* PCでカーソルを乗せた時 */
.live-card:hover {
  transform: translateY(-8px);
  border-color: #b40000;
  box-shadow: 0 12px 35px rgba(180, 0, 0, 0.22);
}
/* LIVEを順番に表示 */

.live-card:nth-child(1) {
  transition-delay: 0s;
}

.live-card:nth-child(2) {
  transition-delay: 0.15s;
}

.live-card:nth-child(3) {
  transition-delay: 0.3s;
}
/* =========================
   DISCOGRAPHY IMAGE ANIMATION
========================= */

.disc-card:first-child {
  overflow: hidden;
}

.disc-card:first-child img {
  transform: scale(1.08);
  transition: transform 1.2s ease;
}

.discography-inner.active .disc-card:first-child img {
  transform: scale(1);
}
/* MOVIE CARD ANIMATION */

.movie-animate {
  transform: translateY(40px) scale(1.05);
  filter: brightness(0.65);

  transition:
    transform 1s ease,
    filter 1s ease;
}

.movie-animate.active {
  transform: translateY(0) scale(1);
  filter: brightness(1);
}
/* =========================
   SCROLL INDICATOR
========================= */

.scroll {
  animation: scrollFadeIn 1s ease 2.2s forwards;
  opacity: 0;
}

.scroll-line {
  width: 1px;
  height: 35px;
  background: #b50000;
  transform-origin: top;
  animation: scrollLine 1.8s ease-in-out 3s infinite;
}

@keyframes scrollFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }

  30% {
    transform: scaleY(1);
    opacity: 1;
  }

  70% {
    transform: scaleY(1);
    opacity: 1;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}
.header-sns {
  display: flex;
  align-items: center;
  gap: 16px;

  margin-left: 8px;
  padding-left: 20px;

  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.header-sns a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-sns img {
  width: 20px;
  height: 20px;
  object-fit: contain;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.header-sns a:hover img {
  transform: scale(1.15);
  opacity: 0.7;
}
@media (max-width: 768px) {

  .header-sns {
    margin: 15px 0 0;
    padding: 22px 0 0;

    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);

    gap: 28px;
  }

  .header-sns img {
    width: 24px;
    height: 24px;
  }

}
.hero-logo {
  position: absolute;
  z-index: 2;
}

.hero-logo::before {
  content: "";
  position: absolute;
  inset: -35px -55px;

  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.25) 45%,
    transparent 75%
  );

  z-index: 0;
  pointer-events: none;
}

.hero-logo img {
  position: relative;
  z-index: 1;
}
/* =========================
   MEMBER PROFILE PAGE
========================= */
/* =========================
   MEMBER PROFILE PAGE
========================= */

.member-profile-page {
  background: #050505;
  min-height: 100vh;
  padding-top: 90px;
  color: #fff;
}

.member-profile {
  width: min(1100px, 90%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;

  gap: 20px;
}

/* 写真 */
.member-profile-image {
  width: 100%;
  overflow: hidden;

  opacity: 0;
  transform: translateX(-30px);
  animation: profileImageIn 1s ease forwards;
}

.member-profile-image img {
  width: 100%;
  height: 620px;

  display: block;

  object-fit: cover;
  object-position: center top;
}

/* 右側 */
.member-profile-content {
  width: 100%;
  min-width: 0;

  padding: 40px 30px;

  opacity: 0;
  transform: translateX(30px);
  animation: profileContentIn 1s ease 0.2s forwards;
}

.member-profile-part {
  margin-bottom: 14px;

  color: #b50000;

  font-size: 14px;
  letter-spacing: 5px;
}

.member-profile-content h1 {
  margin: 0;

  font-size: 42px;
  line-height: 1.2;

  letter-spacing: 0.03em;
  white-space: nowrap;
}

.member-profile-line {
  width: 60px;
  height: 1px;

  margin: 28px 0 35px;

  background: #9f0000;
}

/* PROFILE DATA */
.member-profile-data {
  margin: 0;
}

.member-profile-data > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;

  padding: 18px 0;

  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.member-profile-data dt {
  font-size: 12px;
  letter-spacing: 3px;

  color: rgba(255,255,255,0.7);
}

.member-profile-data dd {
  margin: 0;

  font-size: 14px;
  letter-spacing: 1px;

  white-space: nowrap;
}

/* SNS */
.member-sns {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}

.member-sns a {
  color: #fff;
  text-decoration: none;
}

.member-sns a:hover {
  color: #b50000;
}

/* MEMBER NAV */
.member-navigation {
  width: min(1100px, 90%);
  margin: 20px auto 0;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  opacity: 0;
  transform: translateY(20px);
  animation: profileNavIn 0.8s ease 0.7s forwards;
}

.member-navigation a {
  padding: 24px 15px;

  color: #ddd;
  text-align: center;
  text-decoration: none;

  border: 1px solid rgba(255,255,255,0.12);

  font-size: 11px;
  letter-spacing: 2px;
}

/* ANIMATION */
@keyframes profileImageIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes profileContentIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes profileNavIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   MEMBER PROFILE MOBILE
========================= */

@media (max-width: 768px) {

  .member-profile-page {
    padding-top: 70px;
  }

  .member-profile {
    width: 100%;
    display: block;
  }

  .member-profile-image img {
    width: 100%;
    height: auto;

    aspect-ratio: 3 / 4;

    object-fit: cover;
    object-position: center top;
  }

  .member-profile-content {
    padding: 35px 22px 45px;
  }

  .member-profile-part {
    font-size: 11px;
  }

  .member-profile-content h1 {
    font-size: 30px;
    white-space: nowrap;
  }

  .member-profile-line {
    margin: 20px 0 25px;
  }

  .member-profile-data > div {
    grid-template-columns: 110px 1fr;
    padding: 16px 0;
  }

  .member-profile-data dt {
    font-size: 10px;
  }

  .member-profile-data dd {
    font-size: 12px;
    white-space: nowrap;
  }

  .member-navigation {
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .member-navigation a {
    border-left: 0;
    border-right: 0;
  }
}
.member-sns {
  display: flex;
  align-items: center;
  gap: 24px;
}

.member-sns a {
  display: flex;
  align-items: center;
}

.member-sns img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}
/* =========================
   MOVIE ARCHIVE PAGE
========================= */

.movie-page {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 80% 15%,
      rgba(120, 0, 0, 0.12),
      transparent 35%
    ),
    #050505;
}

.movie-page-section {
  padding: 150px 40px 120px;
}

.movie-page-inner {
  width: min(1200px, 92%);
  margin: 0 auto;
}


/* ===== TITLE ===== */

.movie-page-heading {
  margin-bottom: 65px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 28px;
}

.movie-page-heading p {
  color: #b50000;
  font-size: 10px;
  letter-spacing: 5px;
  margin-bottom: 10px;
}

.movie-page-heading h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: normal;
  letter-spacing: 5px;
}


/* ===== MOVIE GRID ===== */

.movie-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px 24px;
}


/* ===== CARD ===== */

.movie-page-card {
  min-width: 0;
}


/* ===== YOUTUBE ===== */

.movie-page-card .movie-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;

  overflow: hidden;

  background: #000;

  border: 1px solid rgba(255,255,255,0.12);

  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.movie-page-card .movie-frame:hover {
  transform: translateY(-5px);

  border-color: rgba(180,0,0,0.7);

  box-shadow:
    0 15px 40px rgba(0,0,0,0.6),
    0 0 25px rgba(150,0,0,0.12);
}

.movie-page-card iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}


/* ===== VIDEO INFO ===== */

.movie-page-info {
  padding-top: 18px;
}

.movie-page-info p {
  color: #b50000;

  font-size: 9px;
  letter-spacing: 3px;

  margin-bottom: 8px;
}

.movie-page-info h2 {
  color: #eee;

  font-size: 16px;
  font-weight: normal;

  line-height: 1.6;
  letter-spacing: 1.5px;
}


/* ===== CARD ANIMATION ===== */

.movie-page-card {
  opacity: 0;
  transform: translateY(35px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.movie-page-card.active {
  opacity: 1;
  transform: translateY(0);
}

.movie-page-card:nth-child(2) {
  transition-delay: 0.12s;
}

.movie-page-card:nth-child(3) {
  transition-delay: 0.24s;
}


/* =========================
   TABLET
========================= */

@media (max-width: 950px) {

  .movie-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* =========================
   SMARTPHONE
========================= */

@media (max-width: 650px) {

  .movie-page-section {
    padding: 110px 20px 80px;
  }

  .movie-page-inner {
    width: 100%;
  }

  .movie-page-heading {
    margin-bottom: 40px;
  }

  .movie-page-heading h1 {
    font-size: 34px;
    letter-spacing: 3px;
  }

  .movie-page-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .movie-page-info h2 {
    font-size: 14px;
  }

}
/* =========================
   NEWS DETAIL
========================= */

.news-detail-page {
  min-height: 100vh;

  padding: 160px 30px 120px;

  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(120, 0, 0, 0.12),
      transparent 35%
    ),
    #050505;
}

.news-detail {
  width: min(900px, 100%);
  margin: 0 auto;
}


/* 上部 */

.news-detail-head {
  opacity: 0;
  transform: translateY(25px);

  animation: newsDetailIn 0.9s ease forwards;
}

.news-detail-label {
  margin-bottom: 25px;

  color: #b50000;

  font-size: 10px;
  letter-spacing: 5px;
}

.news-detail-date {
  margin-bottom: 15px;

  color: rgba(255,255,255,0.45);

  font-size: 11px;
  letter-spacing: 2px;
}

.news-detail-head h1 {
  margin: 0;

  color: #eee;

  font-size: clamp(26px, 4vw, 46px);
  font-weight: normal;

  line-height: 1.5;
  letter-spacing: 2px;
}


/* 赤ライン */

.news-detail-line {
  width: 55px;
  height: 1px;

  margin: 45px 0;

  background: #a50000;
}


/* 本文 */

.news-detail-body {
  max-width: 760px;

  opacity: 0;
  transform: translateY(25px);

  animation: newsDetailIn 0.9s ease 0.2s forwards;
}

.news-detail-body p {
  margin-bottom: 25px;

  color: rgba(255,255,255,0.72);

  font-size: 14px;
  line-height: 2.2;

  letter-spacing: 1px;
}


/* NEWS画像 */

.news-detail-image {
  width: 100%;
  height: auto;

  display: block;

  margin-bottom: 45px;
}


/* 戻る */

.news-detail-back {
  margin-top: 80px;

  padding-top: 28px;

  border-top: 1px solid rgba(255,255,255,0.12);
}

.news-detail-back a {
  color: rgba(255,255,255,0.65);

  text-decoration: none;

  font-size: 10px;
  letter-spacing: 3px;

  transition: color 0.3s ease;
}

.news-detail-back a:hover {
  color: #b50000;
}


/* 登場 */

@keyframes newsDetailIn {

  to {
    opacity: 1;
    transform: translateY(0);
  }

}


/* =========================
   NEWS DETAIL MOBILE
========================= */

@media (max-width: 768px) {

  .news-detail-page {
    padding: 120px 20px 80px;
  }

  .news-detail-head h1 {
    font-size: 25px;
    line-height: 1.6;
  }

  .news-detail-line {
    margin: 30px 0;
  }

  .news-detail-body p {
    font-size: 13px;
    line-height: 2;
  }

  .news-detail-back {
    margin-top: 60px;
  }

}/* =========================
   LIVE DETAIL
/* =========================
   LIVE DETAIL PAGE
========================= */

.live-detail-page {
  min-height: 100vh;

  padding: 150px 30px 120px;

  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(130, 0, 0, 0.12),
      transparent 35%
    ),
    #050505;
}

.live-detail {
  width: min(950px, 100%);
  margin: 0 auto;
}


/* =========================
   HEADING
========================= */

.live-detail-heading {
  margin-bottom: 55px;

  opacity: 0;
  transform: translateY(25px);

  animation: liveDetailIn 0.9s ease forwards;
}

.live-detail-label {
  margin-bottom: 12px;

  color: #b50000;

  font-size: 10px;
  letter-spacing: 5px;
}

.live-detail-heading h1 {
  margin: 0;

  color: #eee;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(38px, 5vw, 64px);
  font-weight: normal;

  letter-spacing: 5px;
}


/* =========================
   DATE
========================= */

.live-detail-date {
  display: flex;
  align-items: baseline;
  gap: 15px;

  margin-bottom: 45px;

  color: #b50000;
}

.live-detail-date span {
  font-size: 14px;
  letter-spacing: 3px;
}

.live-detail-date strong {
  font-size: clamp(48px, 7vw, 86px);
  font-weight: normal;

  line-height: 1;
  letter-spacing: 2px;
}


/* =========================
   LIVE TITLE
========================= */

.live-detail-title {
  margin-bottom: 50px;
}

.live-detail-title p {
  margin-bottom: 12px;

  color: rgba(255, 255, 255, 0.45);

  font-size: 10px;
  letter-spacing: 3px;
}

.live-detail-title h2 {
  margin: 0;

  color: #fff;

  font-size: clamp(28px, 4vw, 46px);
  font-weight: normal;

  line-height: 1.4;
  letter-spacing: 2px;
}


/* =========================
   INFO
========================= */

.live-detail-info {
  margin: 0;

  border-top: 1px solid rgba(255, 255, 255, 0.14);

  opacity: 0;
  transform: translateY(25px);

  animation: liveDetailIn 0.9s ease 0.2s forwards;
}

.live-detail-info > div {
  display: grid;
  grid-template-columns: 180px 1fr;

  align-items: center;

  padding: 22px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.live-detail-info dt {
  color: #b50000;

  font-size: 11px;
  letter-spacing: 3px;
}

.live-detail-info dd {
  margin: 0;

  color: rgba(255, 255, 255, 0.82);

  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 1px;
}


/* =========================
   TICKET BUTTON
========================= */

.live-detail-ticket {
  margin-top: 45px;
}

.live-detail-ticket a {
  display: inline-block;

  padding: 15px 34px;

  border: 1px solid rgba(255, 255, 255, 0.4);

  color: #fff;

  text-decoration: none;

  font-size: 11px;
  letter-spacing: 4px;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.live-detail-ticket a:hover {
  background: #8b0000;
  border-color: #b50000;

  box-shadow: 0 0 30px rgba(180, 0, 0, 0.22);
}


/* =========================
   BACK
========================= */

.live-detail-back {
  margin-top: 80px;

  padding-top: 28px;

  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.live-detail-back a {
  color: rgba(255, 255, 255, 0.6);

  text-decoration: none;

  font-size: 10px;
  letter-spacing: 3px;

  transition: color 0.3s ease;
}

.live-detail-back a:hover {
  color: #b50000;
}


/* =========================
   ANIMATION
========================= */

@keyframes liveDetailIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .live-detail-page {
    padding: 115px 20px 80px;
  }

  .live-detail-heading {
    margin-bottom: 40px;
  }

  .live-detail-heading h1 {
    font-size: 34px;
    letter-spacing: 3px;
  }

  .live-detail-date {
    margin-bottom: 35px;
  }

  .live-detail-date strong {
    font-size: 56px;
  }

  .live-detail-title h2 {
    font-size: 28px;
  }

  .live-detail-info > div {
    grid-template-columns: 1fr;

    gap: 8px;

    padding: 18px 0;
  }

  .live-detail-info dt {
    font-size: 9px;
  }

  .live-detail-info dd {
    font-size: 13px;
  }

  .live-detail-ticket a {
    width: 100%;
    text-align: center;
  }

  .live-detail-back {
    margin-top: 60px;
  }

}