@import url("https://fonts.googleapis.com/css2?family=Cardo&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&display=swap");
@keyframes loop_tti {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes movie_anime-pc {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -26px 0;
  }
}
@keyframes movie_anime-sp {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -19px 0;
  }
}
@keyframes rotate_loop {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes intro_noise_PC {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 4px;
  }
}
@keyframes intro_noise_SP {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 2px;
  }
}
@keyframes dot-pulse {
  0%, 100% {
    transform: scale(0.7);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}
.p-music {
  margin-top: 77px;
}
@media screen and (max-width: 767px) {
  .p-music {
    margin-top: 48px;
  }
}
.p-music__box + .p-music__box {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .p-music__box + .p-music__box {
    margin-top: 60px;
  }
}
.p-music__box-head {
  text-align: center;
  border-top: 1px solid #997d26;
  border-bottom: 1px solid #997d26;
  color: #997d26;
  line-height: 1.5;
  padding: 1px 5% 4px;
  font-size: 26px;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
}
.p-music__box.is-active .p-music__box-head {
  opacity: 1;
  transform: translateZ(0);
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 767px) {
  .p-music__box-head {
    margin-bottom: 40px;
    padding: 4px 5% 6px;
    font-size: 18px;
  }
}
.p-music__box-content {
  margin: 0 auto;
  width: 90%;
  max-width: 1000px;
  opacity: 0;
  transform: translateY(30px);
}
.p-music__box.is-active .p-music__box-content {
  opacity: 1;
  transform: translateZ(0);
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s;
}
.p-music__song {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-music__song {
    display: block;
  }
}
.p-music__song-thumb {
  flex-shrink: 0;
  width: 40%;
}
@media screen and (max-width: 767px) {
  .p-music__song-thumb {
    margin: 0 auto;
    width: 76%;
    margin-bottom: 20px;
  }
}
.p-music__song-content {
  width: 60%;
  padding-left: 6.1%;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-music__song-content {
    width: 100%;
    padding: 0;
  }
}
.p-music__song-musicttl {
  font-size: min(50px, 4.1666666667vw);
  color: #997d26;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-music__song-musicttl {
    font-size: min(30px, 8vw);
    text-align: center;
  }
}
.p-music__song-musicttl.-small {
  font-size: 35px;
}
@media screen and (max-width: 767px) {
  .p-music__song-musicttl.-small {
    font-size: min(22px, 5.8666666667vw);
  }
}
.p-music__song-artist {
  color: #997d26;
  font-weight: 500;
  font-size: 34px;
  margin-top: 2px;
}
@media screen and (max-width: 767px) {
  .p-music__song-artist {
    text-align: center;
    font-size: min(22px, 5.8666666667vw);
  }
}
.p-music__song-credit {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-music__song-credit {
    margin-top: 23px;
  }
}
.p-music__song-credit-item {
  display: flex;
}
.p-music__song-credit-item + .p-music__song-credit-item {
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .p-music__song-credit-item + .p-music__song-credit-item {
    margin-top: 9px;
  }
}
.p-music__song-credit-label {
  letter-spacing: 1px;
  color: #997d26;
  font-weight: 500;
  flex-shrink: 0;
  width: 70px;
}
@media screen and (max-width: 767px) {
  .p-music__song-credit-label {
    text-align: right;
    width: 44%;
    font-size: 13px;
    padding-right: 18px;
  }
}
@media screen and (max-width: 767px) {
  .p-music__song-credit-text {
    width: 50%;
    text-align: left;
    font-size: 13px;
  }
}
.p-music__song-btn {
  width: 320px;
  margin-top: 36px;
}
@media screen and (max-width: 767px) {
  .p-music__song-btn {
    width: 236px;
    margin: 0 auto;
    margin-top: 26px;
  }
}
.p-music__song-btn + .p-music__song-btn {
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .p-music__song-btn + .p-music__song-btn {
    margin-top: 10px;
  }
}
.p-music__artist {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin-top: 60px;
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-music__artist {
    margin-top: 41px;
    padding-top: 40px;
  }
}
.p-music__artist-thumb {
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .p-music__artist-thumb {
    margin-bottom: 36px;
  }
}
.p-music__artist-textlist {
  line-height: 1.4;
}
.p-music__artist-textlist-item {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-music__artist-textlist-item {
    display: block;
  }
}
.p-music__artist-textlist-item + .p-music__artist-textlist-item {
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .p-music__artist-textlist-item + .p-music__artist-textlist-item {
    margin-top: 34px;
  }
}
.p-music__artist-textlist-label {
  font-family: "Cardo", serif;
  color: #997d26;
  flex-shrink: 0;
  width: 120px;
}
@media screen and (max-width: 767px) {
  .p-music__artist-textlist-label {
    width: 100%;
    font-size: 13px;
    letter-spacing: 0.5px;
  }
}
.p-music__artist-textlist-label.-ja {
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.8px;
  font-weight: 500;
}
.p-music__artist-textlist-text {
  position: relative;
  margin-top: -2px;
}
@media screen and (max-width: 767px) {
  .p-music__artist-textlist-text {
    font-size: 13px;
    margin-top: 11px;
  }
}
.p-music__artist-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 57px;
}
@media screen and (max-width: 767px) {
  .p-music__artist-btns {
    margin-top: 37px;
  }
}
.p-music__artist-btns-item {
  width: 28%;
  max-width: 260px;
  margin: 0 0.5% 1%;
}
@media screen and (max-width: 767px) {
  .p-music__artist-btns-item {
    margin: 0;
    width: 49%;
    margin-right: 2%;
    margin-top: 2%;
  }
  .p-music__artist-btns-item:nth-child(2n) {
    margin-right: 0;
  }
  .p-music__artist-btns-item:nth-child(n+1):nth-child(-n+2) {
    margin-top: 0;
  }
}