@charset "UTF-8";
.p-hero {
  display: block;
  position: relative;
}
.p-hero__kv {
  display: block;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.p-hero__kv-item {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 0s linear 0.4s;
}
.p-hero__kv-item:first-child {
  position: relative;
}
.p-hero__kv-item.is-current {
  z-index: 1;
  opacity: 1;
  transition: opacity 0s linear 0s;
}
.p-hero__tab {
  width: 11rem;
  display: flex;
  flex-direction: column-reverse;
  position: absolute;
  gap: 1rem;
  top: 13rem;
  left: 2rem;
}
@media screen and (max-width: 960px) {
  .p-hero__tab {
    width: 4rem;
    gap: 0.4rem;
    top: 0.5rem;
    left: 0.5rem;
  }
}
.p-hero__tab-item {
  display: block;
  position: relative;
}
.p-hero__btn {
  display: block;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}
.p-hero__btn.is-current {
  pointer-events: none;
}
.p-hero__btn-img {
  display: block;
  position: relative;
}
.p-hero__btn-img::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  opacity: 1;
  transition: opacity 0.5s var(--ease_out);
}
.is-current .p-hero__btn-img::before {
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-hero__btn:hover .p-hero__btn-img::before {
    opacity: 0.6;
  }
}
.p-hero__btn-img::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.4rem solid var(--color-green);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s var(--ease_out);
}
@media screen and (max-width: 960px) {
  .p-hero__btn-img::after {
    border-width: 0.2rem;
  }
}
.is-current .p-hero__btn-img::after {
  opacity: 1;
}

.p-hero_kv {
  display: block;
  position: relative;
  opacity: 0;
  transition: opacity 0.4s var(--ease_out);
}
.is-load .is-current .p-hero_kv {
  opacity: 1;
}
.p-hero_kv img {
  width: 100%;
}
.p-hero_kv::after {
  content: "";
  width: 100%;
  height: 1rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-green-dark);
  border-top: 0.3rem solid var(--color-black);
  border-bottom: 0.3rem solid var(--color-black);
}
@media screen and (max-width: 960px) {
  .p-hero_kv::after {
    height: 0.5rem;
    border-width: 0.1rem;
  }
}
.p-hero_kv__base {
  display: block;
  position: relative;
  opacity: 0;
  transform: scale(0.8);
  transform-origin: 50% 60%;
  transition: opacity 0s linear 0.4s, transform 0s linear 0.4s;
}
.is-load .is-current .p-hero_kv__base {
  opacity: 1;
  transform: scale(1) !important;
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.p-hero_kv__img {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale(0.8);
  transform-origin: 50% 60%;
  transition: opacity 0s linear 0.4s, transform 0s linear 0.4s;
}
.is-load .is-current .p-hero_kv__img {
  opacity: 1;
  transform: scale(1) !important;
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.is-load .is-current .p-hero_kv__img:nth-child(1) {
  transition-delay: 0.2s;
}
.is-load .is-current .p-hero_kv__img:nth-child(2) {
  transition-delay: 0.35s;
}
.is-load .is-current .p-hero_kv__img:nth-child(3) {
  transition-delay: 0.5s;
}
.is-load .is-current .p-hero_kv__img:nth-child(4) {
  transition-delay: 0.65s;
}
.is-load .is-current .p-hero_kv__img:nth-child(5) {
  transition-delay: 0.8s;
}
.is-load .is-current .p-hero_kv__img:nth-child(6) {
  transition-delay: 0.95s;
}
.is-load .is-current .p-hero_kv__img:nth-child(7) {
  transition-delay: 1.1s;
}
.is-load .is-current .p-hero_kv__img:nth-child(8) {
  transition-delay: 1.25s;
}
.is-load .is-current .p-hero_kv__img:nth-child(9) {
  transition-delay: 1.4s;
}
.is-load .is-current .p-hero_kv__img:nth-child(10) {
  transition-delay: 1.55s;
}

.p-bnr {
  display: block;
  position: relative;
  margin-top: 8rem;
}
@media screen and (max-width: 960px) {
  .p-bnr {
    margin-top: 2rem;
  }
}
.p-bnr__container {
  width: 90%;
  max-width: 127rem;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 7rem 0;
}
@media screen and (max-width: 960px) {
  .p-bnr__container {
    padding: 2rem 0;
  }
}
.p-bnr__inner {
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-bnr__list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}
.p-bnr__list-item {
  flex-shrink: 0;
  display: block;
  position: relative;
}
.p-bnr__link {
  display: block;
  position: relative;
}
.p-bnr__link-img {
  display: block;
  position: relative;
}
.p-bnr__link-img::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: var(--color-green);
}
@media (hover: hover) and (pointer: fine) {
  .p-bnr__link-img::before {
    transition: opacity 0.4s var(--ease_inout);
  }
  .p-bnr__link:hover .p-bnr__link-img::before {
    opacity: 0.4;
  }
}

.p-onair {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 11.5rem 0 15rem;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-onair {
    padding: 5.2rem 0 9rem;
  }
}
.p-onair__container {
  width: 90%;
  max-width: 104rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-onair__content {
  width: 104rem;
  max-width: 100%;
  display: block;
  position: relative;
  margin-left: auto;
  padding: 10rem 0 10.5rem;
}
@media screen and (max-width: 960px) {
  .p-onair__content {
    width: 31.5rem;
    margin: 0 auto;
    padding: 6.2rem 0 5.5rem;
  }
}
.p-onair__deco {
  width: 18rem;
  display: block;
  position: absolute;
  top: 1.5rem;
  left: -7.5rem;
}
@media screen and (max-width: 960px) {
  .p-onair__deco {
    width: 10.5rem;
    top: -3.5rem;
    left: -1.5rem;
  }
}
.p-onair__bg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transform: scale(0.8);
  transform-origin: 50% 60%;
  background: rgba(255, 255, 255, 0.8);
}
.is-active .p-onair__bg {
  opacity: 1;
  transform: scale(1) !important;
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.p-onair__bg::before {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-onair__bg::before {
    height: 0.2rem;
  }
}
.p-onair__bg::after {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-onair__bg::after {
    height: 0.2rem;
  }
}
.p-onair__header {
  width: calc(100% - 16rem);
  display: block;
  position: relative;
  margin: 0 auto 6rem;
  opacity: 0;
  transform: translateY(4rem);
}
@media screen and (max-width: 960px) {
  .p-onair__header {
    width: calc(100% - 4rem);
    margin-bottom: 3rem;
  }
}
.is-active .p-onair__header {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s var(--ease_out) 0.3s, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}
.p-onair__title {
  width: 64rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-onair__title {
    width: 20rem;
  }
}
.p-onair__title::before {
  content: "";
  width: 4rem;
  height: 5rem;
  display: block;
  position: absolute;
  top: 50%;
  left: -2rem;
  background: url("../img/title_deco.svg") no-repeat center/contain;
  transform: translate(-100%, -50%);
}
@media screen and (max-width: 960px) {
  .p-onair__title::before {
    width: 2rem;
    height: 2rem;
    left: -1rem;
  }
}
.p-onair__title::after {
  content: "";
  width: 4rem;
  height: 5rem;
  display: block;
  position: absolute;
  top: 50%;
  right: -2rem;
  background: url("../img/title_deco.svg") no-repeat center/contain;
  transform: translate(100%, -50%) scale(-1, 1);
}
@media screen and (max-width: 960px) {
  .p-onair__title::after {
    width: 2rem;
    height: 2rem;
    right: -1rem;
  }
}
.p-onair__inner {
  width: calc(100% - 17rem);
  display: block;
  position: relative;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(4rem);
}
@media screen and (max-width: 960px) {
  .p-onair__inner {
    width: calc(100% - 4rem);
  }
}
.is-active .p-onair__inner {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s var(--ease_out) 0.5s, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s;
}
.p-onair__list {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 961px) {
  .p-onair__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4.5rem;
  }
}
.p-onair__list-item {
  display: block;
  position: relative;
}
.p-onair__list-item::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-top: 2px dotted var(--color-black);
  border-bottom: 2px dotted var(--color-black);
}
@media screen and (max-width: 960px) {
  .p-onair__list-item::before {
    border-width: 1px;
  }
}
@media screen and (max-width: 960px) {
  .p-onair__list-item + .p-onair__list-item::before {
    border-top: none;
  }
}
.p-onair__more {
  width: 20rem;
  display: block;
  position: relative;
  margin: 4rem auto 0;
}
@media screen and (max-width: 960px) {
  .p-onair__more {
    width: 15.2rem;
    margin-top: 2.8rem;
  }
}
.p-onair__btn {
  width: 100%;
  height: 4.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  color: var(--color-white);
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-onair__btn {
    height: 3rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-onair__btn {
    transition: background-color 0.3s var(--ease_out);
  }
  .p-onair__btn:hover {
    background-color: var(--color-green);
  }
}
.p-onair__btn-text {
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-onair__btn-text {
    font-size: 1.2rem;
  }
}

.p-onair_content {
  display: block;
  position: relative;
  padding: 3.5rem 0 4.5rem;
}
@media screen and (min-width: 961px) {
  .p-onair_content {
    height: 100%;
  }
}
@media screen and (max-width: 960px) {
  .p-onair_content {
    padding: 2.5rem 0 2.5rem;
  }
}
.p-onair_content__header {
  display: block;
  position: relative;
  margin-bottom: 2rem;
}
@media screen and (max-width: 960px) {
  .p-onair_content__header {
    margin-bottom: 1.8rem;
  }
}
.p-onair_content__title {
  width: 14rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-onair_content__title {
    width: 10rem;
  }
}
.p-onair_content__inner {
  display: block;
  position: relative;
}
.p-onair_content__text {
  display: block;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-onair_content__text {
    font-size: 1.3rem;
    line-height: 1.6;
  }
}
.p-onair_content__btn {
  width: 20rem;
  display: block;
  position: relative;
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 960px) {
  .p-onair_content__btn {
    width: 15rem;
    margin-top: 1.1rem;
  }
}

.p-ep {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 15rem 0;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-ep {
    padding: 6.75rem 0 7rem;
  }
}
.p-ep__container {
  width: 90%;
  max-width: 104rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-ep__content {
  width: 76rem;
  max-width: 100%;
  display: block;
  position: relative;
  padding: 8.3rem 0 8.5rem;
}
@media screen and (max-width: 960px) {
  .p-ep__content {
    width: 31.5rem;
    margin: 0 auto;
    padding: 4.5rem 0 5.5rem;
  }
}
.p-ep__deco {
  width: 17.8rem;
  display: block;
  position: absolute;
  top: -3.4rem;
  right: -10.8rem;
}
@media screen and (max-width: 960px) {
  .p-ep__deco {
    width: 12rem;
    bottom: -5.5rem;
    left: -2.8rem;
  }
}
.p-ep__bg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transform: scale(0.8);
  transform-origin: 50% 60%;
  background: rgba(255, 255, 255, 0.8);
}
.is-active .p-ep__bg {
  opacity: 1;
  transform: scale(1) !important;
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.p-ep__bg::before {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-ep__bg::before {
    height: 0.2rem;
  }
}
.p-ep__bg::after {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-ep__bg::after {
    height: 0.2rem;
  }
}
.p-ep__bg-line {
  display: none !important;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-ep__bg-line.--top::before {
  content: "";
  width: 15rem;
  height: 0.3rem;
  display: block;
  position: absolute;
  top: 2.8rem;
  left: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-ep__bg-line.--top::before {
    width: 8rem;
    height: 0.2rem;
    top: 2rem;
  }
}
.p-ep__bg-line.--top::after {
  content: "";
  width: calc(100% - 15rem);
  height: 0.3rem;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-ep__bg-line.--top::after {
    width: calc(100% - 8rem);
    height: 0.2rem;
  }
}
.p-ep__bg-line.--bottom::before {
  content: "";
  width: calc(100% - 11rem);
  height: 0.3rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-ep__bg-line.--bottom::before {
    width: calc(100% - 5rem);
    height: 0.2rem;
  }
}
.p-ep__bg-line.--bottom::after {
  content: "";
  width: 11rem;
  height: 0.3rem;
  display: block;
  position: absolute;
  bottom: 5rem;
  right: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-ep__bg-line.--bottom::after {
    width: 5rem;
    bottom: 2rem;
    height: 0.2rem;
  }
}
.p-ep__bg-base {
  display: none !important;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.9;
}
.p-ep__bg-base::before {
  content: "";
  width: calc(100% - 15rem);
  height: calc(100% - 5rem);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-ep__bg-base::before {
    width: calc(100% - 8rem);
    height: calc(100% - 2rem);
  }
}
.p-ep__bg-base::after {
  content: "";
  width: calc(100% - 11rem);
  height: calc(100% - 2.8rem);
  display: block;
  position: absolute;
  top: 2.8rem;
  left: 0;
  background: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-ep__bg-base::after {
    width: calc(100% - 5rem);
    top: 2rem;
    height: calc(100% - 2rem);
  }
}
.p-ep__header {
  width: calc(100% - 16rem);
  display: block;
  position: relative;
  margin: 0 auto 3.5rem;
  opacity: 0;
  transform: translateY(4rem);
}
@media screen and (max-width: 960px) {
  .p-ep__header {
    width: calc(100% - 4rem);
    margin-bottom: 2rem;
  }
}
.is-active .p-ep__header {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s var(--ease_out) 0.3s, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}
.p-ep__title {
  width: 20.4rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-ep__title {
    width: 11rem;
  }
}
.p-ep__title::before {
  content: "";
  width: 4rem;
  height: 5rem;
  display: block;
  position: absolute;
  top: 50%;
  left: -2rem;
  background: url("../img/title_deco.svg") no-repeat center/contain;
  transform: translate(-100%, -50%);
}
@media screen and (max-width: 960px) {
  .p-ep__title::before {
    width: 2rem;
    height: 2rem;
    left: -1rem;
  }
}
.p-ep__title::after {
  content: "";
  width: 4rem;
  height: 5rem;
  display: block;
  position: absolute;
  top: 50%;
  right: -2rem;
  background: url("../img/title_deco.svg") no-repeat center/contain;
  transform: translate(100%, -50%) scale(-1, 1);
}
@media screen and (max-width: 960px) {
  .p-ep__title::after {
    width: 2rem;
    height: 2rem;
    right: -1rem;
  }
}
.p-ep__inner {
  width: calc(100% - 16rem);
  display: block;
  position: relative;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(4rem);
}
@media screen and (max-width: 960px) {
  .p-ep__inner {
    width: calc(100% - 4rem);
  }
}
.is-active .p-ep__inner {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s var(--ease_out) 0.5s, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s;
}
.p-ep__text {
  display: block;
  position: relative;
  font-size: 2.4rem;
  letter-spacing: 0.12rem;
  line-height: 2.3;
  font-weight: 900;
}
@media screen and (max-width: 960px) {
  .p-ep__text {
    font-size: 1.3rem;
  }
}
.p-ep__more {
  width: 26rem;
  display: block;
  position: relative;
  margin: 6rem auto 0;
}
@media screen and (max-width: 960px) {
  .p-ep__more {
    width: 18.2rem;
    margin-top: 2.8rem;
  }
}
.p-ep__btn {
  width: 100%;
  height: 4.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  color: var(--color-white);
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-ep__btn {
    height: 3rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-ep__btn {
    transition: background-color 0.3s var(--ease_out);
  }
  .p-ep__btn:hover {
    background-color: var(--color-green);
  }
}
.p-ep__btn-text {
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-ep__btn-text {
    font-size: 1.2rem;
  }
}

.p-ep_content {
  display: block;
  position: relative;
}
.p-ep_content__no {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  padding: 0.4rem 0;
  margin: 0 auto 1.2rem;
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
  color: var(--color-green-dark);
}
@media screen and (max-width: 960px) {
  .p-ep_content__no {
    margin-bottom: 1rem;
    font-size: 1.8rem;
  }
}
.p-ep_content__no::before {
  content: "";
  width: 3rem;
  height: 4rem;
  display: block;
  position: absolute;
  top: 50%;
  left: -2rem;
  background: url("../img/story/title_deco.svg") no-repeat center/contain;
  transform: translate(-100%, -50%);
}
@media screen and (max-width: 960px) {
  .p-ep_content__no::before {
    width: 2rem;
    height: 2rem;
    left: -1rem;
  }
}
.p-ep_content__no::after {
  content: "";
  width: 3rem;
  height: 4rem;
  display: block;
  position: absolute;
  top: 50%;
  right: -2rem;
  background: url("../img/story/title_deco.svg") no-repeat center/contain;
  transform: translate(100%, -50%) scale(-1, 1);
}
@media screen and (max-width: 960px) {
  .p-ep_content__no::after {
    width: 2rem;
    height: 2rem;
    right: -1rem;
  }
}
.p-ep_content__title {
  display: block;
  position: relative;
  font-size: 3rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-ep_content__title {
    font-size: 1.8rem;
  }
}
.p-ep_content__visual {
  display: block;
  position: relative;
  margin-top: 3.4rem;
}
@media screen and (max-width: 960px) {
  .p-ep_content__visual {
    margin-top: 1.6rem;
  }
}
.p-ep_content__detail {
  display: block;
  position: relative;
  margin-top: 2.8rem;
}
@media screen and (max-width: 960px) {
  .p-ep_content__detail {
    margin-top: 1.8rem;
  }
}
.p-ep_content__detail + .p-ep_content__detail {
  margin-top: 7.8rem;
}
@media screen and (max-width: 960px) {
  .p-ep_content__detail + .p-ep_content__detail {
    margin-top: 4.5rem;
  }
}
.p-ep_content__detail + .p-ep_content__detail::before {
  content: "";
  width: 100%;
  height: 0.4rem;
  display: block;
  position: absolute;
  top: -4.25rem;
  left: 0;
  border-top: 0.4rem dotted var(--color-black);
  opacity: 0.4;
}
@media screen and (max-width: 960px) {
  .p-ep_content__detail + .p-ep_content__detail::before {
    top: -2.1rem;
    border-top-width: 0.2rem;
  }
}
.p-ep_content__detail-cap {
  width: 7.8rem;
  display: block;
  position: relative;
  margin-bottom: 1rem;
}
@media screen and (max-width: 960px) {
  .p-ep_content__detail-cap {
    width: 6.2rem;
  }
}
.p-ep_content__detail-main {
  display: block;
  position: relative;
}
.p-ep_content__description {
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 960px) {
  .p-ep_content__description {
    font-size: 1.3rem;
    line-height: 1.8;
  }
}
.p-ep_content__staff {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.7;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-ep_content__staff {
    font-size: 1.3rem;
    line-height: 1.9;
  }
}
.p-ep_content__staff-cap {
  display: block;
  position: relative;
  color: var(--color-green-dark);
}
.p-ep_content__staff-cap::after {
  color: var(--color-black);
  margin: 0 0.2em;
}
.p-ep_content__movie {
  display: block;
  position: relative;
}
.p-ep_content__movie-img {
  width: 100%;
  padding-top: 56.25%;
  display: block;
  position: relative;
}
.p-ep_content__movie-img::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
}
@media (hover: hover) and (pointer: fine) {
  .p-ep_content__movie-img::before {
    transition: opacity 0.4s var(--ease_inout);
  }
  .p-ep_content__movie:hover .p-ep_content__movie-img::before {
    opacity: 0;
  }
}
.p-ep_content__movie-img::after {
  content: "";
  width: 16rem;
  height: 16rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/icon_play.png") no-repeat center/contain;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .p-ep_content__movie-img::after {
    width: 6rem;
    height: 6rem;
  }
}
.p-ep_content__movie-img img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-ep_visual {
  display: block;
  position: relative;
}
.p-ep_visual__slide {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
.p-ep_visual__list {
  display: flex;
  justify-content: flex-start;
  position: relative;
}
.p-ep_visual__list-item {
  width: 100%;
  flex-shrink: 0;
  display: block;
  position: relative;
}
.p-ep_visual__pagination {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem auto 0;
}
@media screen and (max-width: 960px) {
  .p-ep_visual__pagination {
    gap: 0.8rem;
    margin-top: 1.2rem;
  }
}
.p-ep_visual__pagination-item {
  width: 2rem;
  height: 2rem;
  display: block;
  position: relative;
  background: url("../img/movie_icon_03.png") no-repeat center/contain;
  transform-origin: 10% 80%;
}
@media screen and (max-width: 960px) {
  .p-ep_visual__pagination-item {
    width: 2rem;
    height: 2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-ep_visual__pagination-item {
    cursor: pointer;
  }
  .p-ep_visual__pagination-item:hover {
    animation: loader 0.7s var(--ease_inout);
  }
}
.p-ep_visual__pagination-item.is-current {
  pointer-events: none;
  animation: loader 0.7s var(--ease_inout);
}
.p-ep_visual__pagination-item::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/movie_icon_02.png") no-repeat center/contain;
  opacity: 0;
  transition: opacity 0.4s var(--ease_out);
}
.p-ep_visual__pagination-item.is-current::before {
  opacity: 1;
}

.p-movie {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 15rem 0 15rem;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-movie {
    padding: 7rem 0 6.75rem;
  }
}
.p-movie__container {
  width: 90%;
  max-width: 101rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-movie__content {
  display: block;
  position: relative;
  padding: 1.2rem;
  background: var(--color-white);
  opacity: 0;
  transform: scale(0.8);
  transform-origin: 50% 60%;
}
@media screen and (max-width: 960px) {
  .p-movie__content {
    padding: 0.4rem;
  }
}
.is-active .p-movie__content {
  opacity: 1;
  transform: scale(1) !important;
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.p-movie__content::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.5rem solid var(--color-black);
}
@media screen and (max-width: 960px) {
  .p-movie__content::before {
    border-width: 0.2rem;
  }
}
.p-movie__slide {
  display: block;
  position: relative;
}
.p-movie__slide::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.4rem solid var(--color-black);
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-movie__slide::after {
    border-width: 0.2rem;
  }
}
.p-movie__list {
  display: flex;
  justify-content: flex-start;
  position: relative;
}
.p-movie__list-item {
  width: 100%;
  flex-shrink: 0;
  display: block;
  position: relative;
  pointer-events: none;
}
.p-movie__list-item.is-current {
  pointer-events: auto;
}
.p-movie__thumb {
  display: block;
  position: relative;
}
.p-movie__thumb-img {
  width: 100%;
  padding-top: 56.25%;
  display: block;
  position: relative;
}
.p-movie__thumb-img::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
}
@media (hover: hover) and (pointer: fine) {
  .p-movie__thumb-img::before {
    transition: opacity 0.4s var(--ease_inout);
  }
  .p-movie__thumb:hover .p-movie__thumb-img::before {
    opacity: 0;
  }
}
.p-movie__thumb-img::after {
  content: "";
  width: 16rem;
  height: 16rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/icon_play.png") no-repeat center/contain;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .p-movie__thumb-img::after {
    width: 6rem;
    height: 6rem;
  }
}
.p-movie__thumb-img img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-movie__nav {
  width: 8rem;
  height: 8rem;
  display: block;
  position: absolute;
  background: var(--color-black);
  z-index: 1;
  border-radius: 50%;
  transition: opacity 0.5s var(--ease_out), background-color 0.3s var(--ease_out);
}
@media screen and (min-width: 961px) {
  .p-movie__nav {
    top: 50%;
  }
}
@media screen and (max-width: 960px) {
  .p-movie__nav {
    width: 5rem;
    height: 5rem;
    bottom: -1.2rem;
  }
}
.p-movie__nav.is-disable {
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-movie__nav:hover {
    background-color: var(--color-green);
  }
}
.p-movie__nav.--prev {
  left: -6rem;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .p-movie__nav.--prev {
    left: 5.2rem;
    transform: translate(-50%, 100%);
  }
}
.p-movie__nav.--next {
  right: -6rem;
  transform: translate(50%, -50%);
}
@media screen and (max-width: 960px) {
  .p-movie__nav.--next {
    right: 5.2rem;
    transform: translate(50%, 100%);
  }
}
.p-movie__nav-img {
  width: 2.5rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .p-movie__nav-img {
    width: 1.5rem;
  }
}
.--prev .p-movie__nav-img {
  transform: translate(-50%, -50%) scale(-1, 1);
}
.p-movie__pagination {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translate(-50%, 100%);
}
@media screen and (max-width: 960px) {
  .p-movie__pagination {
    width: calc(100% - 20rem);
    gap: 0.8rem;
    bottom: -2.5rem;
  }
}
.p-movie__pagination-item {
  width: 5rem;
  height: 5rem;
  display: block;
  position: relative;
  background: url("../img/movie_icon_03.png") no-repeat center/contain;
  transform-origin: 10% 80%;
}
@media screen and (max-width: 960px) {
  .p-movie__pagination-item {
    width: 2.5rem;
    height: 2.5rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-movie__pagination-item {
    cursor: pointer;
  }
  .p-movie__pagination-item:hover {
    animation: loader 0.7s var(--ease_inout);
  }
}
.p-movie__pagination-item.is-current {
  pointer-events: none;
  animation: loader 0.7s var(--ease_inout);
}
.p-movie__pagination-item::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/movie_icon_02.png") no-repeat center/contain;
  opacity: 0;
  transition: opacity 0.4s var(--ease_out);
}
.p-movie__pagination-item.is-current::before {
  opacity: 1;
}

.p-headline {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 15rem 0;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-headline {
    padding: 15rem 0 12rem;
  }
}
.p-headline__container {
  width: 90%;
  max-width: 104rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-headline__content {
  width: 76rem;
  max-width: 100%;
  display: block;
  position: relative;
  margin-left: auto;
  padding: 11.3rem 0 10.5rem;
}
@media screen and (max-width: 960px) {
  .p-headline__content {
    width: 31.5rem;
    margin: 0 auto;
    padding: 6.2rem 0 5.5rem;
  }
}
.p-headline__deco {
  width: 17rem;
  display: block;
  position: absolute;
  top: -7.3rem;
  right: -3.5rem;
}
@media screen and (max-width: 960px) {
  .p-headline__deco {
    width: 8.2rem;
    top: -3.5rem;
    right: -1.5rem;
  }
}
.p-headline__bg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transform: scale(0.8);
  transform-origin: 50% 60%;
  background: rgba(255, 255, 255, 0.8);
}
.is-active .p-headline__bg {
  opacity: 1;
  transform: scale(1) !important;
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.p-headline__bg::before {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-headline__bg::before {
    height: 0.2rem;
  }
}
.p-headline__bg::after {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-headline__bg::after {
    height: 0.2rem;
  }
}
.p-headline__bg-line {
  display: none !important;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-headline__bg-line.--top::before {
  content: "";
  width: 15rem;
  height: 0.3rem;
  display: block;
  position: absolute;
  top: 2.8rem;
  left: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-headline__bg-line.--top::before {
    width: 8rem;
    height: 0.2rem;
    top: 2rem;
  }
}
.p-headline__bg-line.--top::after {
  content: "";
  width: calc(100% - 15rem);
  height: 0.3rem;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-headline__bg-line.--top::after {
    width: calc(100% - 8rem);
    height: 0.2rem;
  }
}
.p-headline__bg-line.--bottom::before {
  content: "";
  width: calc(100% - 11rem);
  height: 0.3rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-headline__bg-line.--bottom::before {
    width: calc(100% - 5rem);
    height: 0.2rem;
  }
}
.p-headline__bg-line.--bottom::after {
  content: "";
  width: 11rem;
  height: 0.3rem;
  display: block;
  position: absolute;
  bottom: 5rem;
  right: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-headline__bg-line.--bottom::after {
    width: 5rem;
    bottom: 2rem;
    height: 0.2rem;
  }
}
.p-headline__bg-base {
  display: none !important;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.9;
}
.p-headline__bg-base::before {
  content: "";
  width: calc(100% - 15rem);
  height: calc(100% - 5rem);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-headline__bg-base::before {
    width: calc(100% - 8rem);
    height: calc(100% - 2rem);
  }
}
.p-headline__bg-base::after {
  content: "";
  width: calc(100% - 11rem);
  height: calc(100% - 2.8rem);
  display: block;
  position: absolute;
  top: 2.8rem;
  left: 0;
  background: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-headline__bg-base::after {
    width: calc(100% - 5rem);
    top: 2rem;
    height: calc(100% - 2rem);
  }
}
.p-headline__header {
  width: calc(100% - 16rem);
  display: block;
  position: relative;
  margin: 0 auto 1.5rem;
  opacity: 0;
  transform: translateY(4rem);
}
@media screen and (max-width: 960px) {
  .p-headline__header {
    width: calc(100% - 4rem);
    margin-bottom: 2rem;
  }
}
.is-active .p-headline__header {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s var(--ease_out) 0.3s, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}
.p-headline__title {
  width: 19rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-headline__title {
    width: 10.5rem;
  }
}
.p-headline__title::before {
  content: "";
  width: 4rem;
  height: 5rem;
  display: block;
  position: absolute;
  top: 50%;
  left: -2rem;
  background: url("../img/title_deco.svg") no-repeat center/contain;
  transform: translate(-100%, -50%);
}
@media screen and (max-width: 960px) {
  .p-headline__title::before {
    width: 2rem;
    height: 2rem;
    left: -1rem;
  }
}
.p-headline__title::after {
  content: "";
  width: 4rem;
  height: 5rem;
  display: block;
  position: absolute;
  top: 50%;
  right: -2rem;
  background: url("../img/title_deco.svg") no-repeat center/contain;
  transform: translate(100%, -50%) scale(-1, 1);
}
@media screen and (max-width: 960px) {
  .p-headline__title::after {
    width: 2rem;
    height: 2rem;
    right: -1rem;
  }
}
.p-headline__inner {
  width: calc(100% - 17rem);
  display: block;
  position: relative;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(4rem);
}
@media screen and (max-width: 960px) {
  .p-headline__inner {
    width: calc(100% - 4rem);
  }
}
.is-active .p-headline__inner {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s var(--ease_out) 0.5s, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s;
}
.p-headline__list {
  display: block;
  position: relative;
}
.p-headline__list-item {
  display: block;
  position: relative;
}
.p-headline__list-item::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 3px dotted var(--color-black);
  opacity: 0.3;
}
@media screen and (max-width: 960px) {
  .p-headline__list-item::before {
    border-bottom-width: 1.5px;
  }
}
.p-headline__more {
  width: 20rem;
  display: block;
  position: relative;
  margin: 4rem auto 0;
}
@media screen and (max-width: 960px) {
  .p-headline__more {
    width: 15.2rem;
    margin-top: 2.8rem;
  }
}
.p-headline__btn {
  width: 100%;
  height: 4.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  color: var(--color-white);
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-headline__btn {
    height: 3rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-headline__btn {
    transition: background-color 0.3s var(--ease_out);
  }
  .p-headline__btn:hover {
    background-color: var(--color-green);
  }
}
.p-headline__btn-text {
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-headline__btn-text {
    font-size: 1.2rem;
  }
}

.p-headline_article {
  display: block;
  position: relative;
  padding: 3rem 0;
}
@media screen and (min-width: 961px) {
  .p-headline_article {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media screen and (max-width: 960px) {
  .p-headline_article {
    padding: 1.7rem 0;
  }
}
.p-headline_article__date {
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--color-green-dark);
}
@media screen and (min-width: 961px) {
  .p-headline_article__date {
    min-width: 12rem;
    top: 0.5em;
  }
}
@media screen and (max-width: 960px) {
  .p-headline_article__date {
    font-size: 1.3rem;
  }
}
.p-headline_article__title {
  display: block;
  position: relative;
  font-size: 2rem;
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (min-width: 961px) {
  .p-headline_article__title {
    flex: 1 1 0;
    min-width: 0;
  }
}
@media screen and (max-width: 960px) {
  .p-headline_article__title {
    font-size: 1.35rem;
  }
}
@supports ((-webkit-text-decoration-color: transparent) or (text-decoration-color: transparent)) {
  @media (hover: hover) and (pointer: fine) {
    .p-headline_article__title {
      text-decoration: underline;
      -webkit-text-decoration-color: transparent;
      text-decoration-color: transparent;
      transition: -webkit-text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out), -webkit-text-decoration-color 0.3s var(--ease_out);
    }
    .p-headline_article:hover .p-headline_article__title {
      -webkit-text-decoration-color: currentColor;
      text-decoration-color: currentColor;
    }
  }
}
@supports not ((-webkit-text-decoration-color: transparent) or (text-decoration-color: transparent)) {
  @media (hover: hover) and (pointer: fine) {
    .p-headline_article:hover .p-headline_article__title {
      text-decoration: underline;
    }
  }
}

.p-intro {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 15rem 0;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-intro {
    padding: 6.75rem 0 7rem;
  }
}
.p-intro__container {
  width: 90%;
  max-width: 104rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-intro__content {
  width: 76rem;
  max-width: 100%;
  display: block;
  position: relative;
  padding: 11.3rem 0 8.5rem;
}
@media screen and (max-width: 960px) {
  .p-intro__content {
    width: 31.5rem;
    margin: 0 auto;
    padding: 6.2rem 0 5.5rem;
  }
}
.p-intro__deco {
  width: 17.2rem;
  display: block;
  position: absolute;
  bottom: -5.3rem;
  left: -6rem;
}
@media screen and (max-width: 960px) {
  .p-intro__deco {
    width: 12rem;
    bottom: -5.5rem;
    left: -2.8rem;
  }
}
.p-intro__bg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transform: scale(0.8);
  transform-origin: 50% 60%;
  background: rgba(255, 255, 255, 0.8);
}
.is-active .p-intro__bg {
  opacity: 1;
  transform: scale(1) !important;
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.p-intro__bg::before {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-intro__bg::before {
    height: 0.2rem;
  }
}
.p-intro__bg::after {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-intro__bg::after {
    height: 0.2rem;
  }
}
.p-intro__bg-line {
  display: none !important;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-intro__bg-line.--top::before {
  content: "";
  width: 15rem;
  height: 0.3rem;
  display: block;
  position: absolute;
  top: 2.8rem;
  left: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-intro__bg-line.--top::before {
    width: 8rem;
    height: 0.2rem;
    top: 2rem;
  }
}
.p-intro__bg-line.--top::after {
  content: "";
  width: calc(100% - 15rem);
  height: 0.3rem;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-intro__bg-line.--top::after {
    width: calc(100% - 8rem);
    height: 0.2rem;
  }
}
.p-intro__bg-line.--bottom::before {
  content: "";
  width: calc(100% - 11rem);
  height: 0.3rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-intro__bg-line.--bottom::before {
    width: calc(100% - 5rem);
    height: 0.2rem;
  }
}
.p-intro__bg-line.--bottom::after {
  content: "";
  width: 11rem;
  height: 0.3rem;
  display: block;
  position: absolute;
  bottom: 5rem;
  right: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-intro__bg-line.--bottom::after {
    width: 5rem;
    bottom: 2rem;
    height: 0.2rem;
  }
}
.p-intro__bg-base {
  display: none !important;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.9;
}
.p-intro__bg-base::before {
  content: "";
  width: calc(100% - 15rem);
  height: calc(100% - 5rem);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-intro__bg-base::before {
    width: calc(100% - 8rem);
    height: calc(100% - 2rem);
  }
}
.p-intro__bg-base::after {
  content: "";
  width: calc(100% - 11rem);
  height: calc(100% - 2.8rem);
  display: block;
  position: absolute;
  top: 2.8rem;
  left: 0;
  background: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-intro__bg-base::after {
    width: calc(100% - 5rem);
    top: 2rem;
    height: calc(100% - 2rem);
  }
}
.p-intro__header {
  width: calc(100% - 16rem);
  display: block;
  position: relative;
  margin: 0 auto 3.5rem;
  opacity: 0;
  transform: translateY(4rem);
}
@media screen and (max-width: 960px) {
  .p-intro__header {
    width: calc(100% - 4rem);
    margin-bottom: 2rem;
  }
}
.is-active .p-intro__header {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s var(--ease_out) 0.3s, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}
.p-intro__title {
  width: 20.4rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-intro__title {
    width: 11rem;
  }
}
.p-intro__title::before {
  content: "";
  width: 4rem;
  height: 5rem;
  display: block;
  position: absolute;
  top: 50%;
  left: -2rem;
  background: url("../img/title_deco.svg") no-repeat center/contain;
  transform: translate(-100%, -50%);
}
@media screen and (max-width: 960px) {
  .p-intro__title::before {
    width: 2rem;
    height: 2rem;
    left: -1rem;
  }
}
.p-intro__title::after {
  content: "";
  width: 4rem;
  height: 5rem;
  display: block;
  position: absolute;
  top: 50%;
  right: -2rem;
  background: url("../img/title_deco.svg") no-repeat center/contain;
  transform: translate(100%, -50%) scale(-1, 1);
}
@media screen and (max-width: 960px) {
  .p-intro__title::after {
    width: 2rem;
    height: 2rem;
    right: -1rem;
  }
}
.p-intro__inner {
  width: calc(100% - 16rem);
  display: block;
  position: relative;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(4rem);
}
@media screen and (max-width: 960px) {
  .p-intro__inner {
    width: calc(100% - 4rem);
  }
}
.is-active .p-intro__inner {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s var(--ease_out) 0.5s, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s;
}
.p-intro__text {
  display: block;
  position: relative;
  font-size: 2.4rem;
  letter-spacing: 0.12rem;
  line-height: 2.3;
  font-weight: 900;
}
@media screen and (max-width: 960px) {
  .p-intro__text {
    font-size: 1.3rem;
  }
}

.p-story {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 15rem 0;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-story {
    padding: 6.75rem 0;
  }
}
.p-story__container {
  width: 90%;
  max-width: 104rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-story__content {
  width: 76rem;
  display: block;
  position: relative;
  padding: 11.6rem 0 13.5rem;
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  .p-story__content {
    width: 31.5rem;
    margin: 0 auto;
    padding: 7rem 0 7rem;
  }
}
.p-story__deco {
  width: 32rem;
  display: block;
  position: absolute;
  bottom: -10.3rem;
  right: -11rem;
}
@media screen and (max-width: 960px) {
  .p-story__deco {
    width: 14.3rem;
    bottom: -2.5rem;
    right: -2rem;
  }
}
.p-story__bg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transform: scale(0.8);
  transform-origin: 50% 60%;
  background: rgba(255, 255, 255, 0.8);
}
.is-active .p-story__bg {
  opacity: 1;
  transform: scale(1) !important;
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.p-story__bg::before {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-story__bg::before {
    height: 0.2rem;
  }
}
.p-story__bg::after {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-story__bg::after {
    height: 0.2rem;
  }
}
.p-story__bg-line {
  display: none !important;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-story__bg-line.--top::before {
  content: "";
  width: 15rem;
  height: 0.3rem;
  display: block;
  position: absolute;
  top: 2.8rem;
  left: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-story__bg-line.--top::before {
    width: 5.5rem;
    height: 0.2rem;
  }
}
.p-story__bg-line.--top::after {
  content: "";
  width: calc(100% - 15rem);
  height: 0.3rem;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-story__bg-line.--top::after {
    width: calc(100% - 5.5rem);
    height: 0.2rem;
  }
}
.p-story__bg-line.--bottom::before {
  content: "";
  width: calc(100% - 14rem);
  height: 0.3rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-story__bg-line.--bottom::before {
    width: calc(100% - 9rem);
    height: 0.2rem;
  }
}
.p-story__bg-line.--bottom::after {
  content: "";
  width: 14rem;
  height: 0.3rem;
  display: block;
  position: absolute;
  bottom: 5rem;
  right: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-story__bg-line.--bottom::after {
    width: 9rem;
    bottom: 2rem;
    height: 0.2rem;
  }
}
.p-story__bg-base {
  display: none !important;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.9;
}
.p-story__bg-base::before {
  content: "";
  width: calc(100% - 15rem);
  height: calc(100% - 5rem);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-story__bg-base::before {
    height: calc(100% - 2rem);
    width: calc(100% - 5.5rem);
  }
}
.p-story__bg-base::after {
  content: "";
  width: calc(100% - 14rem);
  height: calc(100% - 2.8rem);
  display: block;
  position: absolute;
  top: 2.8rem;
  left: 0;
  background: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-story__bg-base::after {
    width: calc(100% - 9rem);
  }
}
.p-story__header {
  width: calc(100% - 16rem);
  display: block;
  position: relative;
  margin: 0 auto 3.5rem;
  opacity: 0;
  transform: translateY(4rem);
}
@media screen and (max-width: 960px) {
  .p-story__header {
    width: calc(100% - 4rem);
    margin-bottom: 2rem;
  }
}
.is-active .p-story__header {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s var(--ease_out) 0.3s, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}
.p-story__title {
  width: 22rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-story__title {
    width: 12rem;
  }
}
.p-story__title::before {
  content: "";
  width: 4rem;
  height: 5rem;
  display: block;
  position: absolute;
  top: 50%;
  left: -2rem;
  background: url("../img/title_deco.svg") no-repeat center/contain;
  transform: translate(-100%, -50%);
}
@media screen and (max-width: 960px) {
  .p-story__title::before {
    width: 2rem;
    height: 2rem;
    left: -1rem;
  }
}
.p-story__title::after {
  content: "";
  width: 4rem;
  height: 5rem;
  display: block;
  position: absolute;
  top: 50%;
  right: -2rem;
  background: url("../img/title_deco.svg") no-repeat center/contain;
  transform: translate(100%, -50%) scale(-1, 1);
}
@media screen and (max-width: 960px) {
  .p-story__title::after {
    width: 2rem;
    height: 2rem;
    right: -1rem;
  }
}
.p-story__inner {
  width: calc(100% - 16rem);
  display: block;
  position: relative;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(4rem);
}
@media screen and (max-width: 960px) {
  .p-story__inner {
    width: calc(100% - 4rem);
  }
}
.is-active .p-story__inner {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s var(--ease_out) 0.5s, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s;
}
.p-story__text {
  display: block;
  position: relative;
  font-size: 2.4rem;
  letter-spacing: 0.12rem;
  line-height: 2.3;
  font-weight: 900;
}
@media screen and (max-width: 960px) {
  .p-story__text {
    font-size: 1.3rem;
  }
}
.p-story__text .ruri {
  color: var(--color-ruri);
}
.p-story__text .nagi {
  color: var(--color-nagi);
}
.p-story__text + .p-story__text {
  margin-top: 1em;
}
.p-story__lead {
  width: 51.4rem;
  display: block;
  position: relative;
  margin-top: 2.1rem;
}
@media screen and (max-width: 960px) {
  .p-story__lead {
    width: 22.8rem;
    margin-top: 1rem;
  }
}
.p-story__lead img {
  width: 100%;
}
.p-story__more {
  width: 34rem;
  display: block;
  position: relative;
  margin: 6rem auto 0;
}
@media screen and (max-width: 960px) {
  .p-story__more {
    width: 15.2rem;
    margin-top: 2.8rem;
  }
}
.p-story__btn {
  width: 100%;
  height: 4.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  color: var(--color-white);
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-story__btn {
    height: 3rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-story__btn {
    transition: background-color 0.3s var(--ease_out);
  }
  .p-story__btn:hover {
    background-color: var(--color-green);
  }
}
.p-story__btn-text {
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-story__btn-text {
    font-size: 1.2rem;
  }
}

.p-chara {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 19rem 0;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-chara {
    padding: 14rem 0;
  }
}
.p-chara__container {
  width: 90%;
  max-width: 104rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-chara__content {
  width: 85rem;
  max-width: 100%;
  display: block;
  position: relative;
  padding: 8.2rem 0 4.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-chara__content {
    width: 32rem;
    padding: 5.6rem 0 4rem;
  }
}
.p-chara__deco {
  width: 24.5rem;
  display: block;
  position: absolute;
  top: -9rem;
  right: -5.4rem;
}
@media screen and (max-width: 960px) {
  .p-chara__deco {
    width: 11rem;
    top: -7rem;
    right: -2rem;
  }
}
.p-chara__bg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transform: scale(0.8);
  transform-origin: 50% 60%;
  background: rgba(255, 255, 255, 0.8);
}
.is-active .p-chara__bg {
  opacity: 1;
  transform: scale(1) !important;
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.p-chara__bg::before {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-chara__bg::before {
    height: 0.2rem;
  }
}
.p-chara__bg::after {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-chara__bg::after {
    height: 0.2rem;
  }
}
.p-chara__header {
  width: calc(100% - 16rem);
  display: block;
  position: relative;
  margin: 0 auto 3.5rem;
  opacity: 0;
  transform: translateY(4rem);
}
@media screen and (max-width: 960px) {
  .p-chara__header {
    width: calc(100% - 4rem);
  }
}
.is-active .p-chara__header {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s var(--ease_out) 0.3s, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}
.p-chara__title {
  width: 41rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-chara__title {
    width: 22rem;
  }
}
.p-chara__title::before {
  content: "";
  width: 4rem;
  height: 5rem;
  display: block;
  position: absolute;
  top: 50%;
  left: -2rem;
  background: url("../img/title_deco.svg") no-repeat center/contain;
  transform: translate(-100%, -50%);
}
@media screen and (max-width: 960px) {
  .p-chara__title::before {
    width: 2rem;
    height: 2rem;
    left: -1rem;
  }
}
.p-chara__title::after {
  content: "";
  width: 4rem;
  height: 5rem;
  display: block;
  position: absolute;
  top: 50%;
  right: -2rem;
  background: url("../img/title_deco.svg") no-repeat center/contain;
  transform: translate(100%, -50%) scale(-1, 1);
}
@media screen and (max-width: 960px) {
  .p-chara__title::after {
    width: 2rem;
    height: 2rem;
    right: -1rem;
  }
}
.p-chara__inner {
  width: calc(100% - 16rem);
  display: block;
  position: relative;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(4rem);
}
@media screen and (max-width: 960px) {
  .p-chara__inner {
    width: calc(100% - 4rem);
  }
}
.is-active .p-chara__inner {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s var(--ease_out) 0.5s, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s;
}
.p-chara__pager {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: relative;
  margin: 0 auto 3.2rem;
}
@media screen and (max-width: 960px) {
  .p-chara__pager {
    margin-bottom: 1.2rem;
    gap: 0.4rem;
  }
}
.p-chara__pager-item {
  width: 8.5rem;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-chara__pager-item {
    width: 4.2rem;
  }
}
.p-chara__btn {
  --chara_main: var(--color-black);
  --chara_sub: var(--color-black);
  display: block;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}
.p-chara__btn-img {
  display: block;
  position: relative;
  transition: background-color 0.4s var(--ease_out);
}
.is-current .p-chara__btn-img {
  background-color: var(--chara_sub);
}
@media (hover: hover) and (pointer: fine) {
  .p-chara__btn:hover .p-chara__btn-img {
    background-color: var(--chara_sub);
  }
}
.p-chara__btn-img::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.2rem solid var(--chara_main);
  border-radius: 50%;
}
.p-chara__slide {
  width: 100%;
  max-width: 58.2rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-chara__list {
  display: flex;
  justify-content: flex-start;
  position: relative;
}
.p-chara__list-item {
  width: 100%;
  flex-shrink: 0;
  display: block;
  position: relative;
  pointer-events: none;
}
.p-chara__list-item.is-current {
  pointer-events: auto;
}
.p-chara__nav {
  width: 8rem;
  height: 8rem;
  display: block;
  position: absolute;
  background: var(--color-black);
  z-index: 1;
  border-radius: 50%;
  transition: opacity 0.5s var(--ease_out), background-color 0.3s var(--ease_out);
}
@media screen and (min-width: 961px) {
  .p-chara__nav {
    top: 50%;
  }
}
@media screen and (max-width: 960px) {
  .p-chara__nav {
    width: 4.2rem;
    height: 4.2rem;
    bottom: 13.5rem;
  }
}
.p-chara__nav.is-disable {
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-chara__nav:hover {
    background-color: var(--color-green);
  }
}
@media screen and (min-width: 961px) {
  .p-chara__nav.--prev {
    left: -10rem;
    transform: translate(0%, -50%);
  }
}
@media screen and (max-width: 960px) {
  .p-chara__nav.--prev {
    right: 7.2rem;
  }
}
@media screen and (min-width: 961px) {
  .p-chara__nav.--next {
    right: -10rem;
    transform: translate(0%, -50%);
  }
}
@media screen and (max-width: 960px) {
  .p-chara__nav.--next {
    right: 2rem;
  }
}
.p-chara__nav-img {
  width: 2.5rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .p-chara__nav-img {
    width: 1.5rem;
  }
}
.--prev .p-chara__nav-img {
  transform: translate(-50%, -50%) scale(-1, 1);
}

.p-chara_data {
  display: block;
  position: relative;
  opacity: 0;
  transition: opacity 0.8s var(--ease_out);
}
.is-current .p-chara_data {
  opacity: 1;
}
.p-chara_data__visual {
  width: 28.2rem;
  display: block;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: scale(0.8);
  transform-origin: 50% 60%;
  transition: opacity 0s linear 0.8s, transform 0s linear 0.8s;
}
@media screen and (max-width: 960px) {
  .p-chara_data__visual {
    width: 17.2rem;
    margin-top: 2rem;
    left: -0.6rem;
  }
}
.is-current .p-chara_data__visual {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s var(--ease_out) 0.2s, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
}
.p-chara_data__visual-img {
  display: block;
  position: relative;
  z-index: 1;
}
.p-chara_data__visual-bg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.p-chara_data__name {
  width: 27rem;
  display: block;
  position: absolute;
  top: 6.5rem;
  right: 6rem;
  opacity: 0;
  transform: scale(0.8);
  transform-origin: 50% 60%;
  transition: opacity 0s linear 0.8s, transform 0s linear 0.8s;
}
@media screen and (max-width: 960px) {
  .p-chara_data__name {
    width: 16rem;
    top: 1rem;
    right: 0;
  }
}
.is-current .p-chara_data__name {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s var(--ease_out) 0.3s, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}
.p-chara_data__face {
  width: 26.5rem;
  display: block;
  position: absolute;
  top: 23.2rem;
  right: 1rem;
  opacity: 0;
  transform: scale(0.8);
  transform-origin: 50% 60%;
  transition: opacity 0s linear 0.8s, transform 0s linear 0.8s;
}
@media screen and (max-width: 960px) {
  .p-chara_data__face {
    width: 13.2rem;
    top: 12.2rem;
    right: 0;
  }
}
.is-current .p-chara_data__face {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s var(--ease_out) 0.4s, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s;
}
.p-chara_data__inner {
  display: block;
  position: relative;
  margin-top: 2rem;
}
@media screen and (max-width: 960px) {
  .p-chara_data__inner {
    min-height: 12rem;
  }
}
.p-chara_data__profile {
  display: block;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-chara_data__profile {
    font-size: 1.3rem;
    line-height: 2.2;
  }
}

.p-music {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 15rem 0;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-music {
    padding: 6.75rem 0;
  }
}
.p-music__container {
  width: 90%;
  max-width: 104rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-music__content {
  width: 76rem;
  display: block;
  position: relative;
  padding: 10.4rem 0 13.5rem;
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  .p-music__content {
    width: 31.5rem;
    margin: 0 auto;
    padding: 6.2rem 0 7rem;
  }
}
.p-music__deco {
  width: 20rem;
  display: block;
  position: absolute;
  top: -13rem;
  left: -7rem;
}
@media screen and (max-width: 960px) {
  .p-music__deco {
    width: 9.2rem;
    top: -5rem;
    left: -2rem;
  }
}
.p-music__bg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transform: scale(0.8);
  transform-origin: 50% 60%;
  background: rgba(255, 255, 255, 0.8);
}
.is-active .p-music__bg {
  opacity: 1;
  transform: scale(1) !important;
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.p-music__bg::before {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-music__bg::before {
    height: 0.2rem;
  }
}
.p-music__bg::after {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-music__bg::after {
    height: 0.2rem;
  }
}
.p-music__header {
  width: calc(100% - 16rem);
  display: block;
  position: relative;
  margin: 0 auto 6.4rem;
  opacity: 0;
  transform: translateY(4rem);
}
@media screen and (max-width: 960px) {
  .p-music__header {
    width: calc(100% - 4rem);
    margin-bottom: 3.8rem;
  }
}
.is-active .p-music__header {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s var(--ease_out) 0.3s, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}
.p-music__title {
  width: 20.5rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-music__title {
    width: 11rem;
  }
}
.p-music__title::before {
  content: "";
  width: 4rem;
  height: 5rem;
  display: block;
  position: absolute;
  top: 50%;
  left: -2rem;
  background: url("../img/title_deco.svg") no-repeat center/contain;
  transform: translate(-100%, -50%);
}
@media screen and (max-width: 960px) {
  .p-music__title::before {
    width: 2rem;
    height: 2rem;
    left: -1rem;
  }
}
.p-music__title::after {
  content: "";
  width: 4rem;
  height: 5rem;
  display: block;
  position: absolute;
  top: 50%;
  right: -2rem;
  background: url("../img/title_deco.svg") no-repeat center/contain;
  transform: translate(100%, -50%) scale(-1, 1);
}
@media screen and (max-width: 960px) {
  .p-music__title::after {
    width: 2rem;
    height: 2rem;
    right: -1rem;
  }
}
.p-music__inner {
  width: calc(100% - 16rem);
  display: block;
  position: relative;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(4rem);
}
@media screen and (max-width: 960px) {
  .p-music__inner {
    width: calc(100% - 4rem);
  }
}
.is-active .p-music__inner {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s var(--ease_out) 0.5s, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s;
}
.p-music__btn {
  width: 100%;
  height: 4.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  color: var(--color-white);
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-music__btn {
    height: 3rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-music__btn {
    transition: background-color 0.3s var(--ease_out);
  }
  .p-music__btn:hover {
    background-color: var(--color-green);
  }
}
.p-music__btn-text {
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-music__btn-text {
    font-size: 1.2rem;
  }
}
.p-music__list {
  display: block;
  position: relative;
}
.p-music__list-item {
  display: block;
  position: relative;
}
.p-music__list-item + .p-music__list-item {
  margin-top: 7.8rem;
}
@media screen and (max-width: 960px) {
  .p-music__list-item + .p-music__list-item {
    margin-top: 6rem;
  }
}
.p-music__list-item + .p-music__list-item::before {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  top: -4rem;
  left: 0;
  border-top: 2px dotted var(--color-black);
}
@media screen and (max-width: 960px) {
  .p-music__list-item + .p-music__list-item::before {
    top: -3rem;
    border-width: 1px;
  }
}

.p-music_content {
  display: block;
  position: relative;
}
.p-music_content__header {
  display: block;
  position: relative;
  margin-bottom: 2rem;
}
.p-music_content__cap {
  width: 19rem;
  display: block;
  position: relative;
  margin: 0 auto 3.2rem;
}
@media screen and (max-width: 960px) {
  .p-music_content__cap {
    margin-bottom: 1.4rem;
  }
}
.--op .p-music_content__cap {
  width: 19rem;
}
@media screen and (max-width: 960px) {
  .--op .p-music_content__cap {
    width: 9.2rem;
  }
}
.--ed .p-music_content__cap {
  width: 16rem;
}
@media screen and (max-width: 960px) {
  .--ed .p-music_content__cap {
    width: 9rem;
  }
}
.p-music_content__title {
  width: 25rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-music_content__title {
    width: 12.5rem;
  }
}
.p-music_content__artist {
  display: block;
  position: relative;
  margin-top: 0.4rem;
  font-size: 1.9rem;
  letter-spacing: 0.1rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-music_content__artist {
    margin-top: 0.2rem;
    font-size: 1.4rem;
  }
}
.p-music_content__visual {
  display: block;
  position: relative;
  margin-top: 2.4rem;
}
@media screen and (max-width: 960px) {
  .p-music_content__visual {
    margin-top: 1.2rem;
  }
}
.p-music_content__btn {
  width: 20rem;
  display: block;
  position: relative;
  margin: 2.8rem auto 0;
}
@media screen and (max-width: 960px) {
  .p-music_content__btn {
    width: 15rem;
    margin-top: 1.9rem;
  }
}

.p-staffcast {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 15rem 0;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-staffcast {
    padding: 6.75rem 0;
  }
}
.p-staffcast__container {
  width: 90%;
  max-width: 104rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-staffcast__content {
  width: 76rem;
  display: block;
  position: relative;
  padding: 12rem 0 11.5rem;
}
@media screen and (max-width: 960px) {
  .p-staffcast__content {
    width: 31.5rem;
    margin: 0 auto;
    padding: 6.2rem 0 6.5rem;
  }
}
.p-staffcast__deco {
  width: 16rem;
  display: block;
  position: absolute;
  top: -5.3rem;
  left: -2.2rem;
}
@media screen and (max-width: 960px) {
  .p-staffcast__deco {
    width: 10rem;
    top: -5.3rem;
    left: -2rem;
  }
}
.p-staffcast__bg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transform: scale(0.8);
  transform-origin: 50% 60%;
  background: rgba(255, 255, 255, 0.8);
}
.is-active .p-staffcast__bg {
  opacity: 1;
  transform: scale(1) !important;
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.p-staffcast__bg::before {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-staffcast__bg::before {
    height: 0.2rem;
  }
}
.p-staffcast__bg::after {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-staffcast__bg::after {
    height: 0.2rem;
  }
}
.p-staffcast__bg-line {
  display: none !important;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-staffcast__bg-line.--top::before {
  content: "";
  width: 23rem;
  height: 0.3rem;
  display: block;
  position: absolute;
  top: 4rem;
  left: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-staffcast__bg-line.--top::before {
    width: 7.5rem;
    top: 2rem;
    height: 0.2rem;
  }
}
.p-staffcast__bg-line.--top::after {
  content: "";
  width: calc(100% - 23rem);
  height: 0.3rem;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-staffcast__bg-line.--top::after {
    width: calc(100% - 7.5rem);
    height: 0.2rem;
  }
}
.p-staffcast__bg-line.--bottom::before {
  content: "";
  width: calc(100% - 31rem);
  height: 0.3rem;
  display: block;
  position: absolute;
  bottom: 4rem;
  left: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-staffcast__bg-line.--bottom::before {
    width: calc(100% - 6rem);
    height: 0.2rem;
    bottom: 0;
  }
}
.p-staffcast__bg-line.--bottom::after {
  content: "";
  width: 31rem;
  height: 0.3rem;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-staffcast__bg-line.--bottom::after {
    bottom: 2rem;
    width: 6rem;
    height: 0.2rem;
  }
}
.p-staffcast__bg-base {
  display: none !important;
  width: 100%;
  height: calc(100% - 8rem);
  display: block;
  position: absolute;
  top: 4rem;
  left: 0;
  opacity: 0.9;
  background: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-staffcast__bg-base {
    height: calc(100% - 4rem);
    top: 2rem;
  }
}
.p-staffcast__bg-base::before {
  content: "";
  width: calc(100% - 23rem);
  height: 5rem;
  display: block;
  position: absolute;
  top: -4rem;
  right: 0;
  background: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-staffcast__bg-base::before {
    width: calc(100% - 7.5rem);
    top: -2rem;
  }
}
.p-staffcast__bg-base::after {
  content: "";
  width: 31rem;
  height: 5rem;
  display: block;
  position: absolute;
  bottom: -4rem;
  right: 0;
  background: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-staffcast__bg-base::after {
    width: calc(100% - 6rem);
    bottom: -2rem;
    left: 0;
  }
}
.p-staffcast__header {
  width: calc(100% - 16rem);
  display: block;
  position: relative;
  margin: 0 auto 5.2rem;
  opacity: 0;
  transform: translateY(4rem);
}
@media screen and (max-width: 960px) {
  .p-staffcast__header {
    width: calc(100% - 4rem);
    margin-bottom: 3.2rem;
  }
}
.is-active .p-staffcast__header {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s var(--ease_out) 0.3s, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}
.p-staffcast__title {
  width: 40rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-staffcast__title {
    width: 22rem;
  }
}
.p-staffcast__title::before {
  content: "";
  width: 4rem;
  height: 5rem;
  display: block;
  position: absolute;
  top: 50%;
  left: -2rem;
  background: url("../img/title_deco.svg") no-repeat center/contain;
  transform: translate(-100%, -50%);
}
@media screen and (max-width: 960px) {
  .p-staffcast__title::before {
    width: 2rem;
    height: 2rem;
    left: -1rem;
  }
}
.p-staffcast__title::after {
  content: "";
  width: 4rem;
  height: 5rem;
  display: block;
  position: absolute;
  top: 50%;
  right: -2rem;
  background: url("../img/title_deco.svg") no-repeat center/contain;
  transform: translate(100%, -50%) scale(-1, 1);
}
@media screen and (max-width: 960px) {
  .p-staffcast__title::after {
    width: 2rem;
    height: 2rem;
    right: -1rem;
  }
}
.p-staffcast__inner {
  width: calc(100% - 16rem);
  display: block;
  position: relative;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(4rem);
}
@media screen and (max-width: 960px) {
  .p-staffcast__inner {
    width: calc(100% - 4rem);
  }
}
.is-active .p-staffcast__inner {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s var(--ease_out) 0.5s, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s;
}

.p-staffcast_content {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-staffcast_content {
    padding: 0 1rem;
  }
}
.p-staffcast_content + .p-staffcast_content {
  margin-top: 5rem;
}
.p-staffcast_content__header {
  display: block;
  position: relative;
  padding-bottom: 2rem;
  margin-bottom: 3.4rem;
}
@media screen and (max-width: 960px) {
  .p-staffcast_content__header {
    padding-bottom: 1.3rem;
    margin-bottom: 2rem;
  }
}
.p-staffcast_content__header::before {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-black);
}
@media screen and (max-width: 960px) {
  .p-staffcast_content__header::before {
    height: 0.2rem;
  }
}
.p-staffcast_content__title {
  width: 10.8rem;
  display: block;
  position: relative;
}
.--cast .p-staffcast_content__title {
  width: 9rem;
}
@media screen and (max-width: 960px) {
  .p-staffcast_content__title {
    width: 6rem;
  }
  .--cast .p-staffcast_content__title {
    width: 5rem;
  }
}
.p-staffcast_content__inner {
  display: block;
  position: relative;
}
.p-staffcast_content__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 4rem 10rem;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-staffcast_content__list {
    gap: 2rem 4.5rem;
  }
}
.p-staffcast_content__list-item {
  width: calc(33.3333333333% - 6.6666666667rem);
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-staffcast_content__list-item {
    width: calc(50% - 3rem);
  }
}
.p-staffcast_content__list-item.--wide {
  width: 100%;
}

.p-staffcast_data {
  width: 140%;
  display: block;
  position: relative;
  left: -20%;
  margin: 0 auto;
}
.p-staffcast_data__header {
  display: block;
  position: relative;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 960px) {
  .p-staffcast_data__header {
    margin-bottom: 0.4rem;
  }
}
.p-staffcast_data__title {
  display: block;
  position: relative;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-staffcast_data__title {
    font-size: 1.1rem;
    letter-spacing: 0;
  }
}
.p-staffcast_data__inner {
  display: block;
  position: relative;
}
.p-staffcast_data__name {
  display: block;
  position: relative;
}
.p-staffcast_data__name-main {
  display: block;
  position: relative;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-staffcast_data__name-main {
    font-size: 1.4rem;
    letter-spacing: 0.05rem;
  }
}
.p-staffcast_data__name-sub {
  display: block;
  position: relative;
  margin-top: 0.8rem;
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-staffcast_data__name-sub {
    margin-top: 0.5rem;
    font-size: 1rem;
  }
}
.p-staffcast_data__comment {
  width: 2rem;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-staffcast_data__comment {
    width: 1.2rem;
  }
}
.p-staffcast_data__comment::after {
  content: "";
  width: 3rem;
  height: 3rem;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  background: url("../img/title_deco.svg") no-repeat center/contain;
  transform: translate(100%, -50%) scale(-1, 1);
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .p-staffcast_data__comment::after {
    width: 1.5rem;
    height: 1.5rem;
    right: -1rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-staffcast_data__comment::after {
    transition: opacity 0.3s var(--ease_out);
  }
  .p-staffcast_data__comment:hover::after {
    opacity: 1;
  }
}

.p-comment {
  width: 90%;
  max-width: 88rem;
  display: block;
  position: relative;
  margin: 0 auto;
  font-size: 1rem;
  text-align: left;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  color: var(--color-black);
}
@media screen and (max-width: 960px) {
  .p-comment {
    width: 100%;
  }
}
.p-comment__header {
  display: block;
  position: relative;
  margin-bottom: 2.8rem;
}
@media screen and (max-width: 960px) {
  .p-comment__header {
    margin-bottom: 2rem;
  }
}
.p-comment__cap {
  display: block;
  position: relative;
  margin-bottom: 1.4rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  color: var(--color-pink);
}
@media screen and (max-width: 960px) {
  .p-comment__cap {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
  }
}
.p-comment__name {
  display: block;
  position: relative;
}
.p-comment__name-main {
  display: block;
  position: relative;
  margin-bottom: 1rem;
  font-size: 3.1rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .p-comment__name-main {
    margin-bottom: 0.6rem;
    font-size: 2rem;
    letter-spacing: 0.1rem;
  }
}
.p-comment__name-sub {
  display: block;
  position: relative;
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0;
}
@media screen and (max-width: 960px) {
  .p-comment__name-sub {
    margin-top: 0.5rem;
    font-size: 1rem;
  }
}
.p-comment__text {
  display: block;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .p-comment__text {
    font-size: 1.3rem;
  }
}

.p-comic {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 19rem 0;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-comic {
    padding: 14rem 0;
  }
}
.p-comic__container {
  width: 90%;
  max-width: 104rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-comic__content {
  width: 85rem;
  max-width: 100%;
  display: block;
  position: relative;
  padding: 7.8rem 0 4.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-comic__content {
    width: 32rem;
    padding: 4.6rem 0 4rem;
  }
}
.p-comic__deco {
  width: 18.5rem;
  display: block;
  position: absolute;
  top: -8.5rem;
  right: -3.4rem;
}
@media screen and (max-width: 960px) {
  .p-comic__deco {
    width: 12rem;
    top: -6rem;
    right: -1rem;
  }
}
.p-comic__bg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transform: scale(0.8);
  transform-origin: 50% 60%;
  background: rgba(255, 255, 255, 0.8);
}
.is-active .p-comic__bg {
  opacity: 1;
  transform: scale(1) !important;
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.p-comic__bg::before {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-comic__bg::before {
    height: 0.2rem;
  }
}
.p-comic__bg::after {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-comic__bg::after {
    height: 0.2rem;
  }
}
.p-comic__bg-line {
  display: none !important;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-comic__bg-line.--top::before {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-comic__bg-line.--top::before {
    height: 0.2rem;
  }
}
.p-comic__bg-line.--bottom::before {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-comic__bg-line.--bottom::before {
    height: 0.2rem;
  }
}
.p-comic__bg-base {
  display: none !important;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-white);
  opacity: 0.9;
}
.p-comic__header {
  width: calc(100% - 16rem);
  display: block;
  position: relative;
  margin: 0 auto 1.5rem;
  opacity: 0;
  transform: translateY(4rem);
}
@media screen and (max-width: 960px) {
  .p-comic__header {
    width: calc(100% - 4rem);
  }
}
.is-active .p-comic__header {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s var(--ease_out) 0.3s, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}
.p-comic__title {
  width: 26rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-comic__title {
    width: 14rem;
  }
}
.p-comic__title::before {
  content: "";
  width: 4rem;
  height: 5rem;
  display: block;
  position: absolute;
  top: 50%;
  left: -2rem;
  background: url("../img/title_deco.svg") no-repeat center/contain;
  transform: translate(-100%, -50%);
}
@media screen and (max-width: 960px) {
  .p-comic__title::before {
    width: 2rem;
    height: 2rem;
    left: -1rem;
  }
}
.p-comic__title::after {
  content: "";
  width: 4rem;
  height: 5rem;
  display: block;
  position: absolute;
  top: 50%;
  right: -2rem;
  background: url("../img/title_deco.svg") no-repeat center/contain;
  transform: translate(100%, -50%) scale(-1, 1);
}
@media screen and (max-width: 960px) {
  .p-comic__title::after {
    width: 2rem;
    height: 2rem;
    right: -1rem;
  }
}
.p-comic__inner {
  width: calc(100% - 16rem);
  display: block;
  position: relative;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(4rem);
}
@media screen and (max-width: 960px) {
  .p-comic__inner {
    width: calc(100% - 4rem);
  }
}
.is-active .p-comic__inner {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s var(--ease_out) 0.5s, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s;
}
.p-comic__slide {
  width: calc(100% + 26rem);
  display: block;
  position: relative;
  margin: 0 -13rem;
  padding: 10rem 0;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-comic__slide {
    width: 100%;
    padding: 5rem 0;
    margin: 0 auto;
  }
}
.p-comic__list {
  display: flex;
  justify-content: flex-start;
  position: relative;
}
.p-comic__list-item {
  width: 100%;
  margin: 0 auto;
  flex-shrink: 0;
  display: block;
  position: relative;
  transition: padding 0.7s var(--ease_inout);
}
.p-comic__list-item.is-current {
  z-index: 2;
}
.p-comic__nav {
  width: 8rem;
  height: 8rem;
  display: block;
  position: absolute;
  top: 50%;
  background: var(--color-black);
  z-index: 1;
  border-radius: 50%;
  transition: opacity 0.5s var(--ease_out), background-color 0.3s var(--ease_out);
}
@media screen and (max-width: 960px) {
  .p-comic__nav {
    width: 4.2rem;
    height: 4.2rem;
  }
}
.p-comic__nav.is-disable {
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-comic__nav:hover {
    background-color: var(--color-green);
  }
}
.p-comic__nav.--prev {
  left: 27.5%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .p-comic__nav.--prev {
    left: 7.5%;
  }
}
.p-comic__nav.--next {
  right: 27.5%;
  transform: translate(50%, -50%);
}
@media screen and (max-width: 960px) {
  .p-comic__nav.--next {
    right: 7.5%;
  }
}
.p-comic__nav-img {
  width: 2.5rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .p-comic__nav-img {
    width: 1.5rem;
  }
}
.--prev .p-comic__nav-img {
  transform: translate(-50%, -50%) scale(-1, 1);
}
.p-comic__link {
  display: block;
  position: relative;
}
.p-comic__link-img {
  display: block;
  position: relative;
  font-size: 1rem;
  transition: transform 0.7s var(--ease_inout);
}
.is-current .p-comic__link-img {
  transform: scale(1.2);
  font-size: 0.7rem;
}
.p-comic__link-img::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-green);
  z-index: 1;
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-comic__link-img::before {
    transition: opacity 0.4s var(--ease_out);
  }
  .p-comic__link:hover .p-comic__link-img::before {
    opacity: 0.2;
  }
}
.p-comic__link-img::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.3em solid var(--color-black);
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .p-comic__link-img::after {
    border-width: 0.15em;
  }
}