@charset "UTF-8";
:root {
  --winH: 100vh;
  --text: var(--color-white);
  --bg: var(--color-black);
  --color-black: #000;
  --color-gray: #999999;
  --color-white: #fff;
  --color-pink: #fb2b54;
  --color-purple: #7910ef;
  --color-magenta: #FF00FF;
  --color-cyan: #00ffff;
  --color-yellow: #ffff00;
  --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) {
  html {
    font-size: min(0.7142857143vw, 11px);
  }
}
@media screen and (min-width: 961px) and (max-width: 1200px) {
  html {
    font-size: max(0.8333333333vw, 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(--text);
  background: var(--bg);
  overflow: hidden;
  font-family: "Noto Sans JP", -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(--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 {
  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 {
  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);
}

[data-anchor] {
  cursor: pointer;
}

.l-wrap {
  display: block;
  position: relative;
}
.l-wrap__bg {
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
}
.is-load .l-wrap__bg {
  opacity: 1;
  transition: opacity 1.2s var(--ease_inout) 0.2s;
}
.l-wrap__loader {
  height: 3rem;
  display: flex;
  justify-content: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) skew(-15deg);
  z-index: 20;
  pointer-events: none;
  opacity: 1;
}
@media screen and (max-width: 960px) {
  .l-wrap__loader {
    height: 2rem;
  }
}
.is-load .l-wrap__loader {
  opacity: 0;
  transition: opacity 0.4s var(--ease_inout) 0.5s;
}
.l-wrap__loader-bar {
  width: 0.5rem;
  height: 100%;
  display: block;
  position: relative;
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .l-wrap__loader-bar {
    width: 0.3rem;
  }
}
@keyframes loader_border {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.l-wrap__loader-bar + .l-wrap__loader-bar {
  margin-left: 0.5rem;
}
@media screen and (max-width: 960px) {
  .l-wrap__loader-bar + .l-wrap__loader-bar {
    margin-left: 0.3rem;
  }
}
.-start .l-wrap__loader-bar {
  animation: loader_border 1.4s steps(1) infinite;
}
.-start .l-wrap__loader-bar:nth-child(1) {
  animation-delay: 0s;
}
.-start .l-wrap__loader-bar:nth-child(2) {
  animation-delay: 0.14s;
}
.-start .l-wrap__loader-bar:nth-child(3) {
  animation-delay: 0.28s;
}
.-start .l-wrap__loader-bar:nth-child(4) {
  animation-delay: 0.42s;
}
.-start .l-wrap__loader-bar:nth-child(5) {
  animation-delay: 0.56s;
}
.-start .l-wrap__loader-bar:nth-child(6) {
  animation-delay: 0.7s;
}
.-start .l-wrap__loader-bar:nth-child(7) {
  animation-delay: 0.84s;
}
.-start .l-wrap__loader-bar:nth-child(8) {
  animation-delay: 0.98s;
}
.-start .l-wrap__loader-bar:nth-child(9) {
  animation-delay: 1.12s;
}
.-start .l-wrap__loader-bar:nth-child(10) {
  animation-delay: 1.26s;
}
.l-wrap__loader-bar::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0.1rem;
  left: 0.1rem;
}
.l-wrap__loader-bar.-bar1::before {
  background: var(--color-pink);
}

.l-wrap__loader-bar.-bar2::before {
  background: var(--color-pink);
}

.l-wrap__loader-bar.-bar3::before {
  background: var(--color-pink);
}

.l-wrap__loader-bar.-bar4::before {
  background: var(--color-pink);
}

.l-wrap__loader-bar::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.l-wrap__loader-bar.-bar1::after {
  background: var(--color-white);
}

.l-wrap__loader-bar.-bar2::after {
  background: var(--color-white);
}

.l-wrap__loader-bar.-bar3::after {
  background: var(--color-white);
}

.l-wrap__loader-bar.-bar4::after {
  background: var(--color-white);
}

.l-wrap__cover {
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  content-visibility: hidden;
  pointer-events: none;
  z-index: 20;
}
.l-wrap__cover.is-cover-anim {
  opacity: 1;
  visibility: visible;
  content-visibility: auto;
}
.l-wrap__cover-in {
  width: 100%;
  height: 500%;
  display: block;
  position: relative;
  opacity: 0.2;
}
.is-cover-anim .l-wrap__cover-in {
  animation: cover 0.5s steps(4) infinite;
}
@keyframes cover {
  0% {
    transform: translate(0%, 0%);
  }
  100% {
    transform: translate(0%, -100%);
  }
}
.l-wrap__cover-in::after {
  content: "";
  width: 100%;
  height: 25%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("../img/deco/glitch_white01.png") no-repeat center/cover;
  transform: translate(0, 100%);
}
.l-wrap__cover-img {
  width: 100%;
  height: 25%;
  display: block;
  position: relative;
}
.l-wrap__cover-img:nth-child(1) {
  background: url("../img/deco/glitch_white01.png") no-repeat center/cover;
}
.l-wrap__cover-img:nth-child(2) {
  background: url("../img/deco/glitch_white02.png") no-repeat center/cover;
}
.l-wrap__cover-img:nth-child(3) {
  background: url("../img/deco/glitch_white03.png") no-repeat center/cover;
}
.l-wrap__cover-img:nth-child(4) {
  background: url("../img/deco/glitch_white04.png") no-repeat center/cover;
}
.l-wrap__container {
  display: block;
  position: relative;
  opacity: 0;
}
.is-load .l-wrap__container {
  opacity: 1;
  transition: opacity 1s var(--ease_inout);
}

.l-bg {
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.l-bg__visual {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/bg_in_base.jpg") no-repeat center/cover;
}
.l-bg__visual::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/bg_ptn_cyber.png") repeat center top/min(100%, 2000px) auto;
}
@media screen and (max-width: 960px) {
  .l-bg__visual::before {
    background-size: max(100%, 1000px) auto;
  }
}
.l-bg__mask {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-mask: url("../img/bg_mask.svg") no-repeat -10% -15%/min(51%, 80rem) auto;
  mask: url("../img/bg_mask.svg") no-repeat -10% -15%/min(51%, 80rem) auto;
}
@media screen and (max-width: 960px) {
  .l-bg__mask {
    -webkit-mask: url("../img/bg_mask.svg") no-repeat -18vw -5%/min(90%, 600px) auto;
    mask: url("../img/bg_mask.svg") no-repeat -18vw -5%/min(90%, 600px) auto;
  }
}
@media screen and (max-width: 960px) and (min-width: 650px) {
  .l-bg__mask {
    -webkit-mask: url("../img/bg_mask.svg") no-repeat -8vw -5%/min(50%, 600px) auto;
    mask: url("../img/bg_mask.svg") no-repeat -8vw -5%/min(50%, 600px) auto;
  }
}
.l-bg__mask-img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/bg_blue.jpg") no-repeat center/cover;
}
.l-bg__mask-img::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/bg_ptn_border.png") repeat left top/0.6rem auto;
}
.l-bg__cover {
  width: 95%;
  max-width: 114rem;
  height: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 0;
  opacity: 1;
}
@media screen and (max-width: 960px) {
  .l-bg__cover {
    width: 90%;
  }
}
.l-bg__cover-line {
  width: 0.1rem;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
}
.l-bg__cover-line.-line1 {
  left: 2rem;
}
@media screen and (max-width: 960px) {
  .l-bg__cover-line.-line1 {
    left: 0;
  }
}
.l-bg__cover-line.-line2 {
  left: min(30%, 34rem);
}
@media screen and (max-width: 960px) {
  .l-bg__cover-line.-line2 {
    left: 33%;
  }
}
.l-bg__cover-line.-line3 {
  right: min(30%, 32rem);
}
@media screen and (max-width: 960px) {
  .l-bg__cover-line.-line3 {
    right: 33%;
  }
}
.l-bg__cover-line.-line4 {
  right: 0;
}
.l-bg__cover-line::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-cyan);
  transform: translate(0, 100vh);
  opacity: 0;
}
.l-bg__cover-line.is-anim::before {
  height: 0;
  opacity: 1;
  transform: translate(0, 0);
  transition: transform 0.5s var(--ease_out), opacity 0.8s var(--ease_out), height 0.6s var(--ease_inout) 0.3s;
}

.l-bg__cover-line::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-pink);
  transform: translate(0, 100vh);
  opacity: 0;
}
.l-bg__cover-line.is-anim::after {
  height: 0;
  opacity: 1;
  transform: translate(0, 0);
  transition: transform 0.5s var(--ease_out) 0.1s, opacity 0.8s var(--ease_out) 0.1s, height 0.6s var(--ease_inout) 0.3s;
}

.l-header {
  display: block;
  position: fixed;
  top: 4rem;
  left: 5rem;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .l-header {
    top: 2rem;
    left: 2rem;
  }
}
.l-header__brand {
  width: 17rem;
  display: block;
  position: relative;
  font-size: 0;
}
@media screen and (max-width: 960px) {
  .l-header__brand {
    width: 13rem;
  }
}
.l-header__brand-img {
  display: block;
  position: relative;
}
.l-header__brand-svg {
  display: block;
  position: relative;
  fill: var(--color-white);
}

.l-menu {
  width: 7rem;
  height: 7rem;
  display: block;
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 15;
  mix-blend-mode: difference;
}
@media screen and (max-width: 960px) {
  .l-menu {
    width: 4.8rem;
    height: 4.8rem;
    top: 1rem;
    right: 0.8rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-menu:hover {
    animation: flash 0.1s steps(1) 3;
  }
}
.l-menu__btn {
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 0.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .l-menu__btn {
    width: 2.5rem;
    height: 2.5rem;
    gap: 0.3rem;
  }
}
.l-menu__btn-dot {
  display: block;
  position: relative;
}
.is-menu-open .l-menu__btn-dot:nth-child(even) {
  opacity: 0;
  animation: flash 0.1s steps(1) 2;
}
.l-menu__btn-dot::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-pink);
  transform: translate(-50%, -50%) scale(0.5);
  border-radius: 50%;
}
.l-menu__btn-dot::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-white);
  transform: translate(-50%, -50%) scale(0.5);
  border-radius: 50%;
}
.l-menu__cover {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width 0.2s var(--ease_out), height 0.2s var(--ease_out), opacity 0.2s var(--ease_out);
}
@media (hover: hover) and (pointer: fine) {
  .l-menu:hover .l-menu__cover {
    opacity: 1;
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
  }
}
.l-menu__cover-deco {
  width: 1rem;
  height: 1rem;
  display: block;
  position: absolute;
  border: 0.2rem solid transparent;
}
.l-menu__cover-deco.-deco1 {
  top: 0;
  left: 0;
  border-top-color: var(--color-white);
  border-left-color: var(--color-white);
}
.l-menu__cover-deco.-deco2 {
  top: 0;
  right: 0;
  border-top-color: var(--color-white);
  border-right-color: var(--color-white);
}
.l-menu__cover-deco.-deco3 {
  bottom: 0;
  right: 0;
  border-bottom-color: var(--color-white);
  border-right-color: var(--color-white);
}
.l-menu__cover-deco.-deco4 {
  bottom: 0;
  left: 0;
  border-bottom-color: var(--color-white);
  border-left-color: var(--color-white);
}

.l-nav {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--color-bg-content);
  z-index: 10;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: none;
  content-visibility: hidden;
  visibility: hidden;
  background: url("../img/bg_blue.jpg") no-repeat center/cover;
  opacity: 0;
  transition: opacity 0s linear 0.4s;
  animation: clip-out-top 0.4s var(--ease_out) forwards;
}
.is-menu-show .l-nav {
  display: block;
  content-visibility: visible;
  visibility: visible;
}
.is-menu-open .l-nav {
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0s linear;
  animation: clip-in-top 0.4s var(--ease_inout) forwards;
}
.l-nav::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-mask: url("../img/bg_mask.svg") no-repeat -10% -15%/min(51%, 80rem) auto;
  mask: url("../img/bg_mask.svg") no-repeat -10% -15%/min(51%, 80rem) auto;
  background: url("../img/bg_in_base.jpg") no-repeat center/cover;
}
@media screen and (max-width: 960px) {
  .l-nav::before {
    -webkit-mask: url("../img/bg_mask.svg") no-repeat -18vw -5%/min(90%, 600px) auto;
    mask: url("../img/bg_mask.svg") no-repeat -18vw -5%/min(90%, 600px) auto;
  }
}
@media screen and (max-width: 960px) and (min-width: 650px) {
  .l-nav::before {
    -webkit-mask: url("../img/bg_mask.svg") no-repeat -8vw -5%/min(50%, 600px) auto;
    mask: url("../img/bg_mask.svg") no-repeat -8vw -5%/min(50%, 600px) auto;
  }
}
.l-nav__container {
  width: 100%;
  min-height: var(--svh);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 11.8rem 0;
}
.l-nav__bg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.l-nav__content {
  width: 90%;
  max-width: 1600px;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .l-nav__content {
    width: 80%;
  }
}

.l-nav_content {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .l-nav_content {
    max-width: 63rem;
    display: grid;
    grid-template-columns: 10.5rem 1fr;
    margin-left: auto;
  }
}
.l-nav_content + .l-nav_content {
  margin-top: 2rem;
}
@media screen and (max-width: 960px) {
  .l-nav_content + .l-nav_content {
    margin-top: 2.5rem;
  }
}
.l-nav_content__cap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  font-size: 1rem;
  line-height: 1;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  transform: scale(0.8);
  transform-origin: left center;
  color: var(--color-gray);
  opacity: 0;
  transition: opacity 0.4s var(--ease_out) 0.8s;
}
@media screen and (max-width: 960px) {
  .l-nav_content__cap {
    margin-bottom: 1rem;
    font-size: 0.8rem;
  }
}
.is-menu-open .l-nav_content__cap {
  opacity: 1;
  transition: opacity 0.4s var(--ease_inout) 0.2s;
}
.is-menu-open .l-nav_content__cap > span {
  animation: flash 1.5s steps(1) 0.5s infinite;
}
.l-nav_content__inner {
  min-width: 0;
  display: block;
  position: relative;
}
.l-nav_content__list {
  display: block;
  position: relative;
  top: -0.5rem;
}
.l-nav_content__list-item {
  --delay: 0.95s;
  display: block;
  position: relative;
}
.l-nav_content__list-item:nth-child(1) {
  --delay: 0.2s;
}
.l-nav_content__list-item:nth-child(2) {
  --delay: 0.25s;
}
.l-nav_content__list-item:nth-child(3) {
  --delay: 0.3s;
}
.l-nav_content__list-item:nth-child(4) {
  --delay: 0.35s;
}
.l-nav_content__list-item:nth-child(5) {
  --delay: 0.4s;
}
.l-nav_content__list-item:nth-child(6) {
  --delay: 0.45s;
}
.l-nav_content__list-item:nth-child(7) {
  --delay: 0.5s;
}
.l-nav_content__list-item:nth-child(8) {
  --delay: 0.55s;
}
.l-nav_content__list-item:nth-child(9) {
  --delay: 0.6s;
}
.l-nav_content__list-item:nth-child(10) {
  --delay: 0.65s;
}
.l-nav_content__list-item:nth-child(11) {
  --delay: 0.7s;
}
.l-nav_content__list-item:nth-child(12) {
  --delay: 0.75s;
}
.l-nav_content__list-item:nth-child(13) {
  --delay: 0.8s;
}
.l-nav_content__list-item:nth-child(14) {
  --delay: 0.85s;
}
.l-nav_content__list-item:nth-child(15) {
  --delay: 0.9s;
}
.l-nav_content__list-item + .l-nav_content__list-item {
  margin-top: 0.8rem;
}
.l-nav_content__link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
}
.l-nav_content__link-bg {
  width: calc(100% + 2rem);
  height: calc(100% + 1rem);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  -webkit-clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
  clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
}
@media screen and (max-width: 960px) {
  .l-nav_content__link-bg {
    width: calc(100% + 1rem);
    height: calc(100% + 1rem);
    -webkit-clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
    clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
  }
}
.l-nav_content__link-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, -10% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -10% 0, 0 100%, 0 100%);
  opacity: 0;
  background-color: var(--color-pink);
  transition: opacity 0.2s var(--ease_out), -webkit-clip-path 0s linear 0.2s;
  transition: clip-path 0s linear 0.2s, opacity 0.2s var(--ease_out);
  transition: clip-path 0s linear 0.2s, opacity 0.2s var(--ease_out), -webkit-clip-path 0s linear 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .l-nav_content__link:hover .l-nav_content__link-bg::before {
    opacity: 1;
    -webkit-clip-path: polygon(-10% 0, 100% 0, 110% 100%, 0 100%);
    clip-path: polygon(-10% 0, 100% 0, 110% 100%, 0 100%);
    transition: opacity 0.1s var(--ease_out), -webkit-clip-path 0.3s var(--ease_out);
    transition: clip-path 0.3s var(--ease_out), opacity 0.1s var(--ease_out);
    transition: clip-path 0.3s var(--ease_out), opacity 0.1s var(--ease_out), -webkit-clip-path 0.3s var(--ease_out);
  }
}
.l-nav_content__link-text {
  display: block;
  position: relative;
  font-size: 4.8rem;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-pink);
  opacity: 0;
  -webkit-clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  transition: opacity 0s linear 1s, -webkit-clip-path 0s linear 1s;
  transition: opacity 0s linear 1s, clip-path 0s linear 1s;
  transition: opacity 0s linear 1s, clip-path 0s linear 1s, -webkit-clip-path 0s linear 1s;
}
@media screen and (max-width: 960px) {
  .l-nav_content__link-text {
    font-size: 3.2rem;
  }
}
.is-menu-open .l-nav_content__link-text {
  opacity: 1;
  -webkit-clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  transition: opacity 0.1s var(--ease_out) var(--delay), -webkit-clip-path 0.5s var(--ease_out) var(--delay);
  transition: clip-path 0.5s var(--ease_out) var(--delay), opacity 0.1s var(--ease_out) var(--delay);
  transition: clip-path 0.5s var(--ease_out) var(--delay), opacity 0.1s var(--ease_out) var(--delay), -webkit-clip-path 0.5s var(--ease_out) var(--delay);
}
.l-nav_content__link-text::before {
  content: attr(data-text);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-cyan);
  font-weight: 700;
  -webkit-clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  transition: opacity 0s linear 1s, -webkit-clip-path 0s linear 1s;
  transition: clip-path 0s linear 1s, opacity 0s linear 1s;
  transition: clip-path 0s linear 1s, opacity 0s linear 1s, -webkit-clip-path 0s linear 1s;
}
.is-menu-open .l-nav_content__link-text::before {
  opacity: 0;
  -webkit-clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  transition: opacity 0.1s var(--ease_out) 0.8s, -webkit-clip-path 0.5s var(--ease_out) 0.5s;
  transition: clip-path 0.5s var(--ease_out) 0.5s, opacity 0.1s var(--ease_out) 0.8s;
  transition: clip-path 0.5s var(--ease_out) 0.5s, opacity 0.1s var(--ease_out) 0.8s, -webkit-clip-path 0.5s var(--ease_out) 0.5s;
}
.l-nav_content__link-text::after {
  content: attr(data-text);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-white);
  -webkit-clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  transition: -webkit-clip-path 0s linear 1s;
  transition: clip-path 0s linear 1s;
  transition: clip-path 0s linear 1s, -webkit-clip-path 0s linear 1s;
}
.is-menu-open .l-nav_content__link-text::after {
  -webkit-clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  transition: opacity 0.2s var(--ease_out) 1.45s, -webkit-clip-path 0.5s var(--ease_inout) 0.5s;
  transition: clip-path 0.5s var(--ease_inout) 0.5s, opacity 0.2s var(--ease_out) 1.45s;
  transition: clip-path 0.5s var(--ease_inout) 0.5s, opacity 0.2s var(--ease_out) 1.45s, -webkit-clip-path 0.5s var(--ease_inout) 0.5s;
}
.l-nav_content__sns {
  display: block;
  position: relative;
  opacity: 0;
  transform: translateX(-1rem);
  transition: opacity 0.4s var(--ease_out) 0.8s, transform 0.4s var(--ease_out) 0.8s;
}
.is-menu-open .l-nav_content__sns {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s var(--ease_out), transform 0.4s var(--ease_out);
}
.is-menu-open .l-nav_content__sns:nth-child(1) {
  transition-delay: 0.1s;
}
.is-menu-open .l-nav_content__sns:nth-child(2) {
  transition-delay: 0.15s;
}
.is-menu-open .l-nav_content__sns:nth-child(3) {
  transition-delay: 0.2s;
}
.is-menu-open .l-nav_content__sns:nth-child(4) {
  transition-delay: 0.25s;
}
.is-menu-open .l-nav_content__sns:nth-child(5) {
  transition-delay: 0.3s;
}
.is-menu-open .l-nav_content__sns:nth-child(6) {
  transition-delay: 0.35s;
}
.is-menu-open .l-nav_content__sns:nth-child(7) {
  transition-delay: 0.4s;
}
.is-menu-open .l-nav_content__sns:nth-child(8) {
  transition-delay: 0.45s;
}
.is-menu-open .l-nav_content__sns:nth-child(9) {
  transition-delay: 0.5s;
}
.is-menu-open .l-nav_content__sns:nth-child(10) {
  transition-delay: 0.55s;
}
.l-nav_content__sns-item {
  display: block;
  position: relative;
}
.l-nav_content__icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 0;
}
.l-nav_content__icon-bg {
  width: calc(100% + 2rem);
  height: calc(100% + 1rem);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  -webkit-clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
  clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
}
@media screen and (max-width: 960px) {
  .l-nav_content__icon-bg {
    width: calc(100% + 1rem);
    height: calc(100% + 1rem);
    -webkit-clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
    clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
  }
}
.l-nav_content__icon-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, -10% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -10% 0, 0 100%, 0 100%);
  opacity: 0;
  background-color: var(--color-pink);
  transition: opacity 0.2s var(--ease_out), -webkit-clip-path 0s linear 0.2s;
  transition: clip-path 0s linear 0.2s, opacity 0.2s var(--ease_out);
  transition: clip-path 0s linear 0.2s, opacity 0.2s var(--ease_out), -webkit-clip-path 0s linear 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .l-nav_content__icon:hover .l-nav_content__icon-bg::before {
    opacity: 1;
    -webkit-clip-path: polygon(-10% 0, 100% 0, 110% 100%, 0 100%);
    clip-path: polygon(-10% 0, 100% 0, 110% 100%, 0 100%);
    transition: opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1), -webkit-clip-path 0.3s cubic-bezier(0.5, 1, 0.89, 1);
    transition: clip-path 0.3s cubic-bezier(0.5, 1, 0.89, 1), opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1);
    transition: clip-path 0.3s cubic-bezier(0.5, 1, 0.89, 1), opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1), -webkit-clip-path 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
}
.l-nav_content__icon-img {
  width: 2.6rem;
  display: block;
  position: relative;
}
.l-nav_content__icon-path {
  display: block;
  position: relative;
  fill: var(--color-white);
}

.l-main {
  display: block;
  position: relative;
}

.l-footer {
  display: block;
  position: relative;
  color: var(--color-black);
  background: var(--color-purple);
  padding: 8.4rem 0;
}
@media screen and (max-width: 960px) {
  .l-footer {
    padding: 6.2rem 0;
  }
}
.l-footer::after {
  content: "";
  width: 100%;
  height: 1.2rem;
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
  background: url("../img/line_purple.png") repeat-x left bottom/auto 100%;
  transform: translate(0, -100%);
}
@media screen and (max-width: 960px) {
  .l-footer::after {
    height: 0.6rem;
  }
}
.l-footer__container {
  width: 92.8571428571%;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 961px) {
  .l-footer__container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
}
@media screen and (max-width: 960px) {
  .l-footer__container {
    width: 88%;
  }
}
.l-footer__pagetop {
  width: 7.2rem;
  display: block;
  position: absolute;
  top: -1.5rem;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .l-footer__pagetop {
    width: 7rem;
    max-width: 70px;
    top: -0.2rem;
    right: -0.3rem;
  }
}
.l-footer__pagetop-icon {
  display: block;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__pagetop:hover .l-footer__pagetop-icon img {
    animation: deco0 0.75s steps(1) infinite;
  }
}
.l-footer__pagetop-deco {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/arrow.svg") no-repeat center/contain;
  opacity: 0;
  pointer-events: none;
}
.l-footer__pagetop-deco.-deco1 {
  opacity: 0;
  transform: translate(0, -60%);
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__pagetop:hover .l-footer__pagetop-deco.-deco1 {
    opacity: 1;
    transition: opacity 0.15s steps(1);
  }
}
.l-footer__pagetop-deco.-deco2 {
  opacity: 0;
  transform: translate(0, -120%);
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__pagetop:hover .l-footer__pagetop-deco.-deco2 {
    opacity: 1;
    transition: opacity 0.15s steps(1) 0.1s;
  }
}
.l-footer__pagetop-text {
  display: block;
  position: relative;
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 800;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .l-footer__pagetop-text {
    font-size: 1rem;
    letter-spacing: 0;
  }
}
.l-footer__info {
  display: block;
  position: relative;
  margin-right: 3rem;
}
.l-footer__official {
  width: 28rem;
  display: block;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .l-footer__official {
    width: 20.4rem;
  }
}
.l-footer__official-link {
  display: block;
  position: relative;
}
.l-footer__share {
  display: block;
  position: relative;
  margin-top: 2.4rem;
}
@media screen and (max-width: 960px) {
  .l-footer__share {
    margin-top: 2.8rem;
  }
}
.l-footer__main {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .l-footer__main {
    flex: 1 1 0;
    min-width: 0;
    padding-top: 7rem;
  }
}
@media screen and (max-width: 960px) {
  .l-footer__main {
    margin-top: 3rem;
  }
}
.l-footer__nav {
  display: block;
  position: relative;
}
.l-footer__legal {
  display: block;
  position: relative;
  margin-top: 1rem;
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
  text-align: right;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .l-footer__legal {
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 2;
    text-align: left;
  }
}
.l-footer__copy {
  display: block;
  position: relative;
  margin-top: 2rem;
  font-size: 1.1rem;
  text-align: right;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .l-footer__copy {
    margin-top: 2.4rem;
    font-size: 1rem;
    text-align: left;
  }
}

.l-footer_share {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
.l-footer_share__cap {
  display: block;
  position: relative;
  margin-right: 2.5rem;
  font-size: 1.3rem;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .l-footer_share__cap {
    margin-right: 2.4rem;
    font-size: 1.4rem;
  }
}
.l-footer_share__list {
  display: flex;
  justify-content: flex-start;
  position: relative;
}
.l-footer_share__list-item {
  display: block;
  position: relative;
}
.l-footer_share__list-item + .l-footer_share__list-item {
  margin-left: 0.6rem;
}
@media screen and (max-width: 960px) {
  .l-footer_share__list-item + .l-footer_share__list-item {
    margin-left: 1rem;
  }
}
.l-footer_share__link {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  position: relative;
}
@media screen and (max-width: 960px) {
  .l-footer_share__link {
    width: 4rem;
    height: 4rem;
  }
}
.l-footer_share__link::before {
  content: "";
  width: 100%;
  height: 55%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-left: 0.1rem solid var(--color-black);
  border-right: 0.1rem solid var(--color-black);
  opacity: 0;
  transition: opacity 0s linear 0.2s;
}
.is-current .l-footer_share__link::before {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer_share__link:hover::before {
    opacity: 1;
  }
}
.l-footer_share__link-deco {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.l-footer_share__link-deco::before {
  content: "";
  width: 55%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(30deg);
  border-top: 0.1rem solid var(--color-black);
  border-bottom: 0.1rem solid var(--color-black);
  opacity: 0;
  transition: opacity 0s linear 0.1s;
}
.is-current .l-footer_share__link-deco::before {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer_share__link:hover .l-footer_share__link-deco::before {
    opacity: 1;
  }
}
.l-footer_share__link-deco::after {
  content: "";
  width: 55%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  border-top: 0.1rem solid var(--color-black);
  border-bottom: 0.1rem solid var(--color-black);
  opacity: 0;
  transition: opacity 0s linear;
}
.is-current .l-footer_share__link-deco::after {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer_share__link:hover .l-footer_share__link-deco::after {
    opacity: 1;
  }
}
.l-footer_share__link-img {
  width: 2.6rem;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .l-footer_share__link-img {
    width: 3rem;
  }
}

.l-footer_nav {
  display: block;
  position: relative;
}
.l-footer_nav__list {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media screen and (max-width: 960px) {
  .l-footer_nav__list {
    justify-content: flex-start;
  }
}
.l-footer_nav__list-item {
  display: block;
  position: relative;
}
.l-footer_nav__list-item + .l-footer_nav__list-item {
  margin-left: 1.6rem;
}
@media screen and (max-width: 960px) {
  .l-footer_nav__list-item + .l-footer_nav__list-item {
    margin-left: 1.2rem;
  }
}
.l-footer_nav__list-item + .l-footer_nav__list-item::before {
  content: "/";
  display: block;
  position: absolute;
  top: 45%;
  left: -0.8rem;
  font-size: 1.4rem;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 800;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .l-footer_nav__list-item + .l-footer_nav__list-item::before {
    left: -0.6rem;
  }
}
.l-footer_nav__link {
  display: block;
  position: relative;
  color: var(--color-black);
}
.l-footer_nav__link-text {
  display: block;
  position: relative;
  font-size: 1.4rem;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}
@media screen and (max-width: 960px) {
  .l-footer_nav__link-text {
    font-size: 1.1rem;
  }
}
.l-footer_nav__link-text::before {
  content: "";
  width: 0;
  height: 0.2rem;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  background-color: var(--color-black);
  transition: width 0.4s var(--ease_inout);
}
@media (hover: hover) and (pointer: fine) {
  .l-footer_nav__link:hover .l-footer_nav__link-text::before {
    width: 100%;
    left: 0;
  }
}

.l-top {
  min-height: calc(var(--winH) - 30rem);
  display: block;
  position: relative;
  background-color: var(--color-black);
}
@media screen and (max-width: 960px) {
  .l-top {
    min-height: calc(var(--winH) - 35rem);
  }
}
.l-top::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/bg_ptn_cyber.png") repeat center top/min(100%, 2000px) auto;
}
@media screen and (max-width: 960px) {
  .l-top::before {
    background-size: max(100%, 1000px) auto;
  }
}
.l-top__bg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  content-visibility: hidden;
}
.is-anim .l-top__bg {
  opacity: 1;
  visibility: visible;
  content-visibility: auto;
}
.l-top__bg-in {
  width: 100%;
  height: 500%;
  display: block;
  position: relative;
  opacity: 0.4;
}
.is-anim .l-top__bg-in {
  animation: kv_cover 0.5s steps(5) infinite;
}
@keyframes kv_cover {
  0% {
    transform: translate(0%, 0%);
  }
  100% {
    transform: translate(0%, -100%);
  }
}
.l-top__bg-in::after {
  content: "";
  width: 100%;
  height: 20%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("../img/deco/glitch_color05.jpg") repeat-y center/100% auto;
  transform: translate(0, 100%);
}
.l-top__bg-img {
  width: 100%;
  height: 20%;
  display: block;
  position: relative;
}
.l-top__bg-img:nth-child(1) {
  background: url("../img/deco/glitch_color01.jpg") repeat-y center/100% auto;
}
.l-top__bg-img:nth-child(2) {
  background: url("../img/deco/glitch_color02.jpg") repeat-y center/100% auto;
}
.l-top__bg-img:nth-child(3) {
  background: url("../img/deco/glitch_color03.jpg") repeat-y center/100% auto;
}
.l-top__bg-img:nth-child(4) {
  background: url("../img/deco/glitch_color04.jpg") repeat-y center/100% auto;
}
.l-top__bg-img:nth-child(5) {
  background: url("../img/deco/glitch_color05.jpg") repeat-y center/100% auto;
}
.l-top__cover {
  width: 90%;
  max-width: 1100px;
  height: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 0;
  opacity: 1;
}
.l-top__cover-line {
  width: 0.1rem;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
}
.l-top__cover-line.-line1 {
  left: 0;
}
.l-top__cover-line.-line2 {
  left: 32rem;
}
@media screen and (max-width: 960px) {
  .l-top__cover-line.-line2 {
    left: 33%;
  }
}
.l-top__cover-line.-line3 {
  right: 32rem;
}
@media screen and (max-width: 960px) {
  .l-top__cover-line.-line3 {
    right: 33%;
  }
}
.l-top__cover-line.-line4 {
  right: 0;
}
.l-top__cover-line::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-cyan);
  transform: translate(0, 100vh);
  opacity: 0;
}
.l-top__cover-line.is-anim::before {
  height: 0;
  opacity: 1;
  transform: translate(0, 0);
  transition: transform 0.5s var(--ease_out), opacity 0.8s var(--ease_out), height 0.6s var(--ease_inout) 0.3s;
}

.l-top__cover-line::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-pink);
  transform: translate(0, 100vh);
  opacity: 0;
}
.l-top__cover-line.is-anim::after {
  height: 0;
  opacity: 1;
  transform: translate(0, 0);
  transition: transform 0.5s var(--ease_out) 0.1s, opacity 0.8s var(--ease_out) 0.1s, height 0.6s var(--ease_inout) 0.3s;
}

.l-top__container {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
}
.l-top__inner {
  display: block;
  position: relative;
  padding: 0 0 7.5rem;
  /*
  padding: 7.5rem 0;
  @include sp {
    padding: 3rem 0 5rem;
  }
  */
}
@media screen and (max-width: 960px) {
  .l-top__inner {
    padding: 0 0 5rem;
  }
}

.l-in {
  min-height: calc(var(--winH) - 30rem);
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .l-in {
    min-height: calc(var(--winH) - 35rem);
  }
}
.l-in__container {
  width: 95%;
  max-width: 114rem;
  display: block;
  position: relative;
  padding: 20rem 0 16rem;
  margin: 0 auto;
}
@media screen and (min-width: 961px) {
  .l-in__container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .--wide .l-in__container {
    display: block;
  }
}
@media screen and (max-width: 960px) {
  .l-in__container {
    width: 90%;
    max-width: 40rem;
    padding: 12.5rem 0 10.5rem;
  }
}
.l-in__header {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .l-in__header {
    width: min(30%, 32rem);
    margin-right: 2rem;
    padding-left: 1.8rem;
  }
  .--wide .l-in__header {
    margin-bottom: 6rem;
    margin-right: auto;
  }
}
@media screen and (max-width: 960px) {
  .l-in__header {
    margin-bottom: 2.3rem;
  }
}
.l-in__title {
  display: block;
  position: relative;
  font-size: 8rem;
  letter-spacing: 0.1rem;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  line-height: 1;
  font-weight: 800;
  color: transparent;
}
@media screen and (max-width: 960px) {
  .l-in__title {
    font-size: 5rem;
  }
}
.is-load .l-in__title {
  color: var(--color-pink);
  transition: color 0.2s var(--ease_out) 1.05s;
}
.l-in__title-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  left: -0.025em;
}
@media screen and (min-width: 961px) {
  .l-in__title-text + .l-in__title-text {
    margin-top: -1rem;
  }
}
.l-in__title-text::before {
  content: attr(data-title);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-cyan);
  font-weight: 700;
  -webkit-clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
}
.is-load .l-in__title-text::before {
  opacity: 0;
  -webkit-clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  transition: opacity 0.1s var(--ease_out) 0.8s, -webkit-clip-path 0.5s var(--ease_out) 0.5s;
  transition: clip-path 0.5s var(--ease_out) 0.5s, opacity 0.1s var(--ease_out) 0.8s;
  transition: clip-path 0.5s var(--ease_out) 0.5s, opacity 0.1s var(--ease_out) 0.8s, -webkit-clip-path 0.5s var(--ease_out) 0.5s;
}
.l-in__title-text::after {
  content: attr(data-title);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-pink);
  -webkit-clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
}
.is-load .l-in__title-text::after {
  opacity: 0;
  -webkit-clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  transition: opacity 0.2s var(--ease_out) 1.45s, -webkit-clip-path 0.5s var(--ease_inout) 0.5s;
  transition: clip-path 0.5s var(--ease_inout) 0.5s, opacity 0.2s var(--ease_out) 1.45s;
  transition: clip-path 0.5s var(--ease_inout) 0.5s, opacity 0.2s var(--ease_out) 1.45s, -webkit-clip-path 0.5s var(--ease_inout) 0.5s;
}
.l-in__cap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  overflow: hidden;
  -webkit-clip-path: polygon(0 0, calc(100% - 1.5rem) 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, calc(100% - 1.5rem) 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 960px) {
  .l-in__cap {
    margin-top: 0.4rem;
    -webkit-clip-path: polygon(0 0, calc(100% - 1rem) 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, calc(100% - 1rem) 0, 100% 100%, 0% 100%);
  }
}
.l-in__cap::before {
  content: "";
  width: 0;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-cyan);
  z-index: -1;
}
.is-load .l-in__cap::before {
  width: 100%;
  opacity: 0;
  transition: width 0.5s var(--ease_out) 0.8s, opacity 0.1s linear 1.4s;
}
.l-in__cap::after {
  content: "";
  width: 0;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-pink);
  z-index: -1;
}
.is-load .l-in__cap::after {
  width: 100%;
  transition: width 0.5s var(--ease_inout) 0.8s;
}
.l-in__cap-text {
  display: block;
  position: relative;
  padding: 0.5rem 2rem 0.5rem 1.2rem;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: var(--color-black);
  opacity: 0;
  transform: translateX(-1rem);
}
@media screen and (max-width: 960px) {
  .l-in__cap-text {
    padding: 0.3rem 1.5rem 0.3rem 0.8rem;
    font-size: 1.15rem;
    letter-spacing: 0.05rem;
  }
}
.is-load .l-in__cap-text {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.5s var(--ease_inout) 0.9s, transform 0.5s var(--ease_inout) 0.9s;
}
.l-in__inner {
  display: block;
  position: relative;
  opacity: 0;
  transform: translateX(-1rem);
  transition: transform 0s linear 0.8s, opacity 0.3s var(--ease_out) 0.5s;
}
@media screen and (min-width: 961px) {
  .l-in__inner {
    flex: 1 1 0;
    min-width: 0;
  }
}
.is-load .l-in__inner {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.6s var(--ease_out) 0.3s, opacity 0.3s var(--ease_out) 0.3s;
}

.c-back {
  width: 24rem;
  height: 5.2rem;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 0;
  -webkit-clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
  clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
}
@media screen and (max-width: 960px) {
  .c-back {
    width: 20rem;
    height: 4.8rem;
    -webkit-clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
    clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-back {
    transition: color 0.2s var(--ease_out);
  }
  .c-back:hover {
    color: var(--color-black);
  }
}
.c-back::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.1rem solid var(--color-white);
}
.c-back::after {
  content: "";
  width: 77.6%;
  padding-top: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border-left: 0.1rem solid var(--color-white);
  border-right: 0.1rem solid var(--color-white);
}
.c-back__text {
  display: block;
  position: relative;
  font-size: 1.5rem;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  letter-spacing: 0.02rem;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .c-back__text {
    font-size: 1.3rem;
  }
}
.c-back__deco {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.c-back__deco::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  -webkit-clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  opacity: 0;
  background-color: var(--color-pink);
  transition: opacity 0.2s var(--ease_out), -webkit-clip-path 0s linear 0.2s;
  transition: clip-path 0s linear 0.2s, opacity 0.2s var(--ease_out);
  transition: clip-path 0s linear 0.2s, opacity 0.2s var(--ease_out), -webkit-clip-path 0s linear 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .c-back:hover .c-back__deco::before {
    opacity: 1;
    -webkit-clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
    clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
    transition: opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1), -webkit-clip-path 0.4s cubic-bezier(0.5, 1, 0.89, 1);
    transition: clip-path 0.4s cubic-bezier(0.5, 1, 0.89, 1), opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1);
    transition: clip-path 0.4s cubic-bezier(0.5, 1, 0.89, 1), opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1), -webkit-clip-path 0.4s cubic-bezier(0.5, 1, 0.89, 1);
  }
}

.c-pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin: 0 auto;
}
.c-pagination__list {
  display: flex;
  justify-content: center;
  position: relative;
}
.c-pagination__list-item {
  display: block;
  position: relative;
}
.c-pagination__list-item + .c-pagination__list-item {
  margin-left: 0.7rem;
}
@media screen and (max-width: 960px) {
  .c-pagination__list-item + .c-pagination__list-item {
    margin-left: 0.6rem;
  }
}
.c-pagination__link {
  width: 4.2rem;
  height: 4.2rem;
  display: grid;
  place-items: center;
  position: relative;
}
@media screen and (max-width: 960px) {
  .c-pagination__link {
    width: 3rem;
    height: 3rem;
  }
}
.c-pagination__link::before {
  content: "";
  width: 100%;
  height: 55%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-left: 0.1rem solid var(--color-white);
  border-right: 0.1rem solid var(--color-white);
  opacity: 0;
  transition: opacity 0s linear 0.2s;
}
.is-current .c-pagination__link::before {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .c-pagination__link:hover::before {
    opacity: 1;
  }
}
.c-pagination__link-deco {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-pagination__link-deco::before {
  content: "";
  width: 55%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(30deg);
  border-top: 0.1rem solid var(--color-white);
  border-bottom: 0.1rem solid var(--color-white);
  opacity: 0;
  transition: opacity 0s linear 0.1s;
}
.is-current .c-pagination__link-deco::before {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .c-pagination__link:hover .c-pagination__link-deco::before {
    opacity: 1;
  }
}
.c-pagination__link-deco::after {
  content: "";
  width: 55%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  border-top: 0.1rem solid var(--color-white);
  border-bottom: 0.1rem solid var(--color-white);
  opacity: 0;
  transition: opacity 0s linear;
}
.is-current .c-pagination__link-deco::after {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .c-pagination__link:hover .c-pagination__link-deco::after {
    opacity: 1;
  }
}
.c-pagination__link-text {
  display: block;
  position: relative;
  white-space: nowrap;
  font-size: 1.8rem;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  line-height: 1;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .c-pagination__link-text {
    font-size: 1.4rem;
  }
}

.p-news {
  display: block;
  position: relative;
}
.p-news__inner {
  display: block;
  position: relative;
}
.p-news__list {
  display: block;
  position: relative;
}
.p-news__list-item {
  display: block;
  position: relative;
  opacity: 0;
  -webkit-clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
}
.is-load .p-news__list-item {
  opacity: 1;
  -webkit-clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  transition: opacity 0.1s var(--ease_out), -webkit-clip-path 0.5s var(--ease_out);
  transition: clip-path 0.5s var(--ease_out), opacity 0.1s var(--ease_out);
  transition: clip-path 0.5s var(--ease_out), opacity 0.1s var(--ease_out), -webkit-clip-path 0.5s var(--ease_out);
}
.is-load .p-news__list-item:nth-child(1) {
  transition-delay: 0.7s;
}
.is-load .p-news__list-item:nth-child(2) {
  transition-delay: 0.75s;
}
.is-load .p-news__list-item:nth-child(3) {
  transition-delay: 0.8s;
}
.is-load .p-news__list-item:nth-child(4) {
  transition-delay: 0.85s;
}
.is-load .p-news__list-item:nth-child(5) {
  transition-delay: 0.9s;
}
.is-load .p-news__list-item:nth-child(6) {
  transition-delay: 0.95s;
}
.is-load .p-news__list-item:nth-child(7) {
  transition-delay: 1s;
}
.is-load .p-news__list-item:nth-child(8) {
  transition-delay: 1.05s;
}
.is-load .p-news__list-item:nth-child(9) {
  transition-delay: 1.1s;
}
.is-load .p-news__list-item:nth-child(10) {
  transition-delay: 1.15s;
}
.p-news__list-item + .p-news__list-item {
  margin-top: 2rem;
}
@media screen and (max-width: 960px) {
  .p-news__list-item + .p-news__list-item {
    margin-top: 1rem;
  }
}
.p-news__footer {
  display: block;
  position: relative;
  margin-top: 9.6rem;
  opacity: 0;
  transform: translateX(-1rem);
}
@media screen and (max-width: 960px) {
  .p-news__footer {
    margin-top: 4rem;
  }
}
.is-load .p-news__footer {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.6s var(--ease_out) 1s, opacity 0.3s var(--ease_out) 1s;
}
.p-news__pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  .p-news__pagination {
    margin: 0 auto;
  }
}

.p-news_data {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 0.6rem 0;
}
@media screen and (max-width: 960px) {
  .p-news_data {
    padding: 1rem 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-news_data {
    transition: color 0.2s var(--ease_out);
  }
  .p-news_data:hover {
    color: var(--color-black);
  }
}
.p-news_data__bg {
  width: calc(100% + 2rem);
  height: calc(100% + 2rem);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  -webkit-clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
  clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
}
@media screen and (max-width: 960px) {
  .p-news_data__bg {
    width: calc(100% + 1rem);
    height: calc(100% + 1rem);
    -webkit-clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
    clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
  }
}
.p-news_data__bg::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, -10% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -10% 0, 0 100%, 0 100%);
  opacity: 0;
  background-color: var(--color-pink);
  transition: opacity 0.2s var(--ease_out), -webkit-clip-path 0s linear 0.2s;
  transition: clip-path 0s linear 0.2s, opacity 0.2s var(--ease_out);
  transition: clip-path 0s linear 0.2s, opacity 0.2s var(--ease_out), -webkit-clip-path 0s linear 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .p-news_data:hover .p-news_data__bg::before {
    opacity: 1;
    -webkit-clip-path: polygon(-10% 0, 100% 0, 110% 100%, 0 100%);
    clip-path: polygon(-10% 0, 100% 0, 110% 100%, 0 100%);
    transition: opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1), -webkit-clip-path 0.5s var(--ease_out);
    transition: clip-path 0.5s var(--ease_out), opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1);
    transition: clip-path 0.5s var(--ease_out), opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1), -webkit-clip-path 0.5s var(--ease_out);
  }
}
.p-news_data__date {
  min-width: 9.5rem;
  display: block;
  position: relative;
  margin-right: 1rem;
}
@media screen and (max-width: 960px) {
  .p-news_data__date {
    min-width: 7.5rem;
    margin-right: 0.5rem;
  }
}
.p-news_data__date-year {
  display: block;
  position: relative;
  margin-bottom: 0.4rem;
  font-size: 1.5rem;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .p-news_data__date-year {
    margin-bottom: 0.1rem;
    font-size: 1.4rem;
  }
}
.p-news_data__date-day {
  display: block;
  position: relative;
  font-size: 3.2rem;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 960px) {
  .p-news_data__date-day {
    font-size: 2.5rem;
  }
}
.p-news_data__title {
  display: block;
  position: relative;
  font-size: 1.8rem;
}
@media screen and (min-width: 961px) {
  .p-news_data__title {
    min-width: 0;
    flex: 1 1 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media screen and (max-width: 960px) {
  .p-news_data__title {
    font-size: 1.3rem;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

.p-news_in {
  display: block;
  position: relative;
}
.p-news_in__inner {
  display: block;
  position: relative;
}
.p-news_in__footer {
  display: block;
  position: relative;
  margin-top: 9.8rem;
  opacity: 0;
  transform: translateX(-1rem);
}
@media screen and (max-width: 960px) {
  .p-news_in__footer {
    margin-top: 5rem;
  }
}
.is-load .p-news_in__footer {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 1s, opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1) 1s;
}
.p-news_in__btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin-left: auto;
  margin-right: 2rem;
}
@media screen and (max-width: 960px) {
  .p-news_in__btn {
    margin: 0 auto;
  }
}

.p-news_single {
  display: block;
  position: relative;
}
.p-news_single__header {
  display: block;
  position: relative;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 960px) {
  .p-news_single__header {
    margin-bottom: 3.2rem;
  }
}
.p-news_single__date {
  display: block;
  position: relative;
  margin-bottom: 1.6rem;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  opacity: 0;
  transform: translateX(-1rem);
}
@media screen and (max-width: 960px) {
  .p-news_single__date {
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
}
.is-load .p-news_single__date {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.6s, opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1) 0.6s;
}
.p-news_single__title {
  display: block;
  position: relative;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  opacity: 0;
  transform: translateX(-1rem);
}
@media screen and (max-width: 960px) {
  .p-news_single__title {
    font-size: 2rem;
  }
}
.is-load .p-news_single__title {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.7s, opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1) 0.7s;
}
.p-news_single__inner {
  display: block;
  position: relative;
  opacity: 0;
  transform: translateX(-1rem);
}
.is-load .p-news_single__inner {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.8s, opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1) 0.8s;
}
.p-news_single__text {
  display: block;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .p-news_single__text {
    font-size: 1.3rem;
  }
}
.p-news_single__text a {
  color: var(--color-pink);
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-news_single__text a:hover {
    text-decoration: underline;
  }
}
.p-news_single__text img {
  max-width: 100%;
  height: auto !important;
  position: relative;
}
.p-news_single__text iframe {
  max-width: 100%;
}
@supports (aspect-ratio: 16/9) {
  .p-news_single__text iframe {
    width: 100%;
    display: block;
    height: auto !important;
    aspect-ratio: 16/9;
  }
}

.p-chara {
  display: block;
  position: relative;
}
.p-chara__container {
  width: 96%;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-chara__container {
    width: 100%;
    padding-top: 2rem;
  }
}
.p-chara__header {
  display: block;
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 961px) {
  .p-chara__header {
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 960px) {
  .p-chara__header {
    display: block;
    position: relative;
    margin-bottom: 7.8rem;
  }
}
.p-chara__inner {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-chara__inner {
    padding-left: 15rem;
  }
}
.p-chara__content {
  display: block;
  position: relative;
  z-index: 0;
}

.p-chara_nav {
  display: block;
  position: relative;
}
.p-chara_nav__deco {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  transform: scale(0.8);
  transform-origin: left center;
  color: transparent;
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .p-chara_nav__deco {
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
  }
}
.is-load .p-chara_nav__deco {
  opacity: 1;
  color: var(--color-gray);
  transition: opacity 0.2s var(--ease_out), color 0.2s var(--ease_out) 0.4s;
}
.p-chara_nav__deco::after {
  content: "";
  width: 50vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-gray);
  transform: translateX(-100%);
}
.is-load .p-chara_nav__deco::after {
  width: 0;
  transform: translateX(0);
  transition: transform 0.5s var(--ease_out), width 0.6s var(--ease_inout);
}
.is-load .p-chara_nav__deco > span {
  animation: flash 1.5s steps(1) 0.5s infinite;
}
.p-chara_nav__list {
  display: grid;
  grid-template-columns: repeat(2, 6rem);
  gap: 0.6rem 0.4rem;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-chara_nav__list {
    display: grid;
    grid-template-columns: repeat(6, 5.2rem);
    gap: 0.6rem 0.4rem;
  }
}
.p-chara_nav__list-item {
  display: block;
  position: relative;
  /*
  & + & {
    margin-top: .6rem;
    @include sp {
      margin-top: .7rem;
    }
  }
  */
}
.p-chara_nav__btn {
  width: 6rem;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-chara_nav__btn {
    width: 5.2rem;
  }
}
.p-chara_nav__btn-off {
  display: block;
  position: relative;
}
.p-chara_nav__btn-on {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s var(--ease_out);
}
.is-chara-current .p-chara_nav__btn-on {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .p-chara_nav__btn:hover .p-chara_nav__btn-on {
    opacity: 1;
  }
}

.p-chara_content {
  width: 100%;
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-chara_content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.p-chara_content__header {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-chara_content__header {
    margin-right: 7rem;
  }
}
@media screen and (max-width: 960px) {
  .p-chara_content__header {
    margin-bottom: 10.2rem;
  }
}
.p-chara_content__visual {
  width: 26rem;
  height: 64rem;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-chara_content__visual {
    width: 16rem;
    height: 38rem;
    margin: 0 auto;
  }
}
.p-chara_content__visual::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/character/deco_chara.svg") no-repeat left top/100% 100%;
}
.p-chara_content__visual-img {
  width: 234.375%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.p-chara_content__visual-img img {
  display: block;
  position: relative;
  opacity: 0;
  -webkit-clip-path: polygon(0 0, -40% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -40% 0, 0 100%, 0 100%);
  transition: opacity 0.5s var(--ease_out), -webkit-clip-path 0s linear 0.5s;
  transition: clip-path 0s linear 0.5s, opacity 0.5s var(--ease_out);
  transition: clip-path 0s linear 0.5s, opacity 0.5s var(--ease_out), -webkit-clip-path 0s linear 0.5s;
}
.is-load .p-chara_content__visual-img img {
  opacity: 1;
  -webkit-clip-path: polygon(-40% 0, 100% 0, 140% 100%, 0 100%);
  clip-path: polygon(-40% 0, 100% 0, 140% 100%, 0 100%);
  transition: opacity 0s linear, -webkit-clip-path 1s var(--ease_inout) 0.2s;
  transition: clip-path 1s var(--ease_inout) 0.2s, opacity 0s linear;
  transition: clip-path 1s var(--ease_inout) 0.2s, opacity 0s linear, -webkit-clip-path 1s var(--ease_inout) 0.2s;
}
.p-chara_content__visual-cover {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-pink);
  z-index: -1;
  -webkit-mask: url(#) no-repeat center/contain;
  mask: url(#) no-repeat center/contain;
  opacity: 1;
  -webkit-clip-path: polygon(0 0, -40% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -40% 0, 0 100%, 0 100%);
  transition: opacity 0s linear 0.7s, -webkit-clip-path 0s linear 0.7s;
  transition: clip-path 0s linear 0.7s, opacity 0s linear 0.7s;
  transition: clip-path 0s linear 0.7s, opacity 0s linear 0.7s, -webkit-clip-path 0s linear 0.7s;
}
.is-load .p-chara_content__visual-cover {
  opacity: 0;
  -webkit-clip-path: polygon(-40% 0, 100% 0, 140% 100%, 0 100%);
  clip-path: polygon(-40% 0, 100% 0, 140% 100%, 0 100%);
  transition: opacity 0.1s linear 1s, -webkit-clip-path 1s var(--ease_inout);
  transition: clip-path 1s var(--ease_inout), opacity 0.1s linear 1s;
  transition: clip-path 1s var(--ease_inout), opacity 0.1s linear 1s, -webkit-clip-path 1s var(--ease_inout);
}
.p-chara_content__inner {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: -webkit-clip-path 0s linear 0.5s;
  transition: clip-path 0s linear 0.5s;
  transition: clip-path 0s linear 0.5s, -webkit-clip-path 0s linear 0.5s;
}
@media screen and (min-width: 961px) {
  .p-chara_content__inner {
    flex: 1 1 0;
    min-width: 0;
  }
}
.is-load .p-chara_content__inner {
  opacity: 1;
  transition: -webkit-clip-path 1s var(--ease_out);
  transition: clip-path 1s var(--ease_out);
  transition: clip-path 1s var(--ease_out), -webkit-clip-path 1s var(--ease_out);
}
.p-chara_content__name {
  width: 100%;
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-chara_content__name {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 960px) {
  .p-chara_content__name {
    margin-bottom: 1.8rem;
  }
}
.p-chara_content__name-deco {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  transform: scale(0.8);
  transform-origin: left center;
  color: transparent;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.5s var(--ease_out);
}
@media screen and (max-width: 960px) {
  .p-chara_content__name-deco {
    font-size: 0.8rem;
  }
}
.is-load .p-chara_content__name-deco {
  opacity: 1;
  color: var(--color-gray);
  transition: opacity 0.2s var(--ease_out), color 0.2s var(--ease_out) 0.4s;
}
.p-chara_content__name-deco::after {
  content: "";
  width: 50vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-gray);
  transform: translateX(-100%);
}
.is-load .p-chara_content__name-deco::after {
  width: 0;
  transform: translateX(0);
  transition: transform 0.5s cubic-bezier(0.5, 1, 0.89, 1), width 0.6s var(--ease_inout);
}
.is-load .p-chara_content__name-deco > span {
  animation: flash 1.5s steps(1) 0.5s infinite;
}
.p-chara_content__name-main {
  display: block;
  position: relative;
  font-size: 6rem;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .p-chara_content__name-main {
    font-size: 3.4rem;
  }
}
.p-chara_content__name-main small {
  display: inline-block;
  font-size: 0.7em;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 960px) {
  .p-chara_content__name-main small {
    font-size: 0.65em;
    letter-spacing: 0.25rem;
  }
}
.p-chara_content__cv {
  width: 100%;
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-chara_content__cv {
    margin-bottom: 6.2rem;
  }
}
@media screen and (max-width: 960px) {
  .p-chara_content__cv {
    margin-bottom: 3.4rem;
  }
}
.p-chara_content__cv-deco {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  transform: scale(0.8);
  transform-origin: left center;
  color: transparent;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.5s cubic-bezier(0.5, 1, 0.89, 1);
}
@media screen and (max-width: 960px) {
  .p-chara_content__cv-deco {
    margin-bottom: 1.2rem;
    font-size: 0.8rem;
  }
}
.is-load .p-chara_content__cv-deco {
  opacity: 1;
  color: var(--color-gray);
  transition: opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1), color 0.2s cubic-bezier(0.5, 1, 0.89, 1) 0.4s;
}
.p-chara_content__cv-deco::after {
  content: "";
  width: 50vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-gray);
  transform: translateX(-100%);
}
.is-load .p-chara_content__cv-deco::after {
  width: 0;
  transform: translateX(0);
  transition: transform 0.5s cubic-bezier(0.5, 1, 0.89, 1), width 0.6s var(--ease_inout);
}
.is-load .p-chara_content__cv-deco > span {
  animation: flash 1.5s steps(1) 0.5s infinite;
}
.p-chara_content__cv-main {
  display: block;
  position: relative;
  font-size: 1.7rem;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .p-chara_content__cv-main {
    font-size: 1.3rem;
  }
}
.p-chara_content__cv-main small {
  display: inline-block;
  font-size: 0.7em;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 960px) {
  .p-chara_content__cv-main small {
    font-size: 0.65em;
    letter-spacing: 0.25rem;
  }
}
.p-chara_content__detail {
  width: 38rem;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-chara_content__detail {
    width: 55%;
  }
}
.p-chara_content__detail-deco {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  transform: scale(0.8);
  transform-origin: left center;
  color: transparent;
  opacity: 0;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-chara_content__detail-deco {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
  }
}
.is-load .p-chara_content__detail-deco {
  opacity: 1;
  color: var(--color-gray);
  transition: opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1), color 0.2s cubic-bezier(0.5, 1, 0.89, 1) 0.4s;
}
.p-chara_content__detail-deco::after {
  content: "";
  width: 50vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-gray);
  transform: translateX(-100%);
}
.is-load .p-chara_content__detail-deco::after {
  width: 0;
  transform: translateX(0);
  transition: transform 0.5s cubic-bezier(0.5, 1, 0.89, 1), width 0.8s var(--ease_inout) 0.1s;
}
.is-load .p-chara_content__detail-deco > span {
  animation: flash 1.5s steps(1) 0.5s infinite;
}
.p-chara_content__detail-main {
  display: block;
  position: relative;
  font-size: 1.7rem;
  line-height: 2.1;
}
@media screen and (max-width: 960px) {
  .p-chara_content__detail-main {
    font-size: 1.3rem;
  }
  .p-chara_content__detail-main br {
    display: none;
  }
}
.p-chara_content__face {
  min-width: 0;
  flex: 1 1 0;
  display: block;
  position: relative;
  margin-left: 2rem;
}
@media screen and (max-width: 960px) {
  .p-chara_content__face {
    max-width: 200px;
    margin-left: 2rem;
  }
}
.p-chara_content__face-deco {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin-bottom: 0.2rem;
  font-size: 1rem;
  line-height: 1;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  transform: scale(0.8);
  transform-origin: left center;
  color: transparent;
  opacity: 0;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-chara_content__face-deco {
    margin-bottom: 1rem;
    font-size: 0.8rem;
  }
}
.is-load .p-chara_content__face-deco {
  opacity: 1;
  color: var(--color-gray);
  transition: opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1), color 0.2s cubic-bezier(0.5, 1, 0.89, 1) 0.4s;
}
.p-chara_content__face-deco::after {
  content: "";
  width: 50vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-gray);
  transform: translateX(-100%);
}
.is-load .p-chara_content__face-deco::after {
  width: 0;
  transform: translateX(0);
  transition: transform 0.5s cubic-bezier(0.5, 1, 0.89, 1), width 0.6s var(--ease_inout);
}
.is-load .p-chara_content__face-deco > span {
  animation: flash 1.5s steps(1) 0.5s infinite;
}
.p-chara_content__face-main {
  width: 120%;
  display: block;
  position: relative;
  margin-top: 0.2rem;
  left: -7%;
}
@media screen and (max-width: 960px) {
  .p-chara_content__face-main {
    width: 110%;
    left: -6%;
    margin-top: -0.5rem;
  }
}

.p-chara_face {
  display: block;
  position: relative;
}
.p-chara_face__slide {
  display: block;
  position: relative;
}
.p-chara_face__list {
  display: flex;
  justify-content: flex-start;
  position: relative;
}
.p-chara_face__list-item {
  width: 100%;
  flex-shrink: 0;
  display: block;
  position: relative;
}
.p-chara_face__img {
  display: block;
  position: relative;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.5, 1, 0.89, 1);
}
.is-slide-current .p-chara_face__img {
  opacity: 1;
}
.p-chara_face__pagination {
  width: 65%;
  display: flex;
  gap: 1rem;
  position: relative;
  margin: 3rem auto 0;
}
@media screen and (max-width: 960px) {
  .p-chara_face__pagination {
    width: 70%;
    justify-items: 0.8rem;
    margin-top: 2rem;
  }
}
.p-chara_face__pagination-item {
  flex: 1;
  height: 0.5rem;
  display: block;
  position: relative;
  background: transparent;
  transition: background-color 0.5s cubic-bezier(0.5, 1, 0.89, 1);
}
.p-chara_face__pagination-item.is-current {
  background: var(--color-white);
}
.p-chara_face__pagination-item::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.1rem solid var(--color-white);
}

.p-onair {
  display: block;
  position: relative;
}
.p-onair__container {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 961px) {
  .p-onair__container {
    padding: 0 1.8rem;
  }
}
@media screen and (max-width: 960px) {
  .p-onair__container {
    width: 100%;
  }
}
.p-onair__inner {
  display: block;
  position: relative;
}

.p-onair_content {
  display: block;
  position: relative;
}
.p-onair_content + .p-onair_content {
  margin-top: 9.2rem;
}
@media screen and (max-width: 960px) {
  .p-onair_content + .p-onair_content {
    margin-top: 5.4rem;
  }
}
.p-onair_content__header {
  display: block;
  position: relative;
  margin-bottom: 2.2rem;
}
@media screen and (max-width: 960px) {
  .p-onair_content__header {
    margin-bottom: 1.8rem;
  }
}
.p-onair_content__title {
  display: block;
  position: relative;
  font-size: 4.2rem;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 900;
}
@media screen and (max-width: 960px) {
  .p-onair_content__title {
    font-size: 2.8rem;
  }
}
.p-onair_content__inner {
  display: block;
  position: relative;
}
.p-onair_content__lead {
  display: block;
  position: relative;
  margin-bottom: 3.2rem;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .p-onair_content__lead {
    font-size: 1.8rem;
  }
}

.p-onair_table {
  display: block;
  position: relative;
}
.p-onair_table__header {
  display: flex;
  align-items: flex-start;
  position: relative;
  line-height: 1.5;
}
.p-onair_table__header::before {
  content: "";
  width: 100%;
  height: 0.1rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.4);
  border-left: 0.8rem solid var(--color-white);
  border-right: 0.8rem solid var(--color-white);
}
.p-onair_table__header-cap {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-onair_table__header-cap {
    width: 30rem;
    margin-right: 2rem;
  }
}
@media screen and (max-width: 960px) {
  .p-onair_table__header-cap {
    width: 13rem;
    margin-right: 2rem;
  }
}
.p-onair_table__header-text {
  flex: 1 1 0;
  min-width: 0;
  display: block;
  position: relative;
}
.p-onair_table__header-memo {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-onair_table__header-memo {
    width: 27.2%;
    margin-left: 2rem;
  }
}
@media screen and (max-width: 960px) {
  .p-onair_table__header-memo {
    display: none;
  }
}
.p-onair_table__cap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  padding: 0.2rem 0.4rem;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.05rem;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  color: var(--color-black);
  background: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-onair_table__cap {
    font-size: 1rem;
  }
}
.p-onair_table__inner {
  display: block;
  position: relative;
}
.p-onair_table__list {
  display: block;
  position: relative;
}
.p-onair_table__list-item {
  display: block;
  position: relative;
}
.p-onair_table__list-item::before {
  content: "";
  width: 100%;
  height: 0.1rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.4);
  border-left: 0.8rem solid var(--color-white);
  border-right: 0.8rem solid var(--color-white);
}
.p-onair_table__data {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 1.8rem 0;
}
@media screen and (max-width: 960px) {
  .p-onair_table__data {
    font-size: 1.3rem;
  }
}
.p-onair_table__data-cap {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-onair_table__data-cap {
    width: 30rem;
    margin-right: 2rem;
  }
}
@media screen and (max-width: 960px) {
  .p-onair_table__data-cap {
    width: 13rem;
    margin-right: 2rem;
  }
}
.p-onair_table__data-link {
  display: inline-block;
  position: relative;
}
.p-onair_table__data-link[href] {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-onair_table__data-link[href]:hover {
    text-decoration: underline;
  }
}
.p-onair_table__data-link[href][target=_blank]::after {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  display: inline-block;
  position: relative;
  top: 0.25em;
  vertical-align: top;
  background: url("../img/icon_blank.svg") no-repeat center/contain;
}
@media screen and (max-width: 960px) {
  .p-onair_table__data-link[href][target=_blank]::after {
    width: 0.8rem;
  }
}
.p-onair_table__data-text {
  flex: 1 1 0;
  min-width: 0;
  display: block;
  position: relative;
}
.p-onair_table__data-memo {
  display: block;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.5;
}
@media screen and (min-width: 961px) {
  .p-onair_table__data-memo {
    width: 27.2%;
    margin-left: 2rem;
  }
}
@media screen and (max-width: 960px) {
  .p-onair_table__data-memo {
    width: 100%;
    font-size: 1rem;
    margin-top: 1rem;
    padding-left: 15rem;
  }
}
.p-onair_table__note {
  display: block;
  position: relative;
  margin-top: 3rem;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--color-gray);
}
@media screen and (max-width: 960px) {
  .p-onair_table__note {
    margin-top: 1.8rem;
    font-size: 1rem;
    letter-spacing: 0.05rem;
  }
}

.p-staff {
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 961px) {
  .p-staff {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22rem;
  }
  .p-staff::before {
    content: "";
    width: 100%;
    height: calc(100% + 100rem);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(0, -50%);
    background: rgba(121, 16, 239, 0.22);
  }
}
.p-staff__container {
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-staff__container + .p-staff__container {
    margin-top: 5rem;
  }
}
.p-staff__header {
  display: block;
  position: relative;
  margin-bottom: 7.2rem;
}
@media screen and (max-width: 960px) {
  .p-staff__header {
    margin-bottom: 3.6rem;
  }
}
.p-staff__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  color: var(--color-pink);
  margin: 0 auto;
}
.p-staff__title-deco {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin-bottom: 0.3rem;
  font-size: 1rem;
  line-height: 1;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  transform: scale(0.8);
  transform-origin: left center;
  color: transparent;
  opacity: 0;
}
.is-active .p-staff__title-deco {
  opacity: 1;
  color: var(--color-pink);
  transition: opacity 0.2s var(--ease_out), color 0.2s var(--ease_out) 0.4s;
}
.p-staff__title-deco::before {
  content: "";
  width: 50vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-cyan);
  transform: translateX(-100%);
}
.is-active .p-staff__title-deco::before {
  width: 0;
  transform: translateX(0);
  transition: transform 0.3s var(--ease_out), width 0.6s var(--ease_inout);
}
.p-staff__title-deco::after {
  content: "";
  width: 50vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-pink);
  transform: translateX(-100%);
}
.is-active .p-staff__title-deco::after {
  width: 0;
  transform: translateX(0);
  transition: transform 0.5s var(--ease_out), width 0.6s var(--ease_inout);
}
.is-active .p-staff__title-deco > span {
  animation: flash 1.5s steps(1) 0.5s infinite;
}
.p-staff__title-main {
  display: block;
  position: relative;
  font-size: 8rem;
  letter-spacing: 0.1rem;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 800;
  line-height: 1;
  z-index: 0;
  color: transparent;
}
@media screen and (max-width: 960px) {
  .p-staff__title-main {
    font-size: 5rem;
  }
}
.is-active .p-staff__title-main {
  color: var(--color-pink);
  transition: color 0.2s var(--ease_out) 0.8s;
}
.p-staff__title-word {
  display: inline-block;
  position: relative;
}
.p-staff__title-word::before {
  content: attr(data-title);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-cyan);
  font-weight: 700;
  -webkit-clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
}
.is-active .p-staff__title-word::before {
  opacity: 0;
  -webkit-clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  transition: opacity 0.1s var(--ease_out) 0.55s, -webkit-clip-path 0.5s var(--ease_out) 0.25s;
  transition: clip-path 0.5s var(--ease_out) 0.25s, opacity 0.1s var(--ease_out) 0.55s;
  transition: clip-path 0.5s var(--ease_out) 0.25s, opacity 0.1s var(--ease_out) 0.55s, -webkit-clip-path 0.5s var(--ease_out) 0.25s;
}
.p-staff__title-word::after {
  content: attr(data-title);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-pink);
  -webkit-clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
}
.is-active .p-staff__title-word::after {
  opacity: 0;
  -webkit-clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  transition: opacity 0.2s var(--ease_out) 1.2s, -webkit-clip-path 0.5s var(--ease_inout) 0.25s;
  transition: clip-path 0.5s var(--ease_inout) 0.25s, opacity 0.2s var(--ease_out) 1.2s;
  transition: clip-path 0.5s var(--ease_inout) 0.25s, opacity 0.2s var(--ease_out) 1.2s, -webkit-clip-path 0.5s var(--ease_inout) 0.25s;
}
.p-staff__inner {
  display: block;
  position: relative;
}
.p-staff__list {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-staff__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 4.8rem 2rem;
  }
  .--staff .p-staff__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .--cast .p-staff__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 960px) {
  .p-staff__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1rem;
  }
}
.p-staff__list-item {
  min-width: 0;
  display: block;
  position: relative;
  opacity: 0;
  transform: translateY(2rem);
}
@media screen and (min-width: 961px) {
  .--staff .p-staff__list-item:first-child {
    display: flex;
    justify-content: center;
    grid-column: 1/-1;
  }
  .--cast .p-staff__list-item:first-child {
    display: flex;
    justify-content: center;
    grid-column: 1/-1;
  }
}
@media screen and (max-width: 960px) {
  .--staff .p-staff__list-item:first-child {
    display: flex;
    justify-content: center;
    grid-column: 1/-1;
  }
  .--cast .p-staff__list-item:first-child {
    display: flex;
    justify-content: center;
    grid-column: 1/-1;
  }
}
.is-active .p-staff__list-item {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s var(--ease_out), transform 1s cubic-bezier(0.5, 1, 0.89, 1);
}
.is-active .p-staff__list-item:nth-child(1) {
  transition-delay: 0.5s;
}
.is-active .p-staff__list-item:nth-child(2) {
  transition-delay: 0.6s;
}
.is-active .p-staff__list-item:nth-child(3) {
  transition-delay: 0.7s;
}
.is-active .p-staff__list-item:nth-child(4) {
  transition-delay: 0.8s;
}
.is-active .p-staff__list-item:nth-child(5) {
  transition-delay: 0.9s;
}
.is-active .p-staff__list-item:nth-child(6) {
  transition-delay: 1s;
}
.is-active .p-staff__list-item:nth-child(7) {
  transition-delay: 1.1s;
}
.is-active .p-staff__list-item:nth-child(8) {
  transition-delay: 1.2s;
}
.is-active .p-staff__list-item:nth-child(9) {
  transition-delay: 1.3s;
}
.is-active .p-staff__list-item:nth-child(10) {
  transition-delay: 1.4s;
}
.is-active .p-staff__list-item:nth-child(11) {
  transition-delay: 1.5s;
}
.is-active .p-staff__list-item:nth-child(12) {
  transition-delay: 1.6s;
}
.is-active .p-staff__list-item:nth-child(13) {
  transition-delay: 1.7s;
}
.is-active .p-staff__list-item:nth-child(14) {
  transition-delay: 1.8s;
}
.is-active .p-staff__list-item:nth-child(15) {
  transition-delay: 1.9s;
}
.is-active .p-staff__list-item:nth-child(16) {
  transition-delay: 2s;
}
.is-active .p-staff__list-item:nth-child(17) {
  transition-delay: 2.1s;
}
.is-active .p-staff__list-item:nth-child(18) {
  transition-delay: 2.2s;
}
.is-active .p-staff__list-item:nth-child(19) {
  transition-delay: 2.3s;
}
.is-active .p-staff__list-item:nth-child(20) {
  transition-delay: 2.4s;
}

.p-staff_data {
  display: block;
  position: relative;
}
.p-staff_data__header {
  display: block;
  position: relative;
  margin-bottom: 0.8rem;
}
.p-staff_data__title {
  display: block;
  position: relative;
  padding: 0 1.5rem;
  font-size: 1.5rem;
  text-align: center;
  font-weight: 700;
  color: var(--color-gray);
}
@media screen and (max-width: 960px) {
  .p-staff_data__title {
    font-size: 1rem;
  }
}
.p-staff_data__inner {
  display: block;
  position: relative;
}
.p-staff_data__name {
  font-size: 2.8rem;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-staff_data__name {
    font-size: 2.5rem;
  }
}
.p-staff_data__note {
  display: block;
  position: relative;
  margin-top: 0.5rem;
  font-size: 1.1rem;
  text-align: center;
  font-weight: 400;
  color: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-staff_data__note {
    font-size: 1rem;
  }
}
.p-staff_data__comment {
  width: 16rem;
  display: block;
  position: relative;
  margin: 1.8rem auto 0;
}
@media screen and (max-width: 960px) {
  .p-staff_data__comment {
    width: 11rem;
    margin-top: 1rem;
  }
}
.p-staff_data__comment::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  opacity: 0;
  background-color: var(--color-white);
  transition: opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1), -webkit-clip-path 0s linear 0.2s;
  transition: clip-path 0s linear 0.2s, opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1);
  transition: clip-path 0s linear 0.2s, opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1), -webkit-clip-path 0s linear 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .p-staff_data__comment:hover::before {
    opacity: 1;
    -webkit-clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
    clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
    transition: opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1), -webkit-clip-path 0.4s cubic-bezier(0.5, 1, 0.89, 1);
    transition: clip-path 0.4s cubic-bezier(0.5, 1, 0.89, 1), opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1);
    transition: clip-path 0.4s cubic-bezier(0.5, 1, 0.89, 1), opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1), -webkit-clip-path 0.4s cubic-bezier(0.5, 1, 0.89, 1);
  }
}
.p-staff_data__comment::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.1rem solid var(--color-white);
}
.p-staff_data__comment-text {
  display: block;
  position: relative;
  font-size: 1.3rem;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  padding: 0.4rem 1rem;
}
@media screen and (max-width: 960px) {
  .p-staff_data__comment-text {
    padding: 0.2rem 1rem;
    font-size: 1rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-staff_data__comment-text {
    transition: color 0.2s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .p-staff_data__comment:hover .p-staff_data__comment-text {
    color: var(--color-black);
  }
}
.p-staff_data__comment-text::after {
  content: "+";
  display: block;
  position: absolute;
  top: 50%;
  right: 1rem;
  font-size: 1.5rem;
  letter-spacing: 0;
  font-weight: 400;
  transform: translate(0, -50%);
}
@media screen and (max-width: 960px) {
  .p-staff_data__comment-text::after {
    top: 42%;
    font-size: 1.2rem;
  }
}

.p-comment {
  width: 100%;
  max-width: 820px;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-comment__header {
  display: block;
  position: relative;
  padding-bottom: 4rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 960px) {
  .p-comment__header {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
}
.p-comment__header::before {
  content: "";
  width: 100%;
  height: 0.1rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.4);
  border-left: 0.8rem solid var(--color-white);
  border-right: 0.8rem solid var(--color-white);
  opacity: 0;
  -webkit-clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  transition: opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1) 0.6s, -webkit-clip-path 0s linear 1s;
  transition: clip-path 0s linear 1s, opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1) 0.6s;
  transition: clip-path 0s linear 1s, opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1) 0.6s, -webkit-clip-path 0s linear 1s;
}
.is-open .p-comment__header::before {
  opacity: 1;
  -webkit-clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  transition: opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1) 0.6s, -webkit-clip-path 1s cubic-bezier(0.5, 1, 0.89, 1) 0.6s;
  transition: clip-path 1s cubic-bezier(0.5, 1, 0.89, 1) 0.6s, opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1) 0.6s;
  transition: clip-path 1s cubic-bezier(0.5, 1, 0.89, 1) 0.6s, opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1) 0.6s, -webkit-clip-path 1s cubic-bezier(0.5, 1, 0.89, 1) 0.6s;
}
.p-comment__title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: translateX(-1rem);
  transition: transform 0s linear 0.8s, opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1) 0.5s;
}
.is-open .p-comment__title {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.5s, opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1) 0.5s;
}
.p-comment__title-sub {
  display: block;
  position: relative;
  top: 0.4rem;
  margin-right: 1.5rem;
  font-size: 1.8rem;
  color: var(--color-gray);
}
@media screen and (max-width: 960px) {
  .p-comment__title-sub {
    margin-right: 1rem;
    font-size: 1.3rem;
  }
}
.p-comment__title-main {
  display: block;
  position: relative;
  font-size: 3.5rem;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-comment__title-main {
    font-size: 3rem;
    font-weight: 500;
  }
}
.p-comment__inner {
  display: block;
  position: relative;
  opacity: 0;
  transform: translateX(-1rem);
  transition: transform 0s linear 0.8s, opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1) 0.5s;
}
.is-open .p-comment__inner {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.7s, opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1) 0.7s;
}
.p-comment__text {
  display: block;
  position: relative;
  font-size: 1.7rem;
  line-height: 2.1;
  letter-spacing: 0.15rem;
}
@media screen and (max-width: 960px) {
  .p-comment__text {
    font-size: 1.3rem;
    line-height: 1.8;
  }
}

.p-cast_comment {
  max-width: 1080px;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 961px) {
  .p-cast_comment {
    display: flex;
  }
}
.p-cast_comment__img {
  width: 40rem;
  display: block;
  position: relative;
  margin-right: 5rem;
}
@media screen and (max-width: 960px) {
  .p-cast_comment__img {
    width: 100%;
    margin: 0 auto 2.4rem;
  }
}
.p-cast_comment__container {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-cast_comment__container {
    flex: 1 1 0;
    min-width: 0;
  }
}
.p-cast_comment__header {
  display: block;
  position: relative;
  padding-bottom: 4rem;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 960px) {
  .p-cast_comment__header {
    padding-bottom: 1.8em;
    margin-bottom: 3rem;
  }
}
.p-cast_comment__header::before {
  content: "";
  width: 100%;
  height: 0.1rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.4);
  border-left: 0.8rem solid var(--color-white);
  border-right: 0.8rem solid var(--color-white);
  opacity: 0;
  -webkit-clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  transition: opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1) 0.6s, -webkit-clip-path 0s linear 1s;
  transition: clip-path 0s linear 1s, opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1) 0.6s;
  transition: clip-path 0s linear 1s, opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1) 0.6s, -webkit-clip-path 0s linear 1s;
}
.is-open .p-cast_comment__header::before {
  opacity: 1;
  -webkit-clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  transition: opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1) 0.6s, -webkit-clip-path 1s cubic-bezier(0.5, 1, 0.89, 1) 0.6s;
  transition: clip-path 1s cubic-bezier(0.5, 1, 0.89, 1) 0.6s, opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1) 0.6s;
  transition: clip-path 1s cubic-bezier(0.5, 1, 0.89, 1) 0.6s, opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1) 0.6s, -webkit-clip-path 1s cubic-bezier(0.5, 1, 0.89, 1) 0.6s;
}
.p-cast_comment__chara {
  display: block;
  position: relative;
  opacity: 0;
  transform: translateX(-1rem);
  transition: transform 0s linear 0.8s, opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1) 0.5s;
}
.is-open .p-cast_comment__chara {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.5s, opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1) 0.5s;
}
.p-cast_comment__chara-main {
  display: block;
  position: relative;
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-cast_comment__chara-main {
    font-size: 3rem;
    font-weight: 500;
  }
}
.p-cast_comment__chara-sub {
  display: block;
  position: relative;
  margin-top: 1.5rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 960px) {
  .p-cast_comment__chara-sub {
    margin-top: 1rem;
    margin-right: 1rem;
    font-size: 1.3rem;
  }
}
.p-cast_comment__inner {
  display: block;
  position: relative;
  opacity: 0;
  transform: translateX(-1rem);
  transition: transform 0s linear 0.8s, opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1) 0.5s;
}
.is-open .p-cast_comment__inner {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.7s, opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1) 0.7s;
}
.p-cast_comment__title {
  display: flex;
  align-items: center;
  position: relative;
  padding-bottom: 4rem;
  margin-bottom: 3.5rem;
  font-size: 3rem;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .p-cast_comment__title {
    font-size: 2.4rem;
    padding-bottom: 2.4rem;
    margin-bottom: 2rem;
  }
}
.p-cast_comment__title::before {
  display: inline-block;
  position: relative;
  top: 0.4rem;
  font-size: 0.5em;
  margin-right: 1rem;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  color: var(--color-gray);
}
.p-cast_comment__title::after {
  content: "";
  width: 100%;
  height: 0.1rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.4);
  border-left: 0.8rem solid var(--color-white);
  border-right: 0.8rem solid var(--color-white);
  opacity: 0;
  -webkit-clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  transition: opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1) 0.6s, -webkit-clip-path 0s linear 1s;
  transition: clip-path 0s linear 1s, opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1) 0.6s;
  transition: clip-path 0s linear 1s, opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1) 0.6s, -webkit-clip-path 0s linear 1s;
}
.is-open .p-cast_comment__title::after {
  opacity: 1;
  -webkit-clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  transition: opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1) 0.6s, -webkit-clip-path 1s cubic-bezier(0.5, 1, 0.89, 1) 0.6s;
  transition: clip-path 1s cubic-bezier(0.5, 1, 0.89, 1) 0.6s, opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1) 0.6s;
  transition: clip-path 1s cubic-bezier(0.5, 1, 0.89, 1) 0.6s, opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1) 0.6s, -webkit-clip-path 1s cubic-bezier(0.5, 1, 0.89, 1) 0.6s;
}
.p-cast_comment__text {
  display: block;
  position: relative;
  font-size: 1.7rem;
  line-height: 2.1;
  letter-spacing: 0.15rem;
}
@media screen and (max-width: 960px) {
  .p-cast_comment__text {
    font-size: 1.3rem;
    line-height: 1.8;
  }
}

.p-music {
  display: block;
  position: relative;
  z-index: 0;
}
.p-music__container {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 961px) {
  .p-music__container {
    display: flex;
    justify-content: flex-start;
    padding-left: 2.1rem;
  }
}
@media screen and (max-width: 960px) {
  .p-music__container {
    width: 100%;
    padding-top: 1.2rem;
  }
}
.p-music__header {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-music__header {
    width: 32rem;
    margin-top: -3.5rem;
  }
}
@media screen and (max-width: 960px) {
  .p-music__header {
    display: block;
    position: absolute;
    top: -7.2rem;
    right: 0;
  }
}
.p-music__inner {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-music__inner {
    flex: 1 1 0;
    min-width: 0;
    margin-top: -13rem;
  }
}

.p-music_nav {
  display: block;
  position: relative;
}
.p-music_nav__list {
  display: block;
  position: relative;
}
.p-music_nav__list-item {
  display: block;
  position: relative;
}
.p-music_nav__link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  color: var(--color-gray);
}
.is-music-current .p-music_nav__link {
  color: var(--color-white);
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-music_nav__link {
    transition: color 0.4s var(--ease_out);
  }
  .p-music_nav__link:hover {
    color: var(--color-pink);
  }
}
.p-music_nav__link-text {
  display: block;
  position: relative;
  padding: 0.15rem 1.5rem;
  font-size: 2.2rem;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 800;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 960px) {
  .p-music_nav__link-text {
    padding: 0.15rem 0 0.15rem 1rem;
    font-size: 1.6rem;
  }
}
.p-music_nav__link-text::before {
  content: "";
  width: 1rem;
  height: 1.2rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  border-top: 0.6rem solid transparent;
  border-left: 1rem solid currentColor;
  border-bottom: 0.6rem solid transparent;
  transform: translate(0, -50%);
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .p-music_nav__link-text::before {
    width: 0.6rem;
    height: 0.8rem;
    border-top-width: 0.4rem;
    border-left-width: 0.6rem;
    border-bottom-width: 0.4rem;
  }
}
.is-music-current .p-music_nav__link-text::before {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .p-music_nav__link:hover .p-music_nav__link-text::before {
    animation: flash 0.1s steps(1) 3;
    opacity: 1;
  }
}

.p-music_detail {
  max-width: 1080px;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-music_detail__container {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-music_detail__container {
    flex: 1 1 0;
    min-width: 0;
  }
}
.p-music_detail__header {
  display: block;
  position: relative;
  padding-bottom: 4.6rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 960px) {
  .p-music_detail__header {
    padding-bottom: 2.7rem;
    margin-bottom: 3.4rem;
  }
}
.p-music_detail__header::before {
  content: "";
  width: 100%;
  height: 0.1rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.4);
  border-left: 0.8rem solid var(--color-white);
  border-right: 0.8rem solid var(--color-white);
  opacity: 0;
  -webkit-clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  transition: opacity 0.2s var(--ease_out) 0.6s, -webkit-clip-path 0s linear 1s;
  transition: clip-path 0s linear 1s, opacity 0.2s var(--ease_out) 0.6s;
  transition: clip-path 0s linear 1s, opacity 0.2s var(--ease_out) 0.6s, -webkit-clip-path 0s linear 1s;
}
.is-load .p-music_detail__header::before {
  opacity: 1;
  -webkit-clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  transition: opacity 0.1s var(--ease_out) 0.6s, -webkit-clip-path 1s var(--ease_out) 0.6s;
  transition: clip-path 1s var(--ease_out) 0.6s, opacity 0.1s var(--ease_out) 0.6s;
  transition: clip-path 1s var(--ease_out) 0.6s, opacity 0.1s var(--ease_out) 0.6s, -webkit-clip-path 1s var(--ease_out) 0.6s;
}
.p-music_detail__img {
  display: block;
  position: relative;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 960px) {
  .p-music_detail__img {
    margin-bottom: 2.5rem;
  }
}
.p-music_detail__inner {
  display: block;
  position: relative;
  opacity: 0;
  transform: translateX(-1rem);
  transition: transform 0s linear 0.8s, opacity 0.3s var(--ease_out) 0.5s;
}
.is-load .p-music_detail__inner {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.6s var(--ease_out) 0.7s, opacity 0.3s var(--ease_out) 0.7s;
}
.p-music_detail__title {
  display: block;
  position: relative;
}
.p-music_detail__title-cap {
  display: block;
  position: relative;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
@media screen and (max-width: 960px) {
  .p-music_detail__title-cap {
    font-size: 1.2rem;
  }
}
.p-music_detail__title-main {
  display: block;
  position: relative;
  font-size: 3.6rem;
  line-height: 1.3;
}
@media screen and (max-width: 960px) {
  .p-music_detail__title-main {
    font-size: 2.3rem;
  }
}
.p-music_detail__text {
  display: block;
  position: relative;
  font-size: 1.7rem;
  line-height: 2.1;
  letter-spacing: 0.15rem;
}
@media screen and (max-width: 960px) {
  .p-music_detail__text {
    font-size: 1.3rem;
    line-height: 1.8;
  }
}
.p-music_detail__data {
  display: block;
  position: relative;
}
.p-music_detail__data + .p-music_detail__data {
  margin-top: 5.6rem;
}
@media screen and (max-width: 960px) {
  .p-music_detail__data + .p-music_detail__data {
    margin-top: 4.5rem;
  }
}
.p-music_detail__data-cap {
  display: block;
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1.2rem;
  font-size: 1rem;
  line-height: 0.8;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
@media screen and (max-width: 960px) {
  .p-music_detail__data-cap {
    margin-bottom: 1.5rem;
  }
}
.p-music_detail__data-cap::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-white);
}
.p-music_detail__data-text {
  display: block;
  position: relative;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.15rem;
}
@media screen and (max-width: 960px) {
  .p-music_detail__data-text {
    font-size: 1.3rem;
    line-height: 1.8;
  }
}
.p-music_detail__data-link {
  display: block;
  position: relative;
  margin-top: 2.5rem;
}
@media screen and (max-width: 960px) {
  .p-music_detail__data-link {
    margin-top: 2rem;
  }
}
.p-music_detail__link {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-music_detail__link {
    gap: 2rem 1rem;
  }
}
.p-music_detail__link-item {
  display: block;
  position: relative;
}
.p-music_detail__sns {
  display: block;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .p-music_detail__sns:hover {
    text-decoration: underline;
  }
}
.p-music_detail__sns-text {
  display: block;
  position: relative;
  font-size: 1.3rem;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  line-height: 1;
  padding: 0 1.2rem;
}
@media screen and (max-width: 960px) {
  .p-music_detail__sns-text {
    padding: 0 1rem;
    font-size: 1.1rem;
  }
}
.p-music_detail__sns-text::before {
  content: "(";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 1.2em;
  transform: translate(0, -50%);
}
.p-music_detail__sns-text::after {
  content: ")";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 1.2em;
  transform: translate(0, -50%);
}

.p-special {
  display: block;
  position: relative;
}
.p-special__container {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 961px) {
  .p-special__container {
    padding: 0 1.8rem;
  }
}
@media screen and (max-width: 960px) {
  .p-special__container {
    width: 100%;
  }
}
.p-special__inner {
  display: block;
  position: relative;
}
.p-special__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem 4rem;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-special__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.6rem 2rem;
  }
}
.p-special__list-item {
  display: block;
  position: relative;
}

.p-special_data {
  display: block;
  position: relative;
}
.p-special_data__bg {
  width: calc(100% + 2rem);
  height: calc(100% + 1rem);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  -webkit-clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
  clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
}
@media screen and (max-width: 960px) {
  .p-special_data__bg {
    width: calc(100% + 1rem);
    height: calc(100% + 1rem);
    -webkit-clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
    clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
  }
}
.p-special_data__bg::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, -10% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -10% 0, 0 100%, 0 100%);
  opacity: 0;
  background-color: var(--color-pink);
  transition: opacity 0.2s var(--ease_out), -webkit-clip-path 0s linear 0.2s;
  transition: clip-path 0s linear 0.2s, opacity 0.2s var(--ease_out);
  transition: clip-path 0s linear 0.2s, opacity 0.2s var(--ease_out), -webkit-clip-path 0s linear 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .p-special_data:hover .p-special_data__bg::before {
    opacity: 1;
    -webkit-clip-path: polygon(-10% 0, 100% 0, 110% 100%, 0 100%);
    clip-path: polygon(-10% 0, 100% 0, 110% 100%, 0 100%);
    transition: opacity 0.1s var(--ease_out), -webkit-clip-path 0.3s var(--ease_out);
    transition: clip-path 0.3s var(--ease_out), opacity 0.1s var(--ease_out);
    transition: clip-path 0.3s var(--ease_out), opacity 0.1s var(--ease_out), -webkit-clip-path 0.3s var(--ease_out);
  }
}
.p-special_data__deco {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  transform: scale(0.8);
  transform-origin: left center;
  color: var(--color-gray);
  opacity: 0;
  transition: opacity 0.4s var(--ease_out) 0.8s;
}
@media screen and (max-width: 960px) {
  .p-special_data__deco {
    margin-bottom: 0.3rem;
    font-size: 0.8rem;
  }
}
.is-load .p-special_data__deco {
  opacity: 1;
  transition: opacity 0.4s var(--ease_inout) 0.2s;
}
.is-load .p-special_data__deco > span {
  animation: flash 1.5s steps(1) 0.5s infinite;
}
.p-special_data__thumb {
  display: block;
  position: relative;
}
.p-special_data__thumb-img {
  display: block;
  position: relative;
}
.p-special_data__title {
  display: block;
  position: relative;
  margin-top: 1.5rem;
  font-size: 1.6rem;
  letter-spacing: 0.12rem;
}
@media screen and (max-width: 960px) {
  .p-special_data__title {
    margin-top: 1.4rem;
    font-size: 1.3rem;
  }
}

.p-story {
  display: block;
  position: relative;
}
.p-story__header {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-story__header {
    position: absolute;
    top: 10rem;
    left: calc((min(min(27vw, 34.2rem), 32rem) + 0.2rem) * -1);
  }
}
@media screen and (max-width: 960px) {
  .p-story__header {
    margin-bottom: 3.8rem;
  }
}
.p-story__inner {
  display: block;
  position: relative;
}
.p-story__pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  .p-story__pagination {
    margin: 0 auto;
  }
}

.p-story_nav {
  display: block;
  position: relative;
}
.p-story_nav__list {
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-story_nav__list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.6rem 1.2rem;
  }
}
.p-story_nav__list-item {
  display: block;
  position: relative;
}
.p-story_nav__link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  color: var(--color-gray);
}
.is-current .p-story_nav__link {
  color: var(--color-white);
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-story_nav__link {
    transition: color 0.4s var(--ease_out);
  }
  .p-story_nav__link:hover {
    color: var(--color-pink);
  }
}
.p-story_nav__link-text {
  display: block;
  position: relative;
  padding: 0.15rem 1.5rem;
  font-size: 2.2rem;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 800;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 960px) {
  .p-story_nav__link-text {
    padding: 0.15rem 0 0.15rem 1rem;
    font-size: 1.7rem;
  }
}
.p-story_nav__link-text::before {
  content: "";
  width: 1rem;
  height: 1.2rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  border-top: 0.6rem solid transparent;
  border-left: 1rem solid currentColor;
  border-bottom: 0.6rem solid transparent;
  transform: translate(0, -50%);
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .p-story_nav__link-text::before {
    width: 0.6rem;
    height: 0.8rem;
    border-top-width: 0.4rem;
    border-left-width: 0.6rem;
    border-bottom-width: 0.4rem;
  }
}
.is-current .p-story_nav__link-text::before {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .p-story_nav__link:hover .p-story_nav__link-text::before {
    animation: flash 0.1s steps(1) 3;
    opacity: 1;
  }
}

.p-story_content {
  display: block;
  position: relative;
}
.p-story_content__outline {
  display: block;
  position: relative;
}
.p-story_content__no {
  display: block;
  position: relative;
  margin-bottom: 0.3rem;
  font-size: 1.4rem;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
@media screen and (max-width: 960px) {
  .p-story_content__no {
    margin-bottom: 0;
    font-size: 1.25rem;
  }
}
.p-story_content__title {
  display: block;
  position: relative;
  font-size: 3.4rem;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-story_content__title {
    font-size: 2.6rem;
  }
}
.p-story_content__visual {
  max-width: 78rem;
  display: block;
  position: relative;
  margin-top: 3rem;
}
@media screen and (max-width: 960px) {
  .p-story_content__visual {
    margin-top: 1.2rem;
  }
}
.p-story_content__detail {
  width: 100%;
  display: block;
  position: relative;
  margin-top: 5.5rem;
}
@media screen and (max-width: 960px) {
  .p-story_content__detail {
    margin-top: 3rem;
  }
}
.p-story_content__detail + .p-story_content__detail {
  margin-top: 3.5rem;
}
@media screen and (max-width: 960px) {
  .p-story_content__detail + .p-story_content__detail {
    margin-top: 2.7rem;
  }
}
.p-story_content__detail-deco {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  transform: scale(0.8);
  transform-origin: left center;
  color: transparent;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.5s var(--ease_out);
}
@media screen and (max-width: 960px) {
  .p-story_content__detail-deco {
    margin-bottom: 1.2rem;
    font-size: 0.8rem;
  }
}
.is-load .p-story_content__detail-deco {
  opacity: 1;
  color: var(--color-gray);
  transition: opacity 0.2s var(--ease_out), color 0.2s var(--ease_out) 0.4s;
}
.p-story_content__detail-deco::after {
  content: "";
  width: 50vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-gray);
  transform: translateX(-100%);
}
.is-load .p-story_content__detail-deco::after {
  width: 0;
  transform: translateX(0);
  transition: transform 0.5s var(--ease_out), width 0.6s var(--ease_inout);
}
.is-load .p-story_content__detail-deco > span {
  animation: flash 1.5s steps(1) 0.5s infinite;
}
.p-story_content__detail-main {
  display: block;
  position: relative;
}
.p-story_content__description {
  display: block;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .p-story_content__description {
    font-size: 1.3rem;
  }
}
.p-story_content__staff {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  font-size: 1.5rem;
  letter-spacing: 0;
}
@media screen and (max-width: 960px) {
  .p-story_content__staff {
    font-size: 1.2rem;
  }
}
.p-story_content__staff + .p-story_content__staff {
  margin-top: 0.8rem;
}
@media screen and (max-width: 960px) {
  .p-story_content__staff + .p-story_content__staff {
    margin-top: 0.5rem;
  }
}
.p-story_content__staff-cap {
  min-width: 8.5rem;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-story_content__staff-cap {
    min-width: 7.5rem;
  }
}
.p-story_content__staff-cap::after {
  content: none;
}
.p-story_content__staff-text {
  min-width: 0;
  flex: 1 1 0;
  display: block;
  position: relative;
}
.p-story_content__staff-text::before {
  content: "：";
  font-feature-settings: normal;
  margin-right: 0.5rem;
}
.p-story_content__movie {
  max-width: 39rem;
  display: block;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.p-story_content__movie::before {
  content: "";
  width: 5.8rem;
  height: 5.8rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/btn_play_01.png") no-repeat center/contain;
  z-index: 2;
}
.p-story_content__movie::after {
  content: "";
  width: 5.8rem;
  height: 5.8rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/btn_play_02.png") no-repeat center/contain;
  z-index: 2;
}
@media (hover: hover) and (pointer: fine) {
  .p-story_content__movie::after {
    transition: transform 0.8s var(--ease_inout);
  }
  .p-story_content__movie:hover::after {
    transform: translate(-50%, -50%) rotate(630deg);
  }
}
.p-story_content__movie-img {
  display: block;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .p-story_content__movie-img {
    transition: transform 0.8s var(--ease_inout);
    transform-origin: center bottom;
  }
  .p-story_content__movie:hover .p-story_content__movie-img {
    transform: scale(1.05);
  }
}
.p-story_content__movie-img::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-black);
  opacity: 0.3;
}

.p-story_visual {
  display: block;
  position: relative;
}
.p-story_visual__slide {
  display: block;
  position: relative;
  overflow: hidden;
}
.p-story_visual__list {
  display: flex;
  justify-content: flex-start;
  position: relative;
}
.p-story_visual__list-item {
  width: 100%;
  flex-shrink: 0;
  display: block;
  position: relative;
  margin: 0 auto;
  opacity: 1 !important;
  z-index: 0;
}
.p-story_visual__list-item.is-slide-current {
  z-index: 1;
}
.p-story_visual__img {
  display: block;
  position: relative;
  opacity: 0;
  -webkit-clip-path: polygon(0 0, -50% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -50% 0, 0 100%, 0 100%);
  transition: opacity 0s var(--ease_out) 0.4s, -webkit-clip-path 0s linear 0.4s;
  transition: clip-path 0s linear 0.4s, opacity 0s var(--ease_out) 0.4s;
  transition: clip-path 0s linear 0.4s, opacity 0s var(--ease_out) 0.4s, -webkit-clip-path 0s linear 0.4s;
}
.is-slide-current .p-story_visual__img {
  opacity: 1;
  -webkit-clip-path: polygon(-50% 0, 100% 0, 150% 100%, 0 100%);
  clip-path: polygon(-50% 0, 100% 0, 150% 100%, 0 100%);
  transition: opacity 0.1s var(--ease_out), -webkit-clip-path 0.4s var(--ease_out);
  transition: clip-path 0.4s var(--ease_out), opacity 0.1s var(--ease_out);
  transition: clip-path 0.4s var(--ease_out), opacity 0.1s var(--ease_out), -webkit-clip-path 0.4s var(--ease_out);
}
.p-story_visual__img img {
  display: block;
  position: relative;
  transform: scale(1.05);
  transition: transform 0s linear 0.4s;
}
.is-slide-current .p-story_visual__img img {
  transform: scale(1);
  transition: transform 1s var(--ease_out);
}
.p-story_visual__nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  margin-top: 0.5rem;
}
.p-story_visual__nav-item {
  display: block;
  position: relative;
}
.p-story_visual__btn {
  display: block;
  position: relative;
  filter: grayscale(1);
  transition: filter 0.4s var(--ease_out);
}
.p-story_visual__btn.is-current {
  filter: grayscale(0);
}
@media (hover: hover) and (pointer: fine) {
  .p-story_visual__btn:hover {
    filter: grayscale(0);
  }
}

.p-movie {
  display: block;
  position: relative;
}
.p-movie__container {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 961px) {
  .p-movie__container {
    padding: 0 1.8rem;
  }
}
@media screen and (max-width: 960px) {
  .p-movie__container {
    width: 100%;
  }
}
.p-movie__inner {
  display: block;
  position: relative;
}
.p-movie__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem 4rem;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-movie__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.6rem 2rem;
  }
}
.p-movie__list-item {
  display: block;
  position: relative;
}

.p-movie_data {
  display: block;
  position: relative;
}
.p-movie_data__bg {
  width: calc(100% + 2rem);
  height: calc(100% + 1rem);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  -webkit-clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
  clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
}
@media screen and (max-width: 960px) {
  .p-movie_data__bg {
    width: calc(100% + 1rem);
    height: calc(100% + 1rem);
    -webkit-clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
    clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
  }
}
.p-movie_data__bg::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, -10% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -10% 0, 0 100%, 0 100%);
  opacity: 0;
  background-color: var(--color-pink);
  transition: opacity 0.2s var(--ease_out), -webkit-clip-path 0s linear 0.2s;
  transition: clip-path 0s linear 0.2s, opacity 0.2s var(--ease_out);
  transition: clip-path 0s linear 0.2s, opacity 0.2s var(--ease_out), -webkit-clip-path 0s linear 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .p-movie_data:hover .p-movie_data__bg::before {
    opacity: 1;
    -webkit-clip-path: polygon(-10% 0, 100% 0, 110% 100%, 0 100%);
    clip-path: polygon(-10% 0, 100% 0, 110% 100%, 0 100%);
    transition: opacity 0.1s var(--ease_out), -webkit-clip-path 0.3s var(--ease_out);
    transition: clip-path 0.3s var(--ease_out), opacity 0.1s var(--ease_out);
    transition: clip-path 0.3s var(--ease_out), opacity 0.1s var(--ease_out), -webkit-clip-path 0.3s var(--ease_out);
  }
}
.p-movie_data__deco {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  transform: scale(0.8);
  transform-origin: left center;
  color: var(--color-gray);
  opacity: 0;
  transition: opacity 0.4s var(--ease_out) 0.8s;
}
@media screen and (max-width: 960px) {
  .p-movie_data__deco {
    margin-bottom: 0.3rem;
    font-size: 0.8rem;
  }
}
.is-load .p-movie_data__deco {
  opacity: 1;
  transition: opacity 0.4s var(--ease_inout) 0.2s;
}
.is-load .p-movie_data__deco > span {
  animation: flash 1.5s steps(1) 0.5s infinite;
}
.p-movie_data__thumb {
  display: block;
  position: relative;
  overflow: hidden;
}
.p-movie_data__thumb::before {
  content: "";
  width: 5.8rem;
  height: 5.8rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/btn_play_01.png") no-repeat center/contain;
  z-index: 2;
}
.p-movie_data__thumb::after {
  content: "";
  width: 5.8rem;
  height: 5.8rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/btn_play_02.png") no-repeat center/contain;
  z-index: 2;
}
@media (hover: hover) and (pointer: fine) {
  .p-movie_data__thumb::after {
    transition: transform 0.8s var(--ease_inout);
  }
  .p-movie_data:hover .p-movie_data__thumb::after {
    transform: translate(-50%, -50%) rotate(630deg);
  }
}
.p-movie_data__thumb-img {
  display: block;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .p-movie_data__thumb-img {
    transition: transform 0.8s var(--ease_inout);
    transform-origin: center bottom;
  }
  .p-movie_data:hover .p-movie_data__thumb-img {
    transform: scale(1.05);
  }
}
.p-movie_data__thumb-img::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-black);
  opacity: 0.3;
}
@media (hover: hover) and (pointer: fine) {
  .p-movie_data__thumb-img::before {
    transition: opacity 0.8s var(--ease_inout);
  }
  .p-movie_data:hover .p-movie_data__thumb-img::before {
    opacity: 0.1;
  }
}
.p-movie_data__title {
  display: block;
  position: relative;
  margin-top: 1.5rem;
  font-size: 1.6rem;
  letter-spacing: 0.12rem;
}
@media screen and (max-width: 960px) {
  .p-movie_data__title {
    margin-top: 1.4rem;
    font-size: 1.3rem;
  }
}

.p-bddvd {
  display: block;
  position: relative;
}
.p-bddvd__header {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-bddvd__header {
    position: absolute;
    top: 18rem;
    left: calc((min(min(27vw, 34.2rem), 32rem) + 0.2rem) * -1);
  }
}
@media screen and (max-width: 960px) {
  .p-bddvd__header {
    margin-bottom: 3.8rem;
  }
}
.p-bddvd__inner {
  display: block;
  position: relative;
}
.p-bddvd__pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  .p-bddvd__pagination {
    margin: 0 auto;
  }
}

.p-bddvd_nav {
  display: block;
  position: relative;
}
.p-bddvd_nav__list {
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-bddvd_nav__list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.6rem 1.2rem;
  }
}
.p-bddvd_nav__list-item {
  display: block;
  position: relative;
}
.p-bddvd_nav__link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  color: var(--color-gray);
}
.is-current .p-bddvd_nav__link {
  color: var(--color-white);
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-bddvd_nav__link {
    transition: color 0.4s var(--ease_out);
  }
  .p-bddvd_nav__link:hover {
    color: var(--color-pink);
  }
}
.p-bddvd_nav__link-text {
  display: block;
  position: relative;
  padding: 0.15rem 1.5rem;
  font-size: 2.2rem;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 800;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 960px) {
  .p-bddvd_nav__link-text {
    padding: 0.15rem 0 0.15rem 1rem;
    font-size: 1.7rem;
  }
}
.p-bddvd_nav__link-text::before {
  content: "";
  width: 1rem;
  height: 1.2rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  border-top: 0.6rem solid transparent;
  border-left: 1rem solid currentColor;
  border-bottom: 0.6rem solid transparent;
  transform: translate(0, -50%);
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .p-bddvd_nav__link-text::before {
    width: 0.6rem;
    height: 0.8rem;
    border-top-width: 0.4rem;
    border-left-width: 0.6rem;
    border-bottom-width: 0.4rem;
  }
}
.is-current .p-bddvd_nav__link-text::before {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .p-bddvd_nav__link:hover .p-bddvd_nav__link-text::before {
    animation: flash 0.1s steps(1) 3;
    opacity: 1;
  }
}

.p-bddvd_content {
  display: block;
  position: relative;
}
.p-bddvd_content__header {
  display: block;
  position: relative;
}
.p-bddvd_content__inner {
  display: block;
  position: relative;
  margin-top: 5rem;
  padding-top: 5rem;
}
@media screen and (max-width: 960px) {
  .p-bddvd_content__inner {
    margin-top: 2.5rem;
    padding-top: 3.5rem;
  }
}
.p-bddvd_content__inner::before {
  content: "";
  width: 100%;
  height: 0.1rem;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.4);
  border-left: 0.8rem solid var(--color-white);
  border-right: 0.8rem solid var(--color-white);
  opacity: 0;
  -webkit-clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  transition: opacity 0.2s var(--ease_out) 0.6s, -webkit-clip-path 0s linear 1s;
  transition: clip-path 0s linear 1s, opacity 0.2s var(--ease_out) 0.6s;
  transition: clip-path 0s linear 1s, opacity 0.2s var(--ease_out) 0.6s, -webkit-clip-path 0s linear 1s;
}
.is-load .p-bddvd_content__inner::before {
  opacity: 1;
  -webkit-clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  transition: opacity 0.1s var(--ease_out) 0.6s, -webkit-clip-path 1s var(--ease_out) 0.6s;
  transition: clip-path 1s var(--ease_out) 0.6s, opacity 0.1s var(--ease_out) 0.6s;
  transition: clip-path 1s var(--ease_out) 0.6s, opacity 0.1s var(--ease_out) 0.6s, -webkit-clip-path 1s var(--ease_out) 0.6s;
}
.p-bddvd_content__detail {
  width: 100%;
  display: block;
  position: relative;
  margin-top: 5.5rem;
}
@media screen and (max-width: 960px) {
  .p-bddvd_content__detail {
    margin-top: 3rem;
  }
}
.p-bddvd_content__detail:first-child {
  margin-top: 0;
}
.p-bddvd_content__detail + .p-bddvd_content__detail {
  margin-top: 3.8rem;
}
@media screen and (max-width: 960px) {
  .p-bddvd_content__detail + .p-bddvd_content__detail {
    margin-top: 2.7rem;
  }
}
.p-bddvd_content__detail-deco {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  transform: scale(0.8);
  transform-origin: left center;
  color: transparent;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.5s var(--ease_out);
}
@media screen and (max-width: 960px) {
  .p-bddvd_content__detail-deco {
    margin-bottom: 1.2rem;
    font-size: 0.8rem;
  }
}
.is-load .p-bddvd_content__detail-deco {
  opacity: 1;
  color: var(--color-gray);
  transition: opacity 0.2s var(--ease_out), color 0.2s var(--ease_out) 0.4s;
}
.p-bddvd_content__detail-deco::after {
  content: "";
  width: 50vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-gray);
  transform: translateX(-100%);
}
.is-load .p-bddvd_content__detail-deco::after {
  width: 0;
  transform: translateX(0);
  transition: transform 0.5s var(--ease_out), width 0.6s var(--ease_inout);
}
.is-load .p-bddvd_content__detail-deco > span {
  animation: flash 1.5s steps(1) 0.5s infinite;
}
.p-bddvd_content__detail-main {
  display: block;
  position: relative;
}
.p-bddvd_content__package {
  display: block;
  position: relative;
}
.p-bddvd_content__package-cap {
  display: block;
  position: relative;
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-bddvd_content__package-cap {
    font-size: 1.4rem;
  }
}
.p-bddvd_content__package-text {
  display: block;
  position: relative;
  font-size: 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .p-bddvd_content__package-text {
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
  }
}
.p-bddvd_content__package-note {
  display: block;
  position: relative;
  margin-top: 1.2rem;
  font-size: 1.2rem;
}
@media screen and (max-width: 960px) {
  .p-bddvd_content__package-note {
    margin-top: 0.8rem;
    font-size: 1rem;
  }
}
.p-bddvd_content__movie {
  max-width: 39rem;
  display: block;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.p-bddvd_content__movie::before {
  content: "";
  width: 5.8rem;
  height: 5.8rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/btn_play_01.png") no-repeat center/contain;
  z-index: 2;
}
.p-bddvd_content__movie::after {
  content: "";
  width: 5.8rem;
  height: 5.8rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/btn_play_02.png") no-repeat center/contain;
  z-index: 2;
}
@media (hover: hover) and (pointer: fine) {
  .p-bddvd_content__movie::after {
    transition: transform 0.8s var(--ease_inout);
  }
  .p-bddvd_content__movie:hover::after {
    transform: translate(-50%, -50%) rotate(630deg);
  }
}
.p-bddvd_content__movie-img {
  display: block;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .p-bddvd_content__movie-img {
    transition: transform 0.8s var(--ease_inout);
    transform-origin: center bottom;
  }
  .p-bddvd_content__movie:hover .p-bddvd_content__movie-img {
    transform: scale(1.05);
  }
}
.p-bddvd_content__movie-img::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-black);
  opacity: 0.3;
}

.p-bddvd_outline {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-bddvd_outline {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
.p-bddvd_outline__header {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-bddvd_outline__header {
    width: 50%;
    max-width: 39rem;
    margin-right: 4rem;
  }
}
@media screen and (max-width: 960px) {
  .p-bddvd_outline__header {
    margin-bottom: 2.8rem;
  }
}
.p-bddvd_outline__link {
  display: block;
  position: relative;
  margin-top: 1.4rem;
}
@media screen and (max-width: 960px) {
  .p-bddvd_outline__link {
    margin-top: 1rem;
  }
}
.p-bddvd_outline__link-item {
  display: block;
  position: relative;
}
.p-bddvd_outline__link-item + .p-bddvd_outline__link-item {
  margin-top: 1rem;
}
.p-bddvd_outline__btn {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  color: var(--color-black);
  background-color: var(--color-white);
  -webkit-clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
  clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
}
@media screen and (max-width: 960px) {
  .p-bddvd_outline__btn {
    -webkit-clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
    clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-bddvd_outline__btn {
    transition: color 0.4s var(--ease_out);
  }
  .p-bddvd_outline__btn:hover {
    color: var(--color-white);
  }
}
.p-bddvd_outline__btn::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, -10% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -10% 0, 0 100%, 0 100%);
  opacity: 0;
  background-color: var(--color-pink);
  transition: opacity 0.2s var(--ease_out), -webkit-clip-path 0s linear 0.2s;
  transition: clip-path 0s linear 0.2s, opacity 0.2s var(--ease_out);
  transition: clip-path 0s linear 0.2s, opacity 0.2s var(--ease_out), -webkit-clip-path 0s linear 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .p-bddvd_outline__btn:hover::before {
    opacity: 1;
    -webkit-clip-path: polygon(-10% 0, 100% 0, 110% 100%, 0 100%);
    clip-path: polygon(-10% 0, 100% 0, 110% 100%, 0 100%);
    transition: opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1), -webkit-clip-path 0.2s var(--ease_out);
    transition: clip-path 0.2s var(--ease_out), opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1);
    transition: clip-path 0.2s var(--ease_out), opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1), -webkit-clip-path 0.2s var(--ease_out);
  }
}
.p-bddvd_outline__btn-text {
  display: block;
  position: relative;
  padding: 1.7rem 2rem;
  font-size: 1.4rem;
  letter-spacing: 0.05rem;
  font-weight: 500;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-bddvd_outline__btn-text {
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
  }
}
.p-bddvd_outline__btn-text::after {
  width: 0.9rem;
  height: 0.9rem;
  display: inline-block;
  position: relative;
  top: 0.25em;
  vertical-align: top;
  margin-left: 0.4em;
  background: url("../img/icon_blank.svg") no-repeat center/contain;
  filter: invert(1);
}
@media screen and (max-width: 960px) {
  .p-bddvd_outline__btn-text::after {
    width: 0.8rem;
  }
}
.p-bddvd_outline__btn[href][target=_blank] .p-bddvd_outline__btn-text::after {
  content: "";
}
@media (hover: hover) and (pointer: fine) {
  .p-bddvd_outline__btn-text::after {
    transition: filter 0.4s var(--ease_out);
  }
  .p-bddvd_outline__btn:hover .p-bddvd_outline__btn-text::after {
    filter: invert(0);
  }
}
.p-bddvd_outline__inner {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-bddvd_outline__inner {
    flex: 1 1 0;
    min-width: 0;
    padding: 2rem 0 8rem;
  }
}
.p-bddvd_outline__title {
  display: block;
  position: relative;
  font-size: 3.6rem;
  line-height: 1.5;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-bddvd_outline__title {
    font-size: 2.4rem;
  }
}
.p-bddvd_outline__info {
  width: 100%;
  display: block;
  position: relative;
  margin-top: 3rem;
}
@media screen and (max-width: 960px) {
  .p-bddvd_outline__info {
    margin-top: 1.8rem;
  }
}
.p-bddvd_outline__info + .p-bddvd_outline__info {
  margin-top: 3.5rem;
}
@media screen and (max-width: 960px) {
  .p-bddvd_outline__info + .p-bddvd_outline__info {
    margin-top: 2.7rem;
  }
}
.p-bddvd_outline__info-deco {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  transform: scale(0.8);
  transform-origin: left center;
  color: transparent;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.5s var(--ease_out);
}
@media screen and (max-width: 960px) {
  .p-bddvd_outline__info-deco {
    margin-bottom: 1rem;
    font-size: 0.8rem;
  }
}
.is-load .p-bddvd_outline__info-deco {
  opacity: 1;
  color: var(--color-gray);
  transition: opacity 0.2s var(--ease_out), color 0.2s var(--ease_out) 0.4s;
}
.p-bddvd_outline__info-deco::after {
  content: "";
  width: 50vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-gray);
  transform: translateX(-100%);
}
.is-load .p-bddvd_outline__info-deco::after {
  width: 0;
  transform: translateX(0);
  transition: transform 0.5s var(--ease_out), width 0.6s var(--ease_inout);
}
.is-load .p-bddvd_outline__info-deco > span {
  animation: flash 1.5s steps(1) 0.5s infinite;
}
.p-bddvd_outline__info-main {
  display: block;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .p-bddvd_outline__info-main {
    font-size: 1.3rem;
  }
}
.p-bddvd_outline__info-main + .p-bddvd_outline__info-main {
  margin-top: 0.5em;
}
.p-bddvd_outline__info-main small {
  font-size: 0.8em;
}

.p-bddvd_special {
  display: block;
  position: relative;
}
.p-bddvd_special + .p-bddvd_special {
  margin-top: 11.5rem;
}
@media screen and (max-width: 960px) {
  .p-bddvd_special + .p-bddvd_special {
    margin-top: 7rem;
  }
}
.p-bddvd_special__header {
  display: block;
  position: relative;
  margin-bottom: 3.8rem;
}
@media screen and (max-width: 960px) {
  .p-bddvd_special__header {
    margin-bottom: 2.6rem;
  }
}
.p-bddvd_special__title {
  display: block;
  position: relative;
  font-size: 3.2rem;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .p-bddvd_special__title {
    font-size: 2rem;
  }
}
.p-bddvd_special__inner {
  display: block;
  position: relative;
}
.p-bddvd_special__common {
  display: block;
  position: relative;
}
.p-bddvd_special__common-item {
  display: block;
  position: relative;
}
.p-bddvd_special__common-item + .p-bddvd_special__common-item {
  margin-top: 5rem;
}
@media screen and (max-width: 960px) {
  .p-bddvd_special__common-item + .p-bddvd_special__common-item {
    margin-top: 3.5rem;
  }
}
.p-bddvd_special__shop {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-bddvd_special__shop {
    padding-right: 2rem;
  }
}
.p-bddvd_special__shop-item {
  display: block;
  position: relative;
}
.p-bddvd_special__shop-item + .p-bddvd_special__shop-item {
  margin-top: 5rem;
}
.p-bddvd_special__note {
  display: block;
  position: relative;
  margin-top: 3rem;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-bddvd_special__note {
    margin-top: 1.8rem;
    font-size: 1rem;
    letter-spacing: 0.05rem;
  }
}

.p-bddvd_special_common {
  display: block;
  position: relative;
  padding-bottom: 5rem;
}
@media screen and (min-width: 961px) {
  .p-bddvd_special_common {
    display: flex;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 960px) {
  .p-bddvd_special_common {
    padding-bottom: 3.5rem;
  }
}
.p-bddvd_special_common::before {
  content: "";
  width: 100%;
  height: 0.1rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.4);
  border-left: 0.8rem solid var(--color-white);
  border-right: 0.8rem solid var(--color-white);
  opacity: 0;
  -webkit-clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  transition: opacity 0.2s var(--ease_out) 0.6s, -webkit-clip-path 0s linear 1s;
  transition: clip-path 0s linear 1s, opacity 0.2s var(--ease_out) 0.6s;
  transition: clip-path 0s linear 1s, opacity 0.2s var(--ease_out) 0.6s, -webkit-clip-path 0s linear 1s;
}
.is-load .p-bddvd_special_common::before {
  opacity: 1;
  -webkit-clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  transition: opacity 0.1s var(--ease_out) 0.6s, -webkit-clip-path 1s var(--ease_out) 0.6s;
  transition: clip-path 1s var(--ease_out) 0.6s, opacity 0.1s var(--ease_out) 0.6s;
  transition: clip-path 1s var(--ease_out) 0.6s, opacity 0.1s var(--ease_out) 0.6s, -webkit-clip-path 1s var(--ease_out) 0.6s;
}
.p-bddvd_special_common__header {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-bddvd_special_common__header {
    max-width: 36rem;
    margin-right: 4.2rem;
  }
}
@media screen and (max-width: 960px) {
  .p-bddvd_special_common__header {
    margin-bottom: 2rem;
  }
}
.p-bddvd_special_common__inner {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-bddvd_special_common__inner {
    flex: 1 1 0;
    min-width: 0;
  }
}
.p-bddvd_special_common__title {
  display: block;
  position: relative;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .p-bddvd_special_common__title {
    font-size: 1.6rem;
  }
}
.p-bddvd_special_common__text {
  display: block;
  position: relative;
  margin-top: 2rem;
  font-size: 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .p-bddvd_special_common__text {
    margin-top: 1.5rem;
    font-size: 1.3rem;
  }
}
.p-bddvd_special_common__shop {
  width: 100%;
  display: block;
  position: relative;
  margin-top: 2.5rem;
}
@media screen and (max-width: 960px) {
  .p-bddvd_special_common__shop {
    margin-top: 2rem;
  }
}
.p-bddvd_special_common__shop:first-child {
  margin-top: 0;
}
.p-bddvd_special_common__shop + .p-bddvd_special_common__shop {
  margin-top: 3.8rem;
}
@media screen and (max-width: 960px) {
  .p-bddvd_special_common__shop + .p-bddvd_special_common__shop {
    margin-top: 2.7rem;
  }
}
.p-bddvd_special_common__shop-deco {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  transform: scale(0.8);
  transform-origin: left center;
  color: transparent;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.5s var(--ease_out);
}
@media screen and (max-width: 960px) {
  .p-bddvd_special_common__shop-deco {
    margin-bottom: 1.2rem;
    font-size: 0.8rem;
  }
}
.is-load .p-bddvd_special_common__shop-deco {
  opacity: 1;
  color: var(--color-gray);
  transition: opacity 0.2s var(--ease_out), color 0.2s var(--ease_out) 0.4s;
}
.p-bddvd_special_common__shop-deco::after {
  content: "";
  width: 50vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-gray);
  transform: translateX(-100%);
}
.is-load .p-bddvd_special_common__shop-deco::after {
  width: 0;
  transform: translateX(0);
  transition: transform 0.5s var(--ease_out), width 0.6s var(--ease_inout);
}
.is-load .p-bddvd_special_common__shop-deco > span {
  animation: flash 1.5s steps(1) 0.5s infinite;
}
.p-bddvd_special_common__shop-main {
  display: block;
  position: relative;
  font-size: 1.5rem;
  line-height: 1.7;
}
@media screen and (max-width: 960px) {
  .p-bddvd_special_common__shop-main {
    font-size: 1.1rem;
  }
}
.p-bddvd_special_common__shop-main + .p-bddvd_special_common__shop-main {
  margin-top: 0.5em;
}

.p-bddvd_special_shop {
  display: block;
  position: relative;
}
.p-bddvd_special_shop__header {
  display: block;
  position: relative;
  margin-bottom: 2.2rem;
}
@media screen and (max-width: 960px) {
  .p-bddvd_special_shop__header {
    margin-bottom: 1rem;
  }
}
.p-bddvd_special_shop__title {
  display: block;
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  letter-spacing: 0;
  text-align: center;
  color: var(--color-black);
  background-color: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-bddvd_special_shop__title {
    padding: 0.3rem 1rem;
  }
}
.p-bddvd_special_shop__inner {
  display: block;
  position: relative;
}
.p-bddvd_special_shop__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-bddvd_special_shop__list {
    gap: 1rem;
  }
}
.p-bddvd_special_shop__list-item {
  min-width: 0;
  display: block;
  position: relative;
}
.p-bddvd_special_shop__note {
  display: block;
  position: relative;
  margin-top: 3rem;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-bddvd_special_shop__note {
    margin-top: 1.8rem;
    font-size: 1rem;
    letter-spacing: 0.05rem;
  }
}

.p-bddvd_special_shop_data {
  height: 100%;
  display: block;
  position: relative;
  padding: 1.5rem 1.5rem 2.8rem;
}
@media screen and (min-width: 961px) {
  .p-bddvd_special_shop_data {
    height: 100%;
  }
}
@media screen and (max-width: 960px) {
  .p-bddvd_special_shop_data {
    padding: 1rem 1rem 1.5rem;
  }
}
.p-bddvd_special_shop_data::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.1rem solid var(--color-white);
  opacity: 0.2;
}
.p-bddvd_special_shop_data__thumb {
  display: block;
  position: relative;
  margin-bottom: 1.8rem;
}
@media screen and (max-width: 960px) {
  .p-bddvd_special_shop_data__thumb {
    margin-bottom: 1.5rem;
  }
}
.p-bddvd_special_shop_data__thumb-img {
  display: block;
  position: relative;
}
.p-bddvd_special_shop_data__title {
  display: block;
  position: relative;
}
.p-bddvd_special_shop_data__title-cap {
  display: block;
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
@media screen and (max-width: 960px) {
  .p-bddvd_special_shop_data__title-cap {
    font-size: 1rem;
    letter-spacing: 0.05rem;
  }
}
.p-bddvd_special_shop_data__title-text {
  display: block;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .p-bddvd_special_shop_data__title-text {
    margin-top: 0.2rem;
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
  }
}
.p-bddvd_special_shop_data__cover {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}
.p-bddvd_special_shop_data__cover-deco {
  width: 1rem;
  height: 1rem;
  display: block;
  position: absolute;
  border: 0.1rem solid transparent;
}
@media screen and (max-width: 960px) {
  .p-bddvd_special_shop_data__cover-deco {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.p-bddvd_special_shop_data__cover-deco.-deco1 {
  top: 0;
  left: 0;
  border-top-color: var(--color-white);
  border-left-color: var(--color-white);
}
.p-bddvd_special_shop_data__cover-deco.-deco2 {
  top: 0;
  right: 0;
  border-top-color: var(--color-white);
  border-right-color: var(--color-white);
}
.p-bddvd_special_shop_data__cover-deco.-deco3 {
  bottom: 0;
  right: 0;
  border-bottom-color: var(--color-white);
  border-right-color: var(--color-white);
}
.p-bddvd_special_shop_data__cover-deco.-deco4 {
  bottom: 0;
  left: 0;
  border-bottom-color: var(--color-white);
  border-left-color: var(--color-white);
}

.p-hero {
  display: block;
  position: relative;
  background-color: var(--color-black);
}
@media screen and (min-width: 1800px) {
  .p-hero:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: url("../img/main/img_main_cover.jpg") no-repeat center/cover;
    opacity: 0.5;
  }
}
.p-hero__container {
  width: 100%;
  max-width: 1800px;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-hero__sns {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 2.5rem) 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 2.5rem) 100%, 0% 100%);
}
@media screen and (max-width: 960px) {
  .p-hero__sns {
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 1.5rem) 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, calc(100% - 1.5rem) 100%, 0% 100%);
  }
}
.p-hero__sns::before {
  content: "";
  width: 0;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-cyan);
  z-index: -1;
  opacity: 1;
}
.is-load .p-hero__sns::before {
  width: 100%;
  opacity: 0;
  transition: width 0.5s var(--ease_out) 1.5s, opacity 0.1s linear 2.3s;
}
.p-hero__sns::after {
  content: "";
  width: 0;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-pink);
  z-index: -1;
}
.is-load .p-hero__sns::after {
  width: 100%;
  transition: width 0.5s var(--ease_inout) 1.5s;
}
.p-hero__sns-link {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 0.8rem 4rem 0.8rem 2.2rem;
  color: var(--color-black);
  opacity: 0;
  transform: translateX(-1rem);
}
@media screen and (max-width: 960px) {
  .p-hero__sns-link {
    padding: 0.4rem 2rem 0.4rem 1.2rem;
  }
}
.is-load .p-hero__sns-link {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.5s var(--ease_inout) 1.5s, transform 0.5s var(--ease_inout) 1.5s, background-color 0.4s var(--ease_out);
}
.p-hero__sns-link::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  opacity: 0;
  background-color: var(--color-purple);
  transition: opacity 0.2s var(--ease_out), -webkit-clip-path 0s linear 0.2s;
  transition: clip-path 0s linear 0.2s, opacity 0.2s var(--ease_out);
  transition: clip-path 0s linear 0.2s, opacity 0.2s var(--ease_out), -webkit-clip-path 0s linear 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .p-hero__sns:hover .p-hero__sns-link::before {
    opacity: 1;
    -webkit-clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
    clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
    transition: opacity 0.1s var(--ease_out), -webkit-clip-path 0.5s var(--ease_out);
    transition: clip-path 0.5s var(--ease_out), opacity 0.1s var(--ease_out);
    transition: clip-path 0.5s var(--ease_out), opacity 0.1s var(--ease_out), -webkit-clip-path 0.5s var(--ease_out);
  }
}
.p-hero__sns-icon {
  width: 1.8rem;
  display: block;
  position: relative;
  margin-right: 1.3rem;
}
@media screen and (max-width: 960px) {
  .p-hero__sns-icon {
    width: 1.4rem;
    margin-right: 0.3rem;
  }
}
.p-hero__sns-text {
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 800;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 960px) {
  .p-hero__sns-text {
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
  }
}
.p-hero__kv {
  display: block;
  position: relative;
  z-index: 0;
}
.p-hero__kv-item {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0s linear 1s, visibility 0s linear 1s;
}
.p-hero__kv-item.is-current {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transition: opacity 1s var(--ease_out), visibility 1s var(--ease_out);
}
.p-hero__nav {
  display: block;
  z-index: 1;
}
@media screen and (min-width: 961px) {
  .p-hero__nav {
    width: 14rem;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 960px) {
  .p-hero__nav {
    width: 100%;
    max-width: 40rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
.p-hero__btn {
  display: block;
  position: relative;
  cursor: pointer;
}
.p-hero__btn-base {
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-hero__btn-base {
    height: 6.25rem;
  }
  .p-hero__btn-base img {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.p-hero__btn-base::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/main/bg_ptn_thumb-off.png") repeat left top/0.3rem auto;
}
.p-hero__btn-cover {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s var(--ease_out);
}
.is-current .p-hero__btn-cover {
  opacity: 1;
}
@media screen and (max-width: 960px) {
  .p-hero__btn-cover {
    height: 6.25rem;
  }
  .p-hero__btn-cover img {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-hero__btn:hover .p-hero__btn-cover {
    opacity: 1;
  }
}
.p-hero__btn-cover::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.--kv2 .p-hero__btn-cover::before {
  background: linear-gradient(to right, rgba(0, 103, 186, 0.5) 0%, rgba(0, 221, 255, 0.25) 100%);
}
.--kv1 .p-hero__btn-cover::before {
  background: linear-gradient(to right, rgba(110, 39, 164, 0.5) 0%, rgba(142, 86, 248, 0.25) 100%);
}
.p-hero__btn-cap {
  display: block;
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  font-size: 1rem;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.1rem;
  font-weight: 400;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .p-hero__btn-cap {
    font-size: 0.8rem;
    bottom: 0.2rem;
  }
}
.p-hero__catch {
  position: absolute;
}
.--kv1 .p-hero__catch {
  width: 10%;
  top: 6.3%;
  right: 7.2%;
}
@media screen and (max-width: 960px) {
  .--kv1 .p-hero__catch {
    width: 14%;
    top: 12%;
    right: 5.6%;
  }
}
.--kv2 .p-hero__catch {
  width: 18%;
  top: 6.3%;
  right: 0.2%;
}
@media screen and (max-width: 960px) {
  .--kv2 .p-hero__catch {
    width: 25%;
    top: 10%;
    right: 0.2%;
  }
}
.--kv3 .p-hero__catch {
  width: 17.5%;
  position: absolute;
  top: 1.4%;
  left: 50%;
  transform: translate(-50%, 0);
  opacity: 0;
  transition: opacity 0s linear 1s, visibility 0s linear 1s;
}
@media screen and (max-width: 960px) {
  .--kv3 .p-hero__catch {
    top: 1.4%;
  }
}
.is-load .--kv3 .p-hero__catch {
  opacity: 1;
  transition: opacity 1.2s var(--ease_inout) 0.3s;
}
.p-hero__catch-text {
  display: block;
  position: relative;
}
.p-hero__inner {
  width: 90%;
  display: block;
  position: absolute;
  bottom: 8.8%;
  left: 50%;
  transform: translate(-50%, 20%);
}
@media screen and (max-width: 960px) {
  .p-hero__inner {
    bottom: 8%;
  }
}
@media screen and (max-width: 960px) {
  .--kv3 .p-hero__inner {
    bottom: 9.5%;
  }
}
.--kv4 .p-hero__inner {
  width: 90.5%;
  transform: translate(-50%, 0%);
  bottom: 3.4%;
}
.p-hero__lead {
  display: block;
  position: relative;
  opacity: 0;
  -webkit-clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
}
.--kv3 .p-hero__lead {
  width: 82.5%;
  margin: 0 auto 2%;
}
@media screen and (max-width: 960px) {
  .--kv3 .p-hero__lead {
    width: 90%;
    margin-bottom: 1%;
  }
}
.is-load .p-hero__lead {
  opacity: 1;
  -webkit-clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  transition: opacity 0.1s var(--ease_out) 0.6s, -webkit-clip-path 0.5s var(--ease_out) 0.6s;
  transition: clip-path 0.5s var(--ease_out) 0.6s, opacity 0.1s var(--ease_out) 0.6s;
  transition: clip-path 0.5s var(--ease_out) 0.6s, opacity 0.1s var(--ease_out) 0.6s, -webkit-clip-path 0.5s var(--ease_out) 0.6s;
}
.p-hero__title {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  font-size: 0;
  opacity: 0;
  -webkit-clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
}
@media screen and (max-width: 960px) {
  .p-hero__title {
    width: 81%;
  }
}
.--kv3 .p-hero__title {
  width: 64%;
  left: 0.5%;
}
@media screen and (max-width: 960px) {
  .--kv3 .p-hero__title {
    width: 86%;
  }
}
.--kv4 .p-hero__title {
  width: 56%;
}
.is-load .p-hero__title {
  opacity: 1;
  -webkit-clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  transition: opacity 0.1s var(--ease_out) 0.4s, -webkit-clip-path 0.5s var(--ease_out) 0.4s;
  transition: clip-path 0.5s var(--ease_out) 0.4s, opacity 0.1s var(--ease_out) 0.4s;
  transition: clip-path 0.5s var(--ease_out) 0.4s, opacity 0.1s var(--ease_out) 0.4s, -webkit-clip-path 0.5s var(--ease_out) 0.4s;
}
.p-hero__title-img {
  display: block;
  position: relative;
}
.p-hero__title-svg {
  display: block;
  position: relative;
  fill: var(--color-black);
}
.--kv4 .p-hero__title-svg {
  fill: var(--color-white);
}
.--kv3 .p-hero__title-svg {
  fill: var(--color-white);
}
.--kv2 .p-hero__title-svg {
  fill: var(--color-black);
}
.--kv1 .p-hero__title-svg {
  fill: var(--color-white);
}
.p-hero__onair {
  width: 60rem;
  display: block;
  position: relative;
  margin: 0.4rem auto 0;
  opacity: 0;
  -webkit-clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
}
@media screen and (max-width: 960px) {
  .p-hero__onair {
    width: 30rem;
    margin-top: 0.2rem;
  }
}
.--kv4 .p-hero__onair {
  width: 100%;
  margin-top: 33%;
}
.is-load .p-hero__onair {
  opacity: 1;
  -webkit-clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  transition: opacity 0.1s var(--ease_out) 0.5s, -webkit-clip-path 0.5s var(--ease_out) 0.5s;
  transition: clip-path 0.5s var(--ease_out) 0.5s, opacity 0.1s var(--ease_out) 0.5s;
  transition: clip-path 0.5s var(--ease_out) 0.5s, opacity 0.1s var(--ease_out) 0.5s, -webkit-clip-path 0.5s var(--ease_out) 0.5s;
}
.p-hero__onair-img {
  display: block;
  position: relative;
}

.p-hero_kv {
  display: block;
  position: relative;
  z-index: 0;
  /*
  &::after {
    width: 100%;
    height: 1.2rem;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background: url("../img/line_black.png") repeat-x left bottom / auto 100%;
    @include pc {
      content: "";
    }
  }
  */
}
.p-hero_kv__container {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  left: 0;
  opacity: 0;
}
.is-load .p-hero_kv__container {
  opacity: 1;
  transition: opacity 3s var(--ease_out);
}
.p-hero_kv__bg {
  display: block;
  position: relative;
  overflow: hidden;
  transform: scale3d(1.05, 1.05, 1.05);
  transform-origin: center bottom;
  transition: transform 0s linear 1s;
}
.is-load .is-current .p-hero_kv__bg {
  transform: scale3d(1, 1, 1);
  transition: transform 5s var(--ease_out);
}
.p-hero_kv__bg-img {
  display: block;
  position: relative;
}
.p-hero_kv__bg-img::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/main/img_main_parts02_1.jpg") no-repeat center/cover;
  opacity: 1;
}
.is-load .p-hero_kv__bg-img::before {
  opacity: 0;
  transition: opacity 4s var(--ease_inout);
}
.p-hero_kv__bg-canvas {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.p-hero_kv__main {
  display: block;
  position: relative;
  overflow: hidden;
  transform: scale3d(1.05, 1.05, 1.05);
  transform-origin: center bottom;
  transition: transform 0s linear 1s;
}
.is-load .is-current .p-hero_kv__main {
  transform: scale3d(1, 1, 1);
  transition: transform 5s var(--ease_out);
}
.p-hero_kv__main-img {
  display: block;
  position: relative;
}
.p-hero_kv__cover {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content-visibility: auto;
  overflow: hidden;
  opacity: 0.6;
}
.is-load .p-hero_kv__cover {
  opacity: 0;
  transition: opacity 5s var(--ease_out) 0.5s;
}
.p-hero_kv__cover-in {
  width: 100%;
  height: 500%;
  display: block;
  position: relative;
}
.is-ready .p-hero_kv__cover-in {
  animation: kv_cover 1s steps(5) 20;
}
@keyframes kv_cover {
  0% {
    transform: translate(0%, 0%);
  }
  100% {
    transform: translate(0%, -100%);
  }
}
.p-hero_kv__cover-in::after {
  content: "";
  width: 100%;
  height: 20%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("../img/deco/glitch_color05.jpg") repeat-y center/100% auto;
  transform: translate(0, 100%);
}
.p-hero_kv__cover-img {
  width: 100%;
  height: 20%;
  display: block;
  position: relative;
}
.p-hero_kv__cover-img:nth-child(1) {
  background: url("../img/deco/glitch_color01.jpg") repeat-y center/100% auto;
}
.p-hero_kv__cover-img:nth-child(2) {
  background: url("../img/deco/glitch_color02.jpg") repeat-y center/100% auto;
}
.p-hero_kv__cover-img:nth-child(3) {
  background: url("../img/deco/glitch_color03.jpg") repeat-y center/100% auto;
}
.p-hero_kv__cover-img:nth-child(4) {
  background: url("../img/deco/glitch_color04.jpg") repeat-y center/100% auto;
}
.p-hero_kv__cover-img:nth-child(5) {
  background: url("../img/deco/glitch_color05.jpg") repeat-y center/100% auto;
}
.p-hero_kv__chara {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.p-intro {
  display: block;
  position: relative;
  padding: 8.5rem 0 11rem;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-intro {
    padding: 4.5rem 0 8.7rem;
  }
}
.p-intro::before {
  content: "";
  width: 36.7rem;
  height: 51.2rem;
  display: block;
  position: absolute;
  top: 105%;
  left: -1%;
  transform: translate(-50%, -50%);
  background: url("../img/bg_num_0.png") no-repeat center/contain;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-intro::before {
    width: 22.02rem;
    height: 30.72rem;
    top: 98%;
    left: -2%;
  }
}
.p-intro__bg {
  width: 100%;
  height: calc(100% - 12rem);
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}
.p-intro__bg::before {
  content: "";
  width: 100%;
  height: 1.2rem;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/line_black.png") repeat-x left top/auto 100%;
  transform: scale(1, -1);
  z-index: 1;
}
.p-intro__bg::after {
  content: "";
  width: 100%;
  height: 1.2rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("../img/line_black.png") repeat-x left bottom/auto 100%;
  z-index: 1;
}
.p-intro__bg-img {
  width: 100%;
  height: 160%;
  display: block;
  position: absolute;
  top: -30%;
  left: 0;
}
.p-intro__bg-img::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/bg_ptn_border.png") repeat left top/0.6rem auto;
}
.p-intro__bg-img img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0;
  transform: scale3d(1.1, 1.1, 1.1);
}
.is-active .p-intro__bg-img img {
  opacity: 1;
  transform: scale3d(1, 1, 1);
  transition: opacity 1.25s var(--ease_inout), transform 5s var(--ease_out);
}
.p-intro__container {
  width: 90%;
  max-width: 1100px;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-intro__header {
  display: block;
  position: relative;
  margin-bottom: 7.8rem;
}
@media screen and (max-width: 960px) {
  .p-intro__header {
    margin-bottom: 4rem;
  }
}
.p-intro__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  color: var(--color-pink);
}
@media screen and (min-width: 961px) {
  .p-intro__title {
    margin: 0 auto;
  }
}
.p-intro__title-deco {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin-bottom: 0.3rem;
  font-size: 1rem;
  line-height: 1;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  transform: scale(0.8);
  transform-origin: left center;
  color: transparent;
  opacity: 0;
}
.is-active .p-intro__title-deco {
  opacity: 1;
  color: var(--color-pink);
  transition: opacity 0.2s var(--ease_out), color 0.2s var(--ease_out) 0.4s;
}
.p-intro__title-deco::before {
  content: "";
  width: 50vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-cyan);
  transform: translateX(-100%);
}
.is-active .p-intro__title-deco::before {
  width: 0;
  transform: translateX(0);
  transition: transform 0.3s var(--ease_out), width 0.6s var(--ease_inout);
}
.p-intro__title-deco::after {
  content: "";
  width: 50vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-pink);
  transform: translateX(-100%);
}
.is-active .p-intro__title-deco::after {
  width: 0;
  transform: translateX(0);
  transition: transform 0.5s var(--ease_out), width 0.6s var(--ease_inout);
}
.is-active .p-intro__title-deco > span {
  animation: flash 1.5s steps(1) 0.5s infinite;
}
.p-intro__title-main {
  display: block;
  position: relative;
  font-size: 8rem;
  letter-spacing: 0.1rem;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 800;
  line-height: 1;
  z-index: 0;
  color: transparent;
}
@media screen and (max-width: 960px) {
  .p-intro__title-main {
    font-size: 5rem;
  }
}
.is-active .p-intro__title-main {
  color: var(--color-pink);
  transition: color 0.2s var(--ease_out) 0.8s;
}
.p-intro__title-word {
  display: inline-block;
  position: relative;
}
.p-intro__title-word::before {
  content: attr(data-title);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-cyan);
  font-weight: 700;
  -webkit-clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
}
.is-active .p-intro__title-word::before {
  opacity: 0;
  -webkit-clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  transition: opacity 0.1s var(--ease_out) 0.55s, -webkit-clip-path 0.5s var(--ease_out) 0.25s;
  transition: clip-path 0.5s var(--ease_out) 0.25s, opacity 0.1s var(--ease_out) 0.55s;
  transition: clip-path 0.5s var(--ease_out) 0.25s, opacity 0.1s var(--ease_out) 0.55s, -webkit-clip-path 0.5s var(--ease_out) 0.25s;
}
.p-intro__title-word::after {
  content: attr(data-title);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-pink);
  -webkit-clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
}
.is-active .p-intro__title-word::after {
  opacity: 0;
  -webkit-clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  transition: opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1) 1.2s, -webkit-clip-path 0.5s var(--ease_inout) 0.25s;
  transition: clip-path 0.5s var(--ease_inout) 0.25s, opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1) 1.2s;
  transition: clip-path 0.5s var(--ease_inout) 0.25s, opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1) 1.2s, -webkit-clip-path 0.5s var(--ease_inout) 0.25s;
}
.p-intro__inner {
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-intro__inner {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.p-intro__text {
  display: block;
  position: relative;
  font-size: 2.5rem;
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-align: center;
  opacity: 0;
  transform: translateY(2rem);
}
@media screen and (max-width: 960px) {
  .p-intro__text {
    font-size: 1.4rem;
    text-align: left;
    line-height: 2.1;
    letter-spacing: 0.15rem;
  }
}
.is-active .p-intro__text {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0.4s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 0.4s;
}
.p-intro__lead {
  display: block;
  position: relative;
  margin-top: 2.4rem;
  font-size: 3.2rem;
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: 0.3rem;
  text-align: center;
  opacity: 0;
  transform: translateY(2rem);
}
@media screen and (max-width: 960px) {
  .p-intro__lead {
    font-size: 2rem;
    text-align: left;
    line-height: 1.6;
    letter-spacing: 0.2rem;
  }
}
.is-active .p-intro__lead {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0.5s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 0.5s;
}

.p-headline {
  display: block;
  position: relative;
  padding: 7.5rem 0;
}
@media screen and (max-width: 960px) {
  .p-headline {
    padding: 4rem 0;
  }
}
.p-headline::before {
  content: "";
  width: 29.1rem;
  height: 40.5rem;
  display: block;
  position: absolute;
  top: 35%;
  left: 91%;
  transform: translate(-50%, -50%);
  background: url("../img/bg_num_9.png") no-repeat center/contain;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-headline::before {
    width: 17.46rem;
    height: 24.3rem;
    top: 35%;
    left: 95%;
  }
}
.p-headline__container {
  width: 90%;
  max-width: 1100px;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 961px) {
  .p-headline__container {
    display: flex;
    justify-content: flex-start;
  }
}
.p-headline__header {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-headline__header {
    width: 32rem;
  }
}
@media screen and (max-width: 960px) {
  .p-headline__header {
    margin-bottom: 2rem;
  }
}
.p-headline__title {
  display: block;
  position: relative;
  color: var(--color-pink);
}
.p-headline__title-deco {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin-bottom: 0.3rem;
  font-size: 1rem;
  line-height: 1;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  transform: scale(0.8);
  transform-origin: left center;
  color: transparent;
  opacity: 0;
}
.is-active .p-headline__title-deco {
  opacity: 1;
  color: var(--color-pink);
  transition: opacity 0.2s var(--ease_out), color 0.2s var(--ease_out) 0.4s;
}
.p-headline__title-deco::before {
  content: "";
  width: 50vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-cyan);
  transform: translateX(-100%);
}
.is-active .p-headline__title-deco::before {
  width: 0;
  transform: translateX(0);
  transition: transform 0.3s var(--ease_out), width 0.6s var(--ease_inout);
}
.p-headline__title-deco::after {
  content: "";
  width: 50vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-pink);
  transform: translateX(-100%);
}
.is-active .p-headline__title-deco::after {
  width: 0;
  transform: translateX(0);
  transition: transform 0.5s var(--ease_out), width 0.6s var(--ease_inout);
}
.is-active .p-headline__title-deco > span {
  animation: flash 1.5s steps(1) 0.5s infinite;
}
.p-headline__title-main {
  display: block;
  position: relative;
  font-size: 8rem;
  letter-spacing: 0.1rem;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 800;
  line-height: 1;
  z-index: 0;
  color: transparent;
}
@media screen and (min-width: 961px) {
  .p-headline__title-main {
    left: -0.05em;
  }
}
@media screen and (max-width: 960px) {
  .p-headline__title-main {
    font-size: 5rem;
  }
}
.is-active .p-headline__title-main {
  color: var(--color-pink);
  transition: color 0.2s var(--ease_out) 0.8s;
}
.p-headline__title-word {
  display: inline-block;
  position: relative;
}
.p-headline__title-word::before {
  content: attr(data-title);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-cyan);
  font-weight: 700;
  -webkit-clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
}
.is-active .p-headline__title-word::before {
  opacity: 0;
  -webkit-clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  transition: opacity 0.1s var(--ease_out) 0.55s, -webkit-clip-path 0.5s var(--ease_out) 0.25s;
  transition: clip-path 0.5s var(--ease_out) 0.25s, opacity 0.1s var(--ease_out) 0.55s;
  transition: clip-path 0.5s var(--ease_out) 0.25s, opacity 0.1s var(--ease_out) 0.55s, -webkit-clip-path 0.5s var(--ease_out) 0.25s;
}
.p-headline__title-word::after {
  content: attr(data-title);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-pink);
  -webkit-clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
}
.is-active .p-headline__title-word::after {
  opacity: 0;
  -webkit-clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  transition: opacity 0.2s var(--ease_out) 1.2s, -webkit-clip-path 0.5s var(--ease_inout) 0.25s;
  transition: clip-path 0.5s var(--ease_inout) 0.25s, opacity 0.2s var(--ease_out) 1.2s;
  transition: clip-path 0.5s var(--ease_inout) 0.25s, opacity 0.2s var(--ease_out) 1.2s, -webkit-clip-path 0.5s var(--ease_inout) 0.25s;
}
.p-headline__inner {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-headline__inner {
    flex: 1 1 0;
    min-width: 0;
    padding-top: 1.2rem;
  }
}
.p-headline__list {
  display: block;
  position: relative;
}
.p-headline__list-item {
  display: block;
  position: relative;
  opacity: 0;
  -webkit-clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
}
.is-active .p-headline__list-item {
  opacity: 1;
  -webkit-clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  transition: opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1), -webkit-clip-path 0.5s var(--ease_out);
  transition: clip-path 0.5s var(--ease_out), opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1);
  transition: clip-path 0.5s var(--ease_out), opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1), -webkit-clip-path 0.5s var(--ease_out);
}
.is-active .p-headline__list-item:nth-child(1) {
  transition-delay: 0.5s;
}
.is-active .p-headline__list-item:nth-child(2) {
  transition-delay: 0.6s;
}
.is-active .p-headline__list-item:nth-child(3) {
  transition-delay: 0.7s;
}
.is-active .p-headline__list-item:nth-child(4) {
  transition-delay: 0.8s;
}
.is-active .p-headline__list-item:nth-child(5) {
  transition-delay: 0.9s;
}
.is-active .p-headline__list-item:nth-child(6) {
  transition-delay: 1s;
}
.is-active .p-headline__list-item:nth-child(7) {
  transition-delay: 1.1s;
}
.is-active .p-headline__list-item:nth-child(8) {
  transition-delay: 1.2s;
}
.is-active .p-headline__list-item:nth-child(9) {
  transition-delay: 1.3s;
}
.is-active .p-headline__list-item:nth-child(10) {
  transition-delay: 1.4s;
}
.p-headline__list-item + .p-headline__list-item {
  margin-top: 0.4rem;
}
@media screen and (max-width: 960px) {
  .p-headline__list-item + .p-headline__list-item {
    margin-top: 1rem;
  }
}
.p-headline__footer {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-headline__footer {
    width: 32rem;
    display: block;
    position: absolute;
    top: 12.8rem;
    left: 0;
  }
}
.p-headline__link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  padding: 0 2rem 0 0;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.05rem;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-headline__link {
    margin-left: auto;
    font-size: 1.2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-headline__link {
    transition: color 0.4s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .p-headline__link:hover {
    color: var(--color-black);
  }
}
.p-headline__link::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, -10% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -10% 0, 0 100%, 0 100%);
  opacity: 0;
  background-color: var(--color-pink);
  z-index: -1;
  transition: opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1), -webkit-clip-path 0s linear 0.2s;
  transition: clip-path 0s linear 0.2s, opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1);
  transition: clip-path 0s linear 0.2s, opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1), -webkit-clip-path 0s linear 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .p-headline__link:hover::before {
    opacity: 1;
    -webkit-clip-path: polygon(-10% 0, 100% 0, 110% 100%, 0 100%);
    clip-path: polygon(-10% 0, 100% 0, 110% 100%, 0 100%);
    transition: opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1), -webkit-clip-path 0.5s cubic-bezier(0.5, 1, 0.89, 1);
    transition: clip-path 0.5s cubic-bezier(0.5, 1, 0.89, 1), opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1);
    transition: clip-path 0.5s cubic-bezier(0.5, 1, 0.89, 1), opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1), -webkit-clip-path 0.5s cubic-bezier(0.5, 1, 0.89, 1);
  }
}
.p-headline__link::after {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  background: url("../img/arrow_w.svg") no-repeat center/contain;
  transform: translate(0, -50%) rotate(90deg);
}
@media screen and (max-width: 960px) {
  .p-headline__link::after {
    width: 1rem;
    height: 1rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-headline__link::after {
    transition: filter 0.4s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .p-headline__link:hover::after {
    filter: invert(100%);
  }
}

.p-headline_data {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 1.4rem 0;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-headline_data {
    padding: 1rem 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-headline_data {
    transition: color 0.2s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .p-headline_data:hover {
    color: var(--color-black);
  }
}
.p-headline_data__bg {
  width: calc(100% + 2rem);
  height: calc(100% + 2rem);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  -webkit-clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
  clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
}
@media screen and (max-width: 960px) {
  .p-headline_data__bg {
    width: calc(100% + 1rem);
    height: calc(100% + 1rem);
    -webkit-clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
    clip-path: polygon(1.4rem 0%, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%, 0 1.4rem);
  }
}
.p-headline_data__bg::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, -10% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -10% 0, 0 100%, 0 100%);
  opacity: 0;
  background-color: var(--color-pink);
  transition: opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1), -webkit-clip-path 0s linear 0.2s;
  transition: clip-path 0s linear 0.2s, opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1);
  transition: clip-path 0s linear 0.2s, opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1), -webkit-clip-path 0s linear 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .p-headline_data:hover .p-headline_data__bg::before {
    opacity: 1;
    -webkit-clip-path: polygon(-10% 0, 100% 0, 110% 100%, 0 100%);
    clip-path: polygon(-10% 0, 100% 0, 110% 100%, 0 100%);
    transition: opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1), -webkit-clip-path 0.5s cubic-bezier(0.5, 1, 0.89, 1);
    transition: clip-path 0.5s cubic-bezier(0.5, 1, 0.89, 1), opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1);
    transition: clip-path 0.5s cubic-bezier(0.5, 1, 0.89, 1), opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1), -webkit-clip-path 0.5s cubic-bezier(0.5, 1, 0.89, 1);
  }
}
.p-headline_data__date {
  min-width: 9.5rem;
  display: block;
  position: relative;
  margin-right: 1rem;
}
@media screen and (max-width: 960px) {
  .p-headline_data__date {
    min-width: 7.5rem;
    margin-right: 0.5rem;
  }
}
.p-headline_data__date-year {
  display: block;
  position: relative;
  margin-bottom: 0.4rem;
  font-size: 1.5rem;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .p-headline_data__date-year {
    margin-bottom: 0.1rem;
    font-size: 1.4rem;
  }
}
.p-headline_data__date-day {
  display: block;
  position: relative;
  font-size: 3.2rem;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 960px) {
  .p-headline_data__date-day {
    font-size: 2.5rem;
  }
}
.p-headline_data__title {
  display: block;
  position: relative;
  font-size: 1.8rem;
}
@media screen and (min-width: 961px) {
  .p-headline_data__title {
    min-width: 0;
    flex: 1 1 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media screen and (max-width: 960px) {
  .p-headline_data__title {
    font-size: 1.3rem;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

.p-movie {
  display: block;
  position: relative;
  margin-bottom: 7rem;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-movie {
    margin-bottom: 2rem;
  }
}
.p-movie__content {
  width: 100%;
  height: 40rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-movie__content {
    height: 18.5rem;
  }
}
.p-movie__content::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-black);
  opacity: 0.3;
}
.p-movie__bg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}
.p-movie__bg::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  opacity: 0;
  background-color: var(--color-pink);
  transition: opacity 0.2s var(--ease_out), -webkit-clip-path 0s linear 0.2s;
  transition: clip-path 0s linear 0.2s, opacity 0.2s var(--ease_out);
  transition: clip-path 0s linear 0.2s, opacity 0.2s var(--ease_out), -webkit-clip-path 0s linear 0.2s;
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .p-movie__content:hover .p-movie__bg::before {
    opacity: 0.5;
    -webkit-clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
    clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
    transition: opacity 0.1s var(--ease_out), -webkit-clip-path 0.4s var(--ease_out);
    transition: clip-path 0.4s var(--ease_out), opacity 0.1s var(--ease_out);
    transition: clip-path 0.4s var(--ease_out), opacity 0.1s var(--ease_out), -webkit-clip-path 0.4s var(--ease_out);
  }
}
.p-movie__bg::after {
  content: "";
  width: 100%;
  height: 1.2rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("../img/line_black.png") repeat-x left bottom/auto 100%;
  z-index: 1;
}
.p-movie__bg-img {
  width: 100%;
  height: 160%;
  display: block;
  position: absolute;
  top: -30%;
  left: 0;
  transform: translate(0, 0);
}
.p-movie__bg-img img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  transform: scale3d(1.02, 1.02, 1.02);
}
@media (hover: hover) and (pointer: fine) {
  .p-movie__bg-img img {
    transition: transform 0.5s var(--ease_out);
  }
  .p-movie__content:hover .p-movie__bg-img img {
    transform: scale3d(1, 1, 1);
  }
}
.p-movie__bg-player {
  width: 100%;
  padding-top: 56.25%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.is-play .p-movie__bg-player {
  opacity: 1;
  transition: opacity 0.5s var(--ease_out);
}
.p-movie__bg-player iframe {
  width: 100%;
  height: 200%;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.p-movie__btn {
  width: 7.5rem;
  display: block;
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .p-movie__btn {
    width: 5rem;
  }
}
.p-movie__btn-icon {
  display: block;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .p-movie__btn-icon {
    transition: transform 0.8s var(--ease_inout);
    transform-origin: center bottom;
  }
  .p-movie__content:hover .p-movie__btn-icon {
    transform: scale(0.9);
  }
}
.p-movie__btn-icon::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/btn_play_02.png") no-repeat center/contain;
}
@media (hover: hover) and (pointer: fine) {
  .p-movie__btn-icon::after {
    transition: transform 0.8s var(--ease_inout);
  }
  .p-movie__content:hover .p-movie__btn-icon::after {
    transform: rotate(630deg);
  }
}
.p-movie__btn-text {
  display: block;
  position: relative;
  margin-top: 1.2rem;
  font-size: 1rem;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0;
}
@media screen and (max-width: 960px) {
  .p-movie__btn-text {
    margin-top: 0.5rem;
    font-size: 0.6rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-movie__content:hover .p-movie__btn-text {
    animation: flash 0.1s steps(1) 5;
  }
}

.p-official {
  display: block;
  position: relative;
  padding: 8.4rem 0 9.5rem;
}
@media screen and (max-width: 960px) {
  .p-official {
    padding: 3rem 0 7.6rem;
  }
}
.p-official::before {
  content: "";
  width: 31.7rem;
  height: 43.3rem;
  display: block;
  position: absolute;
  top: 82%;
  left: 77%;
  transform: translate(-50%, -50%);
  background: url("../img/bg_num_2.png") no-repeat center/contain;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-official::before {
    width: 19.02rem;
    height: 25.98rem;
    top: 84%;
    left: 82%;
  }
}
.p-official__container {
  width: 90%;
  max-width: 1100px;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-official__container {
    width: 100%;
  }
}
.p-official__header {
  width: 70rem;
  display: block;
  position: relative;
  margin-bottom: 4.2rem;
  padding: 0.7rem 1.2rem;
  overflow: hidden;
  -webkit-clip-path: polygon(0 0, calc(100% - 2.5rem) 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, calc(100% - 2.5rem) 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 960px) {
  .p-official__header {
    width: 28rem;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
  }
}
.p-official__header::before {
  content: "";
  width: 0;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-cyan);
  z-index: -1;
}
.is-active .p-official__header::before {
  width: 100%;
  opacity: 0;
  transition: width 0.5s var(--ease_out), opacity 0.1s linear 0.6s;
}
.p-official__header::after {
  content: "";
  width: 0;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-pink);
  z-index: -1;
}
.is-active .p-official__header::after {
  width: 100%;
  transition: width 0.5s var(--ease_inout);
}
.p-official__title {
  display: block;
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.25rem;
  color: var(--color-black);
  opacity: 0;
  transform: translateX(-1rem);
}
@media screen and (max-width: 960px) {
  .p-official__title {
    font-size: 1rem;
    letter-spacing: 0.1rem;
  }
}
.is-active .p-official__title {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.5s var(--ease_inout) 0.2s, transform 0.5s var(--ease_inout) 0.2s;
}
.p-official__inner {
  display: block;
  position: relative;
}
.p-official__link {
  width: 82rem;
  display: block;
  position: relative;
  margin: 0 auto;
  opacity: 0;
  -webkit-clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
}
@media screen and (max-width: 960px) {
  .p-official__link {
    width: 90%;
  }
}
.is-active .p-official__link {
  opacity: 1;
  -webkit-clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  transition: opacity 0.1s var(--ease_out) 0.3s, -webkit-clip-path 0.5s var(--ease_out) 0.3s;
  transition: clip-path 0.5s var(--ease_out) 0.3s, opacity 0.1s var(--ease_out) 0.3s;
  transition: clip-path 0.5s var(--ease_out) 0.3s, opacity 0.1s var(--ease_out) 0.3s, -webkit-clip-path 0.5s var(--ease_out) 0.3s;
}
.p-official__link-img {
  display: block;
  position: relative;
  overflow: hidden;
}
.p-official__link-img::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
  opacity: 0;
  background-color: var(--color-pink);
  transition: opacity 0.2s var(--ease_out), -webkit-clip-path 0s linear 0.2s;
  transition: clip-path 0s linear 0.2s, opacity 0.2s var(--ease_out);
  transition: clip-path 0s linear 0.2s, opacity 0.2s var(--ease_out), -webkit-clip-path 0s linear 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .p-official__link:hover .p-official__link-img::after {
    opacity: 0.5;
    -webkit-clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
    clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
    transition: opacity 0.1s var(--ease_out), -webkit-clip-path 0.4s var(--ease_out);
    transition: clip-path 0.4s var(--ease_out), opacity 0.1s var(--ease_out);
    transition: clip-path 0.4s var(--ease_out), opacity 0.1s var(--ease_out), -webkit-clip-path 0.4s var(--ease_out);
  }
}
.p-official__link-img img {
  display: block;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .p-official__link-img img {
    transform: scale3d(1, 1, 1);
    transition: transform 0.5s var(--ease_out);
  }
  .p-official__link:hover .p-official__link-img img {
    transform: scale3d(1.05, 1.05, 1.05);
  }
}

.p-op_modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  overflow: auto;
  opacity: 1;
}
.p-op_modal.is-close {
  opacity: 0;
  pointer-events: none;
  transition: all 0.8s var(--ease_inout);
}
.p-op_modal__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: -1;
}
.p-op_modal__bg::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  transform: scale(-1, 1);
  background: url("../img/bg_modal.jpg") no-repeat center/cover;
  opacity: 0.97;
}
.p-op_modal__bg::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/bg_ptn_border.png") repeat left top/0.6rem auto;
}
.p-op_modal__content {
  width: 90%;
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .p-op_modal__content {
    width: 90%;
  }
}
[data-modal-type=youtrube] .p-op_modal__content {
  max-width: 150vh;
}
@media screen and (max-width: 960px) {
  [data-modal-type=youtrube] .p-op_modal__content {
    width: 100%;
  }
}
[data-modal-type=img] .p-op_modal__content {
  max-width: 1000px;
}
@media screen and (max-width: 960px) {
  [data-modal-type=img] .p-op_modal__content {
    width: 100%;
  }
}
[data-modal-category=countdown] .p-op_modal__content {
  width: 90%;
  max-width: 65vh;
}
.is-modal-overflow-prep .p-op_modal__content {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  margin: 6rem auto;
}
@media screen and (max-width: 960px) {
  .is-modal-overflow-prep .p-op_modal__content {
    margin-top: 20%;
  }
}
.p-op_modal__close {
  width: 5rem;
  height: 5rem;
  display: block;
  position: absolute;
  top: 2.75rem;
  right: 3rem;
  cursor: pointer;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .p-op_modal__close {
    width: 4.5rem;
    height: 4.5rem;
    top: 1.2rem;
    right: 2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-op_modal__close {
    transition: background-color 0.5s var(--ease_out);
  }
  .p-op_modal__close:hover {
    background: var(--color-sky);
  }
}
.p-op_modal__close::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.3rem solid var(--color-sky);
  border-radius: 50%;
}
@media screen and (max-width: 960px) {
  .p-op_modal__close::after {
    border-width: 0.2rem;
  }
}
.p-op_modal__close-in {
  width: 3.2rem;
  height: 3.2rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .p-op_modal__close-in {
    width: 2.2rem;
    height: 2.2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-op_modal__close:hover .p-op_modal__close-in {
    animation: flash 0.1s steps(1) 3;
  }
}
.p-op_modal__close-in::before {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  border-bottom: 0.3rem solid var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-op_modal__close-in::before {
    height: 0.2rem;
    border-bottom-width: 0.2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-op_modal__close-in::before {
    transition: border-bottom-color 0.5s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .p-op_modal__close:hover .p-op_modal__close-in::before {
    border-bottom-color: var(--color-white);
  }
}
.p-op_modal__close-in::after {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border-bottom: 0.3rem solid var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-op_modal__close-in::after {
    height: 0.2rem;
    border-bottom-width: 0.2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-op_modal__close-in::after {
    transition: border-bottom-color 0.5s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .p-op_modal__close:hover .p-op_modal__close-in::after {
    border-bottom-color: var(--color-white);
  }
}
.p-op_modal__close-cover {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s cubic-bezier(0.5, 1, 0.89, 1), height 0.2s cubic-bezier(0.5, 1, 0.89, 1);
}
@media (hover: hover) and (pointer: fine) {
  .p-op_modal__close:hover .p-op_modal__close-cover {
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
  }
}
.p-op_modal__close-deco {
  width: 1rem;
  height: 1rem;
  display: block;
  position: absolute;
  border: 0.2rem solid transparent;
}
.p-op_modal__close-deco.-deco1 {
  top: 0;
  left: 0;
  border-top-color: var(--color-white);
  border-left-color: var(--color-white);
}
.p-op_modal__close-deco.-deco2 {
  top: 0;
  right: 0;
  border-top-color: var(--color-white);
  border-right-color: var(--color-white);
}
.p-op_modal__close-deco.-deco3 {
  bottom: 0;
  right: 0;
  border-bottom-color: var(--color-white);
  border-right-color: var(--color-white);
}
.p-op_modal__close-deco.-deco4 {
  bottom: 0;
  left: 0;
  border-bottom-color: var(--color-white);
  border-left-color: var(--color-white);
}

.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 {
  opacity: 0;
}
.u-lazy.is-lazy-loaded {
  opacity: 1;
  min-height: auto;
  transition: opacity 0.2s var(--ease_out);
}
.is-lazy-loading.-thumb + .u-lazy__loader, .is-lazy-loaded.-thumb + .u-lazy__loader {
  display: block;
}
.is-lazy-loaded.-thumb + .u-lazy__loader {
  opacity: 0;
  transition: opacity 0.3s var(--ease_out);
}

[data-modal] {
  cursor: pointer;
}

template {
  display: none;
}

.m-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 100%;
  overflow: auto;
  visibility: hidden;
  touch-action: none;
  pointer-events: none;
  overscroll-behavior: contain;
  opacity: 0;
  transition: all 0.8s var(--ease_inout);
}
.m-modal.is-open {
  opacity: 1;
}
.m-modal.is-open {
  visibility: visible;
  touch-action: auto;
  pointer-events: auto;
}
.m-modal.is-load-start {
  visibility: visible;
  touch-action: auto;
  pointer-events: auto;
}
.m-modal.is-close {
  visibility: hidden;
  touch-action: none;
  pointer-events: none;
}
.m-modal__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: -1;
}
.m-modal__bg::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  transform: scale(-1, 1);
  background: url("../img/bg_modal.jpg") no-repeat center/cover;
  opacity: 0.97;
}
.m-modal__bg::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/bg_ptn_border.png") repeat left top/0.6rem auto;
}
.m-modal__content {
  width: 90%;
  display: block;
  color: var(--color-brown-red);
  background: var(--color-cream);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease_out);
}
@media screen and (max-width: 960px) {
  .m-modal__content {
    width: 90%;
  }
}
[data-modal-type=youtrube] .m-modal__content {
  max-width: 150vh;
}
@media screen and (max-width: 960px) {
  [data-modal-type=youtrube] .m-modal__content {
    width: 100%;
  }
}
[data-modal-type=img] .m-modal__content {
  max-width: 1000px;
}
@media screen and (max-width: 960px) {
  [data-modal-type=img] .m-modal__content {
    width: 100%;
  }
}
[data-modal-category=countdown] .m-modal__content {
  width: 90%;
  max-width: 75vh;
}
.is-modal-open .m-modal__content {
  opacity: 1;
}
.is-modal-overflow-prep .m-modal__content {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  margin: 6rem auto;
}
@media screen and (max-width: 960px) {
  .is-modal-overflow-prep .m-modal__content {
    margin-top: 20%;
  }
}
.m-modal__close {
  width: 5rem;
  height: 5rem;
  display: block;
  position: absolute;
  top: 2.75rem;
  right: 3rem;
  cursor: pointer;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .m-modal__close {
    width: 4.5rem;
    height: 4.5rem;
    top: 1.2rem;
    right: 2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .m-modal__close {
    transition: background-color 0.5s var(--ease_out);
  }
  .m-modal__close:hover {
    background: var(--color-sky);
  }
}
.m-modal__close::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.3rem solid var(--color-sky);
  border-radius: 50%;
}
@media screen and (max-width: 960px) {
  .m-modal__close::after {
    border-width: 0.2rem;
  }
}
.m-modal__close-in {
  width: 3.2rem;
  height: 3.2rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .m-modal__close-in {
    width: 2.2rem;
    height: 2.2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .m-modal__close:hover .m-modal__close-in {
    animation: flash 0.1s steps(1) 3;
  }
}
.m-modal__close-in::before {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  border-bottom: 0.3rem solid var(--color-white);
}
@media screen and (max-width: 960px) {
  .m-modal__close-in::before {
    height: 0.2rem;
    border-bottom-width: 0.2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .m-modal__close-in::before {
    transition: border-bottom-color 0.5s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .m-modal__close:hover .m-modal__close-in::before {
    border-bottom-color: var(--color-white);
  }
}
.m-modal__close-in::after {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border-bottom: 0.3rem solid var(--color-white);
}
@media screen and (max-width: 960px) {
  .m-modal__close-in::after {
    height: 0.2rem;
    border-bottom-width: 0.2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .m-modal__close-in::after {
    transition: border-bottom-color 0.5s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .m-modal__close:hover .m-modal__close-in::after {
    border-bottom-color: var(--color-white);
  }
}
.m-modal__close-cover {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s cubic-bezier(0.5, 1, 0.89, 1), height 0.2s cubic-bezier(0.5, 1, 0.89, 1);
}
@media (hover: hover) and (pointer: fine) {
  .m-modal__close:hover .m-modal__close-cover {
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
  }
}
.m-modal__close-deco {
  width: 1rem;
  height: 1rem;
  display: block;
  position: absolute;
  border: 0.2rem solid transparent;
}
.m-modal__close-deco.-deco1 {
  top: 0;
  left: 0;
  border-top-color: var(--color-white);
  border-left-color: var(--color-white);
}
.m-modal__close-deco.-deco2 {
  top: 0;
  right: 0;
  border-top-color: var(--color-white);
  border-right-color: var(--color-white);
}
.m-modal__close-deco.-deco3 {
  bottom: 0;
  right: 0;
  border-bottom-color: var(--color-white);
  border-right-color: var(--color-white);
}
.m-modal__close-deco.-deco4 {
  bottom: 0;
  left: 0;
  border-bottom-color: var(--color-white);
  border-left-color: var(--color-white);
}

@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;
  }
}
@keyframes clip-out {
  0% {
    -webkit-clip-path: polygon(-100% 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(-100% 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 200% 100%);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 200% 100%);
  }
}
@keyframes clip-in {
  0% {
    -webkit-clip-path: polygon(0 0, -100% 0, 0 100%, 0% 100%);
    clip-path: polygon(0 0, -100% 0, 0 100%, 0% 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 200% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 200% 100%, 0% 100%);
  }
}
@keyframes clip-out-top {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 200% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 200% 100%, 0% 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, -100% 0, 0 100%, 0% 100%);
    clip-path: polygon(0 0, -100% 0, 0 100%, 0% 100%);
  }
}
@keyframes clip-in-top {
  0% {
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 200% 100%);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 200% 100%);
  }
  100% {
    -webkit-clip-path: polygon(-100% 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(-100% 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes glitch {
  0% {
    clip: rect(200px, 9999px, 63px, 0);
  }
  4% {
    top: -3px;
    clip: rect(7px, 9999px, 6px, 0);
  }
  8% {
    clip: rect(82px, 9999px, 78px, 0);
  }
  12% {
    clip: rect(85px, 9999px, 25px, 0);
  }
  16% {
    clip: rect(93px, 9999px, 38px, 0);
  }
  20% {
    left: 8px;
    clip: rect(70px, 9999px, 96px, 0);
  }
  24% {
    clip: rect(41px, 9999px, 72px, 0);
  }
  28% {
    clip: rect(39px, 9999px, 65px, 0);
  }
  32% {
    clip: rect(36px, 9999px, 34px, 0);
  }
  36% {
    left: -12px;
    clip: rect(84px, 9999px, 96px, 0);
  }
  40% {
    top: -5px;
    clip: rect(99px, 9999px, 45px, 0);
  }
  44% {
    clip: rect(37px, 9999px, 73px, 0);
  }
  48% {
    clip: rect(63px, 9999px, 20px, 0);
  }
  52% {
    clip: rect(5px, 9999px, 44px, 0);
  }
  56% {
    left: 11px;
    clip: rect(65px, 9999px, 270px, 0);
  }
  60% {
    clip: rect(4px, 9999px, 300px, 0);
  }
  64% {
    clip: rect(6px, 9999px, 9px, 0);
  }
  68% {
    top: 1px;
    clip: rect(37px, 9999px, 69px, 0);
  }
  72% {
    clip: rect(32px, 9999px, 64px, 0);
  }
  76% {
    left: -12px;
    clip: rect(0px, 9999px, 96px, 0);
  }
  80% {
    clip: rect(99px, 9999px, 45px, 0);
  }
  84% {
    top: -2px;
    clip: rect(37px, 9999px, 73px, 0);
  }
  88% {
    clip: rect(70px, 9999px, 96px, 0);
  }
  92% {
    clip: rect(41px, 9999px, 72px, 0);
  }
  96% {
    left: 6px;
    clip: rect(39px, 9999px, 65px, 0);
  }
  100% {
    clip: rect(37px, 9999px, 73px, 0);
  }
}
@keyframes glitch_min {
  0% {
    left: -5px;
    clip: rect(10px, 9999px, 63px, 0);
  }
  4% {
    clip: rect(137px, 9999px, 150px, 0);
  }
  8% {
    clip: rect(82px, 9999px, 178px, 0);
  }
  12% {
    left: -2px;
    clip: rect(85px, 9999px, 125px, 0);
  }
  16% {
    clip: rect(223px, 9999px, 258px, 0);
  }
  20% {
    left: 10px;
    clip: rect(100px, 9999px, 146px, 0);
  }
  24% {
    clip: rect(41px, 9999px, 72px, 0);
  }
  28% {
    clip: rect(9px, 9999px, 45px, 0);
  }
  32% {
    clip: rect(136px, 9999px, 164px, 0);
  }
  36% {
    left: -4px;
    clip: rect(84px, 9999px, 116px, 0);
  }
  40% {
    top: 3px;
    clip: rect(229px, 9999px, 315px, 0);
  }
  44% {
    clip: rect(37px, 9999px, 73px, 0);
  }
  48% {
    clip: rect(163px, 9999px, 180px, 0);
  }
  52% {
    clip: rect(205px, 9999px, 244px, 0);
  }
  56% {
    left: 2px;
    clip: rect(135px, 9999px, 170px, 0);
  }
  60% {
    clip: rect(14px, 9999px, 100px, 0);
  }
  64% {
    left: -1px;
    clip: rect(116px, 9999px, 129px, 0);
  }
  68% {
    clip: rect(37px, 9999px, 69px, 0);
  }
  72% {
    top: -4px;
    clip: rect(232px, 9999px, 264px, 0);
  }
  76% {
    left: -4px;
    clip: rect(100px, 9999px, 196px, 0);
  }
  80% {
    clip: rect(199px, 9999px, 245px, 0);
  }
  84% {
    clip: rect(37px, 9999px, 73px, 0);
  }
  88% {
    left: -5px;
    clip: rect(1px, 9999px, 296px, 0);
  }
  92% {
    clip: rect(141px, 9999px, 272px, 0);
  }
  96% {
    clip: rect(33px, 9999px, 65px, 0);
  }
  100% {
    clip: rect(137px, 9999px, 273px, 0);
  }
}
@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash2 {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0.3;
  }
}