@charset "UTF-8";
:root {
  --svh: 100vh;
  --color-text: var(--color-white);
  --color-bg: var(--color-black);
  --content-color: var(--color-red);
  --color-black: #000;
  --color-white: #fff;
  --color-gray-white: #e2e1e6;
  --color-gray-black: #1c1c1c;
  --color-red: #e80012;
  --color-green: #ccff00;
  --color-sky: #07ffff;
  --ease_out: cubic-bezier(0.5, 1, 0.89, 1);
  --ease_inout: cubic-bezier(0.65, 0, 0.35, 1);
}

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

html {
  width: 100%;
  font-size: 62.5%;
  overflow-x: hidden;
  overflow-y: auto;
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
  html {
    font-size: max(0.78125vw, 8px);
  }
}
@media screen and (max-width: 960px) {
  html {
    font-size: min(2.6666666667vw, 15px);
  }
}

body {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.3;
  letter-spacing: 0.15rem;
  color: var(--color-text);
  background: var(--color-bg);
  overflow: hidden;
  font-family: "DotGothic16", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
}

a {
  color: var(--color-text);
  position: relative;
  text-decoration: none;
}

.clearfix:after {
  content: " . ";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

* {
  box-sizing: border-box;
}
@media screen and (max-width: 960px) {
  * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
}
*::before, *::after {
  box-sizing: border-box;
}
*:focus-visible {
  outline: 1px solid var(--color-black) !important;
}

input, select, textarea {
  min-height: 1.5em;
  background-color: transparent;
}

input[type=submit], input[type=reset] {
  cursor: pointer;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}

a[href^=" tel "] {
  display: inline-block;
  color: inherit;
}

button {
  font-size: 1.6rem;
  line-height: 1.3;
  font-family: "DotGothic16", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.1rem;
  font-feature-settings: "palt";
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ol, ul {
  list-style: none;
}

@media screen and (min-width: 961px) {
  .is-sp {
    display: none !important;
  }
  .is-sp-inline {
    display: none !important;
  }
  .sp {
    display: none !important;
  }
  .sp-inline {
    display: none !important;
  }
}
@media screen and (max-width: 960px) {
  .is-pc {
    display: none !important;
  }
  .is-pc-inline {
    display: none !important;
  }
  .pc {
    display: none !important;
  }
  .pc-inline {
    display: none !important;
  }
}
@media screen and (orientation: landscape) {
  .is-port {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .is-land {
    display: none !important;
  }
}
img {
  max-width: 100%;
  display: block;
  vertical-align: middle;
}
img::-moz-selection {
  background: none;
}
img::selection {
  background: none;
}
img[height] {
  height: auto !important;
}

[data-prefix]::before {
  content: attr(data-prefix);
}

[data-suffix]::after {
  content: attr(data-suffix);
}

.l-wrap {
  display: block;
  position: relative;
}
.l-wrap__loader {
  height: 3rem;
  width: 3rem;
  display: block;
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  pointer-events: none;
  z-index: 100;
}
@media screen and (max-width: 960px) {
  .l-wrap__loader {
    height: 2rem;
    width: 2rem;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}
.is-op .l-wrap__loader, .is-load .l-wrap__loader {
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}
.l-wrap__loader::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  border: 0.2rem solid transparent;
  border-top: 0.2rem solid var(--color-white);
  animation: rotate 0.7s linear infinite;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .l-wrap__loader::before {
    border-width: 0.15rem;
  }
}
.l-wrap__bg {
  width: 100%;
  height: 100vh;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}
.is-load .l-wrap__bg {
  opacity: 1;
  transition: opacity 1.2s var(--ease_inout) 0.5s;
}
.l-wrap__bg::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/bg_2nd.jpg") no-repeat center/cover;
  z-index: -1;
}
.l-wrap__bg-line {
  content: "";
  width: 23rem;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/photo_03.jpg") repeat-y 0 0/auto 104rem;
}
@media screen and (max-width: 960px) {
  .l-wrap__bg-line {
    width: 11.5rem;
    background-size: auto 52rem;
  }
}
.is-load .l-wrap__bg-line {
  animation: line-bg 60s linear infinite;
}
@media screen and (max-width: 960px) {
  .is-load .l-wrap__bg-line {
    animation-duration: 120s;
  }
}
@keyframes line-bg {
  0% {
    background-position-y: 0;
  }
  100% {
    background-position-y: 104rem;
  }
}
.l-wrap__bg-line::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-right: 1px solid var(--color-green);
}
.l-wrap__cover {
  width: 100%;
  height: 100vh;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0;
}
.is-cover-pre .l-wrap__cover, .is-cover-anim .l-wrap__cover {
  opacity: 1;
}
.is-cover-anim .l-wrap__cover {
  background: var(--color-black);
}
.l-wrap__container {
  display: block;
  position: relative;
  opacity: 0;
}
.is-load .l-wrap__container {
  opacity: 1;
  transition: opacity 1.2s var(--ease_inout);
}

.l-footer {
  display: block;
  position: relative;
  margin-top: 15rem;
}
@media screen and (min-width: 961px) {
  .l-footer {
    padding-left: 23rem;
  }
}
@media screen and (max-width: 960px) {
  .l-footer {
    margin-top: 5rem;
  }
}
.l-footer__container {
  display: block;
  position: relative;
  padding: 5rem 0;
  color: var(--color-black);
  background: var(--color-gray-white);
}
@media screen and (max-width: 960px) {
  .l-footer__container {
    padding: 4rem 0;
  }
}
.l-footer__content {
  width: 90.5%;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 961px) {
  .l-footer__content {
    padding-left: 20rem;
  }
}
.l-footer__brand {
  width: 13rem;
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .l-footer__brand {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
@media screen and (max-width: 960px) {
  .l-footer__brand {
    width: 15rem;
    margin: 0 auto 4.2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__brand {
    transition: opacity 0.4s var(--ease_out);
  }
  .l-footer__brand:hover {
    opacity: 0.5;
  }
}
.l-footer__share {
  display: block;
  position: relative;
}
.l-footer__help {
  display: block;
  position: relative;
  margin-top: 2.5rem;
}
.l-footer__legal {
  display: block;
  position: relative;
  margin-top: 0.8rem;
}
.l-footer__legal-text {
  display: block;
  position: relative;
  font-size: 1.1rem;
  letter-spacing: 0;
  text-align: right;
}
@media screen and (max-width: 960px) {
  .l-footer__legal-text {
    font-size: 1rem;
    text-align: center;
  }
}
.l-footer__legal-text + .l-footer__legal-text {
  margin-top: 2.4rem;
}
@media screen and (max-width: 960px) {
  .l-footer__legal-text + .l-footer__legal-text {
    margin-top: 2rem;
  }
}

.l-footer_share {
  display: block;
  position: relative;
}
.l-footer_share__list {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media screen and (max-width: 960px) {
  .l-footer_share__list {
    justify-content: center;
  }
}
.l-footer_share__list-item {
  display: block;
  position: relative;
}
.l-footer_share__list-item + .l-footer_share__list-item {
  margin-left: 2.4rem;
}
@media screen and (max-width: 960px) {
  .l-footer_share__list-item + .l-footer_share__list-item {
    margin-left: 2.8rem;
  }
}
.l-footer_share__link {
  width: 3rem;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .l-footer_share__link {
    width: 3.4rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer_share__link {
    transition: opacity 0.4s var(--ease_out);
  }
  .l-footer_share__link:hover {
    opacity: 0.5;
  }
}

.l-footer_help {
  display: block;
  position: relative;
}
.l-footer_help__list {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media screen and (max-width: 960px) {
  .l-footer_help__list {
    justify-content: center;
  }
}
.l-footer_help__list-item {
  display: block;
  position: relative;
}
.l-footer_help__list-item + .l-footer_help__list-item {
  margin-left: 1.4rem;
}
.l-footer_help__link {
  display: block;
  position: relative;
  font-size: 1.25rem;
  letter-spacing: 0;
  color: var(--color-black);
}
@media screen and (max-width: 960px) {
  .l-footer_help__link {
    font-size: 1rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer_help__link:hover {
    text-decoration: underline;
  }
}

.p-hero {
  display: block;
  position: relative;
  background: var(--color-black);
}
.p-hero::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  border-top: 1px solid var(--color-green);
}
.p-hero__line {
  width: 100%;
  height: 12rem;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-hero__line {
    height: 6rem;
  }
}
@keyframes line-hero {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -128rem;
  }
}
.p-hero__line.--line1 {
  background: url("../img/photo_01.jpg") repeat-x 0 0/128rem auto;
}
@media screen and (max-width: 960px) {
  .p-hero__line.--line1 {
    background-size: 64rem auto;
  }
}
.is-load .p-hero__line.--line1 {
  animation: line-hero 60s linear infinite;
}
@media screen and (max-width: 960px) {
  .is-load .p-hero__line.--line1 {
    animation-duration: 120s;
  }
}
.p-hero__line.--line2 {
  background: url("../img/photo_02.jpg") repeat-x 0 0/128rem auto;
}
@media screen and (max-width: 960px) {
  .p-hero__line.--line2 {
    background-size: 64rem auto;
  }
}
.is-load .p-hero__line.--line2 {
  animation: line-hero 60s linear infinite reverse;
}
@media screen and (max-width: 960px) {
  .is-load .p-hero__line.--line2 {
    animation-duration: 120s;
  }
}
.p-hero__container {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  z-index: 0;
}
.p-hero__container::before {
  content: "";
  width: 35rem;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../img/main_deco.png") no-repeat right top/contain;
  z-index: -1;
}
.p-hero__container::after {
  content: "";
  width: 35rem;
  height: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(-1, -1);
  background: url("../img/main_deco.png") no-repeat left top/contain;
  z-index: -1;
}
.p-hero__content {
  --content-color: var(--color-green);
  width: 100%;
  /*
  display: flex;
  justify-content: center;
  align-items: center;
  */
  position: relative;
  margin: 0 auto;
  z-index: 0;
}
@media screen and (min-width: 961px) {
  .p-hero__content {
    padding: 6rem 0 5.5rem;
  }
}
@media screen and (max-width: 960px) {
  .p-hero__content {
    width: 100%;
    padding: 22rem 0 5.5rem;
  }
}
.p-hero__visual {
  width: 28%;
  display: block;
  position: absolute;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-hero__visual {
    width: 90%;
  }
}
.p-hero__visual.--l {
  width: 30.8rem;
  top: 90%;
  left: 0;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .p-hero__visual.--l {
    width: 21rem;
    top: 45%;
  }
}
.p-hero__visual.--r {
  width: 36.8rem;
  top: 68%;
  right: 0;
  transform: translate(50%, -50%);
}
@media screen and (max-width: 960px) {
  .p-hero__visual.--r {
    width: 29.5rem;
    top: 42.5%;
  }
}
.p-hero__visual-img {
  display: block;
  position: relative;
}
.p-hero__nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(4, 22rem);
  gap: 0.5rem;
  position: relative;
  margin: 5.8rem auto 0;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .p-hero__nav {
    width: 95%;
    max-width: 34.5rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem;
    margin-top: 3.8rem;
  }
}
.p-hero__nav.--ost {
  grid-template-columns: repeat(2, 29.5rem);
}
@media screen and (max-width: 960px) {
  .p-hero__nav.--ost {
    grid-template-columns: 1fr;
  }
}
.p-hero__nav + .p-hero__nav {
  margin-top: 1rem;
}
.p-hero__nav-item {
  display: block;
  position: relative;
}
.p-hero__title {
  width: 48.4rem;
  display: block;
  position: relative;
  margin: 0 auto;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .p-hero__title {
    width: 71.4666666667%;
    max-width: 48.4rem;
  }
}
.p-hero__title-logo {
  width: 56%;
  display: block;
  position: relative;
  margin: 0 auto 8.5%;
}
@media screen and (max-width: 960px) {
  .p-hero__title-logo {
    margin-bottom: 7%;
  }
}
.p-hero__title-cap {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
}

.p-package {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-package {
    padding-left: 23rem;
  }
}
.p-package__container {
  width: 85%;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 10rem 0 0;
}
@media screen and (max-width: 960px) {
  .p-package__container {
    width: 92%;
    padding: 2.5rem 0 0;
  }
}
.p-package__list {
  display: block;
  position: relative;
}
.p-package__list-item {
  display: block;
  position: relative;
}
.p-package__list-item:nth-child(odd) {
  --content-color: var(--color-green);
}
.p-package__list-item:nth-child(even) {
  --content-color: var(--color-sky);
}
.p-package__list-item + .p-package__list-item {
  margin-top: 6rem;
}
@media screen and (max-width: 960px) {
  .p-package__list-item + .p-package__list-item {
    margin-top: 3rem;
  }
}

.p-package_content {
  display: block;
  position: relative;
  background: var(--color-gray-black);
}
.p-package_content::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--content-color);
}
.p-package_content__container {
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 6rem 0;
}
@media screen and (max-width: 960px) {
  .p-package_content__container {
    padding: 3.4rem 0 3rem;
  }
}
.p-package_content__header {
  width: 100%;
  display: block;
  position: relative;
  margin-bottom: 5rem;
}
@media screen and (max-width: 960px) {
  .p-package_content__header {
    margin-bottom: 2rem;
  }
}
.p-package_content__title {
  display: block;
  position: relative;
}
.p-package_content__title-main {
  display: block;
  position: relative;
  font-size: 5.4rem;
  font-family: "Dela Gothic One", "DotGothic16", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.6rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  color: var(--content-color);
}
@media screen and (max-width: 960px) {
  .p-package_content__title-main {
    font-size: 2.6rem;
  }
}
.p-package_content__title-sub {
  display: block;
  position: relative;
  margin-top: 1.2rem;
  font-size: 3.6rem;
  font-family: "Dela Gothic One", "DotGothic16", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.2rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-package_content__title-sub {
    margin-top: 0.6rem;
    font-size: 1.7rem;
  }
}
.p-package_content__inner {
  width: 79%;
  max-width: 100rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 961px) {
  .p-package_content__inner {
    display: grid;
    grid-template-columns: 50% 1fr;
    gap: 5rem;
  }
}
@media screen and (max-width: 960px) {
  .p-package_content__inner {
    width: 90%;
  }
}
.p-package_content__visual {
  min-width: 0;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-package_content__visual {
    margin-bottom: 2rem;
  }
}
.p-package_content__visual-img {
  display: block;
  position: relative;
}
.p-package_content__outline {
  min-width: 0;
  display: block;
  position: relative;
}
.p-package_content__data {
  display: block;
  position: relative;
}
.p-package_content__data + .p-package_content__data {
  margin-top: 3rem;
}
@media screen and (max-width: 960px) {
  .p-package_content__data + .p-package_content__data {
    margin-top: 1.5rem;
  }
}
.p-package_content__data-cap {
  display: block;
  position: relative;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  color: var(--content-color);
}
@media screen and (max-width: 960px) {
  .p-package_content__data-cap {
    margin-bottom: 0.4rem;
    font-size: 1.6rem;
  }
}
.p-package_content__data-content {
  display: block;
  position: relative;
}
.p-package_content__data-lead {
  display: block;
  position: relative;
  font-size: 1.7rem;
  line-height: 1.3;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 960px) {
  .p-package_content__data-lead {
    font-size: 1.5rem;
  }
}
.p-package_content__data-lead small {
  font-size: 0.8em;
}
.p-package_content__data-text {
  display: block;
  position: relative;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 960px) {
  .p-package_content__data-text {
    font-size: 1.25rem;
  }
}
.p-package_content__data-text small {
  font-size: 0.8em;
}
.p-package_content__data-note {
  display: block;
  position: relative;
  margin-top: 0.1rem;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 960px) {
  .p-package_content__data-note {
    margin-top: 0;
    font-size: 1.1rem;
  }
}
.p-package_content__data-movie {
  max-width: 27rem;
  display: block;
  position: relative;
  margin: 0.4em 0 1em;
}
@media screen and (max-width: 960px) {
  .p-package_content__data-movie {
    max-width: 40rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-package_content__data-movie {
    transition: opacity 0.4s var(--ease_out);
  }
  .p-package_content__data-movie:hover {
    opacity: 0.5;
  }
}
.p-package_content__data-movie::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--content-color);
}
.p-package_content__data-movie::after {
  content: "";
  width: 4rem;
  height: 4rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/btn_play.jpg") no-repeat center/contain;
}
.p-package_content__note {
  display: block;
  position: relative;
  margin-top: 2.2rem;
  font-size: 1.3rem;
  letter-spacing: 0;
  line-height: 1.6;
}
@media screen and (max-width: 960px) {
  .p-package_content__note {
    font-size: 1rem;
  }
}
.p-package_content__btn {
  width: 25rem;
  display: block;
  position: relative;
  margin-top: 2.4rem;
}
@media screen and (min-width: 961px) {
  .p-package_content__btn {
    margin-left: 1rem;
  }
}
@media screen and (max-width: 960px) {
  .p-package_content__btn {
    width: 100%;
    margin-top: 2.8rem;
  }
}

.p-special {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-special {
    padding-left: 23rem;
  }
}
.p-special__container {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 12rem 0 4.8rem;
}
@media screen and (max-width: 960px) {
  .p-special__container {
    padding: 5.8rem 0 4.8rem;
  }
}
.p-special__list {
  display: block;
  position: relative;
}
.p-special__list-item {
  display: block;
  position: relative;
}
.p-special__list-item + .p-special__list-item {
  margin-top: 10.5rem;
}
@media screen and (max-width: 960px) {
  .p-special__list-item + .p-special__list-item {
    margin-top: 5rem;
  }
}

.p-special_content {
  display: block;
  position: relative;
  background: var(--color-gray-black);
}
.p-special_content__container {
  width: 85%;
  max-width: 120rem;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 9rem 0 10rem;
}
@media screen and (max-width: 960px) {
  .p-special_content__container {
    padding: 4.5rem 0 5rem;
  }
}
.p-special_content__header {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-special_content__title {
  display: block;
  position: relative;
  font-size: 6rem;
  font-family: "Dela Gothic One", "DotGothic16", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.1rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  color: var(--content-color);
}
@media screen and (max-width: 960px) {
  .p-special_content__title {
    font-size: 3rem;
  }
}
.p-special_content__inner {
  display: block;
  position: relative;
}
.p-special_content__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-special_content__list {
    width: 78%;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}
.p-special_content__list-item {
  min-width: 0;
  display: block;
  position: relative;
}
.p-special_content__shop {
  display: block;
  position: relative;
}
.p-special_content__shop-item {
  display: block;
  position: relative;
}
.p-special_content__shop-item + .p-special_content__shop-item {
  margin-top: 4.2rem;
}
@media screen and (max-width: 960px) {
  .p-special_content__shop-item + .p-special_content__shop-item {
    margin-top: 2.2rem;
  }
}
.p-special_content__text {
  display: block;
  position: relative;
  margin-top: 3.5rem;
  font-size: 1.5rem;
  line-height: 1.35;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 960px) {
  .p-special_content__text {
    margin-top: 2.8rem;
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
.p-special_content__text small {
  font-size: 0.9em;
}

.p-special_data {
  display: block;
  position: relative;
}
.p-special_data__cap {
  display: block;
  position: relative;
  margin-bottom: 2rem;
  font-size: 2.4rem;
  line-height: 1.2;
  color: var(--content-color);
}
@media screen and (max-width: 960px) {
  .p-special_data__cap {
    margin-bottom: 1rem;
    font-size: 2rem;
    text-align: center;
  }
}
.p-special_data__title {
  display: block;
  position: relative;
  font-size: 1.7rem;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .p-special_data__title {
    font-size: 1.4rem;
    text-align: center;
  }
}
.p-special_data__thumb {
  display: block;
  position: relative;
  margin-top: 2.8rem;
}
@media screen and (max-width: 960px) {
  .p-special_data__thumb {
    margin-top: 1.6rem;
  }
}
.p-special_data__thumb-img {
  display: block;
  position: relative;
}

.p-special_shop {
  display: block;
  position: relative;
}
.p-special_shop__title {
  display: block;
  position: relative;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
  color: var(--content-color);
}
.p-special_shop__title a{
  color: var(--content-color);
  position: relative;
  display: inline-block;
}
.p-special_shop__title a::before{
  content: "";
  position: absolute;
  bottom: 3px;
  right: -22px;
  height: 16px;
  width: 16px;
  background: url(../img/icon_link.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 960px) {
  .p-special_shop__title {
    margin-bottom: 1.4rem;
    font-size: 1.4rem;
  }
  .p-special_shop__title a::before{
    bottom: 2px;
    right: -18px;
    height: 12px;
    width: 12px;
  }
}
.p-special_shop__title small {
  font-size: 0.8em;
}
.p-special_shop__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-special_shop__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.7rem 1.5rem;
  }
}
.p-special_shop__list-item {
  min-width: 0;
  display: block;
  position: relative;
}

.p-special_shop_data {
  width: 100%;
  display: block;
  position: relative;
}
.p-special_shop_data__thumb {
  display: block;
  position: relative;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 960px) {
  .p-special_shop_data__thumb {
    margin-bottom: 0.6rem;
  }
}
.p-special_shop_data__thumb-img {
  display: block;
  position: relative;
}
.p-special_shop_data__cap {
  display: block;
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 960px) {
  .p-special_shop_data__cap {
    margin-bottom: 0.2rem;
    font-size: 1.2rem;
  }
}
.p-special_shop_data__title {
  display: block;
  position: relative;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 960px) {
  .p-special_shop_data__title {
    font-size: 1.2rem;
  }
}

.p-special_detail {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 961px) {
  .p-special_detail {
    display: grid;
    grid-template-columns: 39.5% 1fr;
    gap: 5rem;
  }
}
@media screen and (max-width: 960px) {
  .p-special_detail {
    width: 78%;
  }
}
.p-special_detail__thumb {
  min-width: 0;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-special_detail__thumb {
    margin-bottom: 2.2rem;
  }
}
.p-special_detail__thumb-img {
  display: block;
  position: relative;
}
.p-special_detail__outline {
  min-width: 0;
  display: block;
  position: relative;
}
.p-special_detail__title {
  display: block;
  position: relative;
  margin-bottom: 2.2rem;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--content-color);
}
@media screen and (max-width: 960px) {
  .p-special_detail__title {
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
  }
}
.p-special_detail__text {
  display: block;
  position: relative;
  font-size: 1.5rem;
  line-height: 1.35;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 960px) {
  .p-special_detail__text {
    font-size: 1.2rem;
  }
}
.p-special_detail__text small {
  font-size: 0.9em;
}

.p-modal {
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--color-black);
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease_out);
}
.is-modal-show .p-modal {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0s linear;
}
.p-modal__container {
  width: 100%;
  min-height: var(--svh);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
}
.p-modal__content {
  width: 90%;
  max-width: 80rem;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-modal__content {
    width: 85%;
    max-width: 50rem;
  }
}
.p-modal__close {
  width: 7rem;
  height: 7rem;
  display: block;
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-modal__close {
    width: 3.5rem;
    height: 3.5rem;
    top: 1.5rem;
    right: 1.5rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-modal__close:hover {
    color: var(--color-black);
    background: var(--color-green);
  }
}
.p-modal__close::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid currentColor;
}
.p-modal__close-in {
  width: 3.8rem;
  height: 3.8rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0;
}
@media screen and (max-width: 960px) {
  .p-modal__close-in {
    width: 1.8rem;
    height: 1.8rem;
  }
}
.p-modal__close-in::before {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: currentColor;
}
@media screen and (max-width: 960px) {
  .p-modal__close-in::before {
    height: 1px;
  }
}
.p-modal__close-in::after {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background: currentColor;
}
@media screen and (max-width: 960px) {
  .p-modal__close-in::after {
    height: 1px;
  }
}

.p-buy {
  --content-color: var(--color-green);
  display: block;
  position: relative;
  padding: 10rem 0;
  background: var(--color-black);
}
@media screen and (max-width: 960px) {
  .p-buy {
    padding: 5rem 0;
  }
}
.p-buy::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--content-color);
}
.p-buy__content {
  width: 90%;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-buy__lead {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin: 0 auto 2.8rem;
  padding: 0.1rem 0.5rem 0.3rem;
  font-size: 3.4rem;
  letter-spacing: 0;
  color: var(--color-black);
  background: var(--content-color);
}
@media screen and (max-width: 960px) {
  .p-buy__lead {
    margin-bottom: 1.2rem;
    padding: 0 0.3rem 0.2rem;
    font-size: 1.3rem;
  }
}
.p-buy__text {
  display: block;
  position: relative;
  font-size: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-buy__text {
    font-size: 1.2rem;
  }
}
.p-buy__link {
  display: flex;
  position: relative;
  justify-content: center;
  margin-top: 6rem;
}
@media screen and (max-width: 960px) {
  .p-buy__link {
    margin-top: 3rem;
  }
}
.p-buy__link-item {
  width: 20rem;
  min-width: 0;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-buy__link-item {
    width: 10rem;
  }
}
.p-buy__link-item + .p-buy__link-item {
  margin-left: 2rem;
}
@media screen and (max-width: 960px) {
  .p-buy__link-item + .p-buy__link-item {
    margin-left: 1rem;
  }
}
.p-buy__chara {
  width: 13rem;
  display: block;
  position: absolute;
  top: 86%;
  left: 98.8%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .p-buy__chara {
    width: 6.5rem;
    top: 84%;
    left: 100.8%;
  }
}

.p-btn {
  width: 100%;
  display: block;
  position: relative;
  color: var(--color-white);
}
.p-btn[data-anchor] {
  background: var(--color-black);
}
@media (hover: hover) and (pointer: fine) {
  .p-btn:hover {
    color: var(--color-black);
    background: var(--content-color);
  }
}
.p-btn::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px dashed var(--content-color);
}
.p-btn__text {
  display: block;
  position: relative;
  padding: 1.5rem 1rem;
  font-size: 1.5rem;
  letter-spacing: 0.02rem;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-btn__text {
    padding: 1.9rem 1rem;
    font-size: 1.4rem;
  }
}
.p-btn__text::before {
  width: 0.8rem;
  height: 0.8rem;
  display: block;
  position: absolute;
  top: 45%;
  right: 1.8rem;
  transform: translate(0, -50%) rotate(45deg);
  border-bottom: 0.1rem solid var(--content-color);
  border-right: 0.1rem solid var(--content-color);
}
.p-btn[data-anchor] .p-btn__text::before {
  content: "";
}

.p-buy_btn {
  width: 100%;
  display: block;
  position: relative;
  color: var(--color-white);
}
@media (hover: hover) and (pointer: fine) {
  .p-buy_btn:hover {
    color: var(--color-black);
    background: var(--content-color);
  }
}
.p-buy_btn::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px dashed var(--content-color);
}
.p-buy_btn__text {
  display: block;
  position: relative;
  padding: 1.2rem 1rem;
  font-size: 2rem;
  letter-spacing: 0.02rem;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-buy_btn__text {
    padding: 0.6rem 0.6rem;
    font-size: 1.3rem;
  }
}

.p-cover {
  width: 100%;
  height: var(--svh);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.p-cover__noise {
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  content-visibility: hidden;
  pointer-events: none;
}
.is-cover-pre .p-cover__noise {
  opacity: 1;
  visibility: visible;
  content-visibility: auto;
  transition: opacity 4s var(--ease_inout);
}
.p-cover__noise-in {
  width: 100%;
  height: 500%;
  display: block;
  position: relative;
  opacity: 0.2;
}
.is-cover-pre .p-cover__noise-in {
  animation: cover 0.5s steps(4) infinite;
}
@keyframes cover {
  0% {
    transform: translate(0%, 0%);
  }
  100% {
    transform: translate(0%, -100%);
  }
}
.p-cover__noise-in::after {
  content: "";
  width: 100%;
  height: 25%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("../img/deco/glitch_color01.jpg") no-repeat center/cover;
  transform: translate(0, 100%);
}
.p-cover__noise-img {
  width: 100%;
  height: 25%;
  display: block;
  position: relative;
}
.p-cover__noise-img:nth-child(1) {
  background: url("../img/deco/glitch_color01.jpg") no-repeat center/cover;
}
.p-cover__noise-img:nth-child(2) {
  background: url("../img/deco/glitch_color02.jpg") no-repeat center/cover;
}
.p-cover__noise-img:nth-child(3) {
  background: url("../img/deco/glitch_color03.jpg") no-repeat center/cover;
}
.p-cover__noise-img:nth-child(4) {
  background: url("../img/deco/glitch_color04.jpg") no-repeat center/cover;
}
.p-cover__log {
  display: block;
  position: absolute;
  font-size: 1rem;
  color: var(--color-white);
}
.p-cover__log.--l {
  top: 1rem;
  left: 1rem;
  text-align: left;
}
.p-cover__log.--r {
  bottom: 1rem;
  right: 1rem;
  text-align: right;
}
.p-cover__log-text {
  display: block;
  position: relative;
  opacity: 0;
}
.is-cover-pre .p-cover__log-text {
  opacity: 1;
  transition: opacity 0s linear;
}
.p-cover__log-ratio {
  display: inline-block;
  position: relative;
  opacity: 0;
}
.is-cover-pre .p-cover__log-ratio {
  opacity: 1;
  transition: opacity 0s linear 0.25s;
}
.p-cover__log-fin {
  display: none;
}
.p-cover__log-fin.is-active {
  display: inline;
}
.p-cover__log-bar {
  display: inline-block;
  position: relative;
}
.p-cover__log-dl {
  display: none;
}
.p-cover__log-dl.is-loaded {
  display: inline;
}
.p-cover__log-line {
  display: inline-block;
  position: relative;
}
.p-cover__log-line::after {
  content: "-";
  display: block;
  position: relative;
}
.p-cover__log-line.is-loading::after {
  animation: log-load 1s steps(1, start) infinite;
}

.p-cover__log-line.is-loaded::after {
  content: "=";
}

@keyframes log-load {
  0% {
    content: "|";
  }
  12.5% {
    content: "/";
  }
  25% {
    content: "-";
  }
  37.5% {
    content: "\\";
  }
  50% {
    content: "|";
  }
  62.5% {
    content: "/";
  }
  75% {
    content: "-";
  }
  87.5% {
    content: "\\";
  }
  100% {
    content: "|";
  }
}
.p-cover__canvas {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: var(--color-black);
  opacity: 0;
  transform: scale(1.2);
}
.is-cover-anim .p-cover__canvas {
  opacity: 1;
  transform: scale(1);
  transition: opacity 2s var(--ease_inout), transform 4s var(--ease_out);
}
.p-cover__canvas canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.p-cover__chara {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  background: var(--color-black);
  opacity: 0;
}
.is-cover-anim .p-cover__chara {
  opacity: 1;
  transition: opacity 0s linear 4s;
}
.p-cover__chara img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 70%;
  object-position: 50% 70%;
  transform: translate(-50%, 0);
}
@media screen and (orientation: portrait) {
  .p-cover__chara img {
    height: 60%;
  }
}
.p-cover__loading {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background: var(--color-black);
  opacity: 0;
}
.is-cover-anim .p-cover__loading {
  opacity: 1;
  transition: opacity 0s linear 5s;
}
.p-cover__loading-chara {
  flex-shrink: 0;
  width: 5%;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-cover__loading-chara {
    width: 20%;
  }
}
.p-cover__loading-text {
  display: block;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: right;
}
.p-cover__loading-ratio {
  display: inline-block;
  position: relative;
  opacity: 0;
}
.is-cover-pre .p-cover__loading-ratio {
  opacity: 1;
  transition: opacity 0s linear 0.25s;
}
.p-cover__loading-fin {
  display: none;
}
.p-cover__loading-fin.is-active {
  display: inline;
}
.p-cover__loading-bar {
  display: inline-block;
  position: relative;
}
.p-cover__loading-dl {
  display: none;
}
.p-cover__loading-dl.is-loaded {
  display: inline;
}
.p-cover__loading-line {
  display: inline-block;
  position: relative;
}
.p-cover__loading-line::after {
  content: "-";
  display: block;
  position: relative;
}
.p-cover__loading-line.is-loading::after {
  animation: log-load 1s steps(1, start) infinite;
}

.p-cover__loading-line.is-loaded::after {
  content: "=";
}

@keyframes log-load {
  0% {
    content: "|";
  }
  12.5% {
    content: "/";
  }
  25% {
    content: "-";
  }
  37.5% {
    content: "\\";
  }
  50% {
    content: "|";
  }
  62.5% {
    content: "/";
  }
  75% {
    content: "-";
  }
  87.5% {
    content: "\\";
  }
  100% {
    content: "|";
  }
}

.u-text-indent {
  display: inline-block;
  text-indent: -1em;
  padding-left: 1em;
}

.u-ta-center {
  text-align: center !important;
}

.u-display-block {
  display: block !important;
}

.u-display-inline-block {
  display: inline-block !important;
}

.u-ta-left {
  text-align: left !important;
}

.u-ta-right {
  text-align: right !important;
}

.u-fw-lighter {
  font-weight: lighter !important;
}

.u-fw-normal {
  font-weight: normal !important;
}

.u-fw-bold {
  font-weight: bold !important;
}

.u-fs-1 {
  font-size: 0.1em;
}

.u-fs-2 {
  font-size: 0.2em;
}

.u-fs-3 {
  font-size: 0.3em;
}

.u-fs-4 {
  font-size: 0.4em;
}

.u-fs-5 {
  font-size: 0.5em;
}

.u-fs-6 {
  font-size: 0.6em;
}

.u-fs-7 {
  font-size: 0.7em;
}

.u-fs-8 {
  font-size: 0.8em;
}

.u-fs-9 {
  font-size: 0.9em;
}

.u-fs-10 {
  font-size: 1em;
}

.u-fs-11 {
  font-size: 1.1em;
}

.u-fs-12 {
  font-size: 1.2em;
}

.u-fs-13 {
  font-size: 1.3em;
}

.u-fs-14 {
  font-size: 1.4em;
}

.u-fs-15 {
  font-size: 1.5em;
}

.u-fs-16 {
  font-size: 1.6em;
}

.u-fs-17 {
  font-size: 1.7em;
}

.u-fs-18 {
  font-size: 1.8em;
}

.u-fs-19 {
  font-size: 1.9em;
}

.u-fs-20 {
  font-size: 2em;
}

.u-color-white {
  color: var(--color-white);
}

.u-color-black {
  color: var(--color-black);
}

.u-lazy {
  min-height: 10rem;
  opacity: 0;
}
.u-lazy.is-lazy-loaded {
  opacity: 1;
  min-height: auto;
  transition: opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1);
}
.u-lazy__loader {
  height: 4rem;
  width: 4rem;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 25;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1);
  pointer-events: none;
}
.is-lazy-loading + .u-lazy__loader {
  display: block;
}
.u-lazy__loader::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top: 2px solid var(--color-black);
  pointer-events: none;
}
.is-lazy-loading + .u-lazy__loader::before {
  content: "";
  animation: rotate 0.6s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes arrow {
  0% {
    opacity: 1;
    transform: translate(0, 0);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  25% {
    opacity: 0;
    transform: translate(1rem, 0);
  }
  26% {
    opacity: 0;
    transform: translate(-1rem, 0);
  }
  50% {
    opacity: 0;
    transform: translate(-1rem, 0);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  75% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes arrow_prev {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(-1, 1);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  25% {
    opacity: 0;
    transform: translate(-1rem, 0) scale(-1, 1);
  }
  26% {
    opacity: 0;
    transform: translate(1rem, 0) scale(-1, 1);
  }
  50% {
    opacity: 0;
    transform: translate(1rem, 0) scale(-1, 1);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  75% {
    opacity: 1;
    transform: translate(0, 0) scale(-1, 1);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(-1, 1);
  }
}
@keyframes arrow_centerY {
  0% {
    opacity: 1;
    transform: translate(0, -50%);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  25% {
    opacity: 0;
    transform: translate(1rem, -50%);
  }
  26% {
    opacity: 0;
    transform: translate(-1rem, -50%);
  }
  50% {
    opacity: 0;
    transform: translate(-1rem, -50%);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  75% {
    opacity: 1;
    transform: translate(0, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
@keyframes arrow_centerY_prev {
  0% {
    opacity: 1;
    transform: translate(0, -50%);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  25% {
    opacity: 0;
    transform: translate(-1rem, -50%);
  }
  26% {
    opacity: 0;
    transform: translate(1rem, -50%);
  }
  50% {
    opacity: 0;
    transform: translate(1rem, -50%);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  75% {
    opacity: 1;
    transform: translate(0, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
@keyframes skeleton_screen {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}


.--ost .p-hero__nav-item:last-child .p-btn__text::before{content: none;}


.p-special_content__inner .note{
    margin-top: 40px;
    font-size: 1.3rem;  
    line-height: 1.4em;
    }
.p-special_content__inner .note li{
  text-indent: -1em;
  padding-left: 1em;
}

@media screen and (max-width: 960px) {
  .p-special_content__inner .note{
    font-size: 1rem;
    margin-top: 30px;
  }
}



.p-season__nav {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-top: 80px;
  margin-bottom: -30px;
}

@media screen and (max-width: 960px) {
  .p-season__nav {
    width: 95%;
    max-width: 34.5rem;
    margin: 100px auto -20px;
  }
}

.p-season__nav-item {
  display: block;
  position: relative;
  padding: 1.2rem 0;
  font-size: 1.8rem 0 1.9rem;
  letter-spacing: 0.02rem;
  text-align: center;
  margin-left: 5px;
  width: 300px;
  border: 1px dashed var(--content-color);
}

@media screen and (max-width: 960px) {
  .p-season__nav-item {
    width: 49.5%;
    margin-left: 1%;
  }
}

.p-season__nav-item:first-child {
  margin-left: 0;
}

.p-season__nav-item.is-current {
  background: var(--content-color);
  color: #000;
  pointer-events: none;
}

.p-season__nav-item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-season__nav-item:hover {
  background: var(--content-color);
  color: #000;
}