@charset "UTF-8";

/************************************

reset

************************************/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
}

li {
  list-style-type: none;
}

img {
  vertical-align: bottom;
  border: 0;
}

table {
  border-collapse: collapse;
}

address,
em {
  font-style: normal;
}

button {
  padding: 0;
  border: 0;
}

hr {
  border: 0;
  border-top: 1px solid #000;
}

/************************************

base

************************************/
html {
  font-size: 625%;
}

@media screen and (max-width: 767px) {
  html {
    font-size: 580%;
  }
}

body {
  position: relative;
  overflow-x: hidden;
  background-color: #fff;
  color: #312a15;
  font-size: .16rem;
  font-family: sans-serif;
}

body.is-fixed {
  overflow-y: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s all ease 0s;
}

p {
  line-height: 1.6;
}

p a {
  text-decoration: underline;
}

p a:hover {
  color: #f5cb46;
  text-decoration: none;
}

sub {
  vertical-align: baseline;
  font-size: .7em;
}

img {
  max-width: 100%;
  height: auto;
}

.billing__ja {
  color: #a37847;
  font-weight: bold;
  font-size: min(0.12rem, 2.2vw);
  line-height: 1.6;
}

.billing__ja img {
  margin: 0 0 0 .3em;
  transform: translate(0, -0.2em);
}

@media screen and (max-width: 767px) {
  .billing__ja img {
    transform: scale(0.8);
  }
}

.billing__dir {
  font-size: 1.58em;
}

.billing__dir span {
  font-size: .7em;
}

.billing__cast {
  font-size: 1.16em;
}

.billing__en {
  margin: min(0.1rem, 4vw) 0 0 0;
}

.btn-navigation-trigger {
  position: relative;
  display: block;
  width: .97rem;
  height: .91rem;
  border: 0;
  border-radius: 50%;
  background: transparent;
  outline: 0;
}

.btn-navigation-trigger:hover {
  cursor: pointer;
}

.btn-navigation-trigger span {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 27%;
  height: 3px;
  margin: 0 auto;
  background: #000;
}

.btn-navigation-trigger span::before,
.btn-navigation-trigger span::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  background: #000;
  transform-origin: center center;
  transition: 0.2s all ease 0s;
}

.btn-navigation-trigger span::before {
  transform: translate(0, -0.08rem);
}

.btn-navigation-trigger span::after {
  transform: translate(0, 0.08rem);
}

.is-open .btn-navigation-trigger span {
  height: 0;
}

.is-open .btn-navigation-trigger span::before {
  transform: translate(0, 0) rotate(-45deg) scaleX(1.8);
}

.is-open .btn-navigation-trigger span::after {
  transform: translate(0, 0) rotate(45deg) scaleX(1.8);
}

.cast {
  padding: min(1.2rem, 20vw) 0 0 0;
}

.cast__heading {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .cast__heading img {
    width: 33vw;
  }
}

.cast__main {
  display: flex;
  gap: min(0.4rem, 1vw);
  max-width: 1410px;
  margin: min(0.7rem, 9vw) auto 0;
  padding: 0 min(0.4rem, 4vw);
  background: url("images/cast_bg@2x.png") no-repeat center top 58%/contain;
  transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1) transform 0.3s;
  transform: scaleX(0);
  transform-origin: center left;
}

.cast__main.is-show {
  transform: scaleX(1);
}

@media screen and (max-width: 767px) {
  .cast__main {
    flex-direction: column;
    background: none;
  }
}

.cast__main-group {
  display: flex;
  gap: min(0.4rem, 4vw);
}

@media screen and (max-width: 767px) {
  .cast__main-group {
    background: url("images/cast_bg.png") no-repeat center top 50%;
    background-size: 230%;
  }
}

.cast__main-item {
  text-align: center;
  opacity: 0;
}

.is-show .cast__main-item {
  -webkit-animation: bounce .4s ease forwards;
  animation: bounce .4s ease forwards;
}

.cast__main-item:nth-of-type(1) {
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
}

.cast__main-item:nth-of-type(2) {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

.cast__main-item .btn-modal {
  transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) transform;
}

.cast__main-item .btn-modal:hover {
  cursor: pointer;
  transform: translate(0, -0.15rem);
}

.cast__main-name {
  margin: min(0.15rem, 2vw);
}

.cast__sub {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.43rem 1fr;
  grid-template-columns: 1fr 1fr;
  gap: min(0.36rem, 4vw) 0.43rem;
  max-width: 866px;
  margin: min(0.7rem, 9vw) auto 0;
  padding: 0 .3rem;
  opacity: 0;
}

.cast__sub.is-show {
  -webkit-animation: bounce .4s ease forwards .3s;
  animation: bounce .4s ease forwards .3s;
}

@media screen and (max-width: 767px) {
  .cast__sub {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.cast_sub-item {
  display: flex;
  gap: .14rem;
  align-items: center;
  transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) transform;
}

.cast_sub-item:hover {
  cursor: pointer;
  transform: translate(0, -0.1rem);
}

.cast__sub-photo {
  flex-basis: 21%;
}

.cast__sub-photo img {
  overflow: hidden;
  border-radius: 50%;
}

.cast__sub-name {
  flex: 1;
}

.cast__name {
  color: #edb121;
  font-size: min(0.16rem, 3.6vw);
  line-height: 1.3;
  font-family: "Noto Sans JP", sans-serif;
}

.cast__name em {
  color: #312a15;
}

.cast__main .cast__name em {
  font-size: 1.1em;
}

.choirs {
  position: relative;
  padding: min(1.2rem, 20vw) 0.2rem 0 0.2rem;
}

.choirs__inner {
  position: relative;
  max-width: 1566px;
  margin: 0 auto;
  padding: 0 .8rem .4rem;
}

@media screen and (max-width: 767px) {
  .choirs__inner {
    padding: 0 .3rem .3rem;
  }
}

.choirs__container {
  display: flex;
  gap: .8rem;
}

@media screen and (max-width: 767px) {
  .choirs__container {
    flex-direction: column;
    gap: 0;
  }
}

.choirs__header {
  flex-basis: 36%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .choirs__header {
    flex-basis: auto;
  }
}

.choirs__heading {
  text-align: center;
  opacity: 0;
  transform: translate(0, 0.2rem);
}

.is-show .choirs__heading {
  -webkit-animation: bounce .4s ease forwards .5s;
  animation: bounce .4s ease forwards .5s;
}

@media screen and (max-width: 767px) {
  .choirs__heading img {
    width: 60vw;
  }
}

.choirs__photo {
  margin: min(0.4rem, 5vw) 0 0 0;
  opacity: 0;
  transform: translate(0, 0.2rem);
}

.is-show .choirs__photo {
  -webkit-animation: bounce .4s ease forwards .9s;
  animation: bounce .4s ease forwards .9s;
}

.choirs__content {
  flex: 1;
  margin: -.85rem 0 0;
}

@media screen and (max-width: 767px) {
  .choirs__content {
    margin: -.1rem 0 0;
  }
}

.choirs__icon {
  text-align: right;
  opacity: 0;
  transform: translate(0, 0.2rem);
}

.is-show .choirs__icon {
  -webkit-animation: bounce .4s ease forwards 1.1s;
  animation: bounce .4s ease forwards 1.1s;
}

@media screen and (max-width: 767px) {
  .choirs__icon {
    text-align: center;
  }
}

.choirs__txt {
  margin: min(0.3rem, 4vw) 0 0 0;
  font-size: min(0.15rem, 3.2vw);
  line-height: 2.1;
  text-align: justify;
  opacity: 0;
  transform: translate(0, 0.2rem);
}

.is-show .choirs__txt {
  -webkit-animation: bounce .4s ease forwards .6s;
  animation: bounce .4s ease forwards .6s;
}

@media screen and (max-width: 767px) {
  .choirs__txt {
    line-height: 1.9;
  }
}

.choirs__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 92%;
  background: #f4f3e9;
  transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1) transform 0.3s;
  transform: rotate(0) scaleX(0) translate(0, 0.2rem);
  transform-origin: center left;
}

.is-show .choirs__bg {
  transform: rotate(-2deg) scaleX(1) translate(0, 0.2rem);
}

@media screen and (max-width: 767px) {
  .choirs__bg {
    transform: rotate(0);
  }

  .is-show .choirs__bg {
    transform: rotate(0) scaleX(1);
  }
}

.comment {
  padding: min(1.2rem, 20vw) 0.3rem 0 0.3rem;
}

.comment__heading {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .comment__heading img {
    width: 36vw;
  }
}

.comment__sub-heading {
  margin: .2rem 0;
  font-size: .12rem;
  text-align: center;
}

.comment__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr .6rem 1fr;
  grid-template-columns: 1fr 1fr;
  gap: .8rem .6rem;
  max-width: 1280px;
  margin: min(0.7rem, 10vw) auto 0 auto;
}

@media screen and (max-width: 767px) {
  .comment__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.comment__item {
  font-family: "Noto Sans JP", sans-serif;
}

.comment__txt {
  color: #523f28;
  font-size: .165rem;
  line-height: 2.2;
  text-align: justify;
}

.comment__name {
  margin: min(0.25rem, 5vw) 0 0 0;
  color: #edb121;
  font-size: min(0.16rem, 5vw);
  line-height: 2.2;
}

.comment__name em {
  display: block;
  color: #312a15;
  font-size: 1.5em;
}

.comment__name span {
  font-size: .45em;
  opacity: .65;
}

.footer {
  padding: min(0.8rem, 8vw) 0.2rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 20vw;
  }
}

@media screen and (max-width: 767px) {
  .footer__logo {
    padding: 0 8vw;
  }
}

.footer__billing {
  margin: min(0.3rem, 5vw) 0 0 0;
}

.gallery01 {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto .6vw auto;
  grid-template-rows: auto auto;
  -ms-grid-columns: 1fr .6vw 1fr .6vw 1fr .6vw 1fr .6vw 1fr .6vw 1fr .6vw 5.1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 5.1fr;
  gap: .6vw;
  padding: min(1.2rem, 20vw) 0.2rem 0 0.2rem;
}

.gallery01>*:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.gallery01>*:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.gallery01>*:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}

.gallery01>*:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}

.gallery01>*:nth-child(5) {
  -ms-grid-row: 1;
  -ms-grid-column: 9;
}

.gallery01>*:nth-child(6) {
  -ms-grid-row: 1;
  -ms-grid-column: 11;
}

.gallery01>*:nth-child(7) {
  -ms-grid-row: 1;
  -ms-grid-column: 13;
}

.gallery01>*:nth-child(8) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.gallery01>*:nth-child(9) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}

.gallery01>*:nth-child(10) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}

.gallery01>*:nth-child(11) {
  -ms-grid-row: 3;
  -ms-grid-column: 7;
}

.gallery01>*:nth-child(12) {
  -ms-grid-row: 3;
  -ms-grid-column: 9;
}

.gallery01>*:nth-child(13) {
  -ms-grid-row: 3;
  -ms-grid-column: 11;
}

.gallery01>*:nth-child(14) {
  -ms-grid-row: 3;
  -ms-grid-column: 13;
}

@media screen and (max-width: 767px) {
  .gallery01 {
    -ms-grid-rows: auto .08rem auto .08rem auto;
    grid-template-rows: auto auto auto;
    -ms-grid-columns: 1fr .08rem 1fr .08rem 1fr .08rem 1fr .08rem 1fr .08rem 1fr;
    grid-template-columns: repeat(6, 1fr);
    gap: .08rem;
  }

  .gallery01>*:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .gallery01>*:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }

  .gallery01>*:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }

  .gallery01>*:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 7;
  }

  .gallery01>*:nth-child(5) {
    -ms-grid-row: 1;
    -ms-grid-column: 9;
  }

  .gallery01>*:nth-child(6) {
    -ms-grid-row: 1;
    -ms-grid-column: 11;
  }

  .gallery01>*:nth-child(7) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }

  .gallery01>*:nth-child(8) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }

  .gallery01>*:nth-child(9) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
  }

  .gallery01>*:nth-child(10) {
    -ms-grid-row: 3;
    -ms-grid-column: 7;
  }

  .gallery01>*:nth-child(11) {
    -ms-grid-row: 3;
    -ms-grid-column: 9;
  }

  .gallery01>*:nth-child(12) {
    -ms-grid-row: 3;
    -ms-grid-column: 11;
  }

  .gallery01>*:nth-child(13) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }

  .gallery01>*:nth-child(14) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }

  .gallery01>*:nth-child(15) {
    -ms-grid-row: 5;
    -ms-grid-column: 5;
  }

  .gallery01>*:nth-child(16) {
    -ms-grid-row: 5;
    -ms-grid-column: 7;
  }

  .gallery01>*:nth-child(17) {
    -ms-grid-row: 5;
    -ms-grid-column: 9;
  }

  .gallery01>*:nth-child(18) {
    -ms-grid-row: 5;
    -ms-grid-column: 11;
  }
}

.gallery01__item {
  overflow: hidden;
  border-radius: 10px;
  opacity: 0;
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) all;
  transform: translate(0, 0.15rem);
}

.is-show .gallery01__item {
  opacity: 1;
  transform: translate(0, 0);
}

@media screen and (max-width: 767px) {
  .gallery01__item {
    border-radius: 5px;
  }
}

.gallery01__item:nth-of-type(1) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
  transition-delay: .4s;
}

.gallery01__item:nth-of-type(2) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-column: 3 / 5;
  transition-delay: .1s;
}

.gallery01__item:nth-of-type(3) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
  -ms-grid-column: 5;
  -ms-grid-column-span: 2;
  grid-column: 5 / 7;
  transition-delay: .6s;
}

.gallery01__item:nth-of-type(4) {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1 / 4;
  transition-delay: .5s;
}

.gallery01__item:nth-of-type(5) {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / 3;
  -ms-grid-column: 4;
  -ms-grid-column-span: 3;
  grid-column: 4 / 7;
  transition-delay: .3s;
}

.gallery01__item:nth-of-type(6) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1 / 3;
  -ms-grid-column: 7;
  -ms-grid-column-span: 1;
  grid-column: 7 / 8;
  transition-delay: .2s;
}

@media screen and (max-width: 767px) {
  .gallery01__item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3 / 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 6;
    grid-column: 1 / 7;
  }
}

.gallery02 {
  display: flex;
  gap: min(0.1rem, 2vw);
  padding: min(0.8rem, 16vw) 0 0 0;
}

@media screen and (max-width: 767px) {
  .gallery02 {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: hidden;
  }
}

.gallery02__item {
  flex-basis: 100%;
  overflow: hidden;
  border-radius: 10px;
  opacity: 0;
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) all;
  transform: translate(0, 0.25rem) rotate(0);
}

.is-show .gallery02__item {
  opacity: 1;
}

.gallery02__item img {
  width: 100%;
  max-width: none;
}

.gallery02__item:nth-of-type(1) {
  transition-delay: .2s;
}

.is-show .gallery02__item:nth-of-type(1) {
  transform: rotate(-4deg);
}

.gallery02__item:nth-of-type(2) {
  transition-delay: .5s;
}

.is-show .gallery02__item:nth-of-type(2) {
  transform: rotate(2deg);
}

.gallery02__item:nth-of-type(3) {
  transition-delay: .1s;
}

.is-show .gallery02__item:nth-of-type(3) {
  transform: rotate(-3deg);
}

.gallery02__item:nth-of-type(4) {
  transition-delay: .3s;
}

.is-show .gallery02__item:nth-of-type(4) {
  transform: rotate(3deg);
}

.gallery02__item:nth-of-type(5) {
  transition-delay: .4s;
}

.is-show .gallery02__item:nth-of-type(5) {
  transform: rotate(-2deg);
}

@media screen and (max-width: 767px) {
  .gallery02__item {
    flex-basis: calc((100% - 4vw) / 3);
    border-radius: 6px;
  }
}

.intro {
  box-sizing: content-box;
  max-width: 1460px;
  margin: 0 auto;
  padding: min(1.2rem, 10vw) 0.2rem 0 0.2rem;
}

.intro__main {
  overflow: hidden;
  border-radius: 10px;
  opacity: 0;
  transition: .4s ease opacity .2s, .4s ease transform .2s;
  transform: scale(1.1);
}

.intro__main.is-show {
  opacity: 1;
  transform: scale(1);
}

.intro__container {
  display: flex;
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .intro__container {
    flex-direction: column;
  }
}

.intro__photo {
  flex-basis: 34%;
  margin: -.57rem 0 0;
  padding: 0 .3rem 0 0;
  opacity: 0;
}

.is-show .intro__photo {
  -webkit-animation: bounce .6s ease .3s forwards;
  animation: bounce .6s ease .3s forwards;
}

@media screen and (max-width: 767px) {
  .intro__photo {
    margin: -.4rem 0 0;
    padding: 0 4vw;
  }
}

.intro__contents {
  flex: 1;
  padding: min(0.6rem, 6vw) min(0.65rem, 6.5vw) 0 min(0.6rem, 6vw);
  opacity: 0;
  transition: .4s ease opacity .5s;
}

.is-show .intro__contents {
  opacity: 1;
}

.intro__slider {
  margin: min(0.4rem, 6vw) 0 0 0;
}

.intro__slider-item {
  display: none;
}

.intro__slider-item.is-current {
  display: block;
}

.intro__sub-heading {
  font-size: min(0.27rem, 5vw);
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}

.intro__sub-heading em {
  color: #f35945;
}

.intro__txt {
  margin: min(0.2rem, 4vw) 0 0 0;
  line-height: 2.1;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .intro__txt {
    font-size: 3.6vw;
    line-height: 1.9;
  }
}

.intro__pagenation {
  position: relative;
  z-index: 1;
  margin: min(0.3rem, 5vw) 0 0 0;
}

.intro__pagenation::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 2px;
  background: #f5cb46;
  transform: translate(0, -50%);
}

.main {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
}

.main__bg {
  opacity: 0;
  transition: .3s ease opacity .2s;
}

.is-loaded .main__bg {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .main__bg {
    display: none;
  }
}

.main__title {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  transform: translate(0, 0);
}

.is-loaded .main__title {
  -webkit-animation: bounce .6s ease .5s forwards;
  animation: bounce .6s ease .5s forwards;
}

@media screen and (max-width: 767px) {
  .is-loaded .main__title {
    opacity: 1;
    transition: .3s ease opacity .3s;
    -webkit-animation: none;
    animation: none;
  }
}

@media screen and (max-width: 767px) {
  .main__title {
    position: static;
  }
}

.main__btn {
  position: absolute;
  right: 12.8%;
  bottom: 19.5%;
  display: flex;
  gap: .1rem;
  width: 24.5%;
  opacity: 0;
  transition: .5s ease opacity .8s;
  transform: rotate(-4deg);
}

.main__btn img {
  width: 100%;
  max-width: none;
}

.main__btn a {
  width: 100%;
}

.main__btn a:hover {
  transform: scale(1.04);
}

.is-loaded .main__btn {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .main__btn {
    position: static;
    width: 100%;
    padding: .3rem .3rem 0;
    transform: rotate(0);
  }
}

.mm-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: min(1.2rem, 5vw) 0.3rem 0 0.3rem;
  opacity: 0;
  transition: .4s ease .1s opacity;
}

.mm-container.is-show {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .mm-container {
    flex-direction: column-reverse;
    gap: .3rem;
  }
}

@media screen and (max-width: 767px) {
  .mm-container__item:first-of-type {
    overflow: hidden;
    margin: .1rem 0 0;
    border: 1px solid #ccc;
    border-radius: 10px;
  }

  .mm-container__item:first-of-type iframe {
    border-radius: 10px;
  }
}

.mm-container__item:last-of-type {
  box-sizing: content-box;
  max-width: 900px;
  padding: 0 min(0.58rem, 6vw);
}

@media screen and (max-width: 767px) {
  .mm-container__item:last-of-type {
    padding: 0;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: .3s ease opacity;
}

.modal.is-show {
  opacity: 1;
  pointer-events: all;
}

.modal__bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
}

.modal__container {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: .3rem;
  opacity: 0;
  pointer-events: none;
  transition: .5s ease opacity .1s, .5s ease transform .1s;
  transform: translate(0, 20px);
}

.is-show .modal__container {
  opacity: 1;
  transform: translate(0, 0);
}

@media screen and (max-width: 767px) {
  .modal__container {
    max-height: 90vh;
  }
}

.modal__close {
  position: fixed;
  top: 0;
  right: .1rem;
  z-index: 2;
  background: transparent;
}

.modal__close:hover {
  cursor: pointer;
}

.modal__close span {
  position: relative;
  display: block;
  width: 80px;
  height: 80px;
}

.modal__close span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #312a15;
  transform: rotate(45deg);
}

.modal__close span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #312a15;
  transform: rotate(-45deg);
}

.movie-player {
  max-width: 1000px;
  margin: 0 auto;
}

.is-show .movie-player {
  pointer-events: all;
}

.movie-player__contents {
  width: 100%;
  background: #fff;
}

.movie-player__contents iframe {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1920 / 1080;
}

.movie-player__selector {
  display: flex;
}

.movie-player__btn {
  position: relative;
  flex: 1;
  padding: 1em .8em;
  font-size: .16rem;
  text-align: center;
}

.movie-player__btn:hover {
  color: #f5cb46;
  cursor: pointer;
}

.movie-player__btn.is-active {
  color: #f5cb46;
}

.movie-player__btn.is-active::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  background: #f5cb46;
}

.movie {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 10px;
}

.movie:hover {
  cursor: pointer;
}

.movie__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .movie__btn {
    width: 20vw;
  }
}

.movie__bg {
  transition: 0.2s all ease 0s;
}

.movie:hover .movie__bg {
  transform: scale(1.03);
}

.movie__bg img {
  width: 100%;
  max-width: none;
}

.music {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.music__item {
  position: absolute;
  bottom: -200px;
  color: #f5cb46;
  -webkit-animation: music linear infinite;
  animation: music linear infinite;
}

.music__item:nth-of-type(1) {
  left: -.5%;
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
  -webkit-animation-delay: 0;
  animation-delay: 0;
}

.music__item:nth-of-type(2) {
  left: 15%;
  -webkit-animation-name: music02;
  animation-name: music02;
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.music__item:nth-of-type(3) {
  left: 18%;
  filter: blur(3px);
  -webkit-animation-duration: 21s;
  animation-duration: 21s;
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.music__item:nth-of-type(4) {
  left: 50%;
  filter: blur(3px);
  -webkit-animation-name: music02;
  animation-name: music02;
  -webkit-animation-duration: 13s;
  animation-duration: 13s;
  -webkit-animation-delay: -8s;
  animation-delay: -8s;
}

.music__item:nth-of-type(5) {
  left: 29%;
  filter: blur(2px);
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
  -webkit-animation-delay: 8s;
  animation-delay: 8s;
}

.music__item:nth-of-type(6) {
  left: 35%;
  filter: blur(1px);
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.music__item:nth-of-type(7) {
  left: 43%;
  filter: blur(1px);
  -webkit-animation-name: music02;
  animation-name: music02;
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.music__item:nth-of-type(8) {
  left: 53%;
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
  -webkit-animation-delay: -5s;
  animation-delay: -5s;
}

.music__item:nth-of-type(9) {
  left: 60%;
  filter: blur(1px);
  -webkit-animation-name: music02;
  animation-name: music02;
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.music__item:nth-of-type(10) {
  left: 62%;
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.music__item:nth-of-type(11) {
  left: 80%;
  filter: blur(2px);
  -webkit-animation-name: music02;
  animation-name: music02;
  -webkit-animation-duration: 27s;
  animation-duration: 27s;
  -webkit-animation-delay: -15s;
  animation-delay: -15s;
}

.music__item:nth-of-type(12) {
  left: 82%;
  filter: blur(2px);
  -webkit-animation-duration: 12s;
  animation-duration: 12s;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.music__item:nth-of-type(13) {
  left: 95%;
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

@-webkit-keyframes music {
  0% {
    transform: translate(0, 0) rotate(0);
  }

  100% {
    transform: translate3d(0, -190vh, 0) rotate(90deg);
  }
}

@keyframes music {
  0% {
    transform: translate(0, 0) rotate(0);
  }

  100% {
    transform: translate3d(0, -190vh, 0) rotate(90deg);
  }
}

@-webkit-keyframes music02 {
  0% {
    transform: translate(0, 0) rotate(0);
  }

  100% {
    transform: translate3d(0, -190vh, 0) rotate(-90deg);
  }
}

@keyframes music02 {
  0% {
    transform: translate(0, 0) rotate(0);
  }

  100% {
    transform: translate3d(0, -190vh, 0) rotate(-90deg);
  }
}

@media screen and (max-width: 767px) {
  .mvtk {
    max-width: 320px;
  }
}

#mvtk-widgets-container {
  width: 100%;
  margin: 0 auto;
}

.navigation__btn {
  position: fixed;
  top: .1rem;
  right: .1rem;
  z-index: 100;
  background: url("images/navi_bg.svg") no-repeat center center;
}

@media screen and (max-width: 767px) {
  .navigation__btn {
    top: auto;
    right: .05rem;
    bottom: .05rem;
  }
}

.navigation__container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  display: flex;
  gap: .2rem;
  align-items: center;
  width: 100vw;
  height: 100vh;
  min-height: 770px;
  padding: .2rem;
  background: rgba(245, 203, 70, 0.98);
  opacity: 0;
  pointer-events: none;
  transition: .3s ease opacity;
}

@media screen and (max-width: 767px) {
  .navigation__container {
    flex-direction: column;
    justify-content: center;
    margin: -.3rem 0 0;
  }
}

.navigation.is-open .navigation__container {
  opacity: 1;
  pointer-events: all;
}

.navigation__title {
  flex-basis: 50%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .navigation__title {
    flex-basis: auto;
    width: 88%;
  }
}

.navigation__list {
  flex-basis: 50%;
}

@media screen and (max-width: 767px) {
  .navigation__list {
    flex-basis: auto;
  }
}

.navigation__item {
  color: #fff;
  font-size: min(0.31rem, 5.5vw);
  font-family: "Noto Sans JP", sans-serif;
  transition: 0.2s all ease 0s;
}

.navigation__item em {
  vertical-align: top;
  color: #312a15;
  font-size: .5em;
}

@media screen and (max-width: 767px) {
  .navigation__item em {
    font-size: .6em;
  }
}

.navigation__item:hover {
  transform: scale(1.02);
}

.pagenation {
  display: flex;
  gap: .1rem;
  justify-content: center;
}

.pagenation__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: .46rem;
  height: .46rem;
  padding: 0 0 3px;
  border-radius: 50%;
  background: #ececec;
  font-size: .2rem;
  font-family: "Noto Sans JP", sans-serif;
}

.pagenation__item a {
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .pagenation__item a {
    pointer-events: all;
  }
}

.pagenation__item.is-current,
.pagenation__item:hover {
  background: #f5cb46;
}

.pagenation__item:hover {
  cursor: pointer;
}

.profile {
  max-width: 1080px;
  margin: .5rem auto;
  padding: min(0.5rem, 5vw);
  border-radius: 10px;
  background: #f5cb46;
}

.profile__heading {
  color: #fff;
  font-size: min(0.18rem, 3.6vw);
  line-height: 1.3;
  font-family: "Noto Sans JP", sans-serif;
}

.profile__heading em {
  color: #312a15;
  font-size: 1.2em;
}

.profile__txt {
  margin: 1em 0 0;
  font-size: .15rem;
  line-height: 1.8;
  text-align: justify;
}

.site-loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: .3s ease opacity 2s;
}

.site-loading.is-loaded {
  opacity: 0;
  pointer-events: none;
}

.site-loading__container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65%;
  max-width: 350px;
  height: 200px;
  text-align: center;
  transform: translate(0, -15%);
}

.site-loading__music {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: flex;
  justify-content: space-around;
  width: 100%;
  height: 100%;
  padding: 0 .3rem;
}

.site-loading__music-item {
  opacity: 0;
  transform: translate3d(0, 0.5rem, 0);
}

.site-loading__music-item img {
  display: inline-block;
  transform: scaleX(-1);
  animation: rotateZ 0.5s cubic-bezier(0.33, 1, 0.68, 1) infinite alternate-reverse;
}

.site-loading__music-item.-item01 {
  -webkit-animation: upY01 3s ease infinite .6s;
  animation: upY01 3s ease infinite .6s;
}

.site-loading__music-item.-item02 {
  -webkit-animation: upY02 3s ease infinite .3s;
  animation: upY02 3s ease infinite .3s;
}

.site-loading__music-item.-item03 {
  -webkit-animation: upY03 3s ease infinite .5s;
  animation: upY03 3s ease infinite .5s;
}

@-webkit-keyframes rotateZ {
  100% {
    transform: scaleX(1);
  }
}

@keyframes rotateZ {
  100% {
    transform: scaleX(1);
  }
}

@-webkit-keyframes upY01 {
  20% {
    opacity: 1;
    transform: translate3d(0, 0.1rem, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 0.06rem, 0);
  }

  80% {
    opacity: 0;
    transform: translate3d(0, -0.3rem, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -0.3rem, 0);
  }
}

@keyframes upY01 {
  20% {
    opacity: 1;
    transform: translate3d(0, 0.1rem, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 0.06rem, 0);
  }

  80% {
    opacity: 0;
    transform: translate3d(0, -0.3rem, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -0.3rem, 0);
  }
}

@-webkit-keyframes upY02 {
  20% {
    opacity: 1;
    transform: translate3d(0, -0.2rem, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -0.3rem, 0);
  }

  80% {
    opacity: 0;
    transform: translate3d(0, -0.5rem, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -0.5rem, 0);
  }
}

@keyframes upY02 {
  20% {
    opacity: 1;
    transform: translate3d(0, -0.2rem, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -0.3rem, 0);
  }

  80% {
    opacity: 0;
    transform: translate3d(0, -0.5rem, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -0.5rem, 0);
  }
}

@-webkit-keyframes upY03 {
  20% {
    opacity: 1;
    transform: translate3d(0, 0.25rem, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 0.19rem, 0);
  }

  80% {
    opacity: 0;
    transform: translate3d(0, -0.3rem, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -0.3rem, 0);
  }
}

@keyframes upY03 {
  20% {
    opacity: 1;
    transform: translate3d(0, 0.25rem, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 0.19rem, 0);
  }

  80% {
    opacity: 0;
    transform: translate3d(0, -0.3rem, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -0.3rem, 0);
  }
}

.songs-list__heading {
  text-align: right;
}

.songs-list__heading span {
  display: inline-block;
  padding: .4em .7em;
  background: #f5cb46;
  font-weight: bold;
  font-size: .17rem;
  transform: rotate(3deg) translate(0, -0.03rem);
}

.songs-list__group {
  border-top: 1px solid #ccc;
}

.songs-list__item {
  display: flex;
  padding: 1em .5em;
  border-bottom: 1px solid #ccc;
  font-size: .14rem;
}

.songs-list__item:nth-of-type(2) .songs-list__song::before {
  -webkit-animation-delay: .05s;
  animation-delay: .05s;
}

.songs-list__item:nth-of-type(1) .songs-list__song::before {
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
}

.songs-list__item:nth-of-type(2) .songs-list__song::before {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.songs-list__item:nth-of-type(3) .songs-list__song::before {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.songs-list__item:nth-of-type(4) .songs-list__song::before {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.songs-list__item:nth-of-type(5) .songs-list__song::before {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.songs-list__item:nth-of-type(6) .songs-list__song::before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.songs-list__item:nth-of-type(7) .songs-list__song::before {
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}

.songs-list__item:nth-of-type(8) .songs-list__song::before {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.songs-list__item:nth-of-type(9) .songs-list__song::before {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s;
}

.songs-list__item:nth-of-type(10) .songs-list__song::before {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@media screen and (max-width: 767px) {
  .songs-list__item {
    display: block;
  }
}

.songs-list__song {
  flex-basis: 60%;
  font-weight: bold;
}

.songs-list__song::before {
  content: "♪";
  display: inline-block;
  color: #5fb017;
  transform: rotate(25deg);
  transform-origin: center top;
  -webkit-animation: wave 1s ease infinite;
  animation: wave 1s ease infinite;
}

@-webkit-keyframes wave {
  50% {
    transform: rotate(-25deg);
  }

  100% {
    transform: rotate(25deg);
  }
}

@keyframes wave {
  50% {
    transform: rotate(-25deg);
  }

  100% {
    transform: rotate(25deg);
  }
}

.songs-list__artist {
  flex-basis: 40%;
}

@media screen and (max-width: 767px) {
  .songs-list__artist {
    margin: 1.5vw 0 0;
  }
}

.songs {
  display: flex;
  gap: min(0.6rem, 10vw);
  align-items: center;
  max-width: 1390px;
  margin: 0 auto;
  padding: min(1.2rem, 20vw) 0.3rem 0 0.3rem;
  opacity: 0;
  transform: translate(0, 0.3rem);
}

.songs.is-show {
  -webkit-animation: bounce .6s ease .3s forwards;
  animation: bounce .6s ease .3s forwards;
}

@media screen and (max-width: 767px) {
  .songs {
    flex-direction: column;
  }
}

.songs__container {
  flex: 1;
}

@media screen and (max-width: 767px) {
  .songs__heading img {
    width: 42vw;
  }
}

.songs__sug-heading {
  margin: min(0.6rem, 8vw) 0 0 0;
  font-size: min(0.27rem, 5vw);
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}

.songs__txt {
  margin: min(0.2rem, 4vw) 0 0 0;
  line-height: 2.1;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .songs__txt {
    font-size: 3.6vw;
    line-height: 1.9;
  }
}

.songs__player {
  margin: min(0.3rem, 7vw) 0 0 0;
}

.staff {
  padding: min(1.2rem, 20vw) 0.3rem 0 0.3rem;
  opacity: 0;
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) all 0.3s;
  transform: translate(0, 0.25rem);
}

.staff.is-show {
  opacity: 1;
  transform: translate(0, 0);
}

.staff__heading {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .staff__heading img {
    width: 36vw;
  }
}

.staff__container {
  max-width: 1080px;
  margin: min(0.7rem, 10vw) auto 0 auto;
}

.staff__dir {
  display: flex;
  gap: min(0.52rem, 5vw);
  align-items: center;
}

@media screen and (max-width: 767px) {
  .staff__dir {
    flex-direction: column;
  }
}

.staff__dir-photo {
  flex-basis: 29%;
  overflow: hidden;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .staff__dir-photo {
    width: 65%;
  }
}

.staff__dir-content {
  flex: 1;
}

.staff__name {
  color: #edb121;
  font-size: min(0.16rem, 5vw);
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
}

.staff__name em {
  display: block;
  color: #312a15;
  font-size: 1.18em;
}

.staff__txt {
  margin: min(0.1rem, 4vw) 0 0 0;
  font-size: min(0.14rem, 3.2vw);
  line-height: 1.8;
  text-align: justify;
}

.staff__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr min(0.52rem, 5vw) 1fr;
  grid-template-columns: 1fr 1fr;
  gap: min(0.7rem, 10vw) min(0.52rem, 5vw);
  margin: min(0.7rem, 10vw) 0 0 0;
}

@media screen and (max-width: 767px) {
  .staff__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.story {
  padding: min(1.2rem, 20vw) 0.2rem 0 0.2rem;
}

.story__inner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-width: 1460px;
  margin: 0 auto;
  padding: min(0.92rem, 7vw) min(1.1rem, 7vw);
  border-radius: 10px;
}

.story__container {
  padding: 0 50.6% 0 0;
  opacity: 0;
  transition: .4s ease .6s opacity, .4s ease .6s transform;
  transform: translate(0, 0.3rem);
}

.is-show .story__container {
  opacity: 1;
  transform: translate(0, 0);
}

@media screen and (max-width: 767px) {
  .story__container {
    padding: 0 0 85%;
  }
}

.story__heading {
  margin: 0 0 min(0.5rem, 5vw);
}

@media screen and (max-width: 767px) {
  .story__heading img {
    width: 38vw;
  }
}

.story__txt {
  margin: min(0.3rem, 6vw) 0 0;
  color: #fff;
  line-height: 2.1;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .story__txt {
    font-size: 3.6vw;
    line-height: 1.9;
  }
}

.story__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #d2b69e;
  opacity: 0;
  transition: .4s ease .3s opacity;
}

.is-show .story__bg {
  opacity: 1;
}

.story__bg img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
  -o-object-position: right bottom;
  object-position: right bottom;
}

@media screen and (max-width: 767px) {
  .story__bg img {
    -o-object-fit: contain;
    object-fit: contain;
  }
}

.fade-in {
  opacity: 0;
}

.fade-in.is-show {
  opacity: 1;
  transition: .7s ease opacity 1s;
}

@-webkit-keyframes catchFrame {
  0% {
    width: 0%;
    transform: scaleX(1);
  }

  40% {
    width: 100%;
    transform: scaleX(1);
  }

  60% {
    width: 100%;
    transform: scaleX(1);
  }

  100% {
    width: 100%;
    transform: scaleX(0);
  }
}

@keyframes catchFrame {
  0% {
    width: 0%;
    transform: scaleX(1);
  }

  40% {
    width: 100%;
    transform: scaleX(1);
  }

  60% {
    width: 100%;
    transform: scaleX(1);
  }

  100% {
    width: 100%;
    transform: scaleX(0);
  }
}

@-webkit-keyframes catchText {
  0% {
    visibility: hidden;
  }

  40% {
    visibility: hidden;
  }

  60% {
    visibility: visible;
  }

  100% {
    visibility: visible;
  }
}

@keyframes catchText {
  0% {
    visibility: hidden;
  }

  40% {
    visibility: hidden;
  }

  60% {
    visibility: visible;
  }

  100% {
    visibility: visible;
  }
}

@-webkit-keyframes fade {
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes blur {
  0% {
    opacity: 0;
    filter: blur(5px);
    transform: scale(0.97) skew(1.5deg);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1) skew(0);
  }
}

@keyframes blur {
  0% {
    opacity: 0;
    filter: blur(5px);
    transform: scale(0.97) skew(1.5deg);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1) skew(0);
  }
}

@-webkit-keyframes mouseon {
  1% {
    opacity: .3;
  }

  100% {
    opacity: 1;
  }
}

@keyframes mouseon {
  1% {
    opacity: .3;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes scale {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scale {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@-webkit-keyframes glitch {
  0% {
    opacity: 1;
  }

  30% {
    opacity: 0;
    transform: scaleX(1.4);
  }

  50% {
    opacity: 1;
    transform: scaleX(1.2);
  }

  85% {
    opacity: 0;
    transform: scaleX(1);
  }

  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes glitch {
  0% {
    opacity: 1;
  }

  30% {
    opacity: 0;
    transform: scaleX(1.4);
  }

  50% {
    opacity: 1;
    transform: scaleX(1.2);
  }

  85% {
    opacity: 0;
    transform: scaleX(1);
  }

  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@-webkit-keyframes bounce {
  30% {
    transform: translate(0, -0.2rem);
  }

  70% {
    transform: translate(0, 0.1rem);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes bounce {
  30% {
    transform: translate(0, -0.2rem);
  }

  70% {
    transform: translate(0, 0.1rem);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

/************************************

Display switch

************************************/
.pc-block {
  display: block;
}

.pc-inline {
  display: inline;
}

.sp-block {
  display: none;
}

.sp-inline {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc-block {
    display: none;
  }

  .sp-block {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .pc-inline {
    display: none;
  }

  .sp-inline {
    display: inline;
  }
}