@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;
}

body {
  -webkit-text-size-adjust: 100%;
  font-size: 1.6rem;
  line-height: 1.4375;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  background-color: #F8F8F8;
  color: #343630;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
body.on {
  overflow: hidden;
}

img {
  pointer-events: none;
}

.font-en {
  font-family: "Lato", serif;
}

.font-noto {
  font-family: "Noto Sans JP", serif;
}

ul {
  list-style: none;
}

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

img {
  width: 100%;
  height: auto;
}

/* デフォルトの三角形アイコンを非表示にする */
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;
  }
}
.inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 5.3333333333vw;
  }
}

#wrapper {
  overflow: hidden;
  position: relative;
}
#wrapper > .line-body {
  width: 1px;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  z-index: -1;
  opacity: 0.1;
}
#wrapper > .line-body:first-of-type {
  left: calc(50% - 371px);
}
@media screen and (max-width: 1400px) {
  #wrapper > .line-body:first-of-type {
    left: 25vw;
  }
}
#wrapper > .line-body:nth-of-type(2) {
  left: 50%;
}
#wrapper > .line-body:nth-of-type(3) {
  right: calc(50% - 371px);
}
@media screen and (max-width: 1400px) {
  #wrapper > .line-body:nth-of-type(3) {
    right: 25vw;
  }
}

.header {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .header {
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.6666666667vw 3.7333333333vw;
    background-color: rgba(248, 248, 248, 0.7);
    transition: background-color 0.3s;
  }
}
@media screen and (max-width: 768px) {
  .header.on {
    background-color: transparent;
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 35.7333333333vw;
  }
}
.header__btn {
  display: block;
  width: 70px;
  height: 28px;
  background-color: #fff;
  border-radius: 4px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header__btn {
    width: 16.2666666667vw;
    height: 7.4666666667vw;
    border-radius: 1.0666666667vw;
  }
}
.header__btn.on {
  border: 1px solid #000;
}
.header__btn.on .header__line {
  top: 50%;
  left: 50%;
}
.header__btn.on .header__line:first-of-type {
  transform: translate(-50%, -50%) rotate(20deg);
}
.header__btn.on .header__line:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(-20deg);
}
.header__line {
  width: 26px;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s;
}
@media screen and (max-width: 768px) {
  .header__line {
    width: 6.9333333333vw;
  }
}
.header__line:first-of-type {
  top: calc(50% - 3px);
}
@media screen and (max-width: 768px) {
  .header__line:first-of-type {
    top: calc(50% - 0.8vw);
  }
}
.header__line:nth-of-type(2) {
  top: calc(50% + 3px);
}
@media screen and (max-width: 768px) {
  .header__line:nth-of-type(2) {
    top: calc(50% + 0.8vw);
  }
}

.g-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  height: 100%;
  border-left: 1px solid #343630;
  background-color: #F8F8F8;
  transform: translateX(30%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.2s, opacity 0.2s;
}
.g-menu.on {
  transform: inherit;
  opacity: 1;
  pointer-events: inherit;
}
.g-menu__inner {
  padding: 89px 30px;
}
@media screen and (max-width: 768px) {
  .g-menu__inner {
    padding: 21.3333333333vw 8vw;
  }
}
.g-menu__list li:not(:first-of-type) {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .g-menu__list li:not(:first-of-type) {
    margin-top: 5.3333333333vw;
  }
}
.g-menu__list li a {
  display: block;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .g-menu__list li a {
    font-size: 4.8vw;
  }
}

.footer {
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 5.3333333333vw 0;
  }
}
.footer__copyright {
  font-weight: bold;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 2.6666666667vw;
    text-align: center;
  }
}

.op {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F8F8F8;
  z-index: 150;
}
.op__skip {
  padding: 5px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  position: absolute;
  top: 5px;
  left: 5px;
  border: 1px solid #343630;
  border-radius: 4px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .op__skip {
    padding: 0.5333333333vw 6.6666666667vw;
    font-size: 4.8vw;
    top: 1.3333333333vw;
    left: 1.3333333333vw;
    border-radius: 1.0666666667vw;
  }
}
.op__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.op__img > div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 41.640625vw;
  aspect-ratio: 932/1400;
  transition: transform 0.3s, width 0.3s, opacity 0.3s;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .op__img > div {
    width: 104vw;
  }
}
.op__img > div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 5px solid #000;
}
.op__img > div:first-of-type {
  transform: translate(-50%, -50%) rotate(55deg) scale(1.2);
  transition-delay: 0.2s;
}
.op__img > div:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(45deg) scale(1.2);
  width: 38.90625vw;
  transition-delay: 1s;
}
@media screen and (max-width: 768px) {
  .op__img > div:nth-of-type(2) {
    width: 97.3333333333vw;
  }
}
.op__img > div:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(35deg) scale(1.2);
  width: 36.25vw;
  transition-delay: 1.7s;
}
@media screen and (max-width: 768px) {
  .op__img > div:nth-of-type(3) {
    width: 90.4vw;
  }
}
.op__img > div:nth-of-type(4) {
  transform: translate(-50%, -50%) rotate(25deg) scale(1.2);
  width: 32.578125vw;
  transition-delay: 2s;
}
@media screen and (max-width: 768px) {
  .op__img > div:nth-of-type(4) {
    width: 81.3333333333vw;
  }
}
.op__img > div:nth-of-type(5) {
  transform: translate(-50%, -50%) rotate(15deg) scale(1.2);
  width: 27.65625vw;
  transition-delay: 2.3s;
}
@media screen and (max-width: 768px) {
  .op__img > div:nth-of-type(5) {
    width: 69.0666666667vw;
  }
}
.op__img > div:nth-of-type(6) {
  transform: translate(-50%, -50%) rotate(5deg) scale(1.2);
  width: 22.421875vw;
  transition-delay: 2.5s;
}
@media screen and (max-width: 768px) {
  .op__img > div:nth-of-type(6) {
    width: 56vw;
  }
}
.op__copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  opacity: 0;
  transition: transform 0.7s 5.2s, opacity 0.7s 5.2s;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 768px) {
  .op__copy {
    width: 100%;
  }
}
.op__copy-top {
  font-size: 3.6rem;
  color: #343630;
}
@media screen and (max-width: 768px) {
  .op__copy-top {
    font-size: 6.4vw;
  }
}
.op__copy-top .small {
  display: block;
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: -5px;
}
@media screen and (max-width: 768px) {
  .op__copy-top .small {
    font-size: 2.6666666667vw;
    margin-bottom: -1.3333333333vw;
  }
}
.op__copy-bottom {
  display: block;
  margin-top: 20px;
  font-size: 6.4rem;
}
@media screen and (max-width: 768px) {
  .op__copy-bottom {
    margin-top: 5.3333333333vw;
    font-size: 8.5333333333vw;
  }
}
.op__copy-bottom .small {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: bold;
  color: #5A5E53;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .op__copy-bottom .small {
    font-size: 2.9333333333vw;
  }
}
.op__copy-bottom .middle {
  display: block;
  font-size: 2.4rem;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .op__copy-bottom .middle {
    font-size: 4.2666666667vw;
    text-align: center;
  }
}
.op.on .op__img {
  opacity: 0;
  transform: scale(0.8);
  filter: blur(20px);
  transition: opacity 2s, transform 2s, filter 2s;
  transition-delay: 4.2s;
}
.op.on .op__img div {
  opacity: 1;
}
.op.on .op__img div:first-of-type {
  transform: translate(-50%, -50%) rotate(50deg);
}
.op.on .op__img div:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(40deg);
}
.op.on .op__img div:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(30deg);
}
.op.on .op__img div:nth-of-type(4) {
  transform: translate(-50%, -50%) rotate(20deg);
}
.op.on .op__img div:nth-of-type(5) {
  transform: translate(-50%, -50%) rotate(10deg);
}
.op.on .op__img div:nth-of-type(6) {
  transform: translate(-50%, -50%) rotate(0deg);
}
.op.on .op__copy {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.mv {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.mv__logo {
  width: 159px;
  position: absolute;
  top: 17px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.mv__copy {
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translate(-100%, -50%);
  left: calc(50% - 270px);
  color: #000;
}
@media screen and (max-width: 1280px) {
  .mv__copy {
    left: 0;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 768px) {
  .mv__copy {
    top: inherit;
    left: inherit;
    bottom: 82px;
    right: 5.0666666667vw;
    text-align: right;
    transform: inherit;
    text-shadow: 0 2px 2px #fff;
  }
}
.mv__copy-top {
  font-size: min(2.8125vw, 3.6rem);
  color: #343630;
}
@media screen and (max-width: 768px) {
  .mv__copy-top {
    font-size: 6.4vw;
  }
}
.mv__copy-top .small {
  display: block;
  font-weight: 500;
  margin-bottom: -8px;
  font-size: min(1.015625vw, 1.3rem);
}
@media screen and (max-width: 768px) {
  .mv__copy-top .small {
    font-size: 2.6666666667vw;
    margin-bottom: -3.2vw;
  }
}
.mv__copy-bottom {
  display: block;
  margin-top: 20px;
  font-size: min(5vw, 6.4rem);
}
@media screen and (max-width: 768px) {
  .mv__copy-bottom {
    margin-top: 5.3333333333vw;
    font-size: 8.5333333333vw;
    position: relative;
    left: 4vw;
  }
}
.mv__copy-bottom .small {
  display: block;
  font-size: min(1.40625vw, 1.8rem);
  line-height: 1;
  font-weight: bold;
  color: #5A5E53;
  text-align: center;
  margin-bottom: -5px;
}
@media screen and (max-width: 768px) {
  .mv__copy-bottom .small {
    font-size: 2.9333333333vw;
    margin-bottom: -0.5333333333vw;
  }
}
.mv__copy-bottom .middle {
  display: block;
  font-size: min(1.875vw, 2.4rem);
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .mv__copy-bottom .middle {
    font-size: 4.2666666667vw;
    text-align: center;
  }
}
.mv__img {
  width: 66.3888888889%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .mv__img {
    width: 50.4vw;
    height: 50.4vw;
    top: 53.3333333333vw;
    left: 5.6vw;
  }
}
.mv__img > div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(41.640625vw, 533px);
  aspect-ratio: 932/1400;
  transition: transform 0.5s, width 0.5s;
}
@media screen and (max-width: 768px) {
  .mv__img > div {
    width: 98.9333333333vw;
  }
}
.mv__img > div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 5px solid #000;
}
.mv__img > div:first-of-type {
  transform: translate(-50%, -50%) rotate(50deg);
}
.mv__img > div:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(40deg);
  width: min(38.90625vw, 498px);
}
@media screen and (max-width: 768px) {
  .mv__img > div:nth-of-type(2) {
    width: 93.0666666667vw;
  }
}
.mv__img > div:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(30deg);
  width: min(36.25vw, 464px);
}
@media screen and (max-width: 768px) {
  .mv__img > div:nth-of-type(3) {
    width: 86.9333333333vw;
  }
}
.mv__img > div:nth-of-type(4) {
  transform: translate(-50%, -50%) rotate(20deg);
  width: min(32.578125vw, 417px);
}
@media screen and (max-width: 768px) {
  .mv__img > div:nth-of-type(4) {
    width: 78.6666666667vw;
  }
}
.mv__img > div:nth-of-type(5) {
  transform: translate(-50%, -50%) rotate(10deg);
  width: min(27.65625vw, 354px);
}
@media screen and (max-width: 768px) {
  .mv__img > div:nth-of-type(5) {
    width: 67.7333333333vw;
  }
}
.mv__img > div:nth-of-type(6) {
  transform: translate(-50%, -50%) rotate(0deg);
  width: min(22.421875vw, 287px);
}
@media screen and (max-width: 768px) {
  .mv__img > div:nth-of-type(6) {
    width: 56vw;
  }
}
.mv__news {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  height: 60px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  background-color: #F8F8F8;
}
@media screen and (max-width: 768px) {
  .mv__news {
    height: 46px;
  }
}
.mv__news-title {
  flex: 0 0 auto;
  width: 97px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #000;
  color: #000;
}
@media screen and (max-width: 768px) {
  .mv__news-title {
    width: 70px;
  }
}
.mv__news-body {
  display: flex;
  align-items: center;
  padding: 0 14px;
  overflow: hidden;
}
.mv__news-body > div {
  animation: scroll-left 40s linear infinite;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
}
.mv__news-body > div > div {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 11px;
  padding-right: 20px;
}
.mv__news-body > div .date {
  font-size: 1.2rem;
  padding: 6px 12px;
  border: 1px solid #000;
  border-radius: 30px;
}
.mv__news-body > div .detail {
  font-size: 1.5rem;
  white-space: nowrap;
  color: #000;
}
.mv__news-body > div .detail a {
  text-decoration: underline;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.area {
  padding: 110px 0 120px;
}
@media screen and (max-width: 768px) {
  .area {
    padding: 18.6666666667vw 0;
  }
}
.area:not(:last-of-type) {
  border-bottom: 1px solid #000;
}
.area h2 {
  font-size: min(8vw, 9.6rem);
  color: #000;
}
@media screen and (max-width: 768px) {
  .area h2 {
    font-size: 9.3333333333vw;
  }
}

.subscription__player {
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
}
@media screen and (max-width: 768px) {
  .subscription__player {
    margin-top: 10.6666666667vw;
    gap: 5.3333333333vw;
    flex-direction: column;
    max-width: 450px;
  }
}
.subscription__player > div {
  width: calc(50% - 10px);
}
@media screen and (max-width: 768px) {
  .subscription__player > div {
    width: 100%;
  }
}
.subscription__player-icon img {
  max-width: 150px;
  margin: 0 auto 10px;
}
@media screen and (max-width: 768px) {
  .subscription__player-icon img {
    max-width: 26.6666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}
.subscription__box {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 30px auto 0;
  max-width: 900px;
}
@media screen and (max-width: 768px) {
  .subscription__box {
    gap: 2.6666666667vw;
    margin-top: 8vw;
    max-width: 100%;
  }
}
.subscription__box a {
  background-color: #333;
  display: block;
  width: calc(25% - 3.75px);
}
@media screen and (max-width: 768px) {
  .subscription__box a {
    width: calc(50% - 1.3333333333vw);
  }
}
.subscription__box a.--musicjp {
  display: flex;
  justify-content: center;
  align-items: center;
}
.subscription__box a.--musicjp img {
  width: 80%;
}
.subscription__bottom {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .subscription__bottom {
    margin-top: 10.6666666667vw;
  }
}
.subscription__bottom h3 {
  font-size: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .subscription__bottom h3 {
    font-size: 5.0666666667vw;
  }
}
.subscription__btn {
  font-size: 2.4rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 350px;
  max-width: 100%;
  padding: 10px 10px;
  border-radius: 80px;
  border: 2px solid #343630;
  background-color: #F8F8F8;
  margin: 10px auto 0;
}
@media screen and (max-width: 768px) {
  .subscription__btn {
    font-size: 5.3333333333vw;
    width: 66.6666666667vw;
    padding-inline: 2.6666666667vw;
    border-radius: 21.3333333333vw;
    margin-top: 5.3333333333vw;
  }
}
.subscription__btn:hover {
  opacity: 1;
  background-color: #343630;
  color: #fff;
}

.intro__desc {
  margin: 30px auto 0;
  max-width: 785px;
}
@media screen and (max-width: 768px) {
  .intro__desc {
    margin-top: 8vw;
    max-width: 100%;
    font-size: 4.2666666667vw;
  }
}

.release h2 {
  text-align: center;
}
.release h2 .small {
  display: block;
  line-height: 1.2;
  font-size: 4.8rem;
  color: #343630;
}
@media screen and (max-width: 768px) {
  .release h2 .small {
    font-size: 5.3333333333vw;
  }
}
.release__list {
  margin: 50px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .release__list {
    margin-top: 10.6666666667vw;
    gap: 10.6666666667vw;
  }
}
.release__list li {
  width: calc(33.3333333333% - 13.3333333333px);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .release__list li {
    width: 100%;
  }
}
.release__list li h3 {
  font-size: 3.2rem;
  margin-bottom: 10px;
  text-align: center;
  min-height: 75px;
}
@media screen and (max-width: 768px) {
  .release__list li h3 {
    font-size: 7.4666666667vw;
    margin-bottom: 2.6666666667vw;
    min-height: auto;
  }
}
.release__list li h3 .small {
  display: block;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .release__list li h3 .small {
    font-size: 4.8vw;
  }
}
@media screen and (max-width: 768px) {
  .release__list li p {
    font-size: 4.2666666667vw;
  }
}
.release__img {
  margin-bottom: 20px;
  height: min(28.9705882353vw, 394px);
}
@media screen and (max-width: 768px) {
  .release__img {
    margin-bottom: 5.3333333333vw;
    height: auto;
  }
}
.release__info-top {
  min-height: 55px;
}
@media screen and (max-width: 1060px) {
  .release__info-top {
    min-height: 110px;
  }
}
@media screen and (max-width: 768px) {
  .release__info-top {
    min-height: auto;
  }
}
.release__info-top > div {
  display: flex;
  align-items: center;
  gap: 5px 10px;
}
@media screen and (max-width: 1060px) {
  .release__info-top > div {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .release__info-top > div {
    flex-direction: row;
    align-items: center;
    gap: 2.6666666667vw;
  }
}
.release__info-top > div:not(:first-of-type) {
  margin-top: 5px;
}
@media screen and (max-width: 1060px) {
  .release__info-top > div:not(:first-of-type) {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .release__info-top > div:not(:first-of-type) {
    margin-top: 1.3333333333vw;
  }
}
.release__info-top dt {
  font-size: 1.2rem;
  padding: 3px 5px;
  border: 1px solid #343630;
  border-radius: 50px;
  text-align: center;
  min-width: 100px;
  background-color: #F8F8F8;
}
@media screen and (max-width: 768px) {
  .release__info-top dt {
    font-size: 3.2vw;
    padding: 0.8vw 1.3333333333vw;
    min-width: 24vw;
    border-radius: 13.3333333333vw;
  }
}
.release__info-top dd {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .release__info-top dd {
    font-size: 3.7333333333vw;
  }
}
.release__point-height {
  margin: 20px 0;
  min-height: 80px;
}
@media screen and (max-width: 768px) {
  .release__point-height {
    margin: 5.3333333333vw 0;
    min-height: auto;
  }
}
.release__point {
  font-size: 1.4rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .release__point {
    font-size: 3.7333333333vw;
  }
}
.release__track-height {
  min-height: 70px;
}
@media screen and (max-width: 768px) {
  .release__track-height {
    min-height: auto;
  }
}
.release__track {
  display: block;
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .release__track {
    font-size: 4.2666666667vw;
  }
}
.release__tokuten {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .release__tokuten {
    font-size: 4.2666666667vw;
    margin-top: 5.3333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
.release__tokuten-img {
  width: 80%;
  max-width: 100%;
  margin: 0 auto;
}
.release__btn {
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 250px;
  max-width: 100%;
  padding: 5px 10px;
  border-radius: 80px;
  border: 2px solid #343630;
  background-color: #F8F8F8;
  margin: 20px auto 0;
}
@media screen and (max-width: 768px) {
  .release__btn {
    font-size: 4.8vw;
    width: 66.6666666667vw;
    padding-inline: 2.6666666667vw;
    border-radius: 21.3333333333vw;
    margin-top: 5.3333333333vw;
  }
}
.release__btn:hover {
  opacity: 1;
  background-color: #343630;
  color: #fff;
}
.release__btn + .release__btn {
  margin-top: 7px;
}
@media screen and (max-width: 768px) {
  .release__btn + .release__btn {
    margin-top: 1.8666666667vw;
  }
}
.release__caution {
  display: block;
  font-size: 1.2rem;
  margin: 30px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .release__caution {
    font-size: 2.6666666667vw;
    margin-top: 8vw;
    width: 100%;
  }
}

.live .inner {
  display: flex;
}
@media screen and (max-width: 768px) {
  .live .inner {
    flex-direction: column;
  }
}
.live__title {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .live__title {
    width: 100%;
  }
}
.live h2 {
  padding-right: 10px;
}
@media screen and (max-width: 768px) {
  .live h2 {
    text-align: center;
    padding-right: 0;
  }
}
.live h2 img {
  max-width: min(55.4vw, 554px);
  width: 100%;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .live h2 img {
    width: 100%;
    max-width: 100%;
    margin: 2.6666666667vw auto 0;
  }
}
.live__body {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .live__body {
    width: 100%;
    margin-top: 13.3333333333vw;
  }
}
.live__body > div {
  padding: 33px 0;
}
@media screen and (max-width: 768px) {
  .live__body > div {
    padding: 6.6666666667vw 0;
  }
}
.live__body > div:first-of-type {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .live__body > div:first-of-type {
    padding-top: 0;
  }
}
.live__body > div:last-of-type {
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .live__body > div:last-of-type {
    padding-bottom: 0;
  }
}
.live__body > div:not(:first-of-type) {
  border-top: 1px solid #5A5E53;
}
.live__body > div > div {
  margin-top: 2px;
}
@media screen and (max-width: 768px) {
  .live__body > div > div {
    margin-top: 1.3333333333vw;
  }
}
.live__body-top {
  display: block;
  color: #000;
  font-size: min(2.8vw, 2.8rem);
}
@media screen and (max-width: 768px) {
  .live__body-top {
    font-size: 5.3333333333vw;
  }
}
.live__body-bottom {
  display: block;
  margin-top: 20px;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .live__body-bottom {
    margin-top: 5.3333333333vw;
    font-size: 4.2666666667vw;
  }
}
.live__body-bottom + .live__body-bottom {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .live__body-bottom + .live__body-bottom {
    margin-top: 5.3333333333vw;
  }
}

@media screen and (max-width: 768px) {
  .profile {
    padding-bottom: 0;
  }
}
.profile .inner {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  padding: 0;
  max-width: 1160px;
}
@media screen and (max-width: 768px) {
  .profile .inner {
    flex-direction: column;
    gap: 8vw;
    max-width: 100%;
  }
}
.profile__img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .profile__img {
    width: 100%;
  }
}
.profile__box {
  max-width: 680px;
  aspect-ratio: 680/1019;
  position: relative;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .profile__box {
    max-width: 100%;
  }
}
.profile__box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 1.5s, filter 1.5s;
}
.profile__box img.on {
  opacity: 1;
  filter: blur(0);
}
.profile__body {
  width: 50%;
  padding-left: 60px;
  padding-right: 20px;
}
@media screen and (max-width: 1400px) {
  .profile__body {
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .profile__body {
    width: 100%;
    padding: 0 5.3333333333vw;
  }
}
.profile__desc {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .profile__desc {
    margin-top: 6.6666666667vw;
  }
}
.profile__desc > p {
  font-size: 1.8rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .profile__desc > p {
    font-size: 4.2666666667vw;
  }
}
.profile__btn-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 5px 20px;
  margin: 20px 0 10px;
  border: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .profile__btn-slide {
    padding: 1.8666666667vw 6.6666666667vw;
    margin: 5.3333333333vw 0 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
.profile__btn-slide.on span {
  transform: rotate(180deg);
}
.profile__btn-slide span {
  transition: transform 0.3s;
}
.profile__slide {
  display: none;
}
.profile__slide > p {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .profile__slide > p {
    font-size: 3.7333333333vw;
  }
}
.profile__slide > p .large {
  font-weight: 500;
}

.sns {
  padding: 50px 0;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .sns {
    padding: 10.6666666667vw 0;
  }
}
.sns h2 {
  font-size: 4.8rem;
  color: #000;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .sns h2 {
    font-size: 8vw;
    margin-bottom: 5.3333333333vw;
  }
}
.sns__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
@media screen and (max-width: 768px) {
  .sns__list {
    gap: 2.6666666667vw;
  }
}
.sns__list.on li {
  opacity: 1;
  transform: inherit;
}
.sns__list li {
  width: calc(25% - 15px);
  transition: opacity 0.15s linear, transform 0.15s linear;
  opacity: 0;
  transform: translateY(-20px) scale(1.1);
}
@media screen and (max-width: 1080px) {
  .sns__list li {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 768px) {
  .sns__list li {
    width: calc(50% - 1.3333333333vw);
  }
}
.sns__list li:first-of-type {
  transition-delay: 0;
}
.sns__list li:nth-of-type(2) {
  transition-delay: 0.18s;
}
.sns__list li:nth-of-type(3) {
  transition-delay: 0.36s;
}
.sns__list li:nth-of-type(4) {
  transition-delay: 0.54s;
}
.sns__list li a {
  display: block;
  border: 1px solid #343630;
  background-color: #fff;
  border-radius: 30px;
  text-align: center;
  padding: 18px 28px;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sns__list li a {
    font-size: 3.4666666667vw;
    padding: 2.6666666667vw 1.3333333333vw 2.6666666667vw 3.2vw;
    border-radius: 13.3333333333vw;
    text-align: left;
  }
}
.sns__list li a:hover {
  background-color: #343630;
  color: #fff;
  text-decoration: underline;
  opacity: 1;
}
.sns__list li a:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(270deg) brightness(102%) contrast(101%);
}
.sns__list li a img {
  width: 20px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .sns__list li a img {
    width: 4vw;
    right: 2.6666666667vw;
  }
}
.sns__list li a img.large {
  width: 24px;
}
@media screen and (max-width: 768px) {
  .sns__list li a img.large {
    width: 5.0666666667vw;
  }
}

.area-share {
  padding: 30px 0;
  background-color: #333;
}
@media screen and (max-width: 768px) {
  .area-share {
    padding: 8vw 0;
  }
}
.area-share .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .area-share .inner {
    gap: 2.6666666667vw;
    flex-direction: column;
  }
}
.area-share h2 {
  font-size: 3.4rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .area-share h2 {
    font-size: 8.5333333333vw;
  }
}
.area-share__list {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .area-share__list {
    gap: 5.3333333333vw;
  }
}
.area-share__list li a {
  display: block;
  width: 50px;
}
@media screen and (max-width: 768px) {
  .area-share__list li a {
    width: 10.6666666667vw;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  display: none;
}
.modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.75);
  cursor: pointer;
}
.modal__body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  max-width: 95vw;
  height: 80vh;
  background-color: #fff;
}
.modal__close {
  font-size: 2.8rem;
  position: absolute;
  bottom: calc(100% + 5px);
  right: 0;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .modal__close {
    font-size: 7.4666666667vw;
    bottom: calc(100% + 1.3333333333vw);
  }
}
.modal__inner {
  padding: 40px 40px;
  width: 100%;
  height: 100%;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  .modal__inner {
    padding: 10.6666666667vw 2.6666666667vw;
  }
}
.modal h2 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .modal h2 {
    font-size: 6.4vw;
    margin-bottom: 8vw;
  }
}
.modal__box {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .modal__box {
    flex-direction: column;
    gap: 5.3333333333vw;
  }
}
.modal__box > img {
  width: 250px;
  flex: 0 0 auto;
}
@media screen and (max-width: 768px) {
  .modal__box > img {
    width: 100%;
  }
}
.modal__box > div {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 50px 20px;
}
@media screen and (max-width: 768px) {
  .modal__box > div {
    flex-direction: column;
    gap: 8vw;
  }
}
.modal__box > div > div {
  width: calc(50% - 10px);
}
@media screen and (max-width: 768px) {
  .modal__box > div > div {
    width: 100%;
  }
}
.modal__box > div > div p {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .modal__box > div > div p {
    font-size: 3.7333333333vw;
  }
}
.modal__box > div > div p:not(:first-of-type) {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .modal__box > div > div p:not(:first-of-type) {
    margin-top: 2.6666666667vw;
  }
}
.modal__box > div > div ul li {
  font-size: 1.4rem;
  text-indent: -1.3em;
  padding-left: 1.3em;
}
@media screen and (max-width: 768px) {
  .modal__box > div > div ul li {
    font-size: 3.7333333333vw;
  }
}
.modal__box > div > div ul li:not(:first-of-type) {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .modal__box > div > div ul li:not(:first-of-type) {
    margin-top: 2.6666666667vw;
  }
}
.modal__text-top {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .modal__text-top {
    font-size: 4.8vw;
    margin-bottom: 2.6666666667vw;
  }
}
.modal__text-small {
  font-size: 1.2rem;
  display: inline-block;
  text-indent: 0;
}
@media screen and (max-width: 768px) {
  .modal__text-small {
    font-size: 3.2vw;
  }
}
.modal__text-detail {
  display: block;
  font-size: 1.2rem;
  letter-spacing: -0.07em;
  text-indent: 0;
}
@media screen and (max-width: 768px) {
  .modal__text-detail {
    font-size: 3.2vw;
    letter-spacing: 0;
  }
}
.modal__text-detail:first-of-type {
  margin-top: 3px;
}
@media screen and (max-width: 768px) {
  .modal__text-detail:first-of-type {
    margin-top: 0.8vw;
  }
}

.fadeUp {
  opacity: 0;
  transform: translateY(40px);
  transition: transform 1s cubic-bezier(0.5, 1, 0.89, 1) 0.3s, opacity 1s cubic-bezier(0.5, 1, 0.89, 1) 0.3s;
}
.fadeUp.on {
  opacity: 1;
  transform: inherit;
}

.text-anim {
  opacity: 0;
  filter: blur(10px);
  transition: filter 1s, opacity 1s;
}
.text-anim.on {
  opacity: 1;
  filter: none;
}

@media screen and (max-width: 768px) {
  .movie .inner {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .movie h2 {
    padding: 0 5.3333333333vw;
  }
}
.movie__box {
  display: block;
  margin: 40px auto 0;
  width: 100%;
  max-width: 785px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .movie__box {
    max-width: 100%;
    margin-top: 5.3333333333vw;
  }
}
.movie__icon {
  width: 91px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .movie__icon {
    width: 16vw;
  }
}

.modal-movie {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 101;
}
.modal-movie__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}
.modal-movie__close {
  position: absolute;
  bottom: calc(100% + 3px);
  right: 0;
  font-size: 2.4rem;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .modal-movie__close {
    font-size: 4.8vw;
    right: 1.3333333333vw;
  }
}
.modal-movie__box {
  aspect-ratio: 16/9;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .modal-movie__box {
    max-width: 100%;
  }
}
.modal-movie__box iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.howto__title {
  margin-top: 50px;
  font-size: 3.6rem;
  text-align: center;
  line-height: 1.5;
  font-weight: bold;
  color: #333;
}
@media screen and (max-width: 768px) {
  .howto__title {
    text-align: center !important;
    margin-top: 13.3333333333vw;
    font-size: 6.9333333333vw;
  }
}
.howto__subtitle {
  font-size: 2rem;
  text-align: center;
  margin-top: 30px;
  color: #333;
}
@media screen and (max-width: 768px) {
  .howto__subtitle {
    font-size: 4.2666666667vw;
    margin-top: 8vw;
  }
}
.howto__top {
  font-size: 1.8rem;
  margin-top: 20px;
  font-weight: bold;
  text-align: center;
  color: #333;
}
@media screen and (max-width: 768px) {
  .howto__top {
    font-size: 3.7333333333vw;
    margin-top: 5.3333333333vw;
  }
}
.howto__btn {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .howto__btn {
    margin-top: 1.3333333333vw;
    gap: 2.6666666667vw;
  }
}
.howto__btn li a {
  display: block;
  height: 60px;
}
@media screen and (max-width: 768px) {
  .howto__btn li a {
    height: 10.6666666667vw;
  }
}
.howto__btn li a img {
  height: 100%;
  width: auto;
}
.howto__desc {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  width: -moz-fit-content;
  width: fit-content;
  margin: 15px auto 0;
  color: #333;
}
@media screen and (max-width: 768px) {
  .howto__desc {
    font-size: 3.2vw;
    margin-top: 2.6666666667vw;
  }
}
.howto__caution {
  max-width: 100%;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.4rem;
  margin: 40px auto;
  text-indent: -1em;
  padding-left: 1em;
  color: #333;
}
@media screen and (max-width: 768px) {
  .howto__caution {
    margin: 10.6666666667vw auto;
    font-size: 3.2vw;
    padding: 0 10.6666666667vw;
  }
}
.howto__bottom {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .howto__bottom {
    margin-top: 13.3333333333vw;
  }
}
.howto__bottom dl:not(:first-of-type) {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .howto__bottom dl:not(:first-of-type) {
    margin-top: 8vw;
  }
}
.howto__bottom dl dt {
  font-size: 2.4rem;
  font-weight: bold;
  color: #0081C9;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .howto__bottom dl dt {
    font-size: 4.8vw;
  }
}
.howto__bottom dl dd {
  margin-top: 15px;
  padding: 15px 20px;
  background-color: #fff0f5;
  border-radius: 5px;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .howto__bottom dl dd {
    margin-top: 2.6666666667vw;
    padding: 2.6666666667vw;
    border-radius: 2.6666666667vw;
    font-size: 3.2vw;
  }
}
.howto__bottom dl dd ul li {
  line-height: 1.5;
  text-indent: -1em;
  padding-left: 1em;
}
.howto__bottom-btn {
  width: 600px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  background-color: #005DA1;
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  .howto__bottom-btn {
    width: 100%;
    min-height: 13.3333333333vw;
    padding: 1.3333333333vw 1.3333333333vw;
    margin-top: 8vw;
    font-size: 3.7333333333vw;
  }
}
.howto__img-top, .howto__img01, .howto__img02, .howto__img03 {
  display: block;
  width: 100%;
  max-inline-size: none;
}
.howto__img01 {
  margin-top: 50px;
}
@media screen and (max-width: 769px) {
  .howto__img01 {
    margin-top: 13.3333333333vw;
  }
}
.howto__btn-bottom {
  margin: 60px auto 120px;
}
@media screen and (max-width: 769px) {
  .howto__btn-bottom {
    margin-top: 10.6666666667vw;
    margin-bottom: 26.6666666667vw;
  }
}
.howto__btn-bottom a {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto;
  border-radius: 50px;
  padding: 13px 100px;
  font-size: 2.4rem;
  font-weight: bold;
  border: 1px solid #333;
  text-align: center;
}
@media screen and (max-width: 769px) {
  .howto__btn-bottom a {
    border-radius: 13.3333333333vw;
    padding: 4vw 5.3333333333vw;
    width: calc(100% - 10.6666666667vw);
    font-size: 4.8vw;
  }
}/*# sourceMappingURL=base.css.map */