@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, caption, tbody, tfoot, thead, tr, th, td,
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;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: 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;
}

.swiper-container {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.swiper-container.swiper-container-autoheight {
  height: auto;
}

.swiper-wrapper {
  position: relative;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-container-vertical .swiper-wrapper {
  flex-direction: column;
}
.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.swiper-slide.swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-lazy-preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d9d9d9;
  overflow: hidden;
}
.swiper-lazy-preloader::before {
  position: absolute;
  pointer-events: none;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background: linear-gradient(90deg, rgba(217, 217, 217, 0) 0, rgba(255, 255, 255, 0.35) 50%, rgba(217, 217, 217, 0) 100%);
  background-size: 100% 100%;
  animation: loading_skeleton 1s linear infinite;
}

.swiper-pagination {
  margin-top: 6px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .swiper-pagination {
    margin-top: 8px;
  }
}

body .m-modal__content {
  width: 100% !important;
}
body .m-modal .m-modal__close-btn {
  position: fixed;
  z-index: 10;
  background: url(../img/btn_close.png) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 900px) {
  body .m-modal .m-modal__close-btn {
    width: 36px;
    height: 36px;
    top: 14px;
    right: 16px;
    background-color: #C31926;
    background-size: 20px 20px;
    border-radius: 50%;
  }
}
@media not all and (max-width: 900px) {
  body .m-modal .m-modal__close-btn {
    width: 50px;
    height: 50px;
    top: 3.5%;
    right: 2.7%;
    transition: transform 0.6s cubic-bezier(0.23, 0.93, 0.5, 1);
  }
  body .m-modal .m-modal__close-btn:hover {
    transform: rotate(90deg);
  }
}
body .m-modal .m-modal__close-btn::before, body .m-modal .m-modal__close-btn::after {
  content: none;
}
body .m-modal .m-modal__bg {
  position: relative;
  overflow: hidden;
}
body .m-modal .m-modal__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 100px);
  height: 100%;
  background: url(../img/bg/bg_modal.png) center center repeat;
  background-size: 100px auto;
  animation: move_bg 2s linear infinite;
}
@media screen and (max-width: 900px) {
  body .m-modal .m-modal__bg::after {
    background-size: 50px auto;
    animation-duration: 2.5s;
  }
}
body .m-modal .m-modal__content {
  max-width: 1200px !important;
}

.is-modal-overflow .m-modal .m-modal__bg {
  position: fixed !important;
}

.is-modal-overflow-prep .m-modal .m-modal__content {
  max-width: 1200px !important;
  margin: 50px auto !important;
}
@media screen and (max-width: 900px) {
  .is-modal-overflow-prep .m-modal .m-modal__content {
    margin: 0px auto !important;
  }
}

.modal-enter-active {
  transition: opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.modal-leave-active {
  transition: opacity 0.2s cubic-bezier(0.33, 1, 0.68, 1);
}

.modal-enter,
.modal-leave-to {
  opacity: 0;
}

.p-modal {
  position: relative;
}
@media screen and (max-width: 900px) {
  .p-modal {
    padding: 28px 0;
  }
}
.p-modal__outer {
  padding: 42px 0 50px;
  border-radius: 10px;
  background: #FDEDDD;
}
@media screen and (max-width: 900px) {
  .p-modal__outer {
    width: 90%;
    margin: 0 auto;
    padding: 27px 0;
  }
}
.p-modal__inner {
  width: 83.5%;
  margin: 0 auto;
}

#youtubePlayer_ui {
  display: none;
}

@media not all and (max-width: 900px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
}
html {
  touch-action: manipulation;
}

body,
button,
input,
select,
textarea,
datalist {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: normal;
}
@media not all and (max-width: 900px) {
  body,
  button,
  input,
  select,
  textarea,
  datalist {
    font-size: 16px;
  }
}

h2 {
  font-weight: 400;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: baseline;
}

* {
  -webkit-tap-highlight-color: transparent;
}

main {
  display: block;
}

a {
  color: currentColor;
  text-decoration: none;
}

svg {
  fill-rule: evenodd;
  width: 100%;
  height: 100%;
}

[data-modal] {
  cursor: pointer;
}

[tabindex] {
  cursor: pointer;
}
[tabindex].focus-visible {
  outline: 1px solid;
}

.js-focus-visible :focus:not(:focus-visible) {
  outline: 0;
}

.visually-hidden {
  font-size: 0;
  opacity: 0;
}

.l-wrapper {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "Helvetica", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  overflow: hidden;
  background: url(../img/bg/bg.jpg) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 900px) {
  .l-wrapper {
    background-image: url(../img/bg/bg_sp.jpg);
  }
}

/*============================
footer
============================*/
.l-footer {
  position: absolute;
  bottom: 18px;
  left: 20px;
}
@media screen and (max-width: 900px) {
  .l-footer {
    bottom: 5px;
    left: 5px;
    width: 50%;
  }
}
.l-main {
  position: relative;
  transition: transform 0.5s cubic-bezier(0.23, 0.93, 0.5, 1);
}
.is-load .l-main {
  opacity: 1 !important;
}

.c-btn {
  display: block;
  padding: 20px 0;
  text-align: center;
  background: #000;
  border: 1px solid #000;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.02rem;
  border-radius: 30px;
}
@media not all and (max-width: 900px) {
  .c-btn {
    transition: background-color 0.6s cubic-bezier(0.23, 0.93, 0.5, 1), color 0.7s cubic-bezier(0.23, 0.93, 0.5, 1);
  }
  .c-btn:hover {
    background: #ffffff;
    color: #000;
  }
}
@media screen and (max-width: 900px) {
  .c-btn {
    padding: 19px 0;
    font-size: 12.5px;
  }
}

@media not all and (max-width: 900px) {
  .c-tweet {
    padding: 5%;
  }
}
@media screen and (max-width: 900px) {
  .c-tweet {
    position: relative;
  }
}
@media not all and (max-width: 900px) {
  .p-kaguyachan__item-tweet .c-tweet {
    max-width: 500px;
    padding: 0;
  }
}
.c-tweet__inner {
  padding: 8% 9%;
  background: #FDEDDD;
  border-radius: 10px;
}
@media screen and (max-width: 900px) {
  .c-tweet__inner {
    padding: 5% 7%;
    border-radius: 5px;
  }
}
@media not all and (max-width: 900px) {
  .p-kaguyachan__item-tweet .c-tweet__inner {
    padding: 6% 8%;
  }
}
.c-tweet__name {
  margin-bottom: 7px;
  color: #C31926;
  font-size: 15px;
  letter-spacing: 0.03rem;
  font-weight: 500;
}
@media screen and (max-width: 900px) {
  .c-tweet__name {
    margin-bottom: 7px;
    font-size: 12px;
  }
}
@media not all and (max-width: 900px) {
  .p-kaguyachan__item-tweet .c-tweet__name {
    margin-bottom: 4px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 900px) {
  .p-kaguyachan__item-tweet .c-tweet__name {
    margin-bottom: 5px;
  }
}
.c-tweet__date {
  margin-bottom: 15px;
  color: #C31926;
  font-size: 13px;
  font-weight: 500;
}
@media screen and (max-width: 900px) {
  .c-tweet__date {
    margin-bottom: 7px;
    font-size: 10px;
  }
}
.p-kaguyachan__item-tweet .c-tweet__date {
  line-height: 1.5;
}
@media not all and (max-width: 900px) {
  .c-tweet__img {
    width: 80%;
    margin: 0 auto 10px;
  }
}
.c-tweet__txt {
  font-size: 14px;
  line-height: 2;
}
@media screen and (max-width: 900px) {
  .c-tweet__txt {
    font-size: 12px;
    line-height: 1.8;
  }
}

@keyframes show_first_kaguya {
  0% {
    opacity: 0;
    transform: translate(-50%, 20px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}
@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes showElem {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes showElem_sp {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes showElem_sp2 {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes kaguya1 {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(-3px);
  }
  10% {
    transform: translateY(0);
  }
  15% {
    transform: translateY(-3px);
  }
  20% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes kaguya2 {
  0% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(-2deg);
  }
  70% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes kaguya3 {
  0% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(-1deg);
  }
  70% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes kaguya4 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes logo {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
  75% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes move_bg {
  0% {
    transform: translate(-100px, 0px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes show_tweet_item {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-kaguyachan_first {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.6s cubic-bezier(0.23, 0.93, 0.5, 1) 2.5s;
}
.is-under4 .p-kaguyachan_first {
  display: none;
}
.is-load .p-kaguyachan_first {
  opacity: 0;
}
.p-kaguyachan_first__item {
  position: absolute;
  opacity: 0;
  transform: translate(-50%, 20px) scale(0.9);
}
@media not all and (max-width: 900px) {
  .p-kaguyachan_first__item {
    width: 8.25%;
    max-width: 132px;
  }
}
@media screen and (max-width: 900px) {
  .p-kaguyachan_first__item {
    width: 66px;
  }
}
.is-load .p-kaguyachan_first__item {
  animation: show_first_kaguya 0.6s cubic-bezier(0.23, 0.93, 0.5, 1) 0.8s forwards;
}
.p-kaguyachan_first__item:first-child {
  top: 40%;
  left: 20%;
}
.p-kaguyachan_first__item:first-child span {
  animation: kaguya1 4s linear infinite;
  background-image: url(../img/img_kgy1.png);
}
.p-kaguyachan_first__item:nth-child(2) {
  top: 30%;
  left: 40%;
  animation-delay: 1s;
}
.p-kaguyachan_first__item:nth-child(2) span {
  animation: kaguya2 4s linear infinite;
  background-image: url(../img/img_kgy2.png);
}
.p-kaguyachan_first__item:nth-child(3) {
  top: 20%;
  left: 60%;
  animation-delay: 0.9s;
}
.p-kaguyachan_first__item:nth-child(3) span {
  background-image: url(../img/img_kgy3.png);
  animation: kaguya3 4s linear infinite;
}
.p-kaguyachan_first__item:nth-child(4) {
  top: 50%;
  left: 80%;
  animation-delay: 1.1s;
}
.p-kaguyachan_first__item:nth-child(4) span {
  background-image: url(../img/img_kgy4.png);
  animation: kaguya4 4s linear infinite;
}
.p-kaguyachan_first__item span {
  display: block;
  width: 100%;
  padding-top: 143.9393939394%;
  background: center center no-repeat;
  background-size: contain;
}

.p-kaguyachan {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-kaguyachan__item {
  position: absolute;
  cursor: pointer;
  opacity: 0;
}
.is-load .p-kaguyachan__item {
  animation: opacity 0.6s cubic-bezier(0.23, 0.93, 0.5, 1) 1.8s forwards;
}
@media not all and (max-width: 900px) {
  .p-kaguyachan__item {
    transform: translateX(-50%);
    width: 8.25%;
    max-width: 132px;
  }
}
@media screen and (max-width: 900px) {
  .p-kaguyachan__item {
    width: 66px;
  }
}
.p-kaguyachan__item:first-child {
  top: 40%;
  left: 20%;
}
.p-kaguyachan__item:nth-child(2) {
  top: 30%;
  left: 40%;
}
.p-kaguyachan__item:nth-child(3) {
  top: 20%;
  left: 60%;
}
.p-kaguyachan__item:nth-child(4) {
  top: 50%;
  left: 80%;
}
.p-kaguyachan__item.is-clicked {
  z-index: 1;
}
.p-kaguyachan__item-img {
  width: 100%;
  padding-top: 143.9393939394%;
}
@media not all and (max-width: 900px) {
  .p-kaguyachan__item-img {
    transition: transform 0.5s cubic-bezier(0.23, 0.93, 0.5, 1);
  }
  .p-kaguyachan__item-img:hover {
    transform: scale(1.05);
  }
}
@media screen and (max-width: 900px) {
  .p-kaguyachan__item-img {
    transform: translateX(-50%);
  }
}
.p-kaguyachan__item-img span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/img_kgy1.png) center center no-repeat;
  background-size: contain;
}
.--kaguya1 .p-kaguyachan__item-img span {
  background-image: url(../img/img_kgy1.png);
  animation: kaguya1 4s linear infinite;
}
.--kaguya2 .p-kaguyachan__item-img span {
  background-image: url(../img/img_kgy2.png);
  transform-origin: bottom center;
  animation: kaguya2 4s linear infinite;
}
.--kaguya3 .p-kaguyachan__item-img span {
  background-image: url(../img/img_kgy3.png);
  transform-origin: bottom center;
  animation: kaguya3 4s linear infinite;
}
.--kaguya4 .p-kaguyachan__item-img span {
  background-image: url(../img/img_kgy4.png);
  animation: kaguya4 4s linear infinite;
}
.p-kaguyachan__item:nth-child(3n) span {
  animation-delay: 1s;
}

.p-kaguyachan__item:nth-child(4n) span {
  animation-delay: 2s;
}

.p-kaguyachan__item-tweet {
  position: absolute;
  width: 300px;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-left-top .p-kaguyachan__item-tweet {
  top: 0;
  right: 0;
  transform: translate(90%, 30%);
}
.is-left-bottom .p-kaguyachan__item-tweet {
  bottom: 0;
  right: 0;
  transform: translate(95%, -30%);
}
.is-right-top .p-kaguyachan__item-tweet {
  top: 0;
  left: 0;
  transform: translate(-90%, 30%);
}
.is-right-bottom .p-kaguyachan__item-tweet {
  bottom: 0;
  left: 0;
  transform: translate(-90%, -30%);
}
.is-clicked .p-kaguyachan__item-tweet {
  opacity: 1;
  pointer-events: auto;
}

.p-ttl {
  position: absolute;
  max-width: 302px;
  top: 3.8%;
  left: 2.4%;
  transform: scale(1.3);
  transform-origin: top left;
}
.is-load .p-ttl {
  animation: show_ttl 1s cubic-bezier(0.23, 0.93, 0.5, 1) 0.6s forwards;
}
.is-load .p-ttl img {
  animation: logo 0.6s linear forwards;
}
.p-ttl img {
  display: block;
}
@media screen and (max-width: 900px) {
  .p-ttl {
    width: 41%;
    top: 2.7%;
    left: 3.4%;
  }
}

@keyframes show_ttl {
  0% {
    transform: scale(1.3);
    transform-origin: top left;
  }
  100% {
    transform: scale(1);
    transform-origin: top left;
  }
}
.p-logo {
  position: absolute;
  top: 3.8%;
  right: 2.4%;
  max-width: 220px;
}
@media not all and (max-width: 900px) {
  .p-logo {
    transition: opacity 0.4s cubic-bezier(0.23, 0.93, 0.5, 1);
  }
  .p-logo:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 900px) {
  .p-logo {
    width: 29%;
    top: 2.8%;
    right: 4%;
  }
}
.p-logo__inner {
  display: block;
}

.p-about {
  position: absolute;
  pointer-events: auto;
  opacity: 0;
  transform: translateY(40px);
}
@media not all and (max-width: 900px) {
  .p-about {
    left: 34.7%;
    bottom: 4.3%;
    width: 10.5%;
    max-width: 166px;
  }
  @media screen and (min-width: 1800px) {
    .p-about {
      left: 30%;
    }
  }
  @media screen and (min-width: 2300px) {
    .p-about {
      left: 24%;
    }
  }
}
@media screen and (max-width: 900px) {
  .p-about {
    bottom: 21.5%;
    left: 1.2%;
    width: 22.5%;
    max-width: 120px;
  }
}
@media screen and (max-width: 900px) and (max-height: 560px) {
  .p-about {
    width: 19%;
  }
}
@media screen and (max-width: 900px) {
  .p-about {
    transform: translateX(-20px);
  }
}
.is-under4 .p-about {
  animation: showElem 0.8s cubic-bezier(0.23, 0.93, 0.5, 1) 1s forwards;
}
@media screen and (max-width: 900px) {
  .is-under4 .p-about {
    animation: showElem_sp2 0.8s cubic-bezier(0.23, 0.93, 0.5, 1) 1s forwards;
  }
}
.is-over4 .p-about {
  animation: showElem 0.8s cubic-bezier(0.23, 0.93, 0.5, 1) 2.4s forwards;
}
@media screen and (max-width: 900px) {
  .is-over4 .p-about {
    animation: showElem_sp2 0.8s cubic-bezier(0.23, 0.93, 0.5, 1) 2.4s forwards;
  }
}
.p-about__btn {
  transition: transform 0.6s cubic-bezier(0.23, 0.93, 0.5, 1);
}
@media not all and (max-width: 900px) {
  .p-about__btn:hover {
    transform: scale(1.05);
  }
}
@media not all and (max-width: 900px) {
  .p-about_modal {
    width: 86%;
    max-width: 960px;
    margin: 0 auto;
  }
}
.p-about_modal__ttl {
  width: 66%;
  margin: 0 auto 35px;
}
@media screen and (max-width: 900px) {
  .p-about_modal__ttl {
    width: 100%;
    margin-bottom: 26px;
  }
}
@media screen and (max-width: 900px) {
  .p-about_modal__outer {
    padding: 19px 0 25px;
  }
}
@media screen and (max-width: 900px) {
  .p-about_modal__inner {
    width: 90%;
  }
}
.p-about_modal__lead {
  margin-bottom: 26px;
  line-height: 1.8;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 900px) {
  .p-about_modal__lead {
    margin-bottom: 18px;
    font-size: 12px;
    line-height: 1.75;
    letter-spacing: 0.04rem;
  }
}
.p-about_modal__period {
  margin-bottom: 46px;
  font-size: 26px;
  font-weight: 700;
  color: #C31926;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 900px) {
  .p-about_modal__period {
    margin-bottom: 25px;
    font-size: 13px;
    letter-spacing: 0.1rem;
    line-height: 1.6;
  }
}
.p-about_modal__list {
  margin-bottom: 44px;
}
@media not all and (max-width: 900px) {
  .p-about_modal__list {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 900px) {
  .p-about_modal__list {
    width: 82%;
    margin: 0 auto 26px;
  }
}
.p-about_modal__list-item {
  position: relative;
}
@media not all and (max-width: 900px) {
  .p-about_modal__list-item {
    width: 30%;
  }
  .p-about_modal__list-item:nth-child(1) {
    width: 26.5%;
  }
  .p-about_modal__list-item:nth-child(2) {
    width: 37%;
    border-left: 2px solid #EBC51C;
    border-right: 2px solid #EBC51C;
  }
  .p-about_modal__list-item:nth-child(2) .p-in-img {
    width: 72%;
    margin: 0 auto 26px;
  }
  .p-about_modal__list-item:nth-child(3) {
    width: 26.5%;
  }
}
@media screen and (max-width: 900px) {
  .p-about_modal__list-item {
    border-bottom: 1px solid #EBC51C;
  }
  .p-about_modal__list-item:first-child {
    padding-bottom: 28px;
  }
  .p-about_modal__list-item:nth-child(2) {
    padding: 31px 0 28px;
  }
  .p-about_modal__list-item:last-child {
    padding-top: 30px;
    border-bottom: none;
  }
}
.p-about_modal__list-item .p-in-img {
  margin-bottom: 26px;
}
@media screen and (max-width: 900px) {
  .p-about_modal__list-item .p-in-img {
    width: 64%;
    margin: 0 auto 18px;
  }
}
.p-about_modal__txt {
  color: #C31926;
  line-height: 1.7;
  font-weight: 500;
}
@media screen and (max-width: 900px) {
  .p-about_modal__txt {
    line-height: 1.5;
  }
}
.p-about_modal__post {
  position: relative;
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
  padding: 26px 0;
  background: #C31926;
  border-radius: 10px;
  cursor: pointer;
}
@media not all and (max-width: 900px) {
  .p-about_modal__post {
    transition: transform 0.6s cubic-bezier(0.23, 0.93, 0.5, 1);
  }
  .p-about_modal__post:hover {
    transform: scale(1.05);
  }
}
@media screen and (max-width: 900px) {
  .p-about_modal__post {
    padding: 15px 0;
    border-radius: 5px;
  }
}
.p-about_modal__post::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8.4%;
  width: 28px;
  height: 28px;
  background: url(../img/post/icon_twitter.svg) center center no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}
@media screen and (max-width: 900px) {
  .p-about_modal__post::before {
    width: 17px;
    height: 17px;
  }
}
.p-about_modal__post-txt {
  width: 70px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .p-about_modal__post-txt {
    width: 50px;
  }
}
.p-about_modal__post-txt img {
  display: block;
  margin: 0 auto;
}

.p-post {
  position: absolute;
  opacity: 0;
  transform: translateY(40px);
}
@media not all and (max-width: 900px) {
  .p-post {
    bottom: 3.5%;
    left: 1.5%;
    width: 16%;
    max-width: 248px;
    height: auto;
    grid-area: 1/1/2/2;
  }
}
@media screen and (max-width: 900px) {
  .p-post {
    bottom: 0.3%;
    left: 0.5%;
    width: 33%;
    max-width: 200px;
  }
}
@media screen and (max-width: 900px) and (max-height: 560px) {
  .p-post {
    width: 28%;
  }
}
@media screen and (max-width: 900px) {
  .p-post {
    transform: translateX(-20px);
  }
}
.is-under4 .p-post {
  animation: showElem 0.8s cubic-bezier(0.23, 0.93, 0.5, 1) 1s forwards;
}
@media screen and (max-width: 900px) {
  .is-under4 .p-post {
    animation: showElem_sp2 0.8s cubic-bezier(0.23, 0.93, 0.5, 1) 1s forwards;
  }
}
.is-over4 .p-post {
  animation: showElem 0.8s cubic-bezier(0.23, 0.93, 0.5, 1) 2.4s forwards;
}
@media screen and (max-width: 900px) {
  .is-over4 .p-post {
    animation: showElem_sp2 0.8s cubic-bezier(0.23, 0.93, 0.5, 1) 2.4s forwards;
  }
}
.p-post__btn {
  transition: transform 0.6s cubic-bezier(0.23, 0.93, 0.5, 1);
}
@media not all and (max-width: 900px) {
  .p-post__btn:hover {
    transform: scale(1.05);
  }
}

@media not all and (max-width: 900px) {
  .p-post_modal {
    width: 86%;
    max-width: 960px;
    margin: 0 auto;
  }
}
.p-post_modal__ttl {
  max-width: 750px;
  width: 67%;
  margin: 0 auto 36px;
}
@media screen and (max-width: 900px) {
  .p-post_modal__ttl {
    width: 100%;
    margin-bottom: 25px;
  }
}
.p-post_modal__outer {
  padding: 48px 0;
}
@media screen and (max-width: 900px) {
  .p-post_modal__outer {
    padding: 27px 0;
  }
}
.p-post_modal__inner {
  width: 85.5%;
}
.p-post_modal__txt {
  margin-bottom: 45px;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 900px) {
  .p-post_modal__txt {
    margin-bottom: 29px;
    font-size: 14px;
    letter-spacing: 0.04rem;
  }
}
.p-post_modal__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 53px;
}
@media screen and (max-width: 900px) {
  .p-post_modal__list {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 21px;
  }
}
.p-post_modal__list-item {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  cursor: pointer;
}
.p-post_modal__list-item.is-selected::after {
  opacity: 1;
}
.p-post_modal__list-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 2px solid #C31926;
  opacity: 0;
}
.p-post_modal__list-item .p-in-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.p-post_modal__input {
  margin-bottom: 38px;
}
@media screen and (max-width: 900px) {
  .p-post_modal__input {
    margin-bottom: 20px;
  }
}
.p-post_modal__input textarea {
  padding: 13px 14px;
  width: calc(100% - 28px);
  border: none;
  border-radius: 10px;
  background: #ffffff;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "Helvetica", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  outline: none;
}
@media screen and (max-width: 900px) {
  .p-post_modal__input textarea {
    border-radius: 5px;
    font-size: 16px;
  }
}
.p-post_modal__post {
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
  transition: transform 0.6s cubic-bezier(0.23, 0.93, 0.5, 1);
}
.p-post_modal__post:hover {
  transform: scale(1.05);
}
@media screen and (max-width: 900px) {
  .p-post_modal__post {
    width: 87%;
  }
}
.p-post_modal__post a {
  position: relative;
  display: block;
  padding: 26px 0;
  background: #C31926;
  border-radius: 10px;
}
@media screen and (max-width: 900px) {
  .p-post_modal__post a {
    padding: 15px 0;
    border-radius: 5px;
  }
}
.p-post_modal__post a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8.4%;
  width: 28px;
  height: 28px;
  background: url(../img/post/icon_twitter.svg) center center no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}
@media screen and (max-width: 900px) {
  .p-post_modal__post a::before {
    width: 17px;
    height: 17px;
  }
}
.p-post_modal__post-txt {
  width: 70px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .p-post_modal__post-txt {
    width: 50px;
  }
}
.p-post_modal__post-txt img {
  display: block;
  margin: 0 auto;
}
.p-post_modal__post.is-disable {
  pointer-events: none;
}
.p-post_modal__post.is-disable a {
  opacity: 0.5;
}

.p-list {
  pointer-events: auto;
  position: absolute;
  opacity: 0;
  transform: translateY(40px);
}
@media not all and (max-width: 900px) {
  .p-list {
    left: 16.3%;
    bottom: 4.3%;
    width: 10.5%;
    max-width: 166px;
  }
  @media screen and (min-width: 1800px) {
    .p-list {
      left: 14%;
    }
  }
  @media screen and (min-width: 2300px) {
    .p-list {
      left: 12%;
    }
  }
}
@media screen and (max-width: 900px) {
  .p-list {
    bottom: 44.3%;
    left: 1.2%;
    width: 22.5%;
    max-width: 120px;
  }
}
@media screen and (max-width: 900px) and (max-height: 560px) {
  .p-list {
    width: 19%;
  }
}
@media screen and (max-width: 900px) {
  .p-list {
    transform: translateX(-20px);
  }
}
.is-under4 .p-list {
  animation: showElem 0.8s cubic-bezier(0.23, 0.93, 0.5, 1) 1s forwards;
}
@media screen and (max-width: 900px) {
  .is-under4 .p-list {
    animation: showElem_sp2 0.8s cubic-bezier(0.23, 0.93, 0.5, 1) 1s forwards;
  }
}
.is-over4 .p-list {
  animation: showElem 0.8s cubic-bezier(0.23, 0.93, 0.5, 1) 2.4s forwards;
}
@media screen and (max-width: 900px) {
  .is-over4 .p-list {
    animation: showElem_sp2 0.8s cubic-bezier(0.23, 0.93, 0.5, 1) 2.4s forwards;
  }
}
@media not all and (max-width: 900px) {
  .p-list__btn {
    transition: transform 0.6s cubic-bezier(0.23, 0.93, 0.5, 1);
  }
  .p-list__btn:hover {
    transform: scale(1.05);
  }
}

.p-list_modal {
  position: relative;
}
@media not all and (max-width: 900px) {
  .p-list_modal {
    width: 82.8%;
    margin: 0 auto;
  }
}
.p-list_modal__loading {
  position: absolute;
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s cubic-bezier(0.23, 0.93, 0.5, 1) 0s;
}
@media not all and (max-width: 900px) {
  .p-list_modal__loading {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 900px) {
  .p-list_modal__loading {
    top: 0px;
  }
}
.is-modal-afteropen .p-list_modal__loading {
  opacity: 0;
}
.p-list_modal__loading-inner {
  position: relative;
  --size: 80px;
  --stroke-width: calc(var(--size) / 7);
  width: var(--size);
  height: var(--size);
}
@media screen and (max-width: 900px) {
  .p-list_modal__loading-inner {
    --size: 40px;
  }
}
.p-list_modal__loading-inner::before, .p-list_modal__loading-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-width: var(--stroke-width);
  border-style: solid;
  border-color: #EBC51C #EBC51C transparent transparent;
  border-radius: 50%;
  transform: rotate(0deg);
  animation: 1s infinite spinner;
}
.p-list_modal__loading-inner::before {
  animation-timing-function: cubic-bezier(0.5, 0, 0.75, 0);
}
.p-list_modal__loading-inner::before {
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.p-list_modal__ttl {
  max-width: 750px;
  width: 64%;
  margin: 0 auto 18px;
}
@media screen and (max-width: 900px) {
  .p-list_modal__ttl {
    width: 100%;
    margin-bottom: 25px;
  }
}
.p-list_modal__inner {
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.23, 0.93, 0.5, 1) 0.6s;
}
.is-modal-afteropen .p-list_modal__inner {
  opacity: 1;
}
.p-list_modal__tweet {
  margin-bottom: 20px;
}
@media not all and (max-width: 900px) {
  .p-list_modal__tweet {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    overflow: hidden;
  }
}
@media screen and (max-width: 900px) {
  .p-list_modal__tweet {
    width: 90%;
    margin: 0 auto;
  }
}
.p-list_modal__tweet-item {
  width: 33.3333333333%;
  text-align: left;
}
@media screen and (max-width: 900px) {
  .p-list_modal__tweet-item {
    width: 100%;
    margin-bottom: 15px;
  }
}
.p-list_modal__tweet-item .c-tweet__img {
  width: 100%;
}
.p-list_modal__more {
  width: 96.7%;
  margin: 0 auto;
  padding: 26px 0;
  background: #C31926;
  border-radius: 10px;
  transition: transform 0.6s cubic-bezier(0.23, 0.93, 0.5, 1);
}
@media not all and (max-width: 900px) {
  .p-list_modal__more {
    cursor: pointer;
  }
  .p-list_modal__more:hover {
    transform: scale(1.05);
  }
}
@media screen and (max-width: 900px) {
  .p-list_modal__more {
    width: 90%;
    padding: 15px 0;
  }
}
.p-list_modal__more.is-hidden {
  display: none;
}
.p-list_modal__more-txt {
  width: 58px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .p-list_modal__more-txt {
    width: 43px;
  }
}

.p-present {
  position: absolute;
  opacity: 0;
  transform: translateY(40px);
}
@media not all and (max-width: 900px) {
  .p-present {
    left: 25.5%;
    bottom: 4.3%;
    width: 10.5%;
    max-width: 166px;
  }
  @media screen and (min-width: 1800px) {
    .p-present {
      left: 22%;
    }
  }
  @media screen and (min-width: 2300px) {
    .p-present {
      left: 18%;
    }
  }
}
@media screen and (max-width: 900px) {
  .p-present {
    bottom: 33%;
    left: 1.2%;
    width: 22.5%;
    max-width: 120px;
  }
}
@media screen and (max-width: 900px) and (max-height: 560px) {
  .p-present {
    width: 19%;
  }
}
@media screen and (max-width: 900px) {
  .p-present {
    transform: translateX(-20px);
  }
}
.is-under4 .p-present {
  animation: showElem 0.8s cubic-bezier(0.23, 0.93, 0.5, 1) 1s forwards;
}
@media screen and (max-width: 900px) {
  .is-under4 .p-present {
    animation: showElem_sp2 0.8s cubic-bezier(0.23, 0.93, 0.5, 1) 1s forwards;
  }
}
.is-over4 .p-present {
  animation: showElem 0.8s cubic-bezier(0.23, 0.93, 0.5, 1) 2.4s forwards;
}
@media screen and (max-width: 900px) {
  .is-over4 .p-present {
    animation: showElem_sp2 0.8s cubic-bezier(0.23, 0.93, 0.5, 1) 2.4s forwards;
  }
}
.p-present__btn {
  transition: transform 0.6s cubic-bezier(0.23, 0.93, 0.5, 1);
}
@media not all and (max-width: 900px) {
  .p-present__btn:hover {
    transform: scale(1.05);
  }
}
.p-present__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.p-present__link {
  font-size: 18px;
  letter-spacing: 0.08rem;
  border: 2px solid #000;
  transition: background-color 0.5s cubic-bezier(0.25, 1, 0.5, 1), color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 900px) {
  .p-present__link {
    border-width: 1px;
    font-size: 13px;
    letter-spacing: 0.06rem;
  }
}
.p-present__link:hover {
  background: #000;
  color: #ffffff;
}
.p-present__link a {
  display: block;
  padding: 7px 0;
}
@media screen and (max-width: 900px) {
  .p-present__link a {
    padding: 3px 0;
  }
}

@media not all and (max-width: 900px) {
  .p-present_modal {
    width: 86%;
    max-width: 960px;
    margin: 0 auto;
  }
}
.p-present_modal__ttl {
  width: 66.5%;
  margin: 0 auto 35px;
}
@media screen and (max-width: 900px) {
  .p-present_modal__ttl {
    width: 100%;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 900px) {
  .p-present_modal__outer {
    padding: 21px 0 28px;
  }
}
@media screen and (max-width: 900px) {
  .p-present_modal__inner {
    width: 96%;
  }
}
.p-present_modal__lead {
  margin-bottom: 34px;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.08rem;
  line-height: 1.8;
}
@media screen and (max-width: 900px) {
  .p-present_modal__lead {
    margin-bottom: 21px;
    font-size: 12px;
    letter-spacing: 0.04rem;
    line-height: 1.75;
  }
}
.p-present_modal__list {
  margin: 0 auto;
}
@media not all and (max-width: 900px) {
  .p-present_modal__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 30px;
    width: 90%;
  }
}
@media screen and (max-width: 900px) {
  .p-present_modal__list {
    width: 79%;
  }
}
@media screen and (max-width: 900px) {
  .p-present_modal__list-item + .p-present_modal__list-item {
    margin-top: 24px;
  }
}
.p-present_modal__txt-sub {
  color: #C31926;
  letter-spacing: 0.06rem;
  font-weight: 500;
}
@media screen and (max-width: 900px) {
  .p-present_modal__txt-sub {
    font-size: 12px;
  }
}
.p-present_modal__txt-main {
  color: #C31926;
  font-size: 20px;
  letter-spacing: 0.06rem;
  line-height: 1.6;
  font-weight: 500;
}
.p-present_modal__txt-main span {
  display: block;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 900px) {
  .p-present_modal__txt-main span {
    font-size: 11px;
  }
}
@media screen and (max-width: 900px) {
  .p-present_modal__txt-main {
    font-size: 16px;
    letter-spacing: 0.02rem;
  }
}
.p-present_modal__txt-num {
  font-weight: 500;
}
@media screen and (max-width: 900px) {
  .p-present_modal__txt-num {
    font-size: 12px;
  }
}
.p-present_modal__img {
  position: relative;
  width: 100%;
  padding-top: 100%;
  margin-bottom: 19px;
}
@media screen and (max-width: 900px) {
  .p-present_modal__img {
    margin-bottom: 14px;
  }
}
.p-present_modal__img-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.p-score {
  position: absolute;
  bottom: 0;
  right: 0px;
  width: 32%;
  max-width: 511px;
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
}
@media screen and (max-width: 900px) {
  .p-score {
    width: 68%;
    max-width: 460px;
    bottom: -3px;
    right: -16px;
    transform: translateX(20px);
    pointer-events: auto;
  }
}
@media screen and (max-width: 900px) and (max-height: 560px) {
  .p-score {
    width: 60%;
  }
}
.is-under4 .p-score {
  animation: showElem 0.8s cubic-bezier(0.23, 0.93, 0.5, 1) 1s forwards;
}
@media screen and (max-width: 900px) {
  .is-under4 .p-score {
    animation: showElem_sp 0.8s cubic-bezier(0.23, 0.93, 0.5, 1) 1s forwards;
  }
}
.is-over4 .p-score {
  animation: showElem 0.8s cubic-bezier(0.23, 0.93, 0.5, 1) 2.4s forwards;
}
@media screen and (max-width: 900px) {
  .is-over4 .p-score {
    animation: showElem_sp 0.8s cubic-bezier(0.23, 0.93, 0.5, 1) 2.4s forwards;
  }
}
.p-score__txt {
  position: absolute;
  left: 9%;
  top: 46%;
  width: 63%;
  padding-top: 21%;
  font-size: 5vw;
  font-size: min(4.9vw, 95px);
  font-weight: 700;
  color: #C31926;
  font-family: "Roboto", "Noto Sans JP", "游ゴシック", YuGothic, "Helvetica", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  .p-score__txt {
    font-size: 9.5vw;
  }
}
.p-score__txt-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-score__txt-inner span {
  display: block;
}

.template {
  display: none;
}

@media screen and (max-width: 900px) {
  .p-tweetModal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.23, 0.93, 0.5, 1);
  }
  .is-tweetmodal-open .p-tweetModal {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.4s cubic-bezier(0.23, 0.93, 0.5, 1);
  }
  .p-tweetModal::after {
    content: "";
    position: absolute;
    top: 14px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: #C31926 url(../img/btn_close.png) center center no-repeat;
    background-size: 20px 20px;
    border-radius: 50%;
    pointer-events: none;
  }
  .p-tweetModal__bg {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% + 100px);
    height: 100%;
    background: url(../img/bg/bg_modal.png) center center repeat;
    background-size: 50px auto;
    animation: move_bg 2.5s linear infinite;
  }
  .p-tweetModal .c-tweet {
    width: 90%;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
  }
  .is-tweetmodal-open .p-tweetModal .c-tweet {
    animation: show_tweet_item 0.5s cubic-bezier(0.23, 0.93, 0.5, 1) forwards;
  }
  .p-tweetModal .c-tweet__img {
    width: 68%;
    margin: 0 auto 5px;
  }
}

.p-copy {
  position: absolute;
  bottom: 18px;
  left: 20px;
}
@media screen and (max-width: 900px) {
  .p-copy {
    bottom: 5px;
    left: 5px;
    width: 50%;
  }
}