@charset "UTF-8";
/******************/
/* FadeIn */
/******************/
body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*=============================================*/
/*  slide_txt                               */
/*=============================================*/
.slide_txt {
  overflow: hidden;
}
.slide_txt .txt_item {
  overflow: hidden;
}
.slide_txt .txt_item p {
  transform: translateY(2em);
}
.slide_txt.animated .txt_item p {
  animation: textanimation 1s forwards;
}
.slide_txt.animated .txt_item:nth-child(1) p {
  animation-delay: 0.2s;
}
.slide_txt.animated .txt_item:nth-child(2) p {
  animation-delay: 0.4s;
}
.slide_txt.animated .txt_item:nth-child(3) p {
  animation-delay: 0.6s;
}
.slide_txt.animated .txt_item:nth-child(4) p {
  animation-delay: 0.8s;
}
.slide_txt.animated .txt_item:nth-child(5) p {
  animation-delay: 1s;
}
.slide_txt.animated .txt_item:nth-child(6) p {
  animation-delay: 1.2s;
}
.slide_txt.animated .txt_item:nth-child(7) p {
  animation-delay: 1.4s;
}
.slide_txt.animated .txt_item:nth-child(8) p {
  animation-delay: 1.6s;
}
.slide_txt.animated .txt_item:nth-child(9) p {
  animation-delay: 1.8s;
}

.slide_txt.d_flex {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: flex-end;
}
.slide_txt.d_flex .txt_item {
  transform: translateY(2em);
}
.slide_txt.d_flex.tate .txt_item {
  transform: translateX(-2em);
}
.slide_txt.d_flex.animated.tate .txt_item {
  animation: textanimation_tate 1s forwards;
}
.slide_txt.d_flex.animated .txt_item {
  animation: textanimation_rotate 1s forwards;
}
.slide_txt.d_flex.animated .txt_item:nth-child(1) {
  animation-delay: 0.05s;
}
.slide_txt.d_flex.animated .txt_item:nth-child(2) {
  animation-delay: 0.1s;
}
.slide_txt.d_flex.animated .txt_item:nth-child(3) {
  animation-delay: 0.15s;
}
.slide_txt.d_flex.animated .txt_item:nth-child(4) {
  animation-delay: 0.2s;
}
.slide_txt.d_flex.animated .txt_item:nth-child(5) {
  animation-delay: 0.25s;
}
.slide_txt.d_flex.animated .txt_item:nth-child(6) {
  animation-delay: 0.3s;
}
.slide_txt.d_flex.animated .txt_item:nth-child(7) {
  animation-delay: 0.35s;
}
.slide_txt.d_flex.animated .txt_item:nth-child(8) {
  animation-delay: 0.4s;
}
.slide_txt.d_flex.animated .txt_item:nth-child(9) {
  animation-delay: 0.45s;
}
.slide_txt.d_flex.animated .txt_item:nth-child(10) {
  animation-delay: 0.5s;
}
.slide_txt.d_flex.animated .txt_item:nth-child(11) {
  animation-delay: 0.55s;
}
.slide_txt.d_flex.animated .txt_item:nth-child(12) {
  animation-delay: 0.6s;
}
.slide_txt.d_flex.animated .txt_item:nth-child(13) {
  animation-delay: 0.65s;
}
.slide_txt.d_flex.animated .txt_item:nth-child(14) {
  animation-delay: 0.7s;
}
.slide_txt.d_flex.animated .txt_item:nth-child(15) {
  animation-delay: 0.75s;
}

.slide_txt .d_flex {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: flex-end;
}
.slide_txt .d_flex .txt_item {
  transform: translateX(-2em);
}
.slide_txt.animated .d_flex .txt_item {
  animation: textanimation_tate 1s forwards;
}
.slide_txt.animated .d_flex:nth-child(1) .txt_item:nth-child(1) {
  animation-delay: 0.05s;
}
.slide_txt.animated .d_flex:nth-child(1) .txt_item:nth-child(2) {
  animation-delay: 0.1s;
}
.slide_txt.animated .d_flex:nth-child(1) .txt_item:nth-child(3) {
  animation-delay: 0.15s;
}
.slide_txt.animated .d_flex:nth-child(1) .txt_item:nth-child(4) {
  animation-delay: 0.2s;
}
.slide_txt.animated .d_flex:nth-child(1) .txt_item:nth-child(5) {
  animation-delay: 0.25s;
}
.slide_txt.animated .d_flex:nth-child(2) .txt_item:nth-child(1) {
  animation-delay: 0.3s;
}
.slide_txt.animated .d_flex:nth-child(2) .txt_item:nth-child(2) {
  animation-delay: 0.35s;
}
.slide_txt.animated .d_flex:nth-child(2) .txt_item:nth-child(3) {
  animation-delay: 0.4s;
}
.slide_txt.animated .d_flex:nth-child(2) .txt_item:nth-child(4) {
  animation-delay: 0.45s;
}
.slide_txt.animated .d_flex:nth-child(2) .txt_item:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes textanimation {
  0% {
    transform: translateY(2em);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes textanimation_rotate {
  0% {
    transform: translateY(2em) rotate(90deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
@keyframes textanimation_tate {
  0% {
    transform: translateX(-2em) rotate(90deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}
/*=============================================*/
/*  fade_txt                               */
/*=============================================*/
.fade_txt {
  position: relative;
  opacity: 0;
  -webkit-transition: all 0.9s;
  transition: all 0.9s;
  top: 40px;
}
.fade_txt.animated {
  top: 0;
  opacity: 1;
}

/*=============================================*/
/*  reserve_btn                               */
/*=============================================*/
/* 100vh以上スクロールしたときの動き */
.fix_btn_block .reserve_btn.active a:before {
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-play-state: running;
  animation-name: btn_bg;
  animation-timeline: auto;
}
.fix_btn_block .reserve_btn.active a span b {
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-delay: 0.5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-play-state: running;
  animation-name: btn_txt;
  animation-timeline: auto;
}

@keyframes btn_bg {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes btn_txt {
  0% {
    transform: translateY(33px);
  }
  100% {
    transform: translateY(0);
  }
}
/* TOPに戻ったときの動き */
.fix_btn_block .reserve_btn.none_active a:before {
  animation-name: btn_bg_none;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-fill-mode: forwards;
}
.fix_btn_block .reserve_btn.none_active span b {
  animation-name: btn_txt_none;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-fill-mode: forwards;
}

@keyframes btn_bg_none {
  0% {
    width: 100%;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes btn_txt_none {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(70px);
  }
}
/*=============================================*/
/*  fv                               */
/*=============================================*/
.fv_img {
  position: sticky;
  top: 0;
  transform-origin: top right;
  text-align: right;
  transition: all 0.3s ease;
  height: 100vh;
}
.fv_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 77% center;
}
.fv_img.hidden {
  opacity: 0;
  visibility: hidden;
}

.fv_img:after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.65);
  opacity: 0;
  transition: all 0.6s ease;
}
.fv_img.overlay:after {
  opacity: 1;
}

@keyframes fv_img_fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*=============================================*/
/*  wipe_img                                */
/*=============================================*/
.wipe_img {
  position: relative;
  overflow: hidden;
}
.wipe_img:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #1c1c1c;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 3;
}
.wipe_img img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.wipe_img.to_right:before {
  transform: translateX(-101%);
}
.wipe_img.to_right img {
  transform: translateX(-101%);
}
.wipe_img.to_left:before {
  transform: translateX(101%);
}
.wipe_img.to_left img {
  transform: translateX(101%);
}

.wipe_img.animated.to_right:before {
  animation: img_bg_animation_to_right 1.2s forwards;
}
.wipe_img.animated.to_right img {
  animation: img_animation_to_right 1.2s forwards;
}
.wipe_img.animated.to_left:before {
  animation: img_bg_animation_to_left 1.2s forwards;
}
.wipe_img.animated.to_left img {
  animation: img_animation_to_left 1.2s forwards;
}

.wipe_img.animated.wipe_img_01:before {
  animation-delay: 0s;
}
.wipe_img.animated.wipe_img_01 img {
  animation-delay: 0s;
}
.wipe_img.animated.wipe_img_02:before {
  animation-delay: 0.7s;
}
.wipe_img.animated.wipe_img_02 img {
  animation-delay: 0.7s;
}
.wipe_img.animated.wipe_img_03:before {
  animation-delay: 1.4s;
}
.wipe_img.animated.wipe_img_03 img {
  animation-delay: 1.4s;
}

@keyframes img_animation_to_right {
  0% {
    transform: translateX(-101%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes img_bg_animation_to_right {
  0% {
    transform: translateX(-101%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-101%);
  }
}
@keyframes img_animation_to_left {
  0% {
    transform: translateX(101%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes img_bg_animation_to_left {
  0% {
    transform: translateX(101%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(101%);
  }
}
/*=============================================*/
/*  fade_img                               */
/*=============================================*/
.fade_img {
  opacity: 0;
  transition: 4s;
}
.fade_img.animated {
  opacity: 1;
}

/*=============================================*/
/*media query    SmartPhone */
/*=============================================*/
@media screen and (max-width: 767px) {
  /*=============================================*/
  /*  wipe_img                                */
  /*=============================================*/
  .wipe_img.animated.wipe_img_01:before, .wipe_img.animated.wipe_img_02:before, .wipe_img.animated.wipe_img_03:before {
    animation-delay: 0s;
  }
  .wipe_img.animated.wipe_img_01 img, .wipe_img.animated.wipe_img_02 img, .wipe_img.animated.wipe_img_03 img {
    animation-delay: 0s;
  }
}/*# sourceMappingURL=animate.css.map */