@font-face {
  font-family: YuMincho;
  font-style: normal;
  font-weight: 500;
  src: url("../font/yumindb.ttf");
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  color: rgb(17, 17, 17);
  font-weight: bold;
  font-size: 14px;
  line-height: 1.5;
  text-size-adjust: 100%;
  letter-spacing: 0.7px;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
}

body.is-fixed {
  overflow: hidden;
  position: fixed;
  width: 100vw;
}

.font-yugothic {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
}

ul {
  list-style-type: none;
}

a {
  color: currentcolor;
  text-decoration: none;
  transition: all 0.2s ease 0s;
}

a:hover {
  opacity: 0.5;
}

img {
  max-width: 100%;
}
h1 {
  display: none;
}
.c-bg {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.c-bg--before,
.c-bg--after{
  position: relative;
}
.c-bg--before::before,
.c-bg--after::after{
  content: '';
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}
.c-flex{
  display: flex;
  justify-content: space-between;
}
.c-highlight{
  display: inline-block;
  border-bottom: 1px solid #CC0011;
  color: #CC0011;
  padding-bottom: 2px;
}
.c-none-after::after,
.c-none-before::before{
  display: none !important;
}
/**Btn*/
.c-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.c-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0px;
  position: relative;
  line-height: 1;
  font-family: YuMincho;
  transition: all 0.4s ease 0s;
}

.c-btn::before, .c-btn::after {
  content: "";
  flex-shrink: 0;
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: inherit;
}

.c-btn:hover {
  opacity: 1;
}
@media(max-width: 1024px){
  .c-btn-list{
    gap: 15px 20px;
  }
}
@media(max-width: 767px){
  .c-btn-list{
    gap: 15px 10px;
  }
  .c-btns{
    gap: 20px 4%;
  }
}
/*Custom btn*/
.c-btn1 {
  background: transparent;
  border: 1px solid #111111;
  border-radius: 100px;
  padding: 6px 2% 0;
  width: 270px;
  height: 60px;
  font-size: 15px;
  font-family: YuMincho;
  justify-content: space-between;
}
.c-btn1.--cus{
  border-color: #fff;
  color: #fff;
  width: 240px;
  height: 64px;
  padding: 4px 8% 0;
}
.c-btn1.--cus2{
  border-color: #009FE8;
  width: 515px;
  height: 80px;
  background-color: #009FE8;
  box-shadow: 0 3px 6px rgb(17, 17, 17, 0.16);
  font-size: 18px;
  color: #fff;
  padding: 3px 4.5% 0;
  letter-spacing: 0.8px;
  font-family: Yu Gothic;
}

.c-btn1::before{
  display: none;
}
.c-btn1::after {
  margin-right: 9px;
  background-image: url("../images/common/ic-arr-rb.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 12px;
  height: 13px;
  margin-top: -2px;
}
.c-btn1.--cus::after,
.c-btn1.--cus2::after {
  background-image: url("../images/common/ic-arr-rightw.png");
  width: 10px;
  height: 16px;
  margin-top: -5px;
}
.c-btn1:hover {
  background: #009FE8;
  color: rgb(255, 255, 255);
  border-color: #009FE8;
}
.c-btn1.--cus:hover,
.c-btn1.--cus2:hover{
  background: #fff;
  color: #009FE8;
  border-color: #fff;
}
.c-btn1:hover::after {
  background-image: url("../images/common/ic-arr-rw.png");
}
.c-btn1.--cus:hover::after,
.c-btn1.--cus2:hover::after {
  background-image: url("../images/common/ic-arr-rightb.png");
}


.c-btn2 {
  background: transparent;
  border-bottom: 1px solid rgba(155,155,155,0.4);
  padding: 0 20px 28px;
  width: 400px;
  justify-content: space-between;
  text-align: left;
  line-height: 1.4;
  font-size: 18px;
}
.c-btn2::after {
  background-image: url("../images/common/ic-arr-rightbl.png");
  width: 13px;
  height: 20px;
  transition: all ease 0.4s;
}
.c-btn2::before {
  width: 80px;
  background: #009FE8;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -1px;
  display: block;
}
.c-btn2:hover{
  opacity: 1;
  color: #009FE8;
}
.c-btn2:hover::before {
  width: 100%;
}
.c-btn2:hover::after {
  background-image: url("../images/common/ic-arr-rightb.png");
}
@media(max-width: 767px){
  .c-btn1 {
    font-size: 13px;
    width: 180px;
    padding: 4px 20px;
    height: 45px;
  }
  .c-btn1::before{
    width: 6px;
    height: 12px;
  }
  .c-btn1.--cus::after, .c-btn1.--cus2::after{
    width: 7px;
    height: 13px;
    margin-top: -2px;
  }
  .c-btn-footer{
    width: 200px;
    font-size: 13px;
    height: 50px;
  }
  .c-btn-footer::before{
    width: 19px;
    height: 19px;
    margin-right: 8px;
  }
  .c-btn1::after{
    width: 10px;
    height: 11px;
  }
  .c-btn1.--cus2{
    width: 300px;
    font-size: 12px;
    height: 60px;
    padding: 4px 20px;
  }

  .c-btn2 {
    font-size: 13px;
    width: 200px;
    padding: 0 10px 15px;
  }
}
/**End btn*/

/*Title*/
.c-title {
  font-family: YuMincho;
  text-align: center;
  font-weight: 600;
}

.c-title span {
  display: block;
  text-align: center;
  font-size: 16px;
  color: #009FE8;
}

/*custom*/
.c-title1 {
  font-size: 38px;
}
.c-title1 small{
  font-size: 20px;
  display: block;
}
.c-title2 {
  font-size: 32px;
}
.c-title3 {
  font-size: 20px;
}
.c-subtitle::before{
  content: '';
  width: 4px;
  height: 4px;
  background-color: #009FE8;
  border-radius: 50%;
  display: block;
  margin: 0 auto 25px;
}
.c-text1{
  font-size: 16px;
  line-height: 32px;
}
.c-text2{
  font-size: 15px;
  line-height: 34px;
}
 
@media(max-width: 1024px){
  .c-title1{
    font-size: 30px;
  }
  .c-title1 small{
    font-size: 18px;
  }
  .c-title2 {
    font-size: 28px;
  }
  .c-title3 {
    font-size: 18px;
  }
}
@media(max-width: 767px){
  .c-title1{
    font-size: 24px;
  }
  .c-title1 small{
    font-size: 16px;
  }
  .c-title2 {
    font-size: 22px;
  }
  .c-title1 span, .c-title2 span{
    margin-bottom: 8px;
  }
  .c-title3 {
    font-size: 16px;
  }
  .c-subtitle::before{
    margin-bottom: 10px;
  }
  .c-text1{
    font-size: 14px;
    line-height: 1.8;
  }
  .c-text2{
    font-size: 13px;
    line-height: 2;
  }
}
/**End Title */

/**pallarax*/
.c-pallarax {
  height: 320px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.c-parallax--bg {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
}

.parallax__container {
  position: absolute;
  clip: rect(0px, auto, auto, 0px);
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: -10;
}

.parallax {
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
}

/*custom*/
.c-pallarax__content {
  position: absolute;
  top: 0px;
  left: 0px;
  background: rgb(255, 255, 255);
  width: 683px;
  padding: 72px 55px 94px 160px;
}

.c-pallarax__title {
  font-size: 97px;
  font-weight: bold;
  letter-spacing: 0px;
  line-height: 120%;
}

.c-pallarax__subtt {
  font-size: 37px;
  line-height: 120%;
  margin: 17px 0px 0px;
  letter-spacing: 1.8px;
}

.c-pallarax__desc {
  line-height: 200%;
  font-size: 14px;
  letter-spacing: 2px;
  margin-top: 26px;
  font-weight: bold;
}

@media(max-width: 767px){
  .c-pallarax{
    height: 200px;
  }
}
/**End pallarax*/

/**Nav Menu*/
.c-nav__menu {
  display: flex;
  align-items: flex-end;
  font-family: YuMincho;
}
.c-nav__item{
  display: flex;
  align-items: center;
}
.c-nav__item:after{
  content: '';
  background-color: #111;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  display: block;
  margin-bottom: 1px;
}
.c-nav__link {
  display: block;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0px;
  transition: all 0.4s ease 0s;
  padding: 4px 40px;
  position: relative;
  font-family: YuMincho;
  letter-spacing: 1px;
}

.c-nav__link:hover {
  opacity: 1;
  color: #009FE8;
}

.c-nav__link::before {
  content: "";
  display: block;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  transition: all 0.4s ease 0s;
  background-color: #009FE8;
}

.c-nav__link:hover::before {
  width: 15px;
}

.c-nav__link.c-btn {
  width: 180px;
  height: 50px;
  flex-shrink: 0;
  border: 1px solid #111;
  border-radius: 100px;
  display: inline-flex;
  line-height: 1;
  font-size: 15px;
  margin-left: 20px;
  padding-top: 8px;
}
.c-nav__link.c-btn::after{
  display: none;
}
.c-nav__link.c-btn::before{
  background-color: transparent;
  top: -2px;
  margin-right: 9px;
  position: relative;
  transform: unset;
  left: 0;
}
.c-nav__link.--mail::before{
  background-image: url('../images/common/ic-mailb.png');
  width: 18px;
  height: 14px;
  background-color: transparent;
}
.c-nav__link.--window::before{
  background-image: url('../images/common/ic-windowb.png');
  width: 14px;
  height: 14px;
}

.c-nav__link.--mail:hover::before{
  background-image: url('../images/common/ic-mailw.png');
}
.c-nav__link.--window:hover::before{
  background-image: url('../images/common/ic-windoww.png');
}
.c-nav__link.c-btn:hover{
  border-color: #009FE8;
  background-color: #009FE8;
  color: #fff;
}
.c-menuIcon {
  display: none;
}

@media screen and (max-width: 1500px) {
  .c-nav__link {
    padding: 4px 25px;
  }
}

@media screen and (max-width: 1200px) {
  .c-nav__menu {
    display: block;
    width: 100%;
  }

  .c-nav__item {
    border-left: 0px;
    justify-content: center;
    margin: 22px 0 0;
  }
  .c-nav__item:after{
    display: none;
  }
  .c-nav__link::before{
    top: -8px;
  }
  .c-nav__link:hover{
    opacity: 1;
  }

  .c-nav__item .c-btn{
    margin: auto;
  }
}
@media(max-width: 768px){

}
/**End Nav Menu*/

/**Menu Icon*/
@media screen and (max-width: 1200px) {
  .c-menuIcon {
      display: block;
      height: 35px;
      width: 40px;
      z-index: 1001;
      cursor: pointer;
      margin-left: 25px;
      position: relative;
  }

  .c-menuIcon span {
      width: 100%;
      height: 3px;
      background-color: #009FE8;
      position: absolute;
      left: 0px;
      transition: all 0.2s ease 0s;
  }

  .c-menuIcon span:nth-child(1) {
      top: 0px;
  }

  .c-menuIcon span:nth-child(2) {
      top: 50%;
      transform: translateY(-50%);
  }

  .c-menuIcon span:nth-child(3) {
      bottom: 0px;
  }

  .c-menuIcon.active span:nth-child(1) {
      top: 50%;
      transform: rotate(45deg) translateY(-50%);
  }

  .c-menuIcon.active span:nth-child(2) {
      left: 150%;
      opacity: 0;
  }

  .c-menuIcon.active span:nth-child(3) {
      bottom: 50%;
      transform: rotate(-45deg) translateY(50%);
  }
}
@media screen and (max-width: 767px) {
  .c-menuIcon {
      height: 30px;
  }
}
/**End Menu Icon*/

/**Header*/
.c-header {
  padding-top: 30px;
  position: fixed;
  top: 0;
  left: 0px;
  z-index: 1000;
  width: 100%;
  height: 150px;
  color: rgb(17, 17, 17);
  display: flex;
  align-items: center;
  transition: all 0.4s ease 0s;
  background-color: #fff;
}

.c-header.active {padding-top: 0;height: 120px;}

.c-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: inherit;
  position: relative;
  max-width: 1680px;
}

.c-header__logo {
  flex-shrink: 0;
  width: 384px;
  position: relative;
  z-index: 9999;
}

.c-header__logo img {
  width: 100%;
}

.c-header__group {
  display: flex;
  align-items: center;
}
@media(max-width: 1500px){
  .c-header__logo{
    width: 250px;
  }
}
@media screen and (max-width: 1200px) {
  .c-header,
  .c-header.active{
    padding-top: 0;
    height: 80px;
  }
  .c-header__group {
      display: none;
  }
  .c-header__group {
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100vh;
    background-color: rgb(255, 255, 255);
    justify-content: center;
    z-index: 1000;
    display: flex;
    transform: translateX(100%);
    transition: all ease 0.4s;
    padding-top: 0 !important;
  }
  /* .c-header__group::before{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('../images/common/bg-menu.png');
    background-size: cover;
    background-position: center;
  } */

  .c-header__group.active {
    transform: translateX(0);
  }

}

@media screen and (max-width: 767px) {
  .c-header,
  .c-header.active{
    height: 70px;
  }
  .c-header__logo{
    width: 200px;
  }
  .c-header__logo img{
  }
  .c-header__inner{
    padding: 0 20px;
  }
}
/**End Header*/
/**Footer*/

.c-footer__logo {
  max-width: 100%;
  margin: auto;
  width: 384px;
}
.c-footer .c-nav__menu{
  justify-content: center;
  display: flex;
}
.c-copyright {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0px;
  font-family: 'YuMincho';
  padding-bottom: 120px;
}
@media(max-width: 1200px){
  .c-footer .c-nav__link{
    padding: 4px 15px;
  }
}
@media(max-width: 768px){
  .c-footer .c-nav__link{
    font-size: 13px;
    padding: 4px 12px;
  }
  .c-footer__logo{
    width: 250px;
  }
  .c-footer .c-nav__link.c-btn{
    width: 140px;
  }
}
/**End footer*/

/**Slider*/
.swiper-button-next, .swiper-button-prev{
  width: 72px;
  height: 114px;
  margin-top: 0;
  transform: translateY(-50%);
  transition: all ease 0.4s;
}
.swiper-button-next:hover, .swiper-button-prev:hover{
  opacity: 0.5;
}
.swiper-button-next{
  right: 0;
}
.swiper-button-prev{
  left: 0;
}
.swiper-button-next::after,
.swiper-button-prev::after{
  font-family: initial;
  background-image: url('../images/top/ic-slide-prev.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  content: '';
}
.swiper-button-next::after{
  background-image: url('../images/top/ic-slide-next.png');
}
.swiper-pagination{
  display: none;
}
.swiper-pagination-bullet{
  background: #EEEEEE;
  width: 10px;
  height: 10px;
  opacity: 1;
  margin: 0 3px !important;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active{
   background: #009FE8;
}
@media(max-width: 1200px){
  .swiper-button-next, .swiper-button-prev{
    width: 40px;
    height: 80px;
  }
  .swiper-button-next{
    right: 20px;
  }
   .swiper-button-prev{
    left: 20px;
  }
  
}
@media(max-width: 800px){
  .swiper-pagination{
    display: block;
    position: relative;
    margin-top: 30px;
  }
  
  .swiper-button-next,
  .swiper-button-prev{
    display: none !important;
  }
}
/**End Slider*/

/**News*/
.c-news__card{
  display: flex;
  gap: 10px 0;
  font-weight: bold;
  letter-spacing: 0.6px;
  padding: 22px 20px;
  border-bottom:1px solid #ccc;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  letter-spacing: 0.8px;
}
.c-news__card:last-child{
  border-bottom: 0;
}
.c-news__card::after{
  background-image: url('../images/common/ic-arr-rightbl.png');
  width: 9px;
  height: 16px;
  transition: all ease 0.4s;
  position: absolute;
  right: 20px;
  top: 51%;
  transform: translateY(-50%);
}
.c-news__date{
  font-size: 15px;
  color: #666666;
  transition: all ease 0.4s;
  margin-right: 28px;
}
.c-news__new{
  width: 46px;
  height: 23px;
  color: #fff;
  font-size: 11px;
  background-color: #E82020;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 9px;
  line-height: 1;
  border-radius: 20px;
  padding-top: 2px;
  transform: translateY(-2px);
}
.c-news__title{
  font-size: 15px;
  /* flex: 1; */
  /* min-width: 300px; */
  transition: all ease 0.4s;
}
.c-news__card:hover{
  opacity: 1;
}
.c-news__card:hover::after{
  background-image: url('../images/common/ic-arr-rightb.png');
}

@media(max-width: 768px){
  .c-news__card:last-child{
    border: 0;
  }
  .c-news__card{
    padding: 15px 20px;
  }
  .c-news__title{
    font-size: 13px;
    flex: auto;
    width: 100%;
    min-width: auto;
  }
  .c-news__card::after{
    top: 68%;
  }
  .c-news__date{
    font-size: 12px;
    color: #666666;
    justify-content: center;
    margin-right: 10px;
    display: inline-flex;
  }
  .c-news__new{
    font-size: 9px;
    width: 40px;
    height: 20px;
    margin-right: 0;
  }
}
/**End News*/


/**works*/
.c-works::after{
  background-image: url('../images/top/bg3.png');
  background-size: cover;
  height: 1132px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -5%;
  z-index: -1;
}

.c-works-infor__content{
  width: 506px;
}
.c-works-infor__img{
  width: 640px;
}
.c-works-infor{
  max-width: 1258px;
  color: #fff;
  gap: 2%;
}
.c-works-infor__subtitle{
  font-size: 24px;
  font-weight: bold;
  margin: 34px 0 24px;
  letter-spacing: 0.6px;
}
.c-works-sliders{
  max-width: 1760px;
  gap: 2%;
  position: relative;
  padding: 125px 0 90px;
  padding-left: 140px;
  align-items: center;
}
.c-works-sliders:before{
  content:'';
  background-size:cover;
  background-position: center;
  position:absolute;
  background-image: url('../images/top/bg-slide.png');
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.97;
}
.c-works-slider{
  width: 1160px;
  margin-left: -270px;
  margin-right: 0;
  height: 485px;
  padding-bottom: 30px;
}
.c-works-sliders:before{
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
.c-works-slider img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 100px;
  display: block;
}
.c-works-sliders__content{
  width: 506px;
  color: #fff;
  margin-top: -60px;
}
.c-works-sliders__content .c-text1{
  padding: 0 20px;
}
.c-works-sliders__content .c-btn1.--cus{
  max-width: 46%;
}
.c-works-sliders__content .c-title{
  text-align: left;
  padding: 0 20px;
}
.c-works-slider__img{
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
}
.c-works-slider__img span{
  position: absolute;
  font-size: 22px;
  font-family: YuMincho;
  color: #fff;
  width: 100%;
  text-align: center;
  display: block;
  bottom: -100%;
  transform: translateY(50%);
  z-index: 1;
  font-weight: 400;
  transition: all ease 0.4s;
}

.top-slider .swiper-slide{
  display: flex;
  align-items: center;
  transition: all ease 0.4s;
}
.top-slider .swiper-slide .c-works-slider__img::after{
  content: '';
  background-color: #111;
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all ease 0.4s;
  top: 0;
  left: 0;
  border-radius: 100px;
  display: none;
}
.top-slider .swiper-slide .c-works-slider__img span::before{
  background-image: url('../images/top/ic-more.png');
  background-size: 100%;
  width: 198px;
  height: 67px;
  background-position-y: top;
  background-position-x: -5px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  transition: all ease 0.4s;
  z-index: 2;
}

.top-slider .swiper-slide:hover{
  opacity: 1;
}

.top-slider .swiper-slide:hover .c-works-slider__img::after{
  opacity: 0.5;
}
.top-slider .swiper-slide:hover .c-works-slider__img span{
  bottom: 34%;
}
.top-slider .swiper-wrapper{
  align-items: center;
}
.top-slider .swiper-pagination{
  display: flex;
  justify-content: flex-end;
  bottom: 0;
}
.top-slider .swiper-pagination-bullet{
  background: #fff;
  width: 10px;
  height: 10px;
  margin: 0 5px !important;
  opacity: 1 !important;
}

/*Left*/
.c-works-sliders.--left:before{
  transform: rotate(180deg);
}
.top-slider .swiper-pagination-bullet-active{
  background: #9AD9F6;
}
.top-slider .swiper-slide.swiper-slide-active{
  width: 460px !important;
}
.top-slider .swiper-slide.swiper-slide-next{
  width: 640px !important;
}
.top-slider .swiper-slide.swiper-slide-active img{
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
}
.c-works-sliders.--left{
  padding-right: 140px;
}
.c-works-sliders.--left .swiper-pagination{
  padding-right: 30px;
}
/*Right*/
.c-works-sliders.--right .swiper-pagination{
  padding-left: 30px;
}
.c-works-sliders.--right{margin-right: 0;margin-left: auto;}
.--right .top-slider .swiper-pagination{
  justify-content: flex-start;
}

.--right .c-works-slider{
    margin-left: auto !important;
    margin-right: -115px;
}
.--right .top-slider .swiper-slide.swiper-slide-active{
  width: 640px !important;
}
.--right .top-slider .swiper-slide.swiper-slide-next{
  width: 460px !important;
}
.--right .top-slider .swiper-slide.swiper-slide-active img{
  filter: unset;
  -webkit-filter: unset;
  -moz-filter: unset;
  -ms-filter: unset;
  -o-filter: unset;
}
.--right .top-slider .swiper-slide.swiper-slide-next img{
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
}
@media(max-width: 1650px){
  .c-works-sliders{
    max-width: 1260px;
    align-items: center;
    padding-left: 70px;
  }
  
  /*Left*/
  .c-works-sliders.--left{
    padding-right: 70px;
  }
  .c-works-slider{
    width: 830px;
    height: 380px;
    margin-left: -240px;
  }
  .top-slider .swiper-slide.swiper-slide-active{
    width: 320px !important;
  }
  .top-slider .swiper-slide.swiper-slide-next{
    width: 480px !important;
  }
  /*Right*/
  .--right .c-works-slider{
    margin-right: -150px;
  }
  .--right .top-slider .swiper-slide.swiper-slide-active{
    width: 480px !important;
  }
  .--right .top-slider .swiper-slide.swiper-slide-next{
    width: 320px !important;
  }
}
@media(max-width: 1400px){
  .c-works-sliders{
    max-width: 1024px;
    align-items: center;
  }
  .c-works-slider img,
  .top-slider .swiper-slide .c-works-slider__img::after{
    border-radius: 50px;
  }
  .top-slider .swiper-slide .c-works-slider__img::before{
    width: 120px;
  }
  /* .c-works-sliders__content .c-btn1.--cus{
    max-width: 100%;
  } */
  /*Left*/
  .c-works-slider{
    width: 650px;
    height: 300px;
  }
  .c-works-sliders__content{
    width: 400px;
  }
  .c-works-infor__subtitle{
    font-size: 20px;
  }
  .top-slider .swiper-slide.swiper-slide-active{
    width: 250px !important;
  }
  .top-slider .swiper-slide.swiper-slide-next{
    width: 370px !important;
  }

  /*Right*/
  .--right .top-slider .swiper-slide.swiper-slide-active{
    width: 370px !important;
  }
  .--right .top-slider .swiper-slide.swiper-slide-next{
    width: 250px !important;
  }
}
@media(max-width: 1024px){
  .top-slider .swiper-slide:hover .c-works-slider__img span::before{
    width: 140px;
    height: 48px;
    bottom: 38px;
  }
  .c-works-slider__img span{
    font-size: 18px;
  }
  .c-works-sliders{
    padding: 105px 0 50px;
    padding-left: 30px;
  }
  .c-works-sliders:before{
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
  }
  /*Left*/
  .c-works-slider{
    width: 500px;
    /* flex: 0 0 500px; */
    height: 250px;
    margin-left: -110px;
  }
  .c-works-sliders.--left{
    padding-right: 30px;
    padding-left: 0;
  }
  .c-works-sliders__content{
  width: 48%;
  padding: 0 20px;
  }
  .c-works-infor__subtitle{
    font-size: 18px;
  }
  .top-slider .swiper-slide.swiper-slide-active{
    width: 200px !important;
  }
  .top-slider .swiper-slide.swiper-slide-next{
    width: 285px !important;
  }
  

  /*Right*/
  .--right .c-works-slider{
    margin-right: -110px;
  }
  .--right .top-slider .swiper-slide.swiper-slide-active{
    width: 285px !important;
  }
  .--right .top-slider .swiper-slide.swiper-slide-next{
    width: 200px !important;
  }
}

@media(max-width: 768px){
  .c-works-infor{
    flex-wrap: wrap;
  }
  .c-works-infor__img{
    order: 1;
  }
  .c-works-infor__content{
    order: 2;
  }
  .c-works-infor__subtitle{
    font-size: 18px;
    line-height: 1.6;
    margin: 18px 0;
  }
  .c-works-infor .top-block2-infor2__txt.--cus{
    width: calc(100% + 20px);
    margin-left: -10px;
  }

  .c-works-sliders,
  .c-works-sliders.--left{
    flex-wrap: wrap;
    padding: 40px 20px;
    position: relative;
  }
  .c-works-slider{
    width: 100%;
    margin: auto !important;
    height: inherit;
    padding-bottom: 0;
    order: 1;
  }
  .c-works-sliders__content{
    padding: 0;
    width: 100%;
    order: 2;
    margin-top: 0;
    text-align: center;
  }
  .c-works-sliders .c-title1.--sp{
    text-align: center;
    width: 100%;
    color: #fff;
  }
  .c-works-sliders.--right .c-title1.--sp{
    text-align: center;
  }
  .top-slider .swiper-slide.swiper-slide-next, .top-slider .swiper-slide.swiper-slide-active,.--right .top-slider .swiper-slide.swiper-slide-active,.--right .top-slider .swiper-slide.swiper-slide-next{
    width: inherit !important;
  }
  .top-slider .swiper-slide.swiper-slide-active img, .--right .top-slider .swiper-slide.swiper-slide-active img,.--right .top-slider .swiper-slide.swiper-slide-next img{
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -ms-filter: grayscale(0);
    -o-filter: grayscale(0);
  }
  .top-slider .swiper-pagination{
    margin-top: 20px;
    justify-content: center !important;
  }
  .top-slider .swiper-pagination-bullet{
    width: 7px;
    height: 7px;
    margin: 0 3px !important;
  }
  .top-slider .swiper-slide:hover .c-works-slider__img span::before{
    width: 100px;
    height: 35px;
    bottom: 30px;
  }
  .c-works-slider__img span{
    font-size: 16px;
  }
  .top-slider .swiper-slide:hover .c-works-slider__img span{
    bottom: 35%;
  }

  .c-works-sliders:before{
    border-radius: 0;
  }

  .--right .c-works-sliders__content{
    margin-top: 0;
    text-align: center;
  }
  .c-works-sliders__content .c-btn1.--cus{
    width: 180px;
    height: 45px;
    padding: 4px 20px;
    max-width: 100%;
  }
}

/**End works*/

/**Top news*/
.top-news{
  background-color: #eee;
  padding: 100px 20px;
  background-image: url('../images/top/bg4.png');
  background-size: cover;
  background-position: center;
  width: 100%;
  max-width: 1420px;
  border-radius: 100px;
  margin: auto;
}
.top-news__inner{
  max-width: 1100px;
}
.top-news-flex{
  background-color: #fff;
  padding: 32px 70px 56px;
  border-radius: 50px;
  gap: 40px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}
.top-news__title{
  width: 200px;
  text-align: center;
}
.top-news__title h2{
  font-size: 26px;
  font-weight: bold;
  font-family: YuMincho;
  color: #009FE8;
  letter-spacing: 0;
}
.top-news__title a{
  font-size: 16px;
  color: #666666;
  font-weight: bold;
  display: block;
  letter-spacing: 0;
}
.top-news__content{
  flex: 1;
}
.top-news .c-btns{
  gap: 20px 30px;
}
@media(max-width: 1200px){
  .top-news-flex{
    gap: 20px;
    padding: 45px 50px;
  }
  .top-news__title{
    width: 160px;
  }
}
@media(max-width: 1024px){
  .top-news-flex{
    gap: 25px;
    padding: 23px 50px 45px;
  }
  .top-news__title{
    width: 120px;
  }
  .top-news{
    padding: 100px 0;
  }
}
@media(max-width: 768px){
  .top-news{
    padding: 40px 0;
    border-radius: 0;
  }
  .top-news-flex{
    flex-wrap: wrap;
    padding: 30px 15px 40px;
  }
  .top-news__title{
    width: auto;
  }
  .top-news__content{
    flex: auto;
    width: 100%;
  }
  .top-news__title a{
    font-size: 14px;
    color: #666;
  }
  .top-news__title h2{
    line-height: 1.2;
  }
}
/**End Top News*/


/**Loading*/
.c-loading{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  transition: all ease 1s;
}
.c-loading.open{
  z-index: 9999999;
  opacity: 1;
}
.c-loading__header {
  position:relative;
  text-align:center;
  background-color: #fff;
  color:white;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

}
/* .c-loading__header:before{
  content: '';
  background-image: url('../images/top/wave-bg.png');
  background-repeat: repeat-x;
  background-position: center;
  background-size: cover;
  position: absolute;
  width: 6248px;
  height: 1287px;
  bottom: -20%;
  left: -47%;
  opacity: 0.5;
} */

.c-loading__logo {
  width:50px;
  fill:white;
  padding-right:15px;
  display:inline-block;
  vertical-align: middle;
}
.c-loading__img{
  width: 60%;
  max-width: 261px;
  opacity: 1;
  animation: fade 2s linear infinite;
}
.c-loading__inner-header {
  width:100%;
  margin: 0;
  position: absolute;
  padding: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.flex { /*Flexbox for containers*/
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.waves {
  position:relative;
  width: 100%;
  height:15vh;
  margin-bottom:-7px; /*Fix for safari gap*/
  min-height:100px;
  max-height:150px;
}

.content {
  position:relative;
  height: 25vh;
  text-align:center;
  background-color: white;
}
.c-loading__parallax{
}
/* Animation */

.c-loading__parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.c-loading__parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.c-loading__parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.c-loading__parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.c-loading__parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}
@keyframes fade {
  0%,100% { opacity: 0.4 }
  50% { opacity: 1 }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height:40px;
    min-height:40px;
  }
  .content {
    height:30vh;
  }
}
/**End Loading*/
/**Video*/
.top-video{
  height: 540px;
  position: relative;
}
.top-video video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.top-video::before{
  content: '';
  width: 100%;
  height: 100%;
  z-index: 0;
  background: #111;
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 0;
}
.top-video::after{
  background-image: url('../images/top/logo.png');
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 400px;
  height: 166px;
  z-index: 1;
}
@media(max-width: 768px){
  .top-video{
    height: 280px;
  }
  .top-video::after{
    
width: 250px;
  }
}
/**End video*/

/**Socials*/
.c-socials{
  position: fixed;
  right: 0;
  top: 40%;
  z-index: 9;
  transition: all ease 0.7s;
}
.c-socials.hide{
  right: -100%;
}
.c-socials__link{
  width: 140px;
  background-color: #fff;
  font-family: YuMincho;
  font-size: 12px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  border-top-left-radius: 50px;
  display: block;
  border-bottom-left-radius: 50px;
  text-align: center;
  padding: 44px 10px 42px;
}
.c-socials__link ~ .c-socials__link{
  margin-top: 20px;
}
.c-socials__link img{
  width: 24px;
}
.--ic-insta::before,
.--ic-x::before{
  background-image: url('../images/common/ic-insta-b.png');
  width: 24px;
  height: 24px;
  display: block;
  margin: 0 auto 12px;
  transition: all ease 0.4s;
}
.--ic-x::before{
  background-image: url('../images/common/ic-x-b.png');
}
.c-socials__link:hover{
  opacity: 1;
  color: #fff;
  background-color: #009FE8;
  border: 1px solid #009FE8;
}
.c-socials__link.--ic-insta:hover::before{
  background-image: url('../images/common/ic-insta-w.png');
}
.c-socials__link.--ic-x:hover::before{
  background-image: url('../images/common/ic-x-w.png');
}
@media(max-width: 1024px){
  .c-socials__link{
    width: 100px;
    padding: 20px 5px;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
    font-size: 10px;
  }
  .--ic-insta::before, .--ic-x::before{
    width: 18px;
    height: 18px;
  }
}
@media(max-width: 768px){
  .c-socials{
    top: auto;
    bottom: 0;
    width: 100%;
    display: flex;
  }
  .c-socials__link{
    width: 50%;
    border-radius: 0;
    color: #fff;
    background-color: #009FE8;
    margin-top: 0 !important;
    box-shadow: unset;
    padding: 15px 5px;
  }
  .c-socials__link ~ .c-socials__link{
    border-left: 1px solid #fff;
  }
  .c-socials__link:hover{
    opacity: 0.5;
  }
  .c-socials__link.--ic-x::before{
    background-image: url(../images/common/ic-x-w.png);
  }
  .c-socials__link.--ic-insta::before{
    background-image: url(../images/common/ic-insta-w.png);
  }
}
/**End Socials*/

/* SCROLLDOWN */
.c-scrolldown {
  position: fixed;
  background-color: #fff;
  border-radius: 100px;
  width: 100px;
  height: 100px;
  bottom: 44px;
  right: 40px;
  display: flex;
  align-content: center;
  justify-content: center;
  font-size: 10px;
  text-align: center;
  flex-wrap: wrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: all ease 0.7s;
}
.hide .c-scrolldown{
  right: -100%;
}
.c-scrolldown::before{
  background-image: url('../images/common/ic-arr-downb.png');
  width: 24px;
  height: 14px;
  margin-bottom: 10px;
  transition: all ease 0.4s;
}
.c-scrolldown span{
  display: block;
  width: 100%;
}
.c-scrolldown.toTop::before{
  transform: rotate(180deg);
}
.c-scrolldown:hover{
  opacity: 1;
  background-color: #009FE8;
  color: #fff;
}
.c-scrolldown:hover::before{
  background-image: url('../images/common/ic-arr-downw.png');
}
@media(max-width: 1024px){
  .c-scrolldown{
    width: 70px;
    height: 70px;
    right: 20px;
    bottom: 20px;
  }
  .c-scrolldown::before{
    width: 18px;
    height: 8px;
  }
}
@media(max-width: 768px){
  .c-scrolldown{
    width: 60px;
    height: 60px;
    right: 10px;
    bottom: 100px;
  }
}
/* END SCROLLDOWN */
/**About*/
.c-about--inner{
  height: 525px;
}
.c-about::before{
  background-image: url('../images/top/bg1.jpg');
  height: 524px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.c-about__title{
  font-family: YuMincho;
  font-size: 28px;
}
.c-about__title strong{
  font-size: 38px;
}
.c-about .c-text1{
  font-family: YuMincho;
}
.c-about__slider .swiper-wrapper{
}
.c-about__slider .swiper-slide{transition: all ease 0.4s;border-radius: 50%;/* height: 320px; */aspect-ratio: 320/320;}
.c-about__slider .swiper-slide img{border-radius: 50%;height: 100%;object-fit: cover;object-position: center;aspect-ratio: 1/1;}
.c-about__slider .swiper-slide.swiper-slide-prev,
.c-about__slider .swiper-slide.swiper-slide-next{
margin-top: 107px;
}

@media(max-width: 1600px){
  .c-about--inner,
  .c-about::before{
    height: 360px;
  }
}
@media(max-width: 1400px){
  .c-about--inner,
  .c-about::before{
    height: 325px;
  }
}
@media(max-width: 1200px){
  .c-about--inner,
  .c-about::before{
    height: 290px;
  }
}
@media(max-width: 1024px){
  .c-about__slider{
    top: 0;
    transform: translateY(150px);
  }
  .c-about__title{
    font-size: 24px;
  }
  .c-about__title strong{
    font-size: 30px;
  }
}
@media(max-width: 768px){
  .c-about--inner{
    height: auto;
  }
.c-about__slider .swiper-slide.swiper-slide-prev,
.c-about__slider .swiper-slide.swiper-slide-next{
  margin-top: 0;
}
.c-about__slider{
  margin-top: 0;
  transform: translateY(0);
}
    .c-about__title{
    font-size: 20px;
  }
  .c-about__title strong{
    font-size: 26px;
  }
}
/**End About*/

.top_bg{
    background: url(../images/contact/contact_bg.jpg) center center;
    background-size: cover;
    padding: 20vw 0;
}