@charset "utf-8";

/*
 * Reset
 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  vertical-align: middle;
}

/*
 * Common
 */

body {
  background-color: #000;
  color: #fff;
  font-family: 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'Yu Gothic', YuGothic, Verdana, Helvetica, 'ＭＳ Ｐゴシック', sans-serif;
  font-size: 18px;
}

a {
  color: #4aadc0;
}

a:hover {
  text-decoration: none;
}

h2 {
  font-size: 36px;
  font-weight: bold;
  color: #4aadc0;
  margin-bottom: 40px;
  text-align: left;
}

h2 > br {
  display: none;
}

@media screen and (min-width: 576px) {
  h2 {
    text-align: center;
  }

  h2 > br {
    display: block;
  }
}

h3 {
  font-size: 28px;
  font-weight: bold;
  color: #4aadc0;
  margin-bottom: 32px;
}

p {
  line-height: 1.7;
}

.button--normal {
  border: 4px solid #4aadc0;
  border-image: linear-gradient(to right, #f18091 0%, #4aadc0 100%);
  border-image-slice: 1;
  display: block;
  text-align: center;
  color: #4aadc0;
  font-weight: bold;
  font-size: 4.2vw;
  text-decoration: none;
  margin: 80px auto 0;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.button--normal:hover {
  background: #4aadc0;
  color: #000;
}

.button--normal::before {
  content: "";
}

.button--normal::after {
  content: "→";
  color: #000;
  display: inline-block;
  line-height: 32px;
  background: #4aadc0;
  border: 1px solid #000;
  height: 32px;
  width: 32px;
}

.button--small {
  border: 4px solid #c21500;
  border-image: linear-gradient(to right, #f18091 0%, #4aadc0 100%);
  border-image-slice: 1;
  display: block;
  text-align: center;
  color: #4aadc0;
  font-weight: bold;
  font-size: 3.8vw;
  padding: 16px 0 16px 16px;
  text-decoration: none;
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

@media screen and (min-width: 576px) {
  .button--normal {
    font-size: 20px;
  }
  .button--small {
    font-size: 16px;
  }
}

.button--small:hover {
  background: #4aadc0;
  color: #000;
}

.button--small::before {
  content: "";
}

.button--small::after {
  content: "→";
  color: #000;
  display: inline-block;
  line-height: 32px;
  background: #4aadc0;
  border: 1px solid #000;
  height: 32px;
  width: 32px;
  margin-left: 16px;
}

@media screen and (min-width: 576px) {
  .button--normal {
    font-size: 24px;
    padding: 24px 0;
  }

  .button--normal::after {
    line-height: 48px;
    height: 48px;
    width: 48px;
  }

  .button--small::after {
    line-height: 48px;
    height: 48px;
    width: 48px;
  }

  .button--small {
    font-size: 20px;
    padding: 0;
  }

  .button--small::after {
    margin-left: 0;
  }
}

/*
 * Container
 */

.container {
  max-width: 1200px;
  min-width: 320px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}

@media screen and (min-width: 576px) {
  .container {
    max-width: 576px;
  }
}

@media screen and (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media screen and (min-width: 992px) {
  .container {
    max-width: 992px;
  }
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media screen and (max-width: -1px) {
  .hidden-xs-down {
    display: none !important;
  }
}
.hidden-xs-up {
  display: none !important;
}

@media screen and (max-width: 575px) {
  .hidden-sm-down {
    display: none !important;
  }
}
@media screen and (min-width: 576px) {
  .hidden-sm-up {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .hidden-md-down {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .hidden-md-up {
    display: none !important;
  }
}
@media screen and (max-width: 991px) {
  .hidden-lg-down {
    display: none !important;
  }
}
@media screen and (min-width: 992px) {
  .hidden-lg-up {
    display: none !important;
  }
}
@media screen and (max-width: 1199px) {
  .hidden-xl-down {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .hidden-xl-up {
    display: none !important;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.col-offset-0 {
  margin-left: 0;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-offset-1 {
  margin-left: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-offset-2 {
  margin-left: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-offset-3 {
  margin-left: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-offset-4 {
  margin-left: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-offset-5 {
  margin-left: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-offset-6 {
  margin-left: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-offset-7 {
  margin-left: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-offset-8 {
  margin-left: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-offset-9 {
  margin-left: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-offset-10 {
  margin-left: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-offset-11 {
  margin-left: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.col-offset-12 {
  margin-left: 100%;
}

@media screen and (min-width: 576px) {
  .col-sm-offset-0 {
    margin-left: 0;
  }

  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }

  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }

  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }

  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media screen and (min-width: 768px) {
  .col-md-offset-0 {
    margin-left: 0;
  }

  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }

  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }

  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }

  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }

  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media screen and (min-width: 992px) {
  .col-lg-offset-0 {
    margin-left: 0;
  }

  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .col-xl-offset-0 {
    margin-left: 0;
  }

  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xl-offset-1 {
    margin-left: 8.3333333333%;
  }

  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-offset-2 {
    margin-left: 16.6666666667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-offset-3 {
    margin-left: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xl-offset-4 {
    margin-left: 33.3333333333%;
  }

  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xl-offset-5 {
    margin-left: 41.6666666667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-offset-6 {
    margin-left: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xl-offset-7 {
    margin-left: 58.3333333333%;
  }

  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xl-offset-8 {
    margin-left: 66.6666666667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-offset-9 {
    margin-left: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xl-offset-10 {
    margin-left: 83.3333333333%;
  }

  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xl-offset-11 {
    margin-left: 91.6666666667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .col-xl-offset-12 {
    margin-left: 100%;
  }
}

/*
 * Header
 */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  margin-top: 32px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  height: 28px;
}

.header-hamburger {
  position: relative;
  width: 40px;
  height: 28px;
  cursor: pointer;
  background: none;
  border: none;
}

.header-hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.btn-trigger, .header-hamburger span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}

.header-hamburger span:nth-of-type(1) {
  top: 0;
}

.header-hamburger span:nth-of-type(2) {
  top: 13px;
}

.header-hamburger span:nth-of-type(3) {
  bottom: 0;
}

.header-hamburger.is-active span:nth-of-type(1) {
  -webkit-transform: translateY(13px) rotate(-45deg);
  transform: translateY(13px) rotate(-45deg);
}

.header-hamburger.is-active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-menu .8s forwards;
  animation: active-menu .8s forwards;
}

@-webkit-keyframes active-menu {
  100% {
    height: 0;
  }
}

@keyframes active-menu {
  100% {
    height: 0;
  }
}

.header-hamburger.is-active span:nth-of-type(3) {
  -webkit-transform: translateY(-13px) rotate(45deg);
  transform: translateY(-13px) rotate(45deg);
}

.header-nav {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  position: absolute;
  top: 56px;
  right: 0;
  margin-right: 15px;
  background: #000;
  padding: 24px 32px;
  border-radius: 8px;
  background: #141414;
  box-shadow: 0 0 40px 16px rgba(209, 248, 255, .15);
}

.header-nav.is-open {
  opacity: 1;
  pointer-events: initial;
}

.header-nav.is-open .header-nav__list {
  display: flex;
  flex-direction: column;
}

.header-nav__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  font-size: 24px;
}

.header-nav__item {
  margin: 16px 0;
}

.header-nav__item a {
  color: #ccc;
  text-decoration: none;
}

.header-nav__item a:hover {
  color: #4aadc0;
}

@media screen and (min-width: 992px) {
  .header {
    padding-left: 0;
    padding-right: 0;
  }

  .header-hamburger {
    display: none;
  }

  .header-nav,
  .header-nav.is-open {
    display: block;
    position: relative;
    opacity: 1;
    pointer-events: initial;
    background: none;
    box-shadow: none;
    padding: 0;
    top: 0;
    right: 0;
  }

  .header-nav .header-nav__list,
  .header-nav.is-open .header-nav__list {
    flex-direction: row;
    font-size: 18px;
  }

  .header-nav__item {
    margin: 0 26px;
  }
}

/*
 * Keyvisual
 */

.keyvisual-bottom {
  position: relative;
}

.keyvisual-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, rgba(67, 175, 194, 0.5) 0%, rgb(245, 127, 144, 0.5) 100%);
  transform: skewY(-7deg);
  z-index: -1;
}

.keyvisual-heading {
  width: 100%;
  text-align: center;
  margin: 104px 0 0;
}

.keyvisual-heading span {
  font-size: 12vw;
  display: inline-block;
  background: linear-gradient(0deg, #43afc2 0%, #f57f90 100%);
  background: -webkit-linear-gradient(0deg, #43afc2 0%, #f57f90 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 16px 0 0;
}

.keyvisual-heading small {
  font-size: 7.5vw;
  color: #fff;
  display: block;
}

.keyvisual-releasedate {
  text-align: center;
  margin: 32px 0 0;
  color: #ccc;
  list-style: none;
}

.keyvisual-releasedate__item {
  margin-top: 16px;
}

.keyvisual-video {
  text-align: center;
  margin: 88px 0 0;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;

}

.keyvisual-video__inrer {
  z-index: 1;
}

.keyvisual-video small {
  display: flex;
  text-align: left;
  margin: 24px auto 0;
  color: #ccc;
  font-size: 14px;
  width: 336px;
}

.keyvisual-video small::before {
  content: "※";
  margin-right: 0.25rem;
}

.keyvisual-video video {
  border-radius: 20px;
  box-shadow: 0 16px 32px 16px rgba(209, 248, 255, .2);
  width: 336px;
  height: 307.2px;
}

.keyvisual-video::before {
  content: "";
  background: linear-gradient(90deg, #43afc2 0%, #9798aa 100%);
  background: -webkit-linear-gradient(0deg, #43afc2 0%, #9798aa 100%);
  height: 265.5px;
  width: 387px;
  -webkit-mask: url("../images/20.svg");
  mask: url("../images/20.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  margin-left: -340px;
  z-index: -1;
}

.keyvisual-video::after {
  content: "";
  background: linear-gradient(90deg, #9798aa 0%, #f57f90 100%);
  background: -webkit-linear-gradient(0deg, #9798aa 0%, #f57f90 100%);
  height: 259.5px;
  width: 387px;
  -webkit-mask: url("../images/22.svg");
  mask: url("../images/22.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  margin-left: 340px;
  z-index: -1;
}

.keyvisual-performance {
  list-style: none;
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
  padding-left: 15px;
  padding-right: 15px;
}

.keyvisual-performance__item {
  margin: 0;
}

.keyvisual-performance__number {
  font-size: 24px;
  /* font-weight: bold; */
  display: flex;
  align-items: baseline;
}

.keyvisual-performance__number::before {
  content: "";
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iNjMiIHZpZXdCb3g9IjAgMCAyNCA2MyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgMTIuMTY0OEwxMiAxTTEyIDFMMjMgMTIuMTY0OE0xMiAxVjYzIiBzdHJva2U9IndoaXRlIiBzdHJva2Utb3BhY2l0eT0iMC44Ii8+Cjwvc3ZnPgo=);
  display: inline-block;
  width: 24px;
  height: 22px;
  margin-right: 0.2rem;
}

.keyvisual-performance__number::after {
  content: "%";
  font-size: 16px;
  margin-left: 0.2rem;
}

.keyvisual-performanc__name {
  color: #ccc;
  font-size: 16px;
}

@media screen and (min-width: 450px) {
  .keyvisual-heading span {
    font-size: 48px;
  }

  .keyvisual-heading small {
    font-size: 28px;
  }

  .keyvisual-video video {
    width: 420px;
    height: 384px;
  }

  .keyvisual-video small {
    width: 420px;
  }

  .keyvisual-video::before {
    margin-left: -360px;
  }

  .keyvisual-video::after {
    margin-left: 360px;
  }
}

@media screen and (min-width: 576px) {
  .keyvisual-video video {
    width: 560px;
    height: 521px;
  }

  .keyvisual-video small {
    width: 560px;
  }

  .keyvisual-video::before {
    margin-left: -440px;
  }

  .keyvisual-video::after {
    margin-left: 440px;
  }

  .keyvisual-performance__number::before {
    width: 24px;
    height: 36px;
    margin-right: 0.5rem;
  }

  .keyvisual-performance__number {
    font-size: 40px;
  }

  .keyvisual-performance__number::after {
    font-size: 24px;
    margin-left: 0.5rem;
  }

  .keyvisual-performanc__name {
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) {
  .keyvisual-heading span {
    font-size: 56px;
  }

  .keyvisual-heading span br {
    display: none;
  }

  .keyvisual-heading small {
    font-size: 32px;
  }

  .keyvisual-video video {
    width: 700px;
    height: 640px;
  }

  .keyvisual-video small {
    width: 700px;
  }

  .keyvisual-video::before {
    margin-left: -510px;
  }

  .keyvisual-video::after {
    margin-left: 510px;
  }

  .keyvisual-performance {
    justify-content: center;
    margin-top: 88px;
  }

  .keyvisual-performance__item {
    margin: 0 64px;
  }
}

@media screen and (min-width: 992px) {
  .keyvisual-video::before {
    margin-left: -510px;
  }

  .keyvisual-video::after {
    margin-left: 510px;
  }

  .keyvisual-performance__number::before {
    width: 24px;
    height: 52px;
  }

  .keyvisual-performance__number {
    font-size: 60px;
  }

  .keyvisual-performance__number::after {
    font-size: 32px;
  }
}

@media screen and (min-width: 1200px) {
  .keyvisual-video::before {
    margin-left: -510px;
  }

  .keyvisual-video::after {
    margin-left: 510px;
  }

  .keyvisual-performance__number::before {
    width: 24px;
    height: 63px;
  }

  .keyvisual-performance__item {
    margin: 0 88px;
  }

  .keyvisual-performance__number {
    font-size: 72px;
  }

  .keyvisual-performance__number::after {
    font-size: 52px;
  }
}

/*
 * Speedup
 */

.speedup {
  margin-top: 180px;
  display: flex;
  justify-content: space-between;
}

.speedup h2 {
  text-align: left;
}

.speedup-right {
  margin-top: 40px;
}

.speedup-right img {
  width: 100%;
  height: auto;
}

.speedup-notes {
  color: #ccc;
  font-size: 14px;
  margin-top: 24px;
  counter-reset: item 0;
}

.speedup-notes__item {
  display: flex;
  margin-top: 8px;
}

.speedup-notes__item::before {
  counter-increment: item;
  content: "※"counter(item);
  margin-right: 0.25rem;
}

.migration {
  background: #141414;
  box-shadow: 0 0 40px 16px rgba(209, 248, 255, .15);
  border-radius: 20px;
  padding: 32px;
  margin-top: 60px;
}

.migration h3 {
  text-align: left;
}

@media screen and (min-width: 768px) {
  .speedup {
    margin-top: 260px;
  }

  .speedup-right {
    margin-top: 0;
  }

  .migration {
    padding: 48px;
    margin-top: 120px;
  }

  .migration h3 {
    text-align: center;
  }
}

/*
 * Pricing
 */

.pricing {
  margin-top: 180px;
}

.pricing h2 small {
  color: #ccc;
  font-size: 18px;
  display: block;
  font-weight: normal;
  margin-bottom: 24px;
}

.right-scroll {
  background: rgba(255, 255, 255, .15);
  padding: 16px 24px;
  border-radius: 16px;
  display: inline-block;
  text-align: center;
  position: relative;
}

.right-scroll img {
  margin-left: 0;
  animation: arrowmove 1s ease-out infinite;
}

@keyframes arrowmove {
  0% { margin-left: 0; }
  33% { margin-left: 8px; }
  66% { margin-left: 0; }
  100% { margin-left: -8px; }
}

.right-scroll span {
  display: block;
  margin-top: 16px;
  font-size: 14px;
}

@media screen and (min-width: 1200px) {
  .right-scroll {
    display: none;
  }
}

.pricing-table {
  margin-top: 48px;
  padding-top: 20px;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  overflow-x: scroll;
  white-space: nowrap;
  display: block;
}

.pricing-table tr > th:nth-child(3),
.pricing-table tr > td:nth-child(3) {
  background: #191919;
}

.pricing-table th,
.pricing-table td {
  padding: 20px 16px;
  border-bottom: 1px solid #808080;
}

.pricing-table td > * + span,
.pricing-table td > * + strong {
  margin-top: 16px;
}

.pricing-table td > span,
.pricing-table td > strong {
  display: block;
}

.pricing-table td {
  text-align: center;
}

.plan-names td {
  text-align: left;
}

.pricing-table th {
  font-weight: normal;
  text-align: left;
}

.plan-names th,
.plan-names td {
  border-bottom: 2px solid #808080;
  padding-top: 48px;
}

.plan-names th:nth-child(3) {
  position: relative;
}

.plan-names th:nth-child(3)::before {
  content: "おすすめ";
  font-weight: bold;
  text-align: center;
  position: absolute;
  background: linear-gradient(90deg, #f57f90 0%, #43afc2 100%);
  background: -webkit-linear-gradient(0deg, #f57f90 0%, #43afc2 100%);
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 32px;
  border-radius: 32px;
}

.plan-name {
  text-align: center;
  font-weight: bold;
}

.plan-price {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
}

.plan-type {
  font-size: 14px;
  display: inline-block;
  margin-right: 0.5rem;
  font-weight: normal;
}

.plan-yen {
  font-size: 32px;
}

.notes {
  color: #ccc;
  font-size: 14px;
  list-style: none;
  margin-top: 24px;
}

.notes__item {
  display: flex;
  margin-top: 8px;
}

.notes__item::before {
  content: "※";
  margin-right: 0.25rem;
}

@media screen and (min-width: 768px) {
  .pricing {
    margin-top: 260px;
  }
}

@media screen and (min-width: 1200px) {
  .pricing-table {
    display: table;
  }
}

/*
 * Coupon
 */

.coupon {
  margin-top: 180px;
}

.coupon-table {
  margin-top: 48px;
  padding-top: 20px;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.coupon-table th {
  font-weight: bold;
  text-align: left;
  white-space: nowrap;
}

.coupon-table th,
.coupon-table td {
  padding: 20px 16px;
  border-top: 1px solid #808080;
  border-bottom: 1px solid #808080;
}

.coupon-table ul {
  padding-left: 1.5rem;
}

.coupon-table li {
  margin-top: 8px;
}

.coupon-table li:first-child {
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .coupon {
    margin-top: 260px;
  }
}

/*
 * CTA
 */

.cta {
  margin-top: 40px;
  text-align: center;
}

.cta .button--normal {
  color: #333;
  border: 4px solid #333;
  background: #555;
  pointer-events: none;
  margin-top: 32px;
}

.cta .button--normal::after {
  color: #333;
  border: 1px solid #333;
  background: #555;
}

input[type=checkbox] {
  display: none;
}

.cta-checkbox {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 34px;
  position: relative;
  user-select: none;
  width: auto;
}

.cta-checkbox::before {
  background: #fff;
  border: 1px solid #e2e2e2;
  content: '';
  display: block;
  height: 16px;
  left: 5px;
  margin: -10px 0 0;
  position: absolute;
  top: 50%;
  width: 16px;
}

.cta-checkbox::after {
  border-right: 3px solid #4aadc0;
  border-bottom: 3px solid #4aadc0;
  content: '';
  display: block;
  height: 9px;
  left: 10px;
  margin-top: -9px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 5px;
}

input[type=checkbox]:checked + .cta-checkbox::after {
  opacity: 1;
}

input[type=checkbox]:checked ~ .button--normal {
  border: 4px solid #4aadc0;
  border-image: linear-gradient(to right, #f18091 0%, #4aadc0 100%);
  border-image-slice: 1;
  background: none;
  color: #4aadc0;
  pointer-events: auto;
}

input[type=checkbox]:checked ~ .button--normal::after {
  color: #000;
  background: #4aadc0;
  border: 1px solid #000;
}

input[type=checkbox]:checked ~ .button--normal:hover {
  background: #4aadc0;
  color: #000;
}

/*
 * Faq
 */

.faq {
  margin-top: 180px;
}

.faq h2 {
  text-align: center;
}

.faq-list + .faq-list {
  margin: 80px 0 0;
}

.faq-list dt {
  font-size: 24px;
  font-weight: bold;
  display: flex;
}

.faq-list dt::before {
  content: "Q.";
  background: linear-gradient(0deg, #f57f90 0%, #43afc2 100%);
  background: -webkit-linear-gradient(0deg, #f57f90 0%, #43afc2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 36px;
  margin-right: 0.5rem;
  margin-top: -0.6rem;
}

.faq-list dd {
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .faq {
    margin-top: 260px;
  }
}

/*
 * Footer
 */

.footer {
  display: flex;
  justify-content: center;
  flex-direction: column-reverse;
  align-items: center;
  border-top: 1px solid #808080;
  padding: 32px 0;
  margin-top: 160px;
  color: #ccc;
}

.footer-copyright {
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .footer {
    justify-content: space-between;
    flex-direction: row;
  }

  .footer-copyright {
    margin-top: 0;
  }
}