@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Hind:wght@500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap");
/*
@mixin fontsize($size: 24, $base: 16) {
  font-size: $size + px;
  font-size: ($size / $base) * 1rem;
}
*/
.common--wrapper {
  position: relative;
  width: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  padding-top: 1px;
  padding-bottom: 16.25vw;
  z-index: 10;
}
@media only screen and (min-width: 767px) {
  .common--wrapper {
    padding-bottom: 6.875vw;
    padding-top: 7.9375vw;
  }
}
@media only screen and (min-width: 1600px) {
  .common--wrapper {
    padding-bottom: 110px;
    padding-top: 127px;
  }
}
.common--inner {
  position: relative;
  z-index: 100;
}
.common--h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 94.75vw;
  height: 12.5vw;
  margin: 6.25vw auto 0;
  font-size: 5.25vw;
  font-weight: bold;
  color: #ffffff;
  background-image: url(../img/common/h2.png);
  background-size: contain;
  background-repeat: no-repeat;
  padding-top: 0.5vw;
}
@media only screen and (min-width: 767px) {
  .common--h2 {
    width: 68.75vw;
    height: 6.875vw;
    font-size: 2.625vw;
    background-image: url(../img/common/h2_pc.png);
    margin: 4.8125vw auto 2.75vw;
    padding-top: 0.25vw;
  }
}
@media only screen and (min-width: 1600px) {
  .common--h2 {
    width: 1100px;
    height: 110px;
    font-size: 42px;
    margin: 77px auto 44px;
  }
}
.common--h3 {
  font-size: 4.5vw;
  width: 100%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 767px) {
  .common--h3 {
    font-size: 2.25vw;
  }
}
@media only screen and (min-width: 1600px) {
  .common--h3 {
    font-size: 36px;
  }
}
.common--h3:before, .common--h3:after {
  display: block;
  content: "";
  background-image: url(../img/common/h2_deco.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1vw;
  height: 2.75vw;
  margin-top: -0.75vw;
}
@media only screen and (min-width: 767px) {
  .common--h3:before, .common--h3:after {
    width: 0.5vw;
    height: 1.375vw;
    margin-top: -0.375vw;
  }
}
@media only screen and (min-width: 1600px) {
  .common--h3:before, .common--h3:after {
    width: 8px;
    height: 22px;
    margin-top: -6px;
  }
}
.common--h3:before {
  margin-right: 3.75vw;
}
@media only screen and (min-width: 767px) {
  .common--h3:before {
    margin-right: 1.875vw;
  }
}
@media only screen and (min-width: 1600px) {
  .common--h3:before {
    margin-right: 30px;
  }
}
.common--h3:after {
  transform: scale(-1, 1);
  margin-left: 3.75vw;
}
@media only screen and (min-width: 767px) {
  .common--h3:after {
    margin-left: 1.875vw;
  }
}
@media only screen and (min-width: 1600px) {
  .common--h3:after {
    margin-left: 30px;
  }
}
.common--h4 {
  background-color: rgba(252, 250, 241, 0.9);
  width: 87.5vw;
  margin: 13.75vw auto 0;
  text-align: center;
  font-size: 3.25vw;
  padding: 1.75vw 0 1.25vw;
  border: 0.5vw solid rgba(0, 218, 169, 0.9);
  border-top: none;
  border-bottom: none;
  font-weight: bold;
}
.common--h4.mt0 {
  margin-top: 0;
}
@media only screen and (min-width: 767px) {
  .common--h4 {
    width: 68.75vw;
    margin: 6.875vw auto 0;
    font-size: 1.375vw;
    padding: 0.875vw 0 0.625vw;
    border: 0.25vw solid rgba(0, 218, 169, 0.9);
    border-top: none;
    border-bottom: none;
  }
}
@media only screen and (min-width: 1600px) {
  .common--h4 {
    width: 1100px;
    margin-top: 110px;
    font-size: 22px;
    padding: 14px 0 10px;
    border-width: 4px;
  }
}
.common--btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75vw;
  height: 11.25vw;
  margin: 0 auto;
  background-color: #00daa9;
  color: #fff;
  font-weight: bold;
  font-size: 4vw;
  line-height: 1.3;
}
@media only screen and (min-width: 767px) {
  .common--btn {
    width: 25vw;
    height: 3.75vw;
    font-size: 1.375vw;
    transition: 300ms;
  }
  .common--btn:hover {
    background-color: #00daa9;
  }
  .common--btn:hover::before {
    background-color: #00daa9;
  }
  .common--btn:hover:after {
    background-image: url(../img/common/arrow_wh.svg);
  }
}
@media only screen and (min-width: 1600px) {
  .common--btn {
    width: 400px;
    height: 60px;
    font-size: 22px;
  }
}
.common--btn:before, .common--btn:after {
  display: block;
  content: "";
  position: absolute;
}
.common--btn:before {
  transition: 300ms;
  width: 7.5vw;
  height: 11.25vw;
  background-color: #00231f;
  right: 0;
}
@media only screen and (min-width: 767px) {
  .common--btn:before {
    width: 2.375vw;
    height: 3.75vw;
  }
}
@media only screen and (min-width: 1600px) {
  .common--btn:before {
    width: 38px;
    height: 60px;
  }
}
.common--btn:after {
  background-image: url(../img/common/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 3.25vw;
  height: 5.75vw;
  z-index: 10;
  right: 1.875vw;
}
@media only screen and (min-width: 767px) {
  .common--btn:after {
    width: 0.625vw;
    height: 1.25vw;
    right: 0.75vw;
  }
}
@media only screen and (min-width: 1600px) {
  .common--btn:after {
    width: 10px;
    height: 20px;
    right: 12px;
  }
}
@media only screen and (min-width: 767px) {
  .common--btn.blank:hover:after {
    background-image: url(../img/common/blank_wh.svg);
  }
}
.common--btn.blank:after {
  background-image: url(../img/common/blank_wh.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 3.25vw;
  height: 2.375vw;
  z-index: 10;
  right: 1.875vw;
}
@media only screen and (min-width: 767px) {
  .common--btn.blank:after {
    width: 1vw;
    height: 0.75vw;
    right: 0.625vw;
  }
}
@media only screen and (min-width: 1600px) {
  .common--btn.blank:after {
    width: 16px;
    height: 12px;
    right: 10px;
  }
}
@media only screen and (min-width: 767px) {
  .common--btn.dl:hover:after {
    background-image: url(../img/common/dl_wh.svg);
  }
}
.common--btn.dl:after {
  background-image: url(../img/common/dl_wh.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 3.125vw;
  height: 3.125vw;
  z-index: 10;
  right: 1.875vw;
}
@media only screen and (min-width: 767px) {
  .common--btn.dl:after {
    width: 1.25vw;
    height: 1.25vw;
    right: 0.625vw;
  }
}
@media only screen and (min-width: 1600px) {
  .common--btn.dl:after {
    width: 20px;
    height: 20px;
    right: 10px;
  }
}
.common--box {
  width: 87.5vw;
  margin: 0 auto;
  background: rgba(0, 35, 31, 0.9);
  margin-top: 6.25vw;
  padding: 8.75vw 7.5vw;
}
@media only screen and (min-width: 767px) {
  .common--box {
    width: 68.75vw;
    margin-top: 2.5vw;
    padding: 5vw 0;
    overflow-x: hidden;
  }
}
@media only screen and (min-width: 1600px) {
  .common--box {
    width: 1100px;
    margin-top: 40px;
    padding: 80px 0;
  }
}
.common--top {
  position: fixed;
  z-index: 200;
  display: block;
  width: 11.25vw;
  font-size: 0;
  right: 3.125vw;
  bottom: 15vw;
  transition: 300ms;
}
.common--top.off {
  opacity: 0;
  pointer-events: none;
}
@media only screen and (min-width: 767px) {
  .common--top {
    width: 5vw;
    right: 9.0625vw;
    bottom: 3.125vw;
  }
  .common--top:hover {
    transform: translateY(-10%);
  }
}
@media only screen and (min-width: 1600px) {
  .common--top {
    width: 80px;
    right: 145px;
    bottom: 50px;
  }
}
.common--bg {
  background-color: #e7dbf3;
}
.common--bg__inner {
  position: fixed;
  display: block;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  z-index: -5;
  overflow: hidden;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.common--bg__parts {
  background-image: url(../img/common/bg/bg.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -4;
}
@media only screen and (min-width: 767px) {
  .common--bg__parts {
    background-image: url(../img/common/bg/bg_pc.jpg);
  }
}
.common--bg__parts:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50vw;
  height: 38.5vw;
  background-image: url(../img/common/bg/top_left.png);
  background-repeat: no-repeat;
  background-size: contain;
  transform-origin: 0;
  animation: topLeft 6s linear infinite;
}
@media only screen and (min-width: 767px) {
  .common--bg__parts:before {
    width: 35.3125vw;
    height: 23.9375vw;
  }
}
@media only screen and (min-width: 1400px) {
  .common--bg__parts:before {
    width: 565px;
    height: 383px;
  }
}
.common--bg__parts:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 4%;
  right: -26%;
  width: 50vw;
  height: 38.5vw;
  background-image: url(../img/common/bg/bottom_right.png);
  background-repeat: no-repeat;
  background-size: contain;
  transform-origin: 0;
  transform: translate(0, 20%) rotate(-30deg);
  animation: bottomRight 6s linear infinite;
}
@media only screen and (min-width: 767px) {
  .common--bg__parts:after {
    bottom: 0;
    right: -14%;
    width: 35.3125vw;
    height: 23.9375vw;
  }
}
@media only screen and (min-width: 1400px) {
  .common--bg__parts:after {
    width: 565px;
    height: 383px;
  }
}
.common--bg__parts .frame {
  position: absolute;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}
.common--bg__parts .frame-particle {
  width: 100%;
}
.common--bg__parts .frame-particle.top-right {
  height: 15vw;
  animation: frameParticle 6s ease infinite reverse;
}
@media only screen and (min-width: 767px) {
  .common--bg__parts .frame-particle.top-right {
    height: 8.125vw;
  }
}
@media only screen and (min-width: 1400px) {
  .common--bg__parts .frame-particle.top-right {
    height: 130px;
  }
}
.common--bg__parts .frame-particle.top-right:after {
  content: "";
  display: block;
  position: absolute;
  top: -1.5vw;
  left: 10vw;
  width: 1.5vw;
  height: 1.5vw;
  background-color: #fff;
  transform: rotate(45deg);
}
@media only screen and (min-width: 767px) {
  .common--bg__parts .frame-particle.top-right:after {
    top: -0.25vw;
    left: 8.125vw;
    width: 0.375vw;
    height: 0.375vw;
  }
}
@media only screen and (min-width: 1400px) {
  .common--bg__parts .frame-particle.top-right:after {
    top: -4px;
    left: 130px;
    width: 6px;
    height: 6px;
  }
}
.common--bg__parts .frame-particle.bottom-left {
  height: 15vw;
  animation: frameParticle 6s ease 1s infinite alternate;
}
@media only screen and (min-width: 767px) {
  .common--bg__parts .frame-particle.bottom-left {
    height: 8.75vw;
  }
}
@media only screen and (min-width: 1400px) {
  .common--bg__parts .frame-particle.bottom-left {
    height: 140px;
  }
}
.common--bg__parts .frame-particle.bottom-left:after {
  content: "";
  display: block;
  position: absolute;
  top: 10vw;
  left: -2vw;
  width: 1.5vw;
  height: 1.5vw;
  background-color: #fff;
  transform: rotate(45deg);
}
@media only screen and (min-width: 767px) {
  .common--bg__parts .frame-particle.bottom-left:after {
    top: 4.5vw;
    left: 0;
    width: 0.375vw;
    height: 0.375vw;
  }
}
@media only screen and (min-width: 1400px) {
  .common--bg__parts .frame-particle.bottom-left:after {
    top: 72px;
    width: 6px;
    height: 6px;
  }
}
.common--bg__parts .frame-arrow {
  display: block;
  position: absolute;
  overflow: hidden;
  width: 14.5vw;
  height: 14.5vw;
}
@media only screen and (min-width: 767px) {
  .common--bg__parts .frame-arrow {
    width: 12.5vw;
    height: 7.75vw;
  }
}
@media only screen and (min-width: 1400px) {
  .common--bg__parts .frame-arrow {
    width: 200px;
    height: 124px;
  }
}
.common--bg__parts .frame-arrow.top-right {
  top: 0;
  right: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 82%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 82%);
}
.common--bg__parts .frame-arrow.top-right:after {
  content: "";
  display: block;
  background-image: url(../img/common/bg/arrow_down.png);
  position: absolute;
  top: 0;
  right: 0;
  width: 10vw;
  height: 12vw;
  background-repeat: no-repeat;
  background-size: contain;
  animation: arrow 6s ease-in-out infinite;
}
@media only screen and (min-width: 767px) {
  .common--bg__parts .frame-arrow.top-right:after {
    width: 5.625vw;
    height: 6.25vw;
  }
}
@media only screen and (min-width: 1400px) {
  .common--bg__parts .frame-arrow.top-right:after {
    width: 90px;
    height: 100px;
  }
}
.common--bg__parts .frame-arrow.bottom-left {
  bottom: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, 100% 16%, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 16%, 100% 100%, 0 100%);
}
.common--bg__parts .frame-arrow.bottom-left:after {
  content: "";
  display: block;
  background-image: url(../img/common/bg/arrow_up.png);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15vw;
  height: 14.5vw;
  background-repeat: no-repeat;
  background-size: contain;
  animation: arrow 6s ease-in-out infinite reverse;
}
@media only screen and (min-width: 767px) {
  .common--bg__parts .frame-arrow.bottom-left:after {
    width: 5.625vw;
    height: 6.25vw;
  }
}
@media only screen and (min-width: 1400px) {
  .common--bg__parts .frame-arrow.bottom-left:after {
    width: 90px;
    height: 100px;
  }
}
.common--bg__parts .frame.top-right {
  background-image: url(../img/common/bg/top_right.png);
  top: 0;
  right: 0;
  width: 100vw;
  height: 24vw;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
}
@media only screen and (min-width: 767px) {
  .common--bg__parts .frame.top-right {
    width: 52.8125vw;
    height: 11.375vw;
  }
}
@media only screen and (min-width: 1400px) {
  .common--bg__parts .frame.top-right {
    width: 845px;
    height: 182px;
  }
}
.common--bg__parts .frame.bottom-left {
  background-image: url(../img/common/bg/bottom_left.png);
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 24vw;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left bottom;
}
@media only screen and (min-width: 767px) {
  .common--bg__parts .frame.bottom-left {
    width: 57.6875vw;
    height: 11.75vw;
  }
}
@media only screen and (min-width: 1400px) {
  .common--bg__parts .frame.bottom-left {
    width: 923px;
    height: 188px;
  }
}
.common--bg__parts .corner-text__item {
  position: absolute;
  z-index: -1;
  width: 2136px;
  background-image: url(../img/common/bg/floating_text.png);
  background-size: contain;
  background-repeat: repeat;
  background-position: left bottom;
  opacity: 0;
}
.common--bg__parts .corner-text__item.top-right {
  top: -37vw;
  right: 5.25vw;
  height: 7vw;
  animation: cornerText 60s linear infinite reverse;
}
@media only screen and (min-width: 767px) {
  .common--bg__parts .corner-text__item.top-right {
    top: -6.75vw;
    right: 0;
    height: 3vw;
  }
}
@media only screen and (min-width: 1400px) {
  .common--bg__parts .corner-text__item.top-right {
    top: -108px;
    height: 48px;
  }
}
.common--bg__parts .corner-text__item.bottom-left {
  bottom: -36.5vw;
  height: 7vw;
  left: 0;
  animation: cornerText 60s linear infinite;
}
@media only screen and (min-width: 767px) {
  .common--bg__parts .corner-text__item.bottom-left {
    bottom: -8.25vw;
    height: 4vw;
  }
}
@media only screen and (min-width: 1400px) {
  .common--bg__parts .corner-text__item.bottom-left {
    bottom: -132px;
    height: 64px;
  }
}
.common--bg__parts .globe {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  width: 98.125vw;
  height: 98.125vw;
  background-image: url(../img/common/bg/globe_cross.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 767px) {
  .common--bg__parts .globe {
    width: 37vw;
    height: 37vw;
  }
}
@media only screen and (min-width: 1400px) {
  .common--bg__parts .globe {
    width: 592px;
    height: 592px;
  }
}
.common--bg__parts .globe:before, .common--bg__parts .globe:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.common--bg__parts .globe:before {
  background-image: url(../img/common/bg/globe.png);
  width: 78vw;
  height: 78vw;
  z-index: -2;
  opacity: 0.9;
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: center;
  animation: globe 240s linear infinite;
}
@media only screen and (min-width: 767px) {
  .common--bg__parts .globe:before {
    width: 30.75vw;
    height: 30.75vw;
  }
}
@media only screen and (min-width: 1400px) {
  .common--bg__parts .globe:before {
    width: 492px;
    height: 492px;
  }
}
.common--bg__parts .globe:after {
  background-image: url(../img/common/bg/globe_center.png);
  transform: translate(-50%, -50%);
  width: 97.5vw;
  height: 97.5vw;
  animation: globeCenter 60s ease infinite reverse;
}
@media only screen and (min-width: 767px) {
  .common--bg__parts .globe:after {
    width: 30.75vw;
    height: 30.75vw;
  }
}
@media only screen and (min-width: 1400px) {
  .common--bg__parts .globe:after {
    width: 492px;
    height: 492px;
  }
}
.common--bg__parts .globe-cross {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -2;
  transform: translate(-50%, -50%);
  width: 97.5vw;
  height: 97.5vw;
  background-image: url(../img/common/bg/globe_cross.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 767px) {
  .common--bg__parts .globe-cross {
    width: 37vw;
    height: 37vw;
  }
}
@media only screen and (min-width: 1400px) {
  .common--bg__parts .globe-cross {
    width: 592px;
    height: 592px;
  }
}
.common--bg__parts .verse-item {
  background-image: url(../img/common/bg/verse_belt.png);
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat repeat;
  position: absolute;
  z-index: -3;
  height: 200%;
}
.common--bg__parts .verse-item.left {
  top: 0;
  left: 2vw;
  width: 14vw;
  animation: verseBelt 20s linear infinite reverse;
}
@media only screen and (min-width: 767px) {
  .common--bg__parts .verse-item.left {
    left: 5vw;
    width: 3.5vw;
  }
}
@media only screen and (min-width: 1400px) {
  .common--bg__parts .verse-item.left {
    left: 80px;
    width: 56px;
  }
}
.common--bg__parts .verse-item.ctleft {
  top: 0;
  left: 20vw;
  width: 10.5vw;
  animation: verseBelt 30s linear infinite reverse;
}
@media only screen and (min-width: 767px) {
  .common--bg__parts .verse-item.ctleft {
    left: 28.75vw;
    width: 4.125vw;
  }
}
@media only screen and (min-width: 1400px) {
  .common--bg__parts .verse-item.ctleft {
    left: 460px;
    width: 66px;
  }
}
.common--bg__parts .verse-item.ctright {
  top: 0;
  right: 20vw;
  width: 10.5vw;
  animation: verseBelt 30s linear infinite;
}
@media only screen and (min-width: 767px) {
  .common--bg__parts .verse-item.ctright {
    right: 25.125vw;
    width: 4vw;
  }
}
@media only screen and (min-width: 1400px) {
  .common--bg__parts .verse-item.ctright {
    right: 402px;
    width: 64px;
  }
}
.common--bg__parts .verse-item.right {
  top: 0;
  width: 12vw;
  right: 2.5vw;
  animation: verseBelt 20s linear infinite;
}
@media only screen and (min-width: 767px) {
  .common--bg__parts .verse-item.right {
    right: 6.375vw;
    width: 3.25vw;
  }
}
@media only screen and (min-width: 1400px) {
  .common--bg__parts .verse-item.right {
    right: 102px;
    width: 52px;
  }
}

.header {
  width: 100%;
  position: relative;
  z-index: 1000;
}
@media only screen and (min-width: 767px) {
  .header {
    position: fixed;
  }
}
.header.open .header--nav {
  opacity: 1;
  pointer-events: auto;
}
.header.open .header--btn {
  background: transparent;
  border: transparent;
}
.header.open .header--btn > span {
  width: 7vw;
  background-color: #ff0868;
}
.header.open .header--btn > span:first-child {
  top: 46%;
  transform: rotate(45deg);
}
.header.open .header--btn > span:last-child {
  bottom: 49%;
  transform: rotate(-45deg);
}
.header--inner {
  position: relative;
}
@media only screen and (min-width: 767px) {
  .header--inner {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
  }
}
.header--language {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 7.5vw;
  width: 100%;
  z-index: 10;
}
@media only screen and (min-width: 767px) {
  .header--language {
    position: absolute;
    top: 0;
    right: 0;
    justify-content: flex-end;
    height: 1.875vw;
    z-index: 1000;
  }
}
@media only screen and (min-width: 1600px) {
  .header--language {
    height: 30px;
  }
}
.header--language__text {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #151c39;
  font-size: 2.5vw;
  width: 67.5vw;
}
@media only screen and (min-width: 767px) {
  .header--language__text {
    margin-right: 1.875vw;
    font-size: 0.875vw;
    width: auto;
  }
}
@media only screen and (min-width: 1600px) {
  .header--language__text {
    margin-right: 30px;
    font-size: 14px;
  }
}
.header--language__link {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32.5vw;
  height: 100%;
  color: #fff;
  right: 0;
  background: #b700ff;
  background-size: 100% auto;
  font-size: 2.75vw;
  font-weight: bold;
}
@media only screen and (min-width: 767px) {
  .header--language__link {
    background: #b700ff;
    position: relative;
    font-size: 1vw;
    width: 13.625vw;
    transition: 300ms;
  }
  .header--language__link:hover {
    opacity: 0.7;
  }
}
@media only screen and (min-width: 1600px) {
  .header--language__link {
    font-size: 16px;
    width: 218px;
  }
}
.header--language__link:after {
  display: block;
  content: "";
  position: absolute;
  right: 2.5vw;
  width: 1.125vw;
  height: 2vw;
  background-image: url(../img/common/arrow_wh_b.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 767px) {
  .header--language__link:after {
    right: 0.5625vw;
    width: 0.5625vw;
    height: 1vw;
  }
}
@media only screen and (min-width: 1600px) {
  .header--language__link:after {
    right: 9px;
    width: 9px;
    height: 16px;
  }
}
.header--nav {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 100;
  top: 0;
  left: 0;
  text-align: center;
  padding-top: 0;
  transition: all 300ms;
  opacity: 0;
  pointer-events: none;
}
@media only screen and (min-width: 767px) {
  .header--nav {
    background: transparent;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 0.5vw 2.5vw 0.875vw 2.8125vw;
    pointer-events: auto;
    opacity: 1;
    height: 8.125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .header--nav {
    padding: 8px 40px 14px 45px;
    height: 130px;
  }
}
.header--nav__logo {
  display: inline-block;
  width: 33.25vw;
}
@media only screen and (max-width: 766px) {
  .header--nav__logo {
    margin-top: 6.125vw;
  }
}
@media only screen and (min-width: 767px) {
  .header--nav__logo {
    width: 9.0625vw;
    transition: 300ms;
    position: absolute;
    top: 50%;
    left: 5vw;
    transform: translateY(-50%);
    margin-top: 0.25vw;
  }
  .header--nav__logo:hover {
    opacity: 0.7;
  }
}
@media only screen and (min-width: 1600px) {
  .header--nav__logo {
    width: 145px;
    left: 80px;
    margin-top: 4px;
  }
}
.header--nav__list {
  margin-top: 7.25vw;
}
@media only screen and (min-width: 767px) {
  .header--nav__list {
    margin-top: 0;
    margin-bottom: 0.25vw;
    display: flex;
  }
}
@media only screen and (min-width: 1600px) {
  .header--nav__list {
    margin-bottom: 4px;
  }
}
.header--nav__item {
  position: relative;
}
.header--nav__item:not(:first-child) {
  margin-top: 6.25vw;
  padding-top: 6.25vw;
}
@media only screen and (min-width: 767px) {
  .header--nav__item:not(:first-child) {
    margin-top: 0;
    padding-top: 0;
    margin-left: 2.5vw;
    padding-left: 2.5vw;
    border-left: 1px solid #151c39;
  }
}
@media only screen and (min-width: 1600px) {
  .header--nav__item:not(:first-child) {
    margin-left: 40px;
    padding-left: 40px;
  }
}
.header--nav__item:not(:first-child):before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5vw;
  height: 1px;
  background-color: #b700ff;
}
@media only screen and (min-width: 767px) {
  .header--nav__item:not(:first-child):before {
    display: none;
  }
}
.header--nav__link {
  font-size: 4vw;
  font-weight: bold;
  color: #151c39;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 767px) {
  .header--nav__link {
    font-size: 1.125vw;
    display: flex;
  }
  .header--nav__link::before {
    position: absolute;
    bottom: -0.25vw;
    left: 0;
    content: "";
    width: 100%;
    height: 0.125vw;
    background: #b700ff;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform 0.3s;
  }
  .header--nav__link:hover::before, .header--nav__link.on::before {
    transform: scale(1, 1);
  }
}
@media only screen and (min-width: 1600px) {
  .header--nav__link {
    font-size: 18px;
  }
  .header--nav__link::before {
    bottom: -4px;
    height: 2px;
  }
}
.header--nav__link.blank:after {
  display: block;
  content: "";
  position: absolute;
  right: -4.375vw;
  background-image: url(../img/common/blank_exn.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 2.5vw;
  height: 1.875vw;
}
@media only screen and (min-width: 767px) {
  .header--nav__link.blank:after {
    position: relative;
    right: 0;
    width: 0.8125vw;
    height: 0.625vw;
    margin-left: 0.625vw;
  }
}
@media only screen and (min-width: 1600px) {
  .header--nav__link.blank:after {
    width: 13px;
    height: 10px;
    margin-left: 10px;
  }
}
.header--btn {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 3.75vw;
  right: 3.75vw;
  width: 12.5vw;
  height: 12.5vw;
  background: linear-gradient(-142deg, #b700ff 0%, #ff47e3 100%);
  z-index: 1000;
  transition: all 300ms;
}
.header--btn.off {
  opacity: 0;
}
@media only screen and (min-width: 767px) {
  .header--btn {
    display: none;
  }
}
.header--btn > span {
  position: absolute;
  width: 4.5vw;
  height: 0.5vw;
  background-color: #fff;
  transition: all 300ms;
}
.header--btn > span:first-child {
  top: 4.75vw;
}
.header--btn > span:last-child {
  bottom: 4.75vw;
}
.header--wrapper {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  border-bottom: solid 1.25vw;
  border-image: linear-gradient(to right, #ff47e3 0%, #b700ff 28%, #b600ff 72%, #ff47e3 100%) 1;
  position: relative;
  z-index: 1000;
}
@media only screen and (min-width: 767px) {
  .header--wrapper {
    border-bottom: solid 0.5625vw;
  }
}
@media only screen and (min-width: 1600px) {
  .header--wrapper {
    border-bottom: solid 9px;
  }
}

.footer {
  position: relative;
  width: 100%;
  height: 68.75vw;
  background-color: #00231f;
  padding-top: 10vw;
  text-align: center;
  color: #fff;
  z-index: 10;
}
@media only screen and (min-width: 767px) {
  .footer {
    padding-top: 5vw;
    height: 25vw;
  }
}
@media only screen and (min-width: 1400px) {
  .footer {
    padding-top: 80px;
    height: 400px;
  }
}
.footer:before, .footer:after {
  position: absolute;
  display: block;
  content: " ";
  width: 50%;
  height: 1.25vw;
  top: 0;
}
@media only screen and (min-width: 767px) {
  .footer:before, .footer:after {
    height: 0.625vw;
  }
}
@media only screen and (min-width: 1600px) {
  .footer:before, .footer:after {
    height: 10px;
  }
}
.footer:before {
  background-color: rgba(0, 218, 169, 0.9);
  left: 0;
}
.footer:after {
  background-color: rgba(0, 167, 149, 0.9);
  right: 0;
}
.footer--share__head {
  font-size: 4vw;
  font-weight: bold;
}
@media only screen and (min-width: 767px) {
  .footer--share__head {
    font-size: 1.625vw;
  }
}
@media only screen and (min-width: 1400px) {
  .footer--share__head {
    font-size: 26px;
  }
}
.footer--share__box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5vw;
}
@media only screen and (min-width: 767px) {
  .footer--share__box {
    margin-top: 1.875vw;
  }
}
@media only screen and (min-width: 1400px) {
  .footer--share__box {
    margin-top: 30px;
  }
}
.footer--share__link {
  display: block;
  width: 8.75vw;
  font-size: 0;
}
@media only screen and (min-width: 767px) {
  .footer--share__link {
    width: 3.125vw;
    transition: 300ms;
  }
  .footer--share__link:hover {
    opacity: 0.7;
  }
}
@media only screen and (min-width: 1400px) {
  .footer--share__link {
    width: 50px;
  }
}
.footer--share__link:nth-child(2) {
  margin: 0 6.25vw;
}
@media only screen and (min-width: 767px) {
  .footer--share__link:nth-child(2) {
    margin: 0 2.5vw;
  }
}
@media only screen and (min-width: 1400px) {
  .footer--share__link:nth-child(2) {
    margin: 0 40px;
  }
}
.footer--copy {
  font-size: 2.25vw;
  margin-top: 5vw;
  line-height: 1.5;
}
@media only screen and (min-width: 767px) {
  .footer--copy {
    font-size: 0.6875vw;
    margin-top: 3.75vw;
  }
}
@media only screen and (min-width: 1400px) {
  .footer--copy {
    font-size: 11px;
    margin-top: 60px;
  }
}
@media only screen and (min-width: 767px) {
  .footer--logo {
    width: 100%;
    max-width: 1600px;
    margin: -2.5vw auto 0;
    padding-right: 19.375vw;
  }
}
@media only screen and (min-width: 1600px) {
  .footer--logo {
    margin-top: -40px;
    padding-left: 310px;
  }
}
.footer--logo__link {
  display: block;
  width: 13.75vw;
  margin: 10vw 7.5vw 0 auto;
}
@media only screen and (min-width: 767px) {
  .footer--logo__link {
    width: 6.875vw;
    margin: 0 0 0 auto;
    transition: 300ms;
  }
  .footer--logo__link:hover {
    opacity: 0.7;
  }
}
@media only screen and (min-width: 1400px) {
  .footer--logo__link {
    width: 110px;
  }
}

@media only screen and (min-width: 767px) {
  .top--wrapper {
    padding-top: 0vw;
  }
}
@media only screen and (min-width: 1600px) {
  .top--wrapper {
    padding-top: 0px;
  }
}
.top--kv {
  margin: 0 auto;
  width: 100%;
  max-width: 1600px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media only screen and (min-width: 767px) {
  .top--kv {
    max-width: 100vw;
  }
}
@media only screen and (min-width: 1600px) {
  .top--kv {
    max-width: 1600px;
  }
}
.top--kv__img {
  margin-top: 4.625vw;
  width: 100%;
}
@media only screen and (min-width: 767px) {
  .top--kv__img {
    margin: 1.9375vw auto 0;
    width: 100%;
  }
}
@media only screen and (min-width: 1600px) {
  .top--kv__img {
    margin: 31px auto 0;
  }
}
.top--kv__logo {
  width: 65.375vw;
  margin: 0 auto;
}
@media only screen and (max-width: 766px) {
  .top--kv__logo {
    position: absolute;
    top: 100.875vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
  }
}
@media only screen and (min-width: 767px) {
  .top--kv__logo {
    width: 27.4375vw;
    margin: -19.625vw auto 0;
    padding-right: 1.625vw;
  }
}
@media only screen and (min-width: 1600px) {
  .top--kv__logo {
    width: 439px;
    margin: -314px auto 0;
    padding-right: 26px;
  }
}
.top--btn {
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 766px) {
  .top--btn {
    margin-top: -5vw;
  }
}
@media only screen and (min-width: 767px) {
  .top--btn {
    display: flex;
    justify-content: center;
    margin-top: 3.5vw;
  }
}
@media only screen and (min-width: 1600px) {
  .top--btn {
    margin-top: 56px;
  }
}
.top--btn__wrapper {
  position: relative;
  display: block;
  width: 87.5vw;
  height: 18.125vw;
  margin: 0 auto;
}
@media only screen and (min-width: 767px) {
  .top--btn__wrapper {
    width: 33.75vw;
    height: 7vw;
    margin: 0;
  }
}
@media only screen and (min-width: 767px) {
  .top--btn__wrapper:hover .top--btn__box:before {
    border-width: 50vw 40.625vw 0 0;
  }
}
@media only screen and (min-width: 1600px) {
  .top--btn__wrapper:hover .top--btn__box:before {
    border-width: 800px 650px 0 0;
  }
}
@media only screen and (min-width: 1600px) {
  .top--btn__wrapper {
    width: 540px;
    height: 112px;
  }
}
.top--btn__wrapper:not(:first-child) {
  margin-top: 6.25vw;
}
@media only screen and (min-width: 767px) {
  .top--btn__wrapper:not(:first-child) {
    margin-top: 0;
    margin-left: 1.25vw;
  }
}
@media only screen and (min-width: 1600px) {
  .top--btn__wrapper:not(:first-child) {
    margin-left: 20px;
  }
}
.top--btn__box {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 3.75vw;
  margin: 0 auto;
  background-color: rgba(0, 35, 31, 0.9);
  color: #fff;
  font-size: 4vw;
  font-weight: bold;
  overflow: hidden;
  line-height: 1.5;
}
@media only screen and (min-width: 767px) {
  .top--btn__box {
    font-size: 1.625vw;
    padding-left: 1.25vw;
  }
}
@media only screen and (min-width: 1600px) {
  .top--btn__box {
    font-size: 26px;
    padding-left: 20px;
  }
}
.top--btn__box.small {
  font-size: 3.75vw;
}
@media only screen and (min-width: 767px) {
  .top--btn__box.small {
    font-size: 1.375vw;
  }
}
@media only screen and (min-width: 1600px) {
  .top--btn__box.small {
    font-size: 22px;
  }
}
.top--btn__box > span {
  position: relative;
  z-index: 10;
}
.top--btn__box:before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40vw 23.75vw 0 0;
  border-color: rgba(0, 218, 169, 0.9) transparent transparent transparent;
}
@media only screen and (min-width: 767px) {
  .top--btn__box:before {
    border-width: 15.625vw 9.375vw 0 0;
    transition: 300ms;
  }
}
@media only screen and (min-width: 1600px) {
  .top--btn__box:before {
    border-width: 250px 150px 0 0;
  }
}
.top--btn__img {
  position: absolute;
  z-index: 100;
}
.top--btn__img.i01 {
  width: 23.5vw;
  top: 2.75vw;
  right: 5.125vw;
}
@media only screen and (min-width: 767px) {
  .top--btn__img.i01 {
    width: 9.125vw;
    top: 1.25vw;
    right: 1.8125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .top--btn__img.i01 {
    width: 146px;
    top: 20px;
    right: 29px;
  }
}
.top--btn__img.i02 {
  width: 22.25vw;
  top: 1.5vw;
  right: 5.125vw;
}
@media only screen and (min-width: 767px) {
  .top--btn__img.i02 {
    width: 8.3125vw;
    top: 0.6875vw;
    right: 1.8125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .top--btn__img.i02 {
    width: 133px;
    top: 11px;
    right: 29px;
  }
}
.top--info {
  margin-top: 12.5vw;
  width: 100%;
}
@media only screen and (min-width: 767px) {
  .top--info {
    margin-top: 7.5vw;
  }
}
@media only screen and (min-width: 1400px) {
  .top--info {
    margin-top: 120px;
  }
}
.top--info__ttl > span {
  filter: drop-shadow(0 0 1.25vw rgb(0, 0, 0));
}
@media only screen and (min-width: 767px) {
  .top--info__ttl > span {
    filter: drop-shadow(0 0 0.625vw rgb(0, 0, 0));
  }
}
@media only screen and (min-width: 1600px) {
  .top--info__ttl > span {
    filter: drop-shadow(0 0 10px rgb(0, 0, 0));
  }
}
.top--info__inner {
  overflow: hidden;
}
.top--info__wrapper {
  position: relative;
  width: 100%;
}
.top--info__container {
  width: 100vw;
  margin-top: 6.25vw;
  overflow: visible;
}
@media only screen and (min-width: 767px) {
  .top--info__container {
    width: 50vw;
    margin-top: 3.125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .top--info__container {
    width: 800px;
    margin-top: 50px;
  }
}
.top--info__link {
  display: block;
  margin: 0 6.25vw;
}
@media only screen and (min-width: 767px) {
  .top--info__link {
    margin: 0 2.8125vw;
    transition: 300ms;
  }
  .top--info__link:hover {
    opacity: 0.7;
  }
}
@media only screen and (min-width: 1600px) {
  .top--info__link {
    margin: 0 45px;
  }
}
.top--info__arrow {
  width: 5vw;
  height: 8.75vw;
  background-color: rgba(0, 218, 169, 0.9);
  transition: 300ms;
}
@media only screen and (min-width: 767px) {
  .top--info__arrow {
    width: 2.5vw;
    height: 4.375vw;
  }
  .top--info__arrow:hover {
    background-color: #00231f;
  }
}
@media only screen and (min-width: 1600px) {
  .top--info__arrow {
    width: 40px;
    height: 70px;
  }
}
.top--info__arrow.prev {
  transform: scale(-1, 1);
  left: 0;
}
@media only screen and (min-width: 767px) {
  .top--info__arrow.prev {
    left: -1.25vw;
  }
}
@media only screen and (min-width: 1600px) {
  .top--info__arrow.prev {
    left: -20px;
  }
}
.top--info__arrow.next {
  right: 0;
}
@media only screen and (min-width: 767px) {
  .top--info__arrow.next {
    right: -1.25vw;
  }
}
@media only screen and (min-width: 1400px) {
  .top--info__arrow.next {
    right: -20px;
  }
}
.top--info__arrow:after {
  display: block;
  content: "";
  background-image: url(../img/common/arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 1.75vw;
  height: 3.5vw;
}
@media only screen and (min-width: 767px) {
  .top--info__arrow:after {
    width: 0.875vw;
    height: 1.75vw;
  }
}
@media only screen and (min-width: 1600px) {
  .top--info__arrow:after {
    width: 14px;
    height: 28px;
  }
}
.top--info__pagination {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 5vw;
}
@media only screen and (min-width: 767px) {
  .top--info__pagination {
    margin-top: 2.5vw;
  }
}
@media only screen and (min-width: 1600px) {
  .top--info__pagination {
    margin-top: 40px;
  }
}
.top--info__pagination .swiper-pagination-bullet {
  background-color: #6d6d6d;
  opacity: 1;
  width: 2vw;
  height: 2vw;
  margin: 0 0.625vw;
}
@media only screen and (min-width: 767px) {
  .top--info__pagination .swiper-pagination-bullet {
    width: 1vw;
    height: 1vw;
    margin: 0 0.3125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .top--info__pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    margin: 0 5px;
  }
}
.top--info__pagination .swiper-pagination-bullet-active {
  background-color: #00daa9;
}
.top--info__btn {
  margin-top: 6.25vw;
}
@media only screen and (min-width: 767px) {
  .top--info__btn {
    margin-top: 2.1875vw;
  }
}
@media only screen and (min-width: 1400px) {
  .top--info__btn {
    margin-top: 35px;
  }
}
.top--info__btn span {
  padding-top: 0.625vw;
}
@media only screen and (min-width: 767px) {
  .top--info__btn span {
    padding-top: 0.3125vw;
  }
}
@media only screen and (min-width: 1400px) {
  .top--info__btn span {
    padding-top: 6px;
  }
}
.top--update {
  margin-top: 16.25vw;
}
@media only screen and (min-width: 767px) {
  .top--update {
    margin-top: 7.5vw;
  }
}
@media only screen and (min-width: 1400px) {
  .top--update {
    margin-top: 120px;
  }
}
.top--update__wrapper {
  padding: 8.75vw 6.25vw;
  background: rgba(0, 35, 31, 0.9);
}
@media only screen and (min-width: 767px) {
  .top--update__wrapper {
    padding: 5.625vw 0;
  }
}
@media only screen and (min-width: 1600px) {
  .top--update__wrapper {
    padding: 90px 0;
  }
}
.top--update__box {
  width: 75vw;
  height: 56.25vw;
  margin: 0 auto;
  overflow: scroll;
}
@media only screen and (min-width: 767px) {
  .top--update__box {
    width: 56.3636363636vw;
    height: 11.8181818182vw;
    overflow: scroll;
    padding-right: 1.8181818182vw;
  }
}
@media only screen and (min-width: 1100px) {
  .top--update__box {
    width: 620px;
    height: 130px;
    overflow: scroll;
    padding-right: 20px;
  }
}
.top--update__box::-webkit-scrollbar {
  width: 2.5vw;
}
@media only screen and (min-width: 767px) {
  .top--update__box::-webkit-scrollbar {
    width: 0.9090909091vw;
  }
}
@media only screen and (min-width: 1400px) {
  .top--update__box::-webkit-scrollbar {
    width: 10px;
  }
}
.top--update__box::-webkit-scrollbar-corner {
  background: transparent;
}
.top--update__box::-webkit-scrollbar-track {
  background: transparent;
}
.top--update__box::-webkit-scrollbar-thumb {
  background: #00daa9;
  border-radius: 100px;
}
.top--update__item {
  width: 100%;
  padding-bottom: 5vw;
  border-bottom: 1px solid #fff;
}
@media only screen and (min-width: 767px) {
  .top--update__item {
    display: flex;
    padding-bottom: 1.8181818182vw;
  }
}
@media only screen and (min-width: 1400px) {
  .top--update__item {
    padding-bottom: 20px;
  }
}
.top--update__item:last-child {
  border: none;
}
.top--update__item:not(:first-child) {
  margin-top: 3.75vw;
}
@media only screen and (min-width: 767px) {
  .top--update__item:not(:first-child) {
    margin-top: 2.7272727273vw;
  }
}
@media only screen and (min-width: 1400px) {
  .top--update__item:not(:first-child) {
    margin-top: 30px;
  }
}
.top--update__time {
  color: #00daa9;
  font-size: 3.5vw;
  font-weight: 900;
}
@media only screen and (min-width: 767px) {
  .top--update__time {
    font-size: 1.4545454545vw;
    margin-top: 0.4545454545vw;
  }
}
@media only screen and (min-width: 1100px) {
  .top--update__time {
    font-size: 16px;
    margin-top: 5px;
  }
}
.top--update__text {
  font-size: 3vw;
  margin-top: 1.875vw;
  line-height: 1.5;
  color: #fff;
}
@media only screen and (min-width: 767px) {
  .top--update__text {
    font-size: 1.2727272727vw;
    margin-left: 2.7272727273vw;
    margin-top: 0;
  }
}
@media only screen and (min-width: 1100px) {
  .top--update__text {
    font-size: 14px;
    margin-left: 30px;
  }
}
.top--update__text > a {
  text-decoration: underline;
  color: #00daa9;
}
.top--update__text > a:hover {
  text-decoration: none;
}
.top--fb {
  margin-top: 16.25vw;
}
@media only screen and (min-width: 767px) {
  .top--fb {
    margin-top: 7.5vw;
  }
}
@media only screen and (min-width: 1400px) {
  .top--fb {
    margin-top: 120px;
  }
}
.top--fb__page {
  width: 62.5vw;
  max-width: 500px;
  margin: 0 auto;
}
@media only screen and (min-width: 767px) {
  .top--fb__page {
    width: 45.4545454545vw;
    max-width: 500px;
  }
}
.top--bnr {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72.5vw;
  height: 33.75vw;
  font-size: 0;
  margin: 15vw auto 0;
  background-color: #151c39;
}
@media only screen and (min-width: 767px) {
  .top--bnr {
    width: 20vw;
    height: 9.375vw;
    margin-top: 5.625vw;
    transition: 300ms;
  }
  .top--bnr:hover {
    opacity: 0.7;
  }
}
@media only screen and (min-width: 1600px) {
  .top--bnr {
    width: 320px;
    height: 150px;
    margin-top: 90px;
  }
}
.top--bnr__inner {
  display: block;
  width: 67.5vw;
}
@media only screen and (min-width: 767px) {
  .top--bnr__inner {
    width: 18.75vw;
  }
}
@media only screen and (min-width: 1600px) {
  .top--bnr__inner {
    width: 300px;
  }
}
.top--news {
  margin-top: 17vw;
  width: 100%;
}
@media only screen and (min-width: 767px) {
  .top--news {
    margin-top: 7.5vw;
  }
}
@media only screen and (min-width: 1400px) {
  .top--news {
    margin-top: 120px;
  }
}
.top--news__wrapper {
  background: transparent;
  width: 100%;
}
.top--news__inner {
  margin: 4.125vw auto 0;
  padding: 0 6.25vw;
  width: 100%;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .top--news__inner {
    overflow: scroll;
    overflow-x: auto;
    white-space: nowrap;
  }
}
@media only screen and (min-width: 767px) {
  .top--news__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin-top: 2.5vw;
  }
}
@media only screen and (min-width: 1400px) {
  .top--news__inner {
    margin-top: 40px;
    max-width: 1100px;
  }
}
.top--news__inner::-webkit-scrollbar {
  display: none;
}
.top--news__box {
  display: flex;
}
.top--news__box:not(:first-of-type) {
  margin-left: 6.25vw;
}
@media only screen and (min-width: 767px) {
  .top--news__box:not(:first-of-type) {
    margin-left: 22px;
  }
}
.top--news__box--inner {
  background: rgba(0, 35, 31, 0.9);
  white-space: initial;
  padding: 4.75vw 6vw 6vw;
  width: 75vw;
}
@media only screen and (min-width: 767px) {
  .top--news__box--inner {
    padding: 1.375vw 1.75vw 1.75vw;
    width: 22vw;
  }
}
@media only screen and (min-width: 1400px) {
  .top--news__box--inner {
    padding: 22px 28px 28px;
    width: 352px;
  }
}
.top--news__date {
  color: #00daa9;
  font-family: "Hind", sans-serif;
  font-size: 3.5vw;
  font-weight: 700;
}
@media only screen and (min-width: 767px) {
  .top--news__date {
    font-size: 1vw;
  }
}
@media only screen and (min-width: 1400px) {
  .top--news__date {
    font-size: 16px;
  }
}
.top--news__date > span {
  margin-right: 1vw;
}
@media only screen and (min-width: 767px) {
  .top--news__date > span {
    margin-right: 0.25vw;
  }
}
@media only screen and (min-width: 1400px) {
  .top--news__date > span {
    margin-right: 4px;
  }
}
.top--news__title {
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3vw;
  font-weight: 400;
  line-height: 1.7;
  margin-top: 1.75vw;
}
@media only screen and (min-width: 767px) {
  .top--news__title {
    font-size: 0.875vw;
    margin-top: 0.5vw;
  }
}
@media only screen and (min-width: 1400px) {
  .top--news__title {
    font-size: 14px;
    margin-top: 8px;
  }
}
.top--news__title .title {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 10vw;
}
@media only screen and (min-width: 767px) {
  .top--news__title .title {
    height: 2.9375vw;
  }
}
@media only screen and (min-width: 1400px) {
  .top--news__title .title {
    height: 47px;
  }
}
.top--news__thumb {
  width: 100%;
  margin-top: 4.25vw;
}
@media only screen and (min-width: 767px) {
  .top--news__thumb {
    margin-top: 1.125vw;
  }
}
@media only screen and (min-width: 1400px) {
  .top--news__thumb {
    margin-top: 18px;
  }
}
.top--news__btn {
  margin-top: 6.25vw;
}
@media only screen and (min-width: 767px) {
  .top--news__btn {
    margin-top: 50px;
  }
}
.top--news__btn span {
  padding-top: 0.625vw;
}
@media only screen and (min-width: 767px) {
  .top--news__btn span {
    padding-top: 0.3125vw;
  }
}
@media only screen and (min-width: 1400px) {
  .top--news__btn span {
    padding-top: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .top .header {
    position: absolute;
  }
}

.snav--nav {
  position: relative;
  z-index: 10;
}
.snav--nav__current {
  position: relative;
  margin: 5vw auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 87.5vw;
  height: 10vw;
  font-size: 3.75vw;
  font-weight: bold;
  color: #fff;
  background-color: #00daa9;
  padding-top: 0.625vw;
  overflow: hidden;
}
@media only screen and (min-width: 767px) {
  .snav--nav__current {
    display: none;
  }
}
.snav--nav__current.open:after {
  transform: none;
}
.snav--nav__current.new_music {
  background-color: #ec2036;
  color: #fff;
}
.snav--nav__current.new_music:before {
  background-color: #ec2036;
}
.snav--nav__current.pops_anime {
  background-color: #f02d6d;
  color: #fff;
}
.snav--nav__current.pops_anime:before {
  background-color: #f02d6d;
}
.snav--nav__current.niconico {
  background-color: #8c46ab;
  color: #fff;
}
.snav--nav__current.niconico:before {
  background-color: #8c46ab;
}
.snav--nav__current.toho {
  background-color: #3862b4;
  color: #fff;
}
.snav--nav__current.toho:before {
  background-color: #3862b4;
}
.snav--nav__current.variety {
  background-color: #458d68;
  color: #fff;
}
.snav--nav__current.variety:before {
  background-color: #458d68;
}
.snav--nav__current.irodorimidori {
  background-color: #d15995;
  color: #fff;
}
.snav--nav__current.irodorimidori:before {
  background-color: #d15995;
}
.snav--nav__current.gekimai {
  background-color: #ba9f39;
  color: #fff;
}
.snav--nav__current.gekimai:before {
  background-color: #ba9f39;
}
.snav--nav__current.original {
  background-color: #bd2a1a;
  color: #fff;
}
.snav--nav__current.original:before {
  background-color: #bd2a1a;
}
.snav--nav__current.we {
  background-color: #000000;
  color: #fff;
}
.snav--nav__current.we:before {
  background-color: #000000;
}
.snav--nav__current.we:after {
  background-image: url(../img/common/arrow_wh_up.svg);
}
.snav--nav__current.ultima {
  background-color: #ff173d;
  color: #fff;
}
.snav--nav__current.ultima:before {
  background-color: #ff173d;
}
.snav--nav__current:after {
  position: absolute;
  right: 1.25vw;
  display: block;
  content: "";
  width: 3.75vw;
  height: 1.875vw;
  background-image: url(../img/common/arrow_wh_up.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: scale(1, -1);
}
.snav--nav__current:before {
  position: absolute;
  display: block;
  content: "";
  width: 6.25vw;
  height: 110%;
  top: 0;
  right: 0;
}
.snav--nav__current.new span {
  display: block;
  position: relative;
}
.snav--nav__current.new span:before {
  display: block;
  content: "";
  width: 8vw;
  height: 3vw;
  position: absolute;
  left: 12.5vw;
  background-image: url(../img/play/new_on.png);
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 50%;
  transform: translate(-130%, -50%);
}
@media only screen and (max-width: 767px) {
  .snav--nav__current.mr > span {
    margin-top: 0.5vw;
    margin-right: 1.25vw;
    font-size: 3.5vw;
  }
}
.snav--nav__list {
  width: 87.5vw;
  margin: 3.75vw auto 0;
  background-color: #1d1d1d;
  padding: 2.5vw 12.5vw;
  text-align: center;
}
@media only screen and (min-width: 767px) {
  .snav--nav__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin-top: 3.125vw;
    width: 68.75vw;
    background-color: transparent;
  }
}
@media only screen and (min-width: 1600px) {
  .snav--nav__list {
    margin-top: 50px;
    width: 1100px;
  }
}
@media only screen and (min-width: 767px) {
  .snav--nav__list.chara {
    margin-top: 2.5vw;
    width: 51.25vw;
  }
}
@media only screen and (min-width: 1600px) {
  .snav--nav__list.chara {
    margin-top: 40px;
    width: 820px;
  }
}
.snav--nav__item {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .snav--nav__item:not(:first-child) {
    border-top: 1px solid #707070;
  }
}
.snav--nav__item.new:before {
  display: block;
  content: "";
  width: 8vw;
  height: 3vw;
  position: absolute;
  left: 12.5vw;
  background-image: url(../img/play/new.png);
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 767px) and (min-width: 767px) {
  .snav--nav__item.new.current:before, .snav--nav__item.new:hover:before {
    background-image: url(../img/play/new_on.png);
  }
}
@media only screen and (min-width: 767px) {
  .snav--nav__item.new:before {
    display: block;
    content: "";
    width: 8vw;
    height: 3vw;
    position: absolute;
    left: 0;
    background-image: url(../img/play/new.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
}
@media only screen and (min-width: 767px) and (min-width: 767px) {
  .snav--nav__item.new:before {
    width: 2vw;
    height: 0.75vw;
    left: 0.9375vw;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media only screen and (min-width: 767px) and (min-width: 1600px) {
  .snav--nav__item.new:before {
    width: 32px;
    height: 12px;
    left: 15px;
  }
}
@media only screen and (min-width: 767px) {
  .snav--nav__item.newm:hover, .snav--nav__item.newm.current {
    background-color: #ec2036;
  }
  .snav--nav__item.newm .snav--nav__link:before {
    background-color: #ec2036 !important;
  }
}
@media only screen and (min-width: 767px) {
  .snav--nav__item.pops:hover, .snav--nav__item.pops.current {
    background-color: #f02d6d;
  }
  .snav--nav__item.pops .snav--nav__link:before {
    background-color: #f02d6d !important;
  }
}
@media only screen and (min-width: 767px) {
  .snav--nav__item.nico:hover, .snav--nav__item.nico.current {
    background-color: #8c46ab;
  }
  .snav--nav__item.nico .snav--nav__link:before {
    background-color: #8c46ab !important;
  }
}
@media only screen and (min-width: 767px) {
  .snav--nav__item.toho:hover, .snav--nav__item.toho.current {
    background-color: #3862b4;
  }
  .snav--nav__item.toho .snav--nav__link:before {
    background-color: #3862b4 !important;
  }
}
@media only screen and (min-width: 767px) {
  .snav--nav__item.variety:hover, .snav--nav__item.variety.current {
    background-color: #458d68;
  }
  .snav--nav__item.variety .snav--nav__link:before {
    background-color: #458d68 !important;
  }
}
@media only screen and (min-width: 767px) {
  .snav--nav__item.iro:hover, .snav--nav__item.iro.current {
    background-color: #d15995;
  }
  .snav--nav__item.iro .snav--nav__link:before {
    background-color: #d15995 !important;
  }
}
@media only screen and (min-width: 767px) {
  .snav--nav__item.geki:hover, .snav--nav__item.geki.current {
    background-color: #ba9f39;
  }
  .snav--nav__item.geki .snav--nav__link:before {
    background-color: #ba9f39 !important;
  }
}
@media only screen and (min-width: 767px) {
  .snav--nav__item.origin:hover, .snav--nav__item.origin.current {
    background-color: #bd2a1a;
  }
  .snav--nav__item.origin .snav--nav__link:before {
    background-color: #bd2a1a !important;
  }
}
@media only screen and (min-width: 767px) {
  .snav--nav__item.end:hover, .snav--nav__item.end.current {
    background-color: #000000;
  }
  .snav--nav__item.end .snav--nav__link:before {
    background-color: #000000 !important;
  }
  .snav--nav__item.end .snav--nav__link:after {
    background-image: url(../img/common/arrow_wh.svg);
  }
}
@media only screen and (min-width: 767px) {
  .snav--nav__item.ultm:hover, .snav--nav__item.ultm.current {
    background-color: #ff173d;
  }
  .snav--nav__item.ultm .snav--nav__link:before {
    background-color: #ff173d !important;
  }
  .snav--nav__item.ultm .snav--nav__link:after {
    background-image: url(../img/common/arrow_bk.svg);
  }
}
@media only screen and (min-width: 767px) {
  .snav--nav__item {
    background-color: rgba(0, 35, 31, 0.8);
    transition: background-color 300ms;
  }
  .snav--nav__item:hover {
    background-color: #00daa9;
  }
  .snav--nav__item:hover .snav--nav__link {
    color: #fff;
  }
  .snav--nav__item.current {
    background-color: #00daa9;
    pointer-events: none;
  }
  .snav--nav__item.current .snav--nav__link {
    color: #fff;
    padding-right: 0;
  }
  .snav--nav__item.current .snav--nav__link:before {
    background-color: #00daa9;
  }
  .snav--nav__item.current .snav--nav__link:after {
    display: none;
  }
  .snav--nav__item:not(:nth-child(3n+1)) {
    margin-left: 1.25vw;
  }
  .snav--nav__item:nth-child(n+4) {
    margin-top: 1.25vw;
  }
}
@media only screen and (min-width: 1600px) {
  .snav--nav__item:not(:nth-child(3n+1)) {
    margin-left: 20px;
  }
  .snav--nav__item:nth-child(n+4) {
    margin-top: 20px;
  }
}
.snav--nav__link {
  color: #fff;
  font-size: 3.5vw;
  padding: 5vw;
  width: 100%;
  display: block;
  font-weight: bold;
}
.snav--nav__link.mini {
  font-size: 3.5vw;
}
@media only screen and (min-width: 767px) {
  .snav--nav__link.mini {
    font-size: 1.125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .snav--nav__link.mini {
    font-size: 18px;
  }
}
.snav--nav__link.sm {
  font-size: 3.5vw;
}
@media only screen and (min-width: 767px) {
  .snav--nav__link.sm {
    font-size: 0.875vw;
  }
}
@media only screen and (min-width: 1600px) {
  .snav--nav__link.sm {
    font-size: 14px;
  }
}
.snav--nav__link .lm {
  font-size: 3.5vw;
}
@media only screen and (min-width: 767px) {
  .snav--nav__link .lm {
    font-size: 1.25vw;
  }
}
@media only screen and (min-width: 1600px) {
  .snav--nav__link .lm {
    font-size: 20px;
  }
}
@media only screen and (min-width: 767px) {
  .snav--nav__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 21.875vw;
    height: 2.5vw;
    font-size: 1.375vw;
    position: relative;
    padding: 0;
    padding-right: 1.3636363636vw;
    padding-top: 0.25vw;
    overflow: hidden;
  }
  .snav--nav__link:after, .snav--nav__link::before {
    position: absolute;
    display: block;
    content: "";
    margin-top: -0.25vw;
  }
  .snav--nav__link::before {
    width: 1.875vw;
    height: 110%;
    background-color: #00daa9;
    right: 0;
  }
  .snav--nav__link:after {
    width: 0.625vw;
    height: 1.25vw;
    right: 0.5vw;
    background-image: url(../img/common/arrow_wh.svg);
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
}
@media only screen and (min-width: 1600px) {
  .snav--nav__link {
    width: 350px;
    height: 40px;
    font-size: 22px;
    padding-right: 15px;
    padding-top: 4px;
  }
  .snav--nav__link:before, .snav--nav__link:after {
    margin-top: -4px;
  }
  .snav--nav__link::before {
    width: 28px;
  }
  .snav--nav__link:after {
    width: 10px;
    height: 20px;
    right: 8px;
  }
}
.snav--nav__list.ml .snav--nav__item {
  color: #fff;
}
@media only screen and (min-width: 767px) {
  .snav--nav__list.ml .snav--nav__item:not(:nth-child(5n+1)) {
    margin-left: 0.625vw;
    margin-top: 0;
  }
  .snav--nav__list.ml .snav--nav__item:nth-child(n+6) {
    margin-top: 0.9375vw;
  }
  .snav--nav__list.ml .snav--nav__item:nth-child(6n+0) {
    margin-left: 0;
  }
}
@media only screen and (min-width: 1600px) {
  .snav--nav__list.ml .snav--nav__item:not(:nth-child(5n+1)) {
    margin-left: 10px;
  }
  .snav--nav__list.ml .snav--nav__item:nth-child(n+6) {
    margin-top: 15px;
  }
}
.snav--nav__list.ml .snav--nav__link {
  color: #fff;
}
@media only screen and (min-width: 767px) {
  .snav--nav__list.ml .snav--nav__link {
    width: 13.25vw;
  }
}
@media only screen and (min-width: 1600px) {
  .snav--nav__list.ml .snav--nav__link {
    width: 212px;
  }
}
@media only screen and (min-width: 767px) {
  .snav--nav__list.chara .snav--nav__item:not(:nth-child(3n+1)) {
    margin-left: 1.25vw;
  }
}
@media only screen and (min-width: 1600px) {
  .snav--nav__list.chara .snav--nav__item:not(:nth-child(3n+1)) {
    margin-left: 20px;
  }
}
.snav--nav__list.chara .snav--nav__link {
  line-height: 1.2;
}
@media only screen and (min-width: 767px) {
  .snav--nav__list.chara .snav--nav__link {
    width: 16.25vw;
  }
}
@media only screen and (min-width: 1600px) {
  .snav--nav__list.chara .snav--nav__link {
    width: 260px;
  }
}
@media only screen and (min-width: 767px) {
  .snav--nav__list.play .snav--nav__item:not(:nth-child(4n+1)) {
    margin-left: 0.625vw;
    margin-top: 0;
  }
  .snav--nav__list.play .snav--nav__item:nth-child(n+5) {
    margin-top: 0.9375vw;
  }
  .snav--nav__list.play .snav--nav__item:nth-child(5n) {
    margin-left: 0;
  }
}
@media only screen and (min-width: 1600px) {
  .snav--nav__list.play .snav--nav__item:not(:nth-child(4n+1)) {
    margin-left: 10px;
  }
  .snav--nav__list.play .snav--nav__item:nth-child(n+5) {
    margin-top: 15px;
  }
}
@media only screen and (min-width: 767px) {
  .snav--nav__list.play .snav--nav__link {
    font-size: 1.125vw;
    padding-bottom: 0.125vw;
    width: 16.25vw;
  }
}
@media only screen and (min-width: 1600px) {
  .snav--nav__list.play .snav--nav__link {
    font-size: 18px;
    width: 260px;
    padding-bottom: 2px;
  }
}
.snav--nav__list.play .snav--nav__link.mini {
  font-feature-settings: "palt";
}
@media only screen and (min-width: 767px) {
  .snav--nav__list.play .snav--nav__link.mini {
    font-size: 1.0625vw;
  }
}
@media only screen and (min-width: 1600px) {
  .snav--nav__list.play .snav--nav__link.mini {
    font-size: 17px;
  }
}
.snav--nav__list.play .snav--nav__link.mini > span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
}
@media only screen and (min-width: 767px) {
  .snav--nav__list.play .snav--nav__link.mini > span {
    font-size: 0.9375vw;
    padding-bottom: 0.3125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .snav--nav__list.play .snav--nav__link.mini > span {
    font-size: 15px;
    padding-bottom: 5px;
  }
}
@media only screen and (min-width: 767px) {
  .snav--nav__list.play .snav--nav__link.small {
    font-size: 0.875vw;
  }
}
@media only screen and (min-width: 1600px) {
  .snav--nav__list.play .snav--nav__link.small {
    font-size: 14px;
  }
}

.play--h3 {
  margin-top: 5.625vw;
}
.play--h3 > span {
  filter: drop-shadow(0 0 1.25vw rgb(0, 0, 0));
  line-height: 1.3;
}
@media only screen and (min-width: 767px) {
  .play--h3 > span {
    filter: drop-shadow(0 0 0.625vw rgb(0, 0, 0));
  }
}
@media only screen and (min-width: 1600px) {
  .play--h3 > span {
    filter: drop-shadow(0 0 10px rgb(0, 0, 0));
  }
}
@media only screen and (min-width: 767px) {
  .play--h3 {
    margin-top: 4.375vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--h3 {
    margin-top: 70px;
  }
}
.play--item {
  margin-top: 3.75vw;
}
.play--item__inner {
  position: relative;
  width: 87.5vw;
  margin: 0 auto;
}
.play--item__inner:not(:first-child) {
  margin-top: 2.5vw;
}
@media only screen and (min-width: 767px) {
  .play--item__inner:not(:first-child) {
    margin-top: 1vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__inner:not(:first-child) {
    margin-top: 16px;
  }
}
@media only screen and (min-width: 767px) {
  .play--item__inner {
    width: 68.75vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__inner {
    width: 1100px;
  }
}
.play--item__img {
  font-size: 0;
}
.play--item__btn {
  position: absolute;
  bottom: 6.875vw;
  width: 75vw;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 767px) {
  .play--item__btn {
    width: 48.125vw;
    bottom: 5.625vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__btn {
    width: 770px;
    bottom: 90px;
  }
}
.play--item__btn.b01 {
  padding-left: 16.25vw;
  font-size: 3.5vw;
}
@media only screen and (min-width: 767px) {
  .play--item__btn.b01 {
    font-size: 1.375vw;
    padding-left: 0;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__btn.b01 {
    font-size: 22px;
  }
}
.play--item__btn.b02 {
  text-align: center;
  font-size: 3.5vw;
}
@media only screen and (min-width: 767px) {
  .play--item__btn.b02 {
    font-size: 1.375vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__btn.b02 {
    font-size: 22px;
  }
}
.play--item__btn.b03 {
  text-align: center;
  bottom: 38.75vw;
}
@media only screen and (min-width: 767px) {
  .play--item__btn.b03 {
    bottom: 21.25vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__btn.b03 {
    bottom: 340px;
  }
}
.play--item__card {
  position: absolute;
  width: 29.625vw;
  left: -4.375vw;
}
@media only screen and (min-width: 767px) {
  .play--item__card {
    width: 12.3125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__card {
    width: 197px;
  }
}
.play--item__box {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background: rgba(0, 35, 31, 0.9);
  position: relative;
  padding-top: 6.25vw;
}
@media only screen and (min-width: 767px) {
  .play--item__box {
    padding-top: 3.4375vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__box {
    padding-top: 55px;
  }
}
.play--item__box:not(:first-child) {
  margin-top: 2vw;
}
@media only screen and (min-width: 767px) {
  .play--item__box:not(:first-child) {
    margin-top: 1vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__box:not(:first-child) {
    margin-top: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .play--item__box.type2 {
    height: 72.625vw;
  }
}
@media only screen and (max-width: 767px) {
  .play--item__box.type3 {
    height: 68.375vw;
  }
}
.play--item__box .gp01 {
  margin: 0 auto;
  width: 100%;
}
@media only screen and (min-width: 767px) {
  .play--item__box .gp01 {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__box .gp01 {
    margin: 0 auto;
  }
}
.play--item__box .gp02 {
  margin: 0 auto 4vw 6.25vw;
  width: 79.375vw;
}
@media only screen and (min-width: 767px) {
  .play--item__box .gp02 {
    margin: 1vw auto 4.375vw 10.3125vw;
    width: 51.9375vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__box .gp02 {
    margin: 16px auto 70px 165px;
    width: 831px;
  }
}
.play--item__box .gp03 {
  margin: 0 auto 23.5vw 6.25vw;
  width: 77.375vw;
}
@media only screen and (min-width: 767px) {
  .play--item__box .gp03 {
    margin: 2.1875vw auto 13.25vw 10.3125vw;
    width: 47.0625vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__box .gp03 {
    margin: 35px auto 212px 165px;
    width: 753px;
  }
}
.play--item__box .gp04 {
  margin: 0 0 0 6.25vw;
  width: 85.125vw;
}
@media only screen and (max-width: 767px) {
  .play--item__box .gp04 {
    position: absolute;
    left: 0;
  }
}
@media only screen and (min-width: 767px) {
  .play--item__box .gp04 {
    margin: 2.1875vw auto 5.375vw 10.3125vw;
    width: 45.1875vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__box .gp04 {
    margin: 35px auto 86px 165px;
    width: 723px;
  }
}
.play--item__box .gp05 {
  margin: 0 auto 0 6.25vw;
  width: 81.375vw;
}
@media only screen and (min-width: 767px) {
  .play--item__box .gp05 {
    margin: 1vw auto 5.375vw 10.3125vw;
    width: 46.0625vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__box .gp05 {
    margin: 16px auto 86px 165px;
    width: 737px;
  }
}
.play--item__box .gp06 {
  margin: 0 auto 5.625vw 6.25vw;
  width: 75vw;
}
@media only screen and (min-width: 767px) {
  .play--item__box .gp06 {
    margin: 2.1875vw auto 5.375vw 10.3125vw;
    width: 45.125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__box .gp06 {
    margin: 35px auto 86px 165px;
    width: 722px;
  }
}
.play--item__box .gp07 {
  margin: 0 auto 5.625vw 6.25vw;
  width: 75vw;
}
@media only screen and (min-width: 767px) {
  .play--item__box .gp07 {
    margin: 2.1875vw auto 5.375vw 10.3125vw;
    width: 46.0625vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__box .gp07 {
    margin: 35px auto 86px 165px;
    width: 737px;
  }
}
.play--item__box .gp08 {
  margin: 0 auto 5.625vw 6.25vw;
  width: 75vw;
}
@media only screen and (min-width: 767px) {
  .play--item__box .gp08 {
    margin: 2.1875vw auto 5.375vw 10.3125vw;
    width: 45.3125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__box .gp08 {
    margin: 35px auto 86px 165px;
    width: 725px;
  }
}
.play--item__box .gp09 {
  margin: 0 auto 5.625vw 6.25vw;
  width: 75vw;
}
@media only screen and (min-width: 767px) {
  .play--item__box .gp09 {
    margin: 2.1875vw auto 5.375vw 10.3125vw;
    width: 43.9375vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__box .gp09 {
    margin: 35px auto 86px 165px;
    width: 703px;
  }
}
.play--item__box .gp10 {
  margin: 0 auto 5.625vw 6.25vw;
  width: 75vw;
}
@media only screen and (min-width: 767px) {
  .play--item__box .gp10 {
    margin: 2.1875vw auto 5.375vw 10.3125vw;
    width: 43.5vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__box .gp10 {
    margin: 35px auto 86px 165px;
    width: 696px;
  }
}
.play--item__box .gp11 {
  margin: 0 auto 0 6.25vw;
  width: 80.5vw;
}
@media only screen and (min-width: 767px) {
  .play--item__box .gp11 {
    margin: 2.1875vw auto 5.375vw 10.3125vw;
    width: 46.625vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__box .gp11 {
    margin: 35px auto 86px 165px;
    width: 746px;
  }
}
.play--item__box .gp12 {
  margin: 0 auto 22.5vw 6.25vw;
  width: 75vw;
}
@media only screen and (min-width: 767px) {
  .play--item__box .gp12 {
    margin: 2.1875vw auto 12vw 10.3125vw;
    width: 42.9375vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__box .gp12 {
    margin: 35px auto 192px 165px;
    width: 687px;
  }
}
.play--item__box .py01 {
  margin: 0 auto 6.25vw 6.25vw;
  width: 78.75vw;
}
@media only screen and (min-width: 767px) {
  .play--item__box .py01 {
    margin: 2.1875vw auto 5.375vw 10.3125vw;
    width: 48.1875vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__box .py01 {
    margin: 35px auto 86px 165px;
    width: 771px;
  }
}
.play--item__box .py02 {
  margin: 0 auto 0 6.25vw;
  width: 85.5vw;
  height: 66.375vw;
  position: absolute;
  left: 0;
}
@media only screen and (min-width: 767px) {
  .play--item__box .py02 {
    margin: 2.1875vw auto 5.5vw 10.3125vw;
    width: 44.3125vw;
    height: auto;
    position: static;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__box .py02 {
    margin: 35px auto 88px 165px;
    width: 709px;
  }
}
.play--item__box .py03 {
  margin: 0 auto 0 6.25vw;
  width: 75.875vw;
}
@media only screen and (min-width: 767px) {
  .play--item__box .py03 {
    margin: 2.1875vw auto 5.5vw 10.3125vw;
    width: 43.5vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__box .py03 {
    margin: 35px auto 88px 165px;
    width: 696px;
  }
}
.play--item__box .py04 {
  margin: 0 auto 0 6.25vw;
  width: 78vw;
}
@media only screen and (min-width: 767px) {
  .play--item__box .py04 {
    margin: 2.1875vw auto 5.5vw 10.3125vw;
    width: 48.3125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__box .py04 {
    margin: 35px auto 88px 165px;
    width: 773px;
  }
}
.play--item__box .py05 {
  margin: 0 auto 21.875vw 6.25vw;
  width: 75.125vw;
}
@media only screen and (min-width: 767px) {
  .play--item__box .py05 {
    margin: 2.1875vw auto 11.75vw 10.3125vw;
    width: 48vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__box .py05 {
    margin: 35px auto 188px 165px;
    width: 768px;
  }
}
.play--item__box .cm {
  margin: 0 auto 5.625vw;
  width: 75vw;
}
@media only screen and (min-width: 767px) {
  .play--item__box .cm {
    margin: 2.1875vw auto 5.375vw;
    width: 38.5vw;
  }
  .play--item__box .cm.c02 {
    margin-bottom: 3.125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__box .cm {
    margin: 35px auto 86px;
    width: 616px;
  }
  .play--item__box .cm.c02 {
    margin-bottom: 50px;
  }
}
.play--item__box .ct {
  margin: 0 auto 6.25vw;
  width: 75vw;
}
@media only screen and (min-width: 767px) {
  .play--item__box .ct {
    margin: 0.9375vw auto 4.125vw;
    width: 38.5vw;
  }
  .play--item__box .ct.t2 {
    margin-left: 15.125vw;
  }
  .play--item__box .ct.t3 {
    margin-left: 15.125vw;
  }
  .play--item__box .ct.t4 {
    margin-left: 15.125vw;
  }
  .play--item__box .ct.t5 {
    margin-left: 15.125vw;
  }
  .play--item__box .ct.t6 {
    margin-left: 15.125vw;
  }
  .play--item__box .ct.t2 {
    width: 38.625vw;
  }
  .play--item__box .ct.t3 {
    width: 38.6875vw;
  }
  .play--item__box .ct.t4 {
    width: 38.5625vw;
  }
  .play--item__box .ct.t5 {
    width: 40vw;
  }
  .play--item__box .ct.t6 {
    width: 40.4375vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__box .ct {
    margin: 15px auto 68px;
    width: 616px;
  }
  .play--item__box .ct.t2 {
    margin-left: 242px;
  }
  .play--item__box .ct.t3 {
    margin-left: 242px;
  }
  .play--item__box .ct.t4 {
    margin-left: 242px;
  }
  .play--item__box .ct.t5 {
    margin-left: 242px;
  }
  .play--item__box .ct.t6 {
    margin-left: 242px;
  }
  .play--item__box .ct.t2 {
    width: 618px;
  }
  .play--item__box .ct.t3 {
    width: 619px;
  }
  .play--item__box .ct.t4 {
    width: 617px;
  }
  .play--item__box .ct.t5 {
    width: 640px;
  }
  .play--item__box .ct.t5 {
    width: 647px;
  }
}
.play--item__box .cn01 {
  margin: 0 auto 4vw 1.25vw;
  width: 83.5vw;
}
@media only screen and (min-width: 767px) {
  .play--item__box .cn01 {
    margin: 2.1875vw auto 2.375vw 7.125vw;
    width: 51.8125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__box .cn01 {
    margin: 35px auto 38px 114px;
    width: 829px;
  }
}
.play--item__box .cn02 {
  margin: 0 auto 21.25vw 6.25vw;
  width: 65.375vw;
}
@media only screen and (min-width: 767px) {
  .play--item__box .cn02 {
    margin: 2.0625vw auto 11.75vw 15.375vw;
    width: 37.5vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__box .cn02 {
    margin: 33px auto 188px 246px;
    width: 600px;
  }
}
.play--item__box .cn03 {
  margin: 0 auto 5.625vw 6.25vw;
  width: 75vw;
}
@media only screen and (min-width: 767px) {
  .play--item__box .cn03 {
    margin: 0.9375vw auto 4.6875vw 15.125vw;
    width: 38.9375vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__box .cn03 {
    margin: 15px auto 75px 242px;
    width: 623px;
  }
}
.play--item__box .cn04 {
  margin: 0 auto 5.625vw 6.25vw;
  width: 74.875vw;
}
@media only screen and (min-width: 767px) {
  .play--item__box .cn04 {
    margin: 0.9375vw auto 4.25vw 15.125vw;
    width: 38.5vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__box .cn04 {
    margin: 15px auto 68px 242px;
    width: 616px;
  }
}
.play--item__box .cn05 {
  margin: 0 auto 5.625vw 6.25vw;
  width: 75.375vw;
}
@media only screen and (min-width: 767px) {
  .play--item__box .cn05 {
    margin: 0.9375vw auto 4.25vw 15.125vw;
    width: 38.5vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__box .cn05 {
    margin: 15px auto 68px 242px;
    width: 616px;
  }
}
.play--item__box .cn06 {
  margin: 0 auto 5.625vw 6.25vw;
  width: 74.875vw;
}
@media only screen and (min-width: 767px) {
  .play--item__box .cn06 {
    margin: 0.9375vw auto 4.25vw 15.125vw;
    width: 38.5vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__box .cn06 {
    margin: 15px auto 68px 242px;
    width: 616px;
  }
}
.play--item__box .cn07 {
  margin: 0 auto 5.625vw 6.25vw;
  width: 75vw;
}
@media only screen and (min-width: 767px) {
  .play--item__box .cn07 {
    margin: 0.9375vw auto 4.25vw 15.125vw;
    width: 38.75vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__box .cn07 {
    margin: 15px auto 68px 242px;
    width: 620px;
  }
}
.play--item__box .cn08 {
  margin: 0 auto 5.625vw 6.25vw;
  width: 75vw;
}
@media only screen and (min-width: 767px) {
  .play--item__box .cn08 {
    margin: 0.9375vw auto 4.25vw 15.125vw;
    width: 38.5625vw;
  }
}
@media only screen and (min-width: 1600px) {
  .play--item__box .cn08 {
    margin: 15px auto 68px 242px;
    width: 617px;
  }
}
.play--item__box .nf01 {
  margin: 0 auto 6.25vw;
  width: 75vw;
}
@media only screen and (min-width: 767px) {
  .play--item__box .nf01 {
    margin: 0 auto;
    width: 100%;
  }
}

.terms--wrap {
  padding: 6.25vw;
}
@media only screen and (min-width: 767px) {
  .terms--wrap {
    padding: 4.375vw 9.6875vw;
  }
}
@media only screen and (min-width: 1600px) {
  .terms--wrap {
    padding: 70px 155px;
  }
}

.terms--box {
  color: #fff;
}
.terms--box:not(:first-child):before {
  content: "";
  display: block;
  border-top: solid 1px #a0a0a0;
  margin: 5vw auto;
}
@media only screen and (min-width: 767px) {
  .terms--box:not(:first-child):before {
    margin: 3.3125vw auto;
  }
}
@media only screen and (min-width: 1600px) {
  .terms--box:not(:first-child):before {
    margin: 53px auto;
  }
}
.terms--box__title {
  font-size: 3.5vw;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
@media only screen and (min-width: 767px) {
  .terms--box__title {
    font-size: 1.75vw;
  }
}
@media only screen and (min-width: 1600px) {
  .terms--box__title {
    font-size: 28px;
  }
}
.terms--box__title span {
  display: block;
  font-size: 3.25vw;
}
@media only screen and (min-width: 767px) {
  .terms--box__title span {
    font-size: 1.625vw;
  }
}
@media only screen and (min-width: 1600px) {
  .terms--box__title span {
    font-size: 26px;
  }
}
.terms--box__text {
  display: block;
  font-size: 3.25vw;
  line-height: 1.6;
  margin-top: 3.75vw;
  padding: 0;
}
@media only screen and (min-width: 767px) {
  .terms--box__text {
    font-size: 1.125vw;
    line-height: 1.8;
    margin-top: 1.875vw;
    padding: 0 0.125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .terms--box__text {
    font-size: 18px;
    margin-top: 30px;
    padding: 0 2px;
  }
}
.terms--box__list {
  display: flex;
  flex-wrap: wrap;
  font-size: 3.25vw;
  line-height: 1.6;
  margin-top: 3.75vw;
  padding-left: 0.5vw;
}
@media only screen and (min-width: 767px) {
  .terms--box__list {
    font-size: 1.125vw;
    line-height: 1.8;
    margin-top: 1.875vw;
    padding-left: 0.375vw;
  }
}
@media only screen and (min-width: 1600px) {
  .terms--box__list {
    font-size: 18px;
    margin-top: 30px;
    padding-left: 6px;
  }
}
.terms--box__list li {
  list-style: disc;
  margin-left: 3.25vw;
}
@media only screen and (min-width: 767px) {
  .terms--box__list li {
    margin-left: 1.0625vw;
  }
}
@media only screen and (min-width: 1600px) {
  .terms--box__list li {
    margin-left: 17px;
  }
}
.terms--box__list li:not(:first-child) {
  margin-top: 2vw;
}
@media only screen and (min-width: 767px) {
  .terms--box__list li:not(:first-child) {
    margin-top: 0.75vw;
  }
}
@media only screen and (min-width: 1600px) {
  .terms--box__list li:not(:first-child) {
    margin-top: 12px;
  }
}

.isChrome .terms--box__list {
  padding-left: 0;
}

.chara {
  margin-top: 5vw;
  position: relative;
  z-index: 20;
}
@media only screen and (min-width: 767px) {
  .chara {
    margin-top: 2.5vw;
  }
}
@media only screen and (min-width: 1600px) {
  .chara {
    margin-top: 40px;
  }
}
.chara--box {
  width: 87.5vw;
  margin: 0 auto;
}
@media only screen and (min-width: 767px) {
  .chara--box {
    width: 68.75vw;
  }
}
@media only screen and (min-width: 1600px) {
  .chara--box {
    width: 1100px;
  }
}
.chara--box:not(:first-child) {
  margin-top: 8.75vw;
}
@media only screen and (min-width: 767px) {
  .chara--box:not(:first-child) {
    margin-top: 5vw;
  }
}
@media only screen and (min-width: 1600px) {
  .chara--box:not(:first-child) {
    margin-top: 80px;
  }
}
.chara--inner {
  width: 100%;
  margin-top: 2.5vw;
  background: rgba(0, 35, 31, 0.9);
  padding: 7.5vw 7.5vw 15vw;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 767px) {
  .chara--inner {
    padding: 3.125vw 3.125vw 5vw;
    margin-top: 1.25vw;
  }
}
@media only screen and (min-width: 1600px) {
  .chara--inner {
    padding: 50px 50px 80px;
    margin-top: 20px;
  }
}
.chara--item {
  width: 32.5vw;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .chara--item:nth-child(even) {
    margin-left: 7.5vw;
  }
  .chara--item:nth-child(n+3) {
    margin-top: 11.25vw;
  }
}
@media only screen and (min-width: 767px) {
  .chara--item:not(:nth-child(4n+1)) {
    margin-left: 3.125vw;
  }
  .chara--item:nth-child(n+5) {
    margin-top: 5.625vw;
  }
}
@media only screen and (min-width: 1600px) {
  .chara--item:not(:nth-child(4n+1)) {
    margin-left: 50px;
  }
  .chara--item:nth-child(n+5) {
    margin-top: 90px;
  }
}
@media only screen and (min-width: 767px) {
  .chara--item {
    width: 13.125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .chara--item {
    width: 210px;
  }
}
.chara--item__thumb {
  width: 100%;
  background-color: #fff;
  font-size: 0;
}
.chara--item__name {
  position: absolute;
  width: 100%;
  height: 13.75vw;
  bottom: -7.5vw;
  font-size: 3vw;
  padding: 1.25vw 1.875vw;
  line-height: 1.3;
  color: #fff;
  font-weight: bold;
  background-color: #00daa9;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 767px) {
  .chara--item__name {
    height: 5.125vw;
    font-size: 1vw;
    padding: 0.875vw 0.9375vw;
    bottom: -1.875vw;
  }
}
@media only screen and (min-width: 1600px) {
  .chara--item__name {
    height: 82px;
    font-size: 16px;
    padding: 14px 15px;
    bottom: -30px;
  }
}

.dl--pop {
  margin-top: 6.25vw;
  padding: 6.25vw;
  background: rgb(16, 16, 16);
  background: rgba(0, 35, 31, 0.9);
}
@media only screen and (min-width: 767px) {
  .dl--pop {
    margin-top: 3.125vw;
    padding: 3.125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .dl--pop {
    margin-top: 50px;
    padding: 50px;
  }
}
.dl--pop__wrapper {
  width: 75vw;
  margin: 0 auto;
}
@media only screen and (min-width: 767px) {
  .dl--pop__wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 61.875vw;
  }
}
@media only screen and (min-width: 1600px) {
  .dl--pop__wrapper {
    width: 990px;
  }
}
@media only screen and (max-width: 767px) {
  .dl--pop__item:not(:first-child) {
    margin-top: 5.625vw;
  }
}
@media only screen and (min-width: 767px) {
  .dl--pop__item {
    width: 29.375vw;
  }
  .dl--pop__item:nth-child(even) {
    margin-left: 3.125vw;
  }
  .dl--pop__item:nth-child(n+3) {
    margin-top: 3.125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .dl--pop__item {
    width: 470px;
  }
  .dl--pop__item:nth-child(even) {
    margin-left: 50px;
  }
  .dl--pop__item:nth-child(n+3) {
    margin-top: 50px;
  }
}
.dl--pop__head {
  width: 100%;
  height: 5vw;
  font-size: 3.5vw;
  font-weight: 900;
  background-color: #00daa9;
  justify-content: center;
  color: #fff;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 767px) {
  .dl--pop__head {
    height: 1.875vw;
    font-size: 1.25vw;
  }
}
@media only screen and (min-width: 1600px) {
  .dl--pop__head {
    height: 30px;
    font-size: 20px;
  }
}
.dl--pop__thumb {
  display: block;
  width: 100%;
  margin-top: 2.5vw;
  font-size: 0;
  position: relative;
}
@media only screen and (min-width: 767px) {
  .dl--pop__thumb {
    margin-top: 1.25vw;
    transition: 300ms;
  }
  .dl--pop__thumb:hover {
    opacity: 0.7;
  }
}
@media only screen and (min-width: 1600px) {
  .dl--pop__thumb {
    margin-top: 20px;
  }
}
.dl--pop__thumb::after {
  display: block;
  content: "";
  position: absolute;
  width: 10vw;
  height: 10vw;
  background-image: url(../img/common/download.png);
  background-size: contain;
  right: 3.75vw;
  bottom: 3.75vw;
}
@media only screen and (min-width: 767px) {
  .dl--pop__thumb::after {
    width: 3.125vw;
    height: 3.125vw;
    right: 1.25vw;
    bottom: 1.25vw;
  }
}
@media only screen and (min-width: 1600px) {
  .dl--pop__thumb::after {
    width: 50px;
    height: 50px;
    right: 20px;
    bottom: 20px;
  }
}
.dl--pop__inner {
  width: 75vw;
  margin: 7.5vw auto 0;
  color: #fff;
}
@media only screen and (min-width: 767px) {
  .dl--pop__inner {
    margin: 2.5vw auto 0;
  }
}
@media only screen and (min-width: 1600px) {
  .dl--pop__inner {
    margin: 40px auto 0;
  }
}
.dl--pop__text {
  font-size: 2.5vw;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.5;
}
@media only screen and (min-width: 767px) {
  .dl--pop__text {
    font-size: 0.75vw;
  }
}
@media only screen and (min-width: 1600px) {
  .dl--pop__text {
    font-size: 12px;
  }
}
.dl--pn {
  display: flex;
  margin: 7.5vw auto 0;
  width: 87.5vw;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 767px) {
  .dl--pn {
    margin-top: 3.75vw;
    width: 38.75vw;
  }
}
@media only screen and (min-width: 1600px) {
  .dl--pn {
    margin-top: 60px;
    width: 620px;
  }
}
.dl--pn__inner {
  display: flex;
}
.dl--pn__inner.dl--pn__left .dl--pn__arrow:before {
  transform: scale(-1, 1);
}
.dl--pn__center {
  width: 40.25vw;
  display: flex;
}
@media only screen and (min-width: 767px) {
  .dl--pn__center {
    width: 21.875vw;
  }
}
@media only screen and (min-width: 1600px) {
  .dl--pn__center {
    width: 350px;
  }
}
.dl--pn__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8.75vw;
  height: 8.75vw;
  border-radius: 12.5vw;
  background-color: rgba(29, 29, 29, 0.9);
  cursor: pointer;
  color: #fff;
  font-size: 3.5vw;
  font-weight: 900;
  padding-top: 3px;
  border: 1px solid rgba(29, 29, 29, 0.9);
}
.dl--pn__num.on, .dl--pn__num:hover {
  border: none;
  color: #000;
  background-color: rgba(252, 250, 241, 0.9);
}
.dl--pn__num:not(:first-child) {
  margin-left: 1.75vw;
}
@media only screen and (min-width: 767px) {
  .dl--pn__num {
    width: 3.125vw;
    height: 3.125vw;
    font-size: 1.25vw;
    font-weight: 900;
  }
  .dl--pn__num:not(:first-child) {
    margin-left: 0.625vw;
  }
}
@media only screen and (min-width: 1600px) {
  .dl--pn__num {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .dl--pn__num:not(:first-child) {
    margin-left: 10px;
  }
}
.dl--pn__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8.75vw;
  height: 8.75vw;
  border-radius: 12.5vw;
  background-color: #00daa9;
  cursor: pointer;
}
.dl--pn__arrow.off {
  background-color: #3e3e3e;
  pointer-events: none;
}
.dl--pn__arrow.off:before {
  background-image: url(../img/download/arrow_off.svg);
}
.dl--pn__arrow.off.double:before {
  background-image: url(../img/download/arrow_double_off.svg);
}
@media only screen and (min-width: 767px) {
  .dl--pn__arrow {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .dl--pn__arrow {
    width: 50px;
    height: 50px;
  }
}
.dl--pn__arrow:nth-child(2) {
  margin-left: 1.75vw;
}
@media only screen and (min-width: 767px) {
  .dl--pn__arrow:nth-child(2) {
    margin-left: 0.625vw;
  }
}
@media only screen and (min-width: 1600px) {
  .dl--pn__arrow:nth-child(2) {
    margin-left: 10px;
  }
}
.dl--pn__arrow:before {
  display: block;
  content: "";
  width: 5vw;
  height: 3.75vw;
  background-image: url(../img/download/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (min-width: 767px) {
  .dl--pn__arrow:before {
    width: 1.25vw;
    height: 1.25vw;
  }
}
@media only screen and (min-width: 1600px) {
  .dl--pn__arrow:before {
    width: 20px;
    height: 20px;
  }
}
.dl--pn__arrow.double:before {
  background-image: url(../img/download/arrow_double.svg);
}
.dl--box {
  background: rgba(0, 35, 31, 0.9);
  padding: 8.75vw 6.25vw;
}
@media only screen and (min-width: 767px) {
  .dl--box {
    padding: 4.375vw 10vw;
  }
}
@media only screen and (min-width: 1600px) {
  .dl--box {
    padding: 70px 160px;
  }
}
.dl--event {
  text-align: center;
}
.dl--event:not(:first-child) {
  padding-top: 7.5vw;
  margin-top: 7.5vw;
  border-top: 1px solid #a0a0a0;
}
@media only screen and (min-width: 767px) {
  .dl--event:not(:first-child) {
    padding-top: 3.75vw;
    margin-top: 3.75vw;
  }
}
@media only screen and (min-width: 1600px) {
  .dl--event:not(:first-child) {
    padding-top: 60px;
    margin-top: 60px;
  }
}
.dl--event__head {
  font-size: 3.75vw;
  font-weight: bold;
  color: #fff;
}
@media only screen and (min-width: 767px) {
  .dl--event__head {
    font-size: 1.625vw;
  }
}
@media only screen and (min-width: 1600px) {
  .dl--event__head {
    font-size: 26px;
  }
}
.dl--event__line {
  width: 3vw;
  height: 0.75vw;
  background-color: #00daa9;
  margin: 3.125vw auto 0;
}
@media only screen and (min-width: 767px) {
  .dl--event__line {
    width: 1.5vw;
    height: 0.375vw;
    margin-top: 1.5625vw;
  }
}
@media only screen and (min-width: 1600px) {
  .dl--event__line {
    width: 24px;
    height: 6px;
    margin-top: 25px;
  }
}
.dl--event__thumb {
  width: 75vw;
  margin: 5vw auto 0;
  font-size: 0;
}
@media only screen and (min-width: 767px) {
  .dl--event__thumb {
    width: 37.5vw;
    margin-top: 3.125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .dl--event__thumb {
    width: 600px;
    margin-top: 50px;
  }
}
.dl--event__thumb.t02 {
  width: 75vw;
}
@media only screen and (min-width: 767px) {
  .dl--event__thumb.t02 {
    width: 37.5vw;
  }
}
@media only screen and (min-width: 1600px) {
  .dl--event__thumb.t02 {
    width: 600px;
  }
}
.dl--event__btn {
  margin-top: 7.5vw;
}
@media only screen and (min-width: 767px) {
  .dl--event__btn {
    width: 48.125vw;
    margin-top: 5vw;
  }
}
@media only screen and (min-width: 1600px) {
  .dl--event__btn {
    width: 770px;
    margin-top: 80px;
  }
}
.dl--event__inner {
  margin-top: 6.25vw;
}
@media only screen and (min-width: 767px) {
  .dl--event__inner {
    margin-top: 2.5vw;
  }
}
@media only screen and (min-width: 1600px) {
  .dl--event__inner {
    margin-top: 40px;
  }
}
.dl--event__text {
  text-align: left;
  padding-left: 1em;
  text-indent: -1em;
  color: #fff;
  font-size: 2.5vw;
  line-height: 1.5;
}
@media only screen and (min-width: 767px) {
  .dl--event__text {
    font-size: 0.75vw;
  }
}
@media only screen and (min-width: 1600px) {
  .dl--event__text {
    font-size: 12px;
  }
}
.dl--btn {
  margin-top: 5vw;
}
@media only screen and (min-width: 767px) {
  .dl--btn {
    display: flex;
    justify-content: center;
    margin-top: 2.5vw;
  }
}
@media only screen and (min-width: 1600px) {
  .dl--btn {
    margin-top: 40px;
  }
}
.dl--btn > span {
  padding-top: 0.75vw;
}
@media only screen and (min-width: 767px) {
  .dl--btn > span {
    padding-top: 0.375vw;
  }
}
@media only screen and (min-width: 1600px) {
  .dl--btn > span {
    padding-top: 6px;
  }
}

.music {
  position: relative;
  z-index: 10;
  text-align: center;
}
.music--search {
  width: 87.5vw;
  height: 8.75vw;
  margin: 5vw auto 0;
  background-color: #fff;
  position: relative;
}
@media only screen and (min-width: 767px) {
  .music--search {
    width: 39.375vw;
    height: 3.125vw;
    margin-top: 1.875vw;
  }
}
@media only screen and (min-width: 1600px) {
  .music--search {
    width: 630px;
    height: 50px;
    margin-top: 30px;
  }
}
.music--search:before {
  position: absolute;
  display: block;
  content: "";
  width: 5vw;
  height: 5vw;
  background-image: url(../img/music/search.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 2.5vw;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 767px) {
  .music--search:before {
    width: 1.5625vw;
    height: 1.5625vw;
    left: 0.9375vw;
  }
}
@media only screen and (min-width: 1600px) {
  .music--search:before {
    width: 25px;
    height: 25px;
    left: 15px;
  }
}
.music--search__input {
  width: 100%;
  height: 100%;
  padding: 0 12.5vw;
  font-size: 3.75vw;
}
@media only screen and (min-width: 767px) {
  .music--search__input {
    padding: 0 7.5vw 0vw;
    font-size: 1.5vw;
  }
}
@media only screen and (min-width: 1600px) {
  .music--search__input {
    padding: 0 120px 0px;
    font-size: 24px;
  }
}
.music--search__input::placeholder {
  font-size: 2.5vw;
  position: relative;
  top: 0em;
}
@media only screen and (min-width: 767px) {
  .music--search__input::placeholder {
    font-size: 1vw;
    top: -0.2em;
  }
}
@media only screen and (min-width: 1600px) {
  .music--search__input::placeholder {
    font-size: 16px;
    top: -0.2em;
  }
}
.music--search__delete {
  position: absolute;
  display: block;
  width: 7.5vw;
  height: 100%;
  background-color: #00daa9;
  right: 0;
  top: 0;
  cursor: pointer;
}
@media only screen and (min-width: 767px) {
  .music--search__delete {
    width: 1.875vw;
  }
}
@media only screen and (min-width: 1600px) {
  .music--search__delete {
    width: 30px;
  }
}
.music--search__delete:before {
  position: absolute;
  display: block;
  content: "";
  width: 3.75vw;
  height: 3.75vw;
  background-image: url(../img/music/delete.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 767px) {
  .music--search__delete:before {
    width: 1.0625vw;
    height: 1.0625vw;
  }
}
@media only screen and (min-width: 1600px) {
  .music--search__delete:before {
    width: 17px;
    height: 17px;
  }
}
.music--list {
  width: 87.5vw;
  margin: 3.75vw auto 0;
}
@media only screen and (min-width: 767px) {
  .music--list {
    display: flex;
    flex-wrap: wrap;
    width: 68.75vw;
    margin-top: 2.5vw;
  }
}
@media only screen and (min-width: 1600px) {
  .music--list {
    width: 1100px;
    margin-top: 40px;
  }
}
.music--item {
  width: 87.5vw;
  padding: 6.25vw;
  background: rgba(0, 35, 31, 0.9);
}
@media only screen and (min-width: 767px) {
  .music--item {
    width: 33.75vw;
    padding: 3.4375vw;
  }
  .music--item:nth-child(even) {
    margin-left: 1.25vw;
  }
  .music--item:nth-child(n+3) {
    margin-top: 1.25vw;
  }
}
@media only screen and (min-width: 1600px) {
  .music--item {
    width: 540px;
    padding: 55px;
  }
  .music--item:nth-child(even) {
    margin-left: 20px;
  }
  .music--item:nth-child(n+3) {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .music--item:not(:first-child) {
    margin-top: 3.75vw;
  }
}
.music--item__wrapper {
  display: flex;
}
.music--item__thumb {
  font-size: 0;
  width: 35vw;
  position: relative;
}
.music--item__thumb.new:before {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "NEW";
  font-weight: bold;
  font-size: 2vw;
  background-color: #ec2036;
  color: #fff;
  width: 8.75vw;
  height: 3.5vw;
  padding-top: 0.25vw;
}
@media only screen and (min-width: 767px) {
  .music--item__thumb.new:before {
    font-size: 0.875vw;
    width: 3.125vw;
    height: 1.25vw;
    padding-top: 0.125vw;
  }
}
@media only screen and (min-width: 1400px) {
  .music--item__thumb.new:before {
    font-size: 14px;
    width: 50px;
    height: 20px;
    padding-top: 2px;
  }
}
@media only screen and (min-width: 767px) {
  .music--item__thumb {
    width: 12.5vw;
  }
}
@media only screen and (min-width: 1600px) {
  .music--item__thumb {
    width: 200px;
  }
}
.music--item__inner {
  text-align: left;
  width: 35vw;
  margin-left: 5vw;
  line-height: 1.5;
  color: #fff;
  overflow-wrap: break-word;
  font-weight: bold;
}
@media only screen and (min-width: 767px) {
  .music--item__inner {
    width: 12.5vw;
    margin-left: 1.875vw;
  }
}
@media only screen and (min-width: 1600px) {
  .music--item__inner {
    width: 200px;
    margin-left: 30px;
  }
}
.music--item__cat {
  font-size: 2.75vw;
  width: 100%;
  height: 3.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.625vw;
  font-weight: bold;
}
@media only screen and (min-width: 767px) {
  .music--item__cat {
    font-size: 1vw;
    height: 1.25vw;
    padding-top: 0.1875vw;
  }
}
@media only screen and (min-width: 1600px) {
  .music--item__cat {
    font-size: 16px;
    height: 20px;
    padding-top: 3px;
  }
}
.music--item__cat.pops_anime {
  background-color: #f02d6d;
}
.music--item__cat.niconico {
  background-color: #8c46ab;
}
.music--item__cat.toho {
  background-color: #3862b4;
}
.music--item__cat.variety {
  background-color: #458d68;
}
.music--item__cat.irodorimidori {
  background-color: #d15995;
}
.music--item__cat.gekimai {
  background-color: #ba9f39;
}
.music--item__cat.original {
  background-color: #bd2a1a;
}
.music--item__cat.we {
  background-color: #000000;
}
.music--item__cat.ultima {
  background-color: #ff173d;
}
.music--item__tit {
  margin-top: 3.75vw;
  font-size: 3.75vw;
}
@media only screen and (min-width: 767px) {
  .music--item__tit {
    margin-top: 1.25vw;
    font-size: 1.375vw;
  }
}
@media only screen and (min-width: 1600px) {
  .music--item__tit {
    margin-top: 20px;
    font-size: 22px;
  }
}
.music--item__head {
  margin-top: 3.75vw;
  font-size: 1.75vw;
}
@media only screen and (min-width: 767px) {
  .music--item__head {
    margin-top: 1.25vw;
    font-size: 0.625vw;
  }
}
@media only screen and (min-width: 1600px) {
  .music--item__head {
    margin-top: 20px;
    font-size: 10px;
  }
}
.music--item__artist {
  margin-top: 1.875vw;
  font-size: 2.5vw;
}
@media only screen and (min-width: 767px) {
  .music--item__artist {
    margin-top: 0.625vw;
    font-size: 0.875vw;
  }
}
@media only screen and (min-width: 1600px) {
  .music--item__artist {
    margin-top: 10px;
    font-size: 14px;
  }
}
.music--item__lv {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5vw;
}
@media only screen and (min-width: 767px) {
  .music--item__lv {
    margin-top: 1.25vw;
  }
}
@media only screen and (min-width: 1600px) {
  .music--item__lv {
    margin-top: 20px;
  }
}
.music--item__lv.end .music--item__num {
  background-color: #000000;
  width: 36.25vw;
}
@media only screen and (min-width: 767px) {
  .music--item__lv.end .music--item__num {
    width: 13.125vw;
    padding-top: 0.5vw;
  }
}
@media only screen and (min-width: 1600px) {
  .music--item__lv.end .music--item__num {
    width: 210px;
    padding-top: 8px;
  }
}
.music--item__lv.ultm .music--item__num {
  background-color: #ff173d;
  width: 100%;
}
.music--item__num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 17.5vw;
  height: 8vw;
  color: #fff;
  font-weight: bold;
  font-size: 4.5vw;
}
@media only screen and (min-width: 767px) {
  .music--item__num {
    width: 6.25vw;
    height: 2.875vw;
    font-size: 1.625vw;
    padding-top: 0.25vw;
  }
}
@media only screen and (min-width: 1600px) {
  .music--item__num {
    width: 100px;
    height: 46px;
    font-size: 26px;
    padding-top: 4px;
  }
}
.music--item__num:nth-child(1) {
  background-color: #22ad39;
}
.music--item__num:nth-child(2) {
  background-color: #f39800;
}
.music--item__num:nth-child(3) {
  background-color: #e5024f;
}
.music--item__num:nth-child(4) {
  background-color: #ae0cd2;
}
.music--item__copy {
  text-align: left;
  color: #fff;
  margin-top: 2.5vw;
  font-size: 2.25vw;
}
@media only screen and (min-width: 767px) {
  .music--item__copy {
    margin-top: 0.625vw;
    font-size: 0.625vw;
  }
}
@media only screen and (min-width: 1400px) {
  .music--item__copy {
    margin-top: 10px;
    font-size: 10px;
  }
}
.music--item__copy .logo {
  width: 12.5vw;
  display: inline-block;
  margin: 0 0.625vw -0.625vw;
  -webkit-backface-visibility: hidden;
}
@media only screen and (min-width: 767px) {
  .music--item__copy .logo {
    width: 6.3636363636vw;
    margin: 0 0.4545454545vw -0.4545454545vw;
  }
}
@media only screen and (min-width: 1100px) {
  .music--item__copy .logo {
    width: 70px;
    margin: 0 5px -5px;
  }
}
.music--copy {
  background: rgba(0, 35, 31, 0.9);
  color: #fff;
  text-align: left;
  font-size: 2.5vw;
  margin: 5vw auto 0;
  padding: 6.25vw;
  width: 87.5vw;
  line-height: 1.5;
}
@media only screen and (min-width: 767px) {
  .music--copy {
    font-size: 0.75vw;
    width: 68.75vw;
    margin-top: 2.5vw;
    padding: 3.4375vw;
    line-height: 1.6;
  }
}
@media only screen and (min-width: 1600px) {
  .music--copy {
    font-size: 12px;
    width: 1100px;
    margin-top: 40px;
    padding: 55px;
  }
}

.news--wrap {
  margin-top: 4vw;
}
@media only screen and (min-width: 767px) {
  .news--wrap {
    margin-top: 3.75vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--wrap {
    margin-top: 60px;
  }
}
.news--list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 0 6.25vw;
  width: 100%;
}
@media only screen and (min-width: 767px) {
  .news--list {
    padding: 0;
    width: 68.75vw;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 1600px) {
  .news--list {
    width: 1100px;
  }
}
.news--list__item {
  width: 100%;
  position: relative;
}
@media only screen and (min-width: 767px) {
  .news--list__item {
    width: 33.875vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--list__item {
    width: 542px;
  }
}
@media only screen and (max-width: 767px) {
  .news--list__item:not(:first-of-type) {
    margin-top: 4vw;
  }
}
@media only screen and (min-width: 767px) {
  .news--list__item:nth-of-type(n+3) {
    margin-top: 1vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--list__item:nth-of-type(n+3) {
    margin-top: 16px;
  }
}
.news--list__item.new:before {
  content: "NEW";
  display: block;
  background-color: #ec2036;
  color: #fff;
  font-family: "Hind", sans-serif;
  font-size: 1.875vw;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
  height: 3.5vw;
  width: 8.75vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0.25vw;
}
@media only screen and (min-width: 767px) {
  .news--list__item.new:before {
    font-size: 1vw;
    height: 1.8125vw;
    width: 4.375vw;
    padding-top: 0;
  }
}
@media only screen and (min-width: 1600px) {
  .news--list__item.new:before {
    font-size: 16px;
    height: 29px;
    width: 70px;
  }
}
.news--list__post {
  display: block;
  background: rgba(0, 35, 31, 0.9);
  padding: 5.625vw 6.25vw 6.25vw;
}
@media only screen and (min-width: 767px) {
  .news--list__post {
    padding: 3.5vw 3.5vw 3.5vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--list__post {
    padding: 56px 56px 56px;
  }
}
.news--date {
  color: #00daa9;
  font-size: 3.5vw;
  font-weight: 700;
}
@media only screen and (min-width: 767px) {
  .news--date {
    font-size: 1.25vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--date {
    font-size: 20px;
  }
}
.news--date__gb {
  font-size: 2.5vw;
  margin-left: 0.75vw;
}
@media only screen and (min-width: 767px) {
  .news--date__gb {
    font-size: 0.875vw;
    margin-left: 0.3125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--date__gb {
    font-size: 14px;
    margin-left: 5px;
  }
}
.news--title {
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.25vw;
  font-weight: 700;
  line-height: 1.7;
  margin-top: 1vw;
}
@media only screen and (min-width: 767px) {
  .news--title {
    font-size: 1.125vw;
    margin-top: 0.625vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--title {
    font-size: 18px;
    margin-top: 10px;
  }
}
.news--thumbnail {
  width: 100%;
  margin-top: 2.5vw;
}
@media only screen and (min-width: 767px) {
  .news--thumbnail {
    margin-top: 1vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--thumbnail {
    margin-top: 16px;
  }
}
.news--pn {
  display: flex;
  margin: 7.5vw auto 0;
  width: 87.5vw;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 767px) {
  .news--pn {
    margin-top: 2.3125vw;
    width: 38.75vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--pn {
    margin-top: 37px;
    width: 620px;
  }
}
.news--pn__inner {
  display: flex;
}
.news--pn__inner.news--pn__left .news--pn__arrow:before {
  transform: scale(-1, 1);
}
.news--pn__center {
  width: 40.25vw;
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 767px) {
  .news--pn__center {
    width: 21.875vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--pn__center {
    width: 350px;
  }
}
.news--pn__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8.75vw;
  height: 8.75vw;
  border-radius: 12.5vw;
  background-color: rgba(29, 29, 29, 0.9);
  cursor: pointer;
  color: #fff;
  font-size: 3.5vw;
  font-weight: 900;
  padding-top: 3px;
  border: 1px solid rgba(29, 29, 29, 0.9);
}
.news--pn__num.on, .news--pn__num:hover {
  border: none;
  color: #1d1d1d;
  background-color: rgba(252, 250, 241, 0.9);
}
.news--pn__num:not(:first-child) {
  margin-left: 1.75vw;
}
@media only screen and (min-width: 767px) {
  .news--pn__num {
    width: 3.125vw;
    height: 3.125vw;
    font-size: 1.25vw;
    font-weight: 900;
  }
  .news--pn__num:not(:first-child) {
    margin-left: 0.625vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--pn__num {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .news--pn__num:not(:first-child) {
    margin-left: 10px;
  }
}
.news--pn__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8.75vw;
  height: 8.75vw;
  border-radius: 12.5vw;
  background-color: #00daa9;
  cursor: pointer;
}
.news--pn__arrow.off {
  background-color: #3e3e3e;
  pointer-events: none;
}
.news--pn__arrow.off:before {
  background-image: url(../img/download/arrow_off.svg);
}
.news--pn__arrow.off.double:before {
  background-image: url(../img/download/arrow_double_off.svg);
}
@media only screen and (min-width: 767px) {
  .news--pn__arrow {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--pn__arrow {
    width: 50px;
    height: 50px;
  }
}
.news--pn__arrow:nth-child(2) {
  margin-left: 1.75vw;
}
@media only screen and (min-width: 767px) {
  .news--pn__arrow:nth-child(2) {
    margin-left: 0.625vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--pn__arrow:nth-child(2) {
    margin-left: 10px;
  }
}
.news--pn__arrow:before {
  display: block;
  content: "";
  width: 5vw;
  height: 3.75vw;
  background-image: url(../img/download/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (min-width: 767px) {
  .news--pn__arrow:before {
    width: 1.25vw;
    height: 1.25vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--pn__arrow:before {
    width: 20px;
    height: 20px;
  }
}
.news--pn__arrow.double:before {
  background-image: url(../img/download/arrow_double.svg);
}
.news--post {
  margin: 0 auto;
  width: 87.5vw;
}
@media only screen and (min-width: 767px) {
  .news--post {
    width: 68.75vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post {
    width: 1100px;
  }
}
.news--post__title {
  background-color: #00daa9;
  padding: 5.25vw 6.25vw 5.25vw;
}
@media only screen and (min-width: 767px) {
  .news--post__title {
    padding: 3vw 3.5vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__title {
    padding: 48px 56px;
  }
}
.news--post__date {
  color: #fff;
  font-size: 3.5vw;
  font-weight: 700;
}
@media only screen and (min-width: 767px) {
  .news--post__date {
    font-size: 1.25vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__date {
    font-size: 20px;
  }
}
.news--post__date--gb {
  font-size: 2.5vw;
  margin-left: 0.75vw;
}
@media only screen and (min-width: 767px) {
  .news--post__date--gb {
    font-size: 0.875vw;
    margin-left: 0.375vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__date--gb {
    font-size: 14px;
    margin-left: 6px;
  }
}
.news--post__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4vw;
  font-weight: 700;
}
@media only screen and (min-width: 767px) {
  .news--post__ttl {
    font-size: 1.625vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__ttl {
    font-size: 26px;
  }
}
.news--post__details {
  background: rgba(0, 35, 31, 0.9);
  padding: 5.625vw 6.25vw 6.25vw;
}
@media only screen and (min-width: 767px) {
  .news--post__details {
    padding: 3vw 3.5vw 3vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details {
    padding: 48px 56px 48px;
  }
}
.news--post__details--wrap {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.25vw;
  font-weight: 400;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap {
    font-size: 1.25vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap {
    font-size: 20px;
  }
}
.news--post__details--wrap p {
  font-size: 3.25vw;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap p {
    font-size: 1.25vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap p {
    font-size: 20px;
  }
}
.news--post__details--wrap p:not(:first-of-type) {
  margin-top: 3.75vw;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap p:not(:first-of-type) {
    margin-top: 1.875vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap p:not(:first-of-type) {
    margin-top: 30px;
  }
}
.news--post__details--wrap p.copyright {
  margin-top: 6.25vw;
  font-size: 2.5vw;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap p.copyright {
    font-size: 1.25vw;
    margin-top: 2.5vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap p.copyright {
    font-size: 20px;
    margin-top: 40px;
  }
}
.news--post__details--wrap strong {
  margin-left: 0;
}
.news--post__details--wrap del {
  color: #fff;
  opacity: 1;
}
.news--post__details--wrap h1 {
  background-color: #fcfaf1;
  box-shadow: none;
  color: #000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  line-height: 1.3;
  width: 100%;
  font-size: 3.75vw;
  margin: 7.5vw auto 0;
  padding: 1vw 1.25vw 1.75vw;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap h1 {
    font-size: 1.625vw;
    margin-top: 3.75vw;
    padding: 0.125vw 0.625vw 0.375vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap h1 {
    font-size: 26px;
    margin-top: 60px;
    padding: 2px 10px 6px;
  }
}
.news--post__details--wrap h1::before {
  content: "";
  display: block;
  background-color: #00daa9;
  height: 100%;
  width: 0.625vw;
  transform: none;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap h1::before {
    width: 0.3125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap h1::before {
    width: 5px;
  }
}
.news--post__details--wrap h1::after {
  content: "";
  display: block;
  background-color: #00daa9;
  height: 100%;
  width: 0.625vw;
  transform: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap h1::after {
    width: 0.3125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap h1::after {
    width: 5px;
  }
}
.news--post__details--wrap h2 {
  background-color: transparent;
  text-align: left;
  position: relative;
  font-size: 3.5vw;
  padding: 0 0 2vw 2.75vw;
  margin: 7.5vw auto 0;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap h2 {
    font-size: 1.625vw;
    margin-top: 3.75vw;
    padding: 0 0 1vw 1.125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap h2 {
    font-size: 26px;
    margin-top: 60px;
    padding: 0 0 16px 18px;
  }
}
.news--post__details--wrap h2::before {
  content: "";
  display: block;
  background-color: #00daa9;
  height: 100%;
  width: 0.625vw;
  transform: none;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap h2::before {
    width: 0.3125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap h2::before {
    width: 5px;
  }
}
.news--post__details--wrap h2::after {
  content: "";
  display: block;
  border-bottom: solid 0.25vw #ccc;
  margin-top: 1.75vw;
  position: absolute;
  width: 73.625vw;
  right: 0;
  bottom: 0;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap h2::after {
    border-bottom: solid 0.0625vw #ccc;
    margin-top: 0.625vw;
    width: 60.9375vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap h2::after {
    border-bottom: solid 1px #ccc;
    margin-top: 10px;
    width: 975px;
  }
}
.news--post__details--wrap h3 {
  background-color: transparent;
  text-align: left;
  position: relative;
  color: #fff;
  font-size: 3.5vw;
  padding: 0 0 0.25vw 2.75vw;
  line-height: 1.2;
  border: none;
  margin: 7.5vw auto 0;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap h3 {
    font-size: 1.625vw;
    margin-top: 3.75vw;
    padding: 0 1.125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap h3 {
    font-size: 26px;
    margin-top: 60px;
    padding: 0 18px;
  }
}
.news--post__details--wrap h3::before {
  content: "";
  display: block;
  background-color: #00daa9;
  height: 100%;
  width: 0.625vw;
  transform: none;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap h3::before {
    width: 0.3125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap h3::before {
    width: 5px;
  }
}
.news--post__details--wrap h4,
.news--post__details--wrap h5,
.news--post__details--wrap h6 {
  position: relative;
  font-size: 3.5vw;
  padding-left: 3.25vw;
  margin: 6.25vw auto 0;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap h4,
.news--post__details--wrap h5,
.news--post__details--wrap h6 {
    font-size: 1.5vw;
    margin-top: 3.125vw;
    padding: 0 0 0.375vw 1.375vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap h4,
.news--post__details--wrap h5,
.news--post__details--wrap h6 {
    font-size: 24px;
    margin-top: 50px;
    padding: 0 0 6px 22px;
  }
}
.news--post__details--wrap h4::before,
.news--post__details--wrap h5::before,
.news--post__details--wrap h6::before {
  content: "";
  display: block;
  background: #00daa9;
  border-radius: 100%;
  height: 0.75vw;
  width: 0.75vw;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap h4::before,
.news--post__details--wrap h5::before,
.news--post__details--wrap h6::before {
    height: 0.375vw;
    width: 0.375vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap h4::before,
.news--post__details--wrap h5::before,
.news--post__details--wrap h6::before {
    height: 6px;
    width: 6px;
  }
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap dl {
    margin: 1.375vw auto 0;
    padding: 0 1.375vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap dl {
    margin: 22px auto 0;
    padding: 0 22px;
  }
}
.news--post__details--wrap dt {
  font-size: 3.25vw;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap dt {
    font-size: 1.125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap dt {
    font-size: 18px;
  }
}
.news--post__details--wrap dd {
  font-size: 3.25vw;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap dd {
    font-size: 1.125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap dd {
    font-size: 18px;
  }
}
.news--post__details--wrap blockquote {
  color: #ffffff;
  border-left: solid 0.5vw #5c5c5c;
  padding: 0 2.75vw;
  line-height: 1.7;
  margin-top: 5vw;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap blockquote {
    border-left: solid 0.25vw #5c5c5c;
    font-size: 1.125vw;
    margin-top: 1.875vw;
    padding: 0 1.375vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap blockquote {
    border-left: solid 4px #5c5c5c;
    font-size: 18px;
    margin-top: 30px;
    padding: 0 22px;
  }
}
.news--post__details--wrap pre {
  background-color: #242424;
  color: #ffffff;
  border-radius: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.25vw;
  line-height: 1.7;
  margin-top: 5vw;
  padding: 2.5vw 3.5vw;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap pre {
    margin-top: 1.875vw;
    font-size: 1.125vw;
    padding: 1vw 1.75vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap pre {
    margin-top: 30px;
    font-size: 18px;
    padding: 16px 28px;
  }
}
.news--post__details--wrap code {
  background-color: #838383;
  color: #404040;
  border-radius: 0;
  color: #404040;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.25vw;
  line-height: 1.7;
  margin-top: 5vw;
  padding: 2.5vw 3.5vw;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap code {
    margin-top: 1.875vw;
    font-size: 1.125vw;
    padding: 1vw 1.75vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap code {
    margin-top: 30px;
    font-size: 18px;
    padding: 16px 28px;
  }
}
.news--post__details--wrap table {
  margin: 7.5vw auto 0;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap table {
    margin-top: 3.125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap table {
    margin-top: 50px;
  }
}
.news--post__details--wrap th {
  background-color: #00daa9;
  color: #000000;
  padding: 1vw 2vw 1.75vw;
  font-size: 3.25vw;
  border: none;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap th {
    font-size: 1.625vw;
    padding: 0.5vw 0.4375vw 0.875vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap th {
    font-size: 26px;
    padding: 8px 7px 14px;
  }
}
.news--post__details--wrap td {
  background-color: #ffffff;
  color: #000000;
  padding: 1.5vw 2vw 2vw;
  font-size: 3.25vw;
  border: solid 0.375vw #1c254b;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap td {
    font-size: 1.25vw;
    padding: 0.75vw 0.4375vw 0.9375vw;
    border: solid 0.125vw #1c254b;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap td {
    font-size: 20px;
    padding: 12px 7px 15px;
    border: solid 2px #1c254b;
  }
}
.news--post__details--wrap ol,
.news--post__details--wrap ul {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.25vw;
  margin-top: 6.25vw;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap ol,
.news--post__details--wrap ul {
    font-size: 1.25vw;
    margin-top: 2.5vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap ol,
.news--post__details--wrap ul {
    font-size: 20px;
    margin-top: 40px;
  }
}
.news--post__details--wrap ol {
  counter-reset: item;
  padding-left: 0;
}
.news--post__details--wrap ol li {
  text-indent: -1.3em;
  padding-left: 1.3em;
}
.news--post__details--wrap ol li::before {
  counter-increment: item;
  content: counter(item);
  padding-right: 0.5em;
  font-weight: 700;
  color: #00daa9;
}
.news--post__details--wrap ul li {
  text-indent: -1.3em;
  padding-left: 1.3em;
}
.news--post__details--wrap ul li::before {
  content: "・";
  display: inline-block;
  padding-right: 0.5em;
  color: #00daa9;
}
.news--post__details--wrap .redBig,
.news--post__details--wrap .greenBig,
.news--post__details--wrap .purpleBig,
.news--post__details--wrap .grayBig {
  font-size: 3.75vw;
  font-weight: 700;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap .redBig,
.news--post__details--wrap .greenBig,
.news--post__details--wrap .purpleBig,
.news--post__details--wrap .grayBig {
    font-size: 1.5vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap .redBig,
.news--post__details--wrap .greenBig,
.news--post__details--wrap .purpleBig,
.news--post__details--wrap .grayBig {
    font-size: 24px;
  }
}
.news--post__details--wrap .redBig,
.news--post__details--wrap .red {
  color: #ff173d;
}
.news--post__details--wrap .greenBig,
.news--post__details--wrap .green {
  color: #12a34d;
}
.news--post__details--wrap .purpleBig,
.news--post__details--wrap .purple {
  color: #d617ff;
}
.news--post__details--wrap .grayBig,
.news--post__details--wrap .gray {
  color: #777777;
}
.news--post__details--wrap .blue {
  color: #3baaff;
}
.news--post__details--wrap .pink {
  color: #ff398c;
}
.news--post__details--wrap .kon {
  color: #3d4ea5;
}
.news--post__details--wrap .orange {
  color: #ff8a00;
}
.news--post__details--wrap .kome {
  color: #ec2036;
  display: inline-block;
  font-size: 2.5vw;
  font-weight: 400;
  margin-top: 1.25vw;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap .kome {
    font-size: 1vw;
    margin-top: 0.625vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap .kome {
    font-size: 16px;
    margin-top: 10px;
  }
}
.news--post__details--wrap .fontL {
  font-size: 4.25vw;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap .fontL {
    font-size: 2vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap .fontL {
    font-size: 32px;
  }
}
.news--post__details--wrap .fontB {
  font-size: 4.25vw;
  font-weight: 700;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap .fontB {
    font-size: 2vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap .fontB {
    font-size: 32px;
  }
}
.news--post__details--wrap .fontM {
  font-size: 3.75vw;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap .fontM {
    font-size: 1.75vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap .fontM {
    font-size: 28px;
  }
}
.news--post__details--wrap .img-caption {
  padding: 0;
  text-align: left;
  font-size: 2.75vw;
  margin-top: 3vw;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap .img-caption {
    font-size: 0.875vw;
    margin-top: 0;
    line-height: 1.6;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap .img-caption {
    font-size: 14px;
  }
}
.news--post__details--wrap .blockImage {
  line-height: 0;
}
.news--post__details--wrap .jacketArea1,
.news--post__details--wrap .jacketArea2,
.news--post__details--wrap .jacketArea3 {
  margin-bottom: 0;
  margin-top: 7.5vw;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap .jacketArea1,
.news--post__details--wrap .jacketArea2,
.news--post__details--wrap .jacketArea3 {
    margin-top: 3.125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap .jacketArea1,
.news--post__details--wrap .jacketArea2,
.news--post__details--wrap .jacketArea3 {
    margin-top: 50px;
  }
}
.news--post__details--wrap .jacketArea1 .artist,
.news--post__details--wrap .jacketArea2 .artist,
.news--post__details--wrap .jacketArea3 .artist {
  font-size: 3vw;
  margin-top: 3.75vw;
  line-height: 1.8;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap .jacketArea1 .artist,
.news--post__details--wrap .jacketArea2 .artist,
.news--post__details--wrap .jacketArea3 .artist {
    font-size: 1.25vw;
    margin-top: 1.125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap .jacketArea1 .artist,
.news--post__details--wrap .jacketArea2 .artist,
.news--post__details--wrap .jacketArea3 .artist {
    font-size: 20px;
    margin-top: 18px;
  }
}
.news--post__details--wrap .jacketArea1 .artist strong,
.news--post__details--wrap .jacketArea2 .artist strong,
.news--post__details--wrap .jacketArea3 .artist strong {
  font-size: 3.5vw;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap .jacketArea1 .artist strong,
.news--post__details--wrap .jacketArea2 .artist strong,
.news--post__details--wrap .jacketArea3 .artist strong {
    font-size: 1.5vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap .jacketArea1 .artist strong,
.news--post__details--wrap .jacketArea2 .artist strong,
.news--post__details--wrap .jacketArea3 .artist strong {
    font-size: 24px;
  }
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap .jacketArea1 .img-caption {
    margin: 1.125vw auto 0;
    width: 18.75vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap .jacketArea1 .img-caption {
    margin: 18px auto 0;
    width: 300px;
  }
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap .jacketBox .img {
    max-width: 18.75vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap .jacketBox .img {
    max-width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .news--post__details--wrap .jacketArea2 .jacketBox {
    width: 100%;
  }
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap .jacketArea2 .jacketBox {
    padding: 0 2.375vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap .jacketArea2 .jacketBox {
    padding: 0 38px;
  }
}
@media only screen and (max-width: 767px) {
  .news--post__details--wrap .jacketArea2 .jacketBox:not(:first-of-type) {
    margin: 7.5vw auto 0;
  }
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap .jacketArea3 {
    justify-content: space-between;
  }
}
.news--post__details--wrap .jacketArea3 .jacketBox {
  padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .news--post__details--wrap .jacketArea3 .jacketBox {
    width: 100%;
  }
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap .jacketArea3 .jacketBox {
    padding: 0 0.5vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap .jacketArea3 .jacketBox {
    padding: 0 8px;
  }
}
@media only screen and (max-width: 767px) {
  .news--post__details--wrap .jacketArea3 .jacketBox:not(:first-of-type) {
    margin: 7.5vw auto 0;
  }
}
.news--post__details--wrap .imagebox2,
.news--post__details--wrap .imagebox3,
.news--post__details--wrap .imagebox4,
.news--post__details--wrap .imagebox5 {
  margin-top: 5vw;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap .imagebox2,
.news--post__details--wrap .imagebox3,
.news--post__details--wrap .imagebox4,
.news--post__details--wrap .imagebox5 {
    margin-top: 3.125vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap .imagebox2,
.news--post__details--wrap .imagebox3,
.news--post__details--wrap .imagebox4,
.news--post__details--wrap .imagebox5 {
    margin-top: 50px;
  }
}
.news--post__details--wrap .imagebox2 > *,
.news--post__details--wrap .imagebox3 > *,
.news--post__details--wrap .imagebox4 > *,
.news--post__details--wrap .imagebox5 > * {
  display: inline-block !important;
  margin: 0 !important;
  max-width: initial;
}
.news--post__details--wrap .imagebox2:after,
.news--post__details--wrap .imagebox3:after,
.news--post__details--wrap .imagebox4:after,
.news--post__details--wrap .imagebox5:after {
  display: none;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap .imagebox2 {
    justify-content: center;
  }
}
.news--post__details--wrap .imagebox2 > p {
  width: 35.5vw;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap .imagebox2 > p {
    width: 18.75vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap .imagebox2 > p {
    width: 300px;
  }
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap .imagebox2 > p:not(:first-of-type) {
    margin-left: 2.125vw !important;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap .imagebox2 > p:not(:first-of-type) {
    margin-left: 34px !important;
  }
}
.news--post__details--wrap .imagebox3 > p {
  width: 23.25vw;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap .imagebox3 > p {
    width: 18.75vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap .imagebox3 > p {
    width: 300px;
  }
}
.news--post__details--wrap .imagebox4 > p {
  width: 16.875vw;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap .imagebox4 > p {
    width: 13.625vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap .imagebox4 > p {
    width: 218px;
  }
}
.news--post__details--wrap .imagebox5 > p {
  width: 13vw;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap .imagebox5 > p {
    width: 10.5vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap .imagebox5 > p {
    width: 168px;
  }
}
.news--post__details--wrap .buttonLink {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00daa9;
  color: #fff;
  font-family: "Hind", sans-serif;
  font-size: 3.5vw;
  padding: 0;
  margin-top: 7.5vw;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap .buttonLink {
    font-size: 1.375vw;
    margin-top: 3.75vw;
    width: 25vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap .buttonLink {
    font-size: 22px;
    margin-top: 60px;
    width: 400px;
  }
}
.news--post__details--wrap .buttonLink:hover {
  background-color: #00daa9;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap .buttonLink:hover {
    background-color: #00daa9;
  }
}
.news--post__details--wrap .buttonLink > span {
  padding-top: 0.625vw;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap .buttonLink > span {
    padding-top: 0.3125vw;
  }
}
@media only screen and (min-width: 1400px) {
  .news--post__details--wrap .buttonLink > span {
    padding-top: 3px;
  }
}
.news--post__details--wrap .hrLine {
  border-top: solid 0.25vw #9b9b9b;
  margin-top: 7.5vw;
}
@media only screen and (min-width: 767px) {
  .news--post__details--wrap .hrLine {
    border-top: solid 0.125vw #9b9b9b;
    margin-top: 3.75vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--wrap .hrLine {
    border-top: solid 2px #9b9b9b;
    margin-top: 60px;
  }
}
@media only screen and (min-width: 767px) {
  .news--post__details--image {
    margin-top: 3.125vw !important;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__details--image {
    margin-top: 50px !important;
  }
}
.news--post__btn {
  color: #fff;
  margin-top: 10vw;
}
@media only screen and (min-width: 767px) {
  .news--post__btn {
    margin-top: 5vw;
  }
}
@media only screen and (min-width: 1600px) {
  .news--post__btn {
    margin-top: 80px;
  }
}
.news--post__btn span {
  padding-top: 0.625vw;
}
@media only screen and (min-width: 767px) {
  .news--post__btn span {
    padding-top: 0.3125vw;
  }
}
@media only screen and (min-width: 1400px) {
  .news--post__btn span {
    padding-top: 4px;
  }
}

@keyframes topLeft {
  0% {
    opacity: 0;
    transform: translate(-20%, 16%) rotate(-10deg);
  }
  14% {
    opacity: 1;
  }
  86% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(20%, -16%) rotate(0deg);
  }
}
@keyframes bottomRight {
  0% {
    opacity: 0;
    transform: translate(0, 20%) rotate(-30deg);
  }
  14% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-30%, 26%) rotate(1deg);
  }
}
@keyframes frameParticle {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }
  4% {
    opacity: 1;
  }
  96% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(100%, 100%);
  }
}
@keyframes arrow {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  10% {
    opacity: 1;
  }
  30% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20%);
  }
  60% {
    transform: translateY(0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}
@keyframes cornerText {
  0% {
    opacity: 0;
    transform: rotate(8.4deg) translate(-50%);
  }
  4% {
    opacity: 0.6;
  }
  96% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: rotate(8.4deg) translate(50%);
  }
}
@keyframes globe {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes globeCenter {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(0.6);
  }
  50% {
    transform: translate(-50%, -50%) rotate(180deg) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) scale(0.6);
  }
}
@keyframes verseBelt {
  0% {
    opacity: 0;
    transform: translateY(-40%);
  }
  4% {
    opacity: 1;
  }
  96% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(40%);
  }
}
/*========================================
*	common
========================================*/
::selection {
  background: #00231f;
  color: #00daa9;
}

html,
body {
  height: 100%;
  color: #000;
  background-color: #e7dbf3;
  font-family: "Hind", "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
}

*:focus {
  outline: 0;
}

* {
  box-sizing: border-box;
}

body {
  width: 100%;
}

a {
  color: #000;
  text-decoration: none;
}

h1,
h2,
h3 {
  line-height: 1;
}

ul,
li {
  list-style: none;
}

tr,
th,
td {
  font-weight: normal;
  text-align: left;
}

img {
  width: 100%;
}

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

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

input[type=text] {
  border: none;
  border-radius: 0;
  outline: none;
}
/*# sourceMappingURL=../maps/style.css.map */
