@charset "UTF-8";
/*!
  Reset Stylesheet
  Author: yama-dev - https://github.com/yama-dev
  */
html, body, div, span, object, iframe, embed, main,
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, u, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, tbody, tfoot, thead, tr, th, td, caption,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, source {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: middle;
  background: transparent;
  box-sizing: border-box;
}

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

blockquote, q {
  quotes: none;
}

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

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

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;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

button, input, select, textarea, datalist {
  vertical-align: middle;
  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;
}

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

iframe {
  border: none;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0;
}

[role=button] {
  cursor: pointer;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

body {
  line-height: 1;
}

body, button, input, select, textarea, datalist {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-wrap: break-word;
}

:root {
  --color-black: #000;
  --color-white: #fff;
  --color-red: #cf0000;
  --color-yellow: #c8a917;
  --color-gray1: #606060;
  --color-gray2: #adadad;
  --ease-main: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-in: cubic-bezier(0.5, 0, 0.75, 0);
  --ease-bound: cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-jp: "Noto Sans JP","游ゴシック", YuGothic, "Helvetica", "ヒラギノ角ゴ ProN W3", "HiVragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Arial, sans-serif;
  --font-en: "Oswald","Noto Sans JP","游ゴシック", YuGothic, "Helvetica", "ヒラギノ角ゴ ProN W3", "HiVragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Arial, sans-serif;
}

img {
  max-width: 100%;
  display: block;
  vertical-align: middle;
}

@media screen and (min-width: 900px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
  .is-pc-inline {
    display: inline-block;
  }
  .is-sp-inline {
    display: none;
  }
  .is-pc-flex {
    display: flex;
  }
  .is-sp-flex {
    display: none;
  }
}
@media screen and (max-width: 899px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
  .is-pc-inline {
    display: none;
  }
  .is-sp-inline {
    display: inline-block;
  }
  .is-pc-flex {
    display: none;
  }
  .is-sp-flex {
    display: flex;
  }
}
html {
  font-size: 0.625em;
}

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

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
}

body {
  font-family: var(--font-jp);
  color: var(--color-white);
  background: url(../img/bg/bg.jpg) repeat left top/1400px;
  position: relative;
}
@media screen and (max-width: 899px) {
  body {
    background: url(../img/bg/bg.jpg) repeat left top/700px;
  }
}
body::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-black);
  opacity: 0.15;
}
body.is-menu-open {
  overflow: hidden;
}

#acmncopy {
  position: relative;
  z-index: 1;
}

@keyframes flash {
  0% {
    opacity: 0;
  }
  33.33% {
    opacity: 1;
  }
  66.66% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bgGlitch1 {
  0%, 5% {
    -webkit-clip-path: polygon(0% 10%, 100% 10%, 100% 15%, 0% 15%);
    clip-path: polygon(0% 10%, 100% 10%, 100% 15%, 0% 15%);
  }
  6%, 10% {
    -webkit-clip-path: polygon(0% 40%, 100% 40%, 100% 42%, 0% 42%);
    clip-path: polygon(0% 40%, 100% 40%, 100% 42%, 0% 42%);
  }
  11%, 15% {
    -webkit-clip-path: polygon(0% 75%, 100% 75%, 100% 80%, 0% 80%);
    clip-path: polygon(0% 75%, 100% 75%, 100% 80%, 0% 80%);
  }
  16%, 20% {
    -webkit-clip-path: polygon(0% 20%, 100% 20%, 100% 22%, 0% 22%);
    clip-path: polygon(0% 20%, 100% 20%, 100% 22%, 0% 22%);
  }
  21%, 25% {
    -webkit-clip-path: polygon(0% 87%, 100% 87%, 100% 93%, 0% 93%);
    clip-path: polygon(0% 87%, 100% 87%, 100% 93%, 0% 93%);
  }
  26%, 30% {
    -webkit-clip-path: polygon(0% 30%, 100% 30%, 100% 45%, 0% 45%);
    clip-path: polygon(0% 30%, 100% 30%, 100% 45%, 0% 45%);
  }
  31%, 50% {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  }
  51%, 55% {
    -webkit-clip-path: polygon(0% 10%, 100% 10%, 100% 15%, 0% 15%);
    clip-path: polygon(0% 10%, 100% 10%, 100% 15%, 0% 15%);
  }
  56%, 60% {
    -webkit-clip-path: polygon(0% 40%, 100% 40%, 100% 42%, 0% 42%);
    clip-path: polygon(0% 40%, 100% 40%, 100% 42%, 0% 42%);
  }
  61%, 65% {
    -webkit-clip-path: polygon(0% 75%, 100% 75%, 100% 80%, 0% 80%);
    clip-path: polygon(0% 75%, 100% 75%, 100% 80%, 0% 80%);
  }
  66%, 70% {
    -webkit-clip-path: polygon(0% 20%, 100% 20%, 100% 22%, 0% 22%);
    clip-path: polygon(0% 20%, 100% 20%, 100% 22%, 0% 22%);
  }
  71%, 75% {
    -webkit-clip-path: polygon(0% 87%, 100% 87%, 100% 93%, 0% 93%);
    clip-path: polygon(0% 87%, 100% 87%, 100% 93%, 0% 93%);
  }
  76%, 80% {
    -webkit-clip-path: polygon(0% 30%, 100% 30%, 100% 45%, 0% 45%);
    clip-path: polygon(0% 30%, 100% 30%, 100% 45%, 0% 45%);
  }
  81%, 85% {
    -webkit-clip-path: polygon(0% 20%, 100% 20%, 100% 22%, 0% 22%);
    clip-path: polygon(0% 20%, 100% 20%, 100% 22%, 0% 22%);
  }
  86%, 95% {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  }
}
@keyframes bgGlitch2 {
  0%, 5% {
    -webkit-clip-path: polygon(0% 10%, 100% 10%, 100% 15%, 0% 15%);
    clip-path: polygon(0% 10%, 100% 10%, 100% 15%, 0% 15%);
  }
  6%, 10% {
    -webkit-clip-path: polygon(0% 40%, 100% 40%, 100% 42%, 0% 42%);
    clip-path: polygon(0% 40%, 100% 40%, 100% 42%, 0% 42%);
  }
  5%, 15% {
    -webkit-clip-path: polygon(0% 75%, 100% 75%, 100% 80%, 0% 80%);
    clip-path: polygon(0% 75%, 100% 75%, 100% 80%, 0% 80%);
  }
  16%, 20% {
    -webkit-clip-path: polygon(0% 20%, 100% 20%, 100% 22%, 0% 22%);
    clip-path: polygon(0% 20%, 100% 20%, 100% 22%, 0% 22%);
  }
  21%, 25% {
    -webkit-clip-path: polygon(0% 87%, 100% 87%, 100% 93%, 0% 93%);
    clip-path: polygon(0% 87%, 100% 87%, 100% 93%, 0% 93%);
  }
  26%, 30% {
    -webkit-clip-path: polygon(0% 30%, 100% 30%, 100% 45%, 0% 45%);
    clip-path: polygon(0% 30%, 100% 30%, 100% 45%, 0% 45%);
  }
  31%, 50% {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    background-position-x: -292.5px;
  }
}
@keyframes imgScale {
  0% {
    transform: scale(1.07) rotate(-3deg);
  }
  25% {
    transform: scale(1.05) rotate(3deg);
  }
  50% {
    transform: scale(1.03) rotate(-1.5deg);
  }
  75% {
    transform: scale(1.01) rotate(1.5deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
@keyframes blackTape {
  0% {
    background-position: 0;
  }
  100% {
    background-position-x: 752px;
  }
}
@keyframes redTape {
  0% {
    background-position: 0;
  }
  100% {
    background-position-x: -585px;
  }
}
@media screen and (max-width: 899px) {
  @keyframes blackTape {
    0% {
      background-position: 0;
    }
    100% {
      background-position-x: 376px;
    }
  }
  @keyframes redTape {
    0% {
      background-position: 0;
    }
    100% {
      background-position-x: -292.5px;
    }
  }
}
.c-title {
  margin: 0 auto;
  width: 43%;
}
.c-title img {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
  opacity: 0;
  transform: scale(1.07) rotate(8deg);
  transition: transform 0.5s var(--ease-main), opacity 0.5s var(--ease-main);
}
.p-scroll.is-active .c-title img {
  opacity: 1;
  transform: scale(1) rotate(0);
}
.p-scroll.is-active .c-title .c-title__text {
  animation: imgScale 1s steps(1) 0.2s forwards;
}
.is-load.--in .c-title img {
  opacity: 1;
  transform: scale(1) rotate(0);
}
.is-load.--in .c-title .c-title__text {
  animation: imgScale 1s steps(1) 0.2s forwards;
}
@media screen and (max-width: 899px) {
  .c-title {
    width: 90%;
  }
}

.c-title__text {
  transform: scale(1.07) rotate(-3deg);
}
.c-title__text img {
  width: 100%;
}

.c-pagination__list {
  display: flex;
  justify-content: center;
  gap: 35px;
}
@media screen and (max-width: 899px) {
  .c-pagination__list {
    gap: 26px;
  }
}

.c-pagination__item {
  font-family: var(--font-en);
  font-size: 2.3rem;
}
@media screen and (max-width: 899px) {
  .c-pagination__item {
    font-size: 1.8rem;
  }
}
.c-pagination__item.is-current a {
  pointer-events: none;
  opacity: 1;
}
.c-pagination__item a {
  display: block;
  transition: color 0.5s var(--ease-main), border-color 0.5s var(--ease-main), opacity 0.5s var(--ease-main);
  opacity: 0.25;
}
@media (hover: hover) {
  .c-pagination__item a:hover {
    opacity: 1;
    color: var(--color-red);
  }
}

.c-link {
  display: block;
  background-color: var(--color-red);
  box-sizing: border-box;
  border: 1px solid var(--color-red);
  position: relative;
  padding: 12px;
  transition: background-color 0.6s var(--ease-main), border-color 0.6s var(--ease-main);
}
@media (hover: hover) {
  .c-link:hover {
    background-color: var(--color-black);
  }
  .c-link:hover .c-link__text {
    color: var(--color-red);
  }
  .c-link:hover .c-link__icon {
    background-color: var(--color-red);
  }
}
@media screen and (max-width: 899px) {
  .c-link {
    padding: 14px;
  }
}
.c-link.--outline {
  background-color: transparent;
  border: 1px solid var(--color-white);
  transition: background-color 0.6s var(--ease-main), border-color 0.6s var(--ease-main);
}
@media (hover: hover) {
  .c-link.--outline:hover {
    border-color: var(--color-red);
  }
}

.c-link__text {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-family: var(--font-en);
  transition: color 0.6s var(--ease-main);
}
.--back .c-link__text {
  padding-left: 14px;
}
@media screen and (max-width: 899px) {
  .c-link__text {
    font-size: 1.3rem;
  }
  .--back .c-link__text {
    padding-left: 8px;
  }
}

.c-link__icon {
  width: 15px;
  height: 15px;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-mask: url(../img/arrow.png) no-repeat center/contain;
  mask: url(../img/arrow.png) no-repeat center/contain;
  background-color: var(--color-white);
  transition: background-color 0.6s var(--ease-main);
}
.--back .c-link__icon {
  right: auto;
  left: 14px;
  transform: translateY(-50%) rotate(-180deg);
}

.l-wrap {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}

.l-main {
  position: relative;
}

.l-bg__glitch {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  mix-blend-mode: difference;
}
.l-bg__glitch-item {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}
.l-bg__glitch-item::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  filter: brightness(3);
}
.l-bg__glitch-item:nth-of-type(1) {
  background: url(../img/bg/bg_glitch1.png) no-repeat center/cover;
}
.l-bg__glitch-item:nth-of-type(1)::before {
  background: url(../img/bg/bg_glitch1.png) no-repeat center/cover;
  transform: translate(-50%, -50%) scale(1.04);
}
.is-load .l-bg__glitch-item:nth-of-type(1)::before {
  animation: bgGlitch1 2s linear forwards infinite;
}
.l-bg__glitch-item:nth-of-type(2) {
  background: url(../img/bg/bg_glitch2.png) no-repeat center/cover;
}
.l-bg__glitch-item:nth-of-type(2)::before {
  transform: translate(-50%, -50%) scale(1.2);
  background: url(../img/bg/bg_glitch2.png) no-repeat center/cover;
}
.is-load .l-bg__glitch-item:nth-of-type(2)::before {
  animation: bgGlitch2 2s linear forwards infinite;
}

.l-in {
  padding: 107px 0 229px;
}
@media screen and (max-width: 899px) {
  .l-in {
    padding: 100px 0 74px;
  }
}

.l-in__header {
  margin-bottom: 48px;
}
@media screen and (max-width: 899px) {
  .l-in__header {
    margin-bottom: 23px;
  }
}
.l-header__deco-item {
  position: absolute;
  top: 0;
  filter: blur(10px);
  opacity: 0;
  transform: translateY(-10px);
  transition: filter 0.8s var(--ease-main), opacity 0.8s var(--ease-main), transform 0.8s var(--ease-main);
}
.is-load .l-header__deco-item {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}
.l-header__deco-item:nth-of-type(1) {
  width: 40%;
  left: 0;
}
@media screen and (max-width: 899px) {
  .l-header__deco-item:nth-of-type(1) {
    width: 100%;
  }
}
.l-header__deco-item:nth-of-type(2) {
  width: 40%;
  right: 0;
}
.l-header__deco img {
  width: 100%;
}

.l-header__logo {
  width: 200px;
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 1;
  opacity: 0;
  transform: translateX(-10px);
  transition: transform 0.8s var(--ease-main), opacity 0.8s var(--ease-main);
}
@media (hover: hover) {
  .l-header__logo:hover img {
    transform: scale(0.95);
  }
}
.is-load .l-header__logo {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 899px) {
  .l-header__logo {
    width: 150px;
    top: 16px;
    left: 15px;
  }
}
.l-header__logo img {
  width: 100%;
  transition: transform 0.4s var(--ease-main);
}
.l-header__logo-link {
  display: block;
}

.l-header__link {
  width: 110px;
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 11;
  opacity: 0;
  transform: translateX(10px);
  transition: transform 0.8s var(--ease-main), opacity 0.8s var(--ease-main);
}
@media (hover: hover) {
  .l-header__link:hover img {
    transform: scale(0.95);
  }
}
.is-load .l-header__link {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 899px) {
  .l-header__link {
    width: 80px;
    top: 16px;
    right: 16px;
  }
}
.l-header__link-text {
  width: 100%;
}
.l-header__link-text-item {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.l-header__link-text-item.--open {
  opacity: 0;
  position: relative;
}
.is-menu-open .l-header__link-text-item.--open {
  opacity: 1;
}
.is-menu-open .l-header__link-text-item.--close {
  opacity: 0;
}
.l-header__link-text img {
  width: 100%;
  transition: transform 0.4s var(--ease-main);
}
.l-header__link-btn {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  cursor: pointer;
}

.l-header__menu {
  width: 100%;
  height: 100%;
  position: fixed;
  overflow: auto;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s var(--ease-main);
  background: url(../img/bg/bg_graffiti.jpg) repeat left top/2000px;
}
@media screen and (max-width: 899px) {
  .l-header__menu {
    background: url(../img/bg/bg_graffiti.jpg) repeat left top/1000px;
  }
}
.is-menu-open .l-header__menu {
  opacity: 1;
  pointer-events: auto;
}
.l-header__menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px 0;
  min-height: -webkit-fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
  position: relative;
}
.l-header__menu-list {
  width: 77.4%;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1100px) {
  .l-header__menu-list {
    width: 90%;
  }
}
@media screen and (max-width: 1100px) and (max-width: 899px) {
  .l-header__menu-list {
    display: block;
    width: 79.7%;
    margin: 0 auto 90px;
  }
}
.l-header__menu-item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--font-en);
  font-size: 7.2rem;
  letter-spacing: 0.01em;
  font-weight: 700;
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 0.4s var(--ease-main), transform 0.4s var(--ease-main);
}
.l-header__menu-item:nth-of-type(1) {
  transition-delay: 0.05s;
}
.l-header__menu-item:nth-of-type(2) {
  transition-delay: 0.1s;
}
.l-header__menu-item:nth-of-type(3) {
  transition-delay: 0.15s;
}
.l-header__menu-item:nth-of-type(4) {
  transition-delay: 0.2s;
}
.l-header__menu-item:nth-of-type(5) {
  transition-delay: 0.25s;
}
.l-header__menu-item:nth-of-type(6) {
  transition-delay: 0.3s;
}
.l-header__menu-item:nth-of-type(7) {
  transition-delay: 0.35s;
}
.l-header__menu-item:nth-of-type(8) {
  transition-delay: 0.4s;
}
.l-header__menu-item:nth-of-type(9) {
  transition-delay: 0.45s;
}
.l-header__menu-item:nth-of-type(10) {
  transition-delay: 0.5s;
}
.is-menu-open .l-header__menu-item {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .l-header__menu-item {
    font-size: 3.5rem;
  }
  .l-header__menu-item + .l-header__menu-item {
    margin-top: 14px;
  }
}
.l-header__menu-link {
  display: block;
  transition: color 0.4s var(--ease-main);
  cursor: pointer;
}
@media (hover: hover) {
  .l-header__menu-link:hover {
    color: var(--color-red);
  }
}
.l-header__menu-sns {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .l-header__menu-sns {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
  }
}
.l-header__menu-sns-list {
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 899px) {
  .l-header__menu-sns-list {
    display: block;
  }
}
.l-header__menu-sns-item {
  width: 240px;
  border-radius: 50rem;
  position: relative;
  overflow: hidden;
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 0.6s var(--ease-main), transform 0.6s var(--ease-main);
}
.l-header__menu-sns-item:nth-of-type(1) {
  transition-delay: 0.1s;
}
.l-header__menu-sns-item:nth-of-type(2) {
  transition-delay: 0.2s;
}
.l-header__menu-sns-item:nth-of-type(3) {
  transition-delay: 0.3s;
}
.l-header__menu-sns-item:nth-of-type(4) {
  transition-delay: 0.4s;
}
.is-menu-open .l-header__menu-sns-item {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .l-header__menu-sns-item {
    width: 200px;
    margin: 0 auto;
  }
  .l-header__menu-sns-item + .l-header__menu-sns-item {
    margin-top: 10px;
  }
}
.l-header__menu-sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 3px 4px 4px;
  background-color: var(--color-red);
  transition: background-color 0.5s var(--ease-main), color 0.5s var(--ease-main);
}
@media (hover: hover) {
  .l-header__menu-sns-link:hover {
    color: var(--color-red);
    background-color: var(--color-white);
  }
  .l-header__menu-sns-link:hover .l-header__menu-sns-icon svg {
    fill: var(--color-red);
  }
}
@media screen and (max-width: 899px) {
  .l-header__menu-sns-link {
    display: block;
    text-align: center;
    padding: 10px;
  }
}
.l-header__menu-sns-icon {
  width: 24px;
  height: 24px;
  position: relative;
  top: 1px;
}
@media screen and (max-width: 899px) {
  .l-header__menu-sns-icon {
    width: 22px;
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.l-header__menu-sns-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: var(--color-white);
  transition: fill 0.5s var(--ease-main);
}
.l-header__menu-sns-text {
  font-family: var(--font-en);
  font-size: 1.7rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 899px) {
  .l-header__menu-sns-text {
    font-size: 1.2rem;
    padding-left: 10px;
    letter-spacing: 0.08em;
  }
}

.l-footer {
  padding: 68px 0 60px;
  position: relative;
  background: url(../img/bg/graffiti_bottom_pc.png) no-repeat bottom/100% auto;
}
@media screen and (max-width: 899px) {
  .l-footer {
    padding: 82px 0 30px;
  }
}
.l-footer::before, .l-footer::after {
  content: "";
  display: block;
  width: 110%;
  position: absolute;
  left: 50%;
  z-index: 1;
}
.l-footer::before {
  height: 90px;
  top: -108px;
  background: url(../img/line_black.jpg) repeat-x left top/752px 90px;
  transform: translateX(-50%) rotate(5deg);
  animation: blackTape 14s linear infinite;
}
@media screen and (max-width: 899px) {
  .l-footer::before {
    height: 45px;
    top: -20px;
    transform: translateX(-50%) rotate(4deg);
    background: url(../img/line_black.jpg) repeat-x left top/376px 45px;
  }
}
.l-footer::after {
  height: 70px;
  top: -71px;
  transform: translateX(-50%) rotate(-2.5deg);
  background: url(../img/line_red.jpg) repeat-x left top/585px 70px;
  animation: redTape 10s linear infinite;
}
@media screen and (max-width: 899px) {
  .l-footer::after {
    height: 35px;
    top: -6px;
    transform: translateX(-50%) rotate(-7deg);
    background: url(../img/line_red.jpg) repeat-x left top/292.5px 35px;
  }
}

.l-footer__share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 41px;
}
@media screen and (max-width: 899px) {
  .l-footer__share {
    gap: 12px;
    margin-bottom: 31px;
  }
}
.l-footer__share-head {
  font-family: var(--font-en);
  font-size: 2rem;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 899px) {
  .l-footer__share-head {
    font-size: 1.5rem;
  }
}
.l-footer__share-list {
  display: flex;
  align-items: center;
  gap: 10px;
}
.l-footer__share-item {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  background: url(../img/frame_sns.png) no-repeat center/contain;
  transition: transform 0.6s var(--ease-main);
}
@media (hover: hover) {
  .l-footer__share-item:hover {
    transform: scale(0.95);
  }
}
@media screen and (max-width: 899px) {
  .l-footer__share-item {
    width: 50px;
    height: 50px;
  }
}
.l-footer__share-link {
  display: block;
}
.l-footer__share-link svg {
  display: block;
  width: 50%;
  height: 50%;
  margin: 0 auto;
  fill: var(--color-white);
}
.l-footer__banner {
  width: 90%;
  margin: 0 auto;
}
.l-footer__banner-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 899px) {
  .l-footer__banner-list {
    justify-content: flex-start;
  }
}
.l-footer__banner-item {
  width: 200px;
  position: relative;
}
@media (hover: hover) {
  .l-footer__banner-item:hover::before {
    opacity: 0.4;
  }
}
.l-footer__banner-item::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-red);
  opacity: 0;
  transition: opacity 0.6s var(--ease-main);
  pointer-events: none;
}
@media screen and (max-width: 899px) {
  .l-footer__banner-item {
    width: calc(50% - 5px);
  }
}
.l-news_list__item {
  transition: -webkit-clip-path 1s var(--ease-main);
  transition: clip-path 1s var(--ease-main);
  transition: clip-path 1s var(--ease-main), -webkit-clip-path 1s var(--ease-main);
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.l-news_list__item:nth-of-type(1) {
  transition-delay: 0.1s;
}
.l-news_list__item:nth-of-type(2) {
  transition-delay: 0.2s;
}
.l-news_list__item:nth-of-type(3) {
  transition-delay: 0.3s;
}
.l-news_list__item:nth-of-type(4) {
  transition-delay: 0.4s;
}
.l-news_list__item:nth-of-type(5) {
  transition-delay: 0.5s;
}
.l-news_list__item:nth-of-type(6) {
  transition-delay: 0.6s;
}
.l-news_list__item:nth-of-type(7) {
  transition-delay: 0.7s;
}
.l-news_list__item:nth-of-type(8) {
  transition-delay: 0.8s;
}
.l-news_list__item:nth-of-type(9) {
  transition-delay: 0.9s;
}
.l-news_list__item:nth-of-type(10) {
  transition-delay: 1s;
}
.p-scroll.is-active .l-news_list__item {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.is-load.--in .l-news_list__item {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.l-news_list__item + .l-news_list__item {
  margin-top: 10px;
}
.l-news_list__item-link {
  display: block;
  padding: 22px 55px 27px 20px;
  background-color: var(--color-black);
  position: relative;
}
.l-news_list__item-link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-red);
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  transition: -webkit-clip-path 0.7s var(--ease-main);
  transition: clip-path 0.7s var(--ease-main);
  transition: clip-path 0.7s var(--ease-main), -webkit-clip-path 0.7s var(--ease-main);
}
@media screen and (min-width: 900px) {
  .l-news_list__item-link:hover::before {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@media screen and (max-width: 899px) {
  .l-news_list__item-link {
    padding: 11px 30px 13px 14px;
  }
}

.l-news_list__inner {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 899px) {
  .l-news_list__inner {
    display: block;
  }
}

.l-news_list__date {
  padding-left: 20px;
  color: var(--color-white);
  font-family: var(--font-en);
  position: relative;
}
@media screen and (max-width: 899px) {
  .l-news_list__date {
    padding-left: 13px;
  }
}
.l-news_list__date-year {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  writing-mode: vertical-lr;
  position: absolute;
  left: 0;
  top: 58%;
  transform: translateY(-50%);
}
@media screen and (max-width: 899px) {
  .l-news_list__date-year {
    font-size: 1rem;
  }
}
.l-news_list__date-day {
  font-size: 4rem;
  letter-spacing: 0.015em;
  font-weight: 700;
}
@media screen and (max-width: 899px) {
  .l-news_list__date-day {
    font-size: 2.2rem;
  }
}

.l-news_list__title {
  font-size: 1.5rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 899px) {
  .l-news_list__title {
    margin-top: 7px;
    font-size: 1.2rem;
  }
}

.l-news_list__icon {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-mask: url(../img/arrow.png) no-repeat center/contain;
  mask: url(../img/arrow.png) no-repeat center/contain;
  background-color: var(--color-white);
}
@media screen and (max-width: 899px) {
  .l-news_list__icon {
    width: 15px;
    height: 15px;
    right: 10px;
  }
}

.l-news_detail__head {
  margin-bottom: 5px;
  padding: 45px 70px 36px;
  background-color: var(--color-black);
}
@media screen and (max-width: 899px) {
  .l-news_detail__head {
    margin-bottom: 3px;
    padding: 25px 20px 23px;
  }
}
.l-news_detail__head-date {
  margin-bottom: 8px;
  font-family: var(--font-en);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 899px) {
  .l-news_detail__head-date {
    font-size: 1.1rem;
  }
}
.l-news_detail__head-title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 899px) {
  .l-news_detail__head-title {
    font-size: 1.4rem;
    line-height: 1.3;
  }
}

.l-news_detail__contents {
  padding: 47px 70px;
  font-size: 1.5rem;
  line-height: 2;
  background-color: var(--color-black);
}
@media screen and (max-width: 899px) {
  .l-news_detail__contents {
    padding: 25px 20px 34px;
    font-size: 1.2rem;
    line-height: 1.9;
  }
}
.l-news_detail__contents img {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.l-news_detail__contents iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.l-news_detail__contents a {
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: color 0.8s var(--ease-main);
}
@media (hover: hover) {
  .l-news_detail__contents a:hover {
    color: var(--color-red);
  }
}

@media screen and (max-width: 899px) {
  .is-modal-overflow-prep .m-modal-custom.m-modal .m-modal__content {
    margin: 22px auto;
  }
}
.m-modal-custom.m-modal .m-modal__content {
  max-width: 1080px;
}
.m-modal-custom.m-modal .m-modal__bg {
  background: url(../img/bg/bg_graffiti.jpg) repeat left top/2000px;
}
@media screen and (max-width: 899px) {
  .m-modal-custom.m-modal .m-modal__bg {
    background: url(../img/bg/bg_graffiti.jpg) repeat left top/1000px;
  }
}
.m-modal-custom.m-modal .m-modal__close-btn {
  width: 110px;
  height: auto;
  top: 30px;
  right: 28px;
}
@media (hover: hover) {
  .m-modal-custom.m-modal .m-modal__close-btn:hover img {
    transform: scale(0.95);
  }
}
.m-modal-custom.m-modal .m-modal__close-btn::before, .m-modal-custom.m-modal .m-modal__close-btn::after {
  display: none;
}
.m-modal-custom.m-modal .m-modal__close-btn img {
  width: 100%;
  transition: transform 0.7s var(--ease-main);
}
@media screen and (max-width: 899px) {
  .m-modal-custom.m-modal .m-modal__close-btn {
    width: 80px;
    top: 16px;
    right: 14px;
    z-index: 1;
  }
}