/* responsive */
/*@include mq() { }*/
/* Scss Document */
/*color*/
/*color*/
/* cubic-bezier */
.vh_max {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

.f_sans {
  font-family: "Noto Sans JP", sans-serif;
}

.f_en {
  font-family: "roboto", sans-serif;
}

.text {
  line-height: 2;
  letter-spacing: 0.075em;
}

.u_ba {
  position: relative;
}
.u_ba::before, .u_ba::after {
  content: "";
  position: absolute;
  display: block;
}

/*
.vertical {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
 */
/*
#luxy {
  overflow: hidden;
  &.scr_top_ani {
  }
}
*/
.wrapper {
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.wrapper.lazyloaded {
  opacity: 0;
}
.wrapper.fadein {
  opacity: 1;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.wrapper .page_contents {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.wrapper:not(.change_complete) .page_contents {
  opacity: 0;
}
.wrapper.change_complete .page_contents {
  opacity: 1;
}

.is-fade-in-up {
  -webkit-animation-name: fade-in-up-sm;
          animation-name: fade-in-up-sm;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  opacity: 0;
}

@-webkit-keyframes fade-in-up-sm {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
    opacity: 0;
  }
}

@keyframes fade-in-up-sm {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
    opacity: 0;
  }
}
@-webkit-keyframes logo-fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes logo-fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@-webkit-keyframes logo-fade-out {
  0% {
    display: block;
    opacity: 1;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
@keyframes logo-fade-out {
  0% {
    display: block;
    opacity: 1;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  position: relative;
  cursor: none;
}

.cursor,
.follower {
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.cursor {
  width: 8px;
  height: 8px;
  background-color: #209baa;
  z-index: 10001;
}

.follower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 70px;
  height: 70px;
  background-color: rgba(110, 212, 225, 0.5);
  background-size: 100%;
  z-index: 10000;
  -webkit-transition: -webkit-transform ease 0.2s;
  transition: -webkit-transform ease 0.2s;
  transition: transform ease 0.2s;
  transition: transform ease 0.2s, -webkit-transform ease 0.2s;
  text-align: center;
  opacity: 0.5;
  mix-blend-mode: multiply;
}
.follower span {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  -webkit-transform: scale(0);
          transform: scale(0);
}
.follower.is-active {
  -webkit-transform: scale(2);
          transform: scale(2);
  background-color: rgba(110, 212, 225, 0.8);
}

#data_scroll_container_wrap {
  overflow: hidden;
  min-height: 100vh;
}

@-webkit-keyframes circle-rotation {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes circle-rotation {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.slide-animation img {
  -webkit-animation: fadezoom 9s 0s linear;
          animation: fadezoom 9s 0s linear;
  display: inline-block;
}

@-webkit-keyframes fadezoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
  }
}

@keyframes fadezoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
  }
}
.wrapper {
  opacity: 0;
}

.loading {
  width: 35.75rem;
  height: 100%;
  position: fixed;
  opacity: 1;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  top: 0;
  left: 50%;
  z-index: 9999;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  overflow: hidden;
  /*
  &.fadeout {
    opacity: 0;
    pointer-events: none;
    &::after {
      opacity: 0;
    }
  }
  */
}
@media (min-width: 769px) {
  .loading {
    width: 29.5rem;
  }
}
.loading .loading_logo {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0) translateY(-0.6875rem);
          transform: translate3d(-50%, -50%, 0) translateY(-0.6875rem);
  display: inline-block;
}
.loading .loading_logo img {
  width: calc(100% - 1px);
}
.loading .progress_bar {
  width: 0;
  height: 0.125rem;
  min-height: 1px;
  background: #209baa;
  position: absolute;
  top: 50%;
  left: 0.9375rem;
  -webkit-transform: translate3d(0, -50%, 0) translateY(3.4375rem);
          transform: translate3d(0, -50%, 0) translateY(3.4375rem);
  display: inline-block;
}
@media (max-width: 414px) {
  .loading {
    width: 17.875rem;
  }
  .loading .loading_logo {
    -webkit-transform: translate3d(-50%, -50%, 0) translateY(-0.34375rem);
            transform: translate3d(-50%, -50%, 0) translateY(-0.34375rem);
  }
  .loading .progress_bar {
    -webkit-transform: translate3d(0, -50%, 0) translateY(2.1875rem);
            transform: translate3d(0, -50%, 0) translateY(2.1875rem);
    height: 1px;
    left: 0.3125rem;
  }
}

.bg_loader {
  opacity: 0;
  -webkit-transition: cubic-bezier(0.165, 0.84, 0.44, 1) 1s;
  transition: cubic-bezier(0.165, 0.84, 0.44, 1) 1s;
  pointer-events: none;
}
.bg_loader .loading_logo img {
  -webkit-transition: cubic-bezier(0.165, 0.84, 0.44, 1) 1s;
  transition: cubic-bezier(0.165, 0.84, 0.44, 1) 1s;
  -webkit-transform: translate3d(0, 50%, 0);
          transform: translate3d(0, 50%, 0);
  opacity: 0;
}
.bg_loader.load {
  opacity: 1;
}
.bg_loader.load .loading_logo img {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}
.load_complete + .bg_loader.load .loading {
  -webkit-transform: translate3d(-50%, 2.5rem, 0);
          transform: translate3d(-50%, 2.5rem, 0);
  opacity: 0;
}
.load_complete + .bg_loader.load .loading.now_loading {
  -webkit-transform: translate3d(-50%, 0rem, 0);
          transform: translate3d(-50%, 0rem, 0);
  opacity: 1;
}

.progress_bar {
  -webkit-transition: width 1s;
  transition: width 1s;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.progress_bar.reset {
  width: 0 !important;
  -webkit-transition: 0s;
  transition: 0s;
  -webkit-animation: width-reset 0s forwards;
          animation: width-reset 0s forwards;
}

@-webkit-keyframes width-reset {
  0% {
    width: 0 !important;
  }
  100% {
    width: 0 !important;
  }
}

@keyframes width-reset {
  0% {
    width: 0 !important;
  }
  100% {
    width: 0 !important;
  }
}
.page_header .logo span {
  width: 100%;
  height: 100%;
  display: block;
}
.page_header .logo span, .page_header .menu_bt {
  opacity: 0;
  -webkit-transform: translate3d(0, -100%, 0);
          transform: translate3d(0, -100%, 0);
  display: inline-block;
  will-change: transform;
}
@media (min-width: 415px) {
  .page_header .nav_list, .page_header .inquiry_nav span {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
    display: inline-block;
    will-change: transform;
  }
  .page_header .inquiry_nav span {
    height: 100%;
    display: block;
  }
  .load_complete .page_header .nav_list, .load_complete .page_header .inquiry_nav span {
    -webkit-animation: slide-up 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
            animation: slide-up 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  }
  .load_complete .page_header .nav_list {
    -webkit-animation-delay: 1.2s;
            animation-delay: 1.2s;
  }
  .load_complete .page_header .inquiry_nav span {
    -webkit-animation-delay: 1.4s;
            animation-delay: 1.4s;
  }
}
.load_complete .page_header .logo span, .load_complete .page_header .menu_bt {
  -webkit-animation: slide-up 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
          animation: slide-up 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.load_complete .page_header .logo span {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.load_complete .page_header .menu_bt {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

@-webkit-keyframes slide-up {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes slide-up {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.ani-title span {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-transform: scale(0) translate3d(0, 0, 0);
          transform: scale(0) translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: inline-block;
  opacity: 0;
}

.load_complete.change_complete .ani-title.ani span {
  -webkit-animation: textzoom 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
          animation: textzoom 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.load_complete.change_complete .ani-title.ani span:nth-child(1) {
  -webkit-animation-delay: 0.35s !important;
          animation-delay: 0.35s !important;
}
.load_complete.change_complete .ani-title.ani span:nth-child(2) {
  -webkit-animation-delay: 0.4s !important;
          animation-delay: 0.4s !important;
}
.load_complete.change_complete .ani-title.ani span:nth-child(3) {
  -webkit-animation-delay: 0.45s !important;
          animation-delay: 0.45s !important;
}
.load_complete.change_complete .ani-title.ani span:nth-child(4) {
  -webkit-animation-delay: 0.5s !important;
          animation-delay: 0.5s !important;
}
.load_complete.change_complete .ani-title.ani span:nth-child(5) {
  -webkit-animation-delay: 0.55s !important;
          animation-delay: 0.55s !important;
}
.load_complete.change_complete .ani-title.ani span:nth-child(6) {
  -webkit-animation-delay: 0.6s !important;
          animation-delay: 0.6s !important;
}
.load_complete.change_complete .ani-title.ani span:nth-child(7) {
  -webkit-animation-delay: 0.65s !important;
          animation-delay: 0.65s !important;
}
.load_complete.change_complete .ani-title.ani span:nth-child(8) {
  -webkit-animation-delay: 0.7s !important;
          animation-delay: 0.7s !important;
}
.load_complete.change_complete .ani-title.ani span:nth-child(9) {
  -webkit-animation-delay: 0.75s !important;
          animation-delay: 0.75s !important;
}
.load_complete.change_complete .ani-title.ani span:nth-child(10) {
  -webkit-animation-delay: 0.8s !important;
          animation-delay: 0.8s !important;
}
.load_complete.change_complete .ani-title.ani span:nth-child(11) {
  -webkit-animation-delay: 0.85s !important;
          animation-delay: 0.85s !important;
}
.load_complete.change_complete .ani-title.ani span:nth-child(12) {
  -webkit-animation-delay: 0.9s !important;
          animation-delay: 0.9s !important;
}
.load_complete.change_complete .ani-title.ani span:nth-child(13) {
  -webkit-animation-delay: 0.95s !important;
          animation-delay: 0.95s !important;
}
.load_complete.change_complete .ani-title.ani span:nth-child(14) {
  -webkit-animation-delay: 1s !important;
          animation-delay: 1s !important;
}
.load_complete.change_complete .ani-title.ani span:nth-child(15) {
  -webkit-animation-delay: 1.05s !important;
          animation-delay: 1.05s !important;
}
.load_complete.change_complete .ani-title.ani span:nth-child(16) {
  -webkit-animation-delay: 1.1s !important;
          animation-delay: 1.1s !important;
}
.load_complete.change_complete .ani-title.ani span:nth-child(17) {
  -webkit-animation-delay: 1.15s !important;
          animation-delay: 1.15s !important;
}
.load_complete.change_complete .ani-title.ani span:nth-child(18) {
  -webkit-animation-delay: 1.2s !important;
          animation-delay: 1.2s !important;
}
.load_complete.change_complete .ani-title.ani span:nth-child(19) {
  -webkit-animation-delay: 1.25s !important;
          animation-delay: 1.25s !important;
}
.load_complete.change_complete .ani-title.ani span:nth-child(20) {
  -webkit-animation-delay: 1.3s !important;
          animation-delay: 1.3s !important;
}
.load_complete.change_complete .ani-title.ani span:nth-child(21) {
  -webkit-animation-delay: 1.35s !important;
          animation-delay: 1.35s !important;
}
.load_complete.change_complete .ani-title.ani span:nth-child(22) {
  -webkit-animation-delay: 1.4s !important;
          animation-delay: 1.4s !important;
}
.load_complete.change_complete .ani-title.ani span:nth-child(23) {
  -webkit-animation-delay: 1.45s !important;
          animation-delay: 1.45s !important;
}
.load_complete.change_complete .ani-title.ani span:nth-child(24) {
  -webkit-animation-delay: 1.5s !important;
          animation-delay: 1.5s !important;
}
.load_complete.change_complete .ani-title.ani span:nth-child(25) {
  -webkit-animation-delay: 1.55s !important;
          animation-delay: 1.55s !important;
}
.load_complete.change_complete .ani-title.ani span:nth-child(26) {
  -webkit-animation-delay: 1.6s !important;
          animation-delay: 1.6s !important;
}
.load_complete.change_complete .ani-title.ani span:nth-child(27) {
  -webkit-animation-delay: 1.65s !important;
          animation-delay: 1.65s !important;
}
.load_complete.change_complete .ani-title.ani span:nth-child(28) {
  -webkit-animation-delay: 1.7s !important;
          animation-delay: 1.7s !important;
}
.load_complete.change_complete .ani-title.ani span:nth-child(29) {
  -webkit-animation-delay: 1.75s !important;
          animation-delay: 1.75s !important;
}
.load_complete.change_complete .ani-title.ani span:nth-child(30) {
  -webkit-animation-delay: 1.8s !important;
          animation-delay: 1.8s !important;
}

.img-block {
  width: 100%;
}

.slider li span {
  width: 0;
  height: 100%;
  display: block;
  overflow: hidden;
}
.load_complete.change_complete .slider li span {
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
  width: 100%;
}
.slider li span img {
  height: 100%;
}
@media (min-width: 415px) {
  .slider li span img {
    width: calc(80vw);
  }
}
@media screen and (orientation: portrait) {
  .slider li span img {
    width: calc(100vw - 16vw);
  }
}
@media (min-width: 1600px) {
  .slider li span img {
    width: calc(100vw - 300px);
  }
}

.rellax {
  -webkit-transition: -webkit-transform 0.1s;
  transition: -webkit-transform 0.1s;
  transition: transform 0.1s;
  transition: transform 0.1s, -webkit-transform 0.1s;
  will-change: transform;
}

.mainvisuial-sec .copy-area .textline > p span {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-transform: scale(0) translate3d(0, 0, 0);
          transform: scale(0) translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: inline-block;
  opacity: 0;
}
.load_complete.change_complete .mainvisuial-sec .copy-area .textline > p span {
  -webkit-animation: textzoom 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
          animation: textzoom 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.load_complete.change_complete .mainvisuial-sec .copy-area .textline > p span:nth-child(1) {
  -webkit-animation-delay: 2.15s !important;
          animation-delay: 2.15s !important;
}
.load_complete.change_complete .mainvisuial-sec .copy-area .textline > p span:nth-child(2) {
  -webkit-animation-delay: 2.2s !important;
          animation-delay: 2.2s !important;
}
.load_complete.change_complete .mainvisuial-sec .copy-area .textline > p span:nth-child(3) {
  -webkit-animation-delay: 2.25s !important;
          animation-delay: 2.25s !important;
}
.load_complete.change_complete .mainvisuial-sec .copy-area .textline > p span:nth-child(4) {
  -webkit-animation-delay: 2.3s !important;
          animation-delay: 2.3s !important;
}
.load_complete.change_complete .mainvisuial-sec .copy-area .textline > p span:nth-child(5) {
  -webkit-animation-delay: 2.35s !important;
          animation-delay: 2.35s !important;
}
.load_complete.change_complete .mainvisuial-sec .copy-area .textline > p span:nth-child(6) {
  -webkit-animation-delay: 2.4s !important;
          animation-delay: 2.4s !important;
}
.load_complete.change_complete .mainvisuial-sec .copy-area .textline > p span:nth-child(7) {
  -webkit-animation-delay: 2.45s !important;
          animation-delay: 2.45s !important;
}
.load_complete.change_complete .mainvisuial-sec .copy-area .textline > p span:nth-child(8) {
  -webkit-animation-delay: 2.5s !important;
          animation-delay: 2.5s !important;
}
.load_complete.change_complete .mainvisuial-sec .copy-area .textline > p span:nth-child(9) {
  -webkit-animation-delay: 2.55s !important;
          animation-delay: 2.55s !important;
}
.load_complete.change_complete .mainvisuial-sec .copy-area .textline > p span:nth-child(10) {
  -webkit-animation-delay: 2.6s !important;
          animation-delay: 2.6s !important;
}
.mainvisuial-sec .copy-area .textline > p::after {
  width: 0;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
  will-change: width;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.load_complete.change_complete .mainvisuial-sec .copy-area .textline > p::after {
  width: 100%;
}
.mainvisuial-sec .scroll-nav {
  position: absolute;
  bottom: 0;
  width: 6.25rem;
  height: 9.375rem;
  display: block;
  left: 3.75rem;
}
@media (max-width: 414px) {
  .mainvisuial-sec .scroll-nav {
    height: 5rem;
    left: -0.9375rem;
  }
}
@media screen and (orientation: landscape) {
  .mainvisuial-sec .scroll-nav {
    left: 1.25rem;
  }
}
.mainvisuial-sec .scroll-nav:after {
  content: "";
  width: 1px;
  background: #209baa;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -0.5px;
  height: 9.375rem;
}
@media (max-width: 414px) {
  .mainvisuial-sec .scroll-nav:after {
    height: 5rem;
  }
}
.mainvisuial-sec .scroll-nav > span {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  -webkit-animation: sdb 2s infinite;
          animation: sdb 2s infinite;
}
.mainvisuial-sec .scroll-nav > span:before {
  content: "";
  position: absolute;
  top: 1.5625rem;
  left: 50%;
  width: 0.625rem;
  height: 0.625rem;
  margin-left: -0.3125rem;
  background: #209baa;
  border-radius: 100%;
}
@media (max-width: 414px) {
  .mainvisuial-sec .scroll-nav > span:before {
    width: 0.375rem;
    height: 0.375rem;
    margin-left: -0.15625rem;
    top: 1.09375rem;
  }
}
.mainvisuial-sec .scroll-nav > span:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 3.75rem;
  height: 3.75rem;
  margin-left: -1.875rem;
  background: rgba(110, 212, 225, 0.5);
  border-radius: 100%;
}
@media (max-width: 414px) {
  .mainvisuial-sec .scroll-nav > span:after {
    width: 2.5rem;
    height: 2.5rem;
    margin-left: -1.21875rem;
  }
}

@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 6.25rem);
            transform: translate(0, 6.25rem);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 6.25rem);
            transform: translate(0, 6.25rem);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@media (max-width: 414px) {
  @-webkit-keyframes sdb {
    0% {
      -webkit-transform: translate(0, 0);
              transform: translate(0, 0);
      opacity: 0;
    }
    40% {
      opacity: 1;
    }
    80% {
      -webkit-transform: translate(0, 3.125rem);
              transform: translate(0, 3.125rem);
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes sdb {
    0% {
      -webkit-transform: translate(0, 0);
              transform: translate(0, 0);
      opacity: 0;
    }
    40% {
      opacity: 1;
    }
    80% {
      -webkit-transform: translate(0, 3.125rem);
              transform: translate(0, 3.125rem);
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
}
@-webkit-keyframes textzoom {
  0% {
    opacity: 0;
    -webkit-transform: scale(0) translate3d(0, 0, 0);
            transform: scale(0) translate3d(0, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
  }
}
@keyframes textzoom {
  0% {
    opacity: 0;
    -webkit-transform: scale(0) translate3d(0, 0, 0);
            transform: scale(0) translate3d(0, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
  }
}
.child-slideup .js-ani {
  opacity: 0;
  -webkit-transform: translate3d(0, 0.9375rem, 0);
          transform: translate3d(0, 0.9375rem, 0);
}
@media (min-width: 769px) {
  .child-slideup .js-ani {
    -webkit-transform: translate3d(0, 1.875rem, 0);
            transform: translate3d(0, 1.875rem, 0);
  }
}

.load_complete.change_complete .child-slideup .ani {
  -webkit-animation: child-slideup 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
          animation: child-slideup 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.load_complete.change_complete .child-slideup .ani:nth-child(1) {
  -webkit-animation-delay: 0.4s !important;
          animation-delay: 0.4s !important;
}
@media (min-width: 769px) {
  .load_complete.change_complete .child-slideup .ani:nth-child(1) {
    -webkit-animation-delay: 0.7s !important;
            animation-delay: 0.7s !important;
  }
}
.load_complete.change_complete .child-slideup .ani:nth-child(2) {
  -webkit-animation-delay: 0.6s !important;
          animation-delay: 0.6s !important;
}
@media (min-width: 769px) {
  .load_complete.change_complete .child-slideup .ani:nth-child(2) {
    -webkit-animation-delay: 0.9s !important;
            animation-delay: 0.9s !important;
  }
}
.load_complete.change_complete .child-slideup .ani:nth-child(3) {
  -webkit-animation-delay: 0.8s !important;
          animation-delay: 0.8s !important;
}
@media (min-width: 769px) {
  .load_complete.change_complete .child-slideup .ani:nth-child(3) {
    -webkit-animation-delay: 1.1s !important;
            animation-delay: 1.1s !important;
  }
}
.load_complete.change_complete .child-slideup .ani:nth-child(4) {
  -webkit-animation-delay: 1s !important;
          animation-delay: 1s !important;
}
@media (min-width: 769px) {
  .load_complete.change_complete .child-slideup .ani:nth-child(4) {
    -webkit-animation-delay: 1.3s !important;
            animation-delay: 1.3s !important;
  }
}
.load_complete.change_complete .child-slideup .ani:nth-child(5) {
  -webkit-animation-delay: 1.2s !important;
          animation-delay: 1.2s !important;
}
@media (min-width: 769px) {
  .load_complete.change_complete .child-slideup .ani:nth-child(5) {
    -webkit-animation-delay: 1.5s !important;
            animation-delay: 1.5s !important;
  }
}
.load_complete.change_complete .child-slideup .ani:nth-child(6) {
  -webkit-animation-delay: 1.4s !important;
          animation-delay: 1.4s !important;
}
@media (min-width: 769px) {
  .load_complete.change_complete .child-slideup .ani:nth-child(6) {
    -webkit-animation-delay: 1.7s !important;
            animation-delay: 1.7s !important;
  }
}
.load_complete.change_complete .child-slideup .ani:nth-child(7) {
  -webkit-animation-delay: 1.6s !important;
          animation-delay: 1.6s !important;
}
@media (min-width: 769px) {
  .load_complete.change_complete .child-slideup .ani:nth-child(7) {
    -webkit-animation-delay: 1.9s !important;
            animation-delay: 1.9s !important;
  }
}
.load_complete.change_complete .child-slideup .ani:nth-child(8) {
  -webkit-animation-delay: 1.8s !important;
          animation-delay: 1.8s !important;
}
@media (min-width: 769px) {
  .load_complete.change_complete .child-slideup .ani:nth-child(8) {
    -webkit-animation-delay: 2.1s !important;
            animation-delay: 2.1s !important;
  }
}
.load_complete.change_complete .child-slideup .ani:nth-child(9) {
  -webkit-animation-delay: 2s !important;
          animation-delay: 2s !important;
}
@media (min-width: 769px) {
  .load_complete.change_complete .child-slideup .ani:nth-child(9) {
    -webkit-animation-delay: 2.3s !important;
            animation-delay: 2.3s !important;
  }
}
.load_complete.change_complete .child-slideup .ani:nth-child(10) {
  -webkit-animation-delay: 2.2s !important;
          animation-delay: 2.2s !important;
}
@media (min-width: 769px) {
  .load_complete.change_complete .child-slideup .ani:nth-child(10) {
    -webkit-animation-delay: 2.5s !important;
            animation-delay: 2.5s !important;
  }
}
.load_complete.change_complete .child-slideup .ani.ani-title {
  -webkit-animation-delay: 0s !important;
          animation-delay: 0s !important;
}
@media (min-width: 769px) {
  .load_complete.change_complete .child-slideup .ani.ani-title {
    -webkit-animation-delay: 0s !important;
            animation-delay: 0s !important;
  }
}
.load_complete.change_complete .child-slideup .nodelay {
  -webkit-animation-delay: 0s !important;
          animation-delay: 0s !important;
}
.load_complete.change_complete .child-slideup .nodelay .ani {
  -webkit-animation-delay: 0s !important;
          animation-delay: 0s !important;
}
.load_complete.change_complete .child-slideup .nodelay .ani:nth-child(1) {
  -webkit-animation-delay: 0s !important;
          animation-delay: 0s !important;
}
.load_complete.change_complete .child-slideup .nodelay .ani:nth-child(2) {
  -webkit-animation-delay: 0s !important;
          animation-delay: 0s !important;
}
.load_complete.change_complete .child-slideup .nodelay .ani:nth-child(3) {
  -webkit-animation-delay: 0s !important;
          animation-delay: 0s !important;
}
.load_complete.change_complete .child-slideup .nodelay .ani:nth-child(4) {
  -webkit-animation-delay: 0s !important;
          animation-delay: 0s !important;
}
.load_complete.change_complete .child-slideup .nodelay .ani:nth-child(5) {
  -webkit-animation-delay: 0s !important;
          animation-delay: 0s !important;
}
.load_complete.change_complete .child-slideup .nodelay .ani:nth-child(6) {
  -webkit-animation-delay: 0s !important;
          animation-delay: 0s !important;
}
.load_complete.change_complete .child-slideup .nodelay .ani:nth-child(7) {
  -webkit-animation-delay: 0s !important;
          animation-delay: 0s !important;
}
.load_complete.change_complete .child-slideup .nodelay .ani:nth-child(8) {
  -webkit-animation-delay: 0s !important;
          animation-delay: 0s !important;
}
.load_complete.change_complete .child-slideup .nodelay .ani:nth-child(9) {
  -webkit-animation-delay: 0s !important;
          animation-delay: 0s !important;
}
.load_complete.change_complete .child-slideup .nodelay .ani:nth-child(10) {
  -webkit-animation-delay: 0s !important;
          animation-delay: 0s !important;
}

.load_complete.change_complete .child-slideup > *.shadow-box + .shadow-box {
  -webkit-animation-delay: 0.5s !important;
          animation-delay: 0.5s !important;
}

@-webkit-keyframes child-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 1.25rem, 0);
            transform: translate3d(0, 1.25rem, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes child-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 1.25rem, 0);
            transform: translate3d(0, 1.25rem, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fade-in-up-sm {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
    opacity: 0;
  }
}
.feature-sec > * .img-block, .feature-sec > * .txt-block {
  opacity: 0;
  -webkit-transform: translate3d(0, 6.25rem, 0);
          transform: translate3d(0, 6.25rem, 0);
  will-change: transform;
  -webkit-transition: 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.feature-sec > * .img-block {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.feature-sec > * .txt-block {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.load_complete.change_complete .feature-sec > *.ani .img-block, .load_complete.change_complete .feature-sec > *.ani .txt-block {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.common_style .feature-sec > * .img-block {
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}
.common_style .feature-sec > * .txt-block {
  -webkit-transition-delay: 1.05s;
          transition-delay: 1.05s;
}
.about-sec .img-block, .about-sec .txt-block {
  opacity: 0;
  -webkit-transform: translate3d(0, 6.25rem, 0);
          transform: translate3d(0, 6.25rem, 0);
  will-change: transform;
}
.about-sec .img-block {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
  -webkit-transition: 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.about-sec .txt-block {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
  -webkit-transition: 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.load_complete.change_complete .about-sec.ani .img-block, .load_complete.change_complete .about-sec.ani .txt-block {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.bannerset1 li, .bannerset1 + .bannerset2 li {
  opacity: 0;
  -webkit-transform: translate3d(0, 3.125rem, 0);
          transform: translate3d(0, 3.125rem, 0);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  will-change: transform;
  -webkit-transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.load_complete.change_complete .bannerset1.ani li, .load_complete.change_complete .bannerset1.ani + .bannerset2 li {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.bannerset1 li:nth-child(1) {
  -webkit-transition-delay: 0.1s !important;
          transition-delay: 0.1s !important;
}
.bannerset1 li:nth-child(2) {
  -webkit-transition-delay: 0.2s !important;
          transition-delay: 0.2s !important;
}
.bannerset1 li:nth-child(3) {
  -webkit-transition-delay: 0.3s !important;
          transition-delay: 0.3s !important;
}
.bannerset1 li:nth-child(4) {
  -webkit-transition-delay: 0.4s !important;
          transition-delay: 0.4s !important;
}
.bannerset1 + .bannerset2 li:nth-child(1) {
  -webkit-transition-delay: 0.4s !important;
          transition-delay: 0.4s !important;
}
.bannerset1 + .bannerset2 li:nth-child(2) {
  -webkit-transition-delay: 0.6s !important;
          transition-delay: 0.6s !important;
}
.bannerset1 + .bannerset2 li:nth-child(3) {
  -webkit-transition-delay: 0.8s !important;
          transition-delay: 0.8s !important;
}
.bannerset1 + .bannerset2 li:nth-child(4) {
  -webkit-transition-delay: 1s !important;
          transition-delay: 1s !important;
}

.information-box {
  opacity: 0;
  -webkit-transform: translate3d(0, 6.25rem, 0);
          transform: translate3d(0, 6.25rem, 0);
  will-change: transform;
  -webkit-transition: 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.load_complete.change_complete .information-box.ani {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.footer_btm {
  opacity: 0;
  -webkit-transform: translate3d(0, 6.25rem, 0);
          transform: translate3d(0, 6.25rem, 0);
  will-change: transform;
  -webkit-transition: 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.load_complete.change_complete .footer_btm.ani {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

@media (min-width: 769px) {
  .u-link {
    display: inline-block;
    position: relative;
    text-decoration: none;
    padding-bottom: 0.2rem;
  }
  .u-link:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #209baa;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
  }
  .u-link:hover:after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.mainvisuial-sec {
  margin-top: 0 !important;
  padding-top: 11vw;
}