@charset "UTF-8";
@font-face {
  font-family: "Yu Mincho";
  font-style: normal;
  font-weight: 600;
  src: url(./../fonts/yumindb.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
  overflow-y: auto;
}
body {
  top: 0 !important;
  color: #111111;
  font-family: "Yu Mincho" !important;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-y: hidden;
}

body.is-fixed {
  overflow: hidden;
  position: fixed;
  width: 100vw;
}
.font-yumincho {
  font-family: "Yu Mincho" !important;
}
.font-yugothic {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
}

/* Simplified Chinese (Mainland China) */
html:lang(zh-CN) body {
  font-family: "Noto Sans SC", sans-serif !important;
}

/* Traditional Chinese (Taiwan) */
html:lang(zh-TW) body {
  font-family: "Noto Sans TC", sans-serif !important;
}
ul {
  list-style-type: none;
}
a {
  color: currentColor;
  text-decoration: none;
  transition: 0.2s;
}
a:hover {
  opacity: 0.5;
}

.c-main {
  padding-bottom: 110px;
}
@media screen and (max-width: 767px) {
  .c-main {
    padding-bottom: 60px;
  }
}
/* ======================================================== */
/* ULTILITIES */
.u-cl--blue {
  color: #00488e;
}
.u-cl--gray {
  color: #cccccc;
}
.c-text-bg {
  background-color: #00488e;
  color: #fff;
  border-radius: 5px;
}
.c-text-underline {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 10px;
}
.fw--500 {
  font-weight: 500;
}
.fw--700 {
  font-weight: 700;
}
.c-text-main {
  font-size: 15px;
  letter-spacing: 0;
  line-height: 28px;
}
@media screen and (max-width: 767px) {
  .c-text-main {
    font-size: 13px;
    line-height: 1.6;
  }
}
/* RADIUS */
.u-radius--10 {
  border-radius: 10px;
}
/* BOX SHADOW */
.u-bs {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
/* ======================================================== */
/* IMAGE */
img {
  object-fit: cover;
  max-width: 100%;
}
img.svg-img {
  object-fit: contain;
}
img.base-img {
  display: block;
  width: 100%;
}
img.base-img-auto {
  display: block;
  max-width: 100%;
}
img.base-img-auto-center {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.c-imgwrapper {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.c-imgwrapper.as42 {
  padding-top: 42%;
}
.c-imgwrapper.as45 {
  padding-top: 45%;
}
.c-imgwrapper.as52 {
  padding-top: 52%;
}
.c-imgwrapper.as62 {
  padding-top: 62%;
}
.c-imgwrapper.as65 {
  padding-top: 65%;
}
.c-imgwrapper.as66 {
  padding-top: 66%;
}
.c-imgwrapper.as67 {
  padding-top: 67%;
}
.c-imgwrapper.as75 {
  padding-top: 75%;
}
.c-imgwrapper.as100 {
  padding-top: 100%;
}
.c-imgwrapper.as107 {
  padding-top: 107%;
}
.c-imgwrapper .img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.6s;
}
.c-imgwrapper__trigger:hover {
  opacity: 1;
}
.c-imgwrapper__trigger:hover .img {
  transform: scale(1.2);
}

.c-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.c-overlay {
  position: relative;
  z-index: 1;
}
.c-overlay.before::before,
.c-overlay.after::after {
  content: "";
  /* background: linear-gradient(
    to bottom,
    rgba(18, 18, 18, 0) 0%,
    rgba(18, 18, 18, 0) 50%,
    rgba(18, 18, 18, 1)
  ); */
  background: #111;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
/* LOGO  */
.c-logo img,
.c-logo a {
  display: block;
  width: 100%;
}
/* =============================================================== */
/* ICON */
.c-icon-before,
.c-icon-after {
  position: relative;
}
.c-icon-before::before,
.c-icon-after::after {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}
/* ======================================================== */
/* PARALLAX */
.parallax__container {
  position: absolute;
  clip: rect(0px, auto, auto, 0px);
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: -10;
  /* border radius if needed */
  /* clip-path: inset(0 round 10px); */
}

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

.top-pallarax {
  height: 540px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.top-pallarax .parallax__container {
  width: 100%;
}
.top-pallarax .box1 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.top-pallarax .box1 img {
  display: block;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media only screen and (max-width: 1240px) {
  .top-pallarax .parallax__container {
    right: 0;
    left: auto;
  }
}
@media screen and (max-width: 1024px) {
  .top-pallarax {
    height: 400px;
  }
}
@media screen and (max-width: 767px) {
  .top-pallarax {
    height: 200px;
  }
}
/* ======================================================== */
/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding-left: 90px;
  padding-right: 50px;
  height: 120px;
  color: #fff;
  display: flex;
  transition: 0.4s;
}
.pt-header {
  padding-top: 120px !important;
}
.header.view {
  height: 100px;
  background-color: #111;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.16);
}
html {
  scroll-padding-top: 120px;
}
.header-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: inherit;
}
.header-group,
.menu-toggle,
.menu-toggle .menu-toggle__inner {
  align-self: stretch;
  display: flex;
  align-items: center;
}
.header-logo {
  flex-shrink: 0;
  width: 143px;
}
.header .header-mainnav {
  align-self: stretch;
  margin-right: 30px;
}
.header .header-mainnav .c-headernav {
  height: 100%;
}
.header .header-mainnav .c-headernav__text {
  padding: 0 30px;
}

.menu-trigger {
  display: none;
}
@media screen and (max-width: 1350px) {
  .header {
    padding-left: 30px;
    padding-right: 30px;
  }
  .header .header-mainnav {
    margin-right: 10px;
  }
  .header .header-mainnav .c-headernav__text {
    padding: 0 15px;
  }
}
@media screen and (max-width: 1200px) {
  .header {
    padding-left: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .header {
    height: 100px;
  }
  .header.view {
    height: 80px;
  }
  .pt-header {
    padding-top: 100px !important;
  }
  html {
    scroll-padding-top: 100px;
  }

  .header-logo {
    position: relative;
    z-index: 1001;
  }
  /* TRIGGER */
  .menu-trigger {
    display: block;
    width: 50px;
    height: 35px;
    position: relative;
    z-index: 1001;
    cursor: pointer;
    margin-left: 25px;
  }
  .menu-trigger span {
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    left: 0;
    transition: 0.2s;
  }
  .menu-trigger span:nth-child(1) {
    top: 0;
  }
  .menu-trigger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .menu-trigger span:nth-child(3) {
    bottom: 0;
  }
  .menu-trigger.active span:nth-child(1) {
    top: 50%;
    transform: rotate(45deg) translateY(-50%);
  }
  .menu-trigger.active span:nth-child(2) {
    left: 150%;
    opacity: 0;
  }
  .menu-trigger.active span:nth-child(3) {
    bottom: 50%;
    transform: rotate(-45deg) translateY(50%);
  }
  /* MENU TOGGLE */
  .menu-toggle {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    background-color: #111;
    transition: 0.4s ease-in-out;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    display: block;
    pointer-events: none;
  }
  /* Hide scrollbar for Chrome, Safari and Opera */
  .menu-toggle::-webkit-scrollbar {
    display: none;
  }
  .menu-toggle.active {
    opacity: 1;
    visibility: visible;
    z-index: 1000;
    pointer-events: all;
  }
  .menu-toggle .menu-toggle__inner {
    padding: 120px 30px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
  }
  .header .header-mainnav {
    margin-right: 0;
    margin-bottom: 40px;
  }
  .header .header-mainnav .c-headernav {
    display: block;
    height: auto;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .header {
    padding: 0 20px;
    height: 70px;
  }
  .header.view {
    height: 60px;
  }
  .pt-header {
    padding-top: 70px !important;
  }
  html {
    scroll-padding-top: 80px;
  }
  .header-logo {
    width: 120px;
  }
  .menu-trigger {
    width: 35px;
    height: 30px;
    margin-left: 10px;
  }
  /* TOGGLE */
  .menu-toggle .menu-toggle__inner {
    padding: 100px 20px;
  }
}

/* LANGS */
.c-langs {
  position: relative;
}

.c-langs label {
  position: relative;
  display: flex;
  align-items: center;
  width: 180px;
  height: 54px;
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid #fff;
  padding-left: 30px;
  padding-right: 45px;
  transition: 0.4s;
  cursor: pointer;
}
.c-langs:hover label {
  background-color: #fff;
  color: #111;
}
.c-langs label::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 11px solid currentColor;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.c-langs .submenu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 100%;
  background-color: #fff;
  text-align: center;
  color: #111;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: 0.4s;
}
.c-langs input[type="checkbox"]:checked ~ .submenu {
  opacity: 1;
  visibility: visible;
}
.c-langs .submenu a {
  display: block;
  padding: 10px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.5);
}
@media (max-width: 1024px) {
  .c-langs .submenu {
    position: static;
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    max-height: 0;
  }
  .c-langs input[type="checkbox"]:checked ~ .submenu {
    max-height: 170px;
  }
}
/**End Langs*/
.skiptranslate {
  display: none !important;
}
/* END LANGS */
/* HEADER NAV */
.c-headernav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.c-headernav .item {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0;
  position: relative;
}
.c-headernav .item:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 44px;
  border-left: 1px dashed #ffffff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.c-headernav .c-headernav__text {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  cursor: pointer;
}
@media screen and (max-width: 1300px) {
  .c-headernav .item {
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .c-headernav--vertical .c-headernav__text {
    display: inline-block;
    height: auto;
    font-size: 22px;
  }
  .c-headernav--vertical .item {
    margin-bottom: 40px;
  }
  .c-headernav--vertical .item:not(:last-child)::after {
    content: unset;
  }
}
@media screen and (max-width: 767px) {
  .c-headernav .item {
    font-size: 14px;
    line-height: 2;
  }
  /* NAV 2 VERTICAL */
  .c-headernav--vertical .item {
    margin-bottom: 10px;
  }
  .c-headernav--vertical .c-headernav__text {
    font-size: 18px;
  }
}
.c-headernav2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 0;
}
.c-headernav2 .item {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0;
}
.c-headernav2 .item:not(:last-child):after {
  content: "|";
  display: block;
  font-weight: 700;
}
.c-headernav2 .item a {
  display: block;
  transition: 0.4s;
}
.c-headernav2 .item a:hover {
  color: #f6317b;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .c-headernav2 .item {
    font-size: 14px;
  }
}
/* END HEADER NAV */
/* END HEADER */
/* ===================================================================== */
/* FOOTER */
/* TOP */
/* BOTTOM */
.footer-bottom {
  padding: 115px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
/* COPY RIGHT */
.c-copyright {
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 600;
}
.c-copyright span {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .footer-bottom {
    padding: 70px 0;
  }
  .c-copyright {
    font-size: 11px;
  }
}
/* END FOOTER */
/* ======================================================== */
/* BREAD */
.c-bread {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 42px;
  padding: 24px 20px;
}
.c-bread li a {
  display: block;
  font-weight: 700;
  font-size: 12px;
  line-height: 2;
}
@media all and (max-width: 768px) {
  .c-bread {
    padding: 15px 20px;
  }
  .c-bread li a {
    font-size: 11px;
  }
}
/* END BREAD */
/* ======================================================== */
/* PAGE HEADING */
.c-page-heading {
  width: 100%;
  min-height: 400px;
  padding: 70px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.c-page-heading h1 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
}
.c-page-heading h1 strong {
  display: block;
  font-size: 42px;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .c-page-heading {
    padding: 20px;
    min-height: 250px;
  }
  .c-page-heading h1 {
    font-size: 14px;
  }
  .c-page-heading h1 strong {
    font-size: 30px;
  }
}
/* END PAGE HEADING */
/* ======================================================== */
/* POST */
.c-post-date {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
}
.c-post-cat {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0;
  display: inline-flex;
  line-height: 1;
  justify-content: center;
  align-items: center;
  padding: 10px 22px;
  border-radius: 10px;
}
.c-post-cat.red {
  background-color: #e51717;
  color: #fff;
}
.c-post-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}
.c-post-title2 {
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0;
}
.c-post-content {
  word-break: break-all;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 36px;
}
@media screen and (max-width: 767px) {
  .c-post-date {
    font-size: 12px;
  }
  .c-post-cat {
    font-size: 11px;
    padding: 5px 15px;
    border-radius: 5px;
  }
  .c-post-title {
    font-size: 13px;
  }
  .c-post-title2 {
    font-size: 25px;
  }
  .c-post-content {
    font-size: 13px;
    line-height: 1.6;
  }
}
/* NEWS */
.c-news-list .item {
  position: relative;
  z-index: 1;
}
.c-news-list .item::after {
  content: "";
  width: 100vw;
  height: calc(100% - 1px);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  z-index: -1;
  background-color: #fff;
  border-top: 1px solid #eeeeee;
}
.c-news-list .item:nth-child(even):after {
  background-color: rgba(18, 18, 18, 0.02);
  border-radius: 10px 0 0 10px;
}
.c-news-list.no-radius .item,
.c-news-list.no-radius .item:nth-child(even) {
  border-radius: unset;
}
.c-news-list.border .item {
  border-bottom: 1px dashed #111111;
}
.c-post-news {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 22px 0;
}
.c-post-news .group {
  display: flex;
  align-items: center;
}
.c-post-news .new {
  margin-right: 26px;
}
.c-post-news .c-post-date {
  margin-right: 26px;
}
.c-post-news .c-post-cat {
  margin-right: 22px;
}
.c-post-news .c-post-title {
  display: -webkit-box;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1; /* number of lines to show */
  line-clamp: 1;
  -webkit-box-orient: vertical;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .c-post-news {
    padding: 15px 0;
  }
  .c-post-news .new {
    margin-right: 0;
  }
  .c-post-news .c-new {
    margin-right: 10px;
  }
  .c-post-news .c-post-date {
    margin-right: 10px;
  }
  .c-post-news .c-post-cat {
    margin-right: 0;
  }
  .c-post-news .c-post-title {
    flex: 0 1 auto;
    width: 100%;
    margin-top: 10px;
  }
}
.c-post-news2 {
  text-align: center;
}
.c-post-news2 .heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 10px;
}
.c-post-news2 .heading .c-post-date {
  margin-left: 10px;
}

/* END NEWS */
/* NEW TAG */
.new,
.c-new {
  width: 80px;
  height: 34px;
}
.c-new {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0;
  background-color: #d81434;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .new {
    width: auto;
    height: auto;
  }
  .c-new {
    font-size: 10px;
    width: 50px;
    height: 25px;
  }
}
/* END NEW TAG */
/* END POST */
/* ======================================================== */
/* PAGINATION */
.c-pagination {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 70px;
}
.c-pagination .item {
  width: 32px;
  height: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.1em;
  transition: 0.2s;
  margin: 0 5px;
}
.c-pagination .item.prev {
  margin-right: 40px;
  margin-left: 0 !important;
}
.c-pagination .item.next {
  margin-left: 40px;
  margin-right: 0 !important;
}
.c-pagination .item-arrow img {
  display: block;
  width: 17px;
  height: 17px;
}
.c-pagination .item a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  transition: inherit;
}
.c-pagination .item:not(.item-arrow) a:hover {
  opacity: 1;
}
.c-pagination .item:not(.item-arrow):hover,
.c-pagination .item.current {
  background: #0ebba9;
  color: white;
}
.c-pagination .item.current,
.c-pagination .item.item-dot {
  pointer-events: none;
}
@media all and (max-width: 767px) {
  .c-pagination {
    margin-top: 30px;
  }
  .c-pagination .item {
    width: 25px;
    height: 25px;
    font-size: 10px;
    margin: 0;
  }
  .c-pagination .item.prev {
    margin-right: 5px;
  }
  .c-pagination .item.next {
    margin-left: 5px;
  }
}
/* END PAGINATION */
/* ======================================================== */
/* SLIDER */
.c-slider-wrapper {
  position: relative;
}
/* ARROW */
.c-slider-wrapper .c-slider-arrow {
  width: 34px;
  height: 34px;
  background-image: url(./../images/common/ic-circle-next-white.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.c-slider-wrapper .c-slider-arrow.prev {
  left: 0;
}
.c-slider-wrapper .c-slider-arrow.next {
  right: 0;
}
.c-slider-wrapper .c-slider-arrow::after {
  content: none;
}
@media screen and (max-width: 1024px) {
  .c-slider-wrapper {
    padding: 0 20px;
  }
}
/* @media screen and (max-width: 767px) {
  .c-slider-wrapper {
    padding: 0;
  }
  .c-slider-wrapper .c-slider-arrow {
    display: none;
  }
} */
/* PAGINATION */
.c-slider-wrapper.u-pagination {
  padding-bottom: 50px;
}
.c-slider-wrapper.u-pagination .c-slider-pagination {
  bottom: 0;
}
.c-slider-wrapper.u-pagination .c-slider-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 10px;
  background-color: gray;
  opacity: 1;
}
.c-slider-wrapper.u-pagination
  .c-slider-pagination
  .swiper-pagination-bullet-active {
  background-color: aquamarine;
}
/* VERTICAL PAGINATION */
.c-slider-wrapper.u-pagination-vertical {
  position: relative;
  padding: 0;
}
.c-slider-wrapper.u-pagination-vertical .c-slider-pagination {
  width: auto;
  height: 100%;
  top: 0;
  bottom: auto;
  left: auto;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.c-slider-wrapper.u-pagination-vertical
  .c-slider-pagination
  .swiper-pagination-bullet {
  margin: 10px;
}
/* SLIDER CONTINOUS */
.slider-continous-opposite .swiper-wrapper,
.slider-continous .swiper-wrapper {
  transition-timing-function: linear;
}
/* END SLIDER CONTINOUS */
/* MAIN VISUAL */
.c-mainvisual__slider {
  height: 1080px;
}
.c-mainvisual__slider .c-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-mainvisual__slider .swiper-slide-active .c-bg {
  animation: visual1 cubic-bezier(0, 0, 0.58, 1) 4s;
}
@keyframes visual1 {
  from {
    transform: scale(1.2) translate(0, -5%);
  }
  to {
    transform: scale(1) translate(0, 0);
  }
}
/* END MAIN VISUAL */
/* THUMB SLIDER */
.c-thumbSwiper-wrapper {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.c-thumbSwiper.thumbSwiper {
  margin: 10px;
}
.c-thumbSwiper.thumbSwiper .swiper-slide {
  opacity: 0.4;
}
.c-thumbSwiper.thumbSwiper .swiper-slide-thumb-active {
  opacity: 1;
}
/* END THUMB SLIDER */
/* END SLIDER */
/* ======================================================== */
/* SCROLLABLE */
.w-1000 {
  width: 1000px;
}
/* END SCROLLABLE */
/* ======================================================== */

/* ANIMATION  */
/* TEXT */
.c-text-curtain {
  display: inline-flex;
  position: relative;
  z-index: 1;
}
.c-text-curtain__text {
  color: #fff;
  opacity: 0;
  transition: all 1s 1s ease-in-out;
}
.c-text-curtain.leff .c-text-curtain__text {
  opacity: 1;
}
.c-text-curtain::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #f6317b;
  transition: all 1s ease-in-out;
  opacity: 0;
}
.c-text-curtain.leff::after {
  width: 100%;
  opacity: 1;
}
/* END ANIMATION  */
/* ======================================================== */
/* TAB LIST */
.tab-lists {
  position: relative;
}
.tab-lists .list-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: 0.4s;
}
.tab-lists .list-item.active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}
/* ======================================================== */
/* SECTION TEXT IMG */
.c-section1 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.c-section1--aligncenter {
  align-items: center;
}
.c-section1__img {
  width: 50%;
}
.c-section1__text {
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .c-section1__img,
  .c-section1__text {
    width: 100% !important;
    flex: 0 1 auto !important;
  }
}

/* ======================================================== */
/* BUTTON */
/* BTN 1 */
.c-btn1 {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 10px;
  min-width: 180px;
  padding: 14px 30px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  background-color: #111111;
  color: #fff;
  border: 2px solid #111;
  transition: 0.4s ease-in-out;
}
.c-btn1::after {
  background-image: url(./../images/common/ic-chevron-white.png);
  width: 8px;
  height: 14px;
}

.c-btn1:hover {
  opacity: 1;
  background-color: #fff;
  color: #111;
}
.c-btn1:hover::after {
  background-image: url(./../images/common/ic-chevron-black.png);
}
@media screen and (max-width: 767px) {
  .c-btn1 {
    padding: 12px 20px;
    font-size: 13px;
  }
}
/* END BTN 1 */
/* END BUTTON */
/* ======================================================== */
/* ======================================================== */
/* ======================================================== */
/* ======================================================== */
/* ======================================================== */
/* ======================================================== */
/* ======================================================== */
/* ======================================================== */
