@charset "UTF-8";
.p-op {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  display: none;
  content-visibility: hidden;
}
.is-op-start .p-op {
  display: block;
  content-visibility: auto;
}
.is-op .p-op {
  opacity: 1;
}
.is-load .p-op {
  opacity: 0;
  transition: opacity 1s var(--ease_inout) 1.5s;
}
@media screen and (orientation: portrait) {
  .is-load .p-op {
    transition: opacity 1.8s var(--ease_inout);
  }
}
.is-op-end .p-op {
  pointer-events: none;
}
.p-op::after {
  content: "";
  width: 100%;
  min-width: 100vh;
  height: 100%;
  min-height: 100vw;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-white);
  -webkit-mask: url("../img/mask2.png") no-repeat 50% 0/100% 1200%;
  mask: url("../img/mask2.png") no-repeat 50% 0/100% 1200%;
}
.is-op .p-op::after {
  opacity: 0;
  transition: opacity 0s linear 1.5s;
  animation: mask 1.5s steps(11, end);
}
.p-op__container {
  width: calc(100% + 5.2rem);
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -2.6rem);
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .p-op__container {
    width: 74.881141046vh;
    transform: translate(-50%, -1.3rem);
  }
}
.is-op .p-op__container {
  opacity: 1;
  transition: opacity 1.5s var(--ease_inout);
}
@media screen and (min-width: 961px) {
  .is-op .p-op__container {
    width: 108rem;
    transform: translate(-50%, 16rem);
    opacity: 1;
    transition: opacity 1.5s var(--ease_inout), width 1.2s var(--ease_inout) 4.2s, transform 1.2s var(--ease_inout) 4.2s;
  }
}
.p-op__content {
  display: block;
  position: relative;
  padding: 2rem;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-op__content {
    padding: 0.8rem;
  }
}
.p-op__content::before {
  content: "";
  width: calc(100% - 1.6rem);
  height: calc(100% - 1.6rem);
  display: block;
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  border: 0.2rem solid var(--color-gold);
  z-index: -1;
  pointer-events: none;
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .p-op__content::before {
    width: calc(100% - 0.9rem);
    height: calc(100% - 0.9rem);
    top: 0.45rem;
    left: 0.45rem;
    border-width: 0.1rem;
  }
}
.is-load .p-op__content::before {
  opacity: 1;
  transition: opacity 1s var(--ease_inout);
}
.p-op__content::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.4rem solid var(--color-gold);
  z-index: -1;
  pointer-events: none;
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .p-op__content::after {
    border-width: 0.2rem;
  }
}
.is-load .p-op__content::after {
  opacity: 1;
  transition: opacity 1s var(--ease_inout);
}
.p-op__kv {
  display: block;
  position: relative;
  padding: 0.5rem;
}
@media screen and (max-width: 960px) {
  .p-op__kv {
    padding: 0.4rem;
  }
}
.p-op__kv::before {
  content: "";
  width: calc(100% - 1.2rem);
  height: calc(100% - 1.2rem);
  display: block;
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  border: 0.2rem solid var(--color-black);
  z-index: -1;
  pointer-events: none;
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .p-op__kv::before {
    width: calc(100% - 0.6rem);
    height: calc(100% - 0.6rem);
    border-width: 0.1em;
    top: 0.3rem;
    left: 0.3rem;
  }
}
.is-load .p-op__kv::before {
  opacity: 1;
  transition: opacity 1s var(--ease_inout);
}
.p-op__kv::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.3rem solid var(--color-black);
  z-index: -1;
  pointer-events: none;
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .p-op__kv::after {
    border-width: 0.2rem;
  }
}
.is-load .p-op__kv::after {
  opacity: 1;
  transition: opacity 1s var(--ease_inout);
}
.p-op__kv-img {
  display: block;
  position: relative;
}
.p-op__kv-img::before {
  content: "";
  width: 100%;
  height: 100vh;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  background: url("../img/kv.jpg") no-repeat 50% 100%/cover;
}
@media screen and (orientation: landscape) {
  .is-op .p-op__kv-img::before {
    opacity: 0;
    background-position-y: 0;
    transition: background-position-y 2.1s var(--ease_inout) 2.5s, opacity 2s var(--ease_inout) 5s;
  }
}
@media screen and (orientation: portrait) {
  .p-op__kv-img::before {
    background-position-y: center;
  }
  .is-op .p-op__kv-img::before {
    opacity: 0;
    background-position-y: 0;
    transition: opacity 3s var(--ease_inout) 2s;
  }
}
.p-op__catch {
  width: 38%;
  max-width: 50rem;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  opacity: 1;
  transform: translate(-50%, -50%) scale3d(1, 1, 1);
}
@media screen and (max-width: 960px) {
  .p-op__catch {
    width: 70%;
  }
}
.is-op .p-op__catch {
  opacity: 0;
  transform: translate(-50%, -50%) scale3d(1.1, 1.1, 1.1);
  transition: opacity 1.8s var(--ease_inout) 2s, transform 5s linear;
}
@media screen and (orientation: portrait) {
  .is-op .p-op__catch {
    opacity: 0;
    transform: translate(-50%, -50%) scale3d(1.1, 1.1, 1.1);
    transition: opacity 1.8s var(--ease_inout) 2.5s, transform 5s linear;
  }
}
.p-op__catch-text {
  display: block;
  position: relative;
  -webkit-mask: url("../img/catch_mask.png") no-repeat 0 0/100% auto;
  mask: url("../img/catch_mask.png") no-repeat 0 0/100% auto;
}
.is-op .p-op__catch-text {
  animation: op_mask 2.8s steps(14, end) forwards;
}
@keyframes op_mask {
  0% {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
  100% {
    -webkit-mask-position: 0 100%;
    mask-position: 0 100%;
  }
}

.p-top {
  display: block;
  position: relative;
}
.p-top__container {
  display: block;
  position: relative;
  padding-bottom: 6.5rem;
}
@media screen and (max-width: 960px) {
  .p-top__container {
    padding-bottom: 0;
  }
}
.p-top__header {
  display: block;
  position: relative;
}

.p-share {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-share {
    width: 1rem;
    height: 1rem;
    display: block;
    position: fixed;
    top: 50%;
    left: 4rem;
    z-index: 10;
    transform: translate(0, -50%);
  }
}
@media screen and (max-width: 960px) {
  .p-share {
    width: 100%;
    max-width: 25rem;
    display: block;
    position: relative;
    margin: 1.2rem auto 0;
  }
}
.p-share__link {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-share__link {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
  }
}
.p-share__link-base {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-share__link-base {
    display: none;
  }
}
.p-share__link-text {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.2rem;
  font-family: "Gloock", "Zen Old Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
}
@media screen and (min-width: 961px) {
  .p-share__link-text {
    width: 30rem;
    white-space: nowrap;
    padding: 1rem;
  }
}
@media screen and (min-width: 961px) and (hover: hover) and (pointer: fine) {
  .p-share__link-text {
    transition: color 0.3s var(--ease_out);
  }
  .p-share__link-text:hover {
    color: var(--color-gold);
  }
}
@media screen and (max-width: 960px) {
  .p-share__link-text {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 1.2rem;
    color: var(--color-white);
    transform: translate(-50%, -50%);
  }
}
.p-share__link-icon {
  width: 1.4em;
  height: auto;
  display: block;
  position: relative;
  margin: 0 0.6em;
}
.p-share__link-icon path {
  fill: currentColor;
}

.p-hero {
  display: block;
  position: relative;
}
.p-hero__container {
  width: 100%;
  max-width: 140rem;
  display: block;
  position: relative;
  margin: 0 auto;
  padding-bottom: 8.5rem;
}
@media screen and (max-width: 960px) {
  .p-hero__container {
    padding-bottom: 6.2rem;
  }
}
.p-hero__window {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .p-hero__window {
    display: none;
    content-visibility: hidden;
    visibility: hidden;
  }
}
.p-hero__window.--window1 {
  width: 55rem;
  top: 68.3%;
  left: 97.9%;
}
.p-hero__window.--window2 {
  width: 38rem;
  top: 38.2%;
  left: 2.9%;
}
.p-hero__content {
  width: 108rem;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 2rem;
  z-index: 0;
  background: url("../img/bg_pattern.jpg") repeat center top/141.8rem auto;
}
@media screen and (max-width: 960px) {
  .p-hero__content {
    width: 33.8rem;
    padding: 0.8rem;
  }
}
.p-hero__content::before {
  content: "";
  width: calc(100% - 1.6rem);
  height: calc(100% - 1.6rem);
  display: block;
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  border: 0.2rem solid var(--color-gold);
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-hero__content::before {
    width: calc(100% - 0.9rem);
    height: calc(100% - 0.9rem);
    top: 0.45rem;
    left: 0.45rem;
    border-width: 0.1rem;
  }
}
.p-hero__content::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.4rem solid var(--color-gold);
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-hero__content::after {
    border-width: 0.2rem;
  }
}
.p-hero__kv {
  display: block;
  position: relative;
  padding: 0.5rem;
}
@media screen and (max-width: 960px) {
  .p-hero__kv {
    padding: 0.4rem;
  }
}
.p-hero__kv::before {
  content: "";
  width: calc(100% - 1.2rem);
  height: calc(100% - 1.2rem);
  display: block;
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  border: 0.2rem solid var(--color-black);
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-hero__kv::before {
    width: calc(100% - 0.6rem);
    height: calc(100% - 0.6rem);
    border-width: 0.1em;
    top: 0.3rem;
    left: 0.3rem;
  }
}
.p-hero__kv::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.3rem solid var(--color-black);
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-hero__kv::after {
    border-width: 0.2rem;
  }
}
.p-hero__kv-img {
  display: block;
  position: relative;
}
.p-hero__catch {
  width: 8.9rem;
  display: block;
}
@media screen and (min-width: 961px) {
  .p-hero__catch {
    position: absolute;
    right: 3.7rem;
    top: 8.9%;
    z-index: 1;
  }
}
@media screen and (max-width: 960px) {
  .p-hero__catch {
    width: 18.8rem;
    margin: 1.8rem auto 0;
  }
}
.p-hero__subtitle {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin: 4rem auto 0;
  padding: 1rem 3.4rem;
  font-size: 1.4rem;
  color: var(--color-gold);
  font-weight: 500;
  font-family: "Gloock", "Zen Old Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  letter-spacing: 0.56rem;
}
@media screen and (max-width: 960px) {
  .p-hero__subtitle {
    padding: 0.8rem 2.4rem;
    margin-top: 0.6rem;
    font-size: 1rem;
    letter-spacing: 0.3rem;
  }
}
.p-hero__subtitle::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/point.svg") no-repeat left center/1.8rem auto, url("../img/point.svg") no-repeat right center/1.8rem auto;
}
@media screen and (max-width: 960px) {
  .p-hero__subtitle::before {
    background-size: 1.4rem auto;
  }
}
.p-hero__deco {
  display: block;
  position: absolute;
  pointer-events: none;
}
.p-hero__deco.--book {
  width: 39.6rem;
  bottom: 1.5rem;
  left: 15.8%;
  transform: translate(-50%, 50%);
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .p-hero__deco.--book {
    width: 16rem;
    bottom: -2rem;
    left: 12.5%;
  }
}
.p-hero__deco.--star1 {
  width: 16rem;
  top: 17.8%;
  left: 6.5%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .p-hero__deco.--star1 {
    width: 8rem;
    top: 19%;
    left: 5%;
  }
}
.p-hero__deco.--star2 {
  width: 16rem;
  top: 40.8%;
  left: 93.5%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .p-hero__deco.--star2 {
    width: 10rem;
    top: 38%;
    left: 98%;
  }
}
.p-hero__deco.--star3 {
  width: 17.5rem;
  top: 76.6%;
  left: 5.2%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .p-hero__deco.--star3 {
    width: 8rem;
    top: 63.5%;
    left: 5.5%;
  }
}
.p-hero__deco.--star4 {
  width: 20rem;
  top: 98.6%;
  left: 90%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .p-hero__deco.--star4 {
    width: 12rem;
    top: 105%;
    left: 88%;
    transform: translate(-50%, -50%) scale(-1, 1);
  }
}
.p-hero__deco-img {
  display: block;
  position: relative;
}

.p-hero_window {
  width: 100%;
  display: block;
  position: relative;
}
.--window1 .p-hero_window {
  padding: 4rem;
}
.--window2 .p-hero_window {
  padding: 2.6rem;
}
.p-hero_window::before {
  content: "";
  width: calc(100% - 3.6rem);
  height: calc(100% - 3.6rem);
  display: block;
  position: absolute;
  top: 1.8rem;
  left: 1.8rem;
  background: url("../img/frame_black.svg") no-repeat center/contain;
  z-index: 1;
}
.--window1 .p-hero_window::before {
  width: calc(100% - 6rem);
  height: calc(100% - 6rem);
  top: 3rem;
  left: 3rem;
}
.--window2 .p-hero_window::before {
  width: calc(100% - 3.6rem);
  height: calc(100% - 3.6rem);
  top: 1.8rem;
  left: 1.8rem;
}
.p-hero_window::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/frame_gold.svg") no-repeat center/contain;
  z-index: 1;
}
.p-hero_window__content {
  width: 100%;
  padding-top: 121.0365853659%;
  display: block;
  position: relative;
  -webkit-mask: url("../img/frame_base.svg") no-repeat center/contain;
  mask: url("../img/frame_base.svg") no-repeat center/contain;
}
.p-hero_window__content-resource {
  width: 100%;
  height: 120%;
  display: block;
  position: absolute;
  top: -10%;
  left: 0;
}
.p-hero_window__content-resource video,
.p-hero_window__content-resource img {
  width: 100% !important;
  height: 100% !important;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
}

.p-headline {
  display: block;
  position: relative;
  padding: 0 0 11rem;
}
@media screen and (max-width: 960px) {
  .p-headline {
    padding: 0 0 7rem;
  }
}
.p-headline__container {
  width: 80%;
  max-width: 108rem;
  display: block;
  position: relative;
  margin: 0 auto;
  -webkit-mask: url("../img/mask_area1.png") no-repeat 50% 0/100% 1500%;
  mask: url("../img/mask_area1.png") no-repeat 50% 0/100% 1500%;
}
@media screen and (max-width: 960px) {
  .p-headline__container {
    width: 90%;
  }
}
.is-active .p-headline__container {
  animation: mask 1.5s steps(14, end) forwards;
}
.is-active-end .p-headline__container {
  -webkit-mask: none;
  mask: none;
}
.p-headline__header {
  display: block;
  position: relative;
  margin-bottom: 4rem;
}
@media screen and (max-width: 960px) {
  .p-headline__header {
    margin-bottom: 1.8rem;
  }
}
.p-headline__title {
  width: 100%;
  max-width: 27rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-headline__title {
    width: 13.8rem;
  }
}
.p-headline__list {
  display: block;
  position: relative;
}
.p-headline__list-item {
  display: block;
  position: relative;
}
.p-headline__list-item::before {
  content: "";
  width: 100%;
  height: 0.1rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 0.1rem solid var(--color-gold);
}
.p-headline__list-item::after {
  content: "";
  width: 100%;
  height: 1rem;
  display: block;
  position: absolute;
  bottom: 0.1rem;
  left: 0;
  background: url("../img/point.svg") no-repeat left center/0.8rem auto, url("../img/point.svg") no-repeat right center/0.8rem auto;
  transform: translate(0, 50%);
}
@media screen and (max-width: 960px) {
  .p-headline__list-item::after {
    bottom: 0;
    background-size: 0.4rem auto;
  }
}
.p-headline__more {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin-top: 4rem;
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  .p-headline__more {
    margin-top: 2.1rem;
  }
}

.p-headline_data {
  display: block;
  position: relative;
  padding: 3rem 0;
}
@media screen and (min-width: 961px) {
  .p-headline_data {
    display: flex;
    align-items: flex-start;
  }
}
@media screen and (max-width: 960px) {
  .p-headline_data {
    padding: 2rem 0;
  }
}
.p-headline_data::after {
  content: "";
  width: 4rem;
  height: 20rem;
  display: block;
  position: absolute;
  top: calc(100% - 1rem);
  left: 14rem;
  background: url("../img/deco_pen03.png") no-repeat center bottom/contain;
  pointer-events: none;
  animation: quill-circle 4s linear infinite;
  opacity: 0;
  transform: translate(calc(-50% - 5rem), -100%) rotate(20deg);
}
@media screen and (max-width: 960px) {
  .p-headline_data::after {
    width: 3rem;
    height: 15rem;
    left: calc(100% + 1rem);
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-headline_data::after {
    transition: opacity 0.3s var(--ease_out), left 0.4s var(--ease_out), transform 0.4s var(--ease_out);
  }
  .p-headline_data:hover::after {
    opacity: 1;
    transform: translate(-50%, -100%) rotate(20deg);
  }
}
.p-headline_data__date {
  width: 16rem;
  display: block;
  position: relative;
  font-size: 1.9rem;
  font-family: "Amiri", "Zen Old Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  letter-spacing: 0;
  line-height: 1;
  font-weight: 600;
  color: var(--color-gold);
}
@media screen and (min-width: 961px) {
  .p-headline_data__date {
    top: 1rem;
    padding-top: 0.2rem;
    margin-right: 6rem;
  }
}
@media screen and (max-width: 960px) {
  .p-headline_data__date {
    padding-top: 0.1rem;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    padding-left: 1.4rem;
  }
}
.p-headline_data__date::after {
  content: "";
  width: 2rem;
  height: 2rem;
  display: block;
  position: absolute;
  top: 50%;
  background: url("../img/point.svg") no-repeat center/contain;
  transform: translate(50%, -50%);
}
@media screen and (min-width: 961px) {
  .p-headline_data__date::after {
    right: 0;
  }
}
@media screen and (max-width: 960px) {
  .p-headline_data__date::after {
    width: 1.2rem;
    height: 1.2rem;
    left: 0;
    transform: translate(0, -50%);
    background-position: left center;
  }
}
.p-headline_data__title {
  display: block;
  position: relative;
  font-size: 2rem;
  line-height: 1.85;
  letter-spacing: -0.05rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (min-width: 961px) {
  .p-headline_data__title {
    min-width: 0;
    flex: 1 1 0;
  }
}
@media screen and (max-width: 960px) {
  .p-headline_data__title {
    font-size: 1.3rem;
    line-height: 1.6;
    -webkit-line-clamp: 3;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-headline_data__title {
    transition: color 0.5s var(--ease_inout);
  }
  .p-headline_data:hover .p-headline_data__title {
    color: var(--color-gold);
  }
}

.p-movie {
  display: block;
  position: relative;
  padding: 2rem 0;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-movie {
    padding: 1rem 0;
  }
}
.p-movie::before {
  content: "";
  width: 100%;
  height: calc(100% - 1.6rem);
  display: block;
  position: absolute;
  top: 0.8rem;
  left: 0;
  border-top: 0.2rem solid var(--color-gold);
  border-bottom: 0.2rem solid var(--color-gold);
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-movie::before {
    height: calc(100% - 0.9rem);
    top: 0.45rem;
    border-width: 0.1rem;
  }
}
.p-movie::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-top: 0.4rem solid var(--color-gold);
  border-bottom: 0.4rem solid var(--color-gold);
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-movie::after {
    border-width: 0.2rem;
  }
}
.p-movie__container {
  display: block;
  position: relative;
  padding: 0.8rem 0;
}
@media screen and (max-width: 960px) {
  .p-movie__container {
    padding: 0.4rem 0;
  }
}
.p-movie__container::before {
  content: "";
  width: 100%;
  height: calc(100% - 1.2rem);
  display: block;
  position: absolute;
  top: 0.6rem;
  left: 0;
  border-top: 0.2rem solid var(--color-black);
  border-bottom: 0.2rem solid var(--color-black);
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-movie__container::before {
    height: calc(100% - 0.6rem);
    top: 0.3rem;
    border-width: 0.1em;
  }
}
.p-movie__container::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-top: 0.3rem solid var(--color-black);
  border-bottom: 0.3rem solid var(--color-black);
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-movie__container::after {
    border-width: 0.2rem;
  }
}
.p-movie__content {
  display: block;
  position: relative;
  z-index: 0;
}

.p-movie_data {
  height: 66.5rem;
  display: block;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-movie_data {
    height: 22.4rem;
  }
}
.p-movie_data::after {
  content: "";
  width: 100%;
  padding-top: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.4;
  background: var(--color-gold);
  transition: opacity 0.5s var(--ease_out);
}
@media (hover: hover) and (pointer: fine) {
  .p-movie_data::after {
    opacity: 1;
    background: transparent;
    -webkit-mask: url("../img/mask2.png") no-repeat 50% 0/100% 1200%;
    mask: url("../img/mask2.png") no-repeat 50% 0/100% 1200%;
    -webkit-backdrop-filter: sepia(100%);
    backdrop-filter: sepia(100%);
  }
  .p-movie_data:hover::after {
    opacity: 0;
    transition: opacity 0s linear 1s;
    animation: mask 1s steps(11, end) forwards;
  }
}
.p-movie_data__thumb {
  width: 100%;
  height: 120%;
  display: block;
  position: absolute;
  top: -10%;
  left: 0;
  z-index: 0;
}
.p-movie_data__thumb-img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.8s var(--ease_out);
  z-index: 1;
}
.is-movie-play .p-movie_data__thumb-img {
  opacity: 0;
  transition-delay: 0.3s;
}
.p-movie_data__thumb-img img,
.p-movie_data__thumb-img source,
.p-movie_data__thumb-img picture {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-movie_data__thumb-movie {
  width: 100%;
  min-width: 178vh;
  height: 100%;
  min-height: 57vw;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-movie_data__thumb-movie iframe {
  width: 100%;
  height: 200%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-movie_data__icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.p-movie_data__icon::before {
  content: "";
  width: 15rem;
  height: 15rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  background: url("../img/menu_base.png") no-repeat center/contain;
}
@media screen and (max-width: 960px) {
  .p-movie_data__icon::before {
    width: 8rem;
    height: 8rem;
  }
}
.p-movie_data__icon-text {
  display: block;
  position: relative;
  left: 0.3rem;
  font-size: 2rem;
  letter-spacing: 0.5rem;
  font-family: "Gloock", "Zen Old Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  color: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-movie_data__icon-text {
    font-size: 1rem;
    letter-spacing: 0.2rem;
  }
}

.p-intro {
  width: 100%;
  max-width: 140rem;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 6.2rem 0 11rem;
}
@media screen and (max-width: 960px) {
  .p-intro {
    padding: 7.5rem 0 5rem;
  }
}
.p-intro__deco {
  display: block;
  position: absolute;
  pointer-events: none;
}
.p-intro__deco.--pen {
  width: 42rem;
  top: 5%;
  left: 84.8%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .p-intro__deco.--pen {
    width: 20rem;
    top: 1%;
    left: 87%;
  }
}
.p-intro__deco.--star1 {
  width: 30rem;
  top: 12%;
  left: 87%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .p-intro__deco.--star1 {
    width: 17rem;
    top: 4%;
    left: 78%;
  }
}
.p-intro__deco-img {
  display: block;
  position: relative;
}
.p-intro__in {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  -webkit-mask: url("../img/mask_area2.png") no-repeat 50% 0/200% 1500%;
  mask: url("../img/mask_area2.png") no-repeat 50% 0/200% 1500%;
}
@media screen and (max-width: 960px) {
  .p-intro__in {
    overflow: hidden;
  }
}
.is-active .p-intro__in {
  animation: mask 1.5s steps(14, end) forwards;
}
.is-active-end .p-intro__in {
  -webkit-mask: none;
  mask: none;
}
.p-intro__container {
  width: 80%;
  max-width: 108rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-intro__container {
    width: 90%;
  }
}
.p-intro__header {
  display: block;
  position: relative;
  margin-bottom: 5.6rem;
}
@media screen and (max-width: 960px) {
  .p-intro__header {
    margin-bottom: 3.1rem;
  }
}
.p-intro__title {
  width: 100%;
  max-width: 54.5rem;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-intro__title {
    width: 27.4rem;
  }
}
.p-intro__inner {
  display: block;
  position: relative;
}
.p-intro__catch {
  display: block;
  position: relative;
  font-size: 2.2rem;
  color: var(--color-gold);
  line-height: 1.8;
  letter-spacing: 0.14rem;
}
@media screen and (max-width: 960px) {
  .p-intro__catch {
    font-size: 1.5rem;
    line-height: 1.75;
    letter-spacing: 0.05rem;
  }
}
.p-intro__text {
  display: block;
  position: relative;
  margin-top: 4rem;
}
@media screen and (max-width: 960px) {
  .p-intro__text {
    margin-top: 1.5rem;
  }
}
.p-intro__text-par {
  display: block;
  position: relative;
  font-size: 1.6rem;
  letter-spacing: 0.12rem;
  line-height: 2.6;
}
@media screen and (max-width: 960px) {
  .p-intro__text-par {
    font-size: 1.25rem;
    letter-spacing: 0.03rem;
    line-height: 1.95;
  }
}
.p-intro__text-par span {
  letter-spacing: -0.5rem;
  margin-right: 0.5em;
}
@media screen and (max-width: 960px) {
  .p-intro__text-par span {
    letter-spacing: -0.2rem;
  }
}
.p-intro__text-par ruby rt {
  letter-spacing: 0.2rem;
  padding-bottom: 0.1em;
  text-align: center;
}
.p-intro__text-par + .p-intro__text-par {
  margin-top: 1.5em;
}
.p-intro__lead {
  display: block;
  position: relative;
  margin-top: 3.7rem;
  font-size: 2.3rem;
  line-height: 1.8;
  letter-spacing: 0;
}
@media screen and (max-width: 960px) {
  .p-intro__lead {
    font-size: 1.4rem;
    letter-spacing: 0.05rem;
    margin-top: 2.7rem;
  }
}
.p-intro__lead span {
  letter-spacing: -0.5rem;
  margin-right: 0.5em;
}
@media screen and (max-width: 960px) {
  .p-intro__lead span {
    letter-spacing: -0.2rem;
  }
}
.p-intro__window {
  width: 68rem;
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-intro__window {
    position: absolute;
    top: 50%;
    left: calc(100% - 6rem);
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 960px) {
  .p-intro__window {
    width: 105.5%;
    margin-top: 3.6rem;
  }
}

.p-intro_window {
  display: block;
  position: relative;
}
.p-intro_window__base {
  display: block;
  position: relative;
}
.p-intro_window__thumb {
  width: 100%;
  height: 110%;
  display: block;
  position: absolute;
  top: -5%;
  left: 0;
  -webkit-mask: url("../img/top/intro_deco_pc_base.png") no-repeat center/contain;
  mask: url("../img/top/intro_deco_pc_base.png") no-repeat center/contain;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-intro_window__thumb {
    height: 120%;
    top: -10%;
    -webkit-mask: url("../img/top/intro_deco_sp_base.png") no-repeat center/contain;
    mask: url("../img/top/intro_deco_sp_base.png") no-repeat center/contain;
  }
}
.p-intro_window__thumb-img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.p-intro_window__thumb-img img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0;
}
.p-intro_window__thumb-img canvas {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-intro_window__cover {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.p-comics {
  width: 100%;
  max-width: 140rem;
  display: block;
  position: relative;
  margin: 3.5rem auto 0;
  padding: 4.8rem 0 5rem;
}
@media screen and (max-width: 960px) {
  .p-comics {
    margin-top: 0;
    padding: 5.2rem 0 5rem;
  }
}
.p-comics__deco {
  display: block;
  position: absolute;
  pointer-events: none;
}
.p-comics__deco.--book1 {
  width: 40rem;
  top: 15%;
  left: 8.5%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .p-comics__deco.--book1 {
    width: 16rem;
    top: 3%;
    left: 12%;
  }
}
.p-comics__deco.--book2 {
  width: 46rem;
  bottom: 2%;
  left: 82%;
  transform: translate(-50%, 50%);
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .p-comics__deco.--book2 {
    width: 17rem;
    bottom: 5%;
    left: 80%;
  }
}
.p-comics__deco.--star1 {
  width: 13rem;
  top: 4.5%;
  left: 17%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .p-comics__deco.--star1 {
    width: 6rem;
    top: 3%;
    left: 23%;
  }
}
.p-comics__deco.--star2 {
  width: 7.8rem;
  top: 50%;
  left: 92.5%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 961px) {
  .p-comics__deco.--star2 {
    z-index: 1;
  }
}
@media screen and (max-width: 960px) {
  .p-comics__deco.--star2 {
    width: 4rem;
    top: 100%;
    left: 90%;
  }
}
.p-comics__deco-img {
  display: block;
  position: relative;
}
.p-comics__container {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  z-index: 0;
}
.p-comics__bg {
  display: block;
  position: relative;
  -webkit-mask: url("../img/mask_area1.png") no-repeat 50% 0/100% 1500%;
  mask: url("../img/mask_area1.png") no-repeat 50% 0/100% 1500%;
}
@media screen and (max-width: 960px) {
  .p-comics__bg {
    -webkit-mask-size: 300% 1500%;
    mask-size: 300% 1500%;
  }
}
.is-active .p-comics__bg {
  animation: mask 1.5s steps(14, end) forwards;
}
@media screen and (max-width: 960px) {
  .is-active .p-comics__bg {
    animation-duration: 2s;
  }
}
.is-active-end .p-comics__bg {
  -webkit-mask: none;
  mask: none;
}
@media screen and (min-width: 961px) {
  .p-comics__bg {
    width: 117.4%;
    left: -8.7%;
  }
}
@media screen and (max-width: 960px) {
  .p-comics__bg {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
  .p-comics__bg::before {
    content: "";
    width: 100%;
    height: calc(100% - 63.5782877604vw - 11.1897786458vw);
    display: block;
    position: absolute;
    bottom: 11.1897786458vw;
    left: 0;
    background: var(--color-white);
  }
  .p-comics__bg::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: url("../img/top/frame_comics_base_top_sp.png") no-repeat center top/100% auto, url("../img/top/frame_comics_base_btm_sp.png") no-repeat center bottom/100% auto;
  }
  .p-comics__bg img {
    display: none;
    visibility: hidden;
    content-visibility: hidden;
  }
}
.p-comics__content {
  width: 80%;
  max-width: 108rem;
  height: 100%;
  display: block;
  padding: 18.5rem 0;
  -webkit-mask: url("../img/mask.png") no-repeat 50% 0/100% 1200%;
  mask: url("../img/mask.png") no-repeat 50% 0/100% 1200%;
}
@media screen and (max-width: 960px) {
  .p-comics__content {
    -webkit-mask-size: 300% 1200%;
    mask-size: 300% 1200%;
  }
}
.is-active .p-comics__content {
  animation: mask 1.2s steps(11, end) forwards;
}
@media screen and (max-width: 960px) {
  .is-active .p-comics__content {
    animation-duration: 1.6s;
  }
}
.is-active-end .p-comics__content {
  -webkit-mask: none;
  mask: none;
}
@media screen and (min-width: 961px) {
  .p-comics__content {
    max-width: 90rem;
    display: grid;
    grid-template-columns: 39.5rem 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 3rem 0.6rem;
    grid-template-areas: "visual header" "visual inner";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 960px) {
  .p-comics__content {
    width: 90%;
    padding: 10rem 0;
    margin: 0 auto;
  }
}
.p-comics__header {
  min-width: 0;
  grid-area: header;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-comics__header {
    margin-bottom: 2rem;
  }
}
.p-comics__title {
  width: 100%;
  max-width: 38rem;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-comics__title {
    width: 19rem;
  }
}
.p-comics__visual {
  min-width: 0;
  grid-area: visual;
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-comics__visual {
    top: 1rem;
    min-height: 43rem;
  }
}
@media screen and (max-width: 960px) {
  .p-comics__visual {
    margin-bottom: 3.2rem;
  }
}
.p-comics__visual-img {
  width: 33rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 961px) {
  .p-comics__visual-img {
    transform: rotate(-6deg);
  }
}
@media screen and (max-width: 960px) {
  .p-comics__visual-img {
    width: 21.6rem;
  }
}
.p-comics__inner {
  min-width: 0;
  grid-area: inner;
  display: block;
  position: relative;
}
@media screen and (min-width: 961px){
  .p-comics__header {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .p-comics__visual {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
  }
  .p-comics__inner {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}
.p-comics__lead {
  display: block;
  position: relative;
  margin-bottom: 2.4rem;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  color: var(--color-gold);
}
@media screen and (max-width: 960px) {
  .p-comics__lead {
    margin-bottom: 1.1rem;
    font-size: 1.5rem;
  }
}
.p-comics__cap {
  display: block;
  position: relative;
  font-size: 4.2rem;
  white-space: nowrap;
  letter-spacing: -0.15rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 961px) {
  .p-comics__cap {
    width: 120%;
    left: -10%;
  }
}
@media screen and (max-width: 960px) {
  .p-comics__cap {
    font-size: 2rem;
  }
}
.p-comics__text {
  display: block;
  position: relative;
  margin-top: 1.2rem;
  font-size: 1.7rem;
  letter-spacing: 0.01rem;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-comics__text {
    margin-top: 1rem;
    font-size: 1.1rem;
    letter-spacing: 0;
  }
}
.p-comics__btn {
  width: 100%;
  max-width: 34rem;
  display: block;
  position: relative;
  margin: 5rem auto 0;
}
@media screen and (max-width: 960px) {
  .p-comics__btn {
    max-width: 25rem;
    margin-top: 2.4rem;
  }
}
.p-comics__footer {
  grid-column: 1/-1;
  display: block;
  position: relative;
  margin-top: 7rem;
}
@media screen and (max-width: 960px) {
  .p-comics__footer {
    margin-top: 4rem;
  }
}
.p-comics__circle {
  width: 20rem;
  height: auto;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media screen and (min-width: 961px) and (hover: hover) and (pointer: fine) {
  .p-comics__circle {
    display: block;
  }
}
.p-comics__circle-path {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  fill: none;
  stroke: var(--color-black);
  stroke-width: 0.1rem;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
}
.p-comics__btn:hover .p-comics__circle-path {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.8s var(--ease_out);
}

.p-comics_award {
  display: block;
  position: relative;
}
.p-comics_award__header {
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}
@media screen and (min-width: 961px) {
  .p-comics_award__header {
    width: 120%;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media screen and (max-width: 960px) {
  .p-comics_award__header {
    margin-bottom: 2rem;
  }
}
.p-comics_award__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin: 0 auto;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 400;
  color: var(--color-gold);
}
@media screen and (max-width: 960px) {
  .p-comics_award__title {
    font-size: 1.6rem;
  }
}
.p-comics_award__title::before {
  content: "";
  width: 100vw;
  height: 0.9rem;
  display: block;
  position: absolute;
  top: 50%;
  left: -1.5rem;
  transform: translate(-100%, -50%);
  background: url("../img/top/comics_line.png") repeat-x 100% 0/auto 100%;
}
@media screen and (max-width: 960px) {
  .p-comics_award__title::before {
    left: -1.3rem;
    height: 0.6rem;
  }
}
.p-comics_award__title::after {
  content: "";
  width: 100vw;
  height: 0.9rem;
  display: block;
  position: absolute;
  top: 50%;
  right: -0.1rem;
  transform: translate(100%, -50%);
  background: url("../img/top/comics_line.png") repeat-x 0 0/auto 100%;
}
@media screen and (max-width: 960px) {
  .p-comics_award__title::after {
    height: 0.6rem;
    right: -0.5rem;
  }
}
.p-comics_award__inner {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-comics_award__img {
  width: 100%;
  max-width: 82rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-comics_award__cap {
  width: 100%;
  display: block;
  position: relative;
  margin: 1.5rem auto 0;
  font-size: 1.8rem;
  color: var(--color-gold);
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-comics_award__cap {
    margin-top: 1rem;
    font-size: 1.3rem;
  }
}

.p-comics_btn {
  display: block;
  position: relative;
}
.p-comics_btn__base {
  display: block;
  position: relative;
}
.p-comics_btn__text {
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.1rem;
  color: var(--color-white);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .p-comics_btn__text {
    font-size: 1.25rem;
    font-weight: 400;
  }
}