@import url("https://use.typekit.net/xvj0zpd.css");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700;1,800;1,900&family=Noto+Sans+JP:wght@400;700&display=swap");
@media not all and (max-width: 900px) {
  .p-hero {
    height: 100vh;
  }
}
.p-hero__container {
  display: flex;
  height: 100%;
}
@media screen and (max-width: 900px) {
  .p-hero__container {
    width: 100%;
  }
}
@media not all and (max-width: 900px) {
  .p-hero__head {
    position: relative;
    display: flex;
    width: 116px;
    padding-top: 1.8%;
    padding-bottom: 1.8%;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    border-right: 1px solid var(--color-line-gray);
  }
}
@media not all and (max-width: 900px) {
  .p-hero__ttl {
    writing-mode: vertical-rl;
  }
}
.p-hero__ttl-main {
  margin-left: 8px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.035rem;
}
.p-hero__ttl-sub {
  font-size: 15px;
}
.p-hero__scroll {
  cursor: pointer;
}
.p-hero__scroll-txt {
  overflow: hidden;
}
.p-hero__scroll-txt span {
  display: inline-block;
  vertical-align: baseline;
  animation: text_anime 4s cubic-bezier(0.5, 1, 0.89, 1) infinite;
}
.p-hero__scroll-txt span:nth-child(1) {
  animation-delay: 0s;
}
.p-hero__scroll-txt span:nth-child(2) {
  animation-delay: 0.05s;
}
.p-hero__scroll-txt span:nth-child(3) {
  animation-delay: 0.1s;
}
.p-hero__scroll-txt span:nth-child(4) {
  animation-delay: 0.15s;
}
.p-hero__scroll-txt span:nth-child(5) {
  animation-delay: 0.2s;
}
.p-hero__scroll-txt span:nth-child(6) {
  animation-delay: 0.25s;
}
.p-hero__scroll-txt span:nth-child(7) {
  animation-delay: 0.3s;
}
.p-hero__scroll-txt span:nth-child(8) {
  animation-delay: 0.35s;
}
.p-hero__scroll-txt span:nth-child(9) {
  animation-delay: 0.4s;
}
.p-hero__scroll-txt span:nth-child(10) {
  animation-delay: 0.45s;
}
.p-hero__scroll-txt span:nth-child(11) {
  animation-delay: 0.5s;
}
.p-hero__scroll-txt span:nth-child(12) {
  animation-delay: 0.55s;
}
.p-hero__scroll-txt span:nth-child(13) {
  animation-delay: 0.6s;
}
.p-hero__scroll-txt span:nth-child(14) {
  animation-delay: 0.65s;
}
.p-hero__scroll-txt span:nth-child(15) {
  animation-delay: 0.7s;
}
.p-hero__scroll-txt span:nth-child(16) {
  animation-delay: 0.75s;
}
.p-hero__scroll-txt span:nth-child(17) {
  animation-delay: 0.8s;
}
.p-hero__scroll-txt span:nth-child(18) {
  animation-delay: 0.85s;
}
.p-hero__scroll-txt span:nth-child(19) {
  animation-delay: 0.9s;
}
.p-hero__scroll-txt span:nth-child(20) {
  animation-delay: 0.95s;
}
.p-hero__scroll-arrow {
  width: 28px;
  margin: 0 auto;
  transform: scaleY(-1);
}
.p-hero__scroll:hover .p-hero__scroll-arrow {
  animation: arrow_b_reverse 0.8s forwards;
}
.p-hero__scroll-arrow svg {
  fill: transparent;
  stroke: #000;
  stroke-width: 1px;
}
@media not all and (max-width: 900px) {
  .p-hero__inner {
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  }
  .p-hero__inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    transform: scaleX(1);
    transform-origin: right;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  }
  .is-show .p-hero__inner {
    opacity: 1;
  }
  .is-show .p-hero__inner::after {
    transform: scaleX(0);
  }
}
@media screen and (max-width: 900px) {
  .p-hero__inner {
    width: 100%;
  }
}
@media not all and (max-width: 900px) {
  .p-hero__inner-bg {
    position: absolute;
    top: 0;
    right: calc(var(--bgslantWidth) * -1);
    width: calc(100% + var(--bgslantWidth) * 2);
    height: 100%;
    opacity: 0.2;
    display: flex;
    justify-content: flex-end;
  }
  .p-hero__inner-bg .p-in-slant {
    position: relative;
    width: auto;
    height: 100%;
    transition: none;
    flex-shrink: 0;
  }
  .is-change .p-hero__inner-bg .p-in-slant {
    width: auto;
  }
  .p-hero__inner-bg .p-in-slant::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-mask: url(../img/common/slant.svg) right center no-repeat;
    mask: url(../img/common/slant.svg) right center no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: currentColor;
    transform: translateX(1px);
  }
  .p-hero__inner-bg .p-in-slant img {
    width: 100%;
    height: 100%;
  }
  .p-hero__inner-bg .p-in-bg {
    width: 100%;
    background: currentColor;
    opacity: 0;
  }
  .is-change .p-hero__inner-bg .p-in-bg {
    animation: bg_slant 7s linear 0s forwards;
  }
  .is-single .p-hero__inner-bg .p-in-bg {
    opacity: 1;
    width: 100%;
  }
}
@media not all and (max-width: 900px) {
  .p-hero__pickup {
    width: 100%;
    height: 59.4353640416%;
    overflow: visible;
    min-height: 450px;
  }
  @media screen and (max-width: 1300px) {
    .p-hero__pickup {
      height: 55%;
    }
  }
  @media screen and (max-width: 1100px) {
    .p-hero__pickup {
      height: 43%;
    }
  }
  @media screen and (max-width: 1000px) {
    .p-hero__pickup {
      height: 38%;
    }
  }
}

.p-hero_pickup {
  transform: translate3d(0px, 0px, 0px) !important;
}
@media not all and (max-width: 900px) {
  .p-hero_pickup {
    display: flex;
    justify-content: space-between;
    height: 100%;
  }
}
@media screen and (max-width: 900px) {
  .p-hero_pickup {
    display: block !important;
  }
}
.p-hero_pickup__item {
  position: relative;
}
@media not all and (max-width: 900px) {
  .p-hero_pickup__item {
    display: flex;
    width: 40px !important;
    transition: width 0.75s cubic-bezier(0.65, 0, 0.35, 1);
    background: currentColor;
  }
  @media screen and (max-width: 1250px) {
    .p-hero_pickup__item {
      width: 30px !important;
    }
  }
  .p-hero_pickup__item.is-current {
    width: calc(100% - var(--inactiveSlidesWidth)) !important;
  }
  @media screen and (max-width: 1250px) {
    .p-hero_pickup__item.is-current {
      width: calc(100% - var(--inactiveSlidesWidth-u1250)) !important;
    }
  }
}
@media screen and (max-width: 900px) {
  .p-hero_pickup__item {
    height: 40px;
    transition: height 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  }
  .p-hero_pickup__item.is-current {
    height: auto;
  }
}
.p-hero_pickup__head {
  background: currentColor;
}
@media not all and (max-width: 900px) {
  .p-hero_pickup__head {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    width: 40px;
    cursor: pointer;
    transition: opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1);
  }
  @media screen and (max-width: 1250px) {
    .p-hero_pickup__head {
      width: 30px;
    }
  }
  .is-current .p-hero_pickup__head {
    opacity: 0;
  }
}
@media screen and (max-width: 900px) {
  .p-hero_pickup__head {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    transition: opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .is-current .p-hero_pickup__head {
    opacity: 0;
  }
}
.p-hero_pickup__ttl {
  line-height: 1;
  font-weight: 600;
  color: var(--color-white);
  display: flex;
  align-items: center;
}
@media not all and (max-width: 900px) {
  .p-hero_pickup__ttl {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 100%;
    padding-top: 19px;
    writing-mode: vertical-rl;
    font-size: clamp(10px, 0.9285714286vw, 13px);
    letter-spacing: 0.03rem;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .p-hero_pickup__head:hover .p-hero_pickup__ttl {
    opacity: 0.6;
  }
  @media screen and (max-width: 1250px) {
    .p-hero_pickup__ttl {
      width: 30px;
    }
  }
}
@media screen and (max-width: 900px) {
  .p-hero_pickup__ttl {
    position: absolute;
    top: 0;
    left: 6.2%;
    width: 100%;
    height: 100%;
    font-size: min(2.9333333333vw, 16px);
    letter-spacing: 0.025rem;
  }
}
.p-hero_pickup__ttl span {
  display: inline-block;
}
@media not all and (max-width: 900px) {
  .p-hero_pickup__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 900px) {
  .p-hero_pickup__inner {
    position: relative;
    width: 100%;
    height: 100%;
  }
}
.p-hero_pickup__inner-container {
  display: block;
  pointer-events: none;
  opacity: 0;
}
@media not all and (max-width: 900px) {
  .p-hero_pickup__inner-container {
    width: 100%;
    height: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    transition: opacity 0.3s cubic-bezier(0.65, 0, 0.35, 1) 0s;
  }
  .is-current .p-hero_pickup__inner-container {
    pointer-events: auto;
    opacity: 1;
    transition: opacity 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0s;
  }
  @media screen and (max-width: 1250px) {
    .p-hero_pickup__inner-container {
      width: calc(100% - 60px);
      padding: 0 30px;
    }
  }
}
@media screen and (max-width: 900px) {
  .p-hero_pickup__inner-container {
    display: block;
    width: 100%;
    padding-bottom: 31px;
    transition: opacity 0.3s cubic-bezier(0.65, 0, 0.35, 1) 0s;
  }
  .is-current .p-hero_pickup__inner-container {
    transition: opacity 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0s;
    opacity: 1;
  }
  .is-clickable .p-hero_pickup__inner-container {
    pointer-events: auto;
  }
}
.p-hero_pickup__bg {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
}
@media not all and (max-width: 900px) {
  .p-hero_pickup__bg {
    top: 0;
  }
}
@media screen and (max-width: 900px) {
  .p-hero_pickup__bg {
    bottom: 0;
  }
}
.p-hero_pickup__bg-color {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 900px) {
  .p-hero_pickup__bg-color {
    background: currentColor;
  }
}
.p-hero_pickup__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
}
.p-hero_pickup__jk {
  position: relative;
}
@media not all and (max-width: 900px) {
  .p-hero_pickup__jk {
    width: min(45.9501557632%, 700px);
    height: auto;
    flex-shrink: 0;
    transform: translate(-50px, -50px);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.65s, opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1) 0.65s;
  }
  .is-current .p-hero_pickup__jk {
    opacity: 1;
    transform: translate(0px, 0px);
  }
  .p-hero_pickup__jk a {
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .p-hero_pickup__jk a:hover {
    transform: scale(0.98);
  }
}
@media screen and (max-width: 900px) {
  .p-hero_pickup__jk {
    margin-bottom: 26px;
    padding-top: 40px;
  }
  .p-hero_pickup__jk::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(50% + 40px);
    background: var(--color-white);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1) 0.5s;
  }
  .is-current .p-hero_pickup__jk::before {
    transform: scaleY(1);
  }
  .p-hero_pickup__jk::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% + 50px);
    height: calc(50% + 41px);
    background: currentColor;
    -webkit-clip-path: polygon(50px 0%, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(50px 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 0;
  }
  .is-current .p-hero_pickup__jk::after {
    animation: bg_slant_sp 7s linear forwards 0.5s;
  }
  .is-single .p-hero_pickup__jk::after {
    opacity: 0.2;
    width: 100%;
    animation: none;
  }
}
@media not all and (max-width: 900px) {
  .p-hero_pickup__jk-inner {
    transform: translate(-50px, -50px);
    opacity: 0;
  }
  .is-load .p-hero_pickup__jk-inner {
    animation: show_load_jk-pc 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
  }
  .p-hero_pickup__jk-inner img {
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
  }
}
@media screen and (max-width: 900px) {
  .p-hero_pickup__jk-inner {
    position: relative;
    z-index: 1;
    width: 73.5%;
    margin: 0 auto;
    transform: translate(-30px, -30px);
    opacity: 0;
  }
  .is-load .p-hero_pickup__jk-inner {
    animation: show_load_jk-sp 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
  }
  .p-hero_pickup__jk-inner img {
    display: block;
    transform: translate(-30px, -30px);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.5s, opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1) 0.5s;
  }
  .is-current .p-hero_pickup__jk-inner img {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
.p-hero_pickup__data {
  position: relative;
}
@media not all and (max-width: 900px) {
  .p-hero_pickup__data {
    padding-left: 40px;
    flex-grow: 1;
    transform: translateX(100px);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.7s, opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.7s;
  }
  @media screen and (max-width: 1250px) {
    .p-hero_pickup__data {
      padding-left: 30px;
    }
  }
  .is-current .p-hero_pickup__data {
    transform: translateX(0);
    opacity: 1;
  }
}
@media screen and (max-width: 900px) {
  .p-hero_pickup__data {
    width: 87%;
    margin: 0 auto;
    transform: translateX(50px);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.5s, opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.4s;
  }
  .is-current .p-hero_pickup__data {
    transform: translateX(0);
    opacity: 1;
  }
}
@media not all and (max-width: 900px) {
  .p-hero_pickup__data-inner {
    margin-bottom: 5%;
    transform: translateX(100px);
    opacity: 0;
  }
  .is-load .p-hero_pickup__data-inner {
    animation: show_load_inner_pc 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
  }
}
@media screen and (max-width: 900px) {
  .p-hero_pickup__data-inner {
    margin-bottom: 20px;
    transform: translateX(50px);
    opacity: 0;
  }
  .is-load .p-hero_pickup__data-inner {
    animation: show_load_inner_sp 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
  }
}
.p-hero_pickup__data-category {
  font-weight: 600;
}
@media not all and (max-width: 900px) {
  .p-hero_pickup__data-category {
    margin-bottom: 3px;
    font-size: 1.1428571429vw;
    letter-spacing: 0.04rem;
  }
}
@media screen and (max-width: 900px) {
  .p-hero_pickup__data-category {
    font-size: 3.4666666667vw;
    margin-bottom: 4px;
  }
}
@media not all and (max-width: 900px) {
  .p-hero_pickup__data-category.is-exception01 {
    font-size: 2.1428571429vw;
  }
}
@media screen and (max-width: 900px) {
  .p-hero_pickup__data-category.is-exception01 {
    line-height: 1.8;
    font-size: 5.3333333333vw;
  }
}
.p-hero_pickup__data-unit {
  font-weight: 700;
}
@media not all and (max-width: 900px) {
  .p-hero_pickup__data-unit {
    font-size: min(2.1428571429vw, 65px);
    letter-spacing: 0.07rem;
  }
}
@media screen and (max-width: 900px) {
  .p-hero_pickup__data-unit {
    font-size: 6.4vw;
    letter-spacing: 0.07rem;
  }
}
.p-hero_pickup__data-ttl {
  font-weight: 800;
  font-style: italic;
}
@media not all and (max-width: 900px) {
  .p-hero_pickup__data-ttl {
    margin-top: 3.8%;
    font-size: min(3.5714285714vw, 100px);
    line-height: 1;
    letter-spacing: 0.07em;
  }
}
@media screen and (max-width: 900px) {
  .p-hero_pickup__data-ttl {
    margin-top: 11px;
    margin-bottom: 5px;
    font-size: 40px;
    font-size: 11.7333333333vw;
    letter-spacing: 0.1rem;
    line-height: 0.95;
  }
}
@media not all and (max-width: 900px) {
  .p-hero_pickup__data-ttl.is-exception01 {
    font-size: min(3.5714285714vw, 100px);
  }
}
@media screen and (max-width: 900px) {
  .p-hero_pickup__data-ttl.is-exception01 {
    font-size: 8.8vw;
  }
}
.p-hero_pickup__data-ttl .p-in-sub {
  display: inline-block;
  vertical-align: baseline;
}
@media not all and (max-width: 900px) {
  .p-hero_pickup__data-ttl .p-in-sub {
    font-size: min(2.5vw, 70px);
  }
}
@media screen and (max-width: 900px) {
  .p-hero_pickup__data-ttl .p-in-sub {
    font-size: 6.6666666667vw;
  }
}
.p-hero_pickup__data-release {
  font-weight: 700;
  font-style: italic;
}
@media not all and (max-width: 900px) {
  .p-hero_pickup__data-release {
    margin-top: 3%;
    font-size: min(2.1428571429vw, 65px);
    letter-spacing: 0.05rem;
  }
}
@media screen and (max-width: 900px) {
  .p-hero_pickup__data-release {
    font-size: 8vw;
    letter-spacing: 0.07rem;
  }
}
.p-hero_pickup__data-link {
  width: 55%;
  min-width: 180px;
}
.p-hero_pickup__data-link .p-in-link {
  display: block;
  padding: 11px;
  text-align: center;
  background-color: var(--color-black);
  font-weight: 600;
  position: relative;
}
@media not all and (max-width: 900px) {
  .p-hero_pickup__data-link .p-in-link {
    padding: max(4%, 10px);
    font-size: max(1.2vw, 10px);
  }
  .p-hero_pickup__data-link .p-in-link:hover::after {
    animation: arrow_r 0.8s;
  }
}
.p-hero_pickup__data-link .p-in-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 14px;
  height: 14px;
  -webkit-mask: url(../img/common/arrow/arrow1.svg) center center no-repeat;
  mask: url(../img/common/arrow/arrow1.svg) center center no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: var(--color-white);
  transform: translateY(-50%);
}
@media screen and (max-width: 900px) {
  .p-hero_pickup__data-link .p-in-link::after {
    right: 13px;
    width: 8px;
    height: 8px;
  }
}

.p-banner {
  padding-top: 40px;
  padding-bottom: 40px;
  background: url(../img/top/bnr_bg_solo_playlist_pc.jpg) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 900px) {
  .p-banner {
    padding-top: 25px;
    padding-bottom: 25px;
    background: url(../img/top/bnr_bg_solo_playlist_sp.jpg) no-repeat center center;
    background-size: cover;
  }
}
@media not all and (max-width: 900px) {
  .p-banner__container {
    width: 90%;
    max-width: 1170px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 900px) {
  .p-banner__container {
    width: 86.6666666667%;
    max-width: 500px;
    margin: 0 auto;
  }
}
.p-banner_lead {
  text-align: center;
  color: var(--color-white);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0em;
}
@media screen and (max-width: 900px) {
  .p-banner_lead {
    font-size: 14px;
    line-height: 1.5;
  }
}
.p-banner_btn-link {
  width: 300px;
  margin: 20px auto 0;
}
@media screen and (max-width: 900px) {
  .p-banner_btn-link {
    width: 60%;
    min-width: 195px;
    margin: 15px auto 0;
  }
}
.p-banner_btn-link .p-in-link {
  display: block;
  padding: 14.4px;
  text-align: center;
  background-color: var(--color-white);
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--color-black);
  position: relative;
}
@media not all and (max-width: 900px) {
  .p-banner_btn-link .p-in-link:hover::after {
    animation: arrow_r 0.8s;
  }
}
@media screen and (max-width: 900px) {
  .p-banner_btn-link .p-in-link {
    padding: 12px;
  }
}
.p-banner_btn-link .p-in-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 14px;
  height: 14px;
  -webkit-mask: url(../img/common/arrow/arrow1.svg) center center no-repeat;
  mask: url(../img/common/arrow/arrow1.svg) center center no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: var(--color-black);
  transform: translateY(-50%);
}
@media screen and (max-width: 900px) {
  .p-banner_btn-link .p-in-link::after {
    right: 13px;
    width: 8px;
    height: 8px;
  }
}

.p-sns {
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--color-bg-gray);
}
@media screen and (max-width: 900px) {
  .p-sns {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media not all and (max-width: 900px) {
  .p-sns__container {
    width: 90%;
    max-width: 1170px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 900px) {
  .p-sns__container {
    width: 86.6666666667%;
    max-width: 500px;
    margin: 0 auto;
  }
}
@media not all and (max-width: 900px) {
  .p-sns__head {
    width: 70.0854700855%;
    flex-shrink: 0;
    margin-right: 4.2735042735%;
  }
}
@media screen and (max-width: 900px) {
  .p-sns__head {
    margin-bottom: 31px;
  }
}
.p-sns__timeline {
  position: relative;
  background: var(--color-white);
}
@media not all and (max-width: 900px) {
  .p-sns__timeline {
    padding: 20px;
  }
}
@media screen and (max-width: 900px) {
  .p-sns__timeline {
    padding: 10px;
  }
}
.p-sns__timeline #twitter-timeline {
  height: 342px;
}
.p-sns__timeline .u-spinner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.is-load .p-sns__timeline .u-spinner {
  opacity: 1;
}
.p-sns__timeline.is-rendered .u-spinner {
  opacity: 0;
}
.p-sns__inner {
  margin-top: -4px;
}
@media not all and (max-width: 900px) {
  .p-sns__inner {
    flex-grow: 1;
  }
}
.p-sns__radio {
  position: relative;
  margin-top: 40px;
}
@media not all and (max-width: 900px) {
  .p-sns__radio {
    overflow: hidden;
  }
  .p-sns__radio::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-navy);
    opacity: 0.3;
    animation: clip-out 0.35s cubic-bezier(0.5, 1, 0.89, 1) forwards;
    pointer-events: none;
  }
  .p-sns__radio:hover::after {
    animation: clip-in 0.35s cubic-bezier(0.5, 1, 0.89, 1) forwards;
  }
  .p-sns__radio:hover a {
    transform: scale(1.05);
  }
}
@media screen and (max-width: 900px) {
  .p-sns__radio {
    margin-top: 50px;
  }
}
.p-sns__radio a {
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.p-sns_link__ttl {
  position: relative;
  margin-bottom: 15px;
  text-align: center;
  font-size: 33px;
  letter-spacing: 0.1rem;
  line-height: 1;
  font-weight: 700;
  font-style: italic;
  color: var(--color-white);
}
@media screen and (max-width: 900px) {
  .p-sns_link__ttl {
    margin-bottom: 17px;
    font-size: 27px;
    letter-spacing: 0.12rem;
  }
}
.p-sns_link__ttl::before {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-text-stroke: 2.5px var(--color-black);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 900px) {
  .p-sns_link__ttl::before {
    -webkit-text-stroke: 2px var(--color-black);
  }
}
.p-sns_link__ttl::after {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  color: var(--color-bg-gray);
}
.p-sns_link__list {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 900px) {
  .p-sns_link__list {
    display: block;
    width: 84.5%;
    margin: 0 auto;
  }
}
.p-sns_link__list-item {
  width: 300px;
  margin: 0 10px;
}
@media screen and (max-width: 900px) {
  .p-sns_link__list-item {
    width: 100%;
    margin: 0 auto;
  }
  .p-sns_link__list-item + .p-sns_link__list-item {
    margin-top: 10px;
  }
}
.p-sns_link__list-item.--main {
  background: var(--color-white);
}
.p-sns_link__list-item.--disc {
  background: var(--color-navy);
}
.p-sns_link__txt {
  position: relative;
  display: block;
  padding: 19px 0;
}
@media not all and (max-width: 900px) {
  .p-sns_link__txt:hover::after {
    animation: arrow_blank 0.8s forwards;
  }
}
@media screen and (max-width: 900px) {
  .p-sns_link__txt {
    padding: 15.5px 0;
  }
}
.p-sns_link__txt::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  -webkit-mask: url(../img/common/arrow/arrow4.svg) center center no-repeat;
  mask: url(../img/common/arrow/arrow4.svg) center center no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: var(--color-black);
  transform: translateY(-50%);
}
.--disc .p-sns_link__txt::after {
  background: var(--color-white);
}
.p-sns_link__txt-icon {
  position: absolute;
  top: 50%;
  left: 4px;
  width: 50px;
  height: 100%;
  transform: translateY(-42%);
}
@media screen and (max-width: 900px) {
  .p-sns_link__txt-icon {
    width: 42px;
  }
}
.p-sns_link__txt-account {
  text-align: center;
  font-style: italic;
  font-size: 17px;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 900px) {
  .p-sns_link__txt-account {
    font-size: 14px;
  }
}
.--disc .p-sns_link__txt-account {
  color: var(--color-white);
}

.p-sns_service {
  margin-bottom: 58px;
}
@media screen and (max-width: 900px) {
  .p-sns_service {
    margin-bottom: 48px;
  }
}
.p-sns_service__ttl {
  position: relative;
  margin-bottom: 18px;
  text-align: center;
  font-size: 33px;
  letter-spacing: 0.1rem;
  line-height: 1;
  font-weight: 700;
  font-style: italic;
  color: var(--color-white);
}
@media screen and (max-width: 900px) {
  .p-sns_service__ttl {
    margin-bottom: 9px;
    font-size: 27px;
    letter-spacing: 0.12rem;
  }
}
.p-sns_service__ttl::before {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-text-stroke: 2.5px var(--color-black);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 900px) {
  .p-sns_service__ttl::before {
    -webkit-text-stroke: 2px var(--color-black);
  }
}
.p-sns_service__ttl::after {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  color: var(--color-bg-gray);
}
.p-sns_service-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 900px) {
  .p-sns_service-list {
    width: 84.5%;
    margin: 0 auto;
  }
}
.p-sns_service-list-item {
  width: 50px;
  margin-right: 50px;
  transition: transform 0.5s cubic-bezier(0.5, 1, 0.89, 1);
}
@media not all and (max-width: 900px) {
  .p-sns_service-list-item:hover {
    transform: scale(0.95);
  }
}
@media screen and (max-width: 900px) {
  .p-sns_service-list-item {
    width: 42px;
    margin-right: 40px;
  }
}
.p-sns_service-list-item:nth-of-type(1) {
  margin-top: 7px;
}
.p-sns_service-list-item:nth-of-type(2) {
  width: 45.8px;
}
@media screen and (max-width: 900px) {
  .p-sns_service-list-item:nth-of-type(2) {
    width: 38px;
  }
}
.p-sns_service-list-item:last-of-type {
  margin-right: 0;
}
.p-sns_service-list-item + .p-sns_service-list-item {
  margin-top: 10px;
}
.p-sns_service-list-item.--main {
  background: var(--color-white);
}
.p-sns_service-list-item.--disc {
  background: var(--color-navy);
}
.p-sns_service__txt {
  position: relative;
  display: block;
  padding: 19px 0;
}
@media not all and (max-width: 900px) {
  .p-sns_service__txt:hover::after {
    animation: arrow_blank 0.8s forwards;
  }
}
@media screen and (max-width: 900px) {
  .p-sns_service__txt {
    padding: 15.5px 0;
  }
}
.p-sns_service__txt::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  -webkit-mask: url(../img/common/arrow/arrow4.svg) center center no-repeat;
  mask: url(../img/common/arrow/arrow4.svg) center center no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: var(--color-black);
  transform: translateY(-50%);
}
.--disc .p-sns_service__txt::after {
  background: var(--color-white);
}
.p-sns_service__txt-icon {
  position: absolute;
  top: 50%;
  left: 4px;
  width: 50px;
  height: 100%;
  transform: translateY(-42%);
}
@media screen and (max-width: 900px) {
  .p-sns_service__txt-icon {
    width: 42px;
  }
}
.p-sns_service__txt-account {
  text-align: center;
  font-style: italic;
  font-size: 17px;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 900px) {
  .p-sns_service__txt-account {
    font-size: 14px;
  }
}
.--disc .p-sns_service__txt-account {
  color: var(--color-white);
}

.p-info__inner {
  display: flex;
}
@media screen and (max-width: 900px) {
  .p-info__inner {
    display: block;
  }
}

.p-info__block {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .p-info__block {
    width: 100%;
    padding: 57px 0 68px;
  }
}

.p-info__movie {
  width: 100%;
}
.p-info__movie::before {
  content: "";
  display: block;
  width: 100%;
  height: 86px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/bg_movie.png) left top/477px 86px;
  animation: movieText 10s linear infinite;
}
@keyframes movieText {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 477px;
  }
}
@media screen and (max-width: 900px) {
  .p-info__movie::before {
    height: 57.3333333333px;
    background: url(../img/bg_movie.png) left top/318px 57.3333333333px;
  }
}
.p-info__movie::after {
  content: "";
  display: block;
  width: 100%;
  height: 86px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(180deg);
  background: url(../img/bg_movie.png) left top/477px 86px;
  animation: movieText 10s linear infinite;
}
@media screen and (max-width: 900px) {
  .p-info__movie::after {
    height: 57.3333333333px;
    background: url(../img/bg_movie.png) left top/318px 57.3333333333px;
  }
}
.p-info__movie-ttl {
  text-align: center;
  font-size: 82px;
  font-weight: 600;
  margin-bottom: 16px;
  font-style: italic;
  position: relative;
}
@media screen and (max-width: 900px) {
  .p-info__movie-ttl {
    font-size: 42px;
  }
}
.p-info__movie-contents {
  width: 77.2%;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .p-info__movie-contents {
    width: 87%;
  }
}
.p-info__movie-contents-list-item.swiper-slide-active {
  position: relative;
  z-index: 2;
}
@media not all and (max-width: 900px) {
  .p-info__movie-contents-list-item:hover .p-info__movie-contents-image::before {
    animation: clip-out 0.3s cubic-bezier(0.5, 1, 0.89, 1) forwards;
  }
  .p-info__movie-contents-list-item:hover .p-in-icon::after {
    transform: translate(-50%, -50%) scale(1.1);
  }
}
.p-info__movie-contents-image {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
.p-info__movie-contents-image::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: currentColor;
  z-index: 1;
  opacity: 0.5;
  animation: clip-in 0.3s cubic-bezier(0.5, 1, 0.89, 1) forwards;
}
.p-info__movie-contents-image .p-in-item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.p-info__movie-contents-image .p-in-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 6%;
  padding-top: 6%;
  -webkit-mask: url(../img/in/movie_play.svg) center center no-repeat;
  mask: url(../img/in/movie_play.svg) center center no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--color-white);
  transform: translate(-34%, -50%);
  z-index: 1;
}
.p-info__movie-contents-image .p-in-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 21%;
  padding-top: 21%;
  border-radius: 50%;
  border: 1px solid var(--color-white);
  transform: translate(-50%, -50%);
  transition: transform 0.4s cubic-bezier(0.5, 1, 0.89, 1);
  z-index: 1;
}
.p-info__movie-contents-title {
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
  color: var(--color-black);
}
@media screen and (max-width: 900px) {
  .p-info__movie-contents-title {
    margin-top: 8px;
    text-align: center;
    font-size: 14px;
  }
}
.p-info__movie-contents-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 900px) {
  .p-info__movie-contents-pagination {
    position: static;
    margin-top: 21px;
  }
}
.p-info__movie-contents-pagination .p-in-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  -webkit-mask: none;
  mask: none;
  border-radius: 50rem;
  box-sizing: content-box;
  position: relative;
  border: 1px solid transparent;
  opacity: 1;
  transition: border-color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: transparent;
}
.p-info__movie-contents-pagination .p-in-item.swiper-pagination-bullet-active {
  border: 1px solid currentColor;
}
@media screen and (max-width: 900px) {
  .p-info__movie-contents-pagination .p-in-item {
    width: 20%;
    padding-top: 20%;
    height: auto;
  }
}
.p-info__movie-contents-pagination .p-in-item .p-in-item-image {
  width: 80px;
  height: 80px;
  border-radius: 50rem;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 900px) {
  .p-info__movie-contents-pagination .p-in-item .p-in-item-image {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.p-info__playlist {
  width: 100%;
  padding: 60px 0;
}
@media screen and (max-width: 900px) {
  .p-info__playlist {
    padding: 0;
  }
}
.p-info__playlist-inner {
  width: 77%;
  margin: 0 auto;
  padding: 46px 0 60px;
  background-color: var(--color-black);
  position: relative;
}
@media screen and (max-width: 900px) {
  .p-info__playlist-inner {
    width: 73%;
    padding: 28px 0 25px;
  }
}
.p-info__playlist-bg {
  display: flex;
  flex-wrap: wrap;
  width: 200%;
  min-width: 1200px;
  height: 200%;
  gap: 10px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: rotate(45deg) translateX(-50%);
  background-color: #d7e1e1;
  pointer-events: none;
}
@media screen and (max-width: 900px) {
  .p-info__playlist-bg {
    min-width: 200%;
  }
}
.p-info__playlist-bg-inner {
  width: calc(25% - 10px);
  opacity: 0.3;
  margin-bottom: 10px;
  position: absolute;
  transform: translateX(-50%);
}
.p-info__playlist-bg-inner:nth-of-type(1) {
  left: 0%;
}
.p-info__playlist-bg-inner:nth-of-type(2) {
  left: 25%;
}
.p-info__playlist-bg-inner:nth-of-type(3) {
  left: 50%;
}
.p-info__playlist-bg-inner:nth-of-type(4) {
  left: 75%;
}
.p-info__playlist-bg-inner:nth-of-type(even) {
  top: 0;
}
.p-info__playlist-bg-inner:nth-of-type(even) .p-info__playlist-bg-list {
  animation: movieBgTop 140s linear infinite;
}
.p-info__playlist-bg-inner:nth-of-type(odd) {
  bottom: 0;
}
.p-info__playlist-bg-inner:nth-of-type(odd) .p-info__playlist-bg-list {
  animation: movieBgBtm 140s linear infinite;
}
@keyframes movieBgTop {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes movieBgBtm {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}
.p-info__playlist-bg-item {
  margin-bottom: 10px;
  flex-shrink: 0;
}
.p-info__playlist-bg-item:last-of-type() {
  margin-bottom: 0;
}
.p-info__playlist-ttl {
  margin-bottom: 24px;
  text-align: center;
  font-size: 3.2rem;
  letter-spacing: 0.03em;
  font-weight: 600;
  font-style: italic;
  color: var(--color-white);
}
@media screen and (max-width: 900px) {
  .p-info__playlist-ttl {
    margin-bottom: 18px;
    font-size: 1.6rem;
  }
}
.p-info__playlist-contents {
  width: 78%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 900px) {
  .p-info__playlist-contents {
    width: 82%;
  }
}
.p-info__playlist-contents-icon {
  width: 17%;
  position: absolute;
  top: -3.8%;
  left: -5%;
  z-index: 1;
}
@media screen and (max-width: 900px) {
  .p-info__playlist-contents-icon {
    width: 21%;
  }
}
.p-info__playlist-contents-image {
  width: 100%;
  position: relative;
}
.p-info__playlist-contents-title {
  font-size: 13px;
  text-align: center;
  line-height: 1.5;
  color: var(--color-white);
  margin-top: 17px;
}
@media screen and (max-width: 900px) {
  .p-info__playlist-contents-title {
    margin-top: 10px;
  }
}
.p-info__playlist-contents-link {
  width: 300px;
  margin: 38px auto 0;
}
@media screen and (max-width: 900px) {
  .p-info__playlist-contents-link {
    width: 87%;
    margin: 17px auto 0;
  }
}
.p-info__playlist-contents-link .p-in-link {
  display: block;
  padding: 14.4px;
  text-align: center;
  background-color: var(--color-white);
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--color-black);
  position: relative;
}
@media not all and (max-width: 900px) {
  .p-info__playlist-contents-link .p-in-link:hover::after {
    animation: arrow_r 0.8s;
  }
}
@media screen and (max-width: 900px) {
  .p-info__playlist-contents-link .p-in-link {
    padding: 12px;
  }
}
.p-info__playlist-contents-link .p-in-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 14px;
  height: 14px;
  -webkit-mask: url(../img/common/arrow/arrow1.svg) center center no-repeat;
  mask: url(../img/common/arrow/arrow1.svg) center center no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: var(--color-black);
  transform: translateY(-50%);
}
@media screen and (max-width: 900px) {
  .p-info__playlist-contents-link .p-in-link::after {
    right: 13px;
    width: 8px;
    height: 8px;
  }
}
.p-info__playlist-link {
  width: 240px;
  margin: 30px auto 0;
}
@media screen and (max-width: 900px) {
  .p-info__playlist-link {
    width: 176px;
    margin: 19px auto 0;
  }
}
.p-info__playlist-link .p-in-link {
  display: block;
  padding: 15px;
  text-align: center;
  background-color: var(--color-black);
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--color-white);
  position: relative;
}
@media not all and (max-width: 900px) {
  .p-info__playlist-link .p-in-link:hover::after {
    animation: arrow_r 0.8s;
  }
}
@media screen and (max-width: 900px) {
  .p-info__playlist-link .p-in-link {
    padding: 13px;
    font-size: 12px;
  }
}
.p-info__playlist-link .p-in-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 14px;
  height: 14px;
  -webkit-mask: url(../img/common/arrow/arrow1.svg) center center no-repeat;
  mask: url(../img/common/arrow/arrow1.svg) center center no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: var(--color-white);
  transform: translateY(-50%);
}
@media screen and (max-width: 900px) {
  .p-info__playlist-link .p-in-link::after {
    right: 14px;
    width: 8px;
    height: 8px;
  }
}

.p-series__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--color-white);
}
@media not all and (max-width: 900px) {
  @media screen and (min-width: 1600px) {
    .p-series__container {
      grid-template-columns: repeat(5, 1fr);
    }
  }
}
@media screen and (max-width: 900px) {
  .p-series__container {
    grid-template-columns: 50% 50%;
  }
}
.p-series__head {
  position: relative;
  padding-top: 6.8%;
  padding-bottom: 9%;
  grid-area: 1/1/3/3;
  border-bottom: 1px solid var(--color-line-gray);
}
@media not all and (max-width: 900px) {
  .p-series__head {
    color: var(--color-white);
    background: var(--color-white);
    border-right: 1px solid var(--color-line-gray);
  }
}
@media screen and (max-width: 900px) {
  .p-series__head {
    padding-top: 11.4666666667%;
    padding-bottom: 12.5333333333%;
    grid-area: 1/1/3/3;
  }
}
.p-series__head-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media not all and (max-width: 900px) {
  .p-series__head-link:hover::before {
    animation: clip-in 0.4s cubic-bezier(0.5, 1, 0.89, 1) forwards;
  }
  .p-series__head-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: currentColor;
    opacity: 0.2;
    animation: clip-out 0.4s cubic-bezier(0.5, 1, 0.89, 1) forwards;
  }
}
.p-series__head-container {
  width: 88.2%;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .p-series__head-container {
    width: 86.6666666667%;
    max-width: 500px;
    margin: 0 auto;
    max-width: none;
  }
}
.p-series__ttl {
  margin-bottom: 8%;
  font-size: 60px;
  font-size: 4.2857142857vw;
  line-height: 1.08;
  font-style: italic;
  font-weight: 900;
}
@media not all and (max-width: 900px) {
  .p-series__ttl {
    mix-blend-mode: difference;
    color: var(--color-white);
  }
}
@media screen and (max-width: 900px) {
  .p-series__ttl {
    margin-bottom: 9.8666666667%;
    font-size: 39px;
    font-size: min(10.4vw, 70px);
    line-height: 1.12;
    letter-spacing: 0.05rem;
    color: var(--color-black);
  }
}
@media not all and (max-width: 900px) {
  .p-series__main-jk {
    padding-bottom: 4%;
  }
}
@media screen and (max-width: 900px) {
  .p-series__main-jk {
    margin-bottom: 4.5%;
  }
}
.p-series__main-data {
  line-height: 1.4;
  color: var(--color-white);
  background: var(--color-white);
}
.p-series__main-data .p-in-detail {
  font-size: 17px;
  letter-spacing: 0.02rem;
  color: var(--color-type);
}
.--ex .p-series__main-data .p-in-detail {
  color: var(--color-type2);
}
@media screen and (max-width: 900px) {
  .p-series__main-data .p-in-detail {
    font-size: 13px;
    letter-spacing: 0.03rem;
  }
}
.p-series__main-data .p-in-unit {
  font-size: 17px;
  mix-blend-mode: difference;
}
@media screen and (max-width: 900px) {
  .p-series__main-data .p-in-unit {
    font-size: 13px;
    letter-spacing: 0.02rem;
  }
}
.p-series__main-data .p-in-ttl {
  margin-top: 2px;
  font-weight: 700;
  font-style: italic;
  font-size: 49px;
  letter-spacing: 0.1rem;
  line-height: 1.3;
  mix-blend-mode: difference;
}
@media screen and (max-width: 900px) {
  .p-series__main-data .p-in-ttl {
    font-size: 25px;
    letter-spacing: 0.04rem;
  }
}
.p-series__main-data .p-in-release {
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.1rem;
  mix-blend-mode: difference;
}
@media screen and (max-width: 900px) {
  .p-series__main-data .p-in-release {
    font-size: 15px;
    letter-spacing: 0.05rem;
  }
}
.p-series__item {
  border-bottom: 1px solid var(--color-line-gray);
  border-right: 1px solid var(--color-line-gray);
}
.p-series__item.is-disable {
  pointer-events: none;
}
@media not all and (max-width: 900px) {
  @media screen and (max-width: 1600px) {
    .p-series__item:nth-child(3), .p-series__item:nth-child(4n+1) {
      border-right: 0;
    }
  }
  @media screen and (min-width: 1600px) {
    .p-series__item:nth-child(4), .p-series__item:nth-child(5n+2) {
      border-right: 0;
    }
    .p-series__item:nth-child(2) {
      border-right: 1px solid var(--color-line-gray);
    }
  }
}
@media screen and (max-width: 900px) {
  .p-series__item:nth-child(odd) {
    border-right: 0;
  }
}
.p-series__item-link {
  position: relative;
  display: block;
}
@media not all and (max-width: 900px) {
  .p-series__item-link {
    width: 100%;
    height: 100%;
  }
  .p-series__item-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: currentColor;
    opacity: 0.2;
    animation: clip-out 0.3s cubic-bezier(0.5, 1, 0.89, 1) forwards;
  }
  .p-series__item-link:hover::before {
    animation: clip-in 0.3s cubic-bezier(0.5, 1, 0.89, 1) forwards;
  }
}
@media screen and (max-width: 900px) {
  .p-series__item-link {
    min-height: 332px;
  }
}
.p-series__item-container {
  width: 90%;
  width: 77.1428571429%;
  margin: 0 auto;
}
@media not all and (max-width: 900px) {
  .p-series__item-container {
    padding: 11.4285714286% 0;
  }
}
@media screen and (max-width: 900px) {
  .p-series__item-container {
    width: 73.3333333333%;
    padding: 13.5593220339% 0;
  }
}
.p-series__item-jk {
  margin-bottom: 9.5%;
}
@media screen and (max-width: 900px) {
  .p-series__item-jk {
    margin-bottom: 11.5%;
  }
}
.p-series__item-data {
  color: var(--color-white);
  background: var(--color-white);
}
.p-series__item-data .p-in-detail {
  font-size: 13px;
  color: var(--color-type);
}
.--ex .p-series__item-data .p-in-detail {
  color: var(--color-type2);
}
@media screen and (max-width: 900px) {
  .p-series__item-data .p-in-detail {
    margin-bottom: 3.5px;
    font-size: 12px;
  }
}
.p-series__item-data .p-in-unit {
  font-size: 12.5px;
  line-height: 1.6;
  mix-blend-mode: difference;
}
@media screen and (max-width: 900px) {
  .p-series__item-data .p-in-unit {
    font-size: 11px;
    line-height: 1.2;
  }
}
.p-series__item-data .p-in-ttl {
  margin-top: 7px;
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.03rem;
  line-height: 1;
  mix-blend-mode: difference;
}
@media screen and (max-width: 900px) {
  .p-series__item-data .p-in-ttl {
    margin-top: 6px;
    font-size: 15px;
    letter-spacing: 0;
    line-height: 1.15;
  }
}
.p-series__item-data .p-in-release {
  margin-top: 3px;
  font-size: 17px;
  letter-spacing: 0.02rem;
  mix-blend-mode: difference;
}
@media screen and (max-width: 900px) {
  .p-series__item-data .p-in-release {
    margin-top: 2px;
    font-size: 12px;
    letter-spacing: 0.04rem;
  }
}
.p-series__link {
  position: relative;
  text-align: center;
  color: var(--color-white);
  background: var(--color-white);
}
@media not all and (max-width: 900px) {
  .p-series__link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg-gray);
    opacity: 0.2;
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    transform-origin: left;
  }
  .p-series__link:hover::before {
    transform: scaleX(1);
  }
}
@media screen and (max-width: 900px) {
  .p-series__link {
    padding-top: 27px;
    padding-bottom: 22px;
  }
}
.p-series__link::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-line-gray);
}
.p-series__link-inner {
  position: relative;
  display: block;
}
@media not all and (max-width: 900px) {
  .p-series__link-inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.p-series__link-txt {
  position: relative;
  display: inline-block;
  padding-right: 68px;
  transform: translateX(34px);
  mix-blend-mode: difference;
}
@media screen and (max-width: 900px) {
  .p-series__link-txt {
    padding-right: 76px;
    transform: translateX(38px);
  }
  .p-series__link-txt span {
    display: block;
  }
}
.p-series__link-txt::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 31px;
  height: 100%;
  -webkit-mask: url(../img/common/arrow/arrow2.svg) center center no-repeat;
  mask: url(../img/common/arrow/arrow2.svg) center center no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: var(--color-white);
  transform: translateY(-50%);
}
@media not all and (max-width: 900px) {
  .p-series__link-txt::after {
    transition: opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1), transform 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .p-series__link:hover .p-series__link-txt::after {
    transform: translate(10px, -50%);
    opacity: 0;
  }
}
@media screen and (max-width: 900px) {
  .p-series__link-txt::after {
    width: 19px;
  }
}
.p-series__link-txt .p-in-name {
  margin-right: 18px;
  font-size: 20px;
  letter-spacing: 0.04rem;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  .p-series__link-txt .p-in-name {
    margin-right: 0;
    font-size: 12px;
    letter-spacing: 0.03rem;
  }
}
.p-series__link-txt .p-in-ttl {
  font-size: 40px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 900px) {
  .p-series__link-txt .p-in-ttl {
    font-size: 24px;
  }
}

.m-top-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
.is-load .m-top-modal {
  transition: opacity 0.3s cubic-bezier(0.23, 0.93, 0.5, 1) 1s;
  opacity: 1;
}
.m-top-modal.is-close {
  transition: opacity 0.5s cubic-bezier(0.23, 0.93, 0.5, 1) 0s;
  opacity: 0;
  pointer-events: none;
}
.m-top-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
.m-top-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(calc(-100% - 5px));
}
.m-top-modal__close-inner {
  position: relative;
  color: #fff;
  border: none;
  margin: 0;
  padding: 0;
  padding-left: 21px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-weight: 700;
  font-size: 20px;
  cursor: pointer;
}
@media screen and (max-width: 900px) {
  .m-top-modal__close-inner {
    padding-left: 18px;
    font-size: 14px;
  }
}
.m-top-modal__close-inner::before, .m-top-modal__close-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 15px;
  height: 3px;
  background: #fff;
}
@media screen and (max-width: 900px) {
  .m-top-modal__close-inner::before, .m-top-modal__close-inner::after {
    width: 10px;
    height: 2px;
  }
}
.m-top-modal__close-inner::before {
  transform: translateY(-50%) rotate(45deg);
}
.m-top-modal__close-inner::after {
  transform: translateY(-50%) rotate(-45deg);
}
@media (hover: hover) {
  .m-top-modal__close-inner {
    transition: opacity 0.4s cubic-bezier(0.23, 0.93, 0.5, 1);
  }
  .m-top-modal__close-inner:hover {
    opacity: 0.5;
  }
}
.m-top-modal__container {
  position: relative;
  padding: 38px 0;
  background: #fff;
  width: 82%;
  max-width: 1400px;
  margin: 0 auto;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.23, 0.93, 0.5, 1) 1s, opacity 0.3s cubic-bezier(0.23, 0.93, 0.5, 1) 1s;
}
@media not all and (max-width: 900px) {
  @media screen and (max-width: 1400px) {
    .m-top-modal__container {
      width: 90%;
    }
  }
  @media screen and (max-width: 1200px) {
    .m-top-modal__container {
      width: 96%;
      padding: 30.4px 0;
    }
  }
}
@media screen and (max-width: 900px) {
  .m-top-modal__container {
    width: 89.4%;
    padding: 35px 0;
  }
  .m-top-modal__container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 58%;
    background: url(../img/modal/ex_9th-anniv/bg_modal.jpg) bottom center no-repeat;
    background-size: cover;
  }
}
.is-load .m-top-modal__container {
  transform: translateY(0);
  opacity: 1;
}
.m-top-modal__container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 100%;
  background: #99e1ff;
  -webkit-clip-path: polygon(44% 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(44% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.3;
}
@media not all and (max-width: 900px) {
  .m-top-modal__container::before {
    width: 54.5%;
    -webkit-clip-path: polygon(17% 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(17% 0, 100% 0, 100% 100%, 0% 100%);
  }
}
.m-top-modal__container-wrap {
  position: relative;
}
@media not all and (max-width: 900px) {
  .m-top-modal__container-wrap::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 90%;
    transform: translateY(-50%);
    background: url(../img/modal/ex_9th-anniv/bg_modal.jpg) center center no-repeat;
    background-size: 100% auto;
  }
}
@media screen and (max-width: 900px) {
  .m-top-modal__container-wrap {
    z-index: 1;
  }
}
@media not all and (max-width: 900px) {
  .m-top-modal__cont {
    display: flex;
    align-items: center;
    margin-left: 3.5%;
  }
}
@media not all and (max-width: 900px) {
  .m-top-modal__header {
    width: 39.5%;
    flex-shrink: 0;
    margin-right: 3.7%;
  }
}
@media screen and (max-width: 900px) {
  .m-top-modal__header {
    margin-bottom: 20px;
  }
}
.m-top-modal__lead {
  margin-bottom: 24px;
}
@media not all and (max-width: 900px) {
  @media screen and (max-width: 1200px) {
    .m-top-modal__lead {
      margin-bottom: 19.2px;
    }
  }
}
@media screen and (max-width: 900px) {
  .m-top-modal__lead {
    text-align: center;
  }
}
.m-top-modal__lead-txt + .m-top-modal__lead-txt {
  margin-top: 3px;
}
.m-top-modal__lead-txt .p-in-txt {
  position: relative;
  display: inline-block;
  padding: 3px 13px 3px 7px;
  color: #fff;
  font-weight: 700;
  font-style: italic;
  font-size: 24px;
  opacity: 0;
  transform: translate(-30px, 0);
  transition: transform 0.7s cubic-bezier(0.23, 0.93, 0.5, 1) 1.2s, opacity 0.4s cubic-bezier(0.23, 0.93, 0.5, 1) 1.2s;
}
@media not all and (max-width: 900px) {
  @media screen and (max-width: 1200px) {
    .m-top-modal__lead-txt .p-in-txt {
      font-size: 19.2px;
    }
  }
}
@media screen and (max-width: 900px) {
  .m-top-modal__lead-txt .p-in-txt {
    padding: 2px 9px 2px 9px;
    font-size: 18px;
  }
}
.is-load .m-top-modal__lead-txt .p-in-txt {
  transform: translate(0, 0);
  opacity: 1;
}
.m-top-modal__lead-txt .p-in-txt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transform: scaleX(0);
  transform-origin: center left;
  transition: transform 0.6s cubic-bezier(0.23, 0.93, 0.5, 1) 1.2s;
}
.is-load .m-top-modal__lead-txt .p-in-txt::before {
  transform: scaleX(1);
}
.m-top-modal__lead-txt .p-in-txt:nth-child(2) {
  transition-delay: 1.3s;
}
.m-top-modal__lead-txt .p-in-txt:nth-child(2) span {
  transition-delay: 1.3s;
}
.m-top-modal__lead-txt .p-in-txt span {
  position: relative;
}
.m-top-modal__jk {
  transform: scale(1.1);
  transition: transform 3s cubic-bezier(0.23, 0.93, 0.5, 1) 1s;
}
@media screen and (max-width: 900px) {
  .m-top-modal__jk {
    width: 74%;
    margin: 0 auto;
  }
}
.is-load .m-top-modal__jk {
  transform: scale(1);
}
.m-top-modal__ttl {
  margin-bottom: 12px;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  .m-top-modal__ttl {
    margin-bottom: 7px;
    text-align: center;
  }
}
.m-top-modal__ttl-sub {
  margin-bottom: 3px;
  font-size: 24px;
  letter-spacing: 0.06rem;
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.23, 0.93, 0.5, 1) 1.4s, opacity 0.4s cubic-bezier(0.23, 0.93, 0.5, 1) 1.4s;
}
@media not all and (max-width: 900px) {
  .m-top-modal__ttl-sub {
    transform: translate(-30px, 0);
  }
  @media screen and (max-width: 1200px) {
    .m-top-modal__ttl-sub {
      font-size: 19.2px;
    }
  }
}
@media screen and (max-width: 900px) {
  .m-top-modal__ttl-sub {
    transform: translate(0, 30px);
    font-size: 14px;
    letter-spacing: 0.04rem;
  }
}
.is-load .m-top-modal__ttl-sub {
  transform: translate(0, 0);
  opacity: 1;
}
.m-top-modal__ttl-main {
  font-size: 60px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.23, 0.93, 0.5, 1) 1.5s, opacity 0.4s cubic-bezier(0.23, 0.93, 0.5, 1) 1.5s;
}
@media not all and (max-width: 900px) {
  .m-top-modal__ttl-main {
    transform: translate(-30px, 0);
  }
  @media screen and (max-width: 1200px) {
    .m-top-modal__ttl-main {
      font-size: 48px;
    }
  }
}
@media screen and (max-width: 900px) {
  .m-top-modal__ttl-main {
    font-size: 35px;
    transform: translate(0, 30px);
  }
}
.is-load .m-top-modal__ttl-main {
  transform: translate(0, 0);
  opacity: 1;
}
.m-top-modal__catch {
  font-weight: 700;
  font-style: italic;
  font-size: 40px;
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.23, 0.93, 0.5, 1) 1.7s, opacity 0.3s cubic-bezier(0.23, 0.93, 0.5, 1) 1.7s;
}
@media not all and (max-width: 900px) {
  .m-top-modal__catch {
    transform: translate(-30px, 0);
  }
  @media screen and (max-width: 1200px) {
    .m-top-modal__catch {
      font-size: 32px;
    }
  }
}
@media screen and (max-width: 900px) {
  .m-top-modal__catch {
    font-size: 25px;
    text-align: center;
    line-height: 1;
    transform: translate(0, 30px);
  }
}
.is-load .m-top-modal__catch {
  transform: translate(0, 0);
  opacity: 1;
}
.m-top-modal__catch span {
  display: inline-block;
  vertical-align: baseline;
  font-size: 34px;
}
@media not all and (max-width: 900px) {
  @media screen and (max-width: 1200px) {
    .m-top-modal__catch span {
      font-size: 27.2px;
    }
  }
}
@media screen and (max-width: 900px) {
  .m-top-modal__catch span {
    font-size: 21px;
  }
}
.m-top-modal__more {
  position: absolute;
  bottom: -22px;
  right: -21px;
  z-index: 1;
  width: 97px;
  height: 97px;
  transform: translateX(-50px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.23, 0.93, 0.5, 1) 1.7s, opacity 0.5s cubic-bezier(0.23, 0.93, 0.5, 1) 1.7s;
}
@media screen and (max-width: 900px) {
  .m-top-modal__more {
    bottom: -13px;
    right: -10px;
    width: 60px;
    height: 60px;
  }
}
.is-load .m-top-modal__more {
  transform: translateX(0);
  opacity: 1;
}
.m-top-modal__more-link {
  position: relative;
  display: block;
}
.m-top-modal__more-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/modal/btn_modal_bg.png) center center no-repeat;
  background-size: contain;
  animation: rotate 8s linear infinite;
}
.m-top-modal__more-link img {
  position: relative;
}
@media (hover: hover) {
  .m-top-modal__more-link {
    transition: transform 0.7s cubic-bezier(0.23, 0.93, 0.5, 1);
  }
  .m-top-modal__more-link:hover {
    transform: scale(1.1);
  }
}

.m-modal__bg {
  background-color: #d7e1e2 !important;
}