@charset "UTF-8";
@keyframes loop_circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loop_circle2 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes shootingStar-slide {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  15% {
    opacity: 0;
  }
  20% {
    transform: translateY(600px);
  }
  100% {
    opacity: 0;
    transform: translateY(600px);
  }
}
@keyframes shootingStar-slide-sp {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  15% {
    opacity: 0;
  }
  20% {
    transform: translateY(150px);
  }
  100% {
    opacity: 0;
    transform: translateY(150px);
  }
}
@keyframes loopTitle {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes down_animation {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(88px);
    opacity: 0;
  }
}
@keyframes down_animation-scale {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes top_logo {
  0% {
    transform: rotateY(400deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
@keyframes modal_fadein {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes modal_fadein-line {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes modal_fadein-scale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.p-disco__inner {
  margin: 0 auto;
  width: 90%;
  max-width: 1200px;
}
.p-disco__list {
  display: flex;
  flex-wrap: wrap;
  transform: translateY(18px);
  opacity: 0;
}
.is-load .p-disco__list {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.5s;
}
.p-disco__list-item {
  width: 31.3%;
  margin-right: 3%;
  margin-bottom: 2.8%;
}
@media screen and (min-width: 900px) {
  .p-disco__list-item:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 899px) {
  .p-disco__list-item {
    width: 47.5%;
    margin-right: 4.5%;
    margin-bottom: 8%;
  }
  .p-disco__list-item:nth-child(2n) {
    margin-right: 0;
  }
}
.p-disco__list-item a {
  text-decoration: none;
}
@media screen and (min-width: 900px) {
  .p-disco__list-item a:hover .p-disco__list-thumb-img {
    transform: scale(1.1);
  }
  .p-disco__list-item a:hover .p-disco__list-ttl {
    color: #ffbc98;
  }
}
.p-disco__list-thumb {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background-color: rgba(5, 20, 61, 0.8);
  overflow: hidden;
}
.p-disco__list-thumb-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}
.p-disco__list-ttl {
  color: #fff;
  margin-top: 16px;
  line-height: 1.6;
  font-family: YakuHanMP, "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  transition: color 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 899px) {
  .p-disco__list-ttl {
    font-size: 12px;
    margin-top: 10px;
    line-height: 1.5;
  }
}
.p-disco__category {
  margin-bottom: 73px;
  transform: translateY(18px);
  opacity: 0;
}
.is-load .p-disco__category {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.3s;
}
@media screen and (max-width: 899px) {
  .p-disco__category {
    margin: 0 auto 34px;
    width: 70%;
  }
}
.p-disco__back {
  margin-top: 118px;
  text-align: center;
  transform: translateY(18px);
  opacity: 0;
}
.p-disco__back.is-active {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}
.p-disco__pager {
  margin-top: 43px;
  transform: translateY(18px);
  opacity: 0;
}
.p-disco__pager.is-active {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 899px) {
  .p-disco__pager {
    margin-top: 9px;
  }
}

.p-disco_detail {
  color: #fff;
  transform: translateY(18px);
  opacity: 0;
}
.is-load .p-disco_detail {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.4s;
}
.p-disco_detail__head {
  line-height: 1.8;
}
@media screen and (max-width: 899px) {
  .p-disco_detail__head {
    font-size: 13px;
    line-height: 1.9;
  }
}
.p-disco_detail__head-ttl {
  margin-bottom: 40px;
  font-family: YakuHanMP, "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  font-size: 28px;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 25px;
}
.p-disco_detail__head a {
  color: #ffbc98;
}
.p-disco_detail__head a u {
  text-decoration: none;
}
@media screen and (min-width: 900px) {
  .p-disco_detail__head a:hover {
    text-decoration: none;
  }
}
.p-disco_detail__head iframe {
  width: 100% !important;
  height: auto !important;
}
@media screen and (min-width: 900px) {
  .p-disco_detail__head iframe {
    max-width: 640px;
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 899px) {
  .p-disco_detail__head iframe {
    height: 51.73vw !important;
  }
}
.p-disco_detail__head img {
  width: auto !important;
  height: auto !important;
}
@media screen and (min-width: 900px) {
  .p-disco_detail__head img {
    max-width: 400px;
  }
}
.p-disco_detail .prize a {
  color: #ffbc98;
}
@media screen and (min-width: 900px) {
  .p-disco_detail .prize a:hover {
    text-decoration: none;
  }
}
.p-disco_detail__detail {
  margin-top: 54px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 899px) {
  .p-disco_detail__detail {
    margin-top: 40px;
    padding-top: 45px;
  }
}
.p-disco_detail__box {
  display: flex;
}
@media screen and (max-width: 899px) {
  .p-disco_detail__box {
    display: block;
  }
}
.p-disco_detail__box + .p-disco_detail__box {
  margin-top: 70px;
  padding-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 899px) {
  .p-disco_detail__box + .p-disco_detail__box {
    margin-top: 40px;
    padding-top: 45px;
  }
}
.p-disco_detail__thumb {
  flex-shrink: 0;
  width: 35%;
  max-width: 420px;
  margin-right: 5%;
}
@media screen and (max-width: 899px) {
  .p-disco_detail__thumb {
    margin-right: 0;
    margin-bottom: 28px;
    width: 100%;
  }
}
.p-disco_detail__thumb-img {
  margin-bottom: 30px;
}
@media screen and (max-width: 899px) {
  .p-disco_detail__thumb-img {
    margin-bottom: 25px;
  }
}
.p-disco_detail__thumb img {
  width: 100%;
}
.p-disco_detail__textarea {
  flex-grow: 1;
  line-height: 1.8;
  margin-top: -2px;
}
@media screen and (max-width: 899px) {
  .p-disco_detail__textarea {
    font-size: 13px;
    margin-top: 0;
  }
}
.p-disco_detail__textarea-head {
  font-family: YakuHanMP, "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  margin-bottom: 25px;
}
@media screen and (max-width: 899px) {
  .p-disco_detail__textarea-head {
    margin-bottom: 17px;
  }
}
.p-disco_detail__textarea-head-category {
  font-size: 14px;
}
@media screen and (max-width: 899px) {
  .p-disco_detail__textarea-head-category {
    font-size: 12px;
  }
}
.p-disco_detail__textarea-head-ttl {
  font-size: 24px;
  margin-top: 3px;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 899px) {
  .p-disco_detail__textarea-head-ttl {
    margin-top: 2px;
    font-size: 17px;
  }
}
.p-disco_detail__textarea-about {
  font-size: 14px;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 899px) {
  .p-disco_detail__textarea-about {
    font-size: 12px;
  }
}
.p-disco_detail__textarea-about-text + .p-disco_detail__textarea-about-text {
  margin-top: 4px;
}
@media screen and (max-width: 899px) {
  .p-disco_detail__textarea-about-text + .p-disco_detail__textarea-about-text {
    margin-top: 2px;
  }
}
.p-disco_detail__textarea-music {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 899px) {
  .p-disco_detail__textarea-music {
    margin-top: 20px;
  }
}
.p-disco_detail__textarea-music-head + .p-disco_detail__textarea-music-head {
  margin-top: 45px;
}
@media screen and (max-width: 899px) {
  .p-disco_detail__textarea-music-head + .p-disco_detail__textarea-music-head {
    margin-top: 35px;
  }
}
.p-disco_detail__textarea-music-intro {
  font-size: 14px;
}
.p-disco_detail__textarea-music-list {
  margin-bottom: 45px;
}
@media screen and (max-width: 899px) {
  .p-disco_detail__textarea-music-list {
    margin-bottom: 35px;
  }
}
.p-disco_detail__textarea-music-ttl {
  display: inline-block;
  vertical-align: baseline;
  border: 1px solid #fff;
  line-height: 1.2;
  padding: 1px 6px;
  margin-bottom: 16px;
  font-size: 14px;
}
@media screen and (max-width: 899px) {
  .p-disco_detail__textarea-music-ttl {
    font-size: 12px;
    padding: 2px 6px;
    margin-bottom: 16px;
  }
}
.p-disco_detail__textarea-music-item {
  padding: 15px 18px 14px;
}
@media screen and (max-width: 899px) {
  .p-disco_detail__textarea-music-item {
    padding: 14px 11px 14px;
  }
}
.p-disco_detail__textarea-music-item:nth-child(2n+1) {
  background-color: rgba(5, 20, 61, 0.3);
}
.p-disco_detail__textarea-music-item .p-disco_disc_data__name {
  line-height: 1.6;
  display: flex;
}
.p-disco_detail__textarea-music-item .p-disco_disc_data__name.-link {
  padding-right: 26%;
}
@media screen and (min-width: 900px) {
  .p-disco_detail__textarea-music-item .p-disco_disc_data__name.-link {
    padding-right: 20%;
  }
}
.sound-off .p-disco_detail__textarea-music-item .p-disco_disc_data__name.-link {
  padding-right: 0;
}
.p-disco_detail__textarea-music-item .p-disco_disc_data__name-sub {
  vertical-align: baseline;
  padding-right: 5px;
  font-size: 15px;
}
@media screen and (max-width: 899px) {
  .p-disco_detail__textarea-music-item .p-disco_disc_data__name-sub {
    font-size: 12px;
  }
}
.p-disco_detail__textarea-music-item .p-disco_disc_data__name-main {
  vertical-align: baseline;
  letter-spacing: 0.5px;
  font-size: 15px;
}
@media screen and (max-width: 899px) {
  .p-disco_detail__textarea-music-item .p-disco_disc_data__name-main {
    font-size: 12px;
  }
}
.p-disco_detail__textarea-music-item .p-disco_disc_data__inner {
  position: relative;
}
.p-disco_detail__textarea-music-item .p-disco_disc_data__link {
  position: absolute;
  right: -7px;
  top: -5px;
  display: flex;
}
@media screen and (max-width: 899px) {
  .p-disco_detail__textarea-music-item .p-disco_disc_data__link {
    right: -5px;
    top: -3px;
  }
}
.p-disco_detail__textarea-music-item .p-disco_disc_data__btn {
  background-color: rgba(5, 20, 61, 0.8);
  padding: 6px 9px;
  border-radius: 100px;
}
@media screen and (max-width: 899px) {
  .p-disco_detail__textarea-music-item .p-disco_disc_data__btn {
    padding: 3px 5px;
  }
}
.p-disco_detail__textarea-music-item .p-disco_disc_data__player {
  position: relative;
  padding-left: 35px;
}
@media screen and (max-width: 899px) {
  .p-disco_detail__textarea-music-item .p-disco_disc_data__player {
    padding-left: 24px;
  }
}
.p-disco_detail__textarea-music-item .p-disco_disc_data__player input {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 0;
  width: 20px;
  transition: opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (min-width: 900px) {
  .p-disco_detail__textarea-music-item .p-disco_disc_data__player input:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 899px) {
  .p-disco_detail__textarea-music-item .p-disco_disc_data__player input {
    width: 15px;
  }
}
.p-disco_detail__textarea-music-item .p-disco_disc_data__player-text {
  font-size: 12px;
  font-family: YakuHanMP, "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
}
@media screen and (max-width: 899px) {
  .p-disco_detail__textarea-music-item .p-disco_disc_data__player-text {
    font-size: 10px;
  }
}
.p-disco_detail__textarea iframe {
  width: 100% !important;
  height: auto !important;
}
@media screen and (min-width: 900px) {
  .p-disco_detail__textarea iframe {
    max-width: 640px;
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 899px) {
  .p-disco_detail__textarea iframe {
    height: 51.73vw !important;
  }
}
.p-disco_detail__textarea img {
  height: auto !important;
  width: auto !important;
}
@media screen and (min-width: 900px) {
  .p-disco_detail__textarea img {
    max-width: 400px;
  }
}
.p-disco_detail__btns {
  margin: 0 auto;
  width: 80%;
  max-width: 280px;
}
@media screen and (max-width: 899px) {
  .p-disco_detail__btns {
    width: 75%;
  }
}
.p-disco_detail__btns-item + .p-disco_detail__btns-item {
  margin-top: 16px;
}
@media screen and (max-width: 899px) {
  .p-disco_detail__btns-item + .p-disco_detail__btns-item {
    margin-top: 10px;
  }
}
.p-disco_detail__btns-cont {
  background: linear-gradient(94deg, #fce0bf 0%, #fcc7de 100%);
  text-align: center;
  color: #000;
  cursor: pointer;
}
.p-disco_detail__btns-inner {
  display: block;
  text-decoration: none;
  padding: 19px 17%;
  position: relative;
}
@media screen and (min-width: 900px) {
  .p-disco_detail__btns-inner:hover::before {
    transform-origin: left;
    transform: scaleX(1);
  }
}
.p-disco_detail__btns-inner::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 0.5;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 899px) {
  .p-disco_detail__btns-inner {
    padding: 15px 16% 16px;
  }
}
.p-disco_detail__btns-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 899px) {
  .p-disco_detail__btns-inner::after {
    left: 4%;
    width: 9px;
    height: 15px;
  }
}
.-shop .p-disco_detail__btns-inner::after {
  width: 22px;
  height: 22px;
  left: 7%;
  background: url(../img/discography/icon_buy.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 899px) {
  .-shop .p-disco_detail__btns-inner::after {
    width: 17px;
    height: 17px;
  }
}
.-dl .p-disco_detail__btns-inner::after {
  width: 16px;
  height: 16px;
  left: 8.5%;
  background: url(../img/discography/icon_dl.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 899px) {
  .-dl .p-disco_detail__btns-inner::after {
    width: 13px;
    height: 13px;
    left: 7.5%;
  }
}
.p-disco_detail__btns-text {
  font-family: YakuHanMP, "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  font-size: 15px;
  letter-spacing: -0.5px;
  transform: translateX(5px);
}
@media screen and (max-width: 899px) {
  .p-disco_detail__btns-text {
    font-size: 14px;
    transform: translateX(1px);
  }
}

.p-disco_sp {
  margin-top: 45px;
  padding-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  line-height: 1.8;
}
@media screen and (max-width: 899px) {
  .p-disco_sp {
    margin-top: 41px;
    padding-top: 31px;
    font-size: 13px;
  }
}
.p-disco_sp iframe {
  width: 100% !important;
  height: auto !important;
}
@media screen and (min-width: 900px) {
  .p-disco_sp iframe {
    max-width: 640px;
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 899px) {
  .p-disco_sp iframe {
    height: 51.73vw !important;
  }
}
.p-disco_sp img {
  height: auto !important;
  width: auto !important;
}
@media screen and (min-width: 900px) {
  .p-disco_sp img {
    max-width: 400px;
  }
}
.p-disco_sp a {
  color: #ffbc98;
}
@media screen and (min-width: 900px) {
  .p-disco_sp a:hover {
    text-decoration: none;
  }
}
.p-disco_sp a u {
  text-decoration: none;
}

.p-disco_modal__list {
  display: flex;
  flex-wrap: wrap;
  width: 510px;
  margin: 0 auto;
}
@media screen and (max-width: 899px) {
  .p-disco_modal__list {
    width: 90%;
    max-width: 324px;
  }
}
.p-disco_modal__item {
  width: 160px;
  margin: 5px;
  position: relative;
}
.p-disco_modal__item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #05143d;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (min-width: 900px) {
  .p-disco_modal__item:hover::after {
    opacity: 0.3;
  }
}
@media screen and (max-width: 899px) {
  .p-disco_modal__item {
    width: 48%;
    margin: 1%;
  }
}
.p-disco_modal__download-title {
  display: none;
}
.p-disco_modal__download-qr {
  display: none;
}