.p-hero {
  position: relative;
}
.p-hero__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
}
.p-hero__bg-pattern {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: url(../img/bg_pattern.png) repeat top center/80rem auto;
}
@media screen and (max-width: 750px) {
  .p-hero__bg-pattern {
    display: none;
  }
}
.p-hero__bg-visual {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .p-hero__bg-visual {
    width: 100%;
    left: 0;
  }
}
.p-hero__bg-visual::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/main_pc.jpg) no-repeat center center/cover;
  transform: scale(1.1);
  opacity: 0;
}
@media screen and (max-width: 750px) {
  .p-hero__bg-visual::before {
    background: url(../img/main_sp.jpg) no-repeat center center/cover;
  }
}
.on-load .p-hero__bg-visual::before {
  transform: scale(1);
  opacity: 1;
  transition: transform 1.2s var(--ease-out-cubic), opacity 0.6s var(--ease-out-cubic);
}
.p-hero__bg-visual::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-gold);
  opacity: 0.5;
  transform: scaleY(0);
  transform-origin: center bottom;
  transition: transform 1s var(--ease-in-out-quart);
}
.visual-cover-active .p-hero__bg-visual::after {
  transform: scaleY(1);
}
@media screen and (max-width: 750px) {
  .p-hero__bg-visual::after {
    opacity: 0.8;
  }
}
.p-hero__wrapper {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 750px) {
  .p-hero__wrapper {
    width: 100%;
  }
}
.p-hero__info {
  width: 100%;
}
.p-hero__intro {
  width: 100%;
}

.p-hero_info {
  position: relative;
}
.p-hero_info__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding-top: 15rem;
  padding-bottom: 15rem;
  transition: opacity 0.6s var(--ease-out-cubic) 0.4s;
}
.visual-cover-active .p-hero_info__wrapper {
  opacity: 0;
  transition-delay: 0s;
}
@media screen and (max-width: 750px) {
  .p-hero_info__wrapper {
    display: block;
    width: 100%;
    height: 100vh;
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.p-hero_info__name {
  position: absolute;
  top: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
}
.p-hero_info__name img {
  transform: translateY(1.5rem);
  opacity: 0;
}
.on-load .p-hero_info__name img {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.8s var(--ease-out-cubic) 0.3s, opacity 0.4s var(--ease-out-cubic) 0.3s;
}
@media screen and (max-width: 750px) {
  .p-hero_info__name img {
    transform: translateY(1.2rem);
  }
}
.p-hero_info__inner {
  width: 55rem;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .p-hero_info__inner {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 28.2rem;
  }
}
.p-hero_info__title {
  position: relative;
}
.p-hero_info__title-item {
  display: block;
  margin: 0 auto;
}
.p-hero_info__title-item:nth-child(1) {
  width: 28.8%;
  transform: translateY(1.5rem);
  opacity: 0;
}
.on-load .p-hero_info__title-item:nth-child(1) {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.8s var(--ease-out-cubic) 0.3s, opacity 0.4s var(--ease-out-cubic) 0.3s;
}
@media screen and (max-width: 750px) {
  .p-hero_info__title-item:nth-child(1) {
    display: none;
  }
  .is-sp .p-hero_info__title-item:nth-child(1) {
    display: block;
    width: 100%;
  }
}
.p-hero_info__title-item:nth-child(2) {
  width: 63.2%;
  margin-top: 7.1%;
  transform: translateY(1.5rem);
  opacity: 0;
}
.on-load .p-hero_info__title-item:nth-child(2) {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.8s var(--ease-out-cubic) 0.5s, opacity 0.4s var(--ease-out-cubic) 0.5s;
}
@media screen and (max-width: 750px) {
  .p-hero_info__title-item:nth-child(2) {
    width: 73%;
    margin-top: 0;
    transform: translateY(1.2rem);
  }
}
.p-hero_info__title-item:nth-child(3) {
  width: 100%;
  margin-top: 5.3%;
  transform: translateY(1.5rem);
  opacity: 0;
}
.on-load .p-hero_info__title-item:nth-child(3) {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.8s var(--ease-out-cubic) 0.5s, opacity 0.4s var(--ease-out-cubic) 0.5s;
}
@media screen and (max-width: 750px) {
  .p-hero_info__title-item:nth-child(3) {
    margin-top: 5.2%;
    transform: translateY(1.2rem);
  }
}
.p-hero_info__title-item:nth-child(4) {
  width: 76.5%;
  margin-top: 5.2%;
  transform: translateY(1.5rem);
  opacity: 0;
}
.on-load .p-hero_info__title-item:nth-child(4) {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.8s var(--ease-out-cubic) 0.5s, opacity 0.4s var(--ease-out-cubic) 0.5s;
}
@media screen and (max-width: 750px) {
  .p-hero_info__title-item:nth-child(4) {
    width: 88.5%;
    margin-top: 4.8%;
    transform: translateY(1.2rem);
  }
}
.p-hero_info__title-item img {
  width: 100%;
}
.p-hero_info__more {
  margin-top: 8.9%;
  transform: translateY(1.5rem);
  opacity: 0;
}
.on-load .p-hero_info__more {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.8s var(--ease-out-cubic) 0.7s, opacity 0.4s var(--ease-out-cubic) 0.7s;
}
@media screen and (max-width: 750px) {
  .p-hero_info__more {
    margin-top: 8.5%;
    transform: translateY(1.2rem);
  }
}
.p-hero_info__more-btn {
  width: 62%;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .p-hero_info__more-btn {
    width: 81.8%;
  }
}
.p-hero_info__more-btn:nth-child(n+2) {
  margin-top: 1.8%;
}
@media screen and (max-width: 750px) {
  .p-hero_info__more-btn:nth-child(n+2) {
    margin-top: 3.5%;
  }
}

.p-hero_intro {
  position: relative;
}
.p-hero_intro__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding-top: 15rem;
  padding-bottom: 15rem;
}
@media screen and (max-width: 750px) {
  .p-hero_intro__wrapper {
    min-height: auto;
    padding-top: 9.7rem;
    padding-bottom: 9.5rem;
  }
}
.p-hero_intro__inner {
  width: 55rem;
  margin: 0 auto;
  padding-bottom: 0.5rem;
  filter: blur(2px);
  transform: scale(1.15);
  opacity: 0;
  transition: filter 0.6s var(--ease-out-cubic) 0.6s, transform 0.6s var(--ease-out-cubic) 0.6s, opacity 0.6s var(--ease-out-cubic);
}
.p-hero_intro__inner.is-active-intro {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
  transition-duration: 1.2s, 1.2s, 0.6s;
  transition-delay: 0.2s, 0.2s, 0.2s;
}
@media screen and (max-width: 750px) {
  .p-hero_intro__inner {
    width: 33.5rem;
    padding-bottom: 0;
  }
}
.p-hero_intro__lead {
  text-align: center;
  color: var(--color-gold);
  font-size: 3.2rem;
  line-height: 1.45;
}
@media screen and (max-width: 750px) {
  .p-hero_intro__lead {
    color: var(--color-white);
    font-size: 1.95rem;
    letter-spacing: 0.02em;
  }
}
.p-hero_intro__description {
  margin-top: 2.2rem;
  text-align: center;
  font-size: 2rem;
  line-height: 1.75;
}
@media screen and (max-width: 750px) {
  .p-hero_intro__description {
    color: var(--color-white);
    font-size: 1.3rem;
    line-height: 2;
    letter-spacing: 0.02em;
  }
}
.p-hero_intro__description .--accent {
  display: inline-block;
  margin-right: 0.5rem;
  padding: 0 0.5rem;
  background: var(--color-gold);
  vertical-align: baseline;
  color: var(--color-white);
  line-height: 1.22;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 750px) {
  .p-hero_intro__description .--accent {
    line-height: 1.5;
    background: var(--color-gray);
  }
}

.p-message_modal {
  position: relative;
  background: var(--color-white);
}
.p-message_modal__wrapper {
  border: 0.7rem solid transparent;
}
@media screen and (max-width: 750px) {
  .p-message_modal__wrapper {
    border-width: 0.3rem;
  }
}
.p-message_modal__outer {
  border: 0.1rem solid var(--color-beige);
}
.p-message_modal__inner {
  width: 91.5%;
  min-height: 50.5rem;
  margin: 0 auto;
  padding-top: 3.6rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 750px) {
  .p-message_modal__inner {
    width: 90%;
    min-height: 30rem;
    padding-top: 2.4rem;
    padding-bottom: 2.8rem;
  }
}
.p-message_modal__title {
  color: var(--color-gold);
  font-family: var(--font-eng);
  font-size: 3.8rem;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .p-message_modal__title {
    font-size: 2.4rem;
  }
}
.p-message_modal__text {
  margin-top: 3.5rem;
  font-size: 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 750px) {
  .p-message_modal__text {
    margin-top: 2.2rem;
    font-size: 1.3rem;
  }
}

.p-content {
  position: relative;
  background: var(--color-white);
}

.p-section--release {
  padding-top: 14rem;
  padding-bottom: 15.7rem;
  background: var(--color-beige);
}
@media screen and (max-width: 750px) {
  .p-section--release {
    padding-top: 7.5rem;
    padding-bottom: 7.9rem;
  }
}
.p-section--track {
  padding-top: 11.9rem;
  padding-bottom: 15.5rem;
  background: var(--color-blue);
}
@media screen and (max-width: 750px) {
  .p-section--track {
    padding-top: 6rem;
    padding-bottom: 8rem;
  }
}
.p-section--comment {
  padding-top: 11rem;
  padding-bottom: 12rem;
  background: url(../img/bg_pattern.png) repeat top center/55rem auto;
}
@media screen and (max-width: 750px) {
  .p-section--comment {
    padding-top: 5.5rem;
    padding-bottom: 7.6rem;
  }
}
.p-section--live {
  padding-top: 11rem;
  padding-bottom: 15.6rem;
  background: var(--color-gray);
}
@media screen and (max-width: 750px) {
  .p-section--live {
    padding-top: 5.5rem;
    padding-bottom: 7.7rem;
  }
}
.p-section__inner {
  width: 110rem;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .p-section__inner {
    width: 33.5rem;
  }
}
@media screen and (max-width: 750px) {
  .p-section--comment .p-section__inner {
    width: 34.5rem;
  }
}
.p-section__title {
  position: relative;
  box-sizing: content-box;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 7.2rem;
  margin: 0 auto;
  transform: translateY(1.5rem);
  opacity: 0;
}
.p-section.is-active .p-section__title {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.8s var(--ease-out-cubic), opacity 0.4s var(--ease-out-cubic);
}
@media screen and (max-width: 750px) {
  .p-section__title {
    padding: 0 3.8rem;
    transform: translateY(1.2rem);
  }
}
.p-section--comment .p-section__title {
  padding: 0 6.8rem;
}
@media screen and (max-width: 750px) {
  .p-section--comment .p-section__title {
    padding: 0 3.7rem;
  }
}
.p-section--live .p-section__title {
  padding: 0 8.1rem;
}
@media screen and (max-width: 750px) {
  .p-section--live .p-section__title {
    padding: 0 4.2rem;
  }
}
.p-section__title::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4.5rem;
  padding-top: 4.5rem;
  background: url(../img/point_g.png) no-repeat center center/100% auto;
}
@media screen and (max-width: 750px) {
  .p-section__title::before {
    width: 2.4rem;
    padding-top: 2.4rem;
  }
}
.p-section--live .p-section__title::before {
  background-image: url(../img/point_w.png);
}
@media screen and (max-width: 750px) {
  .p-section--live .p-section__title::before {
    width: 2.3rem;
    padding-top: 2.3rem;
  }
}
.p-section__title::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0.8rem;
  transform: translateY(-50%) rotate(268deg);
  width: 4.6rem;
  padding-top: 4.6rem;
  background: url(../img/point_g.png) no-repeat center center/100% auto;
}
@media screen and (max-width: 750px) {
  .p-section__title::after {
    width: 2.4rem;
    padding-top: 2.4rem;
  }
}
.p-section--live .p-section__title::after {
  background-image: url(../img/point_w.png);
}
@media screen and (max-width: 750px) {
  .p-section--live .p-section__title::after {
    width: 2.3rem;
    padding-top: 2.3rem;
  }
}
.p-section__title-text {
  display: block;
  text-align: center;
  color: var(--color-gold);
  font-family: var(--font-eng-deco);
  font-size: 8rem;
  letter-spacing: 0.029em;
}
@media screen and (max-width: 750px) {
  .p-section__title-text {
    font-size: 4rem;
  }
}
.p-section--live .p-section__title-text {
  color: var(--color-white);
}

.p-release {
  position: relative;
}
.p-release__info {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 750px) {
  .p-release__info {
    display: block;
  }
}
.p-release__info-visual {
  width: 43.7%;
  margin-top: 1rem;
  transform: scale(1.1);
  opacity: 0;
}
.p-section.is-active .p-release__info-visual {
  transform: scale(1);
  opacity: 1;
  transition: transform 1s var(--ease-out-cubic), opacity 0.5s var(--ease-out-cubic);
}
@media screen and (max-width: 750px) {
  .p-release__info-visual {
    width: 78%;
    margin: 0 auto;
  }
}
.p-release__info-detail {
  flex-basis: 0;
  flex-grow: 1;
  margin-left: 6%;
  transform: translateX(-1.5rem);
  opacity: 0;
}
.p-section.is-active .p-release__info-detail {
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.8s var(--ease-out-cubic) 0.2s, opacity 0.4s var(--ease-out-cubic) 0.2s;
}
@media screen and (max-width: 750px) {
  .p-section.is-active .p-release__info-detail {
    transform: translateY(0);
  }
}
@media screen and (max-width: 750px) {
  .p-release__info-detail {
    width: 100%;
    margin-left: 0;
    transform: translateY(1.2rem);
  }
}
.p-release__info-name {
  color: var(--color-gold);
  font-family: var(--font-eng-deco);
  font-size: 6.9rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.032em;
}
@media screen and (max-width: 750px) {
  .p-release__info-name {
    margin-top: 2.4rem;
    text-align: center;
    font-size: 4rem;
    letter-spacing: 0.024em;
  }
}
.p-release__info-disc {
  margin-top: 4rem;
}
@media screen and (max-width: 750px) {
  .p-release__info-disc {
    margin-top: 2.7rem;
  }
}
.p-release__info-disc-item:nth-child(n+2) {
  margin-top: 3.5rem;
}
@media screen and (max-width: 750px) {
  .p-release__info-disc-item:nth-child(n+2) {
    margin-top: 2.8rem;
  }
}
.p-release__benefit {
  position: relative;
  margin-top: 5.8rem;
  padding-top: 6.1rem;
}
@media screen and (max-width: 750px) {
  .p-release__benefit {
    margin-top: 2.8rem;
    padding-top: 3.2rem;
  }
}
.p-release__benefit::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background: url(../img/dot_line.png) repeat-x left center/auto 100%;
}
@media screen and (max-width: 750px) {
  .p-release__benefit::before {
    height: 0.1rem;
  }
}
.p-release__benefit-list {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
@media screen and (max-width: 750px) {
  .p-release__benefit-list {
    display: block;
  }
}
.p-release__benefit-list-item {
  width: 31.8%;
  margin: 0 1.15%;
  transform: translateY(1.5rem);
  opacity: 0;
}
.p-release__benefit.is-active .p-release__benefit-list-item {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.8s var(--ease-out-cubic), opacity 0.4s var(--ease-out-cubic);
}
.p-release__benefit.is-active .p-release__benefit-list-item:nth-child(1) {
  transition-delay: 0s;
}
.p-release__benefit.is-active .p-release__benefit-list-item:nth-child(2) {
  transition-delay: 0.1s;
}
.p-release__benefit.is-active .p-release__benefit-list-item:nth-child(3) {
  transition-delay: 0.2s;
}
@media screen and (max-width: 750px) {
  .p-release__benefit-list-item {
    width: 100%;
    margin: 0;
    transform: translateY(1.2rem);
  }
}
.p-release__benefit-list-item:nth-child(3n-2) {
  margin-left: 0;
}
.p-release__benefit-list-item:nth-child(3n) {
  margin-right: 0;
}
.p-release__benefit-list-item:first-child {
  margin-left: 0;
}
.p-release__benefit-list-item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 750px) {
  .p-release__benefit-list-item:nth-child(n+2) {
    margin-top: 1.5rem;
  }
}

.p-release_disc {
  position: relative;
  padding-left: 0.3rem;
}
@media screen and (max-width: 750px) {
  .p-release_disc {
    padding-left: 0;
  }
}
.p-release_disc__label {
  position: relative;
  padding-left: 3rem;
  color: var(--color-gold);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 750px) {
  .p-release_disc__label {
    padding-left: 2rem;
    font-size: 1.4rem;
  }
}
.p-release_disc__label::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2.2rem;
  padding-top: 2.2rem;
  background: url(../img/point_g.png) no-repeat center center/100% auto;
}
@media screen and (max-width: 750px) {
  .p-release_disc__label::before {
    width: 1.6rem;
  }
}
.p-release_disc__body {
  margin-top: 2.5rem;
}
@media screen and (max-width: 750px) {
  .p-release_disc__body {
    margin-top: 1.5rem;
  }
}
.p-release_disc__info {
  line-height: 1.35;
  letter-spacing: 0.02em;
}
.p-release_disc__contents {
  margin-top: 2.1rem;
  padding-left: 0.4rem;
}
@media screen and (max-width: 750px) {
  .p-release_disc__contents {
    margin-top: 1.4rem;
  }
}
.p-release_disc__contents-list-item {
  padding-left: 0.6em;
  text-indent: -0.6em;
  line-height: 1.35;
  letter-spacing: 0.02em;
}
.p-release_disc__contents-list-item:nth-child(n+2) {
  margin-top: 0.6rem;
}
@media screen and (max-width: 750px) {
  .p-release_disc__contents-list-item:nth-child(n+2) {
    margin-top: 0.4rem;
  }
}

.p-release_benefit {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  border: 0.7rem solid transparent;
}
@media screen and (max-width: 750px) {
  .p-release_benefit {
    border-width: 0.4rem;
  }
}
.p-release_benefit__wrapper {
  width: 100%;
  height: 100%;
  border: 0.1rem solid var(--color-beige);
}
.p-release_benefit__inner {
  width: 80%;
  margin: 0 auto;
  padding-top: 3rem;
  padding-bottom: 3.3rem;
}
@media screen and (max-width: 750px) {
  .p-release_benefit__inner {
    width: 87.5%;
    padding-top: 1.8rem;
    padding-bottom: 2rem;
  }
}
.p-release_benefit__label {
  text-align: center;
  color: var(--color-gold);
  font-size: 2.2rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 750px) {
  .p-release_benefit__label {
    font-size: 1.6rem;
  }
}
.p-release_benefit__caption {
  margin-top: 1.1rem;
  text-align: center;
  color: var(--color-gold);
  font-size: 1.4rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 750px) {
  .p-release_benefit__caption {
    margin-top: 0.8rem;
    font-size: 1rem;
  }
}
.p-release_benefit__body {
  margin-top: 2.3rem;
}
@media screen and (max-width: 750px) {
  .p-release_benefit__body {
    margin-top: 1.5rem;
  }
}
.p-release_benefit__lead {
  line-height: 1.75;
  letter-spacing: 0.035em;
}
.p-release_benefit__description {
  margin-top: 0.8rem;
  line-height: 1.75;
}
@media screen and (max-width: 750px) {
  .p-release_benefit__description {
    line-height: 1.76;
  }
}

.p-track {
  position: relative;
  margin-top: 6.9rem;
}
@media screen and (max-width: 750px) {
  .p-track {
    margin-top: 3.2rem;
  }
}
.p-track__block:nth-child(n+2) {
  margin-top: 8.1rem;
}
@media screen and (max-width: 750px) {
  .p-track__block:nth-child(n+2) {
    margin-top: 3.2rem;
  }
}
.p-track__label {
  position: relative;
  padding-left: 3.5rem;
  transform: translateX(1.2rem);
  opacity: 0;
}
.p-track__block.is-active .p-track__label {
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.8s var(--ease-out-cubic), opacity 0.4s var(--ease-out-cubic);
}
@media screen and (max-width: 750px) {
  .p-track__label {
    padding-left: 2rem;
  }
}
.p-track__label::before {
  content: "";
  display: block;
  position: absolute;
  top: 47%;
  left: 0;
  transform: translateY(-50%);
  width: 2.7rem;
  padding-top: 2.7rem;
  background: url(../img/point_g.png) no-repeat center center/100% auto;
}
@media screen and (max-width: 750px) {
  .p-track__label::before {
    top: 50%;
    left: 0.1rem;
    width: 1.4rem;
    padding-top: 1.4rem;
  }
}
.p-track__label-text {
  color: var(--color-gold);
  font-family: var(--font-eng-gothic);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 750px) {
  .p-track__label-text {
    font-size: 1.8rem;
  }
}
.p-track__list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 5.5rem;
}
@media screen and (max-width: 750px) {
  .p-track__list {
    display: block;
    margin-top: 1.4rem;
  }
}
.p-track__list-item {
  width: 31.8%;
  margin-left: 2.3%;
  transform: translateX(1.2rem);
  opacity: 0;
}
.p-track__list-item.is-active {
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.8s var(--ease-out-cubic), opacity 0.4s var(--ease-out-cubic);
}
.p-track__list-item.is-active:nth-child(3n-1) {
  transition-delay: 0.1s;
}
@media screen and (max-width: 750px) {
  .p-track__list-item.is-active:nth-child(3n-1) {
    transition-delay: 0s;
  }
}
.p-track__list-item.is-active:nth-child(3n) {
  transition-delay: 0.2s;
}
@media screen and (max-width: 750px) {
  .p-track__list-item.is-active:nth-child(3n) {
    transition-delay: 0s;
  }
}
@media screen and (max-width: 750px) {
  .p-track__list-item {
    width: 100%;
    margin-left: 0;
  }
}
.p-track__list-item:nth-child(3n-2) {
  margin-left: 0;
}
.p-track__list-item:nth-child(n+4) {
  margin-top: 3rem;
}
@media screen and (max-width: 750px) {
  .p-track__list-item:nth-child(n+2) {
    margin-top: 0.6rem;
  }
}

.p-track_item {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border: 0.7rem solid transparent;
  background: var(--color-white);
}
@media screen and (max-width: 750px) {
  .p-track_item {
    border-width: 0.3rem;
  }
}
.p-track_item__inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 3rem;
  padding-bottom: 2.9rem;
  border: 0.1rem solid var(--color-beige);
}
@media screen and (max-width: 750px) {
  .p-track_item__inner {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    height: auto;
    padding: 0.8rem 2.4% 0.8rem;
  }
}
.p-track_item__num {
  position: absolute;
  top: -2.2rem;
  left: 0.1rem;
  color: var(--color-gold);
  font-family: var(--font-eng-gothic);
  font-size: 4rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 750px) {
  .p-track_item__num {
    position: relative;
    top: 0;
    left: 0;
    width: 3.2rem;
    font-size: 1.6rem;
  }
}
.p-track_item__content {
  width: 83.5%;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .p-track_item__content {
    flex-basis: 0;
    flex-grow: 1;
    margin-left: 0;
  }
}
.p-track_item__title {
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 750px) {
  .p-track_item__title {
    font-size: 1.3rem;
  }
}
.p-track_item__pick {
  margin-top: 0.3rem;
  padding-left: 3.55em;
  text-indent: -3.55em;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 750px) {
  .p-track_item__pick {
    margin-top: 0.2rem;
    font-size: 1rem;
  }
}

.p-comment {
  position: relative;
  margin-top: 7rem;
  transform: translateY(1.5rem);
  opacity: 0;
}
.p-section.is-active .p-comment {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.8s var(--ease-out-cubic) 0.2s, opacity 0.4s var(--ease-out-cubic) 0.2s;
}
@media screen and (max-width: 750px) {
  .p-comment {
    margin-top: 3.5rem;
    transform: translateY(1.2rem);
  }
}
.p-comment__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.p-comment__list-item {
  width: 16.4%;
  margin-left: 4.5%;
}
@media screen and (max-width: 750px) {
  .p-comment__list-item {
    width: 31.7%;
    margin-left: 2.45%;
  }
}
.p-comment__list-item:nth-child(9n-8) {
  margin-left: 0;
}
@media screen and (max-width: 750px) {
  .p-comment__list-item:nth-child(9n-8) {
    margin-left: 2.45%;
  }
}
.p-comment__list-item:nth-child(9n-3) {
  margin-left: 10.45%;
}
@media screen and (max-width: 750px) {
  .p-comment__list-item:nth-child(9n-3) {
    margin-left: 2.45%;
  }
}
.p-comment__list-item:nth-child(9n) {
  margin-right: 10.45%;
}
@media screen and (max-width: 750px) {
  .p-comment__list-item:nth-child(9n) {
    margin-right: 0;
  }
}
.p-comment__list-item:nth-child(n+6) {
  margin-top: 0.9%;
}
@media screen and (max-width: 750px) {
  .p-comment__list-item:nth-child(5n-4) {
    margin-left: 0;
  }
}
@media screen and (max-width: 750px) {
  .p-comment__list-item:nth-child(5n-1) {
    margin-left: 17.075%;
  }
}
@media screen and (max-width: 750px) {
  .p-comment__list-item:nth-child(5n) {
    margin-right: 17.075%;
  }
}
@media screen and (max-width: 750px) {
  .p-comment__list-item:nth-child(n+4) {
    margin-top: 0.2%;
  }
}
.p-comment__icon {
  position: relative;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out-cubic);
}
@media (hover: hover) {
  .p-comment__icon:hover {
    transform: translateY(-0.5rem);
  }
}
.p-comment__icon-base {
  position: relative;
  transition: filter 0.4s var(--ease-out-cubic);
}
@media (hover: hover) {
  .p-comment__icon:hover .p-comment__icon-base {
    filter: drop-shadow(0.1rem 0.5rem 0.4rem rgba(72, 72, 72, 0.2));
  }
}
.p-comment__icon-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84%;
  text-align: center;
  color: var(--color-gold);
  font-size: 2.4rem;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .p-comment__icon-name {
    font-size: 1.4rem;
    font-weight: 400;
  }
}
.p-comment__icon-name.--size-small {
  font-size: 1.8rem;
  line-height: 1.46em;
}
@media screen and (max-width: 750px) {
  .p-comment__icon-name.--size-small {
    font-size: 1.1rem;
  }
}

.p-comment_modal {
  position: relative;
  background: var(--color-white);
}
.p-comment_modal__wrapper {
  border: 0.7rem solid transparent;
}
@media screen and (max-width: 750px) {
  .p-comment_modal__wrapper {
    border-width: 0.3rem;
  }
}
.p-comment_modal__outer {
  border: 0.1rem solid var(--color-beige);
}
.p-comment_modal__inner {
  width: 91.5%;
  min-height: 50.5rem;
  margin: 0 auto;
  padding-top: 3.6rem;
  padding-bottom: 3.6rem;
}
@media screen and (max-width: 750px) {
  .p-comment_modal__inner {
    width: 90%;
    min-height: 30rem;
    padding-top: 2.4rem;
    padding-bottom: 0.5rem;
  }
}
.p-comment_modal__head {
  width: 90%;
}
.p-comment_modal__name {
  color: var(--color-gold);
  font-size: 3.7rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 750px) {
  .p-comment_modal__name {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
  }
}
.p-comment_modal__body {
  margin-top: 3rem;
}
@media screen and (max-width: 750px) {
  .p-comment_modal__body {
    margin-top: 2.4rem;
  }
}
.p-comment_modal__detail-list-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  padding-top: 2.1rem;
  padding-bottom: 2.2rem;
}
@media screen and (max-width: 750px) {
  .p-comment_modal__detail-list-item {
    padding-top: 1.6rem;
    padding-bottom: 1.5rem;
  }
}
@media screen and (max-width: 750px) {
  .p-comment_modal__detail-list-item.--comment {
    display: block;
  }
}
.p-comment_modal__detail-list-item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background: url(../img/dot_line.png) repeat-x left center/auto 100%;
}
@media screen and (max-width: 750px) {
  .p-comment_modal__detail-list-item::before {
    height: 0.1rem;
  }
}
.p-comment_modal__detail-label {
  width: 15rem;
  color: var(--color-gold);
  font-weight: 500;
  line-height: 1.75;
}
@media screen and (max-width: 750px) {
  .p-comment_modal__detail-label {
    width: 4.56rem;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 750px) {
  .--comment .p-comment_modal__detail-label {
    width: 100%;
  }
}
.p-comment_modal__detail-text {
  flex-basis: 0;
  flex-grow: 1;
  line-height: 1.75;
}
@media screen and (max-width: 750px) {
  .--comment .p-comment_modal__detail-text {
    margin-top: 0.2rem;
  }
}
.p-comment_modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 6rem;
  padding-top: 6rem;
  background: var(--color-gray);
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .p-comment_modal__close {
    width: 4rem;
    padding-top: 4rem;
  }
}
.p-comment_modal__close::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 0.1rem;
  height: 3rem;
  background: var(--color-white);
}
@media screen and (max-width: 750px) {
  .p-comment_modal__close::before {
    height: 2rem;
  }
}
.p-comment_modal__close::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.1rem;
  height: 3rem;
  background: var(--color-white);
}
@media screen and (max-width: 750px) {
  .p-comment_modal__close::after {
    height: 2rem;
  }
}

.p-live {
  position: relative;
  margin-top: 6.6rem;
}
@media screen and (max-width: 750px) {
  .p-live {
    margin-top: 3.3rem;
  }
}
.p-live__head {
  transform: translateY(1.5rem);
  opacity: 0;
}
.p-section.is-active .p-live__head {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.8s var(--ease-out-cubic) 0.2s, opacity 0.4s var(--ease-out-cubic) 0.2s;
}
@media screen and (max-width: 750px) {
  .p-live__head {
    transform: translateY(1.2rem);
  }
}
.p-live__cap {
  text-align: center;
  color: var(--color-gold);
  font-size: 3.2rem;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .p-live__cap {
    font-size: 1.6rem;
  }
}
.p-live__name {
  margin-top: 1.9rem;
  text-align: center;
  color: var(--color-gold);
  font-size: 4.7rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.032em;
}
@media screen and (max-width: 750px) {
  .p-live__name {
    margin-top: 0.7rem;
    font-size: 2.4rem;
    line-height: 1.25;
  }
}
.p-live__name .--eng {
  vertical-align: -2%;
  font-family: var(--font-eng-gothic);
  font-size: 5.2rem;
}
@media screen and (max-width: 750px) {
  .p-live__name .--eng {
    font-size: 2.4rem;
  }
}
.p-live__body {
  transform: translateY(1.5rem);
  opacity: 0;
}
.p-section.is-active .p-live__body {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.8s var(--ease-out-cubic) 0.4s, opacity 0.4s var(--ease-out-cubic) 0.4s;
}
@media screen and (max-width: 750px) {
  .p-live__body {
    transform: translateY(1.2rem);
  }
}
.p-live__schedule {
  position: relative;
  margin-top: 5rem;
}
@media screen and (max-width: 750px) {
  .p-live__schedule {
    margin-top: 1.8rem;
  }
}
.p-live__schedule-list {
  position: relative;
}
.p-live__schedule-list::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background: url(../img/dot_line.png) repeat-x top center/auto 100%;
}
@media screen and (max-width: 750px) {
  .p-live__schedule-list::before {
    height: 0.1rem;
  }
}
.p-live__more {
  margin-top: 5.8rem;
}
@media screen and (max-width: 750px) {
  .p-live__more {
    margin-top: 3rem;
  }
}
.p-live__more-btn {
  width: 34rem;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .p-live__more-btn {
    width: 23rem;
  }
}

.p-live_schedule {
  position: relative;
}
.p-live_schedule::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background: url(../img/dot_line.png) repeat-x top center/auto 100%;
}
@media screen and (max-width: 750px) {
  .p-live_schedule::before {
    height: 0.1rem;
  }
}
.p-live_schedule__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.p-live_schedule__date {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 26.5rem;
}
@media screen and (max-width: 750px) {
  .p-live_schedule__date {
    width: 13.2rem;
  }
}
.p-live_schedule__date-ymd {
  color: var(--color-white);
  font-family: var(--font-eng-gothic);
  font-size: 3.2rem;
  letter-spacing: 0.028em;
}
@media screen and (max-width: 750px) {
  .p-live_schedule__date-ymd {
    font-size: 1.6rem;
  }
}
.p-live_schedule__date-day {
  margin-left: 0.9rem;
  padding: 0.35rem 0.4rem 0.45rem;
  border: 0.1rem solid var(--color-white);
  color: var(--color-white);
  font-size: 1.7rem;
}
@media screen and (max-width: 750px) {
  .p-live_schedule__date-day {
    margin-left: 0.5rem;
    padding: 0.2rem;
    font-size: 1rem;
  }
}
.p-live_schedule__info {
  flex-basis: 0;
  flex-grow: 1;
  padding-top: 2.6rem;
  padding-bottom: 3.1rem;
}
@media screen and (max-width: 750px) {
  .p-live_schedule__info {
    padding-top: 1.2rem;
    padding-bottom: 1.7rem;
  }
}
.p-live_schedule__info-venue {
  color: var(--color-white);
  font-size: 2.4rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 750px) {
  .p-live_schedule__info-venue {
    font-size: 1.4rem;
    line-height: 1.3;
  }
}
.p-live_schedule__info-venue span {
  vertical-align: baseline;
}
.p-live_schedule__info-venue .--accent {
  color: var(--color-gold);
}
@media screen and (max-width: 750px) {
  .p-live_schedule__info-venue .--sp-none {
    display: none;
  }
}
.p-live_schedule__info-start {
  margin-top: 1rem;
  color: var(--color-white);
  font-size: 1.4rem;
  letter-spacing: 0.015em;
}
@media screen and (max-width: 750px) {
  .p-live_schedule__info-start {
    margin-top: 0.3rem;
    margin-left: 0.1rem;
    font-size: 1rem;
  }
}