:root {
  --bg: #050507;
  --fg: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --max: 1100px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Hiragino Sans", "Noto Sans JP", "Segoe UI", Roboto, Arial;
  background: var(--fg);
  color: var(--bg);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.u-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ----- Ã£Æ’Â­Ã£Æ’Â¼Ã£Æ’â‚¬Ã£Æ’Â¼ ----- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader[aria-hidden="true"],
.loader.loader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__inner {
  text-align: center;
}
.loader__logo {
  width: min(280px, 60vw);
  height: auto;
  opacity: 0.95;
}
body.is-loading .header {
  opacity: 0;
  pointer-events: none;
}
body.is-loading .main {
  opacity: 0;
}

/* ----- Ã£Æ’ËœÃ£Æ’Æ’Ã£Æ’â‚¬Ã£Æ’Â¼ ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  transition: background 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  background: transparent;
}
.header--scrolled {
  background: rgba(5, 5, 7, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.header__brand img {
  height: 28px;
  width: auto;
  opacity: 0.95;
}
.header__links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 10px 14px;
  flex-wrap: wrap;
}
.header__link {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.header__link:hover {
  color: var(--fg);
}

/* ----- Ã£Æ’Â¡Ã£â€šÂ¤Ã£Æ’Â³ ----- */
.main {
  padding-top: 0;
  transition: opacity 0.4s ease;
}

/* ----- .mv ----- */
.mv {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}
.mv__inner {
  position: relative;
  width: 100%;
  z-index: 1;
}
.mv__content {
  margin: 0 auto;
  width: 100%;
  /* padding: 0 16px; */
  max-width: 100%;
}
.mv__title {
  margin: 0;
  font-size: 0;
  line-height: 0;
/*   cursor: pointer; */
  display: block;
  /* border-radius: var(--radius); */
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
	pointer-events: none;
}
.mv__title:hover {
  /* transform: scale(1.02); */
  /* box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5); */
}
/* 600pxÃ¤Â»Â¥Ã¤Â¸â€¹: Ã¥Â¹â€¦100%Ã£Æ’Â»Ã£â€šÂ¢Ã£â€šÂ¹Ã£Æ’Å¡Ã£â€šÂ¯Ã£Æ’Ë†Ã¦Â¯â€Ã£ÂÂ®Ã£ÂÂ¿Ã¯Â¼Ë†Ã©Â«ËœÃ£Ââ€¢Ã£ÂÂ¯Ã¥ÂÂ¯Ã¥Â¤â€°Ã¯Â¼â€° */
.mv__title picture,
.mv__title img {
  width: 100%;
  display: block;
}
.mv__title picture img {
  /* aspect-ratio: 16 / 9;
  object-fit: cover; */
  aspect-ratio: initial;
}
.mv__title img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  height: auto;
  max-height: none;
}

@media (min-width: 601px) {
  .mv__content {
    /* width: min(920px, 92vw); */
    /* padding: 24px; */
  }
  .mv__title picture img,
  .mv__title img {
    height: 100vh;
    max-height: 100vh;
    aspect-ratio: 16 / 9;
  }
}

/* ----- .bgImgÃ¯Â¼Ë†Ã¨Æ’Å’Ã¦â„¢Â¯Ã§â€Â»Ã¥Æ’Â + stage / movie / movieList / photosÃ¯Â¼â€° ----- */
.bgImg {
  position: relative;
  background-size: cover;
  background-position: center top;
  overflow: hidden;
  background-attachment: fixed;
}

/* .stage */
.stage {
  position: relative;
  padding: 48px 0;
  text-align: center;
  z-index: 1;
}
.stage__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-size: 14px;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s ease;
	display: none;
}
.stage__btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* .movie */
.movie {
  position: relative;
  width: min(var(--max), 92vw);
  margin: 0 auto;
  padding: 0 0 48px;
  z-index: 1;
}
.movie__inner {
  border-radius: var(--radius);
  overflow: hidden;
/*   border: 1px solid rgba(255, 255, 255, 0.15); */
/*   box-shadow: var(--shadow); */
}
.movie__inner iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  display: block;
}

/* .movieList */
.movieList {
  position: relative;
  width: min(var(--max), 92vw);
  margin: 0 auto;
  padding: 0 0 48px;
  z-index: 1;
}
.movieList__inner {
  display: grid;
  gap: 16px;
}
.movieList__item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 560px;
}
.movieList__item iframe {
  width: 100%;
  min-height: 315px;
  display: block;
}

/* .photosÃ¯Â¼Ë†3Ã¨Â¡Å’Ã£Æ’Â»Ã¦Å“â‚¬Ã¥Â¤Â§12Ã¥â‚¬â€¹Ã¯Â¼â€° */
.photos {
  position: relative;
  width: min(var(--max), 92vw);
  margin: 0 auto;
  padding: 0 0 64px;
  z-index: 1;
}
.photos__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  /* gap: 12px; */
}
.photos__item {
  /* border-radius: 16px; */
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.photos__item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.photos__link,
.photos__trigger,
.photos__imgWrap {
  display: block;
  width: 100%;
  height: 100%;
}
.photos__trigger {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  width: 100%;
  font: inherit;
  color: inherit;
  text-align: left;
}
.photos__trigger:hover,
.photos__link:hover {
  opacity: 0.92;
}

/* .bgImg Ã£ÂÂ®Ã¨Æ’Å’Ã¦â„¢Â¯Ã£ÂÂ¯ front-page Ã£ÂÂ§Ã£â€šÂ¤Ã£Æ’Â³Ã£Æ’Â©Ã£â€šÂ¤Ã£Æ’Â³Ã¦Å’â€¡Ã¥Â®Å¡Ã¯Â¼Ë†Ã£â€šÂ«Ã£â€šÂ¹Ã£â€šÂ¿Ã£Æ’Å¾Ã£â€šÂ¤Ã£â€šÂ¶Ã£Æ’Â¼Ã§â€Â»Ã¥Æ’ÂÃ¯Â¼â€° */
.bgImg {
  background-color: var(--fg);
}
/* .bgImg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.5));
  pointer-events: none;
} */

/* ----- Ã£â€šÂ¹Ã£â€šÂ¯Ã£Æ’Â­Ã£Æ’Â¼Ã£Æ’Â«Ã£Æ’â€¢Ã£â€šÂ§Ã£Æ’Â¼Ã£Æ’â€°Ã£â€šÂ¤Ã£Æ’Â³ ----- */
.stage.is-animate,
.movie.is-animate,
.movieList.is-animate,
.photos.is-animate {
  opacity: 0.6;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stage.is-animate.is-visible,
.movie.is-animate.is-visible,
.movieList.is-animate.is-visible,
.photos.is-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Ã£Æ’â€¢Ã£Æ’Æ’Ã£â€šÂ¿Ã£Æ’Â¼ ----- */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0 48px;
  width: min(var(--max), 92vw);
  margin: 0 auto;
  color: var(--bg);
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 16px;
  align-items: baseline;
}
.footer__group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
}
.footer__label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-right: 4px;
}
.footer__link {
  font-size: 13px;
}
.footer__link:hover {
  color: var(--fg);
}
.footer__copy {
  margin-top: 24px;
  font-size: 12px;
  opacity: 0.8;
}

.footer__link::before {
  font-family: 'Font Awesome 6 Brands';
  font-weight: 400;
  font-size: 28px;
  color: #555;
}
.footer__link.appleMusic::before {
  content: "\f3b4";
}
.footer__link.spotify::before {
  content: "\f1bc";
}
.footer__link.instagram::before {
  content: "\e055";
}
.footer__link.youtube::before {
  content: "\f167";
}



/* ----- Ã£Æ’Â¢Ã£Æ’Â¼Ã£Æ’â‚¬Ã£Æ’Â« ----- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.modal--open {
  opacity: 1;
  visibility: visible;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}
.modal__inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--fg);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease;
  z-index: 2;
}
.modal__close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.modal__content {
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  background: #333;
}

div#modalContent {}
.modal__videoWrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}
.modal__videoWrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal__imgWrap {
  width: 100%;
  line-height: 0;
}
.modal__imgWrap img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  margin: 0 auto;
}

/* Stage Ã£Æ’Â¢Ã£Æ’Â¼Ã£Æ’â‚¬Ã£Æ’Â«Ã¯Â¼Ë†Ã£â€šÂ¤Ã£Æ’â„¢Ã£Æ’Â³Ã£Æ’Ë†Ã¤Â¸â‚¬Ã¨Â¦Â§Ã¯Â¼â€° */
.modal__stage {
  padding: 24px;
  min-width: 280px;
  max-width: 100%;
}
.modal__stageList {
  list-style: none;
  margin: 0;
  padding: 0;
}
.modal__stageItem {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
}
.modal__stageItem:last-child {
  border-bottom: none;
}
.modal__stageName {
  font-weight: 600;
  flex: 1 1 100%;
}
.modal__stageDate {
  font-size: 14px;
  color: var(--muted);
}
.modal__stageLink {
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease;
}
.modal__stageLink:hover {
  background: rgba(255, 255, 255, 0.2);
}
.modal__stageEmpty {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 860px) {
  .header__links {
    gap: 12px;
  }
  .header__link {
    font-size: 12px;
  }
  .photos__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .movieList__item iframe {
    min-height: 220px;
  }
}

@media (max-width: 600px) {
  .footer__links {
    gap: 16px;
  }
  .footer__link::before {
    font-size: 24px;
  }
}

.grecaptcha-badge { 
   visibility: hidden; 
}