@charset "UTF-8";
body {
  margin: 0;
}

.glitch {
  position: absolute;
  top: 0;
  left: 0;
  background: transparent no-repeat center;
  background-size: 100% auto !important;
  background-position: center center !important;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.glitch::before, .glitch::after,
.glitch .channel {
  background: inherit;
  background-size: 100% auto !important;
  background-position: center center !important;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.glitch .channel::before {
  bottom: 0;
  content: "";
  display: block;
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}

@-webkit-keyframes spin-right {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(360deg); /* 360度回転 */
  }
}

@keyframes spin-right {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(360deg); /* 360度回転 */
  }
}
@-webkit-keyframes spin-left {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(-360deg); /* 360度回転 */
  }
}
@keyframes spin-left {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(-360deg); /* 360度回転 */
  }
}
@-webkit-keyframes spin-right-center {
  0% {
    transform: translate(-50%, -50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg); /* 360度回転 */
  }
}
@keyframes spin-right-center {
  0% {
    transform: translate(-50%, -50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg); /* 360度回転 */
  }
}
@-webkit-keyframes arrow-fade {
  0% {
    fill: rgba(255, 255, 255, 0); /* 初期位置 */
  }
  40% {
    fill: #B100FF;
  }
  80% {
    fill: #fff;
  }
  100% {
    fill: #fff;
  }
}
@keyframes arrow-fade {
  0% {
    fill: rgba(255, 255, 255, 0); /* 初期位置 */
  }
  40% {
    fill: #B100FF;
  }
  80% {
    fill: #fff;
  }
  100% {
    fill: #fff;
  }
}
@-webkit-keyframes scaleFit {
  0% {
    transform: scale(0.5); /* 初期位置 */
  }
  75% {
    transform: scale(1.03); /* 初期位置 */
  }
  100% {
    transform: scale(1); /* 初期位置 */
  }
}
@keyframes scaleFit {
  0% {
    transform: scale(0.5); /* 初期位置 */
  }
  75% {
    transform: scale(1.03); /* 初期位置 */
  }
  100% {
    transform: scale(1); /* 初期位置 */
  }
}
@-webkit-keyframes poemSlide {
  0% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes poemSlide {
  0% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(0px);
  }
}
@-webkit-keyframes fontChange {
  0% {
    font-family: "DotGothic16", sans-serif;
  }
  80% {
    font-family: "Zen Old Mincho", serif;
    transform: skewY(5deg) scale(1.2);
  }
  100% {
    font-family: "Shippori Antique", sans-serif;
    transform: skewY(0deg);
    font-weight: normal;
  }
}
@keyframes fontChange {
  0% {
    font-family: "DotGothic16", sans-serif;
  }
  80% {
    font-family: "Zen Old Mincho", serif;
    transform: skewY(5deg) scale(1.2);
  }
  100% {
    font-family: "Shippori Antique", sans-serif;
    transform: skewY(0deg);
    font-weight: normal;
  }
}
@-webkit-keyframes albumAnime {
  0% {
    background: #fff;
  }
  20% {
    background: #8337E6;
  }
  40% {
    background: #831550;
  }
  60% {
    background: #FB33BF;
  }
  80% {
    background: #61C3BB;
  }
  100% {
    background: #fff;
  }
}
@keyframes albumAnime {
  0% {
    background: #fff;
  }
  20% {
    background: #8337E6;
  }
  40% {
    background: #831550;
  }
  60% {
    background: #FB33BF;
  }
  80% {
    background: #61C3BB;
  }
  100% {
    background: #fff;
  }
}
/*=============================================================
 tools
=============================================================*/
#bnr-ticket, #btn-nav {
  opacity: 0;
  transition: all 0.5s ease;
}
#bnr-ticket.on, #btn-nav.on {
  opacity: 1;
}

#loading {
  position: fixed;
  inset: 0;
  color: #B100FF;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: url("../img/loading/bg.webp") no-repeat center center #1F2122;
  background-size: cover;
  z-index: 99;
  transition: all 0.5s 0.5s ease;
}
@media only screen and (max-width: 768px) {
  #loading {
    gap: 2.1875vw;
  }
}
#loading.is-loaded {
  opacity: 0;
}
#loading .term {
  flex: 1;
  overflow: hidden;
  font-size: 14px;
  border: 1px solid #1f2a36;
  border-radius: 10px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  white-space: pre-wrap;
  line-height: 1.45;
}
@media only screen and (max-width: 768px) {
  #loading .term {
    font-size: 2.1875vw;
    padding: 6.25vw;
    border-radius: 1.5625vw;
    box-shadow: 0 1.5625vw 6.25vw rgba(0, 0, 0, 0.35);
  }
}
#loading .term .cursor {
  display: inline-block;
  margin-left: 2px;
  -webkit-animation: blink 0.9s steps(1) infinite;
          animation: blink 0.9s steps(1) infinite;
}
@-webkit-keyframes blink {
  50% {
    opacity: 0;
  }
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
#loading .hud {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media only screen and (max-width: 768px) {
  #loading .hud {
    gap: 1.875vw;
  }
}
#loading .hud .bar {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  margin: 0 25px 10px;
  background: #14202c;
  overflow: hidden;
  border: 1px solid #1f2a36;
}
@media only screen and (max-width: 768px) {
  #loading .hud .bar {
    height: 0.625vw;
    margin: 0 3.90625vw 1.5625vw;
  }
}
#loading .hud .bar__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #000, #B100FF);
  transition: width 0.15s linear;
}
#loading .hud .pct {
  position: absolute;
  bottom: 40px;
  right: 30px;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: right;
  font-size: 14px;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
@media only screen and (max-width: 768px) {
  #loading .hud .pct {
    bottom: 6.25vw;
    right: 4.6875vw;
    width: 7.03125vw;
    height: 7.03125vw;
    font-size: 2.1875vw;
  }
}
#loading .circle-dash-loader {
  position: absolute;
  bottom: 40px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #B100FF;
}
@media only screen and (max-width: 768px) {
  #loading .circle-dash-loader {
    bottom: 6.25vw;
    right: 4.6875vw;
    width: 7.8125vw;
    height: 7.8125vw;
  }
}
#loading .circle-dash-loader::before, #loading .circle-dash-loader::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid;
  border-color: currentColor transparent currentColor transparent;
  -webkit-animation: circle-dash-animation 1.5s linear infinite;
          animation: circle-dash-animation 1.5s linear infinite;
}
@media only screen and (max-width: 768px) {
  #loading .circle-dash-loader::before, #loading .circle-dash-loader::after {
    border-width: 0.46875vw;
  }
}
#loading .circle-dash-loader::after {
  animation-direction: reverse;
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
@-webkit-keyframes circle-dash-animation {
  0% {
    transform: rotate(0deg);
    opacity: 1;
    border-width: 3px;
    @media only screen and (max-width: 768px) {
      #loading {
        transform: rotate(0deg);
        opacity: 1;
        border-width: 0.46875vw;
      }
    }
  }
  50% {
    opacity: 0.5;
    border-width: 2px;
    @media only screen and (max-width: 768px) {
      #loading {
        opacity: 0.5;
        border-width: 0.3125vw;
      }
    }
  }
  100% {
    transform: rotate(360deg);
    opacity: 1;
    border-width: 3px;
    @media only screen and (max-width: 768px) {
      #loading {
        transform: rotate(360deg);
        opacity: 1;
        border-width: 0.46875vw;
      }
    }
  }
}
@keyframes circle-dash-animation {
  0% {
    transform: rotate(0deg);
    opacity: 1;
    border-width: 3px;
    @media only screen and (max-width: 768px) {
      #loading {
        transform: rotate(0deg);
        opacity: 1;
        border-width: 0.46875vw;
      }
    }
  }
  50% {
    opacity: 0.5;
    border-width: 2px;
    @media only screen and (max-width: 768px) {
      #loading {
        opacity: 0.5;
        border-width: 0.3125vw;
      }
    }
  }
  100% {
    transform: rotate(360deg);
    opacity: 1;
    border-width: 3px;
    @media only screen and (max-width: 768px) {
      #loading {
        transform: rotate(360deg);
        opacity: 1;
        border-width: 0.46875vw;
      }
    }
  }
}

#keyvisual {
  position: relative;
}
#keyvisual::after {
  content: "";
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  width: 100vw;
  height: 300px;
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0), rgb(0, 0, 0));
}
@media only screen and (max-width: 768px) {
  #keyvisual::after {
    height: 15.625vw;
  }
}
#keyvisual .keyvisual__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#keyvisual .keyvisual__member {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
#keyvisual .keyvisual__illust {
  position: relative;
}
#keyvisual .keyvisual__title {
  position: absolute;
  top: 34vw;
  left: 50%;
  transform: translateX(-50%);
  width: 37.1vw;
}
@media only screen and (max-width: 768px) {
  #keyvisual .keyvisual__title {
    top: 64.0625vw;
    width: 56.25vw;
  }
}
#keyvisual .keyvisual__title .glitch {
  background-image: url("../img/kv/logo.png");
}
#keyvisual .keyvisual__date {
  position: absolute;
  bottom: 5vw;
  left: 50%;
  transform: translateX(-50%);
  width: 44.6vw;
}
@media only screen and (max-width: 768px) {
  #keyvisual .keyvisual__date {
    width: 96.09375vw;
  }
}
#keyvisual .keyvisual__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-image: linear-gradient(1deg, rgba(255, 255, 255, 0), rgb(0, 0, 0) 26% 35%);
}
#keyvisual .keyvisual__bg {
  filter: grayscale(2);
  transition: all 0.8s 1.5s ease-out;
}
#keyvisual .keyvisual__bg span {
  filter: brightness(0.5);
  transition: all 0.5s 1.6s ease-out;
}
#keyvisual .keyvisual__bg span img {
  transform: scale(1.1);
  transition: all 0.6s 1.7s ease;
}
#keyvisual .keyvisual__member {
  filter: brightness(0);
  transition: all 0.3s 1.8s ease-out;
}
#keyvisual .keyvisual__member img {
  filter: blur(2px);
  transition: all 0.5s 1.1s ease-out;
}
#keyvisual .keyvisual__illust {
  opacity: 0;
  transition: all 0.6s 2.2s ease;
}
#keyvisual .keyvisual__title {
  opacity: 0;
  transition: all 0.6s 1.8s ease;
}
#keyvisual .keyvisual__title img {
  transform: scale(0.5);
}
#keyvisual .keyvisual__title .glitch {
  opacity: 0;
  transition: all 0.8s 2.4s ease;
}
#keyvisual .keyvisual__date {
  opacity: 0;
  filter: blur(15px);
  transition: all 1s 2.5s ease;
}
#keyvisual .keyvisual__cover {
  transform: translateY(0px);
  transition: all 2s ease;
}
#keyvisual.move-on .keyvisual__bg {
  filter: grayscale(0);
}
#keyvisual.move-on .keyvisual__bg span {
  filter: brightness(1);
}
#keyvisual.move-on .keyvisual__bg span img {
  transform: scale(1);
}
#keyvisual.move-on .keyvisual__member {
  filter: brightness(1);
}
#keyvisual.move-on .keyvisual__member img {
  filter: blur(0px);
}
#keyvisual.move-on .keyvisual__illust {
  opacity: 1;
}
#keyvisual.move-on .keyvisual__title {
  opacity: 1;
}
#keyvisual.move-on .keyvisual__title img {
  -webkit-animation: scaleFit 0.6s 1.9s ease-in-out both;
          animation: scaleFit 0.6s 1.9s ease-in-out both;
}
#keyvisual.move-on .keyvisual__title .glitch {
  opacity: 1;
}
#keyvisual.move-on .keyvisual__title .glitch::before {
  -webkit-animation: glitch-before 3s linear infinite alternate both;
          animation: glitch-before 3s linear infinite alternate both;
  content: "";
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}
@-webkit-keyframes glitch-before {
  0% {
    -webkit-clip-path: polygon(0% 56.2574929106%, 100% 56.2574929106%, 100% 62.1312718473%, 0% 62.1312718473%);
            clip-path: polygon(0% 56.2574929106%, 100% 56.2574929106%, 100% 62.1312718473%, 0% 62.1312718473%);
    transform: translate(-0.9292023516%, -0.4992879649%);
    opacity: 1;
  }
  2% {
    -webkit-clip-path: polygon(0% 22.1082506299%, 100% 22.1082506299%, 100% 23.4804996181%, 0% 23.4804996181%);
            clip-path: polygon(0% 22.1082506299%, 100% 22.1082506299%, 100% 23.4804996181%, 0% 23.4804996181%);
    transform: translate(-6.6943719343%, 0.0075301675%);
    opacity: 1;
  }
  4% {
    -webkit-clip-path: polygon(0% 88.5719536569%, 100% 88.5719536569%, 100% 97.1828125394%, 0% 97.1828125394%);
            clip-path: polygon(0% 88.5719536569%, 100% 88.5719536569%, 100% 97.1828125394%, 0% 97.1828125394%);
    transform: translate(-5.733440341%, -0.1867357883%);
    opacity: 1;
  }
  6% {
    -webkit-clip-path: polygon(0% 68.7002425634%, 100% 68.7002425634%, 100% 78.5750460955%, 0% 78.5750460955%);
            clip-path: polygon(0% 68.7002425634%, 100% 68.7002425634%, 100% 78.5750460955%, 0% 78.5750460955%);
    transform: translate(-0.5049299527%, 0.1671714938%);
    opacity: 1;
  }
  8% {
    -webkit-clip-path: polygon(0% 40.2664663501%, 100% 40.2664663501%, 100% 45.0272856998%, 0% 45.0272856998%);
            clip-path: polygon(0% 40.2664663501%, 100% 40.2664663501%, 100% 45.0272856998%, 0% 45.0272856998%);
    transform: translate(0.8286868721%, -0.0839077769%);
    opacity: 1;
  }
  10% {
    -webkit-clip-path: polygon(0% 65.6820562746%, 100% 65.6820562746%, 100% 69.3832087784%, 0% 69.3832087784%);
            clip-path: polygon(0% 65.6820562746%, 100% 65.6820562746%, 100% 69.3832087784%, 0% 69.3832087784%);
    transform: translate(-3.0395265119%, -0.1470907508%);
    opacity: 1;
  }
  12% {
    -webkit-clip-path: polygon(0% 36.0787738133%, 100% 36.0787738133%, 100% 42.3011019894%, 0% 42.3011019894%);
            clip-path: polygon(0% 36.0787738133%, 100% 36.0787738133%, 100% 42.3011019894%, 0% 42.3011019894%);
    transform: translate(1.6552532348%, 0.0595167288%);
    opacity: 1;
  }
  14% {
    -webkit-clip-path: polygon(0% 72.6055940698%, 100% 72.6055940698%, 100% 81.6819417507%, 0% 81.6819417507%);
            clip-path: polygon(0% 72.6055940698%, 100% 72.6055940698%, 100% 81.6819417507%, 0% 81.6819417507%);
    transform: translate(6.676637187%, 0.4020961418%);
    opacity: 1;
  }
  16% {
    -webkit-clip-path: polygon(0% 58.1104194614%, 100% 58.1104194614%, 100% 59.718344628%, 0% 59.718344628%);
            clip-path: polygon(0% 58.1104194614%, 100% 58.1104194614%, 100% 59.718344628%, 0% 59.718344628%);
    transform: translate(-4.7252969712%, -0.3638915979%);
    opacity: 1;
  }
  18% {
    -webkit-clip-path: polygon(0% 88.2992534071%, 100% 88.2992534071%, 100% 94.2101113105%, 0% 94.2101113105%);
            clip-path: polygon(0% 88.2992534071%, 100% 88.2992534071%, 100% 94.2101113105%, 0% 94.2101113105%);
    transform: translate(-3.549314084%, -0.3957432703%);
    opacity: 1;
  }
  20%, 100% {
    -webkit-clip-path: none;
            clip-path: none;
    transform: none;
    opacity: 0;
  }
}
@keyframes glitch-before {
  0% {
    -webkit-clip-path: polygon(0% 56.2574929106%, 100% 56.2574929106%, 100% 62.1312718473%, 0% 62.1312718473%);
            clip-path: polygon(0% 56.2574929106%, 100% 56.2574929106%, 100% 62.1312718473%, 0% 62.1312718473%);
    transform: translate(-0.9292023516%, -0.4992879649%);
    opacity: 1;
  }
  2% {
    -webkit-clip-path: polygon(0% 22.1082506299%, 100% 22.1082506299%, 100% 23.4804996181%, 0% 23.4804996181%);
            clip-path: polygon(0% 22.1082506299%, 100% 22.1082506299%, 100% 23.4804996181%, 0% 23.4804996181%);
    transform: translate(-6.6943719343%, 0.0075301675%);
    opacity: 1;
  }
  4% {
    -webkit-clip-path: polygon(0% 88.5719536569%, 100% 88.5719536569%, 100% 97.1828125394%, 0% 97.1828125394%);
            clip-path: polygon(0% 88.5719536569%, 100% 88.5719536569%, 100% 97.1828125394%, 0% 97.1828125394%);
    transform: translate(-5.733440341%, -0.1867357883%);
    opacity: 1;
  }
  6% {
    -webkit-clip-path: polygon(0% 68.7002425634%, 100% 68.7002425634%, 100% 78.5750460955%, 0% 78.5750460955%);
            clip-path: polygon(0% 68.7002425634%, 100% 68.7002425634%, 100% 78.5750460955%, 0% 78.5750460955%);
    transform: translate(-0.5049299527%, 0.1671714938%);
    opacity: 1;
  }
  8% {
    -webkit-clip-path: polygon(0% 40.2664663501%, 100% 40.2664663501%, 100% 45.0272856998%, 0% 45.0272856998%);
            clip-path: polygon(0% 40.2664663501%, 100% 40.2664663501%, 100% 45.0272856998%, 0% 45.0272856998%);
    transform: translate(0.8286868721%, -0.0839077769%);
    opacity: 1;
  }
  10% {
    -webkit-clip-path: polygon(0% 65.6820562746%, 100% 65.6820562746%, 100% 69.3832087784%, 0% 69.3832087784%);
            clip-path: polygon(0% 65.6820562746%, 100% 65.6820562746%, 100% 69.3832087784%, 0% 69.3832087784%);
    transform: translate(-3.0395265119%, -0.1470907508%);
    opacity: 1;
  }
  12% {
    -webkit-clip-path: polygon(0% 36.0787738133%, 100% 36.0787738133%, 100% 42.3011019894%, 0% 42.3011019894%);
            clip-path: polygon(0% 36.0787738133%, 100% 36.0787738133%, 100% 42.3011019894%, 0% 42.3011019894%);
    transform: translate(1.6552532348%, 0.0595167288%);
    opacity: 1;
  }
  14% {
    -webkit-clip-path: polygon(0% 72.6055940698%, 100% 72.6055940698%, 100% 81.6819417507%, 0% 81.6819417507%);
            clip-path: polygon(0% 72.6055940698%, 100% 72.6055940698%, 100% 81.6819417507%, 0% 81.6819417507%);
    transform: translate(6.676637187%, 0.4020961418%);
    opacity: 1;
  }
  16% {
    -webkit-clip-path: polygon(0% 58.1104194614%, 100% 58.1104194614%, 100% 59.718344628%, 0% 59.718344628%);
            clip-path: polygon(0% 58.1104194614%, 100% 58.1104194614%, 100% 59.718344628%, 0% 59.718344628%);
    transform: translate(-4.7252969712%, -0.3638915979%);
    opacity: 1;
  }
  18% {
    -webkit-clip-path: polygon(0% 88.2992534071%, 100% 88.2992534071%, 100% 94.2101113105%, 0% 94.2101113105%);
            clip-path: polygon(0% 88.2992534071%, 100% 88.2992534071%, 100% 94.2101113105%, 0% 94.2101113105%);
    transform: translate(-3.549314084%, -0.3957432703%);
    opacity: 1;
  }
  20%, 100% {
    -webkit-clip-path: none;
            clip-path: none;
    transform: none;
    opacity: 0;
  }
}
#keyvisual.move-on .keyvisual__title .glitch::after {
  -webkit-animation: glitch-after 3s linear infinite alternate both;
          animation: glitch-after 3s linear infinite alternate both;
  content: "";
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}
@-webkit-keyframes glitch-after {
  0% {
    -webkit-clip-path: polygon(0% 38.6368469429%, 100% 38.6368469429%, 100% 46.5673658913%, 0% 46.5673658913%);
            clip-path: polygon(0% 38.6368469429%, 100% 38.6368469429%, 100% 46.5673658913%, 0% 46.5673658913%);
    transform: translate(-1.5694488424%, 0.0204644385%);
    opacity: 1;
  }
  2% {
    -webkit-clip-path: polygon(0% 27.7924991559%, 100% 27.7924991559%, 100% 31.2057711805%, 0% 31.2057711805%);
            clip-path: polygon(0% 27.7924991559%, 100% 27.7924991559%, 100% 31.2057711805%, 0% 31.2057711805%);
    transform: translate(-2.2100175094%, -0.0960580709%);
    opacity: 1;
  }
  4% {
    -webkit-clip-path: polygon(0% 49.5851474107%, 100% 49.5851474107%, 100% 55.7743726418%, 0% 55.7743726418%);
            clip-path: polygon(0% 49.5851474107%, 100% 49.5851474107%, 100% 55.7743726418%, 0% 55.7743726418%);
    transform: translate(6.195751173%, -0.0132625047%);
    opacity: 1;
  }
  6% {
    -webkit-clip-path: polygon(0% 69.2748751512%, 100% 69.2748751512%, 100% 72.8938698133%, 0% 72.8938698133%);
            clip-path: polygon(0% 69.2748751512%, 100% 69.2748751512%, 100% 72.8938698133%, 0% 72.8938698133%);
    transform: translate(3.4914707593%, 0.0177597372%);
    opacity: 1;
  }
  8% {
    -webkit-clip-path: polygon(0% 43.5606331296%, 100% 43.5606331296%, 100% 44.9147009969%, 0% 44.9147009969%);
            clip-path: polygon(0% 43.5606331296%, 100% 43.5606331296%, 100% 44.9147009969%, 0% 44.9147009969%);
    transform: translate(6.3007370613%, -0.3298397337%);
    opacity: 1;
  }
  10% {
    -webkit-clip-path: polygon(0% 49.5563678508%, 100% 49.5563678508%, 100% 51.0895466473%, 0% 51.0895466473%);
            clip-path: polygon(0% 49.5563678508%, 100% 49.5563678508%, 100% 51.0895466473%, 0% 51.0895466473%);
    transform: translate(-2.8446677801%, -0.4790871925%);
    opacity: 1;
  }
  12% {
    -webkit-clip-path: polygon(0% 13.4116506251%, 100% 13.4116506251%, 100% 15.9116406528%, 0% 15.9116406528%);
            clip-path: polygon(0% 13.4116506251%, 100% 13.4116506251%, 100% 15.9116406528%, 0% 15.9116406528%);
    transform: translate(3.0980047965%, -0.2579830108%);
    opacity: 1;
  }
  14% {
    -webkit-clip-path: polygon(0% 73.2337084296%, 100% 73.2337084296%, 100% 82.9557308155%, 0% 82.9557308155%);
            clip-path: polygon(0% 73.2337084296%, 100% 73.2337084296%, 100% 82.9557308155%, 0% 82.9557308155%);
    transform: translate(4.4600790666%, 0.1788738456%);
    opacity: 1;
  }
  16% {
    -webkit-clip-path: polygon(0% 9.0872324156%, 100% 9.0872324156%, 100% 11.3347434835%, 0% 11.3347434835%);
            clip-path: polygon(0% 9.0872324156%, 100% 9.0872324156%, 100% 11.3347434835%, 0% 11.3347434835%);
    transform: translate(-1.2107079772%, 0.3900618162%);
    opacity: 1;
  }
  18% {
    -webkit-clip-path: polygon(0% 39.0233396629%, 100% 39.0233396629%, 100% 42.6385414945%, 0% 42.6385414945%);
            clip-path: polygon(0% 39.0233396629%, 100% 39.0233396629%, 100% 42.6385414945%, 0% 42.6385414945%);
    transform: translate(-7.3197933548%, -0.0868938969%);
    opacity: 1;
  }
  20%, 100% {
    -webkit-clip-path: none;
            clip-path: none;
    transform: none;
    opacity: 0;
  }
}
@keyframes glitch-after {
  0% {
    -webkit-clip-path: polygon(0% 38.6368469429%, 100% 38.6368469429%, 100% 46.5673658913%, 0% 46.5673658913%);
            clip-path: polygon(0% 38.6368469429%, 100% 38.6368469429%, 100% 46.5673658913%, 0% 46.5673658913%);
    transform: translate(-1.5694488424%, 0.0204644385%);
    opacity: 1;
  }
  2% {
    -webkit-clip-path: polygon(0% 27.7924991559%, 100% 27.7924991559%, 100% 31.2057711805%, 0% 31.2057711805%);
            clip-path: polygon(0% 27.7924991559%, 100% 27.7924991559%, 100% 31.2057711805%, 0% 31.2057711805%);
    transform: translate(-2.2100175094%, -0.0960580709%);
    opacity: 1;
  }
  4% {
    -webkit-clip-path: polygon(0% 49.5851474107%, 100% 49.5851474107%, 100% 55.7743726418%, 0% 55.7743726418%);
            clip-path: polygon(0% 49.5851474107%, 100% 49.5851474107%, 100% 55.7743726418%, 0% 55.7743726418%);
    transform: translate(6.195751173%, -0.0132625047%);
    opacity: 1;
  }
  6% {
    -webkit-clip-path: polygon(0% 69.2748751512%, 100% 69.2748751512%, 100% 72.8938698133%, 0% 72.8938698133%);
            clip-path: polygon(0% 69.2748751512%, 100% 69.2748751512%, 100% 72.8938698133%, 0% 72.8938698133%);
    transform: translate(3.4914707593%, 0.0177597372%);
    opacity: 1;
  }
  8% {
    -webkit-clip-path: polygon(0% 43.5606331296%, 100% 43.5606331296%, 100% 44.9147009969%, 0% 44.9147009969%);
            clip-path: polygon(0% 43.5606331296%, 100% 43.5606331296%, 100% 44.9147009969%, 0% 44.9147009969%);
    transform: translate(6.3007370613%, -0.3298397337%);
    opacity: 1;
  }
  10% {
    -webkit-clip-path: polygon(0% 49.5563678508%, 100% 49.5563678508%, 100% 51.0895466473%, 0% 51.0895466473%);
            clip-path: polygon(0% 49.5563678508%, 100% 49.5563678508%, 100% 51.0895466473%, 0% 51.0895466473%);
    transform: translate(-2.8446677801%, -0.4790871925%);
    opacity: 1;
  }
  12% {
    -webkit-clip-path: polygon(0% 13.4116506251%, 100% 13.4116506251%, 100% 15.9116406528%, 0% 15.9116406528%);
            clip-path: polygon(0% 13.4116506251%, 100% 13.4116506251%, 100% 15.9116406528%, 0% 15.9116406528%);
    transform: translate(3.0980047965%, -0.2579830108%);
    opacity: 1;
  }
  14% {
    -webkit-clip-path: polygon(0% 73.2337084296%, 100% 73.2337084296%, 100% 82.9557308155%, 0% 82.9557308155%);
            clip-path: polygon(0% 73.2337084296%, 100% 73.2337084296%, 100% 82.9557308155%, 0% 82.9557308155%);
    transform: translate(4.4600790666%, 0.1788738456%);
    opacity: 1;
  }
  16% {
    -webkit-clip-path: polygon(0% 9.0872324156%, 100% 9.0872324156%, 100% 11.3347434835%, 0% 11.3347434835%);
            clip-path: polygon(0% 9.0872324156%, 100% 9.0872324156%, 100% 11.3347434835%, 0% 11.3347434835%);
    transform: translate(-1.2107079772%, 0.3900618162%);
    opacity: 1;
  }
  18% {
    -webkit-clip-path: polygon(0% 39.0233396629%, 100% 39.0233396629%, 100% 42.6385414945%, 0% 42.6385414945%);
            clip-path: polygon(0% 39.0233396629%, 100% 39.0233396629%, 100% 42.6385414945%, 0% 42.6385414945%);
    transform: translate(-7.3197933548%, -0.0868938969%);
    opacity: 1;
  }
  20%, 100% {
    -webkit-clip-path: none;
            clip-path: none;
    transform: none;
    opacity: 0;
  }
}
#keyvisual.move-on .keyvisual__title .glitch .r {
  -webkit-animation: rgb-shift-r 3s steps(1, jump-end) infinite alternate both;
          animation: rgb-shift-r 3s steps(1, jump-end) infinite alternate both;
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}
@-webkit-keyframes rgb-shift-r {
  0% {
    transform: translate(-1.7075238156%, 0.362163563%);
  }
  2% {
    transform: translate(0.6432797446%, -0.1654034703%);
  }
  4% {
    transform: translate(1.5749679065%, 0.2448151185%);
  }
  6% {
    transform: translate(0.3377059996%, -0.3528426818%);
  }
  8% {
    transform: translate(1.5203076927%, -0.2352574434%);
  }
  10% {
    transform: translate(-1.2812001472%, 0.4715586405%);
  }
  12% {
    transform: translate(-0.9354278695%, -0.2964389881%);
  }
  14% {
    transform: translate(-1.0737942243%, -0.3180281958%);
  }
  16% {
    transform: translate(1.1912712342%, -0.3326182624%);
  }
  18% {
    transform: translate(-1.9772749402%, -0.290332065%);
  }
  20%, 100% {
    transform: none;
  }
}
@keyframes rgb-shift-r {
  0% {
    transform: translate(-1.7075238156%, 0.362163563%);
  }
  2% {
    transform: translate(0.6432797446%, -0.1654034703%);
  }
  4% {
    transform: translate(1.5749679065%, 0.2448151185%);
  }
  6% {
    transform: translate(0.3377059996%, -0.3528426818%);
  }
  8% {
    transform: translate(1.5203076927%, -0.2352574434%);
  }
  10% {
    transform: translate(-1.2812001472%, 0.4715586405%);
  }
  12% {
    transform: translate(-0.9354278695%, -0.2964389881%);
  }
  14% {
    transform: translate(-1.0737942243%, -0.3180281958%);
  }
  16% {
    transform: translate(1.1912712342%, -0.3326182624%);
  }
  18% {
    transform: translate(-1.9772749402%, -0.290332065%);
  }
  20%, 100% {
    transform: none;
  }
}
#keyvisual.move-on .keyvisual__title .glitch .g {
  -webkit-animation: rgb-shift-g 3s steps(1, jump-end) infinite alternate both;
          animation: rgb-shift-g 3s steps(1, jump-end) infinite alternate both;
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}
@-webkit-keyframes rgb-shift-g {
  0% {
    transform: translate(-1.0795282303%, -0.0453126815%);
  }
  2% {
    transform: translate(1.3269203201%, -0.4208751075%);
  }
  4% {
    transform: translate(-0.173681877%, 0.1399304585%);
  }
  6% {
    transform: translate(-0.9882647545%, 0.461995254%);
  }
  8% {
    transform: translate(-0.6913247606%, 0.4099077347%);
  }
  10% {
    transform: translate(-1.9199491773%, -0.1484883185%);
  }
  12% {
    transform: translate(-0.6093854828%, -0.2172010795%);
  }
  14% {
    transform: translate(-0.3052980957%, -0.1397922672%);
  }
  16% {
    transform: translate(0.9727452062%, -0.4596903827%);
  }
  18% {
    transform: translate(1.9839000607%, 0.1505617286%);
  }
  20%, 100% {
    transform: none;
  }
}
@keyframes rgb-shift-g {
  0% {
    transform: translate(-1.0795282303%, -0.0453126815%);
  }
  2% {
    transform: translate(1.3269203201%, -0.4208751075%);
  }
  4% {
    transform: translate(-0.173681877%, 0.1399304585%);
  }
  6% {
    transform: translate(-0.9882647545%, 0.461995254%);
  }
  8% {
    transform: translate(-0.6913247606%, 0.4099077347%);
  }
  10% {
    transform: translate(-1.9199491773%, -0.1484883185%);
  }
  12% {
    transform: translate(-0.6093854828%, -0.2172010795%);
  }
  14% {
    transform: translate(-0.3052980957%, -0.1397922672%);
  }
  16% {
    transform: translate(0.9727452062%, -0.4596903827%);
  }
  18% {
    transform: translate(1.9839000607%, 0.1505617286%);
  }
  20%, 100% {
    transform: none;
  }
}
#keyvisual.move-on .keyvisual__title .glitch .b {
  -webkit-animation: rgb-shift-b 3s steps(1, jump-end) infinite alternate both;
          animation: rgb-shift-b 3s steps(1, jump-end) infinite alternate both;
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}
@-webkit-keyframes rgb-shift-b {
  0% {
    transform: translate(-1.9237750499%, -0.0052874968%);
  }
  2% {
    transform: translate(-1.7009327833%, 0.0699399693%);
  }
  4% {
    transform: translate(-1.3574315685%, 0.1820645437%);
  }
  6% {
    transform: translate(1.816314436%, 0.1597524817%);
  }
  8% {
    transform: translate(1.9693320446%, -0.4991472555%);
  }
  10% {
    transform: translate(1.7457151739%, -0.4245425477%);
  }
  12% {
    transform: translate(0.4502860908%, -0.4904274279%);
  }
  14% {
    transform: translate(-0.589977375%, 0.4499169194%);
  }
  16% {
    transform: translate(0.2721954444%, 0.2925594638%);
  }
  18% {
    transform: translate(1.408550504%, 0.294667227%);
  }
  20%, 100% {
    transform: none;
  }
}
@keyframes rgb-shift-b {
  0% {
    transform: translate(-1.9237750499%, -0.0052874968%);
  }
  2% {
    transform: translate(-1.7009327833%, 0.0699399693%);
  }
  4% {
    transform: translate(-1.3574315685%, 0.1820645437%);
  }
  6% {
    transform: translate(1.816314436%, 0.1597524817%);
  }
  8% {
    transform: translate(1.9693320446%, -0.4991472555%);
  }
  10% {
    transform: translate(1.7457151739%, -0.4245425477%);
  }
  12% {
    transform: translate(0.4502860908%, -0.4904274279%);
  }
  14% {
    transform: translate(-0.589977375%, 0.4499169194%);
  }
  16% {
    transform: translate(0.2721954444%, 0.2925594638%);
  }
  18% {
    transform: translate(1.408550504%, 0.294667227%);
  }
  20%, 100% {
    transform: none;
  }
}
#keyvisual.move-on .keyvisual__date {
  opacity: 1;
  filter: blur(0px);
}
#keyvisual.move-on .keyvisual__cover {
  transform: translateY(-100%);
}

section {
  padding: 110px 0;
}
@media only screen and (max-width: 1350px) {
  section {
    padding: 8.1481481481vw 0;
  }
}
@media only screen and (max-width: 768px) {
  section {
    padding: 10.9375vw 0;
  }
}
section .sec__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
section .sec__line::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 11px;
  height: 2px;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  section .sec__line::before {
    width: 1.71875vw;
  }
}
section .sec__line::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 11px;
  height: 2px;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  section .sec__line::after {
    width: 1.71875vw;
  }
}
section .sec__line span {
  position: absolute;
  top: -1px;
  left: calc(50% - 304px);
  width: 23px;
  height: 3px;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  section .sec__line span {
    width: 3.59375vw;
    left: calc(50% - 30.46875vw);
  }
}
section .sec__inner {
  width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 1350px) {
  section .sec__inner {
    width: 88.8888888889vw;
  }
}
section .sec__lineBlock {
  position: relative;
  padding: 82px 0 60px;
  border: 1px solid #fff;
  border-radius: 45px 0 45px 0;
  background-color: rgba(0, 0, 0, 0.6);
}
@media only screen and (max-width: 1350px) {
  section .sec__lineBlock {
    padding: 6.0740740741vw 0 4.4444444444vw;
  }
}
@media only screen and (max-width: 768px) {
  section .sec__lineBlock {
    padding: 9.375vw 0;
  }
}
section .sec__lineBlock::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 493px;
  height: 141px;
  background: url("../img/parts/line_block_left_wh.png") no-repeat top left;
  background-size: contain;
}
@media only screen and (max-width: 1350px) {
  section .sec__lineBlock::before {
    top: -0.3703703704vw;
    left: -1px;
    width: 36.5185185185vw;
    height: 10.4444444444vw;
  }
}
@media only screen and (max-width: 768px) {
  section .sec__lineBlock::before {
    top: -0.78125vw;
    left: -1px;
    width: 77.96875vw;
    height: 22.03125vw;
  }
}
section .sec__lineBlock::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 60px;
  height: 134px;
  background: url("../img/parts/line_block_right_wh.png") no-repeat bottom right;
  background-size: contain;
}
@media only screen and (max-width: 1350px) {
  section .sec__lineBlock::after {
    width: 4.4444444444vw;
    right: -1px;
    height: 9.9259259259vw;
  }
}
@media only screen and (max-width: 768px) {
  section .sec__lineBlock::after {
    width: 9.375vw;
    right: -1px;
    height: 21.40625vw;
  }
}
section .sec__ttlBox {
  position: relative;
  text-align: center;
  margin-bottom: 35px;
}
@media only screen and (max-width: 1350px) {
  section .sec__ttlBox {
    margin-bottom: 2.5925925926vw;
  }
}
@media only screen and (max-width: 768px) {
  section .sec__ttlBox {
    margin-bottom: 6.25vw;
  }
}
section .sec__ttlBox__title {
  position: relative;
  width: 1010px;
  margin: 0 auto;
  line-height: 0;
}
section .sec__ttlBox__title > img {
  display: block;
}
@media only screen and (max-width: 1350px) {
  section .sec__ttlBox__title {
    width: 74.8148148148vw;
  }
}
@media only screen and (max-width: 768px) {
  section .sec__ttlBox__title {
    width: 81.25vw;
  }
}
section .sec__ttlBox__jp {
  position: absolute;
  top: calc(100% - 36px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}
@media only screen and (max-width: 1350px) {
  section .sec__ttlBox__jp {
    top: calc(100% - 2.6666666667vw);
    font-size: 1.9259259259vw;
  }
}
@media only screen and (max-width: 768px) {
  section .sec__ttlBox__jp {
    top: calc(100% - 4.0625vw);
    font-size: 3.125vw;
  }
}
section .sec__ttlBox__title {
  opacity: 0;
  transform: scale(1.02) translateY(-100px);
  transition: all 0.6s ease;
}
section .sec__ttlBox__jp {
  opacity: 0;
  filter: blur(10px);
  transition: all 0.8s 0.5s ease;
}
section .sec__lineBlock {
  opacity: 0;
  transform: scale(0.9) translateY(100px);
  transition: all 0.5s ease-out;
}
section .btn {
  opacity: 0;
  filter: blur(10px);
  transition: all 0.8s 1.2s ease;
}
section.move-on .sec__ttlBox__title {
  opacity: 1;
  transform: scale(1) translateY(0px);
}
section.move-on .sec__ttlBox__title .glitch::before {
  -webkit-animation: glitch-before 3s linear infinite alternate both;
          animation: glitch-before 3s linear infinite alternate both;
  content: "";
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
@keyframes glitch-before {
  0% {
    -webkit-clip-path: polygon(0% 70.4813001147%, 100% 70.4813001147%, 100% 76.4016136249%, 0% 76.4016136249%);
            clip-path: polygon(0% 70.4813001147%, 100% 70.4813001147%, 100% 76.4016136249%, 0% 76.4016136249%);
    transform: translate(7.3834108537%, -0.3200773802%);
    opacity: 1;
  }
  2% {
    -webkit-clip-path: polygon(0% 1.7625531862%, 100% 1.7625531862%, 100% 4.1035064722%, 0% 4.1035064722%);
            clip-path: polygon(0% 1.7625531862%, 100% 1.7625531862%, 100% 4.1035064722%, 0% 4.1035064722%);
    transform: translate(-1.7016081223%, -0.0499619013%);
    opacity: 1;
  }
  4% {
    -webkit-clip-path: polygon(0% 4.3554472554%, 100% 4.3554472554%, 100% 13.2576294303%, 0% 13.2576294303%);
            clip-path: polygon(0% 4.3554472554%, 100% 4.3554472554%, 100% 13.2576294303%, 0% 13.2576294303%);
    transform: translate(-4.5109598975%, -0.4448147001%);
    opacity: 1;
  }
  6% {
    -webkit-clip-path: polygon(0% 28.6890622028%, 100% 28.6890622028%, 100% 38.3038998494%, 0% 38.3038998494%);
            clip-path: polygon(0% 28.6890622028%, 100% 28.6890622028%, 100% 38.3038998494%, 0% 38.3038998494%);
    transform: translate(6.2804112503%, -0.2587361128%);
    opacity: 1;
  }
  8% {
    -webkit-clip-path: polygon(0% 36.3811799367%, 100% 36.3811799367%, 100% 37.8491302918%, 0% 37.8491302918%);
            clip-path: polygon(0% 36.3811799367%, 100% 36.3811799367%, 100% 37.8491302918%, 0% 37.8491302918%);
    transform: translate(1.6486376549%, 0.308457178%);
    opacity: 1;
  }
  10% {
    -webkit-clip-path: polygon(0% 74.10188761%, 100% 74.10188761%, 100% 75.1589039879%, 0% 75.1589039879%);
            clip-path: polygon(0% 74.10188761%, 100% 74.10188761%, 100% 75.1589039879%, 0% 75.1589039879%);
    transform: translate(4.5211240877%, -0.2973933247%);
    opacity: 1;
  }
  12% {
    -webkit-clip-path: polygon(0% 8.4281329066%, 100% 8.4281329066%, 100% 16.7342867161%, 0% 16.7342867161%);
            clip-path: polygon(0% 8.4281329066%, 100% 8.4281329066%, 100% 16.7342867161%, 0% 16.7342867161%);
    transform: translate(-2.4218492403%, 0.4569412928%);
    opacity: 1;
  }
  14% {
    -webkit-clip-path: polygon(0% 34.4806638971%, 100% 34.4806638971%, 100% 36.9576091355%, 0% 36.9576091355%);
            clip-path: polygon(0% 34.4806638971%, 100% 34.4806638971%, 100% 36.9576091355%, 0% 36.9576091355%);
    transform: translate(3.5471342865%, -0.1771868764%);
    opacity: 1;
  }
  16% {
    -webkit-clip-path: polygon(0% 37.1519370484%, 100% 37.1519370484%, 100% 42.8757027383%, 0% 42.8757027383%);
            clip-path: polygon(0% 37.1519370484%, 100% 37.1519370484%, 100% 42.8757027383%, 0% 42.8757027383%);
    transform: translate(-5.217617486%, -0.4603954996%);
    opacity: 1;
  }
  18% {
    -webkit-clip-path: polygon(0% 1.534911668%, 100% 1.534911668%, 100% 9.9210660512%, 0% 9.9210660512%);
            clip-path: polygon(0% 1.534911668%, 100% 1.534911668%, 100% 9.9210660512%, 0% 9.9210660512%);
    transform: translate(3.9993561039%, -0.0101730747%);
    opacity: 1;
  }
  20%, 100% {
    -webkit-clip-path: none;
            clip-path: none;
    transform: none;
    opacity: 0;
  }
}
section.move-on .sec__ttlBox__title .glitch::after {
  -webkit-animation: glitch-after 3s linear infinite alternate both;
          animation: glitch-after 3s linear infinite alternate both;
  content: "";
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
@keyframes glitch-after {
  0% {
    -webkit-clip-path: polygon(0% 47.3412942001%, 100% 47.3412942001%, 100% 52.5290209546%, 0% 52.5290209546%);
            clip-path: polygon(0% 47.3412942001%, 100% 47.3412942001%, 100% 52.5290209546%, 0% 52.5290209546%);
    transform: translate(-5.3988001931%, 0.0628481873%);
    opacity: 1;
  }
  2% {
    -webkit-clip-path: polygon(0% 5.0204163338%, 100% 5.0204163338%, 100% 11.866525556%, 0% 11.866525556%);
            clip-path: polygon(0% 5.0204163338%, 100% 5.0204163338%, 100% 11.866525556%, 0% 11.866525556%);
    transform: translate(-6.5035658538%, -0.4842243541%);
    opacity: 1;
  }
  4% {
    -webkit-clip-path: polygon(0% 74.7667992205%, 100% 74.7667992205%, 100% 76.6124930537%, 0% 76.6124930537%);
            clip-path: polygon(0% 74.7667992205%, 100% 74.7667992205%, 100% 76.6124930537%, 0% 76.6124930537%);
    transform: translate(0.0566869699%, 0.0278269201%);
    opacity: 1;
  }
  6% {
    -webkit-clip-path: polygon(0% 38.5005077631%, 100% 38.5005077631%, 100% 48.4771951666%, 0% 48.4771951666%);
            clip-path: polygon(0% 38.5005077631%, 100% 38.5005077631%, 100% 48.4771951666%, 0% 48.4771951666%);
    transform: translate(7.6457718052%, 0.1840263205%);
    opacity: 1;
  }
  8% {
    -webkit-clip-path: polygon(0% 20.0902757784%, 100% 20.0902757784%, 100% 28.5914029463%, 0% 28.5914029463%);
            clip-path: polygon(0% 20.0902757784%, 100% 20.0902757784%, 100% 28.5914029463%, 0% 28.5914029463%);
    transform: translate(-1.4373960087%, -0.47397879%);
    opacity: 1;
  }
  10% {
    -webkit-clip-path: polygon(0% 1.1868284041%, 100% 1.1868284041%, 100% 10.6875898628%, 0% 10.6875898628%);
            clip-path: polygon(0% 1.1868284041%, 100% 1.1868284041%, 100% 10.6875898628%, 0% 10.6875898628%);
    transform: translate(-4.3115581745%, -0.4466463591%);
    opacity: 1;
  }
  12% {
    -webkit-clip-path: polygon(0% 4.1688205719%, 100% 4.1688205719%, 100% 6.0433710427%, 0% 6.0433710427%);
            clip-path: polygon(0% 4.1688205719%, 100% 4.1688205719%, 100% 6.0433710427%, 0% 6.0433710427%);
    transform: translate(-6.0796355195%, 0.2024525057%);
    opacity: 1;
  }
  14% {
    -webkit-clip-path: polygon(0% 35.7453037006%, 100% 35.7453037006%, 100% 39.224669657%, 0% 39.224669657%);
            clip-path: polygon(0% 35.7453037006%, 100% 35.7453037006%, 100% 39.224669657%, 0% 39.224669657%);
    transform: translate(-0.0837776847%, 0.028396934%);
    opacity: 1;
  }
  16% {
    -webkit-clip-path: polygon(0% 71.9153152428%, 100% 71.9153152428%, 100% 77.4159877221%, 0% 77.4159877221%);
            clip-path: polygon(0% 71.9153152428%, 100% 71.9153152428%, 100% 77.4159877221%, 0% 77.4159877221%);
    transform: translate(5.6475822243%, 0.0915399553%);
    opacity: 1;
  }
  18% {
    -webkit-clip-path: polygon(0% 79.7910799735%, 100% 79.7910799735%, 100% 86.0158277399%, 0% 86.0158277399%);
            clip-path: polygon(0% 79.7910799735%, 100% 79.7910799735%, 100% 86.0158277399%, 0% 86.0158277399%);
    transform: translate(-0.1005839701%, 0.0224077028%);
    opacity: 1;
  }
  20%, 100% {
    -webkit-clip-path: none;
            clip-path: none;
    transform: none;
    opacity: 0;
  }
}
section.move-on .sec__ttlBox__title .glitch .r {
  -webkit-animation: rgb-shift-r 3s steps(1, jump-end) infinite alternate both;
          animation: rgb-shift-r 3s steps(1, jump-end) infinite alternate both;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
@keyframes rgb-shift-r {
  0% {
    transform: translate(-1.1809673313%, -0.3078820627%);
  }
  2% {
    transform: translate(-0.8124660081%, -0.2396517696%);
  }
  4% {
    transform: translate(-1.3838433441%, -0.3675411622%);
  }
  6% {
    transform: translate(-1.1628355029%, 0.1849777378%);
  }
  8% {
    transform: translate(-1.1782523722%, -0.2823231609%);
  }
  10% {
    transform: translate(-0.4814274868%, -0.042972191%);
  }
  12% {
    transform: translate(1.5949439776%, -0.4514456249%);
  }
  14% {
    transform: translate(-1.382031534%, -0.3500949081%);
  }
  16% {
    transform: translate(-1.4595035846%, -0.4123829517%);
  }
  18% {
    transform: translate(1.4748787482%, -0.4771729941%);
  }
  20%, 100% {
    transform: none;
  }
}
section.move-on .sec__ttlBox__title .glitch .g {
  -webkit-animation: rgb-shift-g 3s steps(1, jump-end) infinite alternate both;
          animation: rgb-shift-g 3s steps(1, jump-end) infinite alternate both;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
@keyframes rgb-shift-g {
  0% {
    transform: translate(1.6225400978%, -0.3090507064%);
  }
  2% {
    transform: translate(1.5580769563%, -0.4931907864%);
  }
  4% {
    transform: translate(0.2674705742%, -0.0830253998%);
  }
  6% {
    transform: translate(-0.4554118102%, 0.0102689912%);
  }
  8% {
    transform: translate(1.9138398655%, -0.2507365611%);
  }
  10% {
    transform: translate(0.2488442853%, -0.3216337424%);
  }
  12% {
    transform: translate(-0.5344433793%, 0.1695432491%);
  }
  14% {
    transform: translate(-1.1283551428%, 0.3832617396%);
  }
  16% {
    transform: translate(0.9075739081%, 0.1400167923%);
  }
  18% {
    transform: translate(-0.7447813571%, -0.3360734161%);
  }
  20%, 100% {
    transform: none;
  }
}
section.move-on .sec__ttlBox__title .glitch .b {
  -webkit-animation: rgb-shift-b 3s steps(1, jump-end) infinite alternate both;
          animation: rgb-shift-b 3s steps(1, jump-end) infinite alternate both;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
@keyframes rgb-shift-b {
  0% {
    transform: translate(0.4074970511%, 0.0708407805%);
  }
  2% {
    transform: translate(-0.1824896403%, -0.1859907256%);
  }
  4% {
    transform: translate(-1.6735595747%, 0.338869759%);
  }
  6% {
    transform: translate(1.4108572461%, 0.0608511582%);
  }
  8% {
    transform: translate(0.1802882521%, 0.0439974737%);
  }
  10% {
    transform: translate(0.3614252059%, 0.398657677%);
  }
  12% {
    transform: translate(-1.174826015%, -0.0168127225%);
  }
  14% {
    transform: translate(-1.587288698%, 0.1165622454%);
  }
  16% {
    transform: translate(1.2544490545%, -0.3483153082%);
  }
  18% {
    transform: translate(1.6223869646%, -0.0583036318%);
  }
  20%, 100% {
    transform: none;
  }
}
section.move-on .sec__ttlBox__jp {
  opacity: 1;
  filter: blur(0px);
}
section.move-on .sec__lineBlock {
  opacity: 1;
  transform: scale(1) translateY(0px);
}
section.move-on .btn {
  opacity: 1;
  filter: blur(0px);
}
section.move-on .btn.off {
  opacity: 0.5;
}

#news .sec__ttlBox {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1350px) {
  #news .sec__ttlBox {
    margin-bottom: 3.7037037037vw;
  }
}
#news .sec__ttlBox__title .glitch {
  background-image: url("../img/news/title_top-pc.png");
}
@media only screen and (max-width: 768px) {
  #news .sec__ttlBox__title .glitch {
    background-image: url("../img/news/title_top-sp.png");
  }
}
#news .news__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#news .news__deco__item {
  position: absolute;
  z-index: 2;
}
#news .news__deco .deco1 {
  bottom: 190px;
  left: calc(50% - 927px);
  transform: rotate(82deg);
  width: 340px;
}
@media only screen and (max-width: 1350px) {
  #news .news__deco .deco1 {
    width: 25.1851851852vw;
    left: calc(50% - 68.6666666667vw);
  }
}
@media only screen and (max-width: 768px) {
  #news .news__deco .deco1 {
    bottom: 0vw;
    width: 35.625vw;
    left: calc(50% - 63.75vw);
  }
}
#news .news__deco .deco2 {
  bottom: 10px;
  left: calc(50% - 990px);
  transform: rotate(82deg);
  width: 456px;
}
@media only screen and (max-width: 1350px) {
  #news .news__deco .deco2 {
    width: 33.7777777778vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .news__deco .deco2 {
    bottom: -21.875vw;
    width: 47.65625vw;
    left: calc(50% - 70.3125vw);
  }
}
#news .news__deco .deco3 {
  bottom: 0;
  right: calc(50% - 974px);
  width: 340px;
}
@media only screen and (max-width: 1350px) {
  #news .news__deco .deco3 {
    width: 25.1851851852vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .news__deco .deco3 {
    bottom: -14.0625vw;
    width: 35.625vw;
    right: calc(50% - 55.46875vw);
  }
}
#news .news__list {
  width: 1000px;
  margin: 0 auto 50px;
}
@media only screen and (max-width: 1350px) {
  #news .news__list {
    width: 74.0740740741vw;
    margin-bottom: 3.7037037037vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .news__list {
    width: 81.25vw;
    margin-bottom: 3.125vw;
  }
}
#news .news__list__item {
  position: relative;
}
#news .news__list__item:not(:last-child) {
  margin-bottom: 54px;
}
@media only screen and (max-width: 1350px) {
  #news .news__list__item:not(:last-child) {
    margin-bottom: 4vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .news__list__item:not(:last-child) {
    margin-bottom: 6.5625vw;
  }
}
#news .news__list__item::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 5px);
  left: 0;
  display: block;
  width: 491px;
  height: 6px;
  background: url("../img/parts/frame_deco_text.png") no-repeat top left;
  background-size: contain;
}
@media only screen and (max-width: 1350px) {
  #news .news__list__item::before {
    bottom: calc(100% + basevw(5));
    width: basevw(491);
    height: basevw(6);
  }
}
@media only screen and (max-width: 768px) {
  #news .news__list__item::before {
    bottom: calc(100% + 0.9375vw);
    width: 76.71875vw;
    height: 0.9375vw;
  }
}
#news .news__list__item__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 64px;
  min-height: 88px;
  height: 100%;
  padding: 25px 196px 25px 50px;
  color: #fff;
  text-decoration: none;
}
@media only screen and (max-width: 1350px) {
  #news .news__list__item__link {
    gap: 0 4.7407407407vw;
    min-height: 6.5185185185vw;
    padding: 1.8518518519vw 14.5185185185vw 1.8518518519vw 3.7037037037vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .news__list__item__link {
    display: block;
    min-height: unset;
    padding: 3.75vw 14.84375vw 3.75vw 2.8125vw;
  }
}
#news .news__list__item__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 52px;
  transform: translateY(-50%);
  width: 53px;
  height: 53px;
  background: url("../img/news/item_deco_off.png") no-repeat top center;
  background-size: contain;
  transition: all 0.2s ease;
}
@media only screen and (max-width: 1350px) {
  #news .news__list__item__link::after {
    right: 3.8518518519vw;
    width: 3.9259259259vw;
    height: 3.9259259259vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .news__list__item__link::after {
    right: 3.125vw;
    width: 8.28125vw;
    height: 8.28125vw;
  }
}
#news .news__list__item__date {
  flex-shrink: 0;
  font-size: 20px;
  font-family: "Audiowide", sans-serif;
}
@media only screen and (max-width: 1350px) {
  #news .news__list__item__date {
    font-size: 1.4814814815vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .news__list__item__date {
    font-size: 3.75vw;
  }
}
#news .news__list__item__text {
  font-size: 24px;
  line-height: 1.4;
}
@media only screen and (max-width: 1350px) {
  #news .news__list__item__text {
    font-size: 1.7777777778vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .news__list__item__text {
    font-size: 4.375vw;
  }
}
#news .news__list__item:hover .frame__base {
  background-color: #B100FF;
}
#news .news__list__item:hover .news__list__item__link::after {
  background-image: url("../img/news/item_deco_on.png");
  transform: translateY(-50%) rotate(45deg);
}
@media only screen and (max-width: 768px) {
  #news .news__list__item:hover .news__list__item__link::after {
    background-image: url("../img/news/item_deco_off.png");
    transform: translateY(-50%);
  }
}
#news .news__list__item:hover .news__list__item__text {
  color: #FFEB55;
}
#news .news__deco .deco1 img, #news .news__deco .deco2 img {
  opacity: 0;
  transform: scale(0);
  transform-origin: top right;
  transition: all 0.3s 1s ease;
}
#news .news__deco .deco2 img {
  transition-delay: 1.2s;
}
#news .news__deco .deco3 img {
  opacity: 0;
  transform: scale(0.5);
  transform-origin: bottom left;
  transition: all 0.3s 1.1s ease;
}
#news .news__list__item {
  transform: scale(0.9);
  transition: all 0.4s 0.8s ease;
  opacity: 0;
}
#news .news__list__item:nth-child(2) {
  transition-delay: 0.9s;
}
#news .news__list__item:nth-child(3) {
  transition-delay: 1s;
}
#news.move-on .news__deco .deco1 img, #news.move-on .news__deco .deco2 img, #news.move-on .news__deco .deco3 img {
  opacity: 1;
  transform: scale(1);
}
#news.move-on .news__list__item {
  opacity: 1;
  transform: scale(1);
}

@media only screen and (max-width: 768px) {
  #merch {
    padding-bottom: 12.5vw;
  }
}
#merch .sec__ttlBox__title .glitch {
  background-image: url("../img/merch/title_top-pc.png");
  background-size: 100% auto !important;
}
#merch .sec__ttlBox__title .glitch::before, #merch .sec__ttlBox__title .glitch::after,
#merch .sec__ttlBox__title .glitch .channel {
  background-size: 100% auto !important;
}
@media only screen and (max-width: 768px) {
  #merch .sec__ttlBox__title .glitch {
    background-image: url("../img/merch/title_top-sp.png");
  }
}
@media only screen and (max-width: 768px) {
  #merch .sec__lineBlock {
    position: relative;
    z-index: 2;
  }
}
#merch .merch__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#merch .merch__deco__item {
  position: absolute;
  z-index: 2;
}
#merch .merch__deco .deco1 {
  top: 120px;
  left: calc(50% - 760px);
}
@media only screen and (max-width: 1350px) {
  #merch .merch__deco .deco1 {
    top: 8.8888888889vw;
    left: calc(50% - 56.2962962963vw);
  }
}
@media only screen and (max-width: 768px) {
  #merch .merch__deco .deco1 {
    width: 100.78125vw;
    top: 8.59375vw;
    left: 0;
  }
}
#merch .merch__deco .deco2 {
  top: 75px;
  right: calc(50% - 840px);
}
@media only screen and (max-width: 1350px) {
  #merch .merch__deco .deco2 {
    top: 5.5555555556vw;
    right: calc(50% - 62.2222222222vw);
  }
}
@media only screen and (max-width: 768px) {
  #merch .merch__deco .deco2 {
    top: 5vw;
    right: 0;
    width: 98.125vw;
  }
}
#merch .merch__deco .deco3 {
  bottom: 20px;
  left: calc(50% - 737px);
}
@media only screen and (max-width: 1350px) {
  #merch .merch__deco .deco3 {
    bottom: 1.4814814815vw;
    left: calc(50% - 54.5925925926vw);
  }
}
@media only screen and (max-width: 768px) {
  #merch .merch__deco .deco3 {
    bottom: -0.625vw;
    left: 0.625vw;
    width: 101.5625vw;
  }
}
#merch .merch__image {
  position: relative;
  width: 1000px;
  margin: 0 auto 50px;
}
@media only screen and (max-width: 1350px) {
  #merch .merch__image {
    width: 74.0740740741vw;
    margin-bottom: 3.7037037037vw;
  }
}
@media only screen and (max-width: 768px) {
  #merch .merch__image {
    width: 81.25vw;
    margin-bottom: 5.3125vw;
  }
}
#merch .merch__image a {
  display: block;
  transition: all 0.3s ease;
}
#merch .merch__image a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #B100FF;
  box-sizing: border-box;
  opacity: 0;
  transition: all 0.3s ease;
}
#merch .merch__image a:hover {
  transform: scale(0.98);
}
#merch .merch__image a:hover::after {
  opacity: 1;
}
#merch .merch__image {
  opacity: 0;
  transition: all 0.8s 0.8s ease;
}
#merch .merch__image img {
  filter: grayscale(2);
  transition: all 0.8s 1.1s ease;
}
#merch.move-on .merch__image {
  opacity: 1;
}
#merch.move-on .merch__image img {
  filter: grayscale(0);
}

#message .sec__ttlBox__title {
  line-height: 0;
}
#message .sec__ttlBox__title .glitch {
  background-image: url("../img/message/title-pc.png");
  background-size: 100% auto !important;
  background-position: center center !important;
}
#message .sec__ttlBox__title .glitch::before, #message .sec__ttlBox__title .glitch::after,
#message .sec__ttlBox__title .glitch .channel {
  background-size: 100% auto !important;
  background-position: center center !important;
}
@media only screen and (max-width: 768px) {
  #message .sec__ttlBox__title .glitch {
    background-image: url("../img/message/title-sp.png");
  }
}
#message .message__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#message .message__deco__item {
  position: absolute;
}
#message .message__deco .deco1 {
  top: 32px;
  left: calc(50% - 1029px);
  width: 517px;
  z-index: 2;
}
@media only screen and (max-width: 1350px) {
  #message .message__deco .deco1 {
    top: 2.3703703704vw;
    left: calc(50% - 76.2222222222vw);
    width: 38.2962962963vw;
  }
}
@media only screen and (max-width: 768px) {
  #message .message__deco .deco1 {
    top: 46.875vw;
    width: 36.5625vw;
    left: -19.375vw;
    z-index: 3;
  }
}
#message .message__deco .deco2 {
  bottom: 11px;
  left: calc(50% - 915px);
  width: 1951px;
  z-index: 2;
}
@media only screen and (max-width: 1350px) {
  #message .message__deco .deco2 {
    bottom: 0.8148148148vw;
    left: calc(50% - 67.7777777778vw);
    width: 144.5185185185vw;
  }
}
@media only screen and (max-width: 768px) {
  #message .message__deco .deco2 {
    bottom: -13.28125vw;
    left: -12.1875vw;
    width: 110.9375vw;
  }
}
#message .message__image {
  position: relative;
  z-index: 2;
  width: 1000px;
  margin: 0 auto 50px;
}
@media only screen and (max-width: 1350px) {
  #message .message__image {
    width: 74.0740740741vw;
    margin-bottom: 3.7037037037vw;
  }
}
@media only screen and (max-width: 768px) {
  #message .message__image {
    width: 81.25vw;
    margin-bottom: 5.3125vw;
  }
}
#message .message__image a {
  display: block;
  transition: all 0.3s ease;
}
#message .message__image a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #B100FF;
  box-sizing: border-box;
  opacity: 0;
  transition: all 0.3s ease;
}
#message .message__image a:hover {
  transform: scale(0.98);
}
#message .message__image a:hover::after {
  opacity: 1;
}
#message .message__deco .deco1 {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.5s 0.9s ease-in-out;
  transform-origin: center right;
}
#message .message__deco .deco2 {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.4s 1s ease-in-out;
  transform-origin: center left;
}
#message .message__image {
  opacity: 0;
  transition: all 0.8s 0.8s ease;
}
#message .message__image img {
  filter: grayscale(2);
  transition: all 0.8s 1.1s ease;
}
#message.move-on .message__deco .deco1, #message.move-on .message__deco .deco2 {
  opacity: 1;
  -webkit-animation: scaleFit 0.9s 0.5s ease-in-out both;
          animation: scaleFit 0.9s 0.5s ease-in-out both;
}
#message.move-on .message__deco .deco2 {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
#message.move-on .message__image {
  opacity: 1;
}
#message.move-on .message__image img {
  filter: grayscale(0);
}

#album {
  background: url("../img/album/bg_logo.png") no-repeat center center, linear-gradient(2deg, rgb(147, 186, 220), rgb(177, 0, 255));
  background-size: 1572px auto, cover;
}
@media only screen and (max-width: 1350px) {
  #album {
    background-size: 116.4444444444vw auto, cover;
  }
}
@media only screen and (max-width: 768px) {
  #album {
    position: relative;
    z-index: 2;
  }
}
#album .sec__ttlBox {
  position: relative;
  z-index: 2;
}
#album .sec__ttlBox__title {
  width: 1110px;
  margin-left: 0;
}
@media only screen and (max-width: 1350px) {
  #album .sec__ttlBox__title {
    width: 82.2222222222vw;
  }
}
@media only screen and (max-width: 768px) {
  #album .sec__ttlBox__title {
    width: 84.375vw;
    margin: 0 auto 8.59375vw;
  }
}
#album .sec__ttlBox__title .glitch {
  background-image: url("../img/album/title_top-pc.png");
  background-size: 100% auto !important;
  background-position: center center !important;
}
#album .sec__ttlBox__title .glitch::before, #album .sec__ttlBox__title .glitch::after,
#album .sec__ttlBox__title .glitch .channel {
  background-size: 100% auto !important;
  background-position: center center !important;
}
@media only screen and (max-width: 768px) {
  #album .sec__ttlBox__title .glitch {
    background-image: url("../img/album/title_top-sp.png");
  }
}
#album .sec__ttlBox__jp {
  top: calc(100% - 15px);
}
@media only screen and (max-width: 1350px) {
  #album .sec__ttlBox__jp {
    top: calc(100% - 1.1111111111vw);
  }
}
#album .album__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#album .album__deco__item {
  position: absolute;
  z-index: 2;
}
#album .album__deco .deco1 {
  top: 80px;
  left: calc(50% - 965px);
  width: 116px;
}
@media only screen and (max-width: 1350px) {
  #album .album__deco .deco1 {
    top: 5.9259259259vw;
    left: calc(50% - 71.4814814815vw);
    width: 8.5925925926vw;
  }
}
@media only screen and (max-width: 768px) {
  #album .album__deco .deco1 {
    top: 34.0625vw;
    left: 1.25vw;
    width: 13.4375vw;
  }
}
#album .album__deco .deco2 {
  top: -92px;
  right: calc(50% - 1208px);
  width: 589px;
}
@media only screen and (max-width: 1350px) {
  #album .album__deco .deco2 {
    top: -6.8148148148vw;
    right: calc(50% - 89.4814814815vw);
    width: 43.6296296296vw;
  }
}
@media only screen and (max-width: 768px) {
  #album .album__deco .deco2 {
    top: 5.625vw;
    right: -7.1875vw;
    width: 34.0625vw;
  }
}
#album .album__deco .deco3 {
  bottom: 82px;
  left: calc(50% - 814px);
  width: 248px;
}
@media only screen and (max-width: 1350px) {
  #album .album__deco .deco3 {
    bottom: 6.0740740741vw;
    left: calc(50% - 60.2962962963vw);
    width: 18.3703703704vw;
  }
}
@media only screen and (max-width: 768px) {
  #album .album__deco .deco3 {
    bottom: 0;
    left: -7.8125vw;
    width: 22.96875vw;
  }
}
#album .album__deco .deco4 {
  top: 94px;
  right: calc(50% - 959px);
  width: 305px;
}
@media only screen and (max-width: 1350px) {
  #album .album__deco .deco4 {
    top: 6.962962963vw;
    left: calc(50% - 71.037037037vw);
    width: 22.5925925926vw;
  }
}
@media only screen and (max-width: 768px) {
  #album .album__deco .deco4 {
    top: 3.75vw;
    right: 6.25vw;
    width: 18.90625vw;
  }
}
#album .album__deco .deco5 {
  bottom: 112px;
  right: calc(50% - 949px);
  width: 135px;
}
@media only screen and (max-width: 1350px) {
  #album .album__deco .deco5 {
    bottom: 8.2962962963vw;
    right: calc(50% - 70.2962962963vw);
    width: 10vw;
  }
}
@media only screen and (max-width: 768px) {
  #album .album__deco .deco5 {
    bottom: 4.6875vw;
    right: 6.25vw;
    width: 11.71875vw;
  }
}
#album .album__box {
  display: grid;
  grid-template-columns: 568px 1fr;
  gap: 0 30px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1350px) {
  #album .album__box {
    grid-template-columns: 42.0740740741vw 1fr;
    gap: 0 2.2222222222vw;
    margin-bottom: 3.7037037037vw;
  }
}
@media only screen and (max-width: 768px) {
  #album .album__box {
    position: relative;
    display: block;
    margin-bottom: 4.6875vw;
    z-index: 2;
  }
}
@media only screen and (max-width: 768px) {
  #album .album__box__cover {
    margin-bottom: 4.6875vw;
  }
}
#album .album__box__cover__read {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  margin-top: -1px;
}
@media only screen and (max-width: 768px) {
  #album .album__box__cover__read {
    font-size: 3.125vw;
    line-height: 1.4;
    margin-top: -0.46875vw;
  }
}
#album .album__box__cover__read span.line {
  padding: 0.3em 0.6em;
  background-color: #B100FF;
}
#album .album__box__cover__read span.big {
  font-size: 20px;
  color: #FFEB55;
}
@media only screen and (max-width: 768px) {
  #album .album__box__cover__read span.big {
    font-size: 4.375vw;
  }
}
#album .album__box__detail__logo {
  margin-bottom: 24px;
}
@media only screen and (max-width: 1350px) {
  #album .album__box__detail__logo {
    margin-bottom: 1.7777777778vw;
  }
}
@media only screen and (max-width: 768px) {
  #album .album__box__detail__logo {
    margin-bottom: 4.375vw;
  }
}
#album .album__box__detail__txtBox {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 30px;
  margin-bottom: 62px;
}
@media only screen and (max-width: 1350px) {
  #album .album__box__detail__txtBox {
    padding: 2.2222222222vw;
    margin-bottom: 4.5925925926vw;
  }
}
@media only screen and (max-width: 768px) {
  #album .album__box__detail__txtBox {
    padding: 3.125vw;
    margin-bottom: 4.6875vw;
  }
}
#album .album__box__detail__txtBox::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 3px);
  left: 0;
  display: block;
  width: 491px;
  height: 6px;
  background: url("../img/parts/frame_deco_text.png") no-repeat top left;
  background-size: contain;
}
@media only screen and (max-width: 1350px) {
  #album .album__box__detail__txtBox::before {
    bottom: calc(100% + basevw(3));
    width: basevw(491);
    height: basevw(6);
  }
}
@media only screen and (max-width: 768px) {
  #album .album__box__detail__txtBox::before {
    bottom: calc(100% + 0.46875vw);
    width: 76.71875vw;
    height: 0.9375vw;
  }
}
#album .album__box__detail__txtBox__text {
  position: relative;
  font-size: 14px;
  line-height: 2;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  #album .album__box__detail__txtBox__text {
    font-size: 2.8125vw;
  }
}
#album .sec__ttlBox__title {
  transform: scale(1.1);
}
#album .sec__ttlBox__jp {
  transform: translateY(-20px) translateX(-50%);
}
#album .album__deco .deco1 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.5s 1.2s ease;
}
#album .album__deco .deco2 {
  transform: rotate(-50deg) scale(0.5);
  opacity: 0;
  transition: all 0.6s 1s ease;
  transform-origin: bottom center;
}
#album .album__deco .deco3 {
  transform: rotate(100deg) scale(0.5);
  opacity: 0;
  transition: all 0.6s 1.2s ease;
  transform-origin: bottom center;
}
#album .album__deco .deco4 {
  transform: translateX(80px);
  opacity: 0;
  transition: all 1.2s 1.3s ease;
}
#album .album__box__cover__image {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(50px);
  transition: all 1s 0.8s ease;
}
#album .album__box__cover__read .line {
  display: inline-block;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.8s 0.9s ease;
}
#album .album__box__cover__read .line:nth-of-type(1) {
  transition-delay: 1s;
}
#album .album__box__detail__logo {
  opacity: 0;
  transform: translateY(-50px);
  transition: all 0.8s 1s ease;
}
#album .album__box__detail__txtBox {
  opacity: 0;
  transform: translateY(-60px);
  transition: all 0.8s 0.9s ease;
}
#album.move-on .sec__ttlBox__title {
  transform: scale(1);
}
#album.move-on .sec__ttlBox__jp {
  transform: translateY(0px) translateX(-50%);
}
#album.move-on .album__deco .deco1 {
  opacity: 1;
  transform: translateY(0px);
}
#album.move-on .album__deco .deco2, #album.move-on .album__deco .deco3 {
  transform: rotate(0deg) scale(1);
  opacity: 1;
}
#album.move-on .album__deco .deco4 {
  opacity: 1;
  transform: translateX(0px);
}
#album.move-on .album__box__cover__image {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0px);
}
#album.move-on .album__box__cover__read span {
  opacity: 1;
  transform: translateY(0px);
}
#album.move-on .album__box__detail__logo {
  opacity: 1;
  transform: translateY(0px);
}
#album.move-on .album__box__detail__txtBox {
  opacity: 1;
  transform: translateY(0px);
}

#video .sec__line {
  z-index: 2;
}
#video .sec__ttlBox {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1350px) {
  #video .sec__ttlBox {
    margin-bottom: 3.7037037037vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .sec__ttlBox {
    position: relative;
    margin-bottom: 7.8125vw;
    z-index: 3;
  }
}
#video .sec__ttlBox__title .glitch {
  background-image: url("../img/video/title_top-pc.png");
  background-size: 100% auto !important;
  background-position: center center !important;
}
#video .sec__ttlBox__title .glitch::before, #video .sec__ttlBox__title .glitch::after,
#video .sec__ttlBox__title .glitch .channel {
  background-size: 100% auto !important;
  background-position: center center !important;
}
@media only screen and (max-width: 768px) {
  #video .sec__ttlBox__title .glitch {
    background-image: url("../img/video/title_top-sp.png");
  }
}
#video .sec__ttlBox__jp {
  top: calc(100% - 32px);
}
@media only screen and (max-width: 1350px) {
  #video .sec__ttlBox__jp {
    top: calc(100% - 2.3703703704vw);
  }
}
@media only screen and (max-width: 768px) {
  #video .sec__ttlBox__jp {
    top: calc(100% - 2.8125vw);
  }
}
#video .video__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#video .video__deco__item {
  position: absolute;
  z-index: 2;
  width: 261px;
}
@media only screen and (max-width: 1350px) {
  #video .video__deco__item {
    width: 19.3333333333vw;
  }
}
#video .video__deco .deco1 {
  top: 1px;
  right: calc(50% - 1000px);
}
@media only screen and (max-width: 1350px) {
  #video .video__deco .deco1 {
    top: 0.0740740741vw;
    right: calc(50% - 74.0740740741vw);
  }
}
@media only screen and (max-width: 768px) {
  #video .video__deco .deco1 {
    top: 0.15625vw;
    right: -9.6875vw;
    width: 27.03125vw;
  }
}
#video .video__deco .deco2 {
  top: 81px;
  right: calc(50% - 1000px);
}
@media only screen and (max-width: 1350px) {
  #video .video__deco .deco2 {
    top: 6vw;
    right: calc(50% - 74.0740740741vw);
  }
}
@media only screen and (max-width: 768px) {
  #video .video__deco .deco2 {
    top: 8.4375vw;
    right: -9.6875vw;
    width: 27.03125vw;
  }
}
#video .video__deco .deco3 {
  top: 161px;
  right: calc(50% - 1000px);
}
@media only screen and (max-width: 1350px) {
  #video .video__deco .deco3 {
    top: 11.9259259259vw;
    right: calc(50% - 74.0740740741vw);
  }
}
@media only screen and (max-width: 768px) {
  #video .video__deco .deco3 {
    top: 16.875vw;
    right: -9.6875vw;
    width: 27.03125vw;
  }
}
#video .video__deco .deco4 {
  bottom: 1px;
  left: calc(50% - 1000px);
}
@media only screen and (max-width: 1350px) {
  #video .video__deco .deco4 {
    bottom: 0.0740740741vw;
    left: calc(50% - 74.0740740741vw);
  }
}
@media only screen and (max-width: 768px) {
  #video .video__deco .deco4 {
    bottom: 0.15625vw;
    left: -9.6875vw;
    width: 27.03125vw;
  }
}
#video .video__deco .deco5 {
  bottom: 81px;
  left: calc(50% - 1000px);
}
@media only screen and (max-width: 1350px) {
  #video .video__deco .deco5 {
    bottom: 6vw;
    left: calc(50% - 74.0740740741vw);
  }
}
@media only screen and (max-width: 768px) {
  #video .video__deco .deco5 {
    bottom: 8.4375vw;
    left: -9.6875vw;
    width: 27.03125vw;
  }
}
#video .video__deco .deco6 {
  bottom: 161px;
  left: calc(50% - 1000px);
}
@media only screen and (max-width: 1350px) {
  #video .video__deco .deco6 {
    bottom: 11.9259259259vw;
    left: calc(50% - 74.0740740741vw);
  }
}
@media only screen and (max-width: 768px) {
  #video .video__deco .deco6 {
    bottom: 16.875vw;
    left: -9.6875vw;
    width: 27.03125vw;
  }
}
#video .video__list {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  margin-bottom: 2.8vw;
  z-index: 2;
}
@media only screen and (max-width: 1350px) {
  #video .video__list {
    margin-bottom: 4.1481481481vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .video__list {
    padding: 0 6.875vw;
    margin-bottom: 8.125vw;
  }
}
#video .video__list__frame {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 53.3vw;
  height: 34.4vw;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 30px;
  border: 1px solid #B100FF;
}
@media only screen and (max-width: 768px) {
  #video .video__list__frame {
    width: 81.25vw;
    height: 60.15625vw;
  }
}
#video .video__list .swiper-wrapper {
  width: 100%;
  height: 34.4vw;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-wrapper {
    height: 49.6875vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-wrapper {
    height: 60.15625vw;
  }
}
#video .video__list .swiper-wrapper .swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s 0.2s ease;
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-wrapper .swiper-slide {
    align-items: flex-start;
    padding-top: 12.1875vw;
  }
}
#video .video__list .swiper-wrapper .swiper-slide a {
  position: relative;
  width: 100%;
  transition: all 0.5s ease;
}
#video .video__list .swiper-wrapper .swiper-slide a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 9.6vw;
  height: 9.6vw;
  background: url("../img/video/bg_play.png") no-repeat top center;
  background-size: contain;
  transform-origin: center;
  transition: all 0.35s ease;
  opacity: 0;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-wrapper .swiper-slide a::before {
    width: 14.84375vw;
    height: 14.84375vw;
  }
}
#video .video__list .swiper-wrapper .swiper-slide a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 9.6vw;
  height: 9.6vw;
  background: url("../img/video/play.png") no-repeat top center;
  background-size: contain;
  transform-origin: center;
  transition: all 0.35s ease;
  opacity: 0;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-wrapper .swiper-slide a::after {
    width: 14.84375vw;
    height: 14.84375vw;
  }
}
#video .video__list .swiper-wrapper .swiper-slide a .image {
  overflow: hidden;
  -webkit-mask-image: url(../img/video/top_list_mask.png);
  mask-image: url(../img/video/top_list_mask.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  filter: blur(6px);
}
#video .video__list .swiper-wrapper .swiper-slide a .image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(54, 54, 54, 0.7);
  transition: all 0.3s ease;
}
#video .video__list .swiper-wrapper .swiper-slide a .image img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.38s ease-out;
}
#video .video__list .swiper-wrapper .swiper-slide.swiper-slide-active {
  transform: scale(1.285);
}
#video .video__list .swiper-wrapper .swiper-slide.swiper-slide-active a {
  filter: blur(0);
}
#video .video__list .swiper-wrapper .swiper-slide.swiper-slide-active a::before, #video .video__list .swiper-wrapper .swiper-slide.swiper-slide-active a::after {
  transform: scale(1) translate(-50%, -50%);
  opacity: 1;
}
#video .video__list .swiper-wrapper .swiper-slide.swiper-slide-active a .image {
  filter: blur(0);
}
#video .video__list .swiper-wrapper .swiper-slide.swiper-slide-active a .image::after {
  opacity: 0;
}
#video .video__list .swiper-wrapper .swiper-slide.swiper-slide-active a:hover .image img {
  transform: scale(1.1);
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-wrapper .swiper-slide.swiper-slide-active a:hover .image img {
    transform: scale(1);
  }
}
#video .video__list .swiper-wrapper .swiper-slide.swiper-slide-active a:hover::before {
  mix-blend-mode: hard-light;
  transform: translate(-50%, -50%) rotate(45deg);
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-wrapper .swiper-slide.swiper-slide-active a:hover::before {
    transform: translate(-50%, -50%) scale(1);
  }
}
#video .video__list .swiper-wrapper .swiper-slide.swiper-slide-active a:hover::after {
  background-image: url("../img/video/play_on.png");
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-wrapper .swiper-slide.swiper-slide-active a:hover::after {
    background-image: url("../img/video/play.png");
  }
}
#video .video__list .swiper-wrapper .swiper-slide.swiper-slide-active::after {
  opacity: 0;
  visibility: hidden;
}
#video .video__list .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#video .video__list .swiper-pagination {
  bottom: 1.1vw;
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-pagination {
    bottom: 4.21875vw;
  }
}
#video .video__list .swiper-pagination .swiper-pagination-bullet {
  width: 1vw;
  height: 0.95vw;
  opacity: 1;
  background: url("../img/video/pagination_off.svg") no-repeat top center;
  background-size: contain;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-pagination .swiper-pagination-bullet {
    width: 3.125vw;
    height: 2.96875vw;
  }
}
#video .video__list .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-image: url("../img/video/pagination_on.svg");
}
#video .video__list .swiper-button-prev1,
#video .video__list .swiper-button-next1 {
  top: 50%;
  transform: translateY(-50%);
  width: 4.6vw;
  margin: 0;
  transition: all 0.35s ease;
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-prev1,
#video .video__list .swiper-button-next1 {
    width: 5vw;
  }
}
#video .video__list .swiper-button-prev1 svg,
#video .video__list .swiper-button-next1 svg {
  width: 100%;
  height: auto;
}
#video .video__list .swiper-button-prev1::after,
#video .video__list .swiper-button-next1::after {
  display: none;
}
#video .video__list .swiper-button-prev1 {
  left: calc(50% - 32.5vw);
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-prev1 {
    left: 2.34375vw;
  }
}
#video .video__list .swiper-button-prev1:hover {
  transform: translateY(-50%) translateX(-10px);
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-prev1:hover {
    transform: translateX(0);
  }
}
#video .video__list .swiper-button-next1 {
  right: calc(50% - 32.5vw);
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-next1 {
    right: 2.34375vw;
  }
}
#video .video__list .swiper-button-next1:hover {
  transform: translateY(-50%) translateX(10px);
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-next1:hover {
    transform: translateX(0);
  }
}
#video .video__list .swiper-button-prev2,
#video .video__list .swiper-button-next2 {
  display: grid;
  align-items: end;
  gap: 3px;
  top: inherit;
  bottom: 1.1vw;
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-prev2,
#video .video__list .swiper-button-next2 {
    bottom: 4.21875vw;
  }
}
#video .video__list .swiper-button-prev2 .arrow,
#video .video__list .swiper-button-next2 .arrow {
  width: 1.45vw;
  flex-shrink: 0;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-prev2 .arrow,
#video .video__list .swiper-button-next2 .arrow {
    width: 21.40625vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-prev2 .arrow,
#video .video__list .swiper-button-next2 .arrow {
    width: 4.375vw;
  }
}
#video .video__list .swiper-button-prev2 .arrow svg,
#video .video__list .swiper-button-next2 .arrow svg {
  width: 100%;
  height: auto;
}
#video .video__list .swiper-button-prev2 p,
#video .video__list .swiper-button-next2 p {
  font-size: 1.2vw;
  line-height: 1;
  color: #fff;
  font-family: "Dela Gothic One", sans-serif;
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-prev2 p,
#video .video__list .swiper-button-next2 p {
    font-size: 3.75vw;
  }
}
#video .video__list .swiper-button-prev2::after,
#video .video__list .swiper-button-next2::after {
  display: none;
}
#video .video__list .swiper-button-prev2 {
  grid-template-columns: 1.45vw 1fr;
  left: calc(50% - 11vw);
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-prev2 {
    left: 18.4375vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-prev2 {
    grid-template-columns: 4.375vw 1fr;
  }
}
#video .video__list .swiper-button-prev2:hover .arrow {
  transform: translateX(-10px);
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-prev2:hover .arrow {
    transform: translateX(0);
  }
}
#video .video__list .swiper-button-next2 {
  grid-template-columns: 1fr 1.45vw;
  right: calc(50% - 11vw);
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-next2 {
    right: 18.4375vw;
  }
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-next2 {
    grid-template-columns: 1fr 4.375vw;
  }
}
#video .video__list .swiper-button-next2:hover .arrow {
  transform: translateX(10px);
}
@media only screen and (max-width: 768px) {
  #video .video__list .swiper-button-next2:hover .arrow {
    transform: translateX(0);
  }
}
@media only screen and (max-width: 768px) {
  #video .btn {
    position: relative;
    z-index: 2;
  }
}
#video .video__deco__item {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.8s 0.8s ease;
}
#video .video__deco__item:nth-child(2) {
  transition-delay: 0.9s;
}
#video .video__deco__item:nth-child(3), #video .video__deco__item:nth-child(6) {
  transition-delay: 1s;
}
#video .video__deco__item:nth-child(5) {
  transition-delay: 1.1s;
}
#video .video__deco__item:nth-child(4) {
  transition-delay: 1.2s;
}
#video .video__list {
  opacity: 0;
  transform: translateX(-50%) scale(0.95);
  transition: all 0.8s 0.9s ease;
}
#video.move-on .video__deco__item {
  opacity: 1;
  transform: translateY(0px);
}
#video.move-on .video__list {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

#member {
  padding-top: 30px;
  padding-bottom: 0;
  background-color: #000;
}
#member .sec__ttlBox {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  #member .sec__ttlBox {
    margin-bottom: -0.46875vw;
  }
}
#member .sec__ttlBox__title .glitch {
  background-image: url("../img/member/title.png");
  background-size: 100% auto !important;
  background-position: center center !important;
}
#member .sec__ttlBox__title .glitch::before, #member .sec__ttlBox__title .glitch::after,
#member .sec__ttlBox__title .glitch .channel {
  background-size: 100% auto !important;
  background-position: center center !important;
}
#member .sec__ttlBox__jp {
  top: calc(100% - 22px);
  color: #000;
  transform: scaleY(1.2) translateX(-50%);
  line-height: 0.9;
  background-color: #fff;
}
#member .member__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background-color: #fff;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
@media only screen and (max-width: 768px) {
  #member .member__list {
    display: block;
  }
}
#member .member__list__item {
  position: relative;
  background-color: #000;
  height: 30vw;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  #member .member__list__item {
    margin-bottom: 1px;
    height: 60vw;
  }
}
#member .member__list__item a {
  display: block;
  height: 100%;
}
#member .member__list__item__bg {
  position: relative;
}
#member .member__list__item__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(1deg, rgba(0, 0, 0, 0.6), rgba(131, 55, 230, 0.6));
  opacity: 0;
  transition: all 0.3s ease;
}
#member .member__list__item__deco {
  position: absolute;
  top: 2.2vw;
  right: 2.25vw;
  width: 1.45vw;
}
@media only screen and (max-width: 768px) {
  #member .member__list__item__deco {
    top: 4.375vw;
    right: 4.375vw;
    width: 2.8125vw;
  }
}
#member .member__list__item__illust {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#member .member__list__item__illust span {
  display: block;
}
#member .member__list__item__illust img {
  transition: all 0.3s ease;
  transform-origin: top center;
}
#member .member__list__item__name {
  position: absolute;
  top: 0.85vw;
  left: 2.2vw;
}
@media only screen and (max-width: 768px) {
  #member .member__list__item__name {
    top: 1.25vw;
    left: 3.75vw;
  }
}
#member .member__list__item__name img {
  transition: all 0.3s 0.05s ease;
}
#member .member__list__item:hover .member__list__item__bg::after {
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  #member .member__list__item:hover .member__list__item__bg::after {
    opacity: 0;
  }
}
#member .member__list__item:hover .member__list__item__illust {
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  #member .member__list__item:hover .member__list__item__illust {
    z-index: 0;
  }
}
#member .member__list__item:hover .member__list__item__illust img {
  transform: scale(1.2);
}
@media only screen and (max-width: 768px) {
  #member .member__list__item:hover .member__list__item__illust img {
    transform: scale(1);
  }
}
#member .member__list__item.laplus .member__list__item__bg::after {
  background-image: linear-gradient(1deg, rgba(0, 0, 0, 0.6), rgba(131, 55, 230, 0.6));
}
#member .member__list__item.laplus .member__list__item__name {
  left: 1.85vw;
  width: 12.1vw;
}
@media only screen and (max-width: 768px) {
  #member .member__list__item.laplus .member__list__item__name {
    width: 24.21875vw;
    left: 2.8125vw;
  }
}
#member .member__list__item.takane .member__list__item__bg::after {
  background-image: linear-gradient(1deg, rgba(0, 0, 0, 0.6), rgba(131, 21, 80, 0.6));
}
#member .member__list__item.takane .member__list__item__name {
  width: 5.7vw;
}
@media only screen and (max-width: 768px) {
  #member .member__list__item.takane .member__list__item__name {
    width: 11.40625vw;
  }
}
#member .member__list__item.hakui .member__list__item__bg::after {
  background-image: linear-gradient(1deg, rgba(0, 0, 0, 0.6), rgba(251, 51, 191, 0.6));
}
#member .member__list__item.hakui .member__list__item__name {
  top: 0.5vw;
  width: 5.65vw;
}
@media only screen and (max-width: 768px) {
  #member .member__list__item.hakui .member__list__item__name {
    top: 1.25vw;
    width: 11.25vw;
  }
}
#member .member__list__item.kazama .member__list__item__bg::after {
  background-image: linear-gradient(1deg, rgba(0, 0, 0, 0.6), rgba(97, 195, 187, 0.6));
}
#member .member__list__item.kazama .member__list__item__name {
  width: 5.7vw;
}
@media only screen and (max-width: 768px) {
  #member .member__list__item.kazama .member__list__item__name {
    top: 1.875vw;
    width: 11.40625vw;
  }
}
#member .sec__ttlBox__title {
  transform: scale(0.9);
}
#member .sec__ttlBox__jp {
  transform: translateX(-50%) translateY(-20px);
}
#member .member__list__item__bg {
  overflow: hidden;
  height: 0;
  transition: all 0.4s 0.7s ease-in-out;
}
#member .member__list__item__deco {
  opacity: 0;
  transform: translateY(-50px) rotateY(540deg);
  transition: all 0.8s 1.1s ease;
}
#member .member__list__item__illust {
  opacity: 0;
  filter: brightness(0);
  transform: translateX(20px) translateY(40px);
  transition: all 0.7s 0.9s ease;
}
#member .member__list__item__illust span {
  filter: blur(5px);
  transition: all 1s 1s ease-out;
}
#member .member__list__item__name {
  opacity: 0;
  transform: translateX(50px);
  transition: all 1.2s 1.1s ease;
}
#member.move-on .sec__ttlBox__title {
  transform: scale(1);
}
#member.move-on .sec__ttlBox__jp {
  transform: translateX(-50%) translateY(0px);
}
#member.move-on .member__list__item__bg {
  height: 100%;
}
#member.move-on .member__list__item__deco {
  opacity: 1;
  transform: translateY(0px) rotateY(0deg);
}
#member.move-on .member__list__item__illust {
  opacity: 1;
  filter: brightness(1);
  transform: translate(0, 0);
}
#member.move-on .member__list__item__illust span {
  filter: blur(0px);
}
#member.move-on .member__list__item__name {
  opacity: 1;
  transform: translateX(0px);
}

#poem {
  position: relative;
  padding-top: 135px;
  padding-bottom: 0;
  margin-bottom: -380px;
  z-index: 3;
}
@media only screen and (max-width: 1350px) {
  #poem {
    padding-top: 10vw;
    margin-bottom: -28.1481481481vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem {
    padding-top: 17.1875vw;
    margin-bottom: -57.8125vw;
  }
}
#poem .poem__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#poem .poem__deco__item {
  position: absolute;
  z-index: 2;
}
#poem .poem__deco .deco1 {
  top: 140px;
  left: calc(50% - 845px);
}
@media only screen and (max-width: 1350px) {
  #poem .poem__deco .deco1 {
    top: 10.3703703704vw;
    left: calc(50% - 62.5925925926vw);
  }
}
#poem .poem__mosaic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#poem .poem__mosaic__item {
  position: absolute;
}
#poem .poem__mosaic .mosaic1 {
  top: 435px;
  left: calc(50% - 703px);
  width: 1703px;
}
@media only screen and (max-width: 1350px) {
  #poem .poem__mosaic .mosaic1 {
    top: 32.2222222222vw;
    left: calc(50% - 52.0740740741vw);
    width: 126.1481481481vw;
  }
}
#poem .poem__mosaic .mosaic1 .glitch {
  background-image: url("../img/poem/mosaic01.png");
}
#poem .poem__mosaic .mosaic2 {
  top: 215px;
  left: calc(50% - 200px);
  width: 941px;
}
@media only screen and (max-width: 1350px) {
  #poem .poem__mosaic .mosaic2 {
    top: 15.9259259259vw;
    left: calc(50% - 14.8148148148vw);
    width: 69.7037037037vw;
  }
}
#poem .poem__mosaic .mosaic2 .glitch {
  background-image: url("../img/poem/mosaic02.png");
}
#poem .poem__box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#poem .poem__box__txt {
  position: relative;
  text-align: center;
  z-index: 2;
}
#poem .poem__box__txt .txt-line {
  position: absolute;
  bottom: 0;
  height: 62px;
  background-color: #B100FF;
}
@media only screen and (max-width: 1350px) {
  #poem .poem__box__txt .txt-line {
    height: 4.5925925926vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box__txt .txt-line {
    height: 7.34375vw;
  }
}
#poem .poem__box__txt p {
  position: relative;
  font-size: 60px;
  color: #fff;
  font-feature-settings: "palt" 1;
  font-family: "Shippori Antique", sans-serif;
}
@media only screen and (max-width: 1350px) {
  #poem .poem__box__txt p {
    font-size: 4.4444444444vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box__txt p {
    font-size: 6.71875vw;
  }
}
#poem .poem__box__txt p span {
  display: inline-block;
  opacity: 0;
  transition: all 0.8s ease;
}
#poem .poem__box__txt p span.sans-serif {
  font-family: "Zen Old Mincho", serif;
  font-weight: bold;
}
#poem .poem__box__txt.txt1 .txt-line {
  left: 0;
  width: 67px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s 0.3s ease;
}
@media only screen and (max-width: 1350px) {
  #poem .poem__box__txt.txt1 .txt-line {
    width: 4.962962963vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box__txt.txt1 .txt-line {
    width: 7.65625vw;
  }
}
#poem .poem__box__txt.txt1 p span.appear:nth-child(2) {
  transition-delay: 0.1s;
}
#poem .poem__box__txt.txt1 p span.appear:nth-child(3) {
  transition-delay: 0.2s;
}
#poem .poem__box__txt.txt1 p span.appear:nth-child(4) {
  transition-delay: 0.3s;
}
#poem .poem__box__txt.txt1 p span.appear:nth-child(5) {
  transition-delay: 0.4s;
}
#poem .poem__box__txt.txt1 p span.appear:nth-child(6), #poem .poem__box__txt.txt1 p span.appear:nth-child(7) {
  transition-delay: 0.5s;
}
#poem .poem__box__txt.txt2 .txt-line {
  left: 183px;
  width: 309px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s 0.4s ease;
}
@media only screen and (max-width: 1350px) {
  #poem .poem__box__txt.txt2 .txt-line {
    left: 13.5555555556vw;
    width: 22.8888888889vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box__txt.txt2 .txt-line {
    left: 20vw;
    width: 35.625vw;
  }
}
#poem .poem__box__txt.txt2 p span.appear:nth-child(2) {
  transition-delay: 0.1s;
}
#poem .poem__box__txt.txt2 p span.appear:nth-child(3) {
  transition-delay: 0.2s;
}
#poem .poem__box__txt.txt2 p span.appear:nth-child(n+4):nth-child(-n+13) {
  transition-delay: 0.3s;
}
#poem .poem__box__txt.txt2 p span.appear:nth-child(14) {
  transition-delay: 0.4s;
}
#poem .poem__box__txt.txt2 p span.appear:nth-child(15) {
  transition-delay: 0.5s;
}
#poem .poem__box__txt.txt2 p span.appear:nth-child(16) {
  transition-delay: 0.6s;
}
#poem .poem__box__txt.txt2 p span.appear:nth-child(17) {
  transition-delay: 0.7s;
}
#poem .poem__box__txt.txt2 p span.appear:nth-child(18), #poem .poem__box__txt.txt2 p span.appear:nth-child(19) {
  transition-delay: 0.8s;
}
#poem .poem__box__txt.txt3 {
  margin-bottom: 40px;
}
@media only screen and (max-width: 1350px) {
  #poem .poem__box__txt.txt3 {
    margin-bottom: 2.962962963vw;
  }
}
#poem .poem__box__txt.txt3 .txt-line {
  left: 174px;
  width: 253px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s 0.5s ease;
}
@media only screen and (max-width: 1350px) {
  #poem .poem__box__txt.txt3 .txt-line {
    left: 12.8888888889vw;
    width: 18.7407407407vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box__txt.txt3 .txt-line {
    left: 20vw;
    width: 29.21875vw;
  }
}
#poem .poem__box__txt.txt3 p span.appear:nth-child(2) {
  transition-delay: 0.1s;
}
#poem .poem__box__txt.txt3 p span.appear:nth-child(3) {
  transition-delay: 0.2s;
}
#poem .poem__box__txt.txt3 p span.appear:nth-child(4) {
  transition-delay: 0.3s;
}
#poem .poem__box__txt.txt3 p span.appear:nth-child(5) {
  transition-delay: 0.4s;
}
#poem .poem__box__txt.txt3 p span.appear:nth-child(6) {
  transition-delay: 0.5s;
}
#poem .poem__box__txt.txt3 p span.appear:nth-child(7) {
  transition-delay: 0.6s;
}
#poem .poem__box__txt.txt3 p span.appear:nth-child(8), #poem .poem__box__txt.txt3 p span.appear:nth-child(9) {
  transition-delay: 0.7s;
}
#poem .poem__box__txt.txt4 {
  margin-bottom: 36px;
}
@media only screen and (max-width: 1350px) {
  #poem .poem__box__txt.txt4 {
    margin-bottom: 2.6666666667vw;
  }
}
#poem .poem__box__txt.txt4 .txt-line {
  left: 202px;
  width: 193px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s 2.3s ease;
}
@media only screen and (max-width: 1350px) {
  #poem .poem__box__txt.txt4 .txt-line {
    left: 14.962962963vw;
    width: 14.2962962963vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box__txt.txt4 .txt-line {
    width: 22.1875vw;
    left: 22.65625vw;
  }
}
#poem .poem__box__txt.txt4 p {
  overflow: hidden;
  font-size: 80px;
}
@media only screen and (max-width: 1350px) {
  #poem .poem__box__txt.txt4 p {
    font-size: 5.9259259259vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box__txt.txt4 p {
    font-size: 8.90625vw;
  }
}
#poem .poem__box__txt.txt4 p span {
  transform: translateY(100%);
  transition: all 0.4s 1.5s ease;
  transform-origin: bottom center;
}
#poem .poem__box__txt.txt4 p span.appear:nth-child(2) {
  transition-delay: 1.6s;
}
#poem .poem__box__txt.txt4 p span.appear:nth-child(3) {
  transition-delay: 1.7s;
}
#poem .poem__box__txt.txt4 p span.appear:nth-child(4) {
  transition-delay: 1.8s;
}
#poem .poem__box__txt.txt4 p span.appear:nth-child(5) {
  transition-delay: 1.9s;
}
#poem .poem__box__txt.txt4 p span.appear:nth-child(6) {
  color: #FFEB55;
  transition-delay: 2s;
}
#poem .poem__box__txt.txt4 p span.appear:nth-child(7) {
  color: #FFEB55;
  transition-delay: 2.1s;
}
#poem .poem__box__txt.txt4 p span.appear:nth-child(8) {
  color: #FFEB55;
  transition-delay: 2.2s;
}
#poem .poem__box__txt.txt4 p span.appear:nth-child(9) {
  color: #FFEB55;
  transition-delay: 2.3s;
}
#poem .poem__box__txt.txt5 {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1350px) {
  #poem .poem__box__txt.txt5 {
    margin-bottom: 3.7037037037vw;
  }
}
#poem .poem__box__txt.txt5 .txt-line {
  left: -30px;
  width: calc(100% + 60px);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s 2.5s ease;
}
@media only screen and (max-width: 1350px) {
  #poem .poem__box__txt.txt5 .txt-line {
    left: -2.2222222222vw;
    width: calc(100% + 4.4444444444vw);
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box__txt.txt5 .txt-line {
    left: -4.6875vw;
    width: calc(100% + 9.375vw);
  }
}
#poem .poem__box__txt.txt5 p {
  overflow: hidden;
  font-size: 80px;
}
@media only screen and (max-width: 1350px) {
  #poem .poem__box__txt.txt5 p {
    font-size: 5.9259259259vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box__txt.txt5 p {
    font-size: 8.90625vw;
  }
}
#poem .poem__box__txt.txt5 p span {
  transform: translateY(100%);
  transition: all 0.4s 1.7s ease;
  transform-origin: bottom center;
}
#poem .poem__box__txt.txt5 p span.appear:nth-child(1) {
  transition-delay: 1.8s;
}
#poem .poem__box__txt.txt5 p span.appear:nth-child(2) {
  transition-delay: 1.9s;
}
#poem .poem__box__txt.txt5 p span.appear:nth-child(3) {
  transition-delay: 2s;
}
#poem .poem__box__txt.txt5 p span.appear:nth-child(4) {
  transition-delay: 2.1s;
}
#poem .poem__box__txt.txt5 p span.appear:nth-child(5) {
  transition-delay: 2.2s;
}
#poem .poem__box__txt.txt5 p span.appear:nth-child(6) {
  transition-delay: 2.3s;
}
#poem .poem__box__txt.txt5 p span.appear:nth-child(7) {
  transition-delay: 2.4s;
}
#poem .poem__box__txt.txt5 p span.appear:nth-child(8) {
  transition-delay: 2.5s;
}
#poem .poem__box__txt.txt5 p span.appear:nth-child(9) {
  transition-delay: 2.6s;
}
#poem .poem__box__txt.txt5 p span.appear:nth-child(10) {
  transition-delay: 2.7s;
}
#poem .poem__box__txt.txt5 p span.appear:nth-child(11) {
  transition-delay: 2.8s;
}
#poem .poem__box__txt.txt5 p span.appear:nth-child(12) {
  transition-delay: 2.9s;
}
#poem .poem__box__txt.txt6 {
  margin-bottom: -20px;
}
@media only screen and (max-width: 1350px) {
  #poem .poem__box__txt.txt6 {
    margin-bottom: -1.4814814815vw;
  }
}
#poem .poem__box__txt.txt6 .txt-line {
  background-color: #fff;
}
#poem .poem__box__txt.txt6 .txt-line.txt-line1 {
  left: -20px;
  width: calc(100% + 40px);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s 4s ease;
}
@media only screen and (max-width: 1350px) {
  #poem .poem__box__txt.txt6 .txt-line.txt-line1 {
    left: -1.4814814815vw;
    width: calc(100% + 2.962962963vw);
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box__txt.txt6 .txt-line.txt-line1 {
    bottom: 9.6875vw;
    left: -3.125vw;
    width: calc(100% + 6.25vw);
  }
}
#poem .poem__box__txt.txt6 .txt-line.txt-line2 {
  display: none;
}
@media only screen and (max-width: 768px) {
  #poem .poem__box__txt.txt6 .txt-line.txt-line2 {
    display: block;
    left: 7.8125vw;
    width: 47.65625vw;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s 4.1s ease;
  }
}
#poem .poem__box__txt.txt6 p {
  overflow: hidden;
  font-size: 80px;
  color: #B100FF;
}
@media only screen and (max-width: 1350px) {
  #poem .poem__box__txt.txt6 p {
    font-size: 5.9259259259vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box__txt.txt6 p {
    font-size: 8.90625vw;
    line-height: 1.2;
  }
}
#poem .poem__box__txt.txt6 p span {
  transform: translateY(100%);
  transition: all 0.4s 3.2s ease;
  transform-origin: bottom center;
}
#poem .poem__box__txt.txt6 p span.appear:nth-of-type(2) {
  transition-delay: 3.3s;
}
#poem .poem__box__txt.txt6 p span.appear:nth-of-type(3) {
  transition-delay: 3.4s;
}
#poem .poem__box__txt.txt6 p span.appear:nth-of-type(4) {
  transition-delay: 3.5s;
}
#poem .poem__box__txt.txt6 p span.appear:nth-of-type(5) {
  transition-delay: 3.6s;
}
#poem .poem__box__txt.txt6 p span.appear:nth-of-type(6) {
  transition-delay: 3.7s;
}
#poem .poem__box__txt.txt6 p span.appear:nth-of-type(7) {
  transition-delay: 3.8s;
}
#poem .poem__box__txt.txt6 p span.appear:nth-of-type(8) {
  transition-delay: 3.9s;
}
#poem .poem__box__txt.txt6 p span.appear:nth-of-type(9) {
  transition-delay: 4s;
}
#poem .poem__box__txt.txt6 p span.appear:nth-of-type(10) {
  transition-delay: 4.1s;
}
#poem .poem__box__txt.txt6 p span.appear:nth-of-type(11) {
  transition-delay: 4.2s;
}
#poem .poem__box__txt.txt6 p span.appear:nth-of-type(12) {
  transition-delay: 4.3s;
}
#poem .poem__box__txt.txt6 p span.appear:nth-of-type(13) {
  transition-delay: 4.4s;
}
#poem .poem__box__txt.txt6 p span.appear:nth-of-type(14) {
  transition-delay: 4.5s;
}
#poem .poem__box__txt.txt6 p span.appear:nth-of-type(15) {
  transition-delay: 4.6s;
}
#poem .poem__box__txt.txt6 p span.appear:nth-of-type(16) {
  transition-delay: 4.7s;
}
#poem .poem__box__txt.txt6 p span.appear:nth-of-type(17) {
  transition-delay: 4.8s;
}
#poem .poem__box__txt.txt6 p span.appear:nth-of-type(18) {
  transition-delay: 4.9s;
}
#poem .poem__box__txt.txt6 p span.appear:nth-of-type(19) {
  transition-delay: 5s;
}
#poem .poem__box__txt.txt7 {
  margin-bottom: 115px;
}
@media only screen and (max-width: 1350px) {
  #poem .poem__box__txt.txt7 {
    margin-bottom: 8.5185185185vw;
  }
}
#poem .poem__box__txt.txt7 .txt-line {
  left: -20px;
  width: calc(100% + 40px);
  background-color: #fff;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s 4.2s ease;
}
@media only screen and (max-width: 1350px) {
  #poem .poem__box__txt.txt7 .txt-line {
    left: -1.4814814815vw;
    width: calc(100% + 2.962962963vw);
  }
}
#poem .poem__box__txt.txt7 p {
  overflow: hidden;
  font-size: 80px;
  color: #B100FF;
}
@media only screen and (max-width: 1350px) {
  #poem .poem__box__txt.txt7 p {
    font-size: 5.9259259259vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box__txt.txt7 p {
    font-size: 8.90625vw;
  }
}
#poem .poem__box__txt.txt7 p span {
  transform: translateY(100%);
  transition: all 0.4s 3.5s ease;
  transform-origin: bottom center;
}
#poem .poem__box__txt.txt7 p span.appear:nth-child(2) {
  transition-delay: 3.6s;
}
#poem .poem__box__txt.txt7 p span.appear:nth-child(3) {
  transition-delay: 3.7s;
}
#poem .poem__box__txt.txt7 p span.appear:nth-child(4) {
  transition-delay: 3.8s;
}
#poem .poem__box__txt.txt7 p span.appear:nth-child(5) {
  transition-delay: 3.9s;
}
#poem .poem__box__txt.txt7 p span.appear:nth-child(6) {
  transition-delay: 4s;
}
#poem .poem__box__txt.txt7 p span.appear:nth-child(7) {
  transition-delay: 4.1s;
}
#poem .poem__box__txt.txt7 p span.appear:nth-child(8) {
  transition-delay: 4.2s;
}
#poem .poem__box__txt.txt7 p span.appear:nth-child(9) {
  transition-delay: 4.3s;
}
#poem .poem__box__txt.txt7 p span.appear:nth-child(10) {
  transition-delay: 4.4s;
}
#poem .poem__box__txt.txt7 p span.appear:nth-child(11) {
  transition-delay: 4.5s;
}
#poem .poem__box__txt.txt7 p span.appear:nth-child(12) {
  transition-delay: 4.6s;
}
#poem .poem__box__txt.txt7 p span.appear:nth-child(13) {
  transition-delay: 4.7s;
}
#poem .poem__box__txt.txt7 p span.appear:nth-child(14) {
  transition-delay: 4.8s;
}
#poem .poem__box__txt.txt7 p span.appear:nth-child(15) {
  transition-delay: 4.9s;
}
#poem .poem__box__txt.txt7 p span.appear:nth-child(16) {
  transition-delay: 5s;
}
#poem .poem__box__txt.txt7 p span.appear:nth-child(17) {
  transition-delay: 5.1s;
}
#poem .poem__box__txt.txt8 {
  margin-bottom: 250px;
}
@media only screen and (max-width: 1350px) {
  #poem .poem__box__txt.txt8 {
    margin-bottom: 18.5185185185vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box__txt.txt8 {
    margin-bottom: 32.5vw;
  }
}
#poem .poem__box__txt.txt8 .txt-line {
  left: 470px;
  width: 140px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s 6s ease;
}
@media only screen and (max-width: 1350px) {
  #poem .poem__box__txt.txt8 .txt-line {
    left: 34.8148148148vw;
    width: 10.3703703704vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box__txt.txt8 .txt-line {
    width: 16.09375vw;
    left: 1.5625vw;
  }
}
#poem .poem__box__txt.txt8 span {
  opacity: 0;
  transform: translateY(10px) skewY(50deg) scale(0.7);
  transition: all 0.3s 5.3s ease;
}
#poem .poem__box__txt.txt8 span.appear:nth-of-type(2) {
  transition-delay: 5.4s;
}
#poem .poem__box__txt.txt8 span.appear:nth-of-type(3) {
  transition-delay: 5.5s;
}
#poem .poem__box__txt.txt8 span.appear:nth-of-type(4) {
  transition-delay: 5.6s;
}
#poem .poem__box__txt.txt8 span.appear:nth-of-type(5) {
  transition-delay: 5.7s;
}
#poem .poem__box__txt.txt8 span.appear:nth-of-type(6) {
  transition-delay: 5.8s;
}
#poem .poem__box__txt.txt8 span.appear:nth-of-type(7) {
  transition-delay: 5.9s;
}
#poem .poem__box__txt.txt8 span.appear:nth-of-type(8) {
  transition-delay: 6s;
}
#poem .poem__box__txt.txt8 span.appear:nth-of-type(9) {
  color: #FFEB55;
  transition-delay: 6.1s;
}
#poem .poem__box__txt.txt8 span.appear:nth-of-type(10) {
  color: #FFEB55;
  transition-delay: 6.2s;
}
#poem .poem__box__txt.txt8 span.appear:nth-of-type(11) {
  transition-delay: 6.3s;
}
#poem .poem__box__txt.txt8 span.appear:nth-of-type(12) {
  transition-delay: 6.4s;
}
#poem .poem__box__txt.txt8 span.appear:nth-of-type(13) {
  transition-delay: 6.5s;
}
#poem .poem__box__txt.txt8 span.appear:nth-of-type(14) {
  transition-delay: 6.6s;
}
#poem .poem__box__txt.txt8 span.appear:nth-of-type(15) {
  transition-delay: 6.7s;
}
#poem .poem__box__txt.txt8 span.appear:nth-of-type(16) {
  transition-delay: 6.7s;
}
@media only screen and (max-width: 768px) {
  #poem .poem__box__txt.txt9 {
    margin: 0 -4.6875vw;
  }
}
#poem .poem__box__txt.txt9 p {
  font-size: 110px;
}
@media only screen and (max-width: 1350px) {
  #poem .poem__box__txt.txt9 p {
    font-size: 8.1481481481vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box__txt.txt9 p {
    font-size: 14.6875vw;
    line-height: 1.3;
  }
}
#poem .poem__box__txt.txt9 p span {
  transition: all 0.1s 8s linear;
}
#poem .poem__box__txt.txt9 p span.appear {
  opacity: 0;
}
#poem .poem__box__txt.txt9 p span.appear:nth-of-type(2) {
  transition-delay: 8.1s;
}
#poem .poem__box__txt.txt9 p span.appear:nth-of-type(3) {
  transition-delay: 8.2s;
}
#poem .poem__box__txt.txt9 p span.appear:nth-of-type(4) {
  transition-delay: 8.3s;
}
#poem .poem__box__txt.txt9 p span.appear:nth-of-type(5) {
  transition-delay: 8.4s;
}
#poem .poem__box__txt.txt9 p span.appear:nth-of-type(6) {
  transition-delay: 8.5s;
}
#poem .poem__box__txt.txt9 p span.bk {
  color: #000;
}
@media only screen and (max-width: 768px) {
  #poem .poem__box__txt.txt9 p span.bk:nth-of-type(2) {
    margin-left: 6.25vw;
  }
}
#poem .poem__box__txt.txt9 p span.dot {
  font-size: 120px;
  font-family: "DotGothic16", sans-serif;
}
@media only screen and (max-width: 1350px) {
  #poem .poem__box__txt.txt9 p span.dot {
    font-size: 8.8888888889vw;
  }
}
@media only screen and (max-width: 768px) {
  #poem .poem__box__txt.txt9 p span.dot {
    font-size: 16.25vw;
  }
}
#poem.move-on .poem__mosaic .mosaic1 .glitch::before {
  -webkit-animation: glitch-before 3s linear infinite alternate both;
          animation: glitch-before 3s linear infinite alternate both;
  content: "";
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
@keyframes glitch-before {
  0% {
    -webkit-clip-path: polygon(0% 64.753836631%, 100% 64.753836631%, 100% 66.1737824897%, 0% 66.1737824897%);
            clip-path: polygon(0% 64.753836631%, 100% 64.753836631%, 100% 66.1737824897%, 0% 66.1737824897%);
    transform: translate(-7.3552480223%, 0.4631081778%);
    opacity: 1;
  }
  2% {
    -webkit-clip-path: polygon(0% 8.7965608608%, 100% 8.7965608608%, 100% 16.9816088759%, 0% 16.9816088759%);
            clip-path: polygon(0% 8.7965608608%, 100% 8.7965608608%, 100% 16.9816088759%, 0% 16.9816088759%);
    transform: translate(0.2979818703%, 0.0557465287%);
    opacity: 1;
  }
  4% {
    -webkit-clip-path: polygon(0% 62.6804858407%, 100% 62.6804858407%, 100% 65.5212194037%, 0% 65.5212194037%);
            clip-path: polygon(0% 62.6804858407%, 100% 62.6804858407%, 100% 65.5212194037%, 0% 65.5212194037%);
    transform: translate(5.7607981729%, -0.3811652706%);
    opacity: 1;
  }
  6% {
    -webkit-clip-path: polygon(0% 48.3202989628%, 100% 48.3202989628%, 100% 56.246586958%, 0% 56.246586958%);
            clip-path: polygon(0% 48.3202989628%, 100% 48.3202989628%, 100% 56.246586958%, 0% 56.246586958%);
    transform: translate(-2.9808252138%, 0.2663115642%);
    opacity: 1;
  }
  8% {
    -webkit-clip-path: polygon(0% 11.9370822715%, 100% 11.9370822715%, 100% 16.480789468%, 0% 16.480789468%);
            clip-path: polygon(0% 11.9370822715%, 100% 11.9370822715%, 100% 16.480789468%, 0% 16.480789468%);
    transform: translate(0.6306663691%, 0.1170572579%);
    opacity: 1;
  }
  10% {
    -webkit-clip-path: polygon(0% 81.00597321%, 100% 81.00597321%, 100% 86.7060112778%, 0% 86.7060112778%);
            clip-path: polygon(0% 81.00597321%, 100% 81.00597321%, 100% 86.7060112778%, 0% 86.7060112778%);
    transform: translate(5.1278509037%, -0.2788872201%);
    opacity: 1;
  }
  12% {
    -webkit-clip-path: polygon(0% 89.3165740073%, 100% 89.3165740073%, 100% 94.0357804794%, 0% 94.0357804794%);
            clip-path: polygon(0% 89.3165740073%, 100% 89.3165740073%, 100% 94.0357804794%, 0% 94.0357804794%);
    transform: translate(5.6884218214%, -0.1651671047%);
    opacity: 1;
  }
  14% {
    -webkit-clip-path: polygon(0% 54.4489189562%, 100% 54.4489189562%, 100% 62.49058454%, 0% 62.49058454%);
            clip-path: polygon(0% 54.4489189562%, 100% 54.4489189562%, 100% 62.49058454%, 0% 62.49058454%);
    transform: translate(-0.9626824692%, -0.2128406831%);
    opacity: 1;
  }
  16% {
    -webkit-clip-path: polygon(0% 65.8550281291%, 100% 65.8550281291%, 100% 70.7716933905%, 0% 70.7716933905%);
            clip-path: polygon(0% 65.8550281291%, 100% 65.8550281291%, 100% 70.7716933905%, 0% 70.7716933905%);
    transform: translate(-5.0244808522%, 0.4287819477%);
    opacity: 1;
  }
  18% {
    -webkit-clip-path: polygon(0% 23.3590096312%, 100% 23.3590096312%, 100% 33.2046070128%, 0% 33.2046070128%);
            clip-path: polygon(0% 23.3590096312%, 100% 23.3590096312%, 100% 33.2046070128%, 0% 33.2046070128%);
    transform: translate(-0.4000267949%, -0.1298234627%);
    opacity: 1;
  }
  20%, 100% {
    -webkit-clip-path: none;
            clip-path: none;
    transform: none;
    opacity: 0;
  }
}
#poem.move-on .poem__mosaic .mosaic1 .glitch::after {
  -webkit-animation: glitch-after 3s linear infinite alternate both;
          animation: glitch-after 3s linear infinite alternate both;
  content: "";
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
@keyframes glitch-after {
  0% {
    -webkit-clip-path: polygon(0% 65.7494935201%, 100% 65.7494935201%, 100% 68.0764125884%, 0% 68.0764125884%);
            clip-path: polygon(0% 65.7494935201%, 100% 65.7494935201%, 100% 68.0764125884%, 0% 68.0764125884%);
    transform: translate(1.8891849555%, -0.3061308217%);
    opacity: 1;
  }
  2% {
    -webkit-clip-path: polygon(0% 81.6168660188%, 100% 81.6168660188%, 100% 84.231539704%, 0% 84.231539704%);
            clip-path: polygon(0% 81.6168660188%, 100% 81.6168660188%, 100% 84.231539704%, 0% 84.231539704%);
    transform: translate(-3.3842763002%, -0.3260062594%);
    opacity: 1;
  }
  4% {
    -webkit-clip-path: polygon(0% 35.2288842784%, 100% 35.2288842784%, 100% 40.321724132%, 0% 40.321724132%);
            clip-path: polygon(0% 35.2288842784%, 100% 35.2288842784%, 100% 40.321724132%, 0% 40.321724132%);
    transform: translate(2.1767705869%, 0.0016346382%);
    opacity: 1;
  }
  6% {
    -webkit-clip-path: polygon(0% 34.3746034768%, 100% 34.3746034768%, 100% 39.792231346%, 0% 39.792231346%);
            clip-path: polygon(0% 34.3746034768%, 100% 34.3746034768%, 100% 39.792231346%, 0% 39.792231346%);
    transform: translate(-7.0060270761%, -0.2977001362%);
    opacity: 1;
  }
  8% {
    -webkit-clip-path: polygon(0% 76.1983919571%, 100% 76.1983919571%, 100% 79.0629948593%, 0% 79.0629948593%);
            clip-path: polygon(0% 76.1983919571%, 100% 76.1983919571%, 100% 79.0629948593%, 0% 79.0629948593%);
    transform: translate(-6.7525177132%, -0.4819741089%);
    opacity: 1;
  }
  10% {
    -webkit-clip-path: polygon(0% 13.5609933818%, 100% 13.5609933818%, 100% 15.231622016%, 0% 15.231622016%);
            clip-path: polygon(0% 13.5609933818%, 100% 13.5609933818%, 100% 15.231622016%, 0% 15.231622016%);
    transform: translate(1.7446645381%, 0.0906193404%);
    opacity: 1;
  }
  12% {
    -webkit-clip-path: polygon(0% 80.7453801719%, 100% 80.7453801719%, 100% 84.5635151021%, 0% 84.5635151021%);
            clip-path: polygon(0% 80.7453801719%, 100% 80.7453801719%, 100% 84.5635151021%, 0% 84.5635151021%);
    transform: translate(2.5744135135%, 0.3376720172%);
    opacity: 1;
  }
  14% {
    -webkit-clip-path: polygon(0% 83.3170571255%, 100% 83.3170571255%, 100% 89.440127487%, 0% 89.440127487%);
            clip-path: polygon(0% 83.3170571255%, 100% 83.3170571255%, 100% 89.440127487%, 0% 89.440127487%);
    transform: translate(5.4076360148%, -0.0024606919%);
    opacity: 1;
  }
  16% {
    -webkit-clip-path: polygon(0% 10.9357278643%, 100% 10.9357278643%, 100% 13.6743307237%, 0% 13.6743307237%);
            clip-path: polygon(0% 10.9357278643%, 100% 10.9357278643%, 100% 13.6743307237%, 0% 13.6743307237%);
    transform: translate(2.6337957702%, 0.2751771645%);
    opacity: 1;
  }
  18% {
    -webkit-clip-path: polygon(0% 16.3399664478%, 100% 16.3399664478%, 100% 21.5179056942%, 0% 21.5179056942%);
            clip-path: polygon(0% 16.3399664478%, 100% 16.3399664478%, 100% 21.5179056942%, 0% 21.5179056942%);
    transform: translate(4.1194850897%, -0.4784417512%);
    opacity: 1;
  }
  20%, 100% {
    -webkit-clip-path: none;
            clip-path: none;
    transform: none;
    opacity: 0;
  }
}
#poem.move-on .poem__mosaic .mosaic1 .glitch .r {
  -webkit-animation: rgb-shift-r 3s steps(1, jump-end) infinite alternate both;
          animation: rgb-shift-r 3s steps(1, jump-end) infinite alternate both;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
@keyframes rgb-shift-r {
  0% {
    transform: translate(0.5427341164%, 0.1623678018%);
  }
  2% {
    transform: translate(1.2800478241%, -0.0052978961%);
  }
  4% {
    transform: translate(-1.0339438569%, 0.3098862824%);
  }
  6% {
    transform: translate(1.7726807668%, 0.4229241397%);
  }
  8% {
    transform: translate(0.4246499652%, -0.4663200975%);
  }
  10% {
    transform: translate(0.2923421879%, 0.3085596956%);
  }
  12% {
    transform: translate(-0.3459648088%, 0.2533330209%);
  }
  14% {
    transform: translate(-0.4441576999%, 0.1315741552%);
  }
  16% {
    transform: translate(-0.1645480557%, 0.3184801365%);
  }
  18% {
    transform: translate(-1.7782251038%, -0.3388868614%);
  }
  20%, 100% {
    transform: none;
  }
}
#poem.move-on .poem__mosaic .mosaic1 .glitch .g {
  -webkit-animation: rgb-shift-g 3s steps(1, jump-end) infinite alternate both;
          animation: rgb-shift-g 3s steps(1, jump-end) infinite alternate both;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
@keyframes rgb-shift-g {
  0% {
    transform: translate(-0.9683460735%, 0.0376771146%);
  }
  2% {
    transform: translate(1.9857121496%, 0.2532375708%);
  }
  4% {
    transform: translate(1.1264819947%, 0.3242572377%);
  }
  6% {
    transform: translate(0.6970256409%, 0.1109630931%);
  }
  8% {
    transform: translate(1.7853096774%, -0.1933967917%);
  }
  10% {
    transform: translate(0.248558141%, -0.3529676328%);
  }
  12% {
    transform: translate(-0.8139443963%, -0.4459474815%);
  }
  14% {
    transform: translate(-1.0673220203%, 0.391542175%);
  }
  16% {
    transform: translate(-1.8290501433%, 0.1373020773%);
  }
  18% {
    transform: translate(1.3066327465%, -0.4444388754%);
  }
  20%, 100% {
    transform: none;
  }
}
#poem.move-on .poem__mosaic .mosaic1 .glitch .b {
  -webkit-animation: rgb-shift-b 3s steps(1, jump-end) infinite alternate both;
          animation: rgb-shift-b 3s steps(1, jump-end) infinite alternate both;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
@keyframes rgb-shift-b {
  0% {
    transform: translate(-0.7249397543%, -0.1792254324%);
  }
  2% {
    transform: translate(1.1810149105%, 0.497833896%);
  }
  4% {
    transform: translate(1.8966053976%, -0.3188142588%);
  }
  6% {
    transform: translate(0.4313889976%, 0.2464819005%);
  }
  8% {
    transform: translate(-0.1642039679%, 0.4090613289%);
  }
  10% {
    transform: translate(-0.1160126229%, -0.3436787463%);
  }
  12% {
    transform: translate(-0.0020398213%, 0.3226773167%);
  }
  14% {
    transform: translate(-1.7496601394%, 0.0604162579%);
  }
  16% {
    transform: translate(-0.5592161356%, -0.4098377506%);
  }
  18% {
    transform: translate(-0.0164865445%, -0.096532338%);
  }
  20%, 100% {
    transform: none;
  }
}
#poem.move-on .poem__mosaic .mosaic2 .glitch::before {
  -webkit-animation: glitch-before 3s linear infinite alternate both;
          animation: glitch-before 3s linear infinite alternate both;
  content: "";
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
@keyframes glitch-before {
  0% {
    -webkit-clip-path: polygon(0% 34.9068547769%, 100% 34.9068547769%, 100% 39.7089101211%, 0% 39.7089101211%);
            clip-path: polygon(0% 34.9068547769%, 100% 34.9068547769%, 100% 39.7089101211%, 0% 39.7089101211%);
    transform: translate(5.3062989379%, -0.0248046213%);
    opacity: 1;
  }
  2% {
    -webkit-clip-path: polygon(0% 44.7488574793%, 100% 44.7488574793%, 100% 48.1463352671%, 0% 48.1463352671%);
            clip-path: polygon(0% 44.7488574793%, 100% 44.7488574793%, 100% 48.1463352671%, 0% 48.1463352671%);
    transform: translate(7.8263106812%, -0.2427636418%);
    opacity: 1;
  }
  4% {
    -webkit-clip-path: polygon(0% 25.7692153898%, 100% 25.7692153898%, 100% 31.9188674472%, 0% 31.9188674472%);
            clip-path: polygon(0% 25.7692153898%, 100% 25.7692153898%, 100% 31.9188674472%, 0% 31.9188674472%);
    transform: translate(7.8207972504%, 0.067031502%);
    opacity: 1;
  }
  6% {
    -webkit-clip-path: polygon(0% 13.2766051224%, 100% 13.2766051224%, 100% 22.711744087%, 0% 22.711744087%);
            clip-path: polygon(0% 13.2766051224%, 100% 13.2766051224%, 100% 22.711744087%, 0% 22.711744087%);
    transform: translate(3.676987685%, -0.2156549872%);
    opacity: 1;
  }
  8% {
    -webkit-clip-path: polygon(0% 60.4083289584%, 100% 60.4083289584%, 100% 68.8731518401%, 0% 68.8731518401%);
            clip-path: polygon(0% 60.4083289584%, 100% 60.4083289584%, 100% 68.8731518401%, 0% 68.8731518401%);
    transform: translate(7.0651637207%, -0.2559546106%);
    opacity: 1;
  }
  10% {
    -webkit-clip-path: polygon(0% 89.7102161654%, 100% 89.7102161654%, 100% 95.2688677658%, 0% 95.2688677658%);
            clip-path: polygon(0% 89.7102161654%, 100% 89.7102161654%, 100% 95.2688677658%, 0% 95.2688677658%);
    transform: translate(5.0226892148%, -0.4147342126%);
    opacity: 1;
  }
  12% {
    -webkit-clip-path: polygon(0% 57.3017521344%, 100% 57.3017521344%, 100% 62.9362962522%, 0% 62.9362962522%);
            clip-path: polygon(0% 57.3017521344%, 100% 57.3017521344%, 100% 62.9362962522%, 0% 62.9362962522%);
    transform: translate(1.0857328209%, 0.1295318248%);
    opacity: 1;
  }
  14% {
    -webkit-clip-path: polygon(0% 40.3701988968%, 100% 40.3701988968%, 100% 49.3015952348%, 0% 49.3015952348%);
            clip-path: polygon(0% 40.3701988968%, 100% 40.3701988968%, 100% 49.3015952348%, 0% 49.3015952348%);
    transform: translate(-5.4031472596%, -0.3668058021%);
    opacity: 1;
  }
  16% {
    -webkit-clip-path: polygon(0% 53.4530093548%, 100% 53.4530093548%, 100% 55.6981783263%, 0% 55.6981783263%);
            clip-path: polygon(0% 53.4530093548%, 100% 53.4530093548%, 100% 55.6981783263%, 0% 55.6981783263%);
    transform: translate(-5.4585102514%, -0.4296028494%);
    opacity: 1;
  }
  18% {
    -webkit-clip-path: polygon(0% 60.760054934%, 100% 60.760054934%, 100% 67.5297076514%, 0% 67.5297076514%);
            clip-path: polygon(0% 60.760054934%, 100% 60.760054934%, 100% 67.5297076514%, 0% 67.5297076514%);
    transform: translate(7.5874251253%, -0.2358554458%);
    opacity: 1;
  }
  20%, 100% {
    -webkit-clip-path: none;
            clip-path: none;
    transform: none;
    opacity: 0;
  }
}
#poem.move-on .poem__mosaic .mosaic2 .glitch::after {
  -webkit-animation: glitch-after 3s linear infinite alternate both;
          animation: glitch-after 3s linear infinite alternate both;
  content: "";
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
@keyframes glitch-after {
  0% {
    -webkit-clip-path: polygon(0% 75.4965842795%, 100% 75.4965842795%, 100% 83.1259213321%, 0% 83.1259213321%);
            clip-path: polygon(0% 75.4965842795%, 100% 75.4965842795%, 100% 83.1259213321%, 0% 83.1259213321%);
    transform: translate(-5.2770323623%, -0.0722296264%);
    opacity: 1;
  }
  2% {
    -webkit-clip-path: polygon(0% 29.9887605678%, 100% 29.9887605678%, 100% 31.1800216412%, 0% 31.1800216412%);
            clip-path: polygon(0% 29.9887605678%, 100% 29.9887605678%, 100% 31.1800216412%, 0% 31.1800216412%);
    transform: translate(-0.8616483059%, -0.2383941162%);
    opacity: 1;
  }
  4% {
    -webkit-clip-path: polygon(0% 30.0535769168%, 100% 30.0535769168%, 100% 35.3056790437%, 0% 35.3056790437%);
            clip-path: polygon(0% 30.0535769168%, 100% 30.0535769168%, 100% 35.3056790437%, 0% 35.3056790437%);
    transform: translate(0.2832692342%, -0.0758241932%);
    opacity: 1;
  }
  6% {
    -webkit-clip-path: polygon(0% 16.709183475%, 100% 16.709183475%, 100% 25.3791667889%, 0% 25.3791667889%);
            clip-path: polygon(0% 16.709183475%, 100% 16.709183475%, 100% 25.3791667889%, 0% 25.3791667889%);
    transform: translate(-3.4958806206%, 0.0148589695%);
    opacity: 1;
  }
  8% {
    -webkit-clip-path: polygon(0% 65.003812374%, 100% 65.003812374%, 100% 70.9440151415%, 0% 70.9440151415%);
            clip-path: polygon(0% 65.003812374%, 100% 65.003812374%, 100% 70.9440151415%, 0% 70.9440151415%);
    transform: translate(6.8399369201%, 0.4937022475%);
    opacity: 1;
  }
  10% {
    -webkit-clip-path: polygon(0% 20.0180358207%, 100% 20.0180358207%, 100% 21.5921699978%, 0% 21.5921699978%);
            clip-path: polygon(0% 20.0180358207%, 100% 20.0180358207%, 100% 21.5921699978%, 0% 21.5921699978%);
    transform: translate(-0.3870671882%, -0.0637347669%);
    opacity: 1;
  }
  12% {
    -webkit-clip-path: polygon(0% 25.7664303133%, 100% 25.7664303133%, 100% 29.1782269383%, 0% 29.1782269383%);
            clip-path: polygon(0% 25.7664303133%, 100% 25.7664303133%, 100% 29.1782269383%, 0% 29.1782269383%);
    transform: translate(0.8227262569%, 0.3690946213%);
    opacity: 1;
  }
  14% {
    -webkit-clip-path: polygon(0% 82.9712471086%, 100% 82.9712471086%, 100% 92.5670090033%, 0% 92.5670090033%);
            clip-path: polygon(0% 82.9712471086%, 100% 82.9712471086%, 100% 92.5670090033%, 0% 92.5670090033%);
    transform: translate(-2.491057868%, 0.4573147715%);
    opacity: 1;
  }
  16% {
    -webkit-clip-path: polygon(0% 77.4972736656%, 100% 77.4972736656%, 100% 79.6883129063%, 0% 79.6883129063%);
            clip-path: polygon(0% 77.4972736656%, 100% 77.4972736656%, 100% 79.6883129063%, 0% 79.6883129063%);
    transform: translate(-6.6229192352%, -0.4325812875%);
    opacity: 1;
  }
  18% {
    -webkit-clip-path: polygon(0% 84.2800832784%, 100% 84.2800832784%, 100% 92.0588248139%, 0% 92.0588248139%);
            clip-path: polygon(0% 84.2800832784%, 100% 84.2800832784%, 100% 92.0588248139%, 0% 92.0588248139%);
    transform: translate(4.6314523626%, -0.2128836795%);
    opacity: 1;
  }
  20%, 100% {
    -webkit-clip-path: none;
            clip-path: none;
    transform: none;
    opacity: 0;
  }
}
#poem.move-on .poem__mosaic .mosaic2 .glitch .r {
  -webkit-animation: rgb-shift-r 3s steps(1, jump-end) infinite alternate both;
          animation: rgb-shift-r 3s steps(1, jump-end) infinite alternate both;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
@keyframes rgb-shift-r {
  0% {
    transform: translate(0.3099162829%, -0.2657351013%);
  }
  2% {
    transform: translate(1.934326805%, -0.2305548765%);
  }
  4% {
    transform: translate(0.0954438321%, -0.4437256099%);
  }
  6% {
    transform: translate(0.8458982676%, -0.343318872%);
  }
  8% {
    transform: translate(-1.3363648871%, 0.1505574756%);
  }
  10% {
    transform: translate(1.8717663199%, 0.0296541261%);
  }
  12% {
    transform: translate(1.1056417052%, -0.3878405849%);
  }
  14% {
    transform: translate(-1.5260578317%, -0.1958820451%);
  }
  16% {
    transform: translate(-0.1462468409%, -0.2112386885%);
  }
  18% {
    transform: translate(-0.8326223083%, 0.2910010559%);
  }
  20%, 100% {
    transform: none;
  }
}
#poem.move-on .poem__mosaic .mosaic2 .glitch .g {
  -webkit-animation: rgb-shift-g 3s steps(1, jump-end) infinite alternate both;
          animation: rgb-shift-g 3s steps(1, jump-end) infinite alternate both;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
@keyframes rgb-shift-g {
  0% {
    transform: translate(0.600633068%, 0.3117148483%);
  }
  2% {
    transform: translate(0.3129844623%, 0.2458002442%);
  }
  4% {
    transform: translate(-0.4163883632%, 0.1703150795%);
  }
  6% {
    transform: translate(-0.4308087031%, -0.2746803805%);
  }
  8% {
    transform: translate(1.5922049138%, -0.4307767386%);
  }
  10% {
    transform: translate(-0.7577916461%, 0.4678630428%);
  }
  12% {
    transform: translate(0.8869638452%, 0.1988855591%);
  }
  14% {
    transform: translate(-0.9268892733%, -0.0018920257%);
  }
  16% {
    transform: translate(-1.6671756834%, 0.3443746208%);
  }
  18% {
    transform: translate(1.1821046002%, -0.3657893902%);
  }
  20%, 100% {
    transform: none;
  }
}
#poem.move-on .poem__mosaic .mosaic2 .glitch .b {
  -webkit-animation: rgb-shift-b 3s steps(1, jump-end) infinite alternate both;
          animation: rgb-shift-b 3s steps(1, jump-end) infinite alternate both;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
@keyframes rgb-shift-b {
  0% {
    transform: translate(-0.3603414382%, 0.2368229109%);
  }
  2% {
    transform: translate(-1.1501589376%, -0.224418545%);
  }
  4% {
    transform: translate(-0.3297481052%, -0.2799791003%);
  }
  6% {
    transform: translate(0.6354598889%, -0.0932928357%);
  }
  8% {
    transform: translate(-0.7977082501%, 0.3293179202%);
  }
  10% {
    transform: translate(-0.7647338664%, -0.1055197717%);
  }
  12% {
    transform: translate(-1.6660507942%, -0.3301075274%);
  }
  14% {
    transform: translate(-1.3232665219%, 0.436484381%);
  }
  16% {
    transform: translate(-0.5891801739%, -0.4792348516%);
  }
  18% {
    transform: translate(-0.0235752437%, -0.174660187%);
  }
  20%, 100% {
    transform: none;
  }
}
#poem.move-on .poem__box__txt .txt-line, #poem.move-on .poem__box__txt .txt-line.txt-line1, #poem.move-on .poem__box__txt .txt-line.txt-line2 {
  opacity: 1;
  transform: translate(0px);
}
#poem.move-on .poem__box__txt p span {
  opacity: 1;
}
#poem.move-on .poem__box__txt p span.appear.sans-serif {
  -webkit-animation: poemSlide 1s ease, fontChange 0.35s 7s ease forwards;
          animation: poemSlide 1s ease, fontChange 0.35s 7s ease forwards;
}
#poem.move-on .poem__box .txt1 p span.appear {
  -webkit-animation: poemSlide 1s ease;
          animation: poemSlide 1s ease;
}
#poem.move-on .poem__box .txt1 p span.appear.sans-serif {
  -webkit-animation: poemSlide 1s ease, fontChange 0.35s 7s ease forwards;
          animation: poemSlide 1s ease, fontChange 0.35s 7s ease forwards;
}
#poem.move-on .poem__box .txt1 p span.appear:nth-child(2) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
#poem.move-on .poem__box .txt1 p span.appear:nth-child(3) {
  -webkit-animation-delay: 0.25s, 7s;
          animation-delay: 0.25s, 7s;
}
#poem.move-on .poem__box .txt1 p span.appear:nth-child(4) {
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}
#poem.move-on .poem__box .txt1 p span.appear:nth-child(5) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}
#poem.move-on .poem__box .txt1 p span.appear:nth-child(6), #poem.move-on .poem__box .txt1 p span.appear:nth-child(7) {
  -webkit-animation-delay: 0.55s;
          animation-delay: 0.55s;
}
#poem.move-on .poem__box .txt1 p span.font {
  -webkit-animation: fontChange 1s ease;
          animation: fontChange 1s ease;
}
#poem.move-on .poem__box .txt2 p span.appear {
  -webkit-animation: poemSlide 1s ease;
          animation: poemSlide 1s ease;
}
#poem.move-on .poem__box .txt2 p span.appear.sans-serif {
  -webkit-animation: poemSlide 1s ease, fontChange 0.35s 7s ease forwards;
          animation: poemSlide 1s ease, fontChange 0.35s 7s ease forwards;
}
#poem.move-on .poem__box .txt2 p span.appear:nth-child(2) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
#poem.move-on .poem__box .txt2 p span.appear:nth-child(3) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
#poem.move-on .poem__box .txt2 p span.appear:nth-child(n+4):nth-child(-n+13) {
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}
#poem.move-on .poem__box .txt2 p span.appear:nth-child(14) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}
#poem.move-on .poem__box .txt2 p span.appear:nth-child(15) {
  -webkit-animation-delay: 0.55s;
          animation-delay: 0.55s;
}
#poem.move-on .poem__box .txt2 p span.appear:nth-child(16) {
  -webkit-animation-delay: 0.65s, 7s;
          animation-delay: 0.65s, 7s;
}
#poem.move-on .poem__box .txt2 p span.appear:nth-child(17) {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
#poem.move-on .poem__box .txt2 p span.appear:nth-child(18), #poem.move-on .poem__box .txt2 p span.appear:nth-child(19) {
  -webkit-animation-delay: 0.85s;
          animation-delay: 0.85s;
}
#poem.move-on .poem__box .txt3 p span.appear {
  -webkit-animation: poemSlide 1s ease;
          animation: poemSlide 1s ease;
}
#poem.move-on .poem__box .txt3 p span.appear.sans-serif {
  -webkit-animation: poemSlide 1s ease, fontChange 0.35s 7s ease forwards;
          animation: poemSlide 1s ease, fontChange 0.35s 7s ease forwards;
}
#poem.move-on .poem__box .txt3 p span.appear:nth-child(2) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
#poem.move-on .poem__box .txt3 p span.appear:nth-child(3) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
#poem.move-on .poem__box .txt3 p span.appear:nth-child(4) {
  -webkit-animation-delay: 0.35s, 7s;
          animation-delay: 0.35s, 7s;
}
#poem.move-on .poem__box .txt3 p span.appear:nth-child(5) {
  -webkit-animation-delay: 0.45s, 7s;
          animation-delay: 0.45s, 7s;
}
#poem.move-on .poem__box .txt3 p span.appear:nth-child(6) {
  -webkit-animation-delay: 0.55s;
          animation-delay: 0.55s;
}
#poem.move-on .poem__box .txt3 p span.appear:nth-child(7) {
  -webkit-animation-delay: 0.65s, 7s;
          animation-delay: 0.65s, 7s;
}
#poem.move-on .poem__box .txt3 p span.appear:nth-child(8), #poem.move-on .poem__box .txt3 p span.appear:nth-child(9) {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
#poem.move-on .poem__box .txt4 p span.appear, #poem.move-on .poem__box .txt5 p span.appear, #poem.move-on .poem__box .txt6 p span.appear, #poem.move-on .poem__box .txt7 p span.appear {
  transform: translateY(0);
}
#poem.move-on .poem__box .txt8 p span.appear {
  transform: translateY(0px) skewY(0deg) scale(1);
}
#poem.move-on .poem__box .txt9 p span.appear {
  opacity: 1;
}

#footer {
  padding-top: 740px;
  background-position: top 203px center, top center;
}
@media only screen and (max-width: 768px) {
  #footer {
    padding-top: 90.625vw;
    background-position: top 59.0625vw center, top center;
  }
}
#footer .footer__deco__box__shine {
  top: 410px;
}
@media only screen and (max-width: 768px) {
  #footer .footer__deco__box__shine {
    top: 59.6875vw;
  }
}
#footer .footer__deco__box__bg {
  height: calc(100% - 740px);
}
@media only screen and (max-width: 768px) {
  #footer .footer__deco__box__bg {
    height: calc(100% - 90.625vw);
  }
}
#footer .footer__deco__box__illust {
  top: 462px;
}
@media only screen and (max-width: 768px) {
  #footer .footer__deco__box__illust {
    top: 66.09375vw;
  }
}

#modal-block .member__modal {
  width: 100vw;
  height: 100%;
  min-height: 1200px;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  #modal-block .member__modal {
    min-height: 100vh;
  }
}
#modal-block .member__modal__wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  background: url("../img/member/bg_modal-pc.webp") no-repeat top center;
  background-size: cover;
  overflow: hidden;
  display: flex;
}
@media only screen and (max-width: 768px) {
  #modal-block .member__modal__wrap {
    padding-bottom: 21.875vw;
  }
}
#modal-block .member__modal__bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
}
#modal-block .member__modal__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
}
#modal-block .member__modal__deco {
  position: absolute;
  top: 144px;
  right: 40px;
  width: 28px;
}
@media only screen and (max-width: 768px) {
  #modal-block .member__modal__deco {
    top: 22.5vw;
    right: 4.375vw;
    width: 4.375vw;
  }
}
#modal-block .member__modal__deco2 {
  position: absolute;
  display: none;
}
@media only screen and (max-width: 768px) {
  #modal-block .member__modal__deco2 {
    display: block;
    top: 71.71875vw;
    left: 0;
    width: 4.375vw;
  }
}
#modal-block .member__modal__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: end;
  width: 1100px;
  margin: 112px auto 0;
}
@media only screen and (max-width: 768px) {
  #modal-block .member__modal__inner {
    width: 91.40625vw;
    margin-top: 116.25vw;
  }
}
#modal-block .member__modal__illust {
  position: absolute;
}
#modal-block .member__modal__name {
  position: absolute;
  top: -68px;
  left: -72px;
  width: 144px;
}
@media only screen and (max-width: 768px) {
  #modal-block .member__modal__name {
    top: -113.125vw;
    left: 0;
    width: 18.4375vw;
  }
}
#modal-block .member__modal__link {
  display: flex;
  justify-content: right;
  gap: 0 15px;
  margin-bottom: 35px;
}
@media only screen and (max-width: 768px) {
  #modal-block .member__modal__link {
    gap: 0 3.125vw;
    margin-bottom: 4.0625vw;
  }
}
#modal-block .member__modal__link__item {
  position: relative;
  width: 154px;
  height: 48px;
}
@media only screen and (max-width: 768px) {
  #modal-block .member__modal__link__item {
    width: 28.59375vw;
    height: 8.90625vw;
  }
}
#modal-block .member__modal__link__item .base svg {
  width: 100%;
  height: auto;
}
#modal-block .member__modal__link__item .base svg path {
  transition: all 0.25s ease;
}
#modal-block .member__modal__link__item a {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 5px;
  color: #8337E6;
  text-decoration: none;
  box-sizing: border-box;
  transition: all 0.25s ease;
}
@media only screen and (max-width: 1350px) {
  #modal-block .member__modal__link__item a {
    font-size: 1.4814814815vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block .member__modal__link__item a {
    font-size: 3.75vw;
    padding-bottom: 0.625vw;
  }
}
#modal-block .member__modal__link__item .arrow {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 6px;
  transition: all 0.25s ease;
}
@media only screen and (max-width: 768px) {
  #modal-block .member__modal__link__item .arrow {
    right: 2.8125vw;
    width: 1.09375vw;
  }
}
#modal-block .member__modal__link__item .arrow svg {
  width: 100%;
  height: auto;
}
#modal-block .member__modal__link__item .arrow svg path {
  transition: all 0.25s ease;
}
#modal-block .member__modal__profile {
  position: relative;
  width: 494px;
  padding: 30px 20px 40px;
  margin-bottom: 22px;
}
@media only screen and (max-width: 768px) {
  #modal-block .member__modal__profile {
    width: 77.1875vw;
    padding: 4.6875vw 3.125vw 6.25vw;
    margin-bottom: 4.6875vw;
  }
}
#modal-block .member__modal__profile::before {
  content: "";
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: block;
  width: 491px;
  height: 6px;
  background: url("../img/parts/frame_deco_text.png") no-repeat top center;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  #modal-block .member__modal__profile::before {
    top: calc(100% + 1.5625vw);
    width: 76.71875vw;
    height: 0.9375vw;
  }
}
#modal-block .member__modal__profile__catch {
  position: relative;
  font-size: 24px;
  color: #FFEB55;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  #modal-block .member__modal__profile__catch {
    font-size: 4.375vw;
    margin-bottom: 2.8125vw;
  }
}
#modal-block .member__modal__profile__text {
  position: relative;
  font-size: 16px;
  line-height: 2;
  color: #fff;
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  #modal-block .member__modal__profile__text {
    font-size: 3.125vw;
    margin-bottom: 2.34375vw;
  }
}
#modal-block .member__modal__profile__data {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 147px 1fr;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  #modal-block .member__modal__profile__data {
    grid-template-columns: 27.65625vw 1fr;
  }
}
#modal-block .member__modal__profile__data dt {
  position: relative;
  font-size: 16px;
  color: #FFEB55;
  line-height: 50px;
  border-bottom: 1px solid #fff;
}
@media only screen and (max-width: 768px) {
  #modal-block .member__modal__profile__data dt {
    font-size: 3.125vw;
    line-height: 7.8125vw;
  }
}
#modal-block .member__modal__profile__data dt::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 100%;
  width: 1px;
  height: 10px;
  background-color: #fff;
}
#modal-block .member__modal__profile__data dd {
  font-size: 20px;
  color: #fff;
  line-height: 50px;
  padding-left: 24px;
  border-bottom: 1px solid #fff;
}
@media only screen and (max-width: 768px) {
  #modal-block .member__modal__profile__data dd {
    font-size: 3.75vw;
    line-height: 7.8125vw;
    padding-left: 3.75vw;
  }
}
#modal-block .member__modal__item__box {
  position: relative;
  display: flex;
  justify-content: left;
  width: 100%;
}
#modal-block .member__modal__item__explanation {
  position: relative;
  width: 494px;
  padding: 30px 20px;
  margin-top: 90px;
}
@media only screen and (max-width: 768px) {
  #modal-block .member__modal__item__explanation {
    width: 52.1875vw;
    padding: 4.6875vw 3.125vw;
    margin-top: 9.0625vw;
  }
}
#modal-block .member__modal__item__explanation__name {
  position: relative;
  font-size: 20px;
  color: #FFEB55;
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  #modal-block .member__modal__item__explanation__name {
    font-size: 3.75vw;
    margin-bottom: 2.34375vw;
  }
}
#modal-block .member__modal__item__explanation__text {
  position: relative;
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 25px;
}
@media only screen and (max-width: 768px) {
  #modal-block .member__modal__item__explanation__text {
    font-size: 3.125vw;
    margin-bottom: 3.90625vw;
  }
}
@media only screen and (max-width: 768px) {
  #modal-block .member__modal__item__image {
    margin-left: -8.90625vw;
  }
}
#modal-block #laplus .member__modal__illust {
  top: -98px;
  left: 65px;
  width: 672px;
}
@media only screen and (max-width: 768px) {
  #modal-block #laplus .member__modal__illust {
    top: -114.0625vw;
    left: -6.25vw;
    width: 104.6875vw;
  }
}
#modal-block #laplus .member__modal__name {
  left: -145px;
  width: 311px;
}
@media only screen and (max-width: 768px) {
  #modal-block #laplus .member__modal__name {
    left: 0;
    width: 18.4375vw;
  }
}
#modal-block #laplus .member__modal__link__item .base svg path {
  stroke: #8337E6;
}
#modal-block #laplus .member__modal__link__item a {
  color: #8337E6;
}
#modal-block #laplus .member__modal__link__item .arrow svg path {
  fill: #8337E6;
}
#modal-block #laplus .member__modal__link__item:hover .base svg path {
  fill: #8337E6;
  stroke: #fff;
}
@media only screen and (max-width: 768px) {
  #modal-block #laplus .member__modal__link__item:hover .base svg path {
    fill: #fff;
    stroke: #8337E6;
  }
}
#modal-block #laplus .member__modal__link__item:hover a {
  color: #fff;
}
@media only screen and (max-width: 768px) {
  #modal-block #laplus .member__modal__link__item:hover a {
    color: #8337E6;
  }
}
#modal-block #laplus .member__modal__link__item:hover .arrow {
  transform: translateY(-50%) translateX(5px) scale(0.9);
}
@media only screen and (max-width: 768px) {
  #modal-block #laplus .member__modal__link__item:hover .arrow {
    transform: translateY(-50%);
  }
}
#modal-block #laplus .member__modal__link__item:hover .arrow svg path {
  fill: #fff;
}
@media only screen and (max-width: 768px) {
  #modal-block #laplus .member__modal__link__item:hover .arrow svg path {
    fill: #8337E6;
  }
}
#modal-block #laplus .member__modal__item__image {
  width: 306px;
}
@media only screen and (max-width: 768px) {
  #modal-block #laplus .member__modal__item__image {
    width: 47.8125vw;
  }
}
#modal-block #takane .member__modal__illust {
  top: -98px;
  left: 72px;
  width: 619px;
}
@media only screen and (max-width: 768px) {
  #modal-block #takane .member__modal__illust {
    top: -117.1875vw;
    left: -1.875vw;
    width: 96.71875vw;
  }
}
#modal-block #takane .member__modal__link__item .base svg path {
  stroke: #831550;
}
#modal-block #takane .member__modal__link__item a {
  color: #831550;
}
#modal-block #takane .member__modal__link__item .arrow svg path {
  fill: #831550;
}
#modal-block #takane .member__modal__link__item:hover .base svg path {
  fill: #831550;
  stroke: #fff;
}
@media only screen and (max-width: 768px) {
  #modal-block #takane .member__modal__link__item:hover .base svg path {
    fill: #fff;
    stroke: #831550;
  }
}
#modal-block #takane .member__modal__link__item:hover a {
  color: #fff;
}
@media only screen and (max-width: 768px) {
  #modal-block #takane .member__modal__link__item:hover a {
    color: #831550;
  }
}
#modal-block #takane .member__modal__link__item:hover .arrow {
  transform: translateY(-50%) translateX(5px) scale(0.9);
}
@media only screen and (max-width: 768px) {
  #modal-block #takane .member__modal__link__item:hover .arrow {
    transform: translateY(-50%);
  }
}
#modal-block #takane .member__modal__link__item:hover .arrow svg path {
  fill: #fff;
}
@media only screen and (max-width: 768px) {
  #modal-block #takane .member__modal__link__item:hover .arrow svg path {
    fill: #831550;
  }
}
#modal-block #takane .member__modal__item__image {
  width: 388px;
}
@media only screen and (max-width: 768px) {
  #modal-block #takane .member__modal__item__image {
    width: 45.15625vw;
  }
}
#modal-block #hakui .member__modal__illust {
  top: -85px;
  left: 63px;
  width: 638px;
}
@media only screen and (max-width: 768px) {
  #modal-block #hakui .member__modal__illust {
    top: -112.96875vw;
    left: 2.96875vw;
    width: 99.6875vw;
  }
}
#modal-block #hakui .member__modal__link__item .base svg path {
  stroke: #FB33BF;
}
#modal-block #hakui .member__modal__link__item a {
  color: #FB33BF;
}
#modal-block #hakui .member__modal__link__item .arrow svg path {
  fill: #FB33BF;
}
#modal-block #hakui .member__modal__link__item:hover .base svg path {
  fill: #FB33BF;
  stroke: #fff;
}
@media only screen and (max-width: 768px) {
  #modal-block #hakui .member__modal__link__item:hover .base svg path {
    fill: #fff;
    stroke: #FB33BF;
  }
}
#modal-block #hakui .member__modal__link__item:hover a {
  color: #fff;
}
@media only screen and (max-width: 768px) {
  #modal-block #hakui .member__modal__link__item:hover a {
    color: #FB33BF;
  }
}
#modal-block #hakui .member__modal__link__item:hover .arrow {
  transform: translateY(-50%) translateX(5px) scale(0.9);
}
@media only screen and (max-width: 768px) {
  #modal-block #hakui .member__modal__link__item:hover .arrow {
    transform: translateY(-50%);
  }
}
#modal-block #hakui .member__modal__link__item:hover .arrow svg path {
  fill: #fff;
}
@media only screen and (max-width: 768px) {
  #modal-block #hakui .member__modal__link__item:hover .arrow svg path {
    fill: #FB33BF;
  }
}
#modal-block #hakui .member__modal__item__image {
  width: 292px;
}
@media only screen and (max-width: 768px) {
  #modal-block #hakui .member__modal__item__image {
    width: 45.3125vw;
  }
}
#modal-block #kazama .member__modal__illust {
  top: -70px;
  left: 67px;
  width: 532px;
}
@media only screen and (max-width: 768px) {
  #modal-block #kazama .member__modal__illust {
    top: -110.3125vw;
    left: 8.59375vw;
    width: 83.125vw;
  }
}
#modal-block #kazama .member__modal__link__item .base svg path {
  stroke: #61C3BB;
}
#modal-block #kazama .member__modal__link__item a {
  color: #61C3BB;
}
#modal-block #kazama .member__modal__link__item .arrow svg path {
  fill: #61C3BB;
}
#modal-block #kazama .member__modal__link__item:hover .base svg path {
  fill: #61C3BB;
  stroke: #fff;
}
@media only screen and (max-width: 768px) {
  #modal-block #kazama .member__modal__link__item:hover .base svg path {
    fill: #fff;
    stroke: #61C3BB;
  }
}
#modal-block #kazama .member__modal__link__item:hover a {
  color: #fff;
}
@media only screen and (max-width: 768px) {
  #modal-block #kazama .member__modal__link__item:hover a {
    color: #61C3BB;
  }
}
#modal-block #kazama .member__modal__link__item:hover .arrow {
  transform: translateY(-50%) translateX(5px) scale(0.9);
}
@media only screen and (max-width: 768px) {
  #modal-block #kazama .member__modal__link__item:hover .arrow {
    transform: translateY(-50%);
  }
}
#modal-block #kazama .member__modal__link__item:hover .arrow svg path {
  fill: #fff;
}
@media only screen and (max-width: 768px) {
  #modal-block #kazama .member__modal__link__item:hover .arrow svg path {
    fill: #61C3BB;
  }
}
#modal-block #kazama .member__modal__item__image {
  width: 290px;
}
@media only screen and (max-width: 768px) {
  #modal-block #kazama .member__modal__item__image {
    width: 45.3125vw;
  }
}