@charset "utf-8";
.w{
  position: relative;
  width:100%;
  max-width:1400px;
  padding:0 50px;
  margin:0 auto;
  z-index:3;
}
.w2{
  position: relative;
  width:100%;
  max-width:1136px;
  padding:0 50px;
  margin:0 auto;
  z-index:3;
}
@media screen and (max-width:780px) {
  .w, .w2{
    padding:0 25px;
  }
}
@media screen and (max-width:500px) {
  .w, .w2{
    padding:0 20px;
  }
}

/*--------------kv--------------*/
#kv{
  position: relative;
  width:100%;
  background: #0A449B;
  background: linear-gradient(180deg,rgba(10, 68, 155, 1) 0%, rgba(100, 195, 237, 1) 63%, rgba(235, 213, 93, 1) 83%, rgba(255, 199, 1, 1) 100%);
  padding-bottom: 80px;
}
#kv .cycle {
  position: absolute;
  width: 100%;
  height: 80vw;
  top: 0;
  left: 0;
  z-index:1;
}
#kv .cycle .light-orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  filter: blur(2px);
  pointer-events: none;
}

#kv .cycle .light-orb.visible {
  opacity: 0.2;
}
#kv .title_wrap{
  position: relative;
  z-index:5;
  width:100%;
  max-width:1200px;
  padding:7rem 50px 0;
  margin:0 auto;
}
#kv .title_wrap .logo{
  width:100%;
}
#kv .title_wrap .logo img{
  display:block;
  width:100%;
  max-width:400px;
  margin:0 auto;
}
#kv .title_wrap h1{
  opacity: 0;
  width:100%;
  margin-top: -5rem;
  transform: scale(0.8);
  transition: opacity 0.2s ease-out;
  will-change: transform, opacity;
}
#kv .title_wrap h1 img{
  display:block;
  width:100%;
  max-width:1200px;
  margin:0 auto;
}
#kv .title_wrap h1.loaded{
  opacity: 1;
  animation: zoomInAndSettle2 0.6s ease-out forwards;
}
@keyframes zoomInAndSettle2 {
  0% {
    transform: scale(0.8);
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
#kv .kvbn{
  position: relative;
  z-index:4;
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
  max-width:1200px;
  padding:0 50px;
  margin:-4rem auto 50px;
	flex-wrap: wrap;
  justify-content: space-between;
}
#kv .kvbn li{
  width:49%;
}
#kv .kvbn li a img{
  display:block;
  transform: scale(1);
  transition: transform 0.3s ease;
}
#kv .kvbn li a:hover img{
  transform: scale(1.1);
}
@media (min-width: 1024px) {
  #kv .cycle .light-orb {
    --min-size: 30px;
    --max-size: 150px;
  }
}
@media screen and (max-width: 1023px){
	#kv .cycle .light-orb {
      --min-size: 20px;
      --max-size: 100px;
  }
}
@media screen and (max-width: 960px){
	#kv .title_wrap .logo img{
    max-width:300px;
  }
}
@media screen and (max-width:780px) {
  #kv .title_wrap h1{
    margin-top: -3rem;
  }
  #kv .kvbn{
    padding:0 50px;
    margin:-2rem auto 50px;
  }
  #kv .kvbn li{
    width:100%;
  }
  #kv .kvbn li:nth-of-type(1){
    margin-bottom: 20px;
  }
  #kv .kvbn li a img{
    display:block;
    width:100%;
    max-width:500px;
    margin:0 auto;
  }
}
@media screen and (max-width: 767px){
	#kv .cycle .light-orb {
      --min-size: 15px;
      --max-size: 60px;
  }
}
@media screen and (max-width: 680px){
  #kv .title_wrap .logo{
    margin-left: -30px;
  }
	#kv .title_wrap .logo img{
    max-width:250px;
  }
}
@media screen and (max-width: 500px){
  #kv{
    background: linear-gradient(180deg,rgba(10, 68, 155, 1) 0%, rgba(100, 195, 237, 1) 53%, rgba(235, 213, 93, 1) 76%, rgba(255, 199, 1, 1) 100%);
    padding-bottom: 60px;
  }
  #kv .title_wrap{
    padding:5rem 20px 0;
  }
  #kv .title_wrap .logo{
    margin-left: -30px;
  }
	#kv .title_wrap .logo img{
    max-width:180px;
  }
  #kv .kvbn{
    padding:0 50px;
    margin:-1rem auto 10px;
  }
  #kv{
    padding-bottom: 40px;
  }
}
/*-------------item-nav---------------*/
.item-nav{
  position: relative;
  z-index:10;
  padding:0 0px;
}
.mnavbox{
  position: relative;
  width:100%;
  z-index:20;
}

.mnav ul{
	width:100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .3rem;
}
.mnav ul li{
}
.mnav ul li a{
  position: relative;
  display:block;
  padding:17px 15px;
	background-color:#005952;
  transition: 0.3s ease-in-out;
}
.mnav ul li a::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 2px solid #fff;
  pointer-events: none;
  box-sizing: border-box;
}
.mnav ul li a img{
  display:block;
  width:auto;
  height:35px;
  margin:0 auto;
}

.mnav ul li a:hover{
  background-color:#03756a;
}
.mnavbox.is_navi{
  margin-top: 0px;
}
.mnavbox.is_navi .w{
  min-width: auto;
}
@media screen and (max-width:980px) {
  .item-nav{
    padding:0 0px;
  }
  .mnav ul li a img{
    width:100%;
    max-width:200px;
    height:auto;
  }
}
@media screen and (max-width:860px) {
  .mnav.w{
    padding:0 15px;
  }
  .mnavbox{
    margin-top: 0px;
    padding-top: 20px;
  }
  .mnav ul{
  	width:100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .3rem;
  }
}
@media screen and (max-width:508px) {
  .item-nav{
    padding:0 10px;
  }
  .mnav ul{
  	width:100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .3rem;
  }
  .mnav ul li:last-child {
    grid-column: span 2;
  }
}
/*-------------sbg---------------*/
.sbg{
  background-image: url(../images/sbg.png);
  background-position: 50% 0;
  background-repeat: repeat-y;
  background-size: 100% auto;
}
main{
  position: relative;
}
.sbg2{
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-image: url(../images/sbg.png);
  background-position: 50% 0;
  background-repeat: repeat-y;
  background-size: 100% auto;
  z-index:1;
}
@media screen and (max-width:1750px) {
  .sbg2{
    background-size: 110% auto;
  }
}
@media screen and (max-width:1280px) {
  .sbg2{
    background-size: 120% auto;
  }
}
@media screen and (max-width:780px) {
  .sbg{
    background-size: 120% auto;
  }
  .sbg2{
    background-size: 130% auto;
  }
}
/*-------------btn---------------*/
.btn{
  width:100%;
}
.btn.first{
  margin-bottom: 60px;
}
.btn.first2{
  margin-bottom: 120px;
}
.btn a{
  display:block;
  width:100%;
  max-width:870px;
  margin:0 auto;
}
.btn a img{
  display:block;
  width:100%;
  max-width:870px;
  margin:0 auto;
}
@media screen and (max-width:480px) {
  .btn.first{
    margin-bottom: 30px;
  }
  .btn.first2{
    margin-bottom: 60px;
  }
}
/*-------------s1---------------*/
#s1{
  background-color: #ffc701;
  padding:30px 0 120px;
}

#s1 .c1,
#s1 .c2{
  position: relative;
  padding: 0px 0;
}
#s1 .c1,
#s1 .c2{
  margin-bottom: 80px;
}
#s1 .c1::before,
#s1 .c1::after,
#s1 .c2::before,
#s1 .c2::after{
  position: absolute;
  content:"";
  z-index:2;
}
#s1 .c1::before,
#s1 .c2::before{
  top:0;
  left:0;
  width:100%;
  height:629px;
  background-position: 50% 0;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
#s1 .c1::after,
#s1 .c2::after{
  bottom:0;
  left:0;
  width:100%;
  height:200px;
  background-position: 50% 100%;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
#s1 .c1 .inner,
#s1 .c2 .inner{
  position: relative;
}

#s1 .c1::before{
  background-image: url(../images/s1_c1_t.png);
}
#s1 .c2::before{
  background-image: url(../images/s1_c2_t.png);
}
#s1 .c1::after{
  background-image: url(../images/s1_c1_b.png);
}
#s1 .c2::after{
  background-image: url(../images/s1_c2_b.png);
}
#s1 .c1 .inner::before {
  content: "";
  position: absolute;
  top: 50px;
  bottom: 50px;
  left: 0;
  right: 0;
  background-image: url(../images/s1_c1_n.png);
  background-position: center top;
  background-repeat: repeat-y;
  background-size: 100% auto;
}
#s1 .c2 .inner::before {
  content: "";
  position: absolute;
  top: 50px;
  bottom: 50px;
  left: 0;
  right: 0;
  background-image: url(../images/s1_c2_n.png);
  background-position: center top;
  background-repeat: repeat-y;
  background-size: 100% auto;
}


#s1 .c1 .inner article,
#s1 .c2 .inner article{
  position: relative;
  z-index:3;
  padding:15px 15px 60px;
}
#s1 .c1 article h2,
#s1 .c2 article h2{
  display:block;
}
#s1 .c1 article h2 img,
#s1 .c2 article h2 img{
  display:block;
  width:100%;
  max-width:1500px;
  margin:0 auto;
}
#s1 .c1 article .elm,
#s1 .c2 article .elm{
  padding:0 50px;
}
#s1 .c1 article .i2{
  display:block;
  margin:-2rem 0 4rem;
}
#s1 .c1 article .i2 img{
  display:block;
  width:100%;
  max-width:980px;
  margin:0 auto;
}

#s1 .c2 article .i2{
  display:block;
  margin:0 0 0rem;
}
#s1 .c2 article .i2 img{
  display:block;
  width:100%;
  max-width:980px;
  margin:0 auto;
}
#s1 .c2 article .pre{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
	flex-wrap: wrap;
  margin-bottom: 40px;
}
#s1 .c2 article .pre li{
  width:50%;
}
#s1 .c2 article .pre li:nth-of-type(1){
  width:55%;
}
#s1 .c2 article .pre li:nth-of-type(2){
  width:45%;
}
#s1 article .caps{
  text-align: center;
}
#s1 article .tb{
  text-align: center;
  display:inline-block;
  background: #ed1c24;
  color:#fff;
  font-size: 16px;
  padding:8px 15px;
  border-radius: 50px;
  margin-bottom: 15px;
}
#s1 article .tb br{
  display:none;
}
#s1 article .tb2{
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width:860px) {
  #s1 article .tb{
    font-size: 14px;
    padding:8px 15px;
  }
  #s1 article .tb br{
    display:block;
  }
  #s1 article .tb2{
    text-align: center;
    font-size: 12px;
  }
}
@media screen and (max-width:480px) {
  #s1{
    background-color: #ffc701;
    padding:30px 0 60px;
  }
  #s1 .c1,
  #s1 .c2{
    margin-bottom: 50px;
  }
  #s1 .c1 .inner::before {
    top: 20px;
    bottom: 20px;
  }
  #s1 .c1 .inner article,
  #s1 .c2 .inner article{
    padding:15px 15px 20px;
  }
  #s1 .c1 article .elm,
  #s1 .c2 article .elm{
    padding:0 0px;
  }
  #s1 .c1 article .i2{
    display:block;
    margin:0rem 0 3rem;
  }
  #s1 article .tb{
    font-size: 12px;
    padding:8px 15px;
  }
  #s1 article .tb2{
    text-align: center;
    font-size: 10px;
  }
}
/*-------------s2---------------*/
#s2{
  position: relative;
  background-color: #476FC9;
  padding:30px 0 120px;
}
#s2::before{
  position: absolute;
  content:"";
  top:0;
  left:0;
  width:100%;
  height:514px;
  background: #0C0D38;
  background: linear-gradient(180deg,rgba(12, 13, 56, 1) 0%, rgba(30, 35, 130, 1) 50%, rgba(71, 111, 201, 1) 100%);
  z-index:0;
}
#s2 h2{
  display:block;
  margin-bottom: 100px;
}
#s2 h2 img{
  display:block;
  width:100%;
  max-width:1200px;
  margin:0 auto;
}
#s2 .car_item{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
	flex-wrap: wrap;
  justify-content: space-between;
}
#s2 .car_item .carbox{
  width:48%;
  margin-bottom: 70px;
}
#s2 .car_item .carbox .inner{
  padding:0 15px;
}
#s2 .car_item .carbox .i img{
  display:block;
  width:100%;
  max-width:860px;
  margin:0 auto 20px;
}
#s2 .car_item .carbox .cap{
  font-size: 12px;
  margin-bottom: 30px;
  color:#fff;
}
#s2 .car_item .carbox .c1 img{
  display:block;
  width:100%;
  max-width:860px;
  margin:0 auto 30px;
}

#s2 .car_item .carbox .c2{
  width:100%;
}
#s2 .car_item .carbox .c2 .tog{
  display:none;
  position:relative;
  cursor: pointer;
  width:100%;
  color:#fff;
  font-weight: bold;
  background: #e32044;
  padding:20px 40px 20px 30px;
  font-size: 22px;
  border-radius: 5px;
  line-height: 1.6;
}
#s2 .car_item .carbox .c2 .tog::before{
  position: absolute;
  content:"";
  top:50%;
  transform: translateY(-50%);
  right:15px;
  width:30px;
  height:30px;
  background: #fff;
  border-radius: 50px;
}
#s2 .car_item .carbox .c2 .tog i{
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  right:22px;
  width:17px;
  height:17px;
}
#s2 .car_item .carbox .c2 .tog i::before{
  position: absolute;
  content: "";
  top:50%;
  transform: translateY(-50%);
  right:0;
  width:17px;
  height:2px;
  background: #000;
}
#s2 .car_item .carbox .c2 .tog i::after{
  position: absolute;
  content: "";
  top:50%;
  transform: translateY(-50%);
  right:7px;
  width:2px;
  height:17px;
  background: #000;
}
#s2 .car_item .carbox .c2 .tog.is_open i::after{
  display:none;
}
#s2 .car_item .carbox .c2 .tog span{
  display:block;
}
#s2 .caps{
  font-size: 12px;
  color:#fff;
  margin-bottom: 80px;
}
@media screen and (max-width:760px) {
  #s2 .car_item .carbox{
    width:100%;
    margin-bottom: 60px;
  }
  #s2 .car_item .carbox .i img{
    max-width:550px;
  }
  #s2 .car_item .carbox .inner{
    width:100%;
    max-width:550px;
    margin:0 auto;
    padding:0 15px;
  }
  #s2 .car_item .carbox .fl{
    padding-top: 20px;
  }
  #s2 .car_item .carbox .c2 .tog{
    display:block;
  }
}
@media screen and (max-width:480px) {
  #s2{
    padding:30px 0 60px;
  }
  #s2::before{
    height:214px;
  }
  #s2 h2{
    margin-bottom: 60px;
  }
  #s2 h2 img{
    display:block;
    width:120%;
    margin:0 auto;
    margin-left: -10%;
  }
  #s2 .car_item .carbox .c2 .tog{
    padding:20px 30px 20px 20px;
    font-size: 16px;
  }
  #s2 .caps{
    margin-bottom: 50px;
  }
}
@media screen and (max-width:320px) {
  #s2 .car_item .carbox .c2 .tog{
    padding:20px 30px 20px 20px;
    font-size: 14px;
  }
}
/*-------------s3---------------*/
#s3{
  position: relative;
  background-color: #fff;
  padding:0px 0 120px;
}
#s3 .s3_label{
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  justify-content: center;
  height: 1385px;
  overflow: hidden;
  margin-bottom: 80px;
}
#s3 .s3_label .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#s3 .s3_label .bg img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  object-fit: cover;
  object-position: 50% 0%;
}
#s3 .s3_label h2 {
  position: relative;
  width: 100%;
  padding: 8rem 50px 0;
  z-index: 3;
}
#s3 h2 img{
  display:block;
  width:100%;
  max-width:1200px;
  margin:0 auto;
}
#s3 .i1 {
  width: 100%;
  margin-bottom: 40px;
}
#s3 .i1 img{
  display:block;
  width:100%;
  max-width:900px;
  margin:0 auto;
}
#s3 .i2 {
  width: 100%;
  margin-bottom: 0px;
}
#s3 .i2 img{
  display:block;
  width:100%;
  max-width:1200px;
  margin:0 auto;
}
#s3 .i3 {
  width: 100%;
  margin-bottom: 60px;
  background: #e50020;
  padding:30px 15px;
}
#s3 .i3 img{
  display:block;
  width:100%;
  max-width:750px;
  margin:0 auto;
}
@media screen and (max-width:2160px) {
  #s3 .s3_label{
    height: 1285px;
  }
}
@media screen and (max-width:2000px) {
  #s3 .s3_label{
    height: 1185px;
  }
}
@media screen and (max-width:1880px) {
  #s3 .s3_label{
    height: 1085px;
  }
}
@media screen and (max-width:1680px) {
  #s3 .s3_label{
    height: 985px;
  }
  #s3 .s3_label h2 {
    padding: 5rem 50px 0;
  }
  #s3 h2 img{
    max-width:1100px;
  }
}
@media screen and (max-width:1500px) {
  #s3 .s3_label{
    height: 885px;
  }
  #s3 .s3_label h2 {
    padding: 3rem 50px 0;
  }
  #s3 h2 img{
    max-width:1000px;
  }
}
@media screen and (max-width:1320px) {
  #s3 .s3_label{
    height: 785px;
  }
}
@media screen and (max-width:1160px) {
  #s3 .s3_label{
    height: 685px;
  }
  #s3 h2 img{
    max-width:800px;
  }
}
@media screen and (max-width:1040px) {
  #s3 .s3_label{
    height: 585px;
  }
  #s3 h2 img{
    max-width:700px;
  }
}
@media screen and (max-width:860px) {
  #s3 .s3_label{
    height: 485px;
  }
  #s3 h2 img{
    max-width:600px;
  }
}
@media screen and (max-width:760px) {
  #s3 .s3_label{
    height: 425px;
  }
  #s3 .s3_label h2 {
    padding: 3rem 0px 0;
  }
  #s3 h2 img{
    max-width:600px;
  }
}
@media screen and (max-width:680px) {
  #s3 .s3_label{
    height: 400px;
  }
  #s3 h2 img{
    max-width:500px;
  }
}
@media screen and (max-width:600px) {
  #s3 .s3_label{
    height: 350px;
    margin-bottom: 40px;
  }
  #s3 h2 img{
    max-width:500px;
  }
  #s3{
    padding:0px 0 60px;
  }
}
@media screen and (max-width:480px) {
  #s3 .s3_label{
    height: 350px;
    margin-bottom: 30px;
  }
  #s3 .s3_label h2 {
    padding: 2rem 0px 0;
  }
  #s3 .i1 {
    margin-bottom: 20px;
  }
  #s3 .i3 {
    margin-bottom: 30px;
    padding:15px 15px;
  }
}
/*-------------s4---------------*/
#s4{
  position: relative;
  padding:50px 0 120px;
}
#s4::before{
  position: absolute;
  content:"";
  top:0;
  left:0;
  width:100%;
  height:590px;
  background: #0C0D38;
  background: linear-gradient(180deg,rgba(12, 13, 56, 1) 0%, rgba(6, 63, 152, 1) 34%, rgba(100, 195, 237, 1) 70%, rgba(255, 255, 201, 1) 100%);
  z-index:0;
}
#s4 h2{
  display:block;
  margin-bottom: 100px;
}
#s4 h2 img{
  display:block;
  width:100%;
  max-width:1100px;
  margin:0 auto;
}
#s4 .i1 {
  width: 100%;
  margin-bottom: 60px;
}
#s4 .i1 img{
  display:block;
  width:100%;
  max-width:800px;
  margin:0 auto;
}
#s4 .i2 {
  width: 100%;
  margin-bottom: 20px;
}
#s4 .i2 img{
  display:block;
  width:100%;
  max-width:980px;
  margin:0 auto;
}
#s4 .i3 {
  width: 100%;
  margin-bottom: 60px;
}
#s4 .i3 img{
  display:block;
  width:100%;
  max-width:1136px;
  margin:0 auto;
}
#s4 .i4 {
  width: 100%;
  margin-bottom: 20px;
}
#s4 .i4 img{
  display:block;
  width:100%;
  max-width:800px;
  margin:0 auto;
}
#s4 .i5 {
  width: 100%;
  margin-bottom: 60px;
}
#s4 .i5 img{
  display:block;
  width:100%;
  max-width:1136px;
  margin:0 auto;
}
#s4 .caps{
  font-size: 14px;
  margin-bottom: 60px;
}
#s4 img.imgtxt{
  display:block;
  width:100%;
  max-width:870px;
  margin:0 auto 20px;
}
@media screen and (max-width:1080px) {
  #s4::before{
    height:490px;
  }
}
@media screen and (max-width:860px) {
  #s4::before{
    height:390px;
  }
}
@media screen and (max-width:500px) {
  #s4::before{
    height:290px;
  }
}
@media screen and (max-width:480px) {
  #s4{
    position: relative;
    padding:30px 0 60px;
  }
  #s4::before{
    height:280px;
  }
  #s4 h2{
    margin-bottom: 60px;
  }
  #s4 h2 img{
    display:block;
    width:120%;
    margin:0 auto;
    margin-left: -10%;
  }
  #s4 .i1 {
    margin-bottom: 30px;
  }
  #s4 .i3 {
    margin-bottom: 30px;
  }
  #s4 .i5 {
    margin-bottom: 30px;
  }
}
.copy{
  background: #fff;
  padding: 20px 10px;
  text-align: center;
  font-size: 12px;
}
/*----------------------------delay-----------------------------------*/

.delay{
	opacity: 0;
	transform: translate(0,60px);
	transition: 0.8s ease-in-out;
}
.delay1{
	opacity: 0;
	transform: translate(-60px,0);
	transition: 0.8s ease-in-out;
}
.delay1-2{
	opacity: 0;
	transform: translate(-150px,0);
	transition: 1s ease-in-out;
}
.delay1-3{
	opacity: 0;
	transform: translate(-200px,0);
	transition: 1.2s ease-in-out;
}
.delay2{
	opacity: 0;
	transform: translate(60px,0);
	transition: 0.8s ease-in-out;
}
.delay2-2{
	opacity: 0;
	transform: translate(150px,0);
	transition: 0.8s ease-in-out;
}
.delay2-3{
	opacity: 0;
	transform: translate(200px,0);
	transition: 0.8s ease-in-out;
}
.delay3{
	opacity: 0;
	transform: translate(0,120px);
	transition: 0.8s ease-in-out;
}

.delay-up1{
	opacity: 0;
	transform: translate(0,80px);
	transition: 0.8s ease-in-out;
}
.delay-up2{
	opacity: 0;
	transform: translate(0,120px);
	transition: 0.8s ease-in-out;
}
.delay-up3{
	opacity: 0;
	transform: translate(0,160px);
	transition: 0.8s ease-in-out;
}
.delay-up4{
	opacity: 0;
	transform: translate(0,200px);
	transition: 0.8s ease-in-out;
}
.delay-blur{
  opacity: 0;
  filter: blur(10px);
  transition: 0.8s ease-in-out;
}

.delayActive{
	opacity: 1.0;
	transform: translate(0,0);
  filter: blur(0);
	transition: 1s ease-in-out;
}

.delay-inv1{
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 1.0s ease-out;
  will-change: transform, opacity;
}
.delay-inv1.is_on{
  opacity: 1;
  animation: zoominv 0.8s ease-out forwards;
}
@keyframes zoominv {
  0% {
    transform: scale(0.7);
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

#sc{
	position: fixed;
	height: 44px;
	width: 44px;
	position: fixed;
	bottom: 80px;
	right: -44px;
	transition: 0.3s ease-in-out;
	border-radius: 100%;
	background: rgba(227,32,68,0.9);
	z-index: 10;
	overflow: hidden;
}
.scrolled #sc{
	right: 15px;
}
#sc a{
	width: 44px;
	height: 44px;
	display: block;
	position: relative;
}
#sc a:before{
	content: "";
	display: block;
	width: 13px;
	height: 13px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: rotate(-45deg);
	position: absolute;
	top: 18px;
	left: 14px;
	transition: 0.2s ease-in-out;
}
#sc a:hover:before{
	opacity: 0.8;
}
@media screen and (max-width: 750px){
  #sc{
  	bottom: 30px;
  	right: -44px;
  }
}


/*----------------------------load-----------------------------------*/

#load{
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 100;
}
#load div:nth-of-type(1){
	height: 100%;
	width: 100%;
	background: rgb(0,166,60);
  background: -moz-linear-gradient(153deg, rgba(0,166,60,1) 0%, rgba(0,163,149,1) 39%, rgba(0,163,159,1) 61%, rgba(0,159,232,1) 100%);
  background: -webkit-linear-gradient(153deg, rgba(0,166,60,1) 0%, rgba(0,163,149,1) 39%, rgba(0,163,159,1) 61%, rgba(0,159,232,1) 100%);
  background: linear-gradient(153deg, rgba(0,166,60,1) 0%, rgba(0,163,149,1) 39%, rgba(0,163,159,1) 61%, rgba(0,159,232,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00a63c",endColorstr="#009fe8",GradientType=1);
	position: absolute;
	top: 0;
	left: 0;
}

#load .loader{
	position: relative;
  border-radius: 50%;
  width: 3em;
  height: 3em;
	top: calc(50% - 65px);
	left: calc(50% - 25px);
	display: block;
}
#load .loader:before,
#load .loader:after{
	left: -2px;
	top: -2px;
	display: none;
	position: absolute;
	content: '';
	width: inherit;
	height: inherit;
	border: inherit;
	border-radius: inherit;
}
#load .loader,
#load .loader:before{
	display: inline-block;
	border-color: transparent;
}
#load .loader:before{
  border-top: .5em solid rgba(255,255,255,.2);
  border-right: .5em solid rgba(255,255,255,.2);
  border-bottom: .5em solid rgba(255,255,255,.2);
  border-left: .5em solid #fff;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: spin .75s infinite linear;
  animation: spin .75s infinite linear;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}
