@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.8;
  text-size-adjust: 100%;
  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%;
}
.logo-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 24px;
  letter-spacing: 0;
}
.logo-title .eng-text {
  letter-spacing: -8px;
}
.logo-title .logo-icon {
  display: block;
  width: 120px;
  /* height: 60px; */
  flex-shrink: 0;
  margin-right: 10px;
}
.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 #5ed6ca;
  color: #5ed6ca;
  line-height: 1.6;
}
@media (max-width: 1400px) {
  .logo-title {
    font-size: 18px;
  }
  .logo-title .eng-text {
    letter-spacing: -5px;
  }
  .logo-title .logo-icon {
    width: 80px;
    /* height: 50px; */
  }
}

@media (max-width: 768px) {
  .logo-title {
    font-size: 13px;
  }
  .logo-title .logo-icon {
    width: 50px;
    /* height: 35px; */
  }
}
/*Title*/
.c-title {
  font-family: YuMincho;
  text-align: center;
  font-weight: 600;
}

.c-title span {
  display: block;
  text-align: 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-title1 {
    font-size: 24px;
  }
  .c-title2 {
    font-size: 22px;
  }
  .c-title1 span,
  .c-title2 span {
    margin-bottom: 8px;
  }
}
/**End Title */
/**Btn*/
.c-btn-list {
  display: flex;
  justify-content: center;
  gap: 20px 30px;
}
.c-btns {
  display: flex;
  justify-content: center;
  gap: 30px;
  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;
  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;
}

.c-btn1 {
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(17, 17, 17, 0.16);
  border-radius: 100px;
  padding: 0 2%;
  width: 270px;
  height: 60px;
  font-size: 15px;
  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: #5ed6ca;
  width: 515px;
  height: 80px;
  background-color: #5ed6ca;
  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: #5ed6ca;
  color: rgb(255, 255, 255);
}
.c-btn1.--cus:hover,
.c-btn1.--cus2:hover {
  background: #fff;
  color: #5ed6ca;
  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 {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0;
  width: 100%;
  max-width: 440px;
  padding: 0 20px 30px;
  position: relative;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border-bottom: 1px solid #cccccc;
}

.c-btn2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  bottom: -1px;
  background-color: #5ed6ca;
  z-index: 2;
  -webkit-transform: scaleX(0.14);
  -ms-transform: scaleX(0.14);
  transform: scaleX(0.14);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}

.c-btn2::after {
  background-image: url(./../images/common/ic-arrR2-B.png);
  width: 10px;
  height: 16px;
  margin-left: 10px;
}
.c-btn2:hover {
  color: #5ed6ca;
}
.c-btn2:hover::before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.c-btn2:hover::after {
  background-image: url(./../images/common/ic-arrR2-G.png);
}
@media (max-width: 768px) {
  .c-btns {
    gap: 15px;
  }
  .c-btn1 {
    width: 260px;
    padding: 0 8%;
    font-size: 13px;
  }
  .c-btn2 {
    width: 280px;
    font-size: 13px;
    padding: 0 10px 20px;
  }
  .c-btn2::after {
    width: 8px;
    height: 12px;
  }
}
/*Custom btn*/
/**End btn*/

/**Nav Menu*/
.c-nav__menu {
  display: flex;
  align-items: flex-end;
  /* font-family: YuMincho; */
  padding-top: 10px;
}
.c-nav__item {
  text-align: center;
}
.c-nav__link {
  display: block;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0px;
  transition: all 0.4s ease 0s;
  padding: 6px 34px;
  position: relative;
  border-left: 1px dashed #cccccc;
}
.c-nav__item:first-child .c-nav__link {
  border-left: 0;
}
.c-header.active .c-nav__link {
  color: rgb(17, 17, 17);
}

.c-nav__link:hover {
  opacity: 1;
  color: #5ed6ca;
}

/* .c-nav__link::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-image: url("../images/common/border-menu.png");
  background-position: center center;
  background-size: contain;
  transition: all 0.4s ease 0s;
}

.c-nav__link:hover::before {
  width: 40px;
} */

.c-nav__btn {
  width: 180px;
  height: 50px;
  background-color: #5ed6ca;
  border-radius: 100px;
  color: #fff;
  margin-left: 35px;
  border: 1px solid;
  gap: 10px;
}
.c-nav__btn:before {
  height: 16px;
  width: 15px;
  background-image: url("../images/common/ic-keyW.png");
  margin-top: -2px;
}
.c-nav__btn:hover {
  color: #5ed6ca;
  background-color: #fff;
}
.c-nav__btn:hover:before {
  background-image: url("../images/common/ic-keyG.png");
}
.c-menuIcon {
  display: none;
}

@media screen and (max-width: 1350px) {
  .c-nav__btn {
    margin-left: 10px;
  }
}

@media screen and (max-width: 1200px) {
  .c-nav__menu {
    display: block;
    width: 100%;
    padding-top: 0;
  }
  .c-nav__btn {
    margin-left: 0;
    margin-top: 20px;
  }
  .c-nav__item {
    border-left: 0px;
  }

  .c-nav__link {
    /* color: #fff !important; */
    border: 0;
  }
  .c-nav__link:hover {
    /* opacity: 1; */
    /* color: rgb(179, 152, 32) !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: 40px;
    width: 40px;
    z-index: 1001;
    cursor: pointer;
    margin-left: 25px;
    position: relative;
  }

  .c-menuIcon span {
    width: 100%;
    height: 3px;
    background-color: #5ed6ca;
    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 (max-width: 1024px) {
  .c-menuIcon {
    height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-menuIcon {
    height: 25px;
    width: 30px;
    margin-top: 4px;
  }
}
/**End Menu Icon*/

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

.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;
}

.c-header__logo {
  flex-shrink: 0;
  width: max-content;
  position: relative;
  z-index: 99999;
}

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

.c-header__group {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1200px) {
  .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 (max-width: 1024px) {
  .c-header {
    height: 100px;
  }
  .c-header__inner {
    padding: 0 20px;
  }
}
@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 .c-nav__menu {
  display: flex;
  justify-content: center;
  padding: 0 0 50px;
  padding-right: 30px;
  border-bottom: 1px dashed #ccc;
}
.c-footer__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  gap: 52px;
  width: 100%;
  max-width: 727px;
  margin: auto;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.c-footer__bannerContent {
  flex: 1;
}
.c-footer__banner figure {
  width: 140px;
  height: 140px;
  overflow: hidden;
}
.c-footer__banner img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.c-footer__banner h2 {
  font-size: 22px;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 10px;
}
.c-footer__banner h2 span {
  font-size: 14px;
  display: inline-block;
  margin-bottom: 3px;
}
.c-footer .c-pallarax {
  height: 460px;
  position: relative;
}

.c-footer .c-parallax--bg {
  background-size: 1920px;
  background-position-y: -50%;
}

.c-footer__bottom {
  text-align: center;
}

.c-footer__logo {
  max-width: 100%;
  margin-bottom: 30px;
}

.c-copyright {
  font-size: 11px;
}
@media (max-width: 1024px) {
  .c-footer .c-nav__menu {
    padding-right: 0;
  }
  .c-footer .c-nav__item .c-nav__link {
    padding: 4px 20px;
  }
  .c-footer .c-nav__btn {
    margin-left: 20px;
  }
  .c-footer__banner {
    max-width: 675px;
    top: 50%;
    gap: 30px;
  }
  .c-footer .c-pallarax {
    height: 250px;
  }
  .c-footer .c-parallax--bg {
    background-position-y: -100%;
  }
}
@media (max-width: 767px) {
  .c-footer .c-nav__item .c-nav__link {
    padding: 4px 15px;
  }
  .c-footer .c-nav__btn {
    margin-left: 0;
  }
  .c-footer .c-nav__menu {
    flex-wrap: wrap;
    padding-bottom: 30px;
  }
  .c-footer .c-nav__item.--last {
    width: 100%;
  }
  .c-footer .c-pallarax {
    height: 200px;
  }
  .c-footer__logo {
    margin-bottom: 15px;
  }
  .c-footer__title {
    font-size: 18px;
  }
  .c-footer__banner {
    max-width: 280px;
    gap: 5px;
    flex-wrap: wrap;
  }
  .c-footer__banner h2 {
    font-size: 13px;
    justify-content: center;
    gap: 7px;
    margin-bottom: 5px;
  }
  .c-footer__banner h2 span,
  .c-footer__banner p {
    font-size: 8px;
  }

  .c-footer__banner figure {
    width: 70px;
    height: 70px;
  }
  .c-footer__bannerContent {
    flex: auto;
    width: 100%;
    text-align: center;
  }
  .c-footer .c-parallax--bg {
    background-size: 2040px;
  }
}

/**Socials*/
.c-socials {
  position: fixed;
  right: 27px;
  bottom: 37%;
  z-index: 9;
  transition: all ease 0.7s;
}
.c-socials.hide {
  right: -100%;
}
.c-socials__link {
  font-size: 15px;
  display: block;
  text-align: center;
}
.c-socials__link ~ .c-socials__link {
  margin-top: 20px;
}
.c-socials__link img {
  width: 158px;
  display: block;
  transition: all ease 0.7s;
}

.c-socials.active {
  right: 24px;
  bottom: 30%;
}
.c-socials.active img {
  width: 140px;
}

@media (max-width: 1024px) {
  .c-socials__link {
    width: 80px;
  }
  .c-socials {
    bottom: 10% !important;

    right: 14px !important;
  }
}
@media (max-width: 768px) {
  .c-socials {
    bottom: 0;
    bottom: 11px !important;
    right: auto !important;
    left: 10px !important;
  }
  .c-socials__link {
    width: 72px;
  }
}
/**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);
}

@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: 15px;
    bottom: 18px;
  }
  .c-scrolldown::before {
    margin-bottom: 5px;
  }
}
/* END SCROLLDOWN */

/**Tab*/
.c-tabs {
  display: flex;
  gap: 20px;
  justify-content: center;
  max-width: 820px;
}
.c-tab {
  font-size: 15px;
  display: inline-flex;
  text-align: center;
  justify-content: space-between;
  align-items: center;
  width: 240px;
  padding: 13px 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: 8px;
  height: 5px;
  background-image: url("../images/common/ic-arrR-Black.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  /* transform: rotate(
90deg); */
}
.c-tab.active,
.c-tab:hover {
  opacity: 1;
  background-color: #5ed6ca;
  color: #fff;
}
.c-tab.active::after,
.c-tab:hover::after {
  background-image: url("../images/common/ic-arrR-White.png");
}
@media (max-width: 768px) {
  .c-tab {
    font-size: 12px;
    border-radius: 30px;
    padding: 10px 15px;
  }
  .c-tabs {
    gap: 12px;
  }
}
/**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: rgba(255, 255, 255, 0.06);
}
.c-news__card:nth-child(even) {
  background-color: rgba(94, 214, 202, 0.06);
}
.c-news__card:last-child {
  border-bottom: 0;
}
.c-news__card::after {
  background-image: url("../images/common/ic-arrR2-B.png");
  width: 9px;
  height: 16px;
  transition: all ease 0.4s;
  position: absolute;
  right: 50px;
  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: 40px;
  margin-top: 1px;
}
.c-news__cat {
  width: 80px;
  height: 23px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  border: 1px solid currentColor;
  font-size: 12px;
  margin-right: 11px;
  color: #1250e3;
  transition: all ease 0.15s;
  margin-top: -1px;
}
.c-news__cat.--red {
  color: #e21515;
}
.c-news__cat.--green {
  color: #1fae37;
}
.c-news__cat.--purple {
  color: #1a1fab;
}
.c-news__new {
  width: 36px;
  height: 36px;
  color: #fff;
  font-size: 10px;
  background-color: #e91826;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  line-height: 1;
  border-radius: 100px;
  padding-top: 2px;
  transform: translateY(-2px);
}
.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: #009FE8; */
}
.c-news__card:hover .c-news__cat {
  background-color: #1250e3;
  color: #fff;
}
.c-news__card:hover::after {
  background-image: url("../images/common/ic-arrR2-G.png");
}
.c-news__card:hover .c-news__cat.--red {
  background-color: #e21515;
}
.c-news__card:hover .c-news__cat.--green {
  background-color: #1fae37;
}
.c-news__card:hover .c-news__cat.--purple {
  background-color: #1a1fab;
}

.top-news__inner {
  background: #fff;
  border-radius: 50px;
  padding: 40px 100px 50px;
  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;
}
.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;
    margin: auto;
    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: 767px) {
  .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;
    margin-right: 0;
  }
  .c-news__card::after {
    right: 10px;
    width: 7px;
    height: 14px;
    top: 70%;
  }
  .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: 20px;
    border-radius: 20px;
  }
}
/**End Top News*/
/**Informations*/
.c-informations {
  background-image: url("../images/top/bg3.png");
  background-color: #5ed6ca;
  height: 500px;
  width: 100%;
  /* display: flex; */
  /* align-items: flex-end; */
  /* justify-content: center; */
  margin-top: -130px;
  position: relative;
  z-index: 1;
}
.c-informations.--cus {
  height: 318px;
}
.c-informations .c-btn1 {
  height: 90px;
  width: 320px;
  font-size: 17px;
  justify-content: center;
  flex-direction: row-reverse;
}
.c-informations .c-btn1:after {
  width: 16px;
  height: 16px;
  margin-right: 12px;
}
.c-informations__title {
  width: 100%;
  text-align: center;
  font-size: 30px;
  font-family: "YuMincho";
  color: #fff;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 14px;
}
.c-informations .c-btn-list {
  position: absolute;
  bottom: 115px;
  left: 0;
  width: 100%;
  padding: 0 20px;
  flex-wrap: wrap;
}
.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 {
  transition: all ease 0.4s;
}
.c-informations__btn1 {
  background-image: url("../images/top/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: 1024px) {
  .c-informations .c-btn-list {
    bottom: 50px;
    gap: 20px;
  }
  .c-informations {
    margin-top: -100px;
  }
  .c-informations .c-btn1 {
    width: 300px;
    font-size: 13px;
    height: 65px;
  }
  .c-informations .c-btn1:after {
    width: 13px;
    height: 13px;
  }
  .c-informations {
    margin-top: -90px;
  }
  .c-informations__title {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
/**End Information*/
/**pallarax*/
.c-pallarax {
  height: 480px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #dff7f5;
}

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

.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;
  height: 1000px !important;
}

@media (max-width: 768px) {
  .c-pallarax {
    height: 200px;
  }
  .c-parallax--bg {
    background-size: cover;
  }
}
/**End pallarax*/

/**activities*/
.block2-bg::before {
  background-image: url("../images/top/bg2.png");
  position: absolute;
  width: 100%;
  height: 1647px;
  left: 0;
  bottom: 130px;
  z-index: -1;
}
.c-activities__inner {
  width: 100%;
  max-width: 730px;
  margin: auto;
}
.c-activities__head {
  border-bottom: 1px dashed #707070;
  padding: 0 20px 15px;
  font-family: YuMincho;
}
.c-activities__title {
  color: #fff;
  background-color: #5ed6ca;
  border-radius: 100px;
  text-align: center;
  font-size: 20px;
  padding: 12px 10px;
}
.c-activities li {
  font-size: 20px;
  display: flex;
  border-bottom: 1px dashed #707070;
  padding: 16px 20px;
  line-height: 1.4;
}
.c-activities li::before {
  content: "";
  background-image: url("../images/top/ic-check.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 24px;
  margin-right: 13px;
  margin-top: 1px;
}
.c-activities li strong {
  display: inline-block;
  background-color: #daf2f0;
  padding: 0px 3px;
}

.c-activities--inner {
  height: 405px;
}

.c-activities__slider .swiper-slide {
  transition: all ease 0.4s;
  border-radius: 50%; /* height: 320px; */
  aspect-ratio: 320/320;
}
.c-activities__slider .swiper-slide img {
  border-radius: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1/1;
}
.c-activities__slider .swiper-slide.swiper-slide-prev,
.c-activities__slider .swiper-slide.swiper-slide-next {
  margin-top: 107px;
}

@media (max-width: 1600px) {
  .c-activities--inner {
    height: 360px;
  }
}
@media (max-width: 1400px) {
  .c-activities--inner {
    height: 325px;
  }
}
@media (max-width: 1200px) {
  .c-activities--inner {
    height: 290px;
  }
}
@media (max-width: 1024px) {
  .c-activities__slider {
    top: 0;
    transform: translateY(150px);
  }
  .c-activities li {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .c-activities--inner {
    height: auto;
  }
  .c-activities__slider .swiper-slide.swiper-slide-prev,
  .c-activities__slider .swiper-slide.swiper-slide-next {
    margin-top: 0;
  }
  .c-activities__slider {
    margin-top: 0;
    transform: translateY(0);
  }
  .c-activities__title {
    font-size: 17px;
    padding: 12px 10px !important;
  }
  .c-activities li {
    font-size: 13px;
    padding: 10px 5px;
    padding-left: 25px;
    flex-wrap: wrap;
    position: relative;
  }
  .c-activities li::before {
    width: 15px;
    height: 15px;
    margin-right: 8px;
    position: absolute;
    left: 5px;
    top: 9px;
  }
}
/**End activities*/

.c-password-form p {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.c-password-form input[type="password"] {
  width: 100%;
  max-width: 200px;
  border: 2px solid #111;
  border-radius: 5px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  font-size: 14px;
  padding: 10px 5px;
  margin-left: 10px;
}
.c-password-form input[type="submit"] {
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  font-size: 14px;
  color: #fff;
  background-color: #111;
  border: unset;
}
@media (max-width: 767px) {
  .c-password-form p {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .c-password-form input[type="password"] {
    display: block;
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
    margin-top: 5px;
  }
}
