@charset "UTF-8";
/*--------------------------
Tag Default
---------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.page-header {
  display: none !important;
}

#siteHeader .wrap .inner nav ul li > a {
  color: #fff;
}
#siteHeader .wrap .inner nav ul li > a::before {
  background: #fff;
}
#siteHeader .wrap .inner nav .pull-down li a {
  color: #000;
}
#siteHeader .wrap .logo {
  -webkit-filter: invert(100%) grayscale(100%) contrast(100%);
          filter: invert(100%) grayscale(100%) contrast(100%);
}
@media only screen and (max-width: 768px) {
  #siteHeader .wrap .logo {
    -webkit-filter: none;
            filter: none;
  }
}

#content {
  padding: 0 !important;
}

main {
  position: relative;
  font-size: 16px;
  font-family: "Noto Sans Japanese";
  font-weight: 400;
  color: #fff;
  line-height: 1;
  padding: 0 !important;
  margin: 0 !important;
  -webkit-text-size-adjust: 100%;
}
@media only screen and (max-width: 768px) {
  main {
    font-size: 14px;
    padding: 0 !important;
  }
}
main section {
  width: 100% !important;
  margin: 0 auto !important;
  background: transparent;
}
main section p {
  font-size: 16px !important;
  color: #fff;
  line-height: 1.85;
}
@media only screen and (max-width: 768px) {
  main section p {
    font-size: 14px !important;
    line-height: 1.75;
  }
}
main section p.dotted {
  position: relative;
  padding: 0 0 0 16px;
}
@media only screen and (max-width: 768px) {
  main section p.dotted {
    padding: 0 0 0 14px;
  }
}
main section p.dotted::before {
  position: absolute;
  content: "・";
  left: 0;
}
main .video-container {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}
main .video-container .bg-video {
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
main .video-container::after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  background-image: radial-gradient(#000 20%, transparent 0), radial-gradient(#000 20%, transparent 0);
  background-position: 0 0, 10px 10px;
  background-size: 5px 5px;
}

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

.sp_none {
  display: block;
}
@media only screen and (max-width: 768px) {
  .sp_none {
    display: none !important;
  }
}

.pc_none {
  display: none;
}
@media only screen and (max-width: 768px) {
  .pc_none {
    display: block !important;
  }
}

.container {
  width: 100%;
  max-width: 1280px;
  padding: 0 60px;
  margin: 0 auto;
}
@media only screen and (max-width: 1280px) {
  .container {
    min-width: 1024px;
  }
}
@media only screen and (max-width: 768px) {
  .container {
    min-width: 100%;
    padding: 0 20px;
  }
}

.animation {
  opacity: 0;
}

.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes fade {
  0% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
.fade {
  -webkit-animation-name: fade;
  animation-name: fade;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1) !important;
            transform: scale(1) !important;
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) !important;
            transform: scale(1) !important;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1) !important;
            transform: scale(1) !important;
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) !important;
            transform: scale(1) !important;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -5%, 0);
    transform: translate3d(0, -5%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -5%, 0);
    transform: translate3d(0, -5%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2.5%, 0, 0);
    transform: translate3d(-2.5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2.5%, 0, 0);
    transform: translate3d(-2.5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2.5%, 0, 0);
    transform: translate3d(2.5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2.5%, 0, 0);
    transform: translate3d(2.5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 5%, 0);
    transform: translate3d(0, 5%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 5%, 0);
    transform: translate3d(0, 5%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

/*--------------------------
main_visual
---------------------------*/
#main_visual {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100vh;
  padding: 0 60px 60px;
}
@media only screen and (max-width: 768px) {
  #main_visual {
    padding: 0 20px 100px;
  }
}
#main_visual .flex_box_wrap {
  position: relative;
}
#main_visual .flex_box_wrap::before, #main_visual .flex_box_wrap::after {
  position: absolute;
  content: "";
  background: #00FAE1;
  -webkit-transition: all 0.7s ease-in-out 0s;
  transition: all 0.7s ease-in-out 0s;
}
#main_visual .flex_box_wrap::before {
  width: 0%;
  height: 8px;
  top: -17px;
  left: 25%;
}
@media only screen and (max-width: 768px) {
  #main_visual .flex_box_wrap::before {
    height: 6px;
    left: auto;
    right: 0;
  }
}
#main_visual .flex_box_wrap::after {
  width: 0%;
  height: 2px;
  top: 0;
  left: 0;
}
#main_visual .flex_box_wrap h1 {
  position: relative;
  padding: 30px 0;
  margin: 0 0 30px;
}
@media only screen and (max-width: 768px) {
  #main_visual .flex_box_wrap h1 {
    padding: 20px 60px 20px 0;
    margin: 0;
  }
}
#main_visual .flex_box_wrap h1::before, #main_visual .flex_box_wrap h1::after {
  position: absolute;
  content: "";
  background: #00FAE1;
  -webkit-transition: all 0.7s ease-in-out 0s;
  transition: all 0.7s ease-in-out 0s;
}
@media only screen and (max-width: 768px) {
  #main_visual .flex_box_wrap h1::before, #main_visual .flex_box_wrap h1::after {
    content: none;
  }
}
#main_visual .flex_box_wrap h1::before {
  width: 0%;
  height: 8px;
  right: 0;
  bottom: 11px;
}
@media only screen and (max-width: 768px) {
  #main_visual .flex_box_wrap h1::before {
    height: 6px;
  }
}
#main_visual .flex_box_wrap h1::after {
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
}
#main_visual .flex_box_wrap .flex_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  #main_visual .flex_box_wrap .flex_box {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  #main_visual .flex_box_wrap .flex_box .left_box {
    margin: 0 0 20px;
  }
}
#main_visual .flex_box_wrap .flex_box .left_box strong {
  display: block;
}
@media only screen and (max-width: 768px) {
  #main_visual .flex_box_wrap .flex_box .left_box strong {
    padding: 0 60px 0 0;
  }
}
#main_visual .flex_box_wrap .flex_box .left_box strong img:not(:last-child) {
  margin: 0 0 20px;
}
@media only screen and (max-width: 768px) {
  #main_visual .flex_box_wrap .flex_box .left_box strong img:not(:last-child) {
    margin: 0 0 16px;
  }
}
#main_visual .flex_box_wrap .flex_box .right_box {
  position: relative;
  padding: 0 0 0 50px;
}
@media only screen and (max-width: 768px) {
  #main_visual .flex_box_wrap .flex_box .right_box {
    padding: 40px 0 0;
  }
}
#main_visual .flex_box_wrap .flex_box .right_box::before, #main_visual .flex_box_wrap .flex_box .right_box::after {
  position: absolute;
  content: "";
  background: #00FAE1;
  -webkit-transition: all 0.7s ease-in-out 0s;
  transition: all 0.7s ease-in-out 0s;
}
#main_visual .flex_box_wrap .flex_box .right_box::before {
  width: 8px;
  height: 0%;
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 768px) {
  #main_visual .flex_box_wrap .flex_box .right_box::before {
    width: 0%;
    height: 6px;
    top: 0;
    bottom: auto;
  }
}
#main_visual .flex_box_wrap .flex_box .right_box::after {
  width: 2px;
  height: 0%;
  top: -40%;
  left: 17px;
}
@media only screen and (max-width: 768px) {
  #main_visual .flex_box_wrap .flex_box .right_box::after {
    width: 0%;
    height: 2px;
    top: 15px;
    left: auto;
    right: 0;
  }
}
#main_visual .flex_box_wrap .flex_box .right_box .txt_box {
  position: relative;
  padding: 20px 25px;
  background: rgba(16, 143, 130, 0.8);
}
@media only screen and (max-width: 768px) {
  #main_visual .flex_box_wrap .flex_box .right_box .txt_box {
    padding: 15px 20px;
  }
}
#main_visual .flex_box_wrap .flex_box .right_box .txt_box h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 20px;
}
@media only screen and (max-width: 768px) {
  #main_visual .flex_box_wrap .flex_box .right_box .txt_box h2 {
    font-size: 20px;
    margin: 0 0 16px;
  }
}
#main_visual .flex_box_wrap .flex_box .right_box .txt_box p {
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  #main_visual .flex_box_wrap .flex_box .right_box .txt_box p {
    font-size: 12px !important;
  }
}
#main_visual .flex_box_wrap.animated::before {
  width: 35%;
}
@media only screen and (max-width: 768px) {
  #main_visual .flex_box_wrap.animated::before {
    width: 50%;
  }
}
#main_visual .flex_box_wrap.animated::after {
  width: 38%;
}
@media only screen and (max-width: 768px) {
  #main_visual .flex_box_wrap.animated::after {
    width: 100%;
  }
}
#main_visual .flex_box_wrap.animated h1::before {
  width: 8%;
}
#main_visual .flex_box_wrap.animated h1::after {
  width: 100%;
}
#main_visual .flex_box_wrap.animated .flex_box .right_box::before {
  height: 67%;
}
@media only screen and (max-width: 768px) {
  #main_visual .flex_box_wrap.animated .flex_box .right_box::before {
    width: 60%;
    height: 6px;
  }
}
#main_visual .flex_box_wrap.animated .flex_box .right_box::after {
  height: 105%;
}
@media only screen and (max-width: 768px) {
  #main_visual .flex_box_wrap.animated .flex_box .right_box::after {
    width: 100%;
    height: 2px;
  }
}

/*--------------------------
section01
---------------------------*/
#section01 {
  padding: 200px 0;
}
@media only screen and (max-width: 768px) {
  #section01 {
    padding: 80px 0;
  }
}
#section01 .container .box a {
  position: relative;
  display: block;
  padding: 50px 60px 45px;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  #section01 .container .box a {
    padding: 40px;
  }
}
#section01 .container .box a::before, #section01 .container .box a::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 0;
  background: #00FAE1;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
#section01 .container .box a::before {
  left: 40px;
  bottom: -120px;
}
@media only screen and (max-width: 768px) {
  #section01 .container .box a::before {
    left: 20px;
    bottom: -80px;
  }
}
#section01 .container .box a::after {
  top: -120px;
  right: 40px;
}
@media only screen and (max-width: 768px) {
  #section01 .container .box a::after {
    top: -80px;
    right: 20px;
  }
}
#section01 .container .box a strong {
  display: block;
  font-size: 30px;
  font-weight: 900;
  color: #00FAE1;
  line-height: 1.667;
  margin: 0 0 50px;
}
@media only screen and (max-width: 768px) {
  #section01 .container .box a strong {
    font-size: 20px;
    margin: 0 0 30px;
  }
}
#section01 .container .box a figure {
  display: inline-block;
  text-align: center;
  margin: 0 0 40px;
  pointer-events: all;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
@media only screen and (max-width: 768px) {
  #section01 .container .box a figure {
    margin: 0 0 20px;
  }
}
#section01 .container .box a .btn_box {
  position: relative;
}
#section01 .container .box a .btn_box::before, #section01 .container .box a .btn_box::after {
  position: absolute;
  content: "";
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
#section01 .container .box a .btn_box::before {
  width: 0%;
  height: 2px;
  left: -120px;
  bottom: 18px;
  background: #00FAE1;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  #section01 .container .box a .btn_box::before {
    left: -60px;
    bottom: 14px;
  }
}
#section01 .container .box a .btn_box::after {
  left: 0;
  bottom: 14px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 18px solid #00FAE1;
}
@media only screen and (max-width: 768px) {
  #section01 .container .box a .btn_box::after {
    bottom: 10px;
  }
}
#section01 .container .box a .btn_box span {
  display: inline-block;
  font-size: 40px;
  font-family: "din-2014-narrow", sans-serif;
  font-weight: 500;
  color: #00FAE1;
  letter-spacing: 4px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  pointer-events: all;
}
@media only screen and (max-width: 768px) {
  #section01 .container .box a .btn_box span {
    font-size: 30px;
  }
}
#section01 .container .box a .item_box {
  position: absolute;
  right: 40px;
  bottom: 20px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  pointer-events: all;
}
@media only screen and (max-width: 768px) {
  #section01 .container .box a .item_box {
    position: static;
    display: inline-block;
    width: 50%;
    margin: 20px auto 0;
  }
}
#section01 .container .box a:hover figure {
  -webkit-box-shadow: 0 0 20px #00FAE1;
          box-shadow: 0 0 20px #00FAE1;
  background: rgba(0, 250, 225, 0.6);
}
#section01 .container .box a:hover .btn_box span {
  text-shadow: 0 0 20px #00FAE1;
}
#section01 .container .box a:hover .item_box {
  opacity: 0.7;
}
#section01 .container .box.animated a:before {
  height: 288px;
}
@media only screen and (max-width: 768px) {
  #section01 .container .box.animated a:before {
    height: 260px;
  }
}
#section01 .container .box.animated a::after {
  height: 300px;
}
@media only screen and (max-width: 768px) {
  #section01 .container .box.animated a::after {
    height: 280px;
  }
}
#section01 .container .box.animated .btn_box::before {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  #section01 .container .box.animated .btn_box::before {
    width: calc(50% - 30px);
  }
}
#section01 .container .box.animated .btn_box::after {
  left: calc(50% - 120px);
}
@media only screen and (max-width: 768px) {
  #section01 .container .box.animated .btn_box::after {
    left: calc(50% - 100px);
  }
}

/*--------------------------
section02
---------------------------*/
#section02 {
  padding: 200px 0;
}
@media only screen and (max-width: 768px) {
  #section02 {
    padding: 80px 0;
    margin: 0 0 60px !important;
  }
}
#section02 .container .box {
  position: relative;
  display: block;
  padding: 50px 60px 45px;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
}
@media only screen and (max-width: 768px) {
  #section02 .container .box {
    padding: 40px;
  }
}
#section02 .container .box::before, #section02 .container .box::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 0;
  background: #00FAE1;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
#section02 .container .box::before {
  left: 40px;
  bottom: -120px;
}
@media only screen and (max-width: 768px) {
  #section02 .container .box::before {
    left: 20px;
    bottom: -80px;
  }
}
#section02 .container .box::after {
  top: -120px;
  right: 40px;
}
@media only screen and (max-width: 768px) {
  #section02 .container .box::after {
    top: -80px;
    right: 20px;
  }
}
#section02 .container .box strong {
  display: block;
  font-size: 30px;
  font-weight: 900;
  color: #00FAE1;
  line-height: 1.667;
  margin: 0 0 30px;
}
@media only screen and (max-width: 768px) {
  #section02 .container .box strong {
    font-size: 20px;
    margin: 0 0 20px;
  }
}
#section02 .container .box .btn_box {
  position: relative;
  margin: 0 0 80px;
}
@media only screen and (max-width: 768px) {
  #section02 .container .box .btn_box {
    margin: 0 0 40px;
  }
}
#section02 .container .box .btn_box::before, #section02 .container .box .btn_box::after {
  position: absolute;
  content: "";
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
#section02 .container .box .btn_box::before {
  width: 0%;
  height: 2px;
  right: -120px;
  bottom: 16px;
  background: #00FAE1;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  #section02 .container .box .btn_box::before {
    right: -120px;
    bottom: 12px;
  }
}
#section02 .container .box .btn_box::after {
  right: -60px;
  bottom: 12px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 18px solid #00FAE1;
}
@media only screen and (max-width: 768px) {
  #section02 .container .box .btn_box::after {
    bottom: 8px;
  }
}
#section02 .container .box .btn_box span {
  display: inline-block;
  font-size: 40px;
  font-family: "din-2014-narrow", sans-serif;
  font-weight: 500;
  color: #00FAE1;
  letter-spacing: 4px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
@media only screen and (max-width: 768px) {
  #section02 .container .box .btn_box span {
    font-size: 30px;
  }
}
#section02 .container .box.animated:before {
  height: 300px;
}
@media only screen and (max-width: 768px) {
  #section02 .container .box.animated:before {
    height: 220px;
  }
}
#section02 .container .box.animated::after {
  height: 400px;
}
@media only screen and (max-width: 768px) {
  #section02 .container .box.animated::after {
    height: 320px;
  }
}
#section02 .container .box.animated .btn_box::before {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  #section02 .container .box.animated .btn_box::before {
    width: calc(50% + 20px);
  }
}
#section02 .container .box.animated .btn_box::after {
  right: calc(50% - 120px);
}
@media only screen and (max-width: 768px) {
  #section02 .container .box.animated .btn_box::after {
    right: calc(50% - 100px);
  }
}
#section02 .container .box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 40px;
}
@media only screen and (max-width: 768px) {
  #section02 .container .box ul {
    display: block;
    padding: 0;
  }
}
#section02 .container .box ul li {
  position: relative;
  width: calc(50% - 25px);
  text-align: left;
  margin: 0 0 15px;
  line-height: 1.93;
}
@media only screen and (max-width: 768px) {
  #section02 .container .box ul li {
    width: 100%;
    margin: 0;
  }
}
@media only screen and (max-width: 768px) {
  #section02 .container .box ul li:not(:last-child) {
    margin: 0 0 15px;
  }
}
#section02 .container .box ul li a {
  position: relative;
  display: block;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  padding: 8px 30px;
  border-left: 2px solid rgba(255, 255, 255, 0.75);
  border-bottom: 2px solid rgba(255, 255, 255, 0.75);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
@media only screen and (max-width: 768px) {
  #section02 .container .box ul li a {
    font-size: 16px;
    padding: 8px 16px;
  }
}
#section02 .container .box ul li a::before {
  position: absolute;
  content: "";
  left: -3px;
  bottom: -10px;
  border-top: 15px solid transparent;
  border-right: 15px solid #fff;
  border-bottom: 15px solid transparent;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
@media only screen and (max-width: 768px) {
  #section02 .container .box ul li a::before {
    left: -2px;
    bottom: -7px;
    border-top: 10px solid transparent;
    border-right: 10px solid #fff;
    border-bottom: 10px solid transparent;
  }
}
#section02 .container .box ul li a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  z-index: -1;
}
#section02 .container .box ul li a:hover {
  color: #000;
}
#section02 .container .box ul li a:hover::before {
  border-top: 15px solid transparent;
  border-right: 15px solid #000;
  border-bottom: 15px solid transparent;
}
@media only screen and (max-width: 768px) {
  #section02 .container .box ul li a:hover::before {
    border-top: 10px solid transparent;
    border-right: 10px solid #000;
    border-bottom: 10px solid transparent;
  }
}
#section02 .container .box ul li a:hover::after {
  width: 100%;
}
#section02 .container .box ul li a small {
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  #section02 .container .box ul li a small {
    font-size: 12px;
  }
}