html {
  overflow-x: hidden;
  overflow-y: scroll;
  font-size: 0.625em;
}

body {
  font-family: a-otf-gothic-bbb-pr6n, sans-serif;
}

a {
  text-decoration: none;
  color: #0d0d0d;
}

li {
  list-style: none;
}

@media screen and (min-width: 769px) {
  .global-nav {
    opacity: 0;
    transform: translateX(30px);
  }
  .is-load .global-nav {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1) 0.45s, transform 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.45s;
  }
}

.c-pagenation {
  text-align: center;
}
.c-pagenation__wrap {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.c-pagenation__wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 28px;
  position: absolute;
  background-color: #f5f5f5;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.c-pagenation__prev {
  padding: 10px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.c-pagenation__next {
  padding: 10px;
  margin-left: 15px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.c-pagenation__list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-pagenation__list li {
  font-family: "Roboto Mono", monospace;
  font-size: 1.8rem;
  margin-left: 15px;
}
.c-pagenation__list li a {
  padding: 5px;
}
@media screen and (min-width: 768px) {
  .c-pagenation__list a {
    transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .c-pagenation__list a:hover {
    opacity: 0.6;
  }
  .c-pagenation__prev {
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .c-pagenation__prev:hover {
    transform: translateX(-10px);
  }
  .c-pagenation__prev:hover .c-arrow::before {
    transform: translateY(5px);
  }
  .c-pagenation__next {
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .c-pagenation__next:hover {
    transform: translateX(10px);
  }
  .c-pagenation__next:hover .c-arrow::before {
    transform: translateY(5px);
    z-index: 1;
  }
}
@media screen and (max-width: 768px) {
  .c-pagenation {
    justify-content: flex-start;
  }
  .c-pagenation__bg::before {
    left: 0;
    transform: translateX(0%);
    width: 286px;
    height: 22px;
  }
  .c-pagenation__list li {
    font-size: 1.4rem;
  }
}

.main-title {
  display: flex;
  font-family: "Roboto Mono", monospace;
  align-items: center;
  font-size: 6.4rem;
}
.main-title h2 {
  font-weight: 400;
}
.main-title::before {
  content: "";
  display: block;
  width: 2px;
  height: 70px;
  margin-right: 40px;
  background-color: #0d0d0d;
}

.sns__content {
  font-family: "Roboto Mono", monospace;
}
.sns__content__list {
  display: flex;
}
.sns__content__list--top {
  position: absolute;
  right: 28px;
  bottom: 25px;
  opacity: 0;
  transform: translateX(30px);
}
.is-load .sns__content__list--top {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1) 0.6s, transform 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.6s;
}
.sns__content__list__item {
  display: flex;
  align-items: baseline;
  margin-left: 15px;
  font-size: 1.2rem;
}
.sns__content__list__item::before {
  content: "[";
  display: block;
  width: 5px;
  height: 20px;
  transform: translateY(-2px);
}
.sns__content__list__item::after {
  content: "]";
  display: block;
  width: 5px;
  height: 20px;
  transform: translateY(-2px);
}
.sns__content__list__item a {
  display: flex;
  align-items: center;
  padding: 15px 10px;
}
.sns__content__list__item--tw a::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url("../img/icon_twitter.svg") center no-repeat;
  margin-right: 7px;
  background-size: contain;
}
.sns__content__list__item--tk a::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url("../img/icon_tiktok.svg") center no-repeat;
  margin-right: 7px;
  background-size: contain;
}
.sns__content__list__item--yt a::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url("../img/icon_youtube.svg") center no-repeat;
  margin-right: 7px;
  background-size: contain;
}

.c-arrow {
  transform: translate(-10px) rotate(-90deg);
}
.c-arrow::before {
  content: "";
  display: block;
  width: 2px;
  height: 20px;
  margin: 0 auto;
  background-color: #0d0d0d;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.c-arrow::after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 12px;
  height: 12px;
  border-top: 2px solid #0d0d0d;
  border-left: 2px solid #0d0d0d;
  transform: translateY(-8px) rotate(-135deg);
}
.c-arrow--scroll {
  cursor: pointer;
  transform: translate(0) rotate(0deg);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.c-arrow--scroll::before {
  width: 3px;
  height: 52px;
}
.c-arrow--scroll::after {
  width: 13px;
  height: 13px;
}
.c-arrow--scroll:hover {
  transform: translateY(7px) rotate(0deg);
}
.c-arrow--scroll:hover::before {
  transform: translateY(7px) rotate(0deg);
}
.c-arrow--news {
  margin-left: 30px;
}
.c-arrow--prev {
  transform: translate(5px) rotate(90deg);
}
.c-arrow--prev::before {
  height: 15px;
  width: 1px;
}
.c-arrow--prev::after {
  border-width: 1px;
}
.c-arrow--news::before {
  height: 15px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.c-arrow--news::after {
  width: 10px;
  height: 10px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.c-arrow--next {
  transform: translate(-5px) rotate(-90deg);
}
.c-arrow--next::before {
  height: 15px;
  width: 1px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.c-arrow--next::after {
  border-width: 1px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.c-arrow--creator {
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.c-arrow--creator::before {
  width: 1px;
}
.c-arrow--creator::after {
  border-width: 1px;
}
.c-arrow--contact {
  position: absolute;
  right: 25px;
  bottom: 18px;
  transform: translate(0) rotate(-90deg);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.c-arrow--contact::before {
  width: 1px;
}
.c-arrow--contact::after {
  border-width: 1px;
}

@media screen and (max-width: 768px) {
  .main-title {
    font-size: 4rem;
  }
  .main-title::before {
    height: 55px;
    margin-right: 28px;
  }
  .sns__content__list--top {
    right: 15px;
    bottom: 13px;
  }
  .sns__content__list__item {
    font-size: 1rem;
  }
  .sns__content__list__item a {
    padding: 10px 4px;
  }
  .sns__content__list__item--tw a::before {
    width: 10px;
    height: 10px;
    background: url("../img/icon_twitter.svg") center no-repeat;
    margin-right: 7px;
    background-size: contain;
  }
  .sns__content__list__item--tk a::before {
    width: 10px;
    height: 10px;
    margin-right: 7px;
  }
  .sns__content__list__item--yt a::before {
    width: 10px;
    height: 10px;
    margin-right: 7px;
  }
  .sns__content__list__item--footer {
    margin-left: 0;
    margin-right: 15px;
  }
  .c-arrow {
    transform: translate(-4px) rotate(-90deg);
  }
  .c-arrow::before {
    width: 1px;
    height: 12px;
  }
  .c-arrow::after {
    width: 7px;
    height: 7px;
    transform: translateY(-4px) rotate(-135deg);
    border-width: 1px;
  }
  .c-arrow--scroll {
    transform: translate(0) rotate(0);
  }
  .c-arrow--scroll::before {
    width: 2px;
    height: 46px;
    transform: translateY(-6px);
  }
  .c-arrow--scroll::after {
    width: 10px;
    height: 10px;
  }
  .c-arrow--prev {
    transform: translate(0) rotate(90deg);
  }
  .c-arrow--contact {
    right: 14px;
    bottom: 12px;
  }
}
.is-hide {
  display: none;
}

.l__wrap {
  width: 87.5%;
  max-width: 1245px;
  margin: 0 auto;
}
.l__border--bottom {
  border-bottom: 3px solid #0d0d0d;
}
.l__border--top {
  border-top: 3px solid #0d0d0d;
}
.l__bg--peaper {
  background: url("../img/bg_noise_ptn.png");
  background-size: 100px;
  animation: is-noise 1s steps(10) infinite;
}
.l__bg--graph {
  background: url("../img/bg_grid_ptn.svg");
  background-size: 35px;
}

@media screen and (max-width: 768px) {
  .l__wrap {
    width: 92%;
  }
  .l__border--bottom {
    border-bottom: 2px solid #0d0d0d;
  }
  .l__border--top {
    border-top: 2px solid #0d0d0d;
  }
}
.header {
  height: 0;
}

.global-nav {
  position: relative;
  top: 30px;
  font-family: "Roboto Mono", monospace;
  z-index: 1;
}
.global-nav__list {
  display: flex;
  justify-content: flex-end;
  margin-right: 15px;
}
.global-nav__list__item {
  margin-right: 15px;
  position: relative;
  font-size: 2.2rem;
  cursor: pointer;
}
.global-nav__list__item__link {
  display: inline-block;
  padding: 5px;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .global-nav {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 3;
  }
  .global-nav--in {
    display: none;
  }
  .global-nav--bg {
    display: block;
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: -1;
    background-color: #fff;
    opacity: 0.9;
  }
  .global-nav__list {
    display: block;
    justify-content: center;
    margin-right: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .global-nav__list__item {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 18px;
    font-size: 1.9rem;
  }
  .global-nav__list__item:last-of-type {
    margin-bottom: 0;
  }
  .menu-btn {
    padding: 10px;
    position: fixed;
    top: 6px;
    right: 8px;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1) 0.6s, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .is-load .menu-btn {
    opacity: 1;
  }
  .menu-btn--top {
    position: absolute;
  }
  .menu-btn--in {
    transform: translateY(-165%);
    pointer-events: none;
  }
  .menu-btn--in.is-active {
    transform: translateY(0);
    pointer-events: fill;
  }
  .menu-btn__item {
    width: 42px;
    height: 1px;
    margin-bottom: 7px;
    background-color: #0d0d0d;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  }
}
.main-visual {
  overflow: hidden;
  position: relative;
  height: 100vh;
}
.main-visual__code {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 0.9rem;
  font-family: "Roboto Mono", monospace;
  line-height: 1.5;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateX(-30px);
}
.is-load .main-visual__code {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1) 0.45s, transform 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.45s;
}
.main-visual__eyecatch {
  width: 478px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main-visual__eyecatch-img {
  width: 100%;
  position: relative;
  opacity: 0;
}
.is-op .main-visual__eyecatch-img {
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(0.65, 0, 0.35, 1) 2.25s;
}
.is-load .main-visual__eyecatch-img {
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0.2s;
}
.main-visual__eyecatch::before {
  content: "";
  width: 0;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  left: 51.5%;
  transform: translate(-50%, 0);
  border-top: 1px solid #0d0d0d;
  overflow: hidden;
  box-sizing: border-box;
}
.is-op .main-visual__eyecatch::before {
  width: 82.8%;
  top: 10%;
  opacity: 0;
  transition: width 1.6s cubic-bezier(0.76, 0, 0.24, 1), top 0.6s cubic-bezier(0.65, 0, 0.35, 1) 2s, opacity 0.6s cubic-bezier(0.65, 0, 0.35, 1) 2.25s;
}
.main-visual__eyecatch::after {
  content: "";
  width: 0%;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  left: 51.5%;
  transform: translate(-50%, 0);
  border-top: 1px solid #0d0d0d;
  overflow: hidden;
  box-sizing: border-box;
}
.is-op .main-visual__eyecatch::after {
  width: 82.8%;
  top: 90%;
  opacity: 0;
  transition: width 0s linear 2s, top 0.6s cubic-bezier(0.65, 0, 0.35, 1) 2s, opacity 0.6s cubic-bezier(0.65, 0, 0.35, 1) 2.25s;
}
.main-visual__scroll {
  position: absolute;
  bottom: 25px;
  left: 16px;
  font-family: "Roboto Mono", monospace;
  opacity: 0;
  transform: translateX(-20px);
}
.main-visual__scroll__text {
  margin: 15px;
  font-size: 1.1rem;
}
.is-load .main-visual__scroll {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1) 0.6s, transform 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.6s;
}
.main-visual__info {
  width: 568px;
  position: absolute;
  left: 50%;
  top: 14.3%;
  transform: translate(-50%, -10px);
  opacity: 0;
}
.is-load .main-visual__info {
  opacity: 1;
  transform: translateX(-50%);
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1) 0.8s, transform 1s cubic-bezier(0.25, 1, 0.5, 1) 0.8s;
}
@media screen and (max-width: 768px) {
  .main-visual__info {
    width: 75.8%;
    top: 23.9%;
  }
}
.main-visual__info-title {
  padding-bottom: 16px;
  font-size: 1.7rem;
  font-weight: 500;
  text-align: center;
  color: #AF0000;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .main-visual__info-title {
    padding-bottom: 12px;
    font-size: 1.4rem;
  }
}
.main-visual__info-main {
  margin-top: 14px;
  font-size: 1.7rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .main-visual__info-main {
    margin-top: 11px;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.75;
  }
}
.main-visual__info-main a {
  display: block;
  color: #000;
}
@media screen and (min-width: 768px) {
  .main-visual__info-main a:hover {
    text-decoration: underline;
  }
}

@media screen and (max-width: 768px) {
  .main-visual__code {
    transform: scale(0.8);
    top: 15px;
    left: 15px;
  }
  .main-visual__code__text {
    margin-bottom: 4px;
  }
  .main-visual__eyecatch {
    width: 62.5%;
    top: 50%;
  }
  .main-visual__scroll {
    bottom: 8px;
    left: 0px;
  }
}
@media screen and (max-width: 414px) {
  .main-visual__eyecatch {
    width: 77%;
    top: 52.3%;
  }
}
.news {
  background-color: #f5f5f5;
}
.news--wrap {
  padding: 120px 0 120px;
}
.news__content {
  padding: 58px 0 70px;
}
.news__content__list {
  display: flex;
  flex-wrap: wrap;
}
.news__content__list__item {
  width: 23.5%;
  margin-right: 2%;
}
.news__content__list__item:nth-of-type(4n) {
  margin-right: 0;
}
.news__content__list__item .p-in__data {
  margin-bottom: 15px;
  font-family: "Roboto Mono", monospace;
  font-size: 1.2rem;
  font-weight: 600;
}
.news__content__list__item .p-in__image {
  margin-bottom: 24px;
  overflow: hidden;
  border: 3px solid #0d0d0d;
}
.news__content__list__item .p-in__image img {
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  height: 182px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.news__content__list__item .p-in__title {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.news__content__list__item .p-in__title h3 {
  font-weight: normal;
}
.news__link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  position: relative;
  font-family: "Roboto Mono", monospace;
  font-size: 2rem;
}
.news__link::before {
  content: "[";
  display: block;
  width: 5px;
  height: 20px;
  transform: translateY(-2px);
  z-index: 1;
}
.news__link::after {
  content: "]";
  display: block;
  width: 5px;
  height: 20px;
  transform: translate(-10px, -2px);
}
.news__link__bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 3px;
  left: 0;
  background-color: #fff;
}
.news__link a {
  display: flex;
  align-items: center;
  padding: 0 15px 2px;
  z-index: 1;
}
.news__link .c-link::after {
  width: 10px;
  height: 10px;
  padding-right: 15px;
}

@media screen and (max-width: 768px) {
  .news--wrap {
    padding: 110px 0 86px;
  }
  .news__content {
    padding-bottom: 0;
  }
  .news__content__list {
    justify-content: space-between;
  }
  .news__content__list__item {
    width: 48%;
    margin-right: 0;
    margin-bottom: 42px;
  }
  .news__content__list__item .p-in__image {
    margin-bottom: 10px;
    border: 2px solid #0d0d0d;
  }
  .news__content__list__item .p-in__image img {
    height: 112px;
  }
  .news__content__list__item .p-in__title {
    font-size: 1.4rem;
  }
  .news__link {
    font-size: 1.4rem;
  }
  .news__link a {
    padding: 5px 12px 0px 15px;
  }
  .news__link::before {
    transform: translateY(6px);
  }
  .news__link::after {
    transform: translate(-5px, 6px);
  }
}
.about {
  overflow: hidden;
}
.about--wrap {
  padding: 170px 0 128px;
}
.about__content {
  margin-top: 47px;
}
.about__content__text {
  font-size: 2.3rem;
  letter-spacing: 0.05em;
  line-height: 2.7;
  min-height: 461px;
}

@media screen and (max-width: 768px) {
  .about--wrap {
    padding: 110px 0 86px;
  }
  .about__content {
    margin-top: 32px;
  }
  .about__content__text {
    width: 102%;
    font-family: a-otf-gothic-bbb-pr6n, sans-serif;
    font-size: 1.4rem;
    line-height: 2.67;
    letter-spacing: -0.02em;
    min-height: 260px;
  }
}
@media screen and (max-width: 414px) {
  .about__content__text {
    min-height: 437px;
  }
}
.creator {
  padding: 142px 0 0;
}
.creator__title {
  display: flex;
  align-items: center;
}
.creator__title__text {
  margin-left: 27.8%;
  font-size: 1.8rem;
  line-height: 1.5;
}
.creator__content {
  margin-top: 68px;
}
.creator__content__list {
  display: flex;
  flex-wrap: wrap;
  border-left: 3px solid #0d0d0d;
}
.creator__content__list__item {
  width: 25%;
  border-right: 3px solid #0d0d0d;
  border-bottom: 3px solid #0d0d0d;
  cursor: pointer;
}
.creator__content__list__item:nth-of-type(-n + 4) {
  border-top: 3px solid #0d0d0d;
}
.creator__content__list__item .p-in--wrap {
  padding: 24px 22px 0px 24px;
}
.creator__content__list__item .p-in__title {
  height: 0;
  margin-bottom: 70px;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  line-height: 1.5;
}
.creator__content__list__item .p-in__image {
  overflow: hidden;
}
.creator__content__list__item .p-in__image img {
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.creator__content__list__item .p-in__category {
  min-height: 95px;
  padding: 23px 0 15px;
  border-bottom: 3px solid #0d0d0d;
  font-family: "Roboto Mono", monospace;
  line-height: 1.2em;
  font-size: 1.2rem;
}
.creator__content__list__item .p-in__category__list {
  display: inline;
  flex-wrap: wrap;
}
.creator__content__list__item .p-in__category__list__item {
  display: inline-block;
  margin-right: 5px;
}
.creator__content__list__item .p-in__link {
  display: flex;
  justify-content: space-between;
  padding: 15px 24px;
  font-size: 1.2rem;
  align-items: center;
  font-family: "Roboto Mono", monospace;
}

@media screen and (max-width: 768px) {
  .creator {
    padding: 96px 0 0;
  }
  .creator__title {
    display: block;
  }
  .creator__title__text {
    margin: 28px 0 0 0;
    font-size: 1.3rem;
    line-height: 1.5;
    letter-spacing: -0.03em;
  }
  .creator__content {
    margin-top: 50px;
  }
  .creator__content__list {
    border-left: 2px solid #0d0d0d;
  }
  .creator__content__list__item {
    width: 50%;
    border-right: 2px solid #0d0d0d;
    border-bottom: 2px solid #0d0d0d;
  }
  .creator__content__list__item:nth-of-type(-n + 4) {
    border-top: none;
  }
  .creator__content__list__item:nth-of-type(-n + 2) {
    border-top: 2px solid #0d0d0d;
  }
  .creator__content__list__item .p-in--wrap {
    padding: 15px 12px 0px 12px;
  }
  .creator__content__list__item .p-in__title {
    margin-bottom: 40px;
    font-size: 1.2rem;
  }
  .creator__content__list__item .p-in__category {
    min-height: 78px;
    padding: 14px 0 10px;
    border-bottom: 2px solid #0d0d0d;
  }
  .creator__content__list__item .p-in__category__list {
    font-size: 1rem;
  }
  .creator__content__list__item .p-in__link {
    padding: 7px 12px;
    font-size: 1rem;
  }
}
.twitter {
  padding-bottom: 120px;
}
.twitter__wrap {
  display: flex;
  justify-content: space-between;
}
.twitter__block {
  width: 48%;
  position: relative;
}
.twitter__head {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.twitter__title {
  margin-bottom: 40px;
  font-family: "Roboto Mono", monospace;
  align-items: center;
  font-size: 6.4rem;
}
.twitter__title h2 {
  display: inline;
  font-weight: 400;
  margin-bottom: 10px;
}
.twitter__title__deco {
  font-family: "Roboto Mono", monospace;
  margin-bottom: 10px;
  text-align: center;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}
.twitter__content {
  width: 100%;
  border: 3px solid #0d0d0d;
}
@media screen and (max-width: 768px) {
  .twitter {
    padding-bottom: 108px;
  }
  .twitter__wrap {
    display: block;
  }
  .twitter__block {
    width: 100%;
  }
  .twitter__head {
    margin-bottom: 40px;
    position: static;
    transform: translate(0, 0);
  }
  .twitter__title {
    margin-bottom: 24px;
    font-size: 4rem;
    text-align: center;
  }
  .twitter__title__deco {
    font-size: 1rem;
  }
}

.contact {
  padding-bottom: 118px;
}
.contact__content {
  display: flex;
  align-items: center;
  position: relative;
  border: 3px solid #0d0d0d;
}
.contact__content__title {
  min-width: 360px;
  padding: 42px 20px 46px 20px;
  font-size: 4.6rem;
  font-family: "Roboto Mono", monospace;
  line-height: 1em;
  background-color: #f5f5f5;
  border-right: 3px solid #0d0d0d;
}
.contact__content__title h2 {
  display: inline;
  line-height: 1em;
  font-weight: 400;
}
.contact__content__link {
  width: 100%;
  font-size: 1.8rem;
}
.contact__content__link__text {
  display: block;
  padding: 58px 0 58px 26px;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

@media screen and (max-width: 768px) {
  .contact {
    padding-bottom: 98px;
  }
  .contact__content {
    display: block;
    border: 2px solid #0d0d0d;
  }
  .contact__content__title {
    min-width: 100%;
    min-height: 90px;
    padding: 23px 0 30px 20px;
    font-size: 3.5rem;
    border: none;
    border-bottom: 2px solid #0d0d0d;
  }
  .contact__content__link {
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
  .contact__content__link__text {
    padding: 34px 0 35px 16px;
  }
}
.footer {
  overflow: hidden;
}
.footer--wrap {
  padding: 40px 0 30px;
}
.footer--flex {
  display: flex;
  justify-content: space-between;
}
.footer--flex__block {
  display: flex;
  align-items: center;
}
.footer__logo__list {
  display: flex;
  align-items: center;
}
.footer__logo__list__item {
  position: relative;
  display: flex;
  width: 150px;
  margin-left: 60px;
}
.footer__logo__list__item img {
  width: 100%;
}
.footer__logo__list__item:first-child {
  margin-left: 0;
}
.footer__logo__list__item:first-child::after {
  display: none;
}
.footer__logo__list__item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  width: 2px;
  height: 34px;
  background-color: #0d0d0d;
  transform: translate(-50%, -50%);
}
.footer__logo__list__item--tiktok {
  width: 130px;
}
.footer__copy {
  margin-left: 30px;
}
.footer__copy small {
  font-family: "Roboto Mono", monospace;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .footer--wrap {
    padding: 30px 0 30px;
  }
  .footer--flex {
    display: block;
  }
  .footer--flex__block {
    display: block;
  }
  .footer__logo {
    margin-bottom: 18px;
  }
  .footer__logo__list__item {
    width: 98px;
    margin-left: 20px;
  }
  .footer__logo__list__item::after {
    left: -9px;
    width: 1px;
    height: 20px;
  }
  .footer__logo__list__item--tiktok {
    width: 88px;
  }
  .footer__copy {
    margin-left: 0;
  }
  .footer__copy small {
    transform: scale(0.8);
  }
}
.is-scroll-anime::after {
  animation: is-scroll 1.5s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}
.is-nav-anime {
  width: 100%;
  height: 100%;
  position: absolute;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
  transform-origin: right;
}
.is-nav-anime::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: scaleX(0) translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #0d0d0d;
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  animation: is-nav-op 1s cubic-bezier(0.25, 1, 0.5, 1) 3.6s;
  z-index: 1;
  transform-origin: -50%;
  pointer-events: none;
}
.is-nav-anime__link {
  color: #fff;
  transition: color 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.3s;
  animation: is-nav-op-text 1.5s cubic-bezier(0.25, 1, 0.5, 1) 3s;
}
.is-nav-anime__link::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: scaleX(0) translate(-50%, -50%);
  background-color: #0d0d0d;
  z-index: -1;
  animation: is-nav-op-back 0.5s cubic-bezier(0.25, 1, 0.5, 1) 3.6s forwards;
  transform-origin: left;
}
.is-nav-anime__link::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 49%;
  transform: scaleX(0) translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 1;
  z-index: -1;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transform-origin: -50% 50%;
}

@media screen and (min-width: 768px) {
  .is-hv--wrap-creator:hover {
    background: #fff url("../img/bg_noise_ptn.png");
    background-size: 100px;
    animation: is-noise 1s steps(10) infinite;
  }
  .is-hv--news:hover .p-in__image img {
    transform: scale(1.1);
  }
  .is-hv--news--link .c-arrow--news::after {
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .is-hv--news--link::before {
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .is-hv--news--link::after {
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .is-hv--news--link:hover::before {
    transform: translate(5px, -2px);
  }
  .is-hv--news--link:hover::after {
    transform: translate(-20px, -2px);
  }
  .is-hv--news--link:hover .c-arrow--news::after {
    transform: translateY(-12px) rotate(-135deg);
  }
  .is-hv--creator:hover .c-arrow--creator {
    transform: translateX(10px) rotate(-90deg);
  }
  .is-hv--creator:hover .c-arrow--creator::before {
    transform: translateY(6px) rotate(0deg);
  }
  .is-hv--creator:hover .p-in__image img {
    transform: scale(1.1);
  }
  .is-hv--contact:hover .c-arrow--contact {
    transform: translateX(10px) rotate(-90deg);
  }
  .is-hv--contact:hover .c-arrow--contact::before {
    transform: translateY(6px) rotate(0deg);
  }
  .is-hv--contact:hover .contact__content__link__text {
    background: #fff url("../img/bg_noise_ptn.png");
    background-size: 100px;
    animation: is-noise 1s steps(10) infinite;
  }
  .is-hv-sns {
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .is-hv-sns::before {
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .is-hv-sns::after {
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .is-hv-sns:hover::before {
    transform: translate(5px, -2px);
  }
  .is-hv-sns:hover::after {
    transform: translate(-5px, -2px);
  }
  .is-nav-hv:hover .is-nav-anime {
    transform: scaleX(0);
  }
  .is-nav-hv:hover .is-nav-anime::after {
    transform: scaleX(1) translate(-50%, -50%);
  }
  .is-nav-hv:hover .is-nav-anime__link {
    color: #0d0d0d;
  }
  .is-nav-hv:hover .is-nav-anime__link::after {
    transform: scale(1.1) translate(-50%, -50%);
  }
}
@media screen and (max-width: 768px) {
  .is-show {
    opacity: 1;
    pointer-events: auto;
  }
  .is-close--top {
    transform: translateY(20px) rotate(45deg);
  }
  .is-close--middle {
    opacity: 0;
  }
  .is-close--bottom {
    transform: translateY(4px) rotate(-45deg);
  }
}
@keyframes is-nav-op {
  0% {
    transform: translate(-50%, -50%) scaleX(0);
  }
  50% {
    transform: translate(-50%, -50%) scaleX(1);
    transform-origin: left;
  }
  50.1% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: translate(-50%, -50%) scaleX(0);
  }
}
@keyframes is-nav-op-back {
  0% {
    transform: translate(-50%, -50%) scaleX(0);
  }
  100% {
    transform: translate(-50%, -50%) scaleX(1);
  }
}
@keyframes is-nav-op-text {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes is-noise {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 123px 456px;
  }
}
.template_btn > .creator-modal {
  display: none;
}

.creator-modal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px;
  background-color: #fff;
  border: 3px solid #0d0d0d;
}
.creator-modal__close-btn {
  top: 0;
}
.creator-modal__image {
  flex: 1;
}
.creator-modal__summary {
  width: 48%;
  margin-left: 35px;
  letter-spacing: 0.13em;
  text-align: left;
}
.creator-modal__summary__title {
  font-size: 2.4rem;
  margin-bottom: 30px;
  letter-spacing: 0.13em;
}
.creator-modal__summary__category {
  border-bottom: 3px solid #0d0d0d;
}
.creator-modal__summary__category .p-in__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 16px;
  font-size: 1.2rem;
  font-family: "Roboto Mono", monospace;
  line-height: 1.2em;
}
.creator-modal__summary__text {
  margin-top: 25px;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.02em;
}
.creator-modal__summary__sns {
  margin-top: 30px;
}
.creator-modal__summary__sns .p-in__list {
  display: flex;
  align-items: center;
}
.creator-modal__summary__sns .p-in__list__item {
  margin-right: 20px;
}
.creator-modal__summary__sns .p-in__list--multi {
  display: block;
}
.creator-modal__summary__sns .p-in__list--multi a {
  display: flex;
  align-items: center;
  justify-content: right;
}
.creator-modal__summary__sns .p-in__list--multi > li {
  margin-bottom: 20px;
}
.creator-modal__summary__sns .p-in__list--multi > li .p-in__list__item--multi--text {
  margin-left: 15px;
  font-size: 16px;
}
.creator-modal__summary__sns .p-in__list img {
  height: 24px;
  width: 24px;
}
.creator-modal__work {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-top: 55px;
}
@media screen and (max-width: 768px) {
  .creator-modal__work {
    display: block;
  }
}
.creator-modal__work-item {
  width: 49%;
  margin-bottom: 2%;
  position: relative;
}
.creator-modal__work-item[data-movie-id] {
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .creator-modal__work-item[data-movie-id]:hover .p-in-bg-item {
    transform: scale(1.05);
  }
  .creator-modal__work-item[data-movie-id]:hover .p-in-bg-item::before {
    transform: translate(-50%, -50%) scale(0.9);
  }
}
.creator-modal__work-item[data-movie-id] .p-in-bg-item::before {
  content: "";
  display: block;
  width: 20%;
  height: 20%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../img/entry/btn_mv-play.png) no-repeat center/contain;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 768px) {
  .creator-modal__work-item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.creator-modal__work-item .p-in-bg {
  width: 100%;
  padding-top: 56.25%;
  border: 1px solid #000;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.creator-modal__work-item .p-in-bg-item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.creator-modal__work-item .p-in-title {
  margin-top: 11px;
  font-size: 1.3rem;
  line-height: 1.5;
}
.creator-modal__work-item .p-in-iframe {
  width: 100%;
  position: absolute !important;
  top: 0;
  left: 0;
}

.m-modal.m-modal-custom .m-modal__bg {
  background: #fff;
  opacity: 0.9;
}
.m-modal.m-modal-custom .m-modal__content {
  width: calc(100% - 20px);
  max-width: 1200px;
}
.m-modal.m-modal-custom .m-modal__close-btn {
  width: 35px;
  height: 35px;
  top: 20px;
  right: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #0d0d0d;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .m-modal.m-modal-custom .m-modal__close-btn.--movie {
    top: 7px;
    right: 7px;
  }
}
.m-modal.m-modal-custom .m-modal__close-btn::before {
  width: 2px;
  height: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #fff;
}
.m-modal.m-modal-custom .m-modal__close-btn::after {
  width: 2px;
  height: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #fff;
}

@media screen and (min-width: 769px) {
  .m-modal__close-btn:hover {
    transform: scale(0.97);
  }
}
@media screen and (max-width: 768px) {
  .creator-modal {
    display: block;
    padding: 60px 25px 30px;
  }
  .creator-modal__image {
    width: 100%;
  }
  .creator-modal__summary {
    width: 100%;
    margin-top: 30px;
    margin-left: 0;
  }
  .creator-modal__summary__text {
    margin-top: 15px;
  }
  .m-modal.m-modal-custom .m-modal__close-btn {
    position: fixed;
    width: 35px;
    height: 35px;
    top: 3px;
    right: 3px;
    overflow: hidden;
  }
  .m-modal.m-modal-custom .m-modal__close-btn::before, .m-modal.m-modal-custom .m-modal__close-btn::after {
    background-color: #fff;
    height: 50px;
  }
}
.typed-cursor {
  position: relative;
  top: -0.1em;
}

.l__wrap--space {
  padding: 152px 0 60px;
}
@media screen and (max-width: 768px) {
  .l__wrap--space {
    padding: 128px 0 80px;
  }
}

.header--lower {
  width: 100%;
  height: auto;
  padding: 10px 0 15px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 2;
  transform: translateY(-100%);
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 768px) {
  .header--lower {
    padding: 25px 0 20px;
  }
}
.header--lower.is-active {
  transform: translateY(0);
  pointer-events: fill;
}
@media screen and (min-width: 769px) {
  .header--lower .global-nav {
    position: absolute;
    right: 0;
    top: 50%;
    opacity: 1;
    transform: translate(0, -50%);
  }
}
.header--lower .menu-btn {
  opacity: 1;
}
.header__logo {
  width: 114px;
  position: relative;
  left: 30px;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 84px;
    top: -3px;
    left: 15px;
  }
}

.global-nav__list {
  margin-right: 0;
}
.global-nav__list__item--lower .is-nav-anime::after {
  animation-delay: 0.6s;
}
.global-nav__list__item--lower .is-nav-anime__link {
  animation-delay: 0s;
}
.global-nav__list__item--lower .is-nav-anime__link::before {
  animation-delay: 0s;
}

.news-top .news__content {
  padding: 58px 0 70px;
}
.news-top .news__content__list__item {
  margin-bottom: 58px;
}

@media screen and (max-width: 768px) {
  .header .menu-btn {
    top: 20px;
  }
  .news-top .news__content {
    padding: 38px 0 0;
  }
}
.l__wrap--detail {
  margin: 0 auto;
  width: 53.5%;
  max-width: 950px;
}
@media screen and (max-width: 768px) {
  .l__wrap--detail {
    width: 92%;
  }
}

.news-detail {
  padding: 178px 0 136px;
}
.news-detail__mv__head {
  margin-bottom: 40px;
}
.news-detail__mv__head .p-in__data {
  display: inline-block;
  margin-bottom: 15px;
  font-family: "Roboto Mono", monospace;
  font-size: 1.6rem;
}
.news-detail__mv__head .p-in__title {
  font-size: 2.4rem;
  letter-spacing: 0.07em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .news-detail {
    padding: 128px 0 68px;
  }
  .news-detail .p-in__data {
    font-size: 1.4rem;
  }
  .news-detail .p-in__title {
    font-size: 2rem;
  }
}
.news-detail__content {
  margin: 50px auto 80px;
}
.news-detail__content p {
  margin-bottom: 2em;
  font-size: 1.6rem;
  line-height: 2;
}
.news-detail__content a {
  border-bottom: 1px solid #000;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (min-width: 768px) {
  .news-detail__content a:hover {
    opacity: 0.4;
  }
}
.news-detail__content h2 {
  margin-bottom: 2em;
  padding-bottom: 10px;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 400;
  border-bottom: 2px solid #000;
}
.news-detail__content img {
  margin: 0 auto 2em;
}
.news-detail__content ul {
  margin-bottom: 2em;
  padding-left: 24px;
  font-size: 1.6rem;
  line-height: 2;
}
.news-detail__content ul li {
  list-style: disc;
}
.news-detail__content .gray {
  color: #a6a6a6;
  vertical-align: top;
}
.news-detail__content .small {
  font-size: 1.3rem;
}
.news-detail__content blockquote,
.news-detail__content .guideline {
  margin-bottom: 2em;
  padding: 30px;
  border: 2px solid #000;
}
.news-detail__content blockquote p,
.news-detail__content .guideline p {
  font-size: 1.3rem;
}
.news-detail__content blockquote ul,
.news-detail__content .guideline ul {
  font-size: 1.3rem;
  line-height: 2;
  padding-left: 0;
}
.news-detail__content blockquote ul li,
.news-detail__content .guideline ul li {
  list-style: none;
}
.news-detail__content .wp-block-button,
.news-detail__content .btn {
  margin: 0 auto 2em;
  width: 240px;
}
.news-detail__content .wp-block-button .wp-block-button__link,
.news-detail__content .wp-block-button a,
.news-detail__content .btn .wp-block-button__link,
.news-detail__content .btn a {
  display: inline-block;
  padding: 20px 0;
  width: 100%;
  font-family: "Roboto Mono", monospace;
  letter-spacing: 0.05em;
  font-weight: 200;
  text-align: center;
  font-size: 2.4rem;
  color: #fff;
  background-color: #000;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: unset;
}
@media screen and (min-width: 768px) {
  .news-detail__content .wp-block-button .wp-block-button__link:hover,
  .news-detail__content .wp-block-button a:hover,
  .news-detail__content .btn .wp-block-button__link:hover,
  .news-detail__content .btn a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 768px) {
  .news-detail__content p {
    font-size: 1.4rem;
  }
  .news-detail__content h2 {
    font-size: 1.6rem;
  }
  .news-detail__content ul {
    font-size: 1.4rem;
  }
  .news-detail__content .small {
    font-size: 1.2rem;
  }
  .news-detail__content blockquote p,
  .news-detail__content .guideline p {
    font-size: 1.2rem;
  }
  .news-detail__content blockquote ul,
  .news-detail__content .guideline ul {
    font-size: 1.2rem;
  }
  .news-detail__content .wp-block-button,
  .news-detail__content .btn {
    width: 180px;
  }
  .news-detail__content .wp-block-button .wp-block-button__link,
  .news-detail__content .wp-block-button a,
  .news-detail__content .btn .wp-block-button__link,
  .news-detail__content .btn a {
    padding: 15px 0;
  }
}
.news-detail__info__share {
  display: flex;
  align-items: center;
  border-top: 3px solid #0d0d0d;
  border-bottom: 3px solid #0d0d0d;
}
.news-detail__info__share__title {
  padding: 34px 108px 34px 18px;
  font-family: "Roboto Mono", monospace;
  font-size: 3.2rem;
  letter-spacing: 0.03em;
  border-right: 3px solid #0d0d0d;
}
.news-detail__info__share__link__list {
  display: flex;
  align-items: center;
}
.news-detail__info__share__link__list .p-in__item {
  width: 28px;
  margin-left: 30px;
}
.news-detail__info__share__link__list .p-in__item a img {
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (min-width: 768px) {
  .news-detail__info__share__link__list .p-in__item a:hover img {
    transform: scale(1.2);
  }
}
@media screen and (max-width: 768px) {
  .news-detail__info__share__title {
    font-size: 2.4rem;
    padding: 22px 62px 24px 14px;
  }
  .news-detail__info__share__link__list .p-in__item {
    width: 20px;
    margin-left: 20px;
  }
}
.news-detail__info__pagenation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  font-family: "Roboto Mono", monospace;
  font-size: 2rem;
  letter-spacing: 0.02em;
}
.news-detail__info__pagenation__item {
  cursor: pointer;
  position: relative;
}
.news-detail__info__pagenation__item a {
  position: relative;
}
.news-detail__info__pagenation__item::before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
}
.news-detail__info__pagenation__home {
  display: flex;
  align-items: center;
}
.news-detail__info__pagenation__home .p-in__bg::before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 110%;
  height: 124%;
  background-color: #f5f5f5;
}
.news-detail__info__pagenation__home a {
  padding: 0 5px 0 17px;
}
.news-detail__info__pagenation__home::before {
  content: "[";
  display: block;
  width: 5px;
  height: 20px;
  transform: translateY(-2px);
  z-index: 1;
}
.news-detail__info__pagenation__home::after {
  content: "]";
  display: block;
  width: 5px;
  height: 20px;
  transform: translateY(1px);
}
.news-detail__info__pagenation__prev a {
  display: flex;
  align-items: center;
}
.news-detail__info__pagenation__prev .c-arrow {
  margin-right: 30px;
}
.news-detail__info__pagenation__next a {
  display: flex;
  align-items: center;
}
.news-detail__info__pagenation__next .c-arrow {
  margin-left: 32px;
}
@media screen and (min-width: 768px) {
  .news-detail__info__pagenation__home::before {
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .news-detail__info__pagenation__home::after {
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .news-detail__info__pagenation__home:hover::before {
    transform: translate(8px, -2px);
  }
  .news-detail__info__pagenation__home:hover::after {
    transform: translate(-8px, 1px);
  }
  .news-detail__info__pagenation__prev {
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .news-detail__info__pagenation__prev:hover {
    transform: translateX(-15px);
  }
  .news-detail__info__pagenation__prev:hover .c-arrow::before {
    transform: translateY(5px);
  }
  .news-detail__info__pagenation__next {
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .news-detail__info__pagenation__next:hover {
    transform: translateX(15px);
  }
  .news-detail__info__pagenation__next:hover .c-arrow::before {
    transform: translateY(5px);
  }
}
@media screen and (max-width: 768px) {
  .news-detail__info__pagenation {
    font-size: 1.4rem;
  }
  .news-detail__info__pagenation__item::before {
    left: -7px;
    width: 115%;
  }
  .news-detail__info__pagenation__home::before {
    width: 5px;
    height: 20px;
  }
  .news-detail__info__pagenation__home::after {
    height: 17px;
  }
  .news-detail__info__pagenation__home .p-in__bg::before {
    top: 0px;
    left: -3px;
  }
  .news-detail__info__pagenation__home a {
    padding: 0 8px 0 12px;
  }
  .news-detail__info__pagenation__prev .c-arrow {
    margin-right: 15px;
  }
  .news-detail__info__pagenation__next .c-arrow {
    margin-left: 17px;
  }
}

.entry {
  position: relative;
  z-index: 1;
}
.entry--wrap {
  padding: 116px 0 128px;
}
@media screen and (max-width: 768px) {
  .entry--wrap {
    padding: 100px 0 86px;
  }
}
.entry .main-title {
  margin-bottom: 51px;
}
@media screen and (max-width: 768px) {
  .entry .main-title {
    margin-bottom: 32px;
  }
}
.entry .entry__lead {
  margin-bottom: 51px;
  font-size: 2.3rem;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .entry .entry__lead {
    margin-bottom: 27px;
    font-size: 1.5rem;
  }
}
.entry .entry__content-inner {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .entry .entry__content-inner {
    display: block;
  }
}
.entry .entry__content .entry__content-movie {
  width: 33.7%;
  padding-top: 33.7%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .entry .entry__content .entry__content-movie {
    width: 81.2%;
    padding-top: 81.2%;
    margin: 0 auto 31px;
  }
}
.entry .entry__content .entry__content-movie-thum {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  cursor: pointer;
}
.entry .entry__content .entry__content-movie-thum.is-play {
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .entry .entry__content .entry__content-movie-thum:hover .p-in-icon img {
    transform: scale(0.95);
  }
  .entry .entry__content .entry__content-movie-thum:hover .p-in-image img {
    transform: scale(1.05);
  }
}
.entry .entry__content .entry__content-movie-thum .p-in-icon {
  width: 20%;
  position: absolute;
  top: 52%;
  left: 49.1%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.entry .entry__content .entry__content-movie-thum .p-in-icon img {
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.entry .entry__content .entry__content-movie-thum .p-in-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  transform: scale(1.01);
}
.entry .entry__content .entry__content-movie-thum .p-in-image img {
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.entry .entry__content .entry__content-movie-main {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.entry .entry__content .entry__content-movie-main video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.entry .entry__content .entry__content-detail {
  flex: 1;
  margin-left: 7.95%;
}
@media screen and (max-width: 768px) {
  .entry .entry__content .entry__content-detail {
    margin-left: 0;
  }
}
.entry .entry__content .entry__content-detail-head {
  width: 100%;
  max-width: 417px;
  margin-bottom: 44px;
}
@media screen and (max-width: 768px) {
  .entry .entry__content .entry__content-detail-head {
    width: 70%;
    max-width: 100%;
    margin: 0 auto 30px;
  }
}
.entry .entry__content .entry__content-detail-main {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .entry .entry__content .entry__content-detail-main {
    width: 92%;
    margin: 0 auto 14px;
  }
}
.entry .entry__content .entry__content-detail-main-item {
  margin-bottom: 28px;
}
.entry .entry__content .entry__content-detail-main-item:last-of-type {
  margin-bottom: 0;
}
.entry .entry__content .entry__content-detail-main-item .p-in-head {
  margin-bottom: 4px;
  font-size: 2rem;
  letter-spacing: 0.03em;
  line-height: 1.5;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .entry .entry__content .entry__content-detail-main-item .p-in-head {
    margin-bottom: 7px;
    font-size: 1.7rem;
  }
}
.entry .entry__content .entry__content-detail-main-item .p-in-text {
  font-size: 1.7rem;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .entry .entry__content .entry__content-detail-main-item .p-in-text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .entry .entry__content .entry__content-detail-link {
    width: 90%;
    margin: 0 auto;
  }
}
.entry .entry__content .entry__content-detail-link-inner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  position: relative;
}
.entry .entry__content .entry__content-detail-link-inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 100%;
  height: 85%;
  background-color: #f5f5f5;
}
.entry .entry__content .entry__content-detail-link a {
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .entry .entry__content .entry__content-detail-link a:hover::before {
    transform: translate(8px, -2px);
  }
  .entry .entry__content .entry__content-detail-link a:hover::after {
    transform: translate(-8px, -2px);
  }
  .entry .entry__content .entry__content-detail-link a:hover .c-arrow::after {
    transform: translateY(-14px) rotate(-135deg);
  }
}
.entry .entry__content .entry__content-detail-link a .c-arrow::after {
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.entry .entry__content .entry__content-detail-link a::before, .entry .entry__content .entry__content-detail-link a::after {
  font-size: 2rem;
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 768px) {
  .entry .entry__content .entry__content-detail-link a::before, .entry .entry__content .entry__content-detail-link a::after {
    font-size: 1.8rem;
  }
}
.entry .entry__content .entry__content-detail-link a::before {
  content: "[";
  display: block;
  transform: translate(5px, -2px);
}
@media screen and (max-width: 768px) {
  .entry .entry__content .entry__content-detail-link a::before {
    transform: translate(0px, -2px);
    font-size: 1.6rem;
  }
}
.entry .entry__content .entry__content-detail-link a::after {
  content: "]";
  display: block;
  transform: translate(-1px, -2px);
}
@media screen and (max-width: 768px) {
  .entry .entry__content .entry__content-detail-link a::after {
    transform: translate(0px, -2px);
    font-size: 1.6rem;
  }
}
.entry .entry__content .entry__content-detail-link .p-in-icon {
  width: 20px;
  margin-left: 19px;
}
@media screen and (max-width: 768px) {
  .entry .entry__content .entry__content-detail-link .p-in-icon {
    width: 15px;
    margin-left: 6px;
  }
}
.entry .entry__content .entry__content-detail-link .p-in-text {
  margin-left: 9px;
  padding-right: 30px;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .entry .entry__content .entry__content-detail-link .p-in-text {
    margin-left: 6px;
    padding-right: 20px;
    font-size: 1.5rem;
  }
}

.movie {
  padding: 135px 0;
}
@media screen and (max-width: 768px) {
  .movie {
    padding: 84px 0;
  }
}
.movie .movie__title {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .movie .movie__title {
    margin-bottom: 27px;
  }
}
.movie .movie__lead {
  margin-bottom: 43px;
  font-size: 23px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .movie .movie__lead {
    font-size: 15px;
  }
}
.movie .movie__content-top {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .movie .movie__content-top {
    margin-bottom: 27px;
  }
}
.movie .movie__content-list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .movie .movie__content-list {
    display: block;
  }
}
.movie .movie__content-list-item {
  width: 31.4%;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .movie .movie__content-list-item {
    margin-right: 2.9%;
  }
  .movie .movie__content-list-item:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 769px) {
  .movie .movie__content-list-item:hover .p-in-bg-item {
    transform: scale(1.05);
  }
  .movie .movie__content-list-item:hover .p-in-bg-item::before {
    transform: translate(-50%, -50%) scale(0.9);
  }
}
@media screen and (max-width: 768px) {
  .movie .movie__content-list-item {
    width: 100%;
    margin-bottom: 30px;
  }
}
.movie .movie__content-list-item .p-in-bg {
  width: 100%;
  margin-bottom: 10px;
  padding-top: 56.25%;
  border: 1px solid #000;
  position: relative;
  overflow: hidden;
}
.movie .movie__content-list-item .p-in-bg .p-in-bg-item {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.movie .movie__content-list-item .p-in-bg .p-in-bg-item::before {
  content: "";
  display: block;
  width: 20%;
  height: 20%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../img/entry/btn_mv-play.png) no-repeat center/contain;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.movie .movie__content-list-item .p-in-title {
  font-size: 13px;
  line-height: 1.5;
}
.movie .movie__content-other {
  display: none;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .movie .movie__content-other {
    padding-bottom: 35px;
  }
}
.movie .movie__content-other .movie__content-list-item {
  margin-bottom: 2%;
}
@media screen and (max-width: 768px) {
  .movie .movie__content-other .movie__content-list-item {
    width: 100%;
    margin-bottom: 30px;
  }
  .movie .movie__content-other .movie__content-list-item:last-of-type {
    margin-bottom: 0;
  }
}
.movie .movie__content .movie__content-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  font-family: "Roboto Mono", monospace;
  font-size: 2.4rem;
  padding: 0 33px 0 20px;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .movie .movie__content .movie__content-link:hover .movie__content-link-icon {
    transform: translateY(-50%) rotate(180deg);
  }
}
@media screen and (max-width: 768px) {
  .movie .movie__content .movie__content-link {
    font-size: 14px;
    padding: 0 20px 0 10px;
  }
}
@media screen and (min-width: 769px) {
  .movie .movie__content .movie__content-link.is-current:hover .movie__content-link-icon {
    transform: translateY(-50%) rotate(-135deg);
  }
}
.movie .movie__content .movie__content-link.is-current .movie__content-link-icon {
  transform: translateY(-50%) rotate(45deg);
}
.movie .movie__content .movie__content-link.is-current .movie__content-link-text .p-in-item:nth-of-type(1) {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.movie .movie__content .movie__content-link.is-current .movie__content-link-text .p-in-item:nth-of-type(2) {
  opacity: 1;
  position: static;
  transform: translate(0);
}
.movie .movie__content .movie__content-link::before {
  content: "[";
  display: block;
  width: 5px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .movie .movie__content .movie__content-link::before {
    height: 16px;
  }
}
.movie .movie__content .movie__content-link::after {
  content: "]";
  display: block;
  width: 5px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .movie .movie__content .movie__content-link::after {
    height: 16px;
  }
}
.movie .movie__content .movie__content-link__bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 3px;
  left: 0;
  background-color: #fff;
}
.movie .movie__content .movie__content-link .c-link::after {
  width: 10px;
  height: 10px;
  padding-right: 15px;
}
.movie .movie__content .movie__content-link-text {
  text-align: center;
  position: relative;
}
.movie .movie__content .movie__content-link-text .p-in-item:nth-of-type(2) {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.movie .movie__content .movie__content-link-icon {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 11px;
  transform: translateY(-50%);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 768px) {
  .movie .movie__content .movie__content-link-icon {
    width: 10px;
    height: 10px;
    right: 6px;
  }
}
.movie .movie__content .movie__content-link-icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000;
}
.movie .movie__content .movie__content-link-icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  background-color: #000;
}