#renewal_container {
  width: 100%;
  position: relative;
  z-index: 10;
}

#renewal_container .main_section {
  width: 100%;
  position: relative;
  height: 100vh;
  overflow: hidden;
}

#renewal_container .main_section::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
}

#renewal_container .main_section video {
  min-width: 100%;
  min-height: 100%;
  display: block;
  pointer-events: none;
  position: relative;
  z-index: -1;
}

#renewal_container .main_section .main_text_area {
  width: 100%;
  position: relative;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#renewal_container .main_section .main_text_area h2 {
  font-size: 5.2rem;
  line-height: 6.8rem;
  font-weight: 800;
  color: #fff;
  word-break: keep-all;
}

#renewal_container .main_section .main_text_area h2 span {
  display: block;
}

#renewal_container .main_section .main_text_area h2 span:nth-of-type(1) {
  -webkit-animation: main-text-fade-in-1 2s 1;
          animation: main-text-fade-in-1 2s 1;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}

@-webkit-keyframes main-text-fade-in-1 {
  0% {
    -webkit-transform: translateY(-4rem);
            transform: translateY(-4rem);
    opacity: 0;
  }
}

@keyframes main-text-fade-in-1 {
  0% {
    -webkit-transform: translateY(-4rem);
            transform: translateY(-4rem);
    opacity: 0;
  }
}

#renewal_container .main_section .main_text_area h2 span:nth-of-type(2) {
  -webkit-animation: main-text-fade-in-2 2s 1;
          animation: main-text-fade-in-2 2s 1;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

@-webkit-keyframes main-text-fade-in-2 {
  0% {
    -webkit-transform: translateY(-6rem);
            transform: translateY(-6rem);
    opacity: 0;
  }
}

@keyframes main-text-fade-in-2 {
  0% {
    -webkit-transform: translateY(-6rem);
            transform: translateY(-6rem);
    opacity: 0;
  }
}

#renewal_container .main_section .scroll_down_ani {
  width: 3.4rem;
  height: 5.5rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3.2rem;
  margin: auto;
  pointer-events: none;
}

#renewal_container .main_section .mouse {
  width: .3rem;
  padding: 1rem 1.5rem;
  height: 3.5rem;
  border: .2rem solid #fff;
  border-radius: 2.5rem;
  opacity: 0.75;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

#renewal_container .main_section .scroller {
  width: .3rem;
  height: 1rem;
  border-radius: 25%;
  background-color: #fff;
  -webkit-animation-name: scroll;
          animation-name: scroll;
  -webkit-animation-duration: 2.2s;
          animation-duration: 2.2s;
  -webkit-animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
          animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(1.5rem);
            transform: translateY(1.5rem);
    opacity: 0;
  }
}

@keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(1.5rem);
            transform: translateY(1.5rem);
    opacity: 0;
  }
}

#renewal_container .section {
  width: 100%;
  position: relative;
  padding: 16rem 2.5%;
}

#renewal_container .section:nth-of-type(2n) {
  background-color: #fff;
  background-color: rgba(26, 100, 255, 0.05);
}

#renewal_container .section:nth-of-type(2n) .layout .flex_zone .text_area {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

#renewal_container .section:nth-of-type(2n) .layout .flex_zone .image_area {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

#renewal_container .section:nth-of-type(2n-1) {
  background-color: #fff;
}

#renewal_container .section:nth-of-type(2n-1) .layout .flex_zone .text_area {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

#renewal_container .section:nth-of-type(2n-1) .layout .flex_zone .image_area {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

#renewal_container .section .layout {
  width: 100%;
  position: relative;
  max-width: 132rem;
  margin: 0 auto;
}

#renewal_container .section .layout .flex_zone {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6rem;
}

#renewal_container .section .layout .flex_zone > div {
  width: 50%;
  position: relative;
}

#renewal_container .section .layout .flex_zone .text_area {
  word-break: keep-all;
}

#renewal_container .section .layout .flex_zone .text_area .keyword_box {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: .6rem 1.2rem;
  margin-bottom: 1.2rem;
}

#renewal_container .section .layout .flex_zone .text_area .keyword_box .keyword {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 300;
  color: #fff;
  background-color: var(--assist-color);
  padding: .6rem 1.6rem;
  border-radius: 7.2rem;
}

#renewal_container .section .layout .flex_zone .text_area h2 {
  font-size: 3.6rem;
}

#renewal_container .section .layout .flex_zone .text_area h2 span {
  display: block;
}

#renewal_container .section .layout .flex_zone .text_area h2 span:nth-of-type(1) {
  font-weight: 400;
}

#renewal_container .section .layout .flex_zone .text_area h2 span:nth-of-type(2) {
  font-weight: 700;
}

#renewal_container .section .layout .flex_zone .text_area .text_box {
  width: 100%;
  position: relative;
  margin-top: 2.4rem;
}

#renewal_container .section .layout .flex_zone .text_area .text_box p {
  font-size: 1.6rem;
  font-weight: 400;
}

#renewal_container .section .layout .flex_zone .text_area .button_box {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 3.6rem;
}

#renewal_container .section .layout .flex_zone .text_area .button_box a {
  display: inline-block;
  position: relative;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 1.2rem 3.6rem;
  border-radius: 7.2rem;
  border: 1px solid transparent;
  background-color: transparent;
}

#renewal_container .section .layout .flex_zone .text_area .button_box a::after {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  display: inline-block;
  margin-left: 1rem;
  font-size: 1.8rem;
  font-weight: 300;
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

#renewal_container .section .layout .flex_zone .text_area .button_box a.border_button {
  border-color: var(--assist-color);
  color: var(--assist-color);
}

#renewal_container .section .layout .flex_zone .text_area .button_box a.color_button {
  background-color: var(--assist-color);
  color: #fff;
}

#renewal_container .section .layout .flex_zone .text_area .button_box a:hover::after {
  -webkit-transform: translateX(0.2rem);
          transform: translateX(0.2rem);
}

#renewal_container .section .layout .flex_zone .image_area img,
#renewal_container .section .layout .flex_zone .image_area video {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
  margin: 0 auto;
}

#renewal_container .section .layout .flex_zone .image_area .video_box {
  width: 100%;
  position: relative;
}

#renewal_container .section .layout .flex_zone .image_area .video_box img {
  opacity: .75;
}

#renewal_container .section .layout .flex_zone .image_area .video_box .play_button {
  width: 5.8rem;
  height: 5.8rem;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 100%;
  color: #fff;
  font-size: 2.8rem;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}

#renewal_container .section .layout .flex_zone .image_area .video_box .play_button:hover {
  background-color: rgba(26, 100, 255, 0.8);
}

#renewal_container .section .layout .flex_zone .image_area .image_ani_box {
  width: 100%;
  position: relative;
}

#renewal_container .section .layout .flex_zone .image_area .image_ani_box img {
  pointer-events: none;
}

#renewal_container .section .layout .flex_zone .image_area .image_ani_box img.animation_image {
  position: absolute;
  left: 0;
  top: 0;
}

#renewal_container .section .layout .flex_zone .image_area .image_ani_box img.animation_image.sending_ani_1 {
  -webkit-animation: airplane 4s infinite;
          animation: airplane 4s infinite;
}

@-webkit-keyframes airplane {
  0% {
    left: 0rem;
    top: 0;
  }
  50% {
    left: 2rem;
    top: 2rem;
  }
  100% {
    left: 0rem;
    top: 0rem;
  }
}

@keyframes airplane {
  0% {
    left: 0rem;
    top: 0;
  }
  50% {
    left: 2rem;
    top: 2rem;
  }
  100% {
    left: 0rem;
    top: 0rem;
  }
}

#renewal_container .section .layout .flex_zone .image_area .image_ani_box img.animation_image.car_ani_1 {
  -webkit-animation: car_ani_1 2s infinite;
          animation: car_ani_1 2s infinite;
}

@-webkit-keyframes car_ani_1 {
  0% {
    top: -.5rem;
  }
  50% {
    top: .5rem;
  }
  100% {
    top: -.5rem;
  }
}

@keyframes car_ani_1 {
  0% {
    top: -.5rem;
  }
  50% {
    top: .5rem;
  }
  100% {
    top: -.5rem;
  }
}

#renewal_container .section.section_name_transport.show .image_ani_box .car_ani.car_ani_2 {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

#renewal_container .section .image_ani_box .car_ani.car_ani_2 {
  -webkit-transform: translateX(16rem);
          transform: translateX(16rem);
  opacity: 0;
  -webkit-transition: all 2s;
  transition: all 2s;
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.video_modal .content_top_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.video_modal .content_top_area a {
  display: inline-block;
}

.video_modal .content_top_area a span {
  font-size: 3.2rem;
  font-weight: 300;
  color: #fff;
}

/* Scroll Event */
.back-to-position {
  opacity: 0;
}

.show .back-to-position {
  opacity: 1;
}

.back-to-position.tsd-07 {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.show .back-to-position.tsd-07 {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.to-top-80 {
  -webkit-transform: translateY(-80px);
          transform: translateY(-80px);
}

.show .to-top-80 {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.to-right-100 {
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
}

.to-bottom-100 {
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

.show .to-bottom-100 {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.show .to-right-100 {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.section.revers .to-right-100 {
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
}

.show.section.revers .to-right-100 {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.show .back-to-position.delay-00 {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.show .back-to-position.delay-02 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.show .back-to-position.delay-04 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.show .back-to-position.delay-06 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.show .back-to-position.delay-08 {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.show .back-to-position.delay-10 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

/* Scroll Event End */
.banner {
  width: 95%;
  max-width: 132rem;
  position: relative;
  padding: 6rem;
  background-color: rgba(26, 100, 255, 0.8);
  -webkit-box-shadow: 2px 6px 10px rgba(26, 100, 255, 0.2);
          box-shadow: 2px 6px 10px rgba(26, 100, 255, 0.2);
  margin: 8rem auto;
  border-radius: 1rem;
  color: #fff;
  z-index: 2;
  word-break: keep-all;
}

.banner h2 {
  font-size: 3.2rem;
  margin-bottom: 2rem;
}

.banner h2 span {
  display: block;
}

.banner h2 span:nth-of-type(1) {
  font-weight: 400;
}

.banner h2 span:nth-of-type(2) {
  font-weight: 700;
}

.banner a {
  display: inline-block;
  position: relative;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 1.2rem 3.6rem;
  border-radius: 7.2rem;
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.banner a::after {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  display: inline-block;
  margin-left: 1rem;
  font-size: 1.8rem;
  font-weight: 300;
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

.banner a:hover {
  background-color: #fff;
  color: #1a64ff;
}

.banner a:hover::after {
  -webkit-transform: translateX(0.2rem);
          transform: translateX(0.2rem);
}

.banner img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

@media (max-width: 1199px) {
  #header.active .wrap .nav a {
    color: #fff !important;
  }
  #header.active .wrap .nav a:hover {
    color: #fff !important;
  }
}

@media (max-width: 767px) {
  #renewal_container .main_section .main_text_area h2 {
    font-size: 3.2rem;
    line-height: 4.8rem;
  }
  #renewal_container .section .layout .flex_zone {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #renewal_container .section .layout .flex_zone > div {
    width: 100%;
  }
  #renewal_container .section .layout .flex_zone .text_area {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
    text-align: center;
  }
  #renewal_container .section .layout .flex_zone .text_area .keyword_box {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #renewal_container .section .layout .flex_zone .text_area .button_box {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .banner {
    padding: 0;
  }
  .banner > div {
    padding: 6rem 2rem 0;
    text-align: center;
  }
  .banner > div h2 {
    font-size: 2.8rem;
  }
  .banner img {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 0 0 0 auto;
  }
}
