@charset "UTF-8";
/*----------------------------------------
  reset
----------------------------------------*/
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  font-size: inherit;
  line-height: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header, main, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

header, footer, article, section, aside, main, nav, menu, figure, figcaption {
  display: block;
}

span, small, strong, em, b, i {
  color: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

ul,
ol {
  list-style: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

input, select {
  vertical-align: middle;
}

input, textarea {
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

q::before,
q::after {
  display: none;
}

/*----------------------------------------
  base
----------------------------------------*/
body {
  font-family: YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  color: #000;
  background: #F5F5F5;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

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

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  font-family: inherit;
  font-weight: inherit;
}

video {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

/*----------------------------------------
	layout
----------------------------------------*/
.wrapper {
  overflow: hidden;
  max-width: 750px;
  margin-inline: auto;
}

.bg-black {
  background: #000;
}

.bg-dark-black {
  background: #111;
}

.bg-blue-gray {
  background: #76889D;
}

.bg-gray {
  background: #EBE9E3;
}

.bg-light-gray {
  background: #F0F2F6;
}

.bg-white {
  background: #fff;
}

.relative-block {
  position: relative;
  z-index: 0;
}

.absolute-block {
  position: absolute;
  z-index: -1;
  inset: 0;
}

/* contents
------------------------------------------------------ */
.kv {
  position: relative;
}

.kv__top {
  aspect-ratio: 393/536;
}

.kv__bottom {
  position: relative;
  aspect-ratio: 393/447;
}
.kv__bottom::after {
  position: absolute;
  inset: 0;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(#000), color-stop(36%, transparent));
  background: linear-gradient(#000 0%, transparent 36%);
  opacity: 0.7;
}

.kv__title {
  position: absolute;
  z-index: 1;
  top: 42.1159715158%;
}

.cta {
  position: relative;
}

.cta__button {
  position: absolute;
  bottom: 7.5901328273%;
  left: 50%;
  translate: -50% 0;
  width: 63.6132315522%;
}
.cta__button img {
  -webkit-animation: lr-s 2s infinite;
          animation: lr-s 2s infinite;
}

.features-1__mov-1 {
  aspect-ratio: 393/292;
}

.features-1__mov-2,
.features-1__mov-3,
.features-1__mov-4 {
  position: absolute;
  z-index: -1;
  left: 2.0356234097%;
  width: 96.1832061069%;
  aspect-ratio: 378/239;
}

.features-1__mov-2 {
  bottom: 12.4401913876%;
}

.features-1__mov-3 {
  bottom: 16.2471395881%;
}

.features-1__mov-4 {
  bottom: 9.3994778068%;
}

.features-3__mov {
  width: 95.6743002545%;
  margin: 0 auto;
  aspect-ratio: 376/418;
}

.features-4__mov-1,
.features-4__mov-2,
.features-4__mov-3 {
  position: absolute;
  left: 2.0356234097%;
  width: 96.1832061069%;
  aspect-ratio: 378/239;
}

.features-4__mov-1 {
  bottom: 8.1318681319%;
}

.features-4__mov-2 {
  bottom: 11.1650485437%;
}

.features-4__mov-3 {
  bottom: 6.3938618926%;
}

.features-5__mov-1 {
  width: 95.6743002545%;
  margin: 0 auto;
  aspect-ratio: 376/301;
}

.features-5__mov-2 {
  width: 95.6743002545%;
  margin: 0 auto;
  aspect-ratio: 376/418;
}

/* floating banner
------------------------------------------------------ */
.bnr__float {
  position: fixed;
  z-index: 10;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  max-width: 60px;
  width: 26.6%;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
@media (min-width: 750px) {
  .bnr__float {
    max-width: 100px;
  }
}

.bnr__float a {
  display: block;
}

/*----------------------------------------
	Animation
----------------------------------------*/
[data-scroll-anima] {
  display: block;
  opacity: 0;
}

.fadeIn {
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
          transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}
.fadeIn[data-scroll-anima=true] {
  opacity: 1;
}

.fadeUp {
  -webkit-transition-property: opacity, translate;
  transition-property: opacity, translate;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
          transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
  translate: 0 5%;
}
.fadeUp[data-scroll-anima=true] {
  opacity: 1;
  translate: 0;
}

@-webkit-keyframes lr-s {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  60% {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
  }
  70% {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  90% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes lr-s {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  60% {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
  }
  70% {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  90% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}/*# sourceMappingURL=style.css.map */