@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: 15px;
  line-height: 1.8;
  text-size-adjust: 100%;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
  background-color: rgba(251,247,201, 0.2);
}

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;
}
h2,h3,h4,h5,h6{
  line-height: 1.6;
}
.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 currentColor;
  color: #1AA086;
}
.c-video{
  width: 100%;
  height: 570px;
}
.c-video video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media(max-width: 1024px){
  .c-video{
    height: 400px;
  }
}
@media(max-width: 768px){
  .c-video{
    height: 200px;
  }
}
/**Btn*/
.c-btn-list {
  display: flex;
  justify-content: center;
  gap: 20px 40px;
}
  
  .c-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0px;
    position: relative;
    line-height: 1;
    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: 20px 10px;
      flex-wrap: wrap;
    }
  }
  /*Custom btn*/
  .c-btn1 {
    background: #fff;
    color: #111;
    border: 1px solid #fff;
    padding: 14px 10px;
    padding-left: 3.2%;
    width: 300px;
    height: 78px;
    border-radius: 60px;
    font-size: 17px;
    justify-content: flex-start;
  }
  
  .c-btn1::before {
    margin-right: 9px;
    background-image: url("../images/common/ic-arrow-btn-b.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    width: 18px;
    height: 17px;
    margin-top: -2px;
  }
  
  .c-btn1.active, .c-btn1:hover {
    color: #1AA086;
  }
  
  .c-btn1:hover::before {
    background-image: url("../images/common/ic-arrow-btn-g.png");
  }
  
  .c-btn2 {
    font-size: 18px;
    line-height: 1;
    border: 2px solid rgb(245, 112, 11);
    padding: 18px;
    background-color: rgb(255, 255, 255);
    color: rgb(245, 112, 11);
  }
  
  .c-btn3 {
    font-size: 18px;
    border: 2px solid currentcolor;
    padding: 18px;
    width: 100%;
    max-width: 260px;
  }
  
  .c-btn-footer {
    border: 1px solid rgb(169, 140, 7);
    border-radius: 30px;
    font-size: 20px;
    color: rgb(169, 140, 7);
    width: 300px;
    height: 64px;
  }
  
  .c-btn-footer:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(169, 140, 7);
  }
  
  .c-btn-footer::before {
    margin-top: -3px;
    margin-right: 13px;
    width: 24px;
    height: 24px;
  }
  
  .c-btn-footer.ic-line::before {
    background-image: url("../images/common/ic-line.png");
  }
  
  .c-btn-footer.ic-line:hover::before {
    background-image: url("../images/common/ic-line-hv.png");
  }
  
  .c-btn-footer.ic-mail::before {
    background-image: url("../images/common/ic-mail.png");
  }
  
  .c-btn-footer.ic-mail:hover::before {
    background-image: url("../images/common/ic-mail-hv.png");
  }
  
  .c-btn4 {
    background: transparent;
    border-bottom: 1px solid #ccc;
    padding: 0 20px 28px;
    width: 440px;
    justify-content: space-between;
    text-align: left;
    line-height: 1.4;
    font-size: 18px;
  }
  .c-btn4::after {
    background-image: url("../images/common/ic-arr-b.png");
    width: 10px;
    height: 16px;
    transition: all ease 0.4s;
  }
  .c-btn4::before {
    width: 60px;
    background: #1AA086;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -1px;
    display: block;
  }
  .c-btn4:hover{
    color: #1AA086;
  }
  .c-btn4:hover::before {
    width: 100%;
  }
  .c-btn4:hover::after{
    background-image: url("../images/common/ic-arr-g.png");
  }

  .c-btn-pdf{
    background-color: #1AA086;
    border-radius: 100px;
    width: 770px;
    height: 106px;
    justify-content: center;
    gap: 10px;
    border: 1px solid #1AA086;
    color: #fff;
    max-width: 100%;
    font-size: 16px;
  }
  .c-btn-pdf::before{
    background-image: url("../images/common/ic-pdf-w.png");
    width: 20px;
    height: 27px;
    margin-bottom: 2px;
  }
  .c-btn-pdf:hover{
    opacity: 1;
    background-color: #fff;
    color: #1AA086;
  }
  .c-btn-pdf:hover::before{
    background-image: url("../images/common/ic-pdf-g.png");
  }
  @media(max-width: 767px){
    .c-btn1 {
      font-size: 13px;
      width: 160px;
    }
    .c-btn1::before{
      width: 10px;
      height: 12px;
    }
    .c-btn-footer{
      width: 200px;
      font-size: 13px;
      height: 50px;
    }
    .c-btn-footer::before{
      width: 19px;
      height: 19px;
      margin-right: 8px;
    }
	.c-btn4{
	  max-width: 270px;
	  font-size: 13px;
	  padding: 0 10px 15px;
	 }
	.c-btn4::after{
		width: 6px;
		height: 12px;
	}
	  .c-btn-pdf{
		font-size: 13px;
		height: 50px;
		width: 240px;
	 }
	  .c-btn-pdf::before{
		  width: 13px;
		  height: 17px;
		  margin-bottom: 5px;
		 }
  }
  /**End btn*/
  
/*Title*/
.c-title {
  text-align: center;
  font-weight: 600;
}

.c-title span {
  display: block;
  text-align: center;
  color: #1AA086;
}
.c-title.--bord::after{
  content: '';
  width: 16px;
  height: 1px;
  margin: 22px auto 0;
  display: block;
  background-color: #111;
}
.c-title.--bord2::after{
  content: '';
  width: 70px;
  height: 8px;
  margin: 22px auto 0;
  display: block;
  background-image: url('../images/common/line.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
/*custom*/
.c-title1 {
  font-size: 42px;
}
.c-title2 {
  font-size: 32px;
}

.c-title1 span,
.c-title2 span
{
  color: rgb(169, 140, 7);
  margin-bottom: 17px;
  font-size: 10px;
}
 
@media(max-width: 1024px){
  .c-title1{
    font-size: 38px;
  }
  .c-title2 {
    font-size: 28px;
  }
}
@media(max-width: 767px){
	.c-title{
		line-height: 1.4;
	}
  .c-title1{
    font-size: 24px;
  }
  .c-title2 {
    font-size: 22px;
  }
  .c-title1 span, .c-title2 span{
    margin-bottom: 8px;
  }
	.c-title.--bord::after{
		margin-top: 15px;
	}
}
/**End Title */

/**Nav Menu*/
.c-nav__menu {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
.c-nav__item{
}
.c-nav__link {
  display: block;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0px;
  transition: all 0.4s ease 0s;
  padding: 55px 30px 35px;
  position: relative;
  color: #111;
  max-height: 120px;
}

.c-header.active .c-nav__link {
  color: rgb(17, 17, 17);
}

.c-nav__link:hover {
  opacity: 1;
  color: #1AA086;
}

.c-nav__link::before {
  content: "";
  display: block;
  position: absolute;
  top: 41%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: #1AA086;
  transition: all 0.4s ease 0s;
}

.c-nav__link:hover::before {
  width: 18px;
}
.c-nav__item.c-nav__btn{
  display: flex;
  align-items: flex-end;
  gap: 30px;
  margin-left: 50px;
}
.c-nav__item .--insta{
  background-image: url('../images/common/insta-bg.png');
  background-position: center;
  background-size: cover;
  border-radius: 100px;
  padding: 15px;
}
.c-nav__item .--insta img{
  display: block;
  width: 20px;
  transition: all ease 0.4s;
}
.c-nav__item .--insta:hover{
  opacity: 1;
}
.c-nav__item .--insta:hover img{
  opacity: 0.5;
}
.c-nav__item .c-btn {
  width: 180px;
  height: 50px;
  color: #fff;
  border-radius: 100px;
  background-image: url('../images/common/btn-bg.png');
  background-position: center;
  background-size: cover;
  gap: 10px;
  border: 1px solid currentColor;
}
.c-nav__item .c-btn::before{
  background-image: url('../images/common/ic-mail-W.png');
  height: 14px;
  width: 18px;
}
.c-nav__item .c-btn:hover{
  color: #1AA086;
  background: #fff;
}
.c-nav__item .c-btn:hover::before{
  background-image: url('../images/common/ic-mail-G.png');
}

.c-menuIcon {
  display: none;
}
.has-submenu{
  position: relative;
}
.submenu{
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  background-color: rgba(26,160,134, 0.94);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  width: 220px;
  padding: 35px 10px;
  opacity: 0;
  pointer-events: none;
  transition: all ease 0.4s;
}
.submenu li{
  padding: 0 10px 17px;
  max-width: 140px;
  margin: auto;
}

.submenu li ~ li{
  padding: 17px 10px;
  border-top: 1px solid rgba(255,255,255, 0.1);
}
.submenu li:last-child{
  padding-bottom: 0;
}
.has-submenu:hover .submenu{
  opacity: 1;
  top: 100%;
  z-index: -1;
  pointer-events: auto;
}
@media screen and (max-width: 1350px) {
  .c-nav__link {
  font-size: 14px;
  padding: 55px 20px 35px;
  }
}

@media screen and (max-width: 1200px) {
  .c-nav__menu {
    display: block;
    width: 100%;
  }
	.has-submenu:hover .submenu{
		z-index: 999;
	}
  .c-nav__item {
    border-left: 0px;
  }
	.c-nav__item.c-nav__btn{
		margin: 20px auto 0;
		flex-wrap: wrap;
		max-width: 200px;
		justify-content: center;
		gap: 13px;
	}
  .c-nav__link {
    /* color: #fff !important; */
    height: auto;
    max-height: unset;
    padding: 10px 20px;
  }
	.has-submenu:hover .c-nav__link,
  .c-nav__link:hover{
    opacity: 1;
    color: #1AA086 !important;
  }

  .c-nav__item--last .c-btn {
      margin: 0px auto;
      width: 100%;
      max-width: 300px;
      padding: 20px;
  }
}
/**End Nav Menu*/

/**Menu Icon*/
@media screen and (max-width: 1200px) {
  .c-menuIcon {
      display: block;
      height: 30px;
      width: 40px;
      z-index: 1001;
      cursor: pointer;
      margin-left: 25px;
      position: relative;
  }

  .c-menuIcon span {
      width: 100%;
      height: 3px;
      background-color: rgb(29 162 136);
      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: 45%;
      transform: rotate(-45deg) translateY(50%);
  }
}
@media screen and (max-width: 767px) {
  .c-menuIcon {
      height: 23px;
      width: 30px;
  }
}
/**End Menu Icon*/

/**Header*/
.c-header {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1000;
  width: 100%;
  color: rgb(17, 17, 17);
  display: flex;
  align-items: center;
  transition: all 0.4s ease 0s;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}

.c-header.active {
  background-color: rgb(255, 255, 255);
}

.c-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: inherit;
  position: relative;
  padding: 0px 50px;
  width: 100%;
}

.c-header__logo {
  flex-shrink: 0;
  width: 322px;
  padding-top: 5px;
}

.c-header__logo img {
  width: 100%;
  display: block;
}

.c-header__group {
  display: flex;
  align-items: center;
}

.c-logo2 {
  display: none;
}
.c-header.active .c-header__group {
  /* padding-top:6px; */
}
.c-header.active .c-logo2 {
  display: block;
}

.c-header.active .c-logo1 {
  /* display: none; */
}
@media(max-width:1350px){
	.c-header__logo{
		width: 280px;
	}
}
@media screen and (max-width: 1200px) {
	.c-header__inner{
		padding: 15px 20px;
	}
	.c-header__logo{
		width: 200px;
	}
  .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 {
    height: 70px;
  }
  .c-header__logo{
    width: 200px;
  }
  .c-header__logo img{
    width: 150px;
  }
  .c-header__inner{
    padding: 0 20px;
  }
}
/**End Header*/
/**Footer*/
.c-footer{
	background-image: url('../images/common/bg-ft.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	padding-top: 175px;
}

.c-footer-content {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: YuMincho;
  font-weight: 600;
  text-align: center;
  color: rgb(255, 255, 255);
  z-index: 2;
}

.c-footer-content__left, .c-footer-content__right {
  width: 50%;
}

.c-footer-content::after {
  content: "";
  height: 131px;
  width: 1px;
  background: rgb(204, 204, 204);
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.c-footer-content__title {
  font-size: 18px;
}

.c-footer-content__title::before, .c-footer-content__title::after {
  content: "";
  display: block;
}

.c-footer-content__title::before {
  width: 30px;
  height: 1px;
  background-color: rgb(255, 255, 255);
  margin: 0px auto 18px;
}

.c-footer-content__title::after {
  background-image: url("../images/common/footer-line.png");
  background-size: contain;
  background-position: center center;
  height: 1px;
  width: 100%;
  max-width: 181px;
  margin: 5px auto 20px;
}

.c-footer-content__txt {
  font-size: 15px;
  margin-top: 19px;
}

.c-footer__bottom {
  text-align: center;
}

.c-footer__logo {
	max-width: 100%;
	width: 383px;
	margin: auto;
	display: block;
}
.c-footer__logo img{
	width: 100%;
	display: block;
}
.c-footer__title {
  font-family: YuMincho;
  font-weight: 600;
  font-size: 24px;
  text-align: center;
}

.c-footer__title span {
  color: rgb(40, 126, 181);
  display: inline-block;
  border-bottom: 1px solid currentcolor;
}

.c-footer__menu {
  display: flex;
  justify-content: center;
  gap: 10px 30px;
  margin-top: 50px;
}

.c-footer__menu a {
  position: relative;
  font-size: 16px;
  color: #fff;
}
.c-footer__menu a::after{
  position: absolute;
  content: "";
  background: #FFF;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.c-footer__menu a:hover{
  opacity: 1;
}
.c-footer__menu a:hover::after{
  width: 100%;
}

.c-footer__menu a::before {
  content: "|";
  display: inline-block;
  width: 1px;
  height: 100%;
  position: absolute;
  left: -18px;
  top: -5px;
}

.c-footer__menu li:first-child a::before {
  display: none;
}
.c-footer__nav2{
  display: flex;
  gap: 40px 10%;
  width: 100%;
  max-width: 640px;
  margin: auto;
  justify-content: center;
}
.c-footer__nav2 h3{
	font-size: 20px;
	margin-bottom: 10px;
}
.c-footer__nav2 a{
	font-size: 14px;
}
.c-footer__menu2{
  width: 150px;
  color: #fff;
  text-align: left;
}

.c-footer__nav .--btn-contact{
	border-radius: 100px;
	font-size: 16px;
	color: #fff;
	border: 1px solid currentColor;
	width: 220px;
	height: 50px;
	gap: 10px;
}
.c-footer__nav .--btn-contact::before {
    background-image: url(../images/common/ic-mail-W.png);
    height: 14px;
    width: 18px;
}
.c-footer__nav .--btn-contact:hover{
	background-color: #fff;
	color: #1AA086;
}
.c-footer__nav .--btn-contact:hover::before{
	background-image: url(../images/common/ic-mail-G.png);
}
.c-footer__btns{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}
.c-footer__btns .c-btn, .c-footer__btns .c-btn img{
	border-radius: 60px;
	transition: all ease 0.4s;
}
.c-footer__btns .c-btn{
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
	width: 313px;
	height: 84px;
	background-color: #fff;
}
.c-footer__btns .c-btn img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
.c-footer__btns .c-btn:hover{
	opacity: 1;
}
.c-footer__btns .c-btn:hover img{
	opacity: 0.5;
}
.c-copyright {
  font-size: 14px;
  letter-spacing: 0px;
  color: #fff;
  padding: 25px 0px 50px;
}

@media(max-width: 767px){
  .c-footer{
	  padding-top: 60px;
  }
	.c-footer__menu a{
		font-size: 13px;
	}
 
  .c-footer__logo{
    margin-bottom: 15px;
    width: 200px;
  }
  
  .c-footer__menu{
    flex-wrap: wrap;
    margin-top: 20px;
	  line-height: 1.4;
  }
	.c-footer__nav2 h3{
		font-size: 14px;
	}
	.c-footer__nav2 a{
		font-size: 11px;
	}
	.c-footer__nav2{
		gap: 20px 3%;
	}
	.c-footer__nav .--btn-contact{
		font-size: 13px;
		width: 160px;
		height: 40px;
		gap: 7px;
	}
	.c-footer__nav .--btn-contact::before{
		width: 14px;
		height: 11px;
		margin-bottom: 2px;
	}
	.c-footer__btns .c-btn{
		width: 260px;
		height: 50px;
	}
	.c-footer__btns{
		gap: 20px;
	}
	.c-copyright{
		font-size: 12px;
		padding-top: 0;
	}
}


/* SCROLLDOWN */
.c-scrolldown {
  position: fixed;
  background-color: #fff;
  border-radius: 100px;
  width: 80px;
  height: 80px;
  bottom: 50px;
  right: 50px;
  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;
  z-index: 4;
}
.hide .c-scrolldown{
  right: -100%;
}
.c-scrolldown::before{
  background-image: url('../images/common/ic-arr-downb.png');
  width: 20px;
  height: 11px;
  margin-bottom: 5px;
  transition: all ease 0.4s;
}
.c-scrolldown span{
  display: block;
  width: 100%;
  color: #111;
  font-size: 10px;
}
.c-scrolldown.toTop::before{
  transform: rotate(180deg);
}

@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: 40px;
    height: 40px;
    right: 10px;
    bottom: 10px;
    align-content: center;
  }
	.c-scrolldown span{
		font-size: 8px;
		line-height: 1.2;
	}
	.c-scrolldown::before{
		margin-bottom: 5px;
		width: 15px;
		height: 5px;
	}
}
/* END SCROLLDOWN */
/**Slider*/
.slider--wrapper {
	width: 100%;
	position: relative;
}

.swiper {
	margin-bottom: -20px;
}

.swiper-button-next,
.swiper-button-prev {
	width: 68px;
	height: 136px;
	margin-top: 0;
	transform: translateY(-65%);
	transition: all ease 0.4s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	opacity: 0.5;
}

.swiper-button-next {
	right: 20px;
}

.swiper-button-prev {
	left: 20px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
	font-family: initial;
	background-image: url('../images/common/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/common/ic-slide-next.png');
}

.swiper-wrapper {
	padding-bottom: 20px;
}
	.swiper-pagination {
		display: block;
		position: relative;
		margin-top: 20px;
	}

	.swiper-pagination-bullet {
		background: #ccc;
		width: 10px;
		height: 10px;
		opacity: 1;
	}

	.swiper-pagination-bullet.swiper-pagination-bullet-active {
		background: #1AA086;
	}

@media(max-width: 800px) {
	.swiper-button-next,
	.swiper-button-prev {
		display: none !important;
	}

	.swiper {
		padding: 0 !important;
	}
}

/*End Slider*/
/**Tab*/
.c-tabs{
  display: flex;
  gap: 20px;
  max-width: 1060px;
  justify-content: center;
}
.c-tab{
  font-size: 15px;
  display: inline-flex;
  text-align: center;
  justify-content: space-between;
  align-items: center;
  width: 240px;
  padding: 12px 30px;
  border-radius: 100px;
  gap: 10px;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}
.c-tab::after{
  content:'';
  display: block;
  width: 10px;
  height: 8px;
  background-image: url('../images/common/ic-arr-downb.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.c-tab:hover,.c-tab.active{
	opacity: 1;
	background-color: #1AA086;
	color: #fff;
}
.c-tab:hover::after{
	background-image: url('../images/common/ic-arr-downW.png');
	transform: rotate(0deg);
	width: 8px;
	height: 8px;
}
.c-tabs.--col3{
  max-width: 800px;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.c-tabs.--col3 .c-tab{
  width: 240px;
}
@media(max-width: 768px){
	.c-tabs,
  .c-tabs.--col3{
		flex-wrap: wrap;
		gap: 15px 4%;
		max-width: 430px;
	}
	.c-tab,.c-tabs.--col3 .c-tab{
    font-size: 13px;
    width: 48%;
    padding: 10px 15px;
 }
}
/**End Tab*/

/**Top news*/
.c-news__card{
  display: flex;
  gap: 10px 0;
  font-weight: bold;
  letter-spacing: 0.6px;
  padding: 22px 50px;
  border-bottom: 1px dashed #ccc;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  letter-spacing: 0.8px;
  background-color: #fff;
}
.c-news__card:nth-child(even){
	background-color: #F1FAF8;
}
.c-news__card:first-child{
	padding-top: 15px;
}
.c-news__card:last-child{
  border-bottom: 0;
}
.c-news__card::after{
  background-image: url('../images/common/ic-arr-b.png');
  width: 9px;
  height: 16px;
  transition: all ease 0.4s;
  position: absolute;
  right: 20px;
  top: 51%;
  transform: translateY(-50%);
}
.c-news__details{
  display: flex;
  align-items: center;
}
.c-news__date{
  font-size: 15px;
  color: #111;
  transition: all ease 0.4s;
  margin-right: 35px;
  margin-top: 1px;
}
.c-news__cat{
	width: 110px;
	height: 23px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 20px;
	border: 1px solid;
	font-size: 12px;
	margin-right: 20px;
	color: #fff;
	transition: all ease 0.15s;
	margin-top: -1px;
	background: #E19524;
	border-color: #E19524;
}
.c-news__cat.--red{
	background: #E21515;
	border-color: #E21515;
}
.c-news__cat.--violet{
	background: #C25CB1;
	border-color: #C25CB1;
}
.c-news__cat.--green{
	background: #22B759;
	border-color: #22B759;
}
.c-news__cat.--blue{
	background: #2EABC5;
	border-color: #2EABC5;
}
.c-news__new{
  width: 36px;
  height: 36px;
  color: #fff;
  font-size: 10px;
  background-color: #E82020;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  line-height: 1;
  border-radius: 100px;
  padding-top: 2px;
  transform: translateY(-2px);
}
.p-news__content{
  line-height: 2;
}
.c-news__new.--gold{
 background-color: #B8A131;
}
.c-news__title{
  font-size: 16px;
  line-height: 1.2;
}
.is-hover:hover .c-news__title{
  background-size: 0 1px, 100% 1px;
}
.c-news__card:hover{
	opacity: 1;
}
.c-news__card:hover .c-news__title{
  color: #1AA086;
}
.c-news__card:hover .c-news__cat{
	background-color: transparent;
	color: #E19524;
}
.c-news__card:hover::after{
	background-image: url('../images/common/ic-arr-g.png');
}
.c-news__card:hover .c-news__cat.--violet{
	color: #C25CB1;
}
.c-news__card:hover .c-news__cat.--green{
	color: #22B759;
}
.c-news__card:hover .c-news__cat.--blue{
	color: #2EABC5;
}


.top-news__inner{max-width: 1200px;background: #fff;border-radius: 50px;padding: 40px 70px;box-shadow: 0 3px 6px rgba(0,0,0,0.16);position: relative;z-index: 2;}
.top-news-flex{
  gap: 40px;
  justify-content: center;
  align-items: center;
}
.top-news__title{
  width: 200px;
  text-align: center;
  /* padding-top: 50px; */
}
.top-news__title h2{
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0;
  color: #04275E;
}
.top-news__title a{
  font-size: 16px;
  color: #666666;
  font-weight: bold;
  display: block;
  letter-spacing: 0;
}
.top-news__title a:hover{
  opacity: 1;
  color: #04275E;
}
.top-news__content{
  flex: 1;
  max-width: 1000px;
}
.top-news .c-btns{
  gap: 20px 30px;
}
@media(max-width: 1200px){
  .top-news__title{
    width: 160px;
  }
}
@media(max-width: 1024px){
  .top-news__inner{
    max-width: 760px;
    padding: 20px 30px;
  }
  .top-news__title{
    width: 120px;
  }
  .c-pallarax-news__btns{
    width: 100%;
    gap: 20px;
    justify-content: space-between;
    max-width: 760px;
    margin: auto;
  }
}
@media(max-width: 768px){
   .c-news__card:last-child{
    border: 0;
  }
  .c-news__card{
    padding: 15px 10px;
    padding-right: 30px;
  }
  .c-news__title{
    font-size: 13px;
    flex: auto;
    width: 100%;
    min-width: auto;
  }
  
  .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;
    padding-bottom: 3px;
  }
  .c-news__card::after{
    right: 10px;
    width: 6px;
    height: 11px;
    top: 72%;
  }
  .top-news{
    border-radius: 0;
  }
  .top-news-flex{
    flex-wrap: wrap;
    padding: 0;
  }
  .top-news__title{
    width: auto;
    padding-top: 10px;
  }
  .top-news__content{
    flex: auto;
    width: 100%;
  }
  .top-news__title a{
    font-size: 14px;
    color: #666;
  }
  .top-news__title h2{
    line-height: 1.2;
  }
  .c-pallarax-news__btns{
    flex-wrap: wrap;
  }
  .top-news__inner{
    padding: 15px;
    border-radius: 20px;
  }

	.c-news__cat{
		width: 95px;
		font-size: 9px;
		line-height: 1.4;
		padding: 4px 5px 3px;
		height: auto;
		margin-right: 12px;
	}
}
/**End Top News*/
/**Informations*/
.c-informations{
  background-image: url('../images/common/bg-news.png');
  background-color: #1AA086;
  height: 500px;
  width: 100%;
  max-width: 1600px;
  /* display: flex; */
  /* align-items: flex-end; */
  /* justify-content: center; */
  margin: -140px auto 0;
  position: relative;
  border-radius: 40px;
  z-index: 1;
}
.c-informations.--cus{
  height: 318px;
}
.c-informations .c-btn-list{
	position: absolute;
	bottom: 128px;
	left:0;
	width: 100%;
	flex-wrap: wrap;
	padding: 0 20px;
	gap: 40px 30px;
}
.c-informations h3{width: 100%;text-align: center;}
.c-informations .c-informations__btns{
	bottom: -60px;
}
.c-informations .c-btn-list.--cus{
	bottom: 55%;
	transform: translateY(50%);
}
.c-informations__btns a{
	display: block;
	width: 515px;
	padding: 35px 10px 26px;
	text-align: center;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
	/* border-radius: 60px; */
}
.c-informations__btns img{
	/* border-radius: 60px; */
	/* box-shadow: 0 3px 6px rgba(0,0,0,0.16); */
	transition: all ease 0.4s;
}
.c-informations__btn1{
	background-image: url('../images/common/information-btn1-bg.png');
}
.c-informations__btns a.c-informations__btn2{
	background-color: #fff;
	padding: 37px 10px 24px;
}
.c-informations__btns a:hover{
	opacity: 1;
}
.c-informations__btns a:hover img{
	opacity: 0.5;
}
@media(max-width: 1400px){
	.c-informations .c-btn-list{
		gap: 20px;
	}
	.c-informations .c-btn{
		width: 200px;
		height: 40px;
		padding-left: 5%;
	}
}
@media(max-width: 1024px){
	.c-informations{
		height: 560px;
	}
	.c-btn-list.c-informations__btns{
		flex-wrap: nowrap;
	}
}
@media(max-width: 768px){
	.c-informations .c-btn-list{
		position: relative;
		bottom: 0;
	}
	.c-informations{
		height: 500px;
		padding-top: 180px;
		border-radius: 10px;
	}
	.c-btn-list.c-informations__btns{
		flex-wrap: wrap;
		margin-top: 20px;
	}
	.c-informations__btns a{
		width: 300px;
		padding: 14px 12px 10px !important;
	}
	.c-informations__btns img{
		max-width: 170px;
	}
}
/**End Information*/
/* BLOCK 3 */
.block3::before{
  position: absolute;
  top: 38%;
  height: 1241px;
  width: 100%;
  left: 0;
  background-image: url('../images/top/bg3.png');
  background-size: cover;
}
/*End Block3*/
/* BLOCK 4 */
.block4::before{
  position: absolute;
  top: 42%;
  height: 1241px;
  width: 100%;
  left: 0;
  background-image: url('../images/top/bg5.png');
  background-size: cover;
  z-index: -1;
}
/*End Block4*/
/**Gallery*/
.c-gallery__slider{
  padding-top: 10px;
}
.c-gallery__slider img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 100px;
}
.c-gallery__slider .swiper-slide{
  transform-origin: center;
  max-width: 784px;
  height: auto;
  aspect-ratio: 784 / 440;
  position: relative;
  overflow: hidden;
  transform: scale(.872);
  transition: transform .25s ease;
  border-radius: 100px;
  margin: 0 -5px !important;
}

.c-gallery__slider .swiper-slide-active{
  transform: scale(1.103);
  margin: 0 50px !important;
}
.c-gallery__slider .swiper-pagination{
  display: block;
  margin-top: 35px;
}
@media(max-width: 1024px){
  .c-gallery__slider .swiper-slide{
    height: auto;
    margin: 0 -5px !important;
    max-width: 500px;
    border-radius: 20px;
  }
  .c-gallery__slider img{
    border-radius: 20px;
  }
  .c-gallery__slider .swiper-slide-active{
    transform: scale(1);
    margin: auto !important;
  }
}

@media(max-width: 768px){
  .c-gallery__slider{
    margin-top: -70px;
  }
  .c-gallery__slider .swiper-slide{
    margin: 0 -5px !important;
    max-width: 320px;
  }
	.c-gallery__slider .swiper-pagination{
		margin-top: 15px;
	}
}
/**End Gallery*/
/* MARQUEE */
.c-marquee {
  display: flex;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  font-family: sans-serif;
  position: relative;
  left: 0;
  margin-top: -9%;
  margin-bottom: -65px;
}

.c-marquee__text {
  font-size: 260px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0;
  padding: 0 50px;
  color: #111;
  -webkit-animation-name: marquee;
  animation-name: marquee;
  -webkit-animation-duration: 30s;
  animation-duration: 30s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: 0.08;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 1024px) {
  .c-marquee {
  margin-top: -120px;
  }
  .c-marquee__text {
    font-size: 220px;
    line-height: 1;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
  }
}
@media screen and (max-width: 768px) {
  .c-marquee {
  margin-top: -100px;
  }
  .c-marquee__text {
    font-size: 180px;
    padding: 0 20px;
  }
}
/* END MARQUEE */

/**Recruit*/
.c-recruit{
  gap: 20px 2.5%;
  max-width: 1310px;
}
.c-recruit__item{
  width: 22%;
  text-align: center;
}
.c-recruit__item figure{
  height: 478px;
  overflow: hidden;
  border-radius: 100px;
}

.c-recruit__item span{
  border: 1px solid #1AA086;
  border-radius: 100px;
  font-size: 13px;
  padding: 5px 27px 4px;
  color: #fff;
  background-color: #1AA086;
  display: inline-block;
  transition: all ease 0.4s;
}
.c-recruit__item:hover{
  opacity: 1;
}
.c-recruit__item:hover img{
  transform: scale(1.1);
}
.c-recruit__item:hover span{
  background-color: transparent;
  color: #1AA086;
}
.img-effect{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 1s ease-out;
  opacity: 0;
  transform: translateY(40px);
}
.mid-trigger {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 1px;
    pointer-events: none;
}

.img-up {
    transform: translateY(-40px);
}
.img-down {
    transform: translateY(40px);
}
.img-show {
    opacity: 1;
    transform: translateY(0);
}
@media(max-width: 768px){
	.c-recruit{
		flex-wrap: wrap;
		gap: 40px 4%;
	}
	.c-recruit__item{
		width: 48%;
		line-height: 1.4;
	}
	.c-recruit__item figure{
		height: 240px;
		border-radius: 60px;
	}
	.c-recruit__item span{
		font-size: 11px;
		padding: 4px 20px;
	}
}
/**End Recruit*/