@charset "UTF-8";
/* ======================================================================
 🌎 Root Variables
====================================================================== */
:root {
  /* 📏 Layout */
  --max-width: 1100px;
  --content-width: 90%;
  --min-width: 320px;
  /* 🔤 Typography */
  --font-primary: "Sarabun", sans-serif;
  --font-title: "Smooch Sans", sans-serif;
  --font-pop: "pop", sans-serif;
  --font-size-base: 18px;
  --font-size-sm: 14px;
  --font-size-sm12: 12px;
  --font-size-mid: 16px;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  /* 🎨 Colors */
  --color-primary: #f47500;
  --color-btn: #f29d42;
  --color-secondary: #31b1d6;
  --color-mid: #000038;
  --color-text: #333;
  --color-link: #222;
  --color-border: rgba(2, 1, 1, 0.071);
  --color-background: #fff;
  /* 🎭 Effects */
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* ======================================================================
 🛠️ Reset & Box Model
====================================================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
main {
  max-width: 100vw !important;
  overflow-x: hidden;
}
html {
  line-height: normal;
  scroll-padding-top: 169.28px;
}
@media only screen and (width <= 767px) {
  html {
    scroll-padding-top: 9%;
  }
}

body {
  margin: auto;
  background: #fff;
  color: #4c4c5b;
  font-size: var(--font-size-base);
  font-family: var(--font-primary), "Hiragino Kaku Gothic ProN",
    "Yu Gothic Medium", "Meiryo", sans-serif;
}
@media only screen and (width <= 767px) {
  body {
    font-size: 16px;
  }
  body img {
    max-width: 100%;
  }
}
body #wrapper:after {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: block;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  content: "";
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-backdrop-filter: blur(32px);
  backdrop-filter: blur(32px);
}
body:after {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
body.no-scroll {
  position: fixed;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
body.no-scroll #wrapper:after {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

/* ======================================================================
 🏗️ Structure
====================================================================== */
#wrapper {
  position: relative;
  overflow: hidden;
  margin: auto;
  min-width: var(--min-width);
  width: 100%;
  height: 100%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media only screen and (min-width: 1025px) and (max-width: 1199px) {
  #wrapper {
    min-width: 1199px;
  }
}
#wrapper.open {
  padding-left: 396.8px;
}
@media only screen and (width <= 767px) {
  #wrapper.open {
    padding-left: 0;
  }
}

.container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: var(--max-width);
  width: 100%;
}
@media only screen and (width <= 1024px) {
  .container {
    padding: 0 32px;
  }
}

/* ======================================================================
 🖼️ Images
====================================================================== */
figure {
  margin: 0;
}

img {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: top;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ov_hover:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

/* 🔝 Back to Top Button */
.page_up {
  position: fixed;
  right: -550px;
  bottom: 192px;
  z-index: 999;
}
@media only screen and (width <= 767px) {
  .page_up {
    bottom: 10%;
    width: 12%;
  }
  .page_up a {
    display: block;
  }
}

/* ======================================================================
 🔗 Links 
====================================================================== */
a {
  color: var(--color-text);
  text-decoration: underline;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  /* Disable phone links on desktop */
}
a:hover {
  text-decoration: none;
}
a[href*="tel:"] {
  text-decoration: none;
  cursor: default;
  pointer-events: none;
}
@media only screen and (width <= 767px) {
  a[href*="tel:"] {
    cursor: pointer;
    pointer-events: auto;
  }
}

/* ======================================================================
 📝 Typography
====================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
}

p,
li,
pre,
td,
th,
dt,
dd {
  line-height: 2;
}

/* ======================================================================
    Form
====================================================================== */
input,
select,
optgroup,
option,
textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  border-radius: 0;
  background: #fff;
  color: var(--color-secondary);
  font-weight: 500;
  font-family: var(--font-primary), "Hiragino Kaku Gothic ProN",
    "Yu Gothic Medium", "Meiryo", sans-serif;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  appearance: menulist;
}

input[type="radio"] {
  margin-right: 0.3em;
  height: auto;
}
input[type="checkbox"] {
  margin-right: 0.3em;
  height: 17px;
  border-radius: 0;
}
input[type="submit"] {
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type="submit"][disabled] {
  background-color: #ddd !important;
  color: var(--color-mid);
  cursor: default;
  -webkit-transition: none !important;
  transition: none !important;
}

input {
  padding: 10px 20px !important;
  width: 100%;
  outline: none;
  border: none;
  background: #f5f9ff;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: var(--color-mid);
}
input:focus {
  outline: none;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

textarea {
  overflow: hidden;
  width: 100%;
  resize: none;
}

input:disabled {
  color: var(--color-mid) !important;
  opacity: 1; /* Giữ độ rõ ràng của text */
  -webkit-text-fill-color: var(--color-mid) !important; /* Fix cho Safari */
}

input[readonly] {
  color: var(--color-mid) !important;
  cursor: default;
}

/* ======================================================================
    Border decoration
====================================================================== */
.c-border {
  position: relative;
  margin: 50px 0;
  width: 100%;
  height: 1px;
  background: rgba(2, 1, 1, 0.0705882353);
}
@media only screen and (width <= 767px) {
  .c-border {
    margin: 25px 0;
  }
}
.c-border:before {
  position: absolute;
  top: -4px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--color-secondary);
  content: "";
}
.c-border:after {
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  background: var(--color-secondary);
  content: "";
}

.color-spec {
  margin: 0;
  color: var(--color-secondary);
}

/* ======================================================================
    Logo run
====================================================================== */
@-webkit-keyframes slides {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes slides {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.logos {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  border-bottom: 1px solid rgba(2, 1, 1, 0.0705882353);
  color: #fff;
  white-space: nowrap;
  font-weight: bold;
  font-size: 70px;
  stroke: rgba(0, 0, 0, 0.32);
  stroke-width: 1px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.32);
}
@media only screen and (width <= 1600px) {
  .logos {
    font-size: 57px;
  }
}
@media only screen and (width <= 1024px) {
  .logos {
    padding: 10px 0;
    font-size: 7vw;
  }
}

.logos::before,
.logos::after {
  position: absolute;
  top: 0;
  z-index: 2;
  width: 250px;
  height: 100%;
  content: "";
}

.logo_items {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  -webkit-animation: 50s slides infinite linear;
  animation: 50s slides infinite linear;
}
.logo_items img {
  margin: 0 25px;
  max-width: none;
}
@media only screen and (width <= 767px) {
  .logo_items img {
    margin: 0;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}

/* ======================================================================
    Title
====================================================================== */
.c-title-1 {
  margin-bottom: 50px;
  color: var(--color-mid);
  text-align: center;
  font-weight: bold;
  font-size: 60px;
  font-family: var(--font-secondary);
  line-height: 1.4;
}
@media only screen and (width <= 1600px) {
  .c-title-1 {
    font-size: 50px;
  }
}
@media only screen and (width <= 1024px) {
  .c-title-1 {
    font-size: 7vw;
  }
}
@media only screen and (width <= 767px) {
  .c-title-1 {
    margin-bottom: 30px;
    font-size: 26.5px;
  }
}
.c-title-1__stroke {
  color: #fff;
  stroke: rgba(0, 0, 0, 0.32);
  stroke-width: 1px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.32);
}
.c-title-1__gradient--white {
  color: #fff;
}

.c-title-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 40px;
  padding: 0 20px;
  color: var(--color-secondary);
}
@media only screen and (width <= 767px) {
  .c-title-2 {
    margin-bottom: 20px;
  }
}
.c-title-2__sub {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px 30px;
  border-radius: 1px;
  border-radius: 1px;
  background: var(--color-mid);
  color: #fff;
  text-align: center;
  font-size: 30px;
}
@media only screen and (width <= 1024px) {
  .c-title-2__sub {
    font-size: 20px;
  }
}
@media only screen and (width <= 767px) {
  .c-title-2__sub {
    font-size: 18px;
  }
}

.c-title-3 {
  margin-bottom: 20px;
  color: var(--color-secondary);
  text-transform: capitalize;
  font-size: 25px;
}
@media only screen and (width <= 767px) {
  .c-title-3 {
    font-size: 18px;
  }
}

.c-title-4 {
  margin-bottom: 20px;
  color: var(--color-secondary);
  font-size: 25px;
}
@media only screen and (width <= 767px) {
  .c-title-4 {
    font-size: 18px;
  }
}

.c-title-5 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-secondary);
  color: var(--color-mid);
  font-size: 20px;
}
@media only screen and (width <= 767px) {
  .c-title-5 {
    font-size: 18px;
  }
}

/* ======================================================================
    List
====================================================================== */
.c-list-1 li {
  position: relative;
  padding-left: 30px;
}
.c-list-1 li:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  width: 17.45px;
  height: 9.8px;
  background: var(--color-secondary);
  color: #fff;
  content: "";
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-mask-image: url(../images/top/tick.svg);
  mask-image: url(../images/top/tick.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

/* ======================================================================
    Bg
====================================================================== */
.c-bg1 {
  padding: 100px 0;
  background: #f5f9ff url(../images/top/process-bg.png) center center;
}
@media only screen and (width <= 1024px) {
  .c-bg1 {
    padding: 50px 0;
  }
}

/* ======================================================================
    Button
====================================================================== */
.c-btn-arrow {
  position: absolute;
  top: 0;
  right: -27.5px;
  bottom: 0;
  z-index: 1;
  margin: auto;
  width: 55px;
  height: 55px;
  background: var(--color-btn);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
@media only screen and (width <= 767px) {
  .c-btn-arrow {
    width: 40px;
    width: -20px;
    height: 40px;
  }
}
.c-btn-arrow:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  width: 17.45px;
  height: 9.8px;
  background: #fff;
  color: #fff;
  content: "";
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-mask-image: url(../images/common_img/btn-arrow-white.svg);
  mask-image: url(../images/common_img/btn-arrow-white.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.c-btn-arrow--small {
  right: 20px;
  width: 43px;
  height: 43px;
}
.c-btn-arrow--small:after {
  width: 13px;
  height: 7.6px;
  background: var(--color-btn);
}
.c-btn-arrow--white {
  background: #fff;
}

.c-btn-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.c-btn-1--left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.c-btn-1__button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 350px;
  height: 65px;
  border: none;
  background: var(--color-secondary);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 20px;
  cursor: pointer;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media only screen and (width <= 767px) {
  .c-btn-1__button {
    min-width: 220px;
    height: 45px;
    font-size: 18px;
  }
}
.c-btn-1__button:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  display: block;
  margin: auto;
  width: 17.45px;
  height: 9.8px;
  background: #fff;
  color: #fff;
  content: "";
  -webkit-mask-image: url(../images/common_img/btn-arrow-white.svg);
  mask-image: url(../images/common_img/btn-arrow-white.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.c-btn-1__button--small {
  min-width: 230px;
}
@media only screen and (width <= 767px) {
  .c-btn-1__button--small {
    min-width: auto;
    width: 100%;
  }
}
.c-btn-1__button--back:after {
  right: 30px;
  left: unset;
  margin: auto 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.c-btn-1__button:hover {
  background: var(--color-mid);
}
.c-btn-1__button--white {
  border: 1px solid var(--color-btn);
  background: #fff;
  color: var(--color-btn);
}
.c-btn-1__button--white:hover {
  background: var(--color-mid);
  color: #fff;
}
.c-btn-1__button--white:hover:after {
  background: #fff;
}
.c-btn-1__button--white:after {
  background: var(--color-btn);
}

/* ======================================================================
    Header
====================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0rem 0 0rem;
  width: 100%;
}
.header:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-backdrop-filter: blur(1.3rem);
  backdrop-filter: blur(1.3rem);
}
.header__side-logo--click {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 180px;
  opacity: 1;
  cursor: pointer;
  -webkit-transition: all ease 0.3s 0.3s;
  transition: all ease 0.3s 0.3s;
}
@media only screen and (width <= 767px) {
  .header__side-logo--click {
    width: 140px;
  }
}
.header__side2 {
  position: fixed;
  top: 100px;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 30px 40px 30px;
  background: #f5f9ff;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
@media only screen and (width <= 767px) {
  .header__side2 {
    width: 100%;
  }
}
@media only screen and (width <= 460px) {
  .header__side2 {
    top: 80px;
    padding: 25px;
  }
}
.header__side2-title {
  color: var(--color-secondary);
  font-size: 16px;
}
.header__side2.open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.header__side2-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
.header__side2-social .header__side2-item {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.header__side2-social .header__side2-item:hover {
  -webkit-transform: translateY(-0.6rem);
  transform: translateY(-0.6rem);
}
.header__side2-list {
  margin-bottom: 3rem;
}
.header__side2-link {
  display: inline-block;
  text-decoration: none;
}
.header__side2-link:hover {
  color: var(--color-secondary);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: translateX(-1rem) scale(1.05);
  transform: translateX(-1rem) scale(1.05);
}
.header__right {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 30px;
  width: 100%;
}
@media only screen and (width <= 1024px) {
  .header__right {
    padding: 20px;
  }
}
@media only screen and (width <= 767px) {
  .header__right {
    padding: 20px 10px;
  }
}
.header__right-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}
@media only screen and (width <= 767px) {
  .header__right-list {
    position: relative;
    gap: 1px;
  }
}
.header__right-link--shop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: var(--color-secondary);
}
@media only screen and (width <= 460px) {
  .header__right-link--shop {
    width: 45px;
    height: 45px;
  }
}
.header__right-link--shop:hover {
  background: var(--color-mid);
}
.header__right-item {
  position: relative;
}
@media only screen and (width <= 767px) {
  .header__right-item {
    position: unset;
  }
}
.header__right-submenu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  gap: 10px;
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
}
@media only screen and (width <= 767px) {
  .header__right-submenu {
    gap: 1px;
  }
}
.header__right-submenu.open {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.header__right-submenu button {
  padding: 0 20px;
  border: none;
  background: var(--color-mid);
  color: #fff;
  font-weight: 500;
  cursor: pointer;
}
.header__right-submenu input {
  padding: 3px 10px;
  width: 200px;
  border: none;
  border: 1px solid #ddd;
}
.header__right-sublink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 5px 10px;
  min-width: 120px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 500;
}
.header__right-sublink:hover {
  color: var(--color-mid);
}
.header__right-sublink--lang {
  padding: 5px 20px;
  background: var(--color-secondary);
}
.header__right-sublink--lang:hover {
  background: var(--color-mid);
  color: #fff;
}
.header__right-sublink--lang {
  padding: 5px 20px;
  background: var(--color-secondary);
}
.header__right-sublink--lang:hover {
  background: var(--color-mid);
  color: #fff;
}
.header__right-sublink--user {
  padding: 5px 20px;
  background: var(--color-secondary);
}
.header__right-sublink--user:hover {
  background: var(--color-mid);
  color: #fff;
}

/* ======================================================================
    Footer
====================================================================== */
.footer__menu {
  padding: 40px 0 30px;
  background: #000038;
}
@media only screen and (width <= 767px) {
  .footer__menu {
    padding-bottom: 40px;
  }
}
.footer__menu-list {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #333360;
}
@media only screen and (width <= 1024px) {
  .footer__menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media only screen and (width <= 767px) {
  .footer__menu-list {
    margin-bottom: 0;
  }
}
.footer__menu-item {
  margin-bottom: 5px;
}
.footer__menu-item--bigspace {
  margin-bottom: 30px;
}
.footer__menu-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (width <= 1024px) {
  .footer__menu-nav {
    display: block;
  }
}
.footer__menu-link {
  color: #bebebe;
  text-decoration: none;
}
.footer__menu-link:hover {
  color: var(--color-secondary);
}
.footer__content {
  padding-bottom: 50px;
  background: #000038;
}
.footer__content .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (width <= 1024px) {
  .footer__content .container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 3rem 0;
  }
}
@media only screen and (width <= 767px) {
  .footer__content .container {
    gap: 0;
  }
}
.footer__content-address {
  color: #bebebe;
}
.footer__content-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (width <= 767px) {
  .footer__content-logo {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }
}
.footer__content-logolink {
  display: block;
  margin-right: 50px;
  margin-bottom: 30px;
  width: 220px;
}
@media only screen and (width <= 1024px) {
  .footer__content-logolink {
    margin: 0 auto 30px;
  }
}
@media only screen and (width <= 767px) {
  .footer__content-logolink {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 10px;
    margin-left: 0;
    width: 150px;
  }
}
@media only screen and (width <= 767px) {
  .footer__content-left {
    margin-bottom: 30px;
    width: 100%;
  }
}
.footer__content-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.footer__content-map {
  padding-left: 24px;
  background: url(../images/common_img/f_map.svg) no-repeat left center;
}
.footer__content-map a {
  color: var(--color-primary);
}
.footer__content-contact {
  padding: 0px 30px 0px;
  width: 552px;
}
@media only screen and (width <= 767px) {
  .footer__content-contact {
    width: 100%;
  }
}
.footer__content-list {
  margin-bottom: 10px;
  text-align: center;
}
.footer__content-fax {
  color: #bebebe;
  font-size: 18px;
  line-height: 1.4;
}
@media only screen and (width <= 767px) {
  .footer__content-fax {
    font-size: 16px;
  }
}
.footer__content-tel {
  color: #bebebe;
  font-size: 19px;
  line-height: 1.4;
}
@media only screen and (width <= 767px) {
  .footer__content-tel {
    font-size: 18px;
  }
}
.footer__content-tel a {
  color: #fff;
  font-size: 31px;
}
@media only screen and (width <= 767px) {
  .footer__content-tel a {
    font-size: 29px;
  }
}
.footer__content-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.footer__content-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 330px;
  height: 60px;
  background: var(--color-secondary);
  color: #fff;
  text-decoration: none;
}
@media only screen and (width <= 767px) {
  .footer__content-link {
    min-width: 260px;
    width: auto;
    height: 50px;
  }
}
.footer__content-link:hover {
  background: var(--color-mid);
}
.footer__content-icon {
  padding-left: 40px;
  background: url(../images/common_img/f_mail.svg) no-repeat left center;
  background-size: auto 20px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 20px;
}
@media only screen and (width <= 767px) {
  .footer__content-icon {
    padding-left: 30px;
    background-size: auto 15px;
    font-size: 18px;
  }
}
.footer__copy {
  padding: 10px 0;
  border-top: 1px solid #333360;
  background: #000038;
  color: #fff;
  text-align: center;
}

/* ======================================================================
    Transition page
====================================================================== */
.transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center;
  transform-origin: center;
}

.transition-overlay.active {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

html.is-changing .transition-overlay {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* ======================================================================
    Loading page
====================================================================== */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background: #fff url(../images/top/choose-map.png) no-repeat center center;
  font-size: 24px;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}
.loading-screen__content {
  position: relative;
}
@media only screen and (width <= 767px) {
  .loading-screen__logo {
    height: 50px;
  }
}

/* .hidden {
  opacity: 0;
  pointer-events: none;
} */
