@charset "UTF-8";
/* aタグ設定
------------------------------------- */
@media (any-hover: hover) {
  a:hover, button:hover {
    opacity: 0.75;
  }
}

a, button {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  text-decoration: none;
  color: currentColor;
}

/* 基本設定
------------------------------------- */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  -webkit-text-size-adjust: 100%;
  font-size: 1.4rem; /* =14px */
  color: #000;
  font-family: "toppan-bunkyu-midashi-min-st", serif;
  font-weight: 900;
  font-style: normal;
  background-color: #F7F8F9;
  line-height: 1.8;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
body.is-fixed {
  position: relative;
  overflow: hidden;
  height: 100%;
}
body.is-fixed #wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

img {
  width: 100%;
  height: auto;
  pointer-events: none;
}

ul {
  list-style: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* デフォルトの三角形アイコンを非表示にする */
summary {
  display: block;
  list-style: none;
}

summary::-webkit-details-marker,
summary::marker {
  display: none;
}

/* レスポンシブ設定
------------------------------------- */
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
#wrapper {
  overflow: hidden;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F7F8F9;
  z-index: 100;
  transition: transform 1.2s, opacity 1.2s;
}
.loading.off {
  transform: scale(1.2);
  opacity: 0;
  pointer-events: none;
}
.loading__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading__body {
  display: flex;
  align-items: flex-start;
  gap: 3.125vw;
}
@media screen and (max-width: 768px) {
  .loading__body {
    gap: 5.3333333333vw;
  }
}
.loading__count {
  display: block;
  text-align: right;
  width: 6.25vw;
  font-size: 2.6041666667vw;
  color: #000;
}
@media screen and (max-width: 768px) {
  .loading__count {
    width: 13.3333333333vw;
    font-size: 4.8vw;
  }
}
.loading__logo {
  width: 26.0416666667vw;
}
@media screen and (max-width: 768px) {
  .loading__logo {
    width: 58.6666666667vw;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}
.modal.--vertical .modal__body {
  aspect-ratio: 9/16;
  max-width: 95vw;
  width: auto;
  height: 100%;
  max-height: 100%;
}
@media screen and (max-width: 768px) {
  .modal.--vertical .modal__body {
    max-width: 100%;
    max-height: calc(100vh - 90px);
  }
}
.modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  cursor: pointer;
}
.modal__body {
  aspect-ratio: 16/9;
  width: 1000px;
  max-width: calc(100% - 160px);
  max-height: calc(100vh - 70px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .modal__body {
    max-width: 100%;
    max-height: calc(100vh - 90px);
  }
}
.modal__body iframe, .modal__body video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal__close {
  font-size: 2rem;
  color: #fff;
  position: absolute;
  top: 10px;
  left: calc(100% + 10px);
}
@media screen and (max-width: 768px) {
  .modal__close {
    font-size: 1.8rem;
    top: auto;
    bottom: calc(100% + 5px);
    left: auto;
    right: 5px;
  }
}

.shindan-btn {
  width: 12.5vw;
  position: fixed;
  top: 10%;
  right: -0.5208333333vw;
  z-index: 98;
  will-change: transform;
  animation: floatY 2.8s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .shindan-btn {
    width: 26.6666666667vw;
    right: -1.3333333333vw;
    top: calc(58% - 13.3333333333vw);
  }
}
@media (any-hover: hover) {
  .shindan-btn:hover {
    filter: brightness(1.4);
    opacity: 1;
    animation-play-state: paused;
  }
}

@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-24px);
  }
  100% {
    transform: translateY(0);
  }
}
.footer {
  border-top: 1px solid #000;
  background-color: #fff;
  margin-top: 2.0833333333vw;
  position: relative;
  z-index: 30;
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 5.3333333333vw;
  }
}
.footer__inner {
  padding: 1.0416666667vw 4.1666666667vw 1.0416666667vw 2.0833333333vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 5.3333333333vw 5.3333333333vw;
    flex-direction: column-reverse;
  }
}
.footer__copyright {
  text-align: right;
  font-size: 0.8333333333vw;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 2.1333333333vw;
    margin-top: 2.6666666667vw;
    text-align: center;
  }
}
.footer__box {
  display: flex;
  align-items: center;
  gap: 3.9583333333vw;
}
@media screen and (max-width: 768px) {
  .footer__box {
    gap: 12.2666666667vw;
  }
}
.footer__box ul {
  display: flex;
  align-items: center;
  gap: 1.0416666667vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer__box ul {
    gap: 2.6666666667vw;
    justify-content: center;
  }
}
.footer__box ul:after {
  content: "／";
  font-size: 1.875vw;
  position: absolute;
  top: 50%;
  right: calc(100% + 1.0416666667vw);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .footer__box ul:after {
    font-size: 4.2666666667vw;
    right: calc(100% + 4vw);
  }
}
.footer__box ul li a {
  display: block;
}
.footer__box ul li a.--youtube {
  width: 2.7083333333vw;
}
@media screen and (max-width: 768px) {
  .footer__box ul li a.--youtube {
    width: 6.1333333333vw;
  }
}
.footer__box ul li a.--x {
  width: 2.1354166667vw;
}
@media screen and (max-width: 768px) {
  .footer__box ul li a.--x {
    width: 4.8vw;
  }
}
.footer__box ul li a.--tiktok {
  width: 2.1354166667vw;
}
@media screen and (max-width: 768px) {
  .footer__box ul li a.--tiktok {
    width: 5.0666666667vw;
  }
}
.footer__link {
  font-size: 1.0416666667vw;
}
@media screen and (max-width: 768px) {
  .footer__link {
    font-size: 3.2vw;
  }
}

.mv {
  position: relative;
  z-index: 50;
  overflow: hidden;
  background-color: #000;
}
.mv__top {
  padding: 1.71875vw 0 2.2916666667vw;
  position: relative;
  z-index: 1;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .mv__top {
    padding: 4.5333333333vw 0 3.4666666667vw;
  }
}
.mv__top .--copy {
  max-width: 32.0833333333vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .mv__top .--copy {
    max-width: 54.4vw;
    margin: 0 6.6666666667vw 0 auto;
  }
}
.mv__logo {
  position: absolute;
  top: 1.5625vw;
  left: 3.6458333333vw;
  transition: transform 0.5s 1.4s, opacity 0.5s 1.4s;
  will-change: transform;
  transform: scale(1.1);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .mv__logo {
    top: 3.2vw;
    left: 6.6666666667vw;
  }
}
.mv__logo img {
  width: 13.0729166667vw;
}
@media screen and (max-width: 768px) {
  .mv__logo img {
    width: 25.3333333333vw;
  }
}
.mv.on .mv__logo {
  transform: inherit;
  opacity: 1;
}
.mv.ver01 .mv__filter01, .mv.ver01 .mv__filter02, .mv.ver01 .mv__filter03, .mv.ver01 .mv__filter04 {
  background-color: #fff;
}
.mv.ver01 .mv__bg img {
  opacity: 0;
}
.mv.ver01.on .mv__bg img {
  opacity: 1;
}
.mv.ver01.on .mv__filter01 {
  transform: translateY(-105%);
}
.mv.ver01.on .mv__filter02 {
  transform: translateX(105%);
}
.mv.ver01.on .mv__filter03 {
  transform: translateX(-105%);
}
.mv.ver01.on .mv__filter04 {
  transform: translateY(105%);
}
.mv.ver02 .mv__filter01, .mv.ver02 .mv__filter02, .mv.ver02 .mv__filter03, .mv.ver02 .mv__filter04 {
  background-color: #000;
}
.mv.ver02 .mv__bg img {
  opacity: 0;
}
.mv.ver02.on .mv__bg img {
  opacity: 1;
}
.mv.ver02.on .mv__filter01 {
  transform: translateY(-105%);
}
.mv.ver02.on .mv__filter02 {
  transform: translateX(105%);
}
.mv.ver02.on .mv__filter03 {
  transform: translateX(-105%);
}
.mv.ver02.on .mv__filter04 {
  transform: translateY(105%);
}
.mv.ver03 .mv__bg img {
  filter: grayscale(100%) brightness(0.25);
  transform: scale(1.1);
  opacity: 1;
  transform-origin: center left;
  transition: opacity 0s, transform 0s, filter 0s;
}
@media screen and (max-width: 768px) {
  .mv.ver03 .mv__bg img {
    transform: scale(1.25);
  }
}
.mv.ver03.on .mv__bg img {
  filter: none;
  transform: scale(1);
  transition: opacity 1.5s 0.1s, transform 1.5s 0.1s, filter 1.5s 0.1s;
}
.mv.ver04 .mv__bg img {
  filter: blur(20px);
  transform: scale(1.1);
  opacity: 1;
  transform-origin: top center;
  transition: opacity 0s, transform 0s, filter 0s;
}
@media screen and (max-width: 768px) {
  .mv.ver04 .mv__bg img {
    transform: scale(1.25);
  }
}
.mv.ver04.on .mv__bg img {
  filter: none;
  transform: scale(1);
  transition: opacity 1.5s 0.1s, transform 1.5s 0.1s, filter 1.5s 0.1s;
}
.mv__filter01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0.7;
  transition: opacity 0.8s 0.4s, transform 0.8s 0.4s, filter 0.8s 0.4s;
  will-change: transform;
}
.mv__filter02 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0.7;
  transition: opacity 0.8s 0.4s, transform 0.8s 0.4s, filter 0.8s 0.4s;
  will-change: transform;
}
.mv__filter03 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0.7;
  transition: opacity 0.8s 0.4s, transform 0.8s 0.4s, filter 0.8s 0.4s;
  will-change: transform;
}
.mv__filter04 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0.7;
  transition: opacity 0.8s 0.4s, transform 0.8s 0.4s, filter 0.8s 0.4s;
  will-change: transform;
}
.mv__bg {
  display: block;
  transition: opacity 1.5s, transform 1.5s, filter 1.5s;
  will-change: transform;
  overflow: hidden;
}
.mv__bg img {
  opacity: 0;
}
.mv__bottom {
  padding: 1.5625vw;
}
@media screen and (max-width: 768px) {
  .mv__bottom {
    padding: 4vw 0 4vw;
  }
}
.mv__bottom img {
  width: 23.4375vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .mv__bottom img {
    width: 50.6666666667vw;
  }
}

.contents-area {
  display: flex;
  position: relative;
  z-index: 1;
}
.contents-area__green {
  width: 43.59375%;
  height: 32.5vw;
  position: fixed;
  top: 0;
  right: 0;
  z-index: -1;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  transition: opacity 0.5s, transform 0.5s;
  transform: translateX(50%);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .contents-area__green {
    width: 35.7333333333vw;
    height: 33.3333333333vw;
  }
}
.contents-area__green.on {
  transform: inherit;
  opacity: 1;
}
.contents-area__green.--01 {
  background-color: #75FB4C;
}
.contents-area__green.--02 {
  background-color: #EF32D9;
}
.contents-area__green.--03 {
  background-color: #75FBFD;
}
.contents-area__pink {
  width: 6.7708333333vw;
  height: 25.5208333333vw;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  position: fixed;
  top: 0;
  left: 16.1458333333%;
  z-index: -1;
  transition: opacity 0.5s, transform 0.5s;
  transform: translateY(-50%);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .contents-area__pink {
    width: 10.6666666667vw;
    height: 27.4666666667vw;
    left: 0;
  }
}
.contents-area__pink.on {
  transform: inherit;
  opacity: 1;
}
.contents-area__pink.--01 {
  background-color: #75FB4C;
}
.contents-area__pink.--02 {
  background-color: #EF32D9;
}
.contents-area__pink.--03 {
  background-color: #75FBFD;
}
.contents-area__blue {
  width: 100%;
  height: 12.7604166667vw;
  position: fixed;
  bottom: 0;
  left: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  transition: opacity 0.5s, transform 0.5s;
  transform: translateX(-50%);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .contents-area__blue {
    height: 25.6vw;
  }
}
.contents-area__blue.on {
  transform: inherit;
  opacity: 1;
}
.contents-area__blue.--01 {
  background-color: #75FB4C;
}
.contents-area__blue.--02 {
  background-color: #EF32D9;
}
.contents-area__blue.--03 {
  background-color: #75FBFD;
}
.contents-area__left {
  width: 22.9166666667%;
  z-index: 10;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contents-area__left {
    width: 10.6666666667%;
  }
}
.contents-area__left-inner {
  width: 22.9166666667%;
  padding-top: 4.1666666667vw;
  position: fixed;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .contents-area__left-inner {
    width: 10.6666666667%;
    padding-top: 30px;
  }
}
.contents-area__left-title {
  width: auto;
  height: calc(100vh - 8.3333333333vw);
  transition: opacity 0.5s;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .contents-area__left-title {
    height: calc(100vh - 60px);
  }
}
.contents-area__left-title.on {
  opacity: 1;
}
.contents-area__left-title img {
  margin: 0 auto;
  width: auto;
  max-width: 100%;
  height: 100%;
}
.contents-area__main {
  max-width: 75%;
  margin-right: 2.0833333333%;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .contents-area__main {
    max-width: 86.6666666667%;
    margin-right: 2.6666666667%;
  }
}
.contents-area .bg-white {
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 0 10.4166666667vw 10.4166666667vw;
}
@media screen and (max-width: 768px) {
  .contents-area .bg-white {
    padding: 0 5.3333333333vw 21.3333333333vw;
  }
}

.--italic {
  font-style: italic;
}

.section-title {
  font-size: 1.6666666667vw;
  position: relative;
  font-weight: bold;
  line-height: 1.5;
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 4.2666666667vw;
  }
}
.section-title::after {
  content: "";
  width: 5.2083333333vw;
  height: 0.2604166667vw;
  background-color: #000;
  position: absolute;
  bottom: 100%;
  left: 0;
}
@media screen and (max-width: 768px) {
  .section-title::after {
    width: 13.3333333333vw;
    height: 1.3333333333vw;
  }
}
.section-title .--top {
  display: block;
  font-size: 5vw;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .section-title .--top {
    font-size: 8.5333333333vw;
  }
}

.intro {
  padding-top: 8.3333333333vw;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .intro {
    padding-top: 17.3333333333vw;
  }
}
.intro__desc {
  font-size: 1.0416666667vw;
  margin-top: 2.0833333333vw;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .intro__desc {
    font-size: 3.7333333333vw;
    margin-top: 5.3333333333vw;
  }
}
.intro__desc.--large {
  font-weight: bold;
  font-size: 2.0833333333vw;
}
@media screen and (max-width: 768px) {
  .intro__desc.--large {
    font-size: 5.3333333333vw;
  }
}

.track-list {
  margin-top: 8.3333333333vw;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .track-list {
    margin-top: 21.3333333333vw;
  }
}
.track-list .section-title::after {
  width: 7.8125vw;
  height: 0.5208333333vw;
}
@media screen and (max-width: 768px) {
  .track-list .section-title::after {
    width: 13.3333333333vw;
    height: 1.3333333333vw;
  }
}
.track-list__btn-ac {
  margin-top: 2.0833333333vw;
  display: block;
  width: 100%;
  padding: 1.1979166667vw 1.0416666667vw;
  background-color: #F7F8F9;
  border: 1px solid #000;
  font-size: 1.25vw;
  font-weight: 500;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .track-list__btn-ac {
    margin-top: 6.6666666667vw;
    padding: 3.7333333333vw 4vw;
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .track-list__btn-ac:first-of-type {
    margin-top: 8vw;
  }
}
.track-list__btn-ac .--icon {
  transition: transform 0.3s;
  display: inline-block;
}
.track-list__list {
  margin-top: 0.5208333333vw;
}
@media screen and (max-width: 768px) {
  .track-list__list {
    margin-top: 0;
  }
}
.track-list__item {
  display: block;
  text-align: left;
  width: 100%;
  padding: 1.0416666667vw 2.8645833333vw;
  border-bottom: 1px solid #3E3E3E;
  position: relative;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .track-list__item {
    padding: 4vw 9.6vw 4vw 7.2vw;
  }
}
.track-list__item .--num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.8229166667vw;
  height: 1.8229166667vw;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  font-size: 1.0416666667vw;
  line-height: 1.8229166667vw;
  font-weight: bold;
  position: absolute;
  top: 1.8229166667vw;
  left: 0;
}
@media screen and (max-width: 768px) {
  .track-list__item .--num {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
    line-height: 5.3333333333vw;
    font-size: 3.2vw;
    top: 5.3333333333vw;
  }
}
.track-list__item .--icon {
  width: 2.6041666667vw;
  height: 2.8645833333vw;
  background-image: url("../images/icon-play.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 1.6145833333vw;
  right: 0;
  display: none;
}
@media screen and (max-width: 768px) {
  .track-list__item .--icon {
    width: 6.9333333333vw;
    height: 7.7333333333vw;
    top: 4.8vw;
  }
}
.track-list__item-body {
  font-size: 1.875vw;
  font-weight: bold;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .track-list__item-body {
    font-size: 4.2666666667vw;
  }
}
.track-list__item-body .--small {
  display: block;
  font-size: 0.8333333333vw;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .track-list__item-body .--small {
    font-size: 2.6666666667vw;
    margin-top: 0.5333333333vw;
  }
}
.track-list__item-body .--low {
  display: inline-flex;
  align-items: flex-start;
}
.track-list__item-body .--low .--label {
  flex: 0 0 auto;
}
.track-list__item-body .--english {
  font-size: 1.0416666667vw;
}
@media screen and (max-width: 768px) {
  .track-list__item-body .--english {
    font-size: 2.6666666667vw;
  }
}

.discography {
  margin-top: 8.3333333333vw;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .discography {
    margin-top: 21.3333333333vw;
  }
}
.discography .section-title::after {
  width: 15.625vw;
  height: 0.78125vw;
}
@media screen and (max-width: 768px) {
  .discography .section-title::after {
    width: 26.6666666667vw;
    height: 2.6666666667vw;
  }
}
.discography__btn-ac {
  margin-top: 4.1666666667vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.1979166667vw 1.0416666667vw;
  background-color: #F7F8F9;
  border: 1px solid #000;
  font-size: 1.25vw;
  font-weight: 500;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .discography__btn-ac {
    margin-top: 10.6666666667vw;
    padding: 4vw;
    font-size: 3.7333333333vw;
  }
}
.discography__btn-ac:first-of-type {
  margin-top: 2.0833333333vw;
}
@media screen and (max-width: 768px) {
  .discography__btn-ac:first-of-type {
    margin-top: 8vw;
  }
}
.discography__btn-ac .--icon {
  transition: transform 0.3s;
  display: inline-block;
}
.discography__btn-ac .--left {
  font-size: 1.0416666667vw;
}
@media screen and (max-width: 768px) {
  .discography__btn-ac .--left {
    font-size: 2.6666666667vw;
  }
}
.discography__item {
  margin-top: 1.5625vw;
}
@media screen and (max-width: 768px) {
  .discography__item {
    margin-top: 2.6666666667vw;
    padding-bottom: 10.6666666667vw;
    border-bottom: 1px dashed #3E3E3E;
  }
}
@media screen and (max-width: 768px) {
  .discography__item.--item03 {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.discography__item-top {
  display: flex;
  align-items: flex-start;
  gap: 2.6041666667vw;
}
@media screen and (max-width: 768px) {
  .discography__item-top {
    display: block;
  }
}
.discography__thumbnail {
  width: 19.0104166667vw;
  position: relative;
  z-index: 1;
  padding-bottom: 1.0416666667vw;
  padding-right: 1.0416666667vw;
}
@media screen and (max-width: 768px) {
  .discography__thumbnail {
    width: 48vw;
    margin: 4vw auto 0;
    padding-bottom: 2.6666666667vw;
    padding-right: 2.6666666667vw;
  }
}
.discography__thumbnail::before {
  content: "";
  width: 6.3541666667vw;
  height: 6.3541666667vw;
  position: absolute;
  bottom: 0;
  right: 0;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .discography__thumbnail::before {
    width: 16vw;
    height: 16vw;
    bottom: 0;
    right: 0;
  }
}
.discography__thumbnail.--pink::before {
  background-color: #EF32D9;
}
.discography__thumbnail.--blue::before {
  background-color: #75FBFD;
}
.discography__thumbnail.--green::before {
  background-color: #00FF78;
}
.discography__thumbnail-slide {
  margin-top: 1.5625vw;
}
@media screen and (max-width: 768px) {
  .discography__thumbnail-slide {
    margin-top: 8vw;
  }
}
.discography__thumbnail-slide::before {
  opacity: 0;
}
.discography__thumbnail-slide > div {
  position: relative;
  aspect-ratio: 1660/1646;
}
.discography__thumbnail-slide > div img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
  transition: transform 0s, opacity 0s;
}
@media screen and (max-width: 768px) {
  .discography__thumbnail-slide > div img {
    bottom: 1.3333333333vw;
    right: 1.3333333333vw;
  }
}
.discography__thumbnail-slide > div img.--img02 {
  transform: translate(-50%, -50%) rotate(-10deg) scale(1.1);
}
.discography__thumbnail-slide > div img.--img02.on {
  transform: translate(-50%, -50%) rotate(0) scale(1);
}
.discography__thumbnail-slide > div img.on {
  transform: translate(-50%, -50%) rotate(0) scale(1);
  transition: transform 0.2s ease-in, opacity 0.2s ease-in;
  z-index: 1;
}
.discography__item-body {
  width: 33.59375vw;
}
@media screen and (max-width: 768px) {
  .discography__item-body {
    width: 100%;
  }
}
.discography__item-body .--top {
  font-size: 1.0416666667vw;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .discography__item-body .--top {
    font-size: 2.6666666667vw;
  }
}
.discography__item-body .--bg-gray {
  margin-top: 0.5208333333vw;
  background-color: #F7F8F9;
  padding: 1.3020833333vw 0.78125vw;
}
@media screen and (max-width: 768px) {
  .discography__item-body .--bg-gray {
    margin-top: 2.6666666667vw;
    padding: 4vw;
  }
}
.discography__item-body .--bg-gray p {
  font-size: 0.9375vw;
}
@media screen and (max-width: 768px) {
  .discography__item-body .--bg-gray p {
    font-size: 2.6666666667vw;
  }
}
.discography__item-body dl {
  margin-top: 2.0833333333vw;
}
@media screen and (max-width: 768px) {
  .discography__item-body dl {
    margin-top: 6.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .discography__item-body dl:first-of-type {
    margin-top: 4vw;
  }
}
.discography__item-body dl dt {
  padding: 0.3125vw 0.78125vw 0.2604166667vw;
  font-size: 1.0416666667vw;
  font-weight: 500;
  border: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .discography__item-body dl dt {
    padding: 1.6vw 2.6666666667vw 1.3333333333vw;
    font-size: 3.7333333333vw;
  }
}
.discography__item-body dl dd {
  margin-top: 1.0416666667vw;
  font-size: 0.9375vw;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .discography__item-body dl dd {
    margin-top: 2.6666666667vw;
    font-size: 3.2vw;
  }
}
.discography__item-body dl dd .--large {
  display: inline-block;
  margin-bottom: 0.2604166667vw;
  font-size: 1.0416666667vw;
  text-decoration: underline;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .discography__item-body dl dd .--large {
    font-size: 3.7333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
.discography__item-body dl dd .--label {
  display: inline-block;
  margin-top: 0.2604166667vw;
}
@media screen and (max-width: 768px) {
  .discography__item-body dl dd .--label {
    margin-top: 2.6666666667vw;
  }
}
.discography__btn {
  display: block;
  margin-top: 1.5625vw;
  padding: 1.3020833333vw;
  background-color: #000;
  color: #fff;
  font-size: 0.9375vw;
  line-height: 1.8;
  font-weight: bold;
  text-align: center;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .discography__btn {
    margin-top: 6.6666666667vw;
    padding: 4vw;
    font-size: 3.7333333333vw;
    border-radius: 2px;
  }
}
.discography__info {
  margin-top: 5.2083333333vw;
}
@media screen and (max-width: 768px) {
  .discography__info {
    margin-top: 16vw;
  }
}
.discography__info-title {
  padding-left: 2.0833333333vw;
  font-size: 2.2916666667vw;
  line-height: 1.4;
  position: relative;
}
@media screen and (max-width: 768px) {
  .discography__info-title {
    padding-left: 6.6666666667vw;
    font-size: 5.3333333333vw;
  }
}
.discography__info-title::after {
  content: "";
  width: 1.0416666667vw;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .discography__info-title::after {
    width: 2.6666666667vw;
  }
}
.discography__info-title:nth-of-type(2) {
  margin-top: 5.2083333333vw;
}
@media screen and (max-width: 768px) {
  .discography__info-title:nth-of-type(2) {
    margin-top: 16vw;
  }
}
.discography__info-title:nth-of-type(2)::after {
  height: 3.2291666667vw;
}
@media screen and (max-width: 768px) {
  .discography__info-title:nth-of-type(2)::after {
    height: 10.4vw;
  }
}
.discography__info-desc {
  margin-top: 2.0833333333vw;
  font-size: 1.0416666667vw;
}
@media screen and (max-width: 768px) {
  .discography__info-desc {
    margin-top: 6.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
.discography__info-dl {
  margin-top: 2.0833333333vw;
}
@media screen and (max-width: 768px) {
  .discography__info-dl {
    margin-top: 6.6666666667vw;
  }
}
.discography__info-dl .--line a {
  text-decoration: underline;
}
.discography__info-dl dt {
  padding: 0.3125vw 0.78125vw 0.2604166667vw;
  font-size: 1.0416666667vw;
  border: 1px solid #000;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  .discography__info-dl dt {
    padding: 1.6vw 4vw 1.3333333333vw;
    font-size: 3.7333333333vw;
    line-height: 1.4;
    letter-spacing: 0;
  }
}
.discography__info-dl dd {
  margin-top: 1.0416666667vw;
  font-size: 0.9375vw;
}
@media screen and (max-width: 768px) {
  .discography__info-dl dd {
    margin-top: 4vw;
    font-size: 3.2vw;
  }
}

.movie {
  margin-top: 2.0833333333vw;
  margin-bottom: 2.0833333333vw;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .movie {
    margin-top: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.movie__body {
  width: 100%;
  height: 100%;
  background-image: url("../images/bg-comingsooon.webp");
  background-size: 96.25vw 29.7916666667vw;
  background-repeat: repeat;
  padding: 4.1666666667vw 10.4166666667vw;
}
@media screen and (max-width: 768px) {
  .movie__body {
    background-image: url("../images/bg-comingsooon-sp.webp");
    background-size: 89.0666666667vw 84.5333333333vw;
    padding: 16vw 5.3333333333vw 13.3333333333vw;
  }
}
.movie .section-title::after {
  width: 20.8333333333vw;
  height: 0.78125vw;
}
@media screen and (max-width: 768px) {
  .movie .section-title::after {
    width: 40vw;
    height: 4vw;
  }
}
.movie__list {
  margin-top: 0.2604166667vw;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2604166667vw 0.4807692308%;
}
@media screen and (max-width: 768px) {
  .movie__list {
    margin-top: 0.5333333333vw;
    gap: 0.5333333333vw 0.6779661017%;
  }
}
.movie__btn {
  display: block;
  width: 33.0128205128%;
}
@media screen and (max-width: 768px) {
  .movie__btn {
    width: 49.6610169492%;
  }
}
@media (any-hover: hover) {
  .movie__btn:hover {
    opacity: 1;
    filter: brightness(1.05);
  }
}
.movie__btn.--comingsoon {
  pointer-events: none;
}
.movie__thumbnail {
  display: block;
  position: relative;
}
.movie__thumbnail .--icon {
  width: 3.125vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.75;
}
@media screen and (max-width: 768px) {
  .movie__thumbnail .--icon {
    width: 6.6666666667vw;
  }
}
.movie__btn-top {
  margin: 3.125vw auto 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .movie__btn-top {
    margin-top: 8vw;
  }
}
.movie__btn-top:not(:first-of-type) {
  margin-top: 0.2604166667vw;
}
@media screen and (max-width: 768px) {
  .movie__btn-top:not(:first-of-type) {
    margin-top: 0.5333333333vw;
  }
}
.movie__btn-top .--icon {
  width: 4.6875vw;
}
@media screen and (max-width: 768px) {
  .movie__btn-top .--icon {
    width: 9.3333333333vw;
  }
}
.movie__text {
  display: block;
  background-color: #000;
  color: #fff;
  font-size: 1.0416666667vw;
  padding: 0.2604166667vw 0.5208333333vw;
}
@media screen and (max-width: 768px) {
  .movie__text {
    font-size: 2.6666666667vw;
    padding: 0.2666666667vw 0.8vw;
  }
}

.tour {
  padding-top: 8.3333333333vw;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .tour {
    padding-top: 21.3333333333vw;
  }
}
.tour .section-title::after {
  width: 31.25vw;
  height: 1.0416666667vw;
}
@media screen and (max-width: 768px) {
  .tour .section-title::after {
    width: 53.3333333333vw;
    height: 5.3333333333vw;
  }
}
.tour__logo {
  margin-top: 3.125vw;
  padding: 3.125vw 0;
  border-top: 1px solid #3E3E3E;
  border-bottom: 1px solid #3E3E3E;
}
@media screen and (max-width: 768px) {
  .tour__logo {
    margin-top: 8vw;
    padding: 8vw 0;
  }
}
.tour__logo-img {
  max-width: 23.6458333333vw;
}
@media screen and (max-width: 768px) {
  .tour__logo-img {
    max-width: 56vw;
  }
}
.tour__date-top {
  margin-top: 3.125vw;
  font-size: 1.25vw;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .tour__date-top {
    margin-top: 8vw;
    font-size: 3.7333333333vw;
  }
}
.tour__btn-ac {
  margin-top: 3.125vw;
  display: block;
  width: 100%;
  padding: 1.1979166667vw 1.0416666667vw;
  background-color: #F7F8F9;
  border: 1px solid #000;
  font-size: 1.25vw;
  font-weight: 500;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .tour__btn-ac {
    margin-top: 10.6666666667vw;
    padding: 3.7333333333vw 4vw;
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .tour__btn-ac:first-of-type {
    margin-top: 8vw;
  }
}
.tour__btn-ac .--icon {
  transition: transform 0.3s;
  display: inline-block;
}
.tour__item {
  margin-top: 1.5625vw;
}
@media screen and (max-width: 768px) {
  .tour__item {
    margin-top: 0;
  }
}
.tour__item-label {
  display: flex;
  align-items: center;
  padding-bottom: 0.5208333333vw;
  border-bottom: 1px solid #3E3E3E;
}
@media screen and (max-width: 768px) {
  .tour__item-label {
    display: none;
  }
}
.tour__item-label .--date, .tour__item-label .--start, .tour__item-label .--venue {
  display: block;
  font-size: 0.8333333333vw;
  color: #9B9B9B;
  line-height: 1.8;
}
.tour__item-label .--date {
  width: 19.7115384615%;
}
.tour__item-label .--start {
  width: 19.4230769231%;
}
.tour__item-label .--venue {
  width: 60.8653846154%;
}
.tour__item-body {
  display: flex;
  align-items: center;
  padding: 1.5625vw 0;
  border-bottom: 1px solid #3E3E3E;
}
@media screen and (max-width: 768px) {
  .tour__item-body {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3.4666666667vw 6.6666666667vw;
    padding: 5.3333333333vw 0 4vw;
  }
}
.tour__item-body .--date {
  width: 19.7115384615%;
  font-size: 2.2916666667vw;
  line-height: 1;
  display: block;
}
@media screen and (max-width: 768px) {
  .tour__item-body .--date {
    width: 42.6666666667vw;
    font-size: 6.4vw;
    display: flex;
    align-items: center;
  }
}
.tour__item-body .--date .--small {
  font-size: 0.8333333333vw;
}
@media screen and (max-width: 768px) {
  .tour__item-body .--date .--small {
    font-size: 3.2vw;
  }
}
.tour__item-body .--start {
  width: 19.4230769231%;
  font-size: 1.25vw;
  line-height: 1;
  display: block;
}
@media screen and (max-width: 768px) {
  .tour__item-body .--start {
    width: 21.3333333333vw;
    font-size: 3.7333333333vw;
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .tour__item-body .--start .tour__label {
    width: 11.4666666667vw;
  }
}
.tour__item-body .--venue {
  width: 60.8653846154%;
  font-size: 1.25vw;
  line-height: 1.8;
  display: block;
}
@media screen and (max-width: 768px) {
  .tour__item-body .--venue {
    width: 100%;
    padding-top: 3.4666666667vw;
    border-top: 1px dashed #9B9B9B;
    font-size: 3.7333333333vw;
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .tour__label {
    font-size: 2.6666666667vw;
    color: #9B9B9B;
    width: 14.1333333333vw;
    flex: 0 0 auto;
  }
}
.tour__info {
  margin-top: 5.2083333333vw;
}
@media screen and (max-width: 768px) {
  .tour__info {
    margin-top: 16vw;
  }
}
.tour__info-title {
  font-size: 2.2916666667vw;
  line-height: 1;
  padding-left: 2.0833333333vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .tour__info-title {
    font-size: 5.3333333333vw;
    padding-left: 6.6666666667vw;
  }
}
.tour__info-title::after {
  content: "";
  width: 1.0416666667vw;
  height: 3.125vw;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .tour__info-title::after {
    width: 2.6666666667vw;
    height: 10.4vw;
  }
}
.tour__info-desc {
  margin-top: 2.0833333333vw;
  font-size: 1.0416666667vw;
}
@media screen and (max-width: 768px) {
  .tour__info-desc {
    margin-top: 6.6666666667vw;
    font-size: 4.2666666667vw;
  }
}
.tour__info-dl {
  margin-top: 2.0833333333vw;
}
@media screen and (max-width: 768px) {
  .tour__info-dl {
    margin-top: 6.6666666667vw;
  }
}
.tour__info-dl dt {
  padding: 0.3125vw 0.78125vw 0.2604166667vw;
  font-size: 1.0416666667vw;
  border: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .tour__info-dl dt {
    padding: 1.6vw 4vw 1.3333333333vw;
    font-size: 3.7333333333vw;
  }
}
.tour__info-dl dd {
  margin-top: 1.0416666667vw;
}
@media screen and (max-width: 768px) {
  .tour__info-dl dd {
    margin-top: 4vw;
  }
}
.tour__info-dl dd span {
  display: block;
  font-size: 0.9375vw;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .tour__info-dl dd span {
    font-size: 3.2vw;
  }
}
.tour__info-btn {
  display: block;
  margin-top: 2.0833333333vw;
  padding: 1.3020833333vw;
  background-color: #000;
  color: #fff;
  font-size: 0.9375vw;
  line-height: 1.8;
  font-weight: bold;
  text-align: center;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .tour__info-btn {
    margin-top: 6.6666666667vw;
    padding: 4vw;
    font-size: 3.7333333333vw;
    border-radius: 2px;
  }
}

.area-bottom {
  margin-top: 2.0833333333vw;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .area-bottom {
    margin-top: 5.3333333333vw;
  }
}
.area-bottom__body {
  display: flex;
  gap: 0.2604166667vw;
}
@media screen and (max-width: 768px) {
  .area-bottom__body {
    gap: 0.5333333333vw;
  }
}
.area-bottom__body .--square {
  width: 13.0208333333vw;
  height: 13.0208333333vw;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .area-bottom__body .--square {
    width: 21.8666666667vw;
    height: 21.8666666667vw;
  }
}

.area-sns {
  margin-top: 2.0833333333vw;
  background-color: #000;
  position: relative;
  z-index: 5;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .area-sns {
    margin-top: 5.3333333333vw;
    border-radius: 2px;
  }
}
.area-sns__body {
  padding: 1.3541666667vw 2.0833333333vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .area-sns__body {
    padding: 3.4666666667vw 4vw;
  }
}
.area-sns__title {
  font-size: 0.9375vw;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .area-sns__title {
    font-size: 3.7333333333vw;
  }
}
.area-sns__list {
  display: flex;
  align-items: center;
  gap: 1.0416666667vw;
}
@media screen and (max-width: 768px) {
  .area-sns__list {
    gap: 2.6666666667vw;
  }
}
.area-sns__list a {
  display: block;
  width: 2.6041666667vw;
}
@media screen and (max-width: 768px) {
  .area-sns__list a {
    width: 8vw;
  }
}

.fadeUp {
  transition: opacity 1s cubic-bezier(0.5, 1, 0.89, 1), transform 1s cubic-bezier(0.5, 1, 0.89, 1);
  opacity: 0;
  transform: translateY(20px);
}
.fadeUp.on {
  opacity: 1;
  transform: inherit;
}/*# sourceMappingURL=base.css.map */