.appear.up .item {
  transform: translateY(6px);
}

.appear.down .item {
  transform: translateY(-6px);
}

.appear.left .item {
  transform: translateX(40px);
}

.appear.right .item {
  transform: translateX(-40px);
}

.appear .item {
  transition: all 0.8s;
  opacity: 0;
}
.appear.inview .item {
  opacity: 1;
  transform: none;
}
.appear.inview .item:nth-child(1) {
  transition-delay: 0.1s;
}
.appear.inview .item:nth-child(2) {
  transition-delay: 0.2s;
}
.appear.inview .item:nth-child(3) {
  transition-delay: 0.3s;
}
.appear.inview .item:nth-child(4) {
  transition-delay: 0.4s;
}
.appear.inview .item:nth-child(5) {
  transition-delay: 0.5s;
}
.appear.inview .item:nth-child(6) {
  transition-delay: 0.6s;
}
.appear.inview .item:nth-child(7) {
  transition-delay: 0.7s;
}
.appear.inview .item:nth-child(8) {
  transition-delay: 0.8s;
}
.appear.inview .item:nth-child(9) {
  transition-delay: 0.9s;
}
.appear.inview .item:nth-child(10) {
  transition-delay: 1s;
}

.main-visual.inview .item {
  transition-delay: 0.3s !important;
}

html {
  -webkit-text-size-adjust: 100%;
  --fz12: calc(12 / 16 * 1rem);
  --fz14: calc(14 / 16 * 1rem);
  --fz16: 1rem;
  --fz20: calc(20 / 16 * 1rem);
  --fz24: calc(24 / 16 * 1rem);
  --fz28: calc(28 / 16 * 1rem);
  --fz32: calc(32 / 16 * 1rem);
  --fz36: calc(36 / 16 * 1rem);
  --fz48: calc(48 / 16 * 1rem);
  --fz56: calc(56 / 16 * 1rem);
}

img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

@media screen and (min-width: 895px) {
  .br {
    display: none;
  }
}

.flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 895px) {
  .flex {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

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

.transition {
  transition: 0.3s ease-out;
}

#video-area {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
#video-area #video {
  position: absolute;
  z-index: -1;
  top: 57%;
  left: 50%;
  transform: translate(-50%, -50%) scale(3.4);
  width: 177.77777778vh;
  height: 56.25vw;
  min-height: 100%;
  min-width: 100%;
}
@media screen and (min-width: 600px) {
  #video-area #video {
    transform: translate(-50%, -50%) scale(1.6);
  }
}
@media screen and (min-width: 895px) {
  #video-area #video {
    transform: translate(-50%, -50%) scale(1.3);
  }
}

.slideshow {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 1;
}
.slideshow__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slideshow .slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slideshow .slide {
  display: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.slideshow .slide.is-active {
  display: block;
}
.slideshow .slide.is-loaded {
  opacity: 1;
}
.slideshow .slide .caption {
  padding: 0 100px;
}
.slideshow .slide .image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  z-index: 1;
  background-size: cover;
  image-rendering: optimizeQuality;
}
.slideshow .slide .image-container::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.slideshow .slide .image {
  width: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.slideshow .slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slideshow .slide .title {
  margin: 100px auto 15px;
  max-width: 1000px;
  font: 300 50px/1.2 "Barlow Condensed", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.slideshow .slide .btn {
  margin: 15px 0 0;
  border-color: #fff;
}
.slideshow .slide .btn::before {
  background: #fff;
}
.slideshow .pagination {
  position: absolute;
  bottom: 35px;
  left: 0;
  width: 100%;
  height: 12px;
  cursor: default;
  z-index: 2;
  text-align: center;
}
.slideshow .pagination .item {
  display: inline-block;
  padding: 15px 5px;
  position: relative;
  width: 46px;
  height: 32px;
  cursor: pointer;
  text-indent: -999em;
  z-index: 1;
}
.slideshow .pagination .item + .page {
  margin-left: -2px;
}
.slideshow .pagination .item::before {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  left: 5px;
  width: 36px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.2s ease;
}
.slideshow .pagination .item::after {
  width: 0;
  background: #fff;
  z-index: 2;
  transition: width 0.2s ease;
}
.slideshow .pagination .item:hover::before, .slideshow .pagination .item.is-active::before {
  background-color: #fff;
}
.slideshow .arrows .arrow {
  margin: 0;
  padding: 20px;
  position: absolute;
  top: 50%;
  cursor: pointer;
  z-index: 3;
}
.slideshow .arrows .prev {
  left: 0;
}
@media screen and (min-width: 895px) {
  .slideshow .arrows .prev {
    left: 30px;
  }
}
.slideshow .arrows .prev:hover .svg {
  left: -10px;
}
.slideshow .arrows .next {
  right: 0;
}
@media screen and (min-width: 895px) {
  .slideshow .arrows .next {
    right: 30px;
  }
}
.slideshow .arrows .next:hover .svg {
  left: 10px;
}
.slideshow .arrows .svg {
  position: relative;
  left: 0;
  width: 14px;
  height: 26px;
  fill: #fff;
  transition: left 0.2s ease;
}

.c-header {
  border-bottom: 1px solid #001192;
}

.c-header__btnarea {
  display: none;
}
@media screen and (min-width: 895px) {
  .c-header__btnarea {
    display: flex;
    flex-direction: row;
    gap: 24px;
  }
}

@media screen and (min-width: 895px) {
  .btn-dl {
    min-width: 242px !important;
  }
}
@media screen and (min-width: 1440px) {
  .btn-dl {
    min-width: 312px !important;
  }
}

.btn-cf {
  border: 2px solid #001192 !important;
  background: #fff !important;
}
.btn-cf span {
  color: #001192 !important;
}

.fv {
  aspect-ratio: initial !important;
}

.fv__inner {
  height: initial !important;
  align-items: baseline;
  border-bottom: 1px solid #d6d6d6;
}

.fv__textarea {
  padding-bottom: 0 !important;
  border-bottom: none !important;
}
@media screen and (min-width: 895px) {
  .fv__textarea {
    padding-top: 140px;
  }
}
.fv__textarea .fv__label {
  width: 40% !important;
}
@media screen and (min-width: 895px) {
  .fv__textarea .fv__label {
    width: 30% !important;
  }
}

.fv__imgarea {
  background: #E4EFFF;
  border-left: 1px solid #001192;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 895px) {
  .fv__imgarea {
    padding-top: 140px !important;
  }
}
.fv__imgarea .fv__imgarea-head {
  padding: 0 8%;
}
.fv__imgarea .fv__imgarea-head__title {
  margin: 0;
  color: #001192;
  text-align: center;
  font-size: var(--fz28);
  font-weight: bold;
}
@media screen and (min-width: 600px) {
  .fv__imgarea .fv__imgarea-head__title {
    font-size: var(--fz48);
  }
}
@media screen and (min-width: 895px) {
  .fv__imgarea .fv__imgarea-head__title {
    font-size: var(--fz28);
  }
}
@media screen and (min-width: 1440px) {
  .fv__imgarea .fv__imgarea-head__title {
    font-size: var(--fz36);
  }
}
.fv__imgarea .fv__imgarea-head__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}
@media screen and (min-width: 895px) {
  .fv__imgarea .fv__imgarea-head__inner {
    flex-direction: row;
    justify-content: space-between;
    padding: 40px 0 0;
  }
}
.fv__imgarea .fv__imgarea-head__img {
  width: 80%;
  margin: 0 0 24px;
}
@media screen and (min-width: 895px) {
  .fv__imgarea .fv__imgarea-head__img {
    width: 45%;
  }
}
.fv__imgarea .fv__imgarea-head__txt li {
  font-size: var(--fz14);
  font-weight: bold;
  margin: 0 0 16px;
  position: relative;
}
.fv__imgarea .fv__imgarea-head__txt li::before {
  content: "";
  background: url(../img/check-gold.svg) no-repeat;
  background-position: 50%;
  background-size: contain;
  height: 24px;
  width: 24px;
  position: absolute;
  left: -32px;
  top: 50%;
  transform: translate(0, -50%);
}
@media screen and (min-width: 600px) {
  .fv__imgarea .fv__imgarea-head__txt li {
    font-size: var(--fz24);
    margin: 0 0 24px;
  }
  .fv__imgarea .fv__imgarea-head__txt li::before {
    height: 32px;
    width: 32px;
    left: -40px;
  }
}
@media screen and (min-width: 895px) {
  .fv__imgarea .fv__imgarea-head__txt li {
    font-size: var(--fz16);
    margin: 0 0 16px;
  }
  .fv__imgarea .fv__imgarea-head__txt li::before {
    height: 24px;
    width: 24px;
    left: -32px;
  }
}
.fv__imgarea .fv__imgarea-form {
  background: #001192;
  padding: 40px 7%;
}
.fv__imgarea .fv__imgarea-form .form-inner {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}
@media screen and (min-width: 600px) {
  .fv__imgarea .fv__imgarea-form .form-inner {
    padding: 40px;
  }
}

.c-cta__subtitle {
  border-bottom: 1px solid #fff;
  padding: 0 0 24px;
}

.cta-btnarea {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 895px) {
  .cta-btnarea {
    flex-direction: row;
    align-items: end;
  }
}
.cta-btnarea__head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cta-btnarea__img {
  width: 80%;
  margin: 0 auto 24px;
}
.cta-btnarea__img.mail-img {
  width: 60%;
}
@media screen and (min-width: 895px) {
  .cta-btnarea__img {
    width: 60%;
  }
  .cta-btnarea__img.mail-img {
    width: 45%;
  }
}
.cta-btnarea__txt {
  color: #fff;
  margin: 0 0 24px;
  text-align: center;
  line-height: 1.6;
}
@media screen and (min-width: 895px) {
  .cta-btnarea__txt {
    font-size: var(--fz20);
  }
  .cta-btnarea__txt.dl-txt {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .cta-btnarea__txt.dl-txt li {
    flex-basis: 45%;
    padding-left: 10%;
  }
  .cta-btnarea__txt.dl-txt li::before {
    left: calc(-32px + 22%);
  }
}
.cta-btnarea__txt li {
  font-size: var(--fz14);
  font-weight: bold;
  margin: 0 0 16px;
  position: relative;
  color: #fff;
  text-align: left;
}
.cta-btnarea__txt li::before {
  content: "";
  background: url(../img/check-gold.svg) no-repeat;
  background-position: 50%;
  background-size: contain;
  height: 24px;
  width: 24px;
  position: absolute;
  left: -32px;
  top: 50%;
  transform: translate(0, -50%);
}
@media screen and (min-width: 600px) {
  .cta-btnarea__txt li {
    font-size: var(--fz24);
    margin: 0 0 24px;
  }
  .cta-btnarea__txt li::before {
    height: 32px;
    width: 32px;
    left: -40px;
  }
}
@media screen and (min-width: 895px) {
  .cta-btnarea__txt li {
    font-size: var(--fz14);
    margin: 0 0 16px;
  }
  .cta-btnarea__txt li::before {
    height: 24px;
    width: 24px;
    left: -32px;
  }
}
@media screen and (min-width: 895px) {
  .cta-btnarea__btn .btn-cf {
    margin-top: 24px;
  }
}
.cta-btnarea__btn .btn-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cta-btnarea__btn .btn-text .btn-sub {
  display: flex;
  font-size: var(--fz16) !important;
  gap: 8px;
}
@media screen and (min-width: 600px) {
  .cta-btnarea__btn .btn-text .btn-sub {
    font-size: var(--fz24) !important;
  }
}
.cta-btnarea__btn .btn-text .btn-sub img {
  width: 12px;
}
@media screen and (min-width: 600px) {
  .cta-btnarea__btn .btn-text .btn-sub img {
    width: 20px;
  }
}
.cta-btnarea__btn .btn-text .btn-sub img.deco-right {
  transform: scaleY(-1);
}
.cta-btnarea__btn .btn-text .btn-name {
  display: block !important;
  position: relative !important;
  right: initial !important;
  top: initial !important;
  transform: initial !important;
  width: initial !important;
  font-size: var(--fz20) !important;
}
@media screen and (min-width: 600px) {
  .cta-btnarea__btn .btn-text .btn-name {
    font-size: var(--fz32) !important;
  }
}
.cta-btnarea__btn .btn-icon {
  width: 20px !important;
}
@media screen and (min-width: 600px) {
  .cta-btnarea__btn .btn-icon {
    width: 30px !important;
  }
}

@media screen and (min-width: 895px) {
  .contact-txt {
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */