@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  /* Typography */
  --font-pri: "Proxima Nova", sans-serif;
  /* Color Palette */
  --color-pri: #1d90c9;
  --color-sec: #001221;
  --color-third: #3b4044;
  --color-text: #888888;
  --color-text-2: #005491;
  --color-white: #fff;
  --color-black: #000;
  --container-width: 124.8rem;
  --container-padding: 1.6rem;
  --z-i-header: 100;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}
html ::-webkit-scrollbar {
  width: 0.5rem;
}
html ::-webkit-scrollbar-thumb {
  border-radius: 0.8rem;
  background: #d9d9d9;
}

body {
  font-family: var(--font-pri);
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) {
  body {
    font-size: 1.4rem;
  }
}
body {
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.3;
  overflow: hidden auto;
  letter-spacing: -0.02rem;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background-color: var(--clr-main-bg);
}
body.admin-bar .header {
  top: 3.2rem;
}
@media screen and (max-width: 782px) {
  body.admin-bar .header {
    top: 4.6rem;
  }
}
body.no-scroll .toc-container {
  z-index: calc(var(--z-i-header) + 0);
}
body .mona-empty {
  color: var(--mona-empty-color, var(--color-text));
  font-weight: 700;
}
body .dont-know {
  width: 100%;
  max-width: var(--container-width);
  height: 100%;
  margin: 0 auto;
  padding: 4rem var(--container-padding);
}

a {
  text-decoration: none;
  color: inherit;
}

button,
select {
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  font-family: var(--font-pri);
}

button {
  padding: 0;
  background-color: transparent;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: var(--font-pri);
}

.main {
  min-height: calc(100vh - 19rem);
  padding-top: 12rem;
  transition: transform 0.4s;
}
@media screen and (max-width: 1199.98px) {
  .main {
    padding-top: 8rem;
  }
}
@media screen and (max-width: 576.98px) {
  .main {
    padding-top: 6rem;
  }
}
.main.is-active {
  transform: translateX(32rem);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  height: auto;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.no-scroll {
  touch-action: none;
  -webkit-overflow-scrolling: none;
  overflow: hidden;
  overscroll-behavior: none;
}

iframe {
  vertical-align: middle;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.tabBtn,
.gItem {
  cursor: pointer;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--color-text);
  -webkit-box-shadow: 0 0 0 100rem #f9fafb inset;
  transition: background-color 5000s ease-in-out 0s;
}

input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  color: transparent;
  background: transparent;
  cursor: pointer;
}
input[type=date]::-webkit-date-and-time-value {
  text-align: left;
}

section {
  scroll-margin-top: 16rem;
}
@media screen and (max-width: 576px) {
  section {
    scroll-margin-top: 12rem;
  }
}

.hide-sitename {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: visible;
}

.aside-overlay {
  inset: 0;
  opacity: 0;
  width: 100%;
  z-index: 99;
  height: 100dvh;
  position: fixed;
  visibility: hidden;
  transition: 0.4s ease;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.8);
}
.aside-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.row {
  --col-gap: 3.2rem;
  --row-gap: 3.2rem;
  display: flex;
  flex-wrap: wrap;
  row-gap: var(--row-gap);
  margin: 0 calc(var(--col-gap) / 2 * -1);
}

.col {
  width: 100%;
  padding: 0 calc(var(--col-gap) / 2);
}
.col-11 {
  width: 91.6666666667%;
}
.col-10 {
  width: 83.3333333333%;
}
.col-9 {
  width: 75%;
}
.col-8 {
  width: 66.6666666667%;
}
.col-7 {
  width: 58.3333333333%;
}
.col-6 {
  width: 50%;
}
.col-5 {
  width: 41.6666666667%;
}
.col-4 {
  width: 33.3333333333%;
}
.col-3 {
  width: 25%;
}
.col-2 {
  width: 16.6666666667%;
}
.col-1 {
  width: 8.3333333333%;
}

.flex {
  display: flex;
  flex-direction: column;
}
.flex-16 {
  gap: 1.6rem;
}
.flex-20 {
  gap: 2rem;
}
.flex-24 {
  gap: 2.4rem;
}
.flex-32 {
  gap: 3.2rem;
}
.flex-36 {
  gap: 3.6rem;
}
.flex-40 {
  gap: 4rem;
}
.flex-48 {
  gap: 4.8rem;
}
.flex-50 {
  gap: 5rem;
}
.flex-56 {
  gap: 5.6rem;
}
.flex-60 {
  gap: 6rem;
}
.flex-64 {
  gap: 6.4rem;
}
.flex-68 {
  gap: 6.8rem;
}
.flex-80 {
  gap: 8rem;
}
.flex-96 {
  gap: 9.6rem;
}
.flex-100 {
  gap: 10rem;
}
.flex-120 {
  gap: 12rem;
}
@media screen and (max-width: 992px) {
  .flex-60 {
    gap: 4rem;
  }
  .flex-64 {
    gap: 4rem;
  }
  .flex-68 {
    gap: 4rem;
  }
  .flex-80 {
    gap: 4rem;
  }
  .flex-96 {
    gap: 4rem;
  }
  .flex-100 {
    gap: 4rem;
  }
  .flex-120 {
    gap: 4rem;
  }
}
@media screen and (max-width: 576px) {
  .flex-32 {
    gap: 2.4rem;
  }
  .flex-36 {
    gap: 2.4rem;
  }
  .flex-40 {
    gap: 2.4rem;
  }
  .flex-48 {
    gap: 2.4rem;
  }
  .flex-50 {
    gap: 2.4rem;
  }
  .flex-56 {
    gap: 2.4rem;
  }
  .flex-60 {
    gap: 2.4rem;
  }
  .flex-64 {
    gap: 2.4rem;
  }
  .flex-68 {
    gap: 2.4rem;
  }
  .flex-80 {
    gap: 2.4rem;
  }
  .flex-96 {
    gap: 2.4rem;
  }
  .flex-100 {
    gap: 2.4rem;
  }
  .flex-120 {
    gap: 2.4rem;
  }
}

.mona-content {
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .mona-content {
    font-size: 1.4rem;
  }
}
.mona-content {
  color: var(--color-sec);
  line-height: 1.5;
}
.mona-content > .container {
  padding: 0;
}
.mona-content .ez-toc-counter + * {
  margin-top: 0;
}
.mona-content b,
.mona-content strong {
  font-weight: 600;
}
.mona-content em,
.mona-content i {
  font-style: italic;
}
.mona-content h1,
.mona-content h2,
.mona-content h3,
.mona-content h4,
.mona-content h5,
.mona-content h6 {
  color: #082823;
  margin: 2rem 0rem;
  font-weight: 600;
}
@media screen and (max-width: 576px) {
  .mona-content h1,
  .mona-content h2,
  .mona-content h3,
  .mona-content h4,
  .mona-content h5,
  .mona-content h6 {
    margin: 1.6rem 0;
  }
  .mona-content h1 br,
  .mona-content h2 br,
  .mona-content h3 br,
  .mona-content h4 br,
  .mona-content h5 br,
  .mona-content h6 br {
    display: none;
  }
}
.mona-content h1 {
  font-size: 1.7em;
}
.mona-content h2 {
  font-size: 2.4rem;
}
@media only screen and (max-width: 1200px) {
  .mona-content h2 {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 800px) {
  .mona-content h2 {
    font-size: 1.8rem;
  }
}
.mona-content h3 {
  font-size: 2rem;
}
@media only screen and (max-width: 1200px) {
  .mona-content h3 {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 800px) {
  .mona-content h3 {
    font-size: 1.6rem;
  }
}
.mona-content h4 {
  font-size: 1.8rem;
}
@media only screen and (max-width: 1200px) {
  .mona-content h4 {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 800px) {
  .mona-content h4 {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .mona-content h4 {
    font-size: 1.4rem;
  }
}
.mona-content h5 {
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .mona-content h5 {
    font-size: 1.4rem;
  }
}
.mona-content h6 {
  font-size: 1.4rem;
}
.mona-content p {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 2.4rem 0rem;
}
@media screen and (max-width: 576px) {
  .mona-content p {
    margin: 1.2rem 0rem;
  }
}
.mona-content p:has(+ ul) {
  margin-bottom: 0rem;
}
.mona-content p img {
  margin: 0;
  display: inline;
}
.mona-content span {
  font-size: inherit;
  margin: 2.4rem 0rem;
}
@media screen and (max-width: 576px) {
  .mona-content span {
    margin: 1.2rem 0rem;
  }
}
.mona-content ul,
.mona-content ol {
  margin: 2.4rem 0rem;
  list-style-position: outside;
  padding-left: 3.2rem;
}
@media screen and (max-width: 576px) {
  .mona-content ul,
  .mona-content ol {
    margin: 1.6rem 0rem;
    padding-left: 2.4rem;
  }
}
.mona-content ul ul,
.mona-content ul ol,
.mona-content ol ul,
.mona-content ol ol {
  margin-left: 1em;
}
.mona-content ul {
  list-style-type: disc;
}
.mona-content ol {
  list-style-type: decimal;
}
.mona-content ol li::before {
  content: none;
}
.mona-content ol li p {
  position: relative;
  margin: 1.6rem 0;
  padding-left: 0.8rem;
  font-weight: 100;
}
.mona-content ol li p::before {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: -1.2rem;
  width: 0.8rem;
  height: 0.8rem;
  transform: rotate(-45deg);
  background-color: var(--color-pri);
}
@media screen and (max-width: 576px) {
  .mona-content ol li p::before {
    left: -0.9rem;
    width: 0.5rem;
    height: 0.5rem;
  }
}
.mona-content ul ul,
.mona-content ol ul {
  list-style-type: circle;
  margin: 1.2rem 0;
}
.mona-content ul ul li:before,
.mona-content ol ul li:before {
  content: none;
}
.mona-content ol ol,
.mona-content ul ol {
  list-style-type: lower-latin;
}
.mona-content ol ol li:before,
.mona-content ul ol li:before {
  content: none;
}
.mona-content li {
  margin: 1.2rem 0;
  position: relative;
}
@media screen and (max-width: 576px) {
  .mona-content li {
    margin: 0.8rem 0;
  }
}
.mona-content li::marker {
  color: currentColor;
}
.mona-content li p,
.mona-content li span {
  margin: 0;
}
.mona-content li:first-child {
  margin-top: 0;
}
.mona-content li:last-child {
  margin-bottom: 0;
}
.mona-content img,
.mona-content iframe {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2.4rem 0;
  border-radius: 1.6rem;
}
@media screen and (max-width: 576px) {
  .mona-content img,
  .mona-content iframe {
    margin: 1.6rem 0;
    border-radius: 0.8rem;
  }
}
.mona-content iframe {
  aspect-ratio: 1335/751;
  width: 100%;
  max-width: 100%;
}
.mona-content .img-half {
  display: flex;
  gap: 2.4rem;
  margin: 1.6rem auto;
}
@media screen and (max-width: 576px) {
  .mona-content .img-half {
    margin: 1.2rem auto;
    gap: 0.8rem;
  }
}
.mona-content .img-half img {
  width: calc(50% - 1.2rem);
  border-radius: 1.2rem;
  margin: 0;
}
@media screen and (max-width: 576px) {
  .mona-content .img-half img {
    border-radius: 0.8rem;
    width: calc(50% - 0.4rem);
  }
}
.mona-content blockquote {
  background-color: #f7f4ef;
  border-radius: 0.8rem;
  margin: 2.4rem auto;
  padding: 2.4rem;
  quotes: "“" "”" "‘" "’";
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
  color: var(--color-text);
  font-weight: 400;
}
@media screen and (max-width: 576px) {
  .mona-content blockquote {
    padding: 0.8rem 0 0.8rem 1.6rem;
  }
}
.mona-content blockquote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2.4rem;
  z-index: -1;
  width: 12.9rem;
  height: 100%;
  background: url("../../assets/images/post-detail/icon_quote1.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 576px) {
  .mona-content blockquote::before {
    width: 6.4rem;
  }
}
.mona-content blockquote p,
.mona-content blockquote span {
  margin: 0;
  font-weight: 400;
}
.mona-content blockquote ul {
  margin: 0;
}
.mona-content blockquote li::before {
  background-color: var(--color-text);
}
.mona-content .mona-youtube-wrap {
  position: relative;
  height: 0;
  padding-top: 56.25%;
  max-width: 100%;
}
.mona-content .mona-youtube-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mona-content .mona-table-wrap {
  overflow: auto;
}
.mona-content a {
  text-decoration: underline;
  transition: all 0.4s ease;
}
.mona-content a:hover {
  color: var(--color-pri);
}
.mona-content figure {
  width: fit-content;
  margin: 2.4rem auto;
  max-width: 100%;
}
@media screen and (max-width: 576px) {
  .mona-content figure {
    margin: 1.2rem auto;
  }
}
.mona-content figure img {
  display: block;
  margin: 0;
}
.mona-content figcaption {
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .mona-content figcaption {
    font-size: 1.4rem;
  }
}
.mona-content figcaption {
  text-align: center;
  line-height: 150%;
  margin-top: 0.8rem;
  max-width: 100%;
}
.mona-content .img-full img {
  display: block;
  width: 100%;
}
.mona-content table {
  max-width: 100%;
  table-layout: fixed;
  border-radius: 0rem;
  border-collapse: separate;
  border: none;
  width: 100%;
  height: auto !important;
  margin: 2.4rem 0rem;
  color: #151f12;
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .mona-content table {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 576px) {
  .mona-content table {
    margin: 1.2rem 0rem;
  }
}
.mona-content table img {
  margin: 0 !important;
}
@media screen and (max-width: 768px) {
  .mona-content table th,
  .mona-content table td {
    min-width: 14rem;
  }
}
.mona-content table th {
  vertical-align: middle;
  padding: 1.05rem 1.6rem;
}
@media screen and (max-width: 576px) {
  .mona-content table th {
    padding: 0.8rem;
  }
}
.mona-content table td {
  vertical-align: middle;
  padding: 1.05rem 1.6rem;
  border-bottom: 0.1rem solid #999;
}
@media screen and (max-width: 576px) {
  .mona-content table td {
    padding: 0.8rem;
  }
}
.mona-content table th,
.mona-content table tbody tr:first-child td {
  vertical-align: middle;
}
.mona-content table tr:not(:first-child) td:not(:last-child) {
  border-right: 0.1rem solid #999;
}
.mona-content table tr td:not(:last-child) {
  border-right: 0.1rem solid #999;
}
.mona-content table tbody tr:not(:is(:first-child, :last-child)) td {
  border-bottom: 0.1rem solid #999;
}
.mona-content table p,
.mona-content table ul,
.mona-content table ol,
.mona-content table blockquote,
.mona-content table iframe,
.mona-content table figure {
  margin: 0;
}
.mona-content table ul {
  list-style-type: disc;
}
.mona-content table img {
  width: unset;
  margin: 0 auto;
}
.mona-content .table-resp {
  overflow-y: auto;
  border-radius: 0.8rem;
  box-shadow: 1rem 1rem 4rem 0px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 1rem 1rem 4rem 0px rgba(0, 0, 0, 0.05);
  margin: 2.4rem 0;
}
@media screen and (max-width: 576px) {
  .mona-content .table-resp {
    margin: 1.2rem 0;
  }
}
.mona-content .table-resp::-webkit-scrollbar {
  display: none;
}
.mona-content .table-resp table {
  margin: 0;
}
@media screen and (max-width: 576px) {
  .mona-content .table-resp table {
    table-layout: unset;
  }
}
.mona-content .wp-caption {
  width: 100% !important;
  max-width: 100%;
  margin: 2.4rem 0;
}
@media screen and (max-width: 576px) {
  .mona-content .wp-caption {
    margin: 1.2rem 0;
  }
}
.mona-content .wp-caption img {
  margin: 0 auto;
}
.mona-content .wp-caption.alignnone {
  margin: 2.4rem 0;
}
@media screen and (max-width: 576px) {
  .mona-content .wp-caption.alignnone {
    margin: 1.2rem 0;
  }
}
.mona-content .wp-caption.alignright {
  margin-left: auto;
}
.mona-content .wp-caption.aligncenter {
  margin: 2.4rem auto;
}
@media screen and (max-width: 576px) {
  .mona-content .wp-caption.aligncenter {
    margin: 1.2rem auto;
  }
}
.mona-content .wp-caption.alignleft {
  margin-right: auto;
}
.mona-content .wp-caption:has(+ .wp-caption-text) {
  margin-bottom: 0;
}
.mona-content .wp-caption-text {
  margin: 0;
  margin-top: 1.6rem;
  color: #667085;
  font-size: 1.4rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.3;
  max-width: 100%;
  padding-left: 1.8rem;
  border-left: 2px solid var(--color-pri);
}
@media screen and (max-width: 576px) {
  .mona-content .wp-caption-text {
    margin-top: 0.8rem;
    font-size: 1.4rem;
    padding-left: 1.4rem;
  }
}
.mona-content .gallery .gallery-caption,
.mona-content .gallery-columns-2 .gallery-caption,
.mona-content .gallery-size-thumbnail .gallery-caption {
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .mona-content .gallery .gallery-caption,
  .mona-content .gallery-columns-2 .gallery-caption,
  .mona-content .gallery-size-thumbnail .gallery-caption {
    font-size: 1.2rem;
  }
}
.mona-content .gallery-columns-2 {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2.4rem 0 !important;
}
@media screen and (max-width: 576px) {
  .mona-content .gallery-columns-2 {
    margin: 1.2rem 0 !important;
    gap: 1.6rem;
  }
}
.mona-content .gallery-columns-2 br {
  display: none;
}
.mona-content .gallery-columns-2 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin: 0;
  border: none !important;
}
.mona-content .gallery-columns-2 .gallery-item {
  width: calc(50% - 1rem) !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 576px) {
  .mona-content .gallery-columns-2 .gallery-item {
    width: calc(50% - 0.8rem) !important;
  }
}
.mona-content .gallery-columns-2 .gallery-icon {
  width: 100%;
  height: 100%;
  aspect-ratio: 41.2/28.8;
  max-width: 100%;
  position: relative;
}
.mona-content .gallery-columns-2 .gallery-icon a {
  text-decoration: none;
  transition: none;
  position: absolute;
  inset: 0;
}
.mona-content .gallery-columns-2 .gallery-icon a img {
  width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mona-content .gallery-columns-3 {
  max-width: 100%;
  margin: 2.4rem 0 !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 576px) {
  .mona-content .gallery-columns-3 {
    gap: 1.6rem;
    margin: 1.2rem 0 !important;
  }
}
.mona-content .gallery-columns-3 br {
  display: none;
}
.mona-content .gallery-columns-3 img {
  margin: 0;
  border: none !important;
}
.mona-content .gallery-columns-3 .gallery-item {
  width: calc(33.3333333333% - 1.3333333333rem) !important;
  margin: 0 !important;
}
@media screen and (max-width: 576px) {
  .mona-content .gallery-columns-3 .gallery-item {
    width: calc(50% - 0.8rem) !important;
  }
}
.mona-content .gallery-columns-3 .gallery-icon {
  width: 100%;
  height: 100%;
  aspect-ratio: 41.2/28.8;
  max-width: 100%;
  position: relative;
}
.mona-content .gallery-columns-3 .gallery-icon a {
  text-decoration: none;
  transition: none;
  position: absolute;
  inset: 0;
}
.mona-content .gallery-columns-3 .gallery-icon a img {
  width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mona-content img.size-full {
  width: 100%;
}
.mona-content img.alignnone {
  margin: 2.4rem 0;
}
@media screen and (max-width: 576px) {
  .mona-content img.alignnone {
    margin: 1.2rem 0;
  }
}
.mona-content img.aligncenter {
  margin: 2.4rem auto;
}
@media screen and (max-width: 576px) {
  .mona-content img.aligncenter {
    margin: 1.2rem auto;
  }
}
.mona-content img.alignright {
  margin-left: auto;
}
.mona-content img.alignleft {
  margin-right: auto;
}
.mona-content .ez-toc-counter {
  margin-bottom: 2.4rem !important;
}
@media screen and (max-width: 992px) {
  .mona-content .ez-toc-counter {
    padding: 2.4rem !important;
  }
}
@media screen and (max-width: 576px) {
  .mona-content .ez-toc-counter {
    margin-bottom: 2.4rem !important;
    padding: 1.6rem !important;
  }
}
.mona-content .ez-toc-counter a {
  box-shadow: none;
  -webkit-box-shadow: none;
}
.mona-content .ez-toc-counter p,
.mona-content .ez-toc-counter ul,
.mona-content .ez-toc-counter ol,
.mona-content .ez-toc-counter blockquote,
.mona-content .ez-toc-counter iframe,
.mona-content .ez-toc-counter figure {
  margin: 0;
}
.mona-content .ez-toc-counter img {
  margin: 0;
  margin-top: 0.8rem;
}
.mona-content .ez-toc-counter nav > ul,
.mona-content .ez-toc-counter .ez-toc-title-container {
  padding: 0;
}
.mona-content .ez-toc-counter ul ul {
  list-style-type: disc;
  padding-left: 2.2rem;
  padding-right: 1.6rem;
  margin: 0;
}
.mona-content .ez-toc-counter ul ul li > .ez-toc-link {
  font-size: 1.4rem;
}
.mona-content > :first-child {
  margin-top: 0 !important;
}
.mona-content > :last-child {
  margin-bottom: 0 !important;
}
.mona-content #ez-toc-container {
  gap: 2.4rem;
  display: flex;
  padding: 2.4rem;
  border-radius: 1.2rem;
  flex-direction: column;
  background-color: white;
  border: 0.1rem solid #e0e0e0;
}
@media screen and (max-width: 1200px) {
  .mona-content #ez-toc-container {
    gap: 1.6rem;
    padding: 1.6rem !important;
  }
}
.mona-content #ez-toc-container .ez-toc-title-toggle {
  display: none;
}
.mona-content #ez-toc-container .ez-toc-title {
  font-size: 3.2rem;
}
@media only screen and (max-width: 1200px) {
  .mona-content #ez-toc-container .ez-toc-title {
    font-size: 2.6rem;
  }
}
@media only screen and (max-width: 800px) {
  .mona-content #ez-toc-container .ez-toc-title {
    font-size: 2rem;
  }
}
.mona-content #ez-toc-container .ez-toc-title {
  color: var(--color-pri);
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.064rem;
}
.mona-content #ez-toc-container nav ul {
  gap: 0.8rem;
  display: flex;
  flex-direction: column;
}
.mona-content #ez-toc-container nav .ez-toc-list {
  gap: 1.6rem;
}
@media screen and (max-width: 1200px) {
  .mona-content #ez-toc-container nav .ez-toc-list {
    gap: 1rem;
  }
}
.mona-content #ez-toc-container nav .ez-toc-list > li:not(:last-child) {
  padding-bottom: 1.6rem;
  border-bottom: 0.1rem solid #e0e0e0;
}
@media screen and (max-width: 1200px) {
  .mona-content #ez-toc-container nav .ez-toc-list > li:not(:last-child) {
    padding-bottom: 1rem;
  }
}
.mona-content #ez-toc-container nav .ez-toc-list > li .ez-toc-link {
  color: #012240;
  font-weight: 600;
  letter-spacing: -0.032rem;
}
.mona-content #ez-toc-container nav .ez-toc-list > li ul li .ez-toc-link {
  color: #667085;
  font-weight: 400;
  font-size: 1.4rem;
}

@keyframes FadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes FadeIn {
  from {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  to {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@keyframes FadeInDown {
  from {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -5%, 0);
  }
  to {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes radiate {
  from {
    transform: scale(0.5, 0.5) translate(-50%, -50%);
    opacity: 0;
  }
  to {
    transform: scale(1, 1) translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes toRight {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
@keyframes scaleIn {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes growthUp {
  0% {
    height: 0rem;
    opacity: 0;
    visibility: hidden;
  }
  100% {
    height: 1rem;
    opacity: 1;
    visibility: visible;
  }
}
@keyframes shineLeft {
  100% {
    left: 125%;
  }
}
@keyframes shineLeft1 {
  50% {
    left: 125%;
  }
  51% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes floatingScale {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(0, -1rem) scale(1);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes pulse {
  50% {
    box-shadow: 0 0 0 20px rgba(244, 172, 25, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244, 172, 25, 0);
  }
}
@keyframes pulse-border {
  0% {
    box-shadow: 0rem 0rem 0 0 rgba(0, 123, 255, 0.7);
  }
  70% {
    box-shadow: 0rem 0rem 0 10px rgba(0, 123, 255, 0);
  }
  100% {
    box-shadow: 0rem 0rem 0 0 rgba(0, 123, 255, 0);
  }
}
@keyframes revealRightToLeft {
  from {
    clip-path: inset(0 0 0 100%);
    -webkit-clip-path: inset(0 0 0 100%);
  }
  to {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
  }
}
@keyframes revealLeftToRight {
  from {
    clip-path: inset(0 100% 0 0);
    -webkit-clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
  }
}
@keyframes skeletonLoading {
  0% {
    background-position: 0;
  }
  30%, 100% {
    background-position: 30.7rem;
  }
}
@keyframes pulse {
  100% {
    transform: translate(-50%, -50%) scale(1.7);
    opacity: 0;
  }
}
@keyframes opacityAni {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.tt-main {
  font-weight: 500;
  color: var(--color-sec);
  font-size: clamp(3rem, -0.139rem + 5.449vw, 6.4rem);
}
@media screen and (max-width: 400px) {
  .tt-main br {
    display: none;
  }
}

.tt-sec {
  font-size: clamp(2.6rem, 0.185rem + 3.846vw, 4.8rem);
  font-weight: 600;
  color: var(--color-pri);
}

.tt-desc {
  font-size: 1.8rem;
}
@media only screen and (max-width: 1200px) {
  .tt-desc {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 800px) {
  .tt-desc {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .tt-desc {
    font-size: 1.4rem;
  }
}
.tt-desc {
  line-height: 1.5;
}

.tt-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 0.8rem;
}

.t-ct {
  text-align: center;
}

.t-up {
  text-transform: uppercase;
}

.t-cap {
  text-transform: capitalize;
}

.t-36 {
  font-size: 3.6rem;
}
@media only screen and (max-width: 1200px) {
  .t-36 {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 800px) {
  .t-36 {
    font-size: 2.2rem;
  }
}

.t-24 {
  font-size: 2.4rem;
}
@media only screen and (max-width: 1200px) {
  .t-24 {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 800px) {
  .t-24 {
    font-size: 1.8rem;
  }
}

.t-32 {
  font-size: 3.2rem;
}
@media only screen and (max-width: 1200px) {
  .t-32 {
    font-size: 2.6rem;
  }
}
@media only screen and (max-width: 800px) {
  .t-32 {
    font-size: 2rem;
  }
}

.t-20 {
  font-size: 2rem;
}
@media only screen and (max-width: 1200px) {
  .t-20 {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 800px) {
  .t-20 {
    font-size: 1.6rem;
  }
}

.t-18 {
  font-size: 1.8rem;
}
@media only screen and (max-width: 1200px) {
  .t-18 {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 800px) {
  .t-18 {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .t-18 {
    font-size: 1.4rem;
  }
}

.t-16 {
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .t-16 {
    font-size: 1.4rem;
  }
}

.t-14 {
  font-size: 1.4rem;
}

.t-12 {
  font-size: 1.2rem;
}

.clr-pri {
  color: var(--color-pri);
}

.clr-sec {
  color: var(--color-sec);
}

.clr-white {
  color: var(--color-white);
}

.clr-black {
  color: var(--color-black);
}

.clr-text {
  color: var(--color-text);
}

.f-sec {
  font-family: var(--font-sec);
}

.f-third {
  font-family: var(--font-third);
}

.f-fourth {
  font-family: var(--font-fourth);
}

.fw-s,
.fw-m {
  font-weight: 500;
}

.fw-sb {
  font-weight: 600;
}

.fw-b {
  font-weight: 700;
}

.fw-bd {
  font-weight: 900;
}

.label-main {
  color: var(--color-text);
  font-size: 1.8rem;
}
@media only screen and (max-width: 1200px) {
  .label-main {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 800px) {
  .label-main {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .label-main {
    font-size: 1.4rem;
  }
}
.label-main {
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.036rem;
  text-transform: uppercase;
}

.py-50 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 992px) {
  .py-50 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media screen and (max-width: 576px) {
  .py-50 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--btn-gap, 0.8rem);
  white-space: nowrap;
  width: fit-content;
  max-width: 100%;
  height: fit-content;
  text-align: center;
  font-family: var(--btn-font-family, var(--font-pri));
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .btn {
    font-size: 1.4rem;
  }
}
.btn {
  line-height: 1.3;
  color: var(--btn-color, var(--color-white));
  font-weight: var(--btn-font-weight, 700);
  letter-spacing: -0.04rem;
  text-transform: var(--btn-text-transform);
  padding: var(--btn-padding, 1.3rem 2.3rem);
  border-radius: var(--btn-border-radius, 3.2rem);
  background: var(--color-text-2);
  border: 1px solid var(--btn-border-color, transparent);
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.4s ease all;
  cursor: pointer;
}
@media screen and (max-width: 576px) {
  .btn {
    --btn-padding: 0.8rem 1.2rem;
  }
}
.btn img {
  flex-shrink: 0;
  width: var(--btn-img-width, 1.6rem);
  height: var(--btn-img-height, 1.6rem);
  object-fit: contain;
  filter: var(--btn-img-filter);
  -webkit-filter: var(--btn-img-filter);
  transition: 0.4s filter, 0.4s -webkit-filter;
}
.btn.loading {
  pointer-events: none;
}
.btn .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}
.btn::after {
  position: absolute;
  content: "";
  bottom: 0;
  width: 100%;
  height: 100%;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  background-image: url("../images/icon/btn_decore1.svg");
  z-index: -2;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
  background-color: var(--btn-bg-hover, var(--color-white));
  opacity: 0;
  transition: 0.4s all ease;
}
@media screen and (min-width: 1200px) {
  .btn:hover, .btn:focus-visible {
    color: var(--btn-color-hover, var(--color-pri));
    border-color: var(--btn-border-color-hover, var(--color-pri));
  }
  .btn:hover img, .btn:focus-visible img {
    filter: var(--btn-img-filter-hover, brightness(0) saturate(100%) invert(22%) sepia(41%) saturate(2886%) hue-rotate(184deg) brightness(102%) contrast(100%));
    -webkit-filter: var(--btn-img-filter-hover, brightness(0) saturate(100%) invert(22%) sepia(41%) saturate(2886%) hue-rotate(184deg) brightness(102%) contrast(100%));
  }
  .btn:hover:before, .btn:focus-visible:before {
    transition: 0.4s all ease;
    left: 0;
    right: 0;
    opacity: 1;
  }
}
.btn-center {
  margin: 0 auto;
}
.btn-sec {
  --btn-bg-hover: var(--color-white);
  --btn-color-hover: var(--color-text-2);
  --btn-border-color-hover: var(--color-pri);
  --btn-img-filter: none;
  --btn-img-filter-hover: brightness(0) invert(0);
}
.btn-link {
  color: #fff;
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .btn-link {
    font-size: 1.4rem;
  }
}
.btn-link {
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.032rem;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .btn-link:hover, .btn-link:focus-visible {
    text-decoration: underline;
  }
}
.btn-link img {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}
.btn-cricle {
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .btn-cricle {
    font-size: 1.4rem;
  }
}
.btn-cricle {
  color: #005491;
  font-weight: 700;
  line-height: 130%;
  width: fit-content;
  position: relative;
  transition: 0.4s ease;
  letter-spacing: -0.064rem;
}
@media screen and (min-width: 1201px) {
  .btn-cricle:hover {
    color: var(--color-sec);
  }
}
.btn-cricle::before {
  content: "";
  top: 50%;
  left: -2.4rem;
  width: 4.5rem;
  height: 4.8rem;
  position: absolute;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("../../assets/images/icon/cricle.svg");
}

.btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
}
@media screen and (max-width: 576px) {
  .btn-wrap {
    margin-top: 2.4rem;
  }
}

.breadcrumb {
  margin-top: 6rem;
}
@media screen and (max-width: 992px) {
  .breadcrumb {
    margin-top: 4rem;
  }
}

.breadcrumb-list {
  display: flex;
}

.breadcrumb-item {
  font-size: 1.8rem;
}
@media only screen and (max-width: 1200px) {
  .breadcrumb-item {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 800px) {
  .breadcrumb-item {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .breadcrumb-item {
    font-size: 1.4rem;
  }
}
.breadcrumb-item {
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.036rem;
  color: var(--bi-color, var(--color-text));
  position: relative;
  white-space: nowrap;
}
.breadcrumb-item::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.8rem;
  right: 1.2rem;
  width: 0.5rem;
  height: 1rem;
  background-image: url("../images/icon/icon_chev_right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 576px) {
  .breadcrumb-item::after {
    right: 0.6rem;
  }
}
.breadcrumb-item:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: default;
}
.breadcrumb-item:last-child a,
.breadcrumb-item:last-child span {
  padding-right: 0;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
}
.breadcrumb-item.is-current {
  font-weight: 700;
  color: var(--color-sec);
}
.breadcrumb-item.is-current a {
  margin: 0;
}
.breadcrumb-item.is-current::after {
  display: none;
}
.breadcrumb-item a {
  display: block;
  padding-right: 1.2rem;
  margin-right: 1.6rem;
  transition: 0.4s ease;
}
@media screen and (max-width: 576px) {
  .breadcrumb-item a {
    padding-right: 0.6rem;
    margin-right: 1.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .breadcrumb-item a:hover, .breadcrumb-item a:focus-visible {
    text-decoration: underline;
    color: var(--color-pri);
  }
}
.breadcrumb-item:has(+ .is-current)::after {
  --bi-after-color: var(--bi-after-color-current, $color-text);
}

.group-contact {
  display: flex;
  flex-direction: column-reverse;
  gap: 1.2rem;
  position: fixed;
  right: 2rem;
  bottom: 4.6rem;
  z-index: 10;
  transform: translateX(300%);
  transition: transform 0.2s;
}
@media screen and (max-width: 768px) {
  .group-contact {
    right: 1.6rem;
    bottom: 6.8rem;
  }
}
.group-contact.is-active {
  transform: translateX(0);
}
.group-contact_item {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 0.8rem;
  border-radius: 50%;
  position: relative;
  transition: all 0.4s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .group-contact_item {
    width: 3.6rem;
    height: 3.6rem;
  }
}
.group-contact_item:hover {
  transform: scale(1.1);
}
.group-contact_item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.group-contact_item.js-top::before {
  content: "";
  position: absolute;
  top: -0.6rem;
  left: -0.6rem;
  right: -0.6rem;
  width: calc(100% + 1.2rem);
  height: 62.5%;
  background-image: url("../../assets/images/common/curve.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.group-contact_item.js-expand {
  display: none;
}
@media screen and (max-width: 576px) {
  .group-contact_item.js-expand {
    display: none;
  }
}
.group-contact_item:not(:first-child) {
  animation: coccoc-alo-circle-img-anim 1s infinite ease-in-out;
}
@keyframes coccoc-alo-circle-img-anim {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}

.overlay-header,
.overlay-news,
.overlay-category,
.overlay-search {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5) !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 101 !important;
  display: block !important;
  transition: opacity 0.4s, visibility 0.4s, transform ease 1s;
}
.overlay-header.is-active,
.overlay-news.is-active,
.overlay-category.is-active,
.overlay-search.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.overlay-search {
  z-index: 99;
}

.overlay-filter {
  position: fixed;
  inset: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5) !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 101 !important;
  display: block !important;
  transition: opacity 0.4s, visibility 0.4s, transform ease 1s;
}
.overlay-filter.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.pagination ul.page-numbers {
  gap: 0.2rem;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: none !important;
  margin: 0 !important;
}
.pagination ul.page-numbers > li {
  border-right: none !important;
  border-radius: 0.4rem;
}
.pagination ul.page-numbers :is(a, span).page-numbers {
  width: 4.8rem;
  height: 4.8rem;
  overflow: hidden;
  user-select: none;
  align-items: center;
  border-radius: 0.8rem;
  background-color: transparent;
  transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out, border-color 0.4s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #04131b;
  font-size: 2rem;
}
@media only screen and (max-width: 1200px) {
  .pagination ul.page-numbers :is(a, span).page-numbers {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 800px) {
  .pagination ul.page-numbers :is(a, span).page-numbers {
    font-size: 1.6rem;
  }
}
.pagination ul.page-numbers :is(a, span).page-numbers {
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.04rem;
}
@media screen and (max-width: 576px) {
  .pagination ul.page-numbers :is(a, span).page-numbers {
    font-size: 1.2rem;
    width: 3.2rem;
    height: 3.2rem;
  }
}
.pagination ul.page-numbers :is(a, span).page-numbers:has(> *):hover, .pagination ul.page-numbers :is(a, span).page-numbers:has(> *):focus-visible {
  color: var(--color-text-2);
  background-color: #f2f4f7;
}
.pagination ul.page-numbers :is(a, span).page-numbers:not(:has(> *)):hover, .pagination ul.page-numbers :is(a, span).page-numbers:not(:has(> *)):focus-visible {
  color: var(--color-text-2);
  background-color: #f2f4f7;
}
.pagination ul.page-numbers :is(a, span).page-numbers > * {
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
  transition: 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination ul.page-numbers :is(a, span).page-numbers.current {
  color: var(--color-text-2);
  background-color: #f2f4f7;
}
.pagination ul.page-numbers span.page-numbers.dots {
  pointer-events: none;
  border: none;
  background-color: transparent;
}
.pagination ul.page-numbers .page-numbers:is(.prev, .next) {
  border-color: transparent;
  padding: 0rem;
}
.pagination ul.page-numbers .page-numbers:is(.prev, .next):hover, .pagination ul.page-numbers .page-numbers:is(.prev, .next):focus-visible {
  background-color: transparent;
  border-color: transparent;
}
.pagination ul.page-numbers .page-numbers:is(.prev, .next) img {
  display: block;
  width: 1.92rem;
  height: 1.92rem;
  object-fit: contain;
  flex-shrink: 0;
  padding: 0;
}
@media screen and (max-width: 576px) {
  .pagination ul.page-numbers .page-numbers:is(.prev, .next) img {
    width: 1.6rem;
    height: 1.6rem;
  }
}
.pagination ul.page-numbers .page-numbers.next img {
  transform: scaleX(-1);
}
.pagination ul.page-numbers .page-numbers.prev {
  transform: rotate(90deg);
}
.pagination ul.page-numbers .page-numbers.next {
  transform: rotate(-90deg);
}

.wpcf7-form .wpcf7-not-valid-tip {
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 1;
  width: fit-content;
  padding: 0.2rem 0.4rem;
  border-radius: 0.4rem;
  background-color: #ec1f26;
  color: white;
  font-size: 1rem;
}
.wpcf7-form .wpcf7-not-valid-tip::before {
  content: "";
  position: absolute;
  right: 1.6rem;
  bottom: 100%;
  width: 0;
  height: 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-bottom: 0.5rem solid #ec1f26;
}
.wpcf7-form .wpcf7-response-output {
  margin: 0.8rem 0 0 0 !important;
  text-align: center;
  font-size: 1.1rem !important;
}
.wpcf7-form .wpcf7-form-control-wrap {
  position: initial;
}

.form-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.form-wrap {
  display: flex;
  row-gap: 3.2rem;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .form-wrap {
    row-gap: 2.4rem;
  }
}

.form-group {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 3.2rem 1.6rem;
}
@media screen and (max-width: 576px) {
  .form-group {
    flex-wrap: wrap;
  }
}
.form-group:has(input[type=date])::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.4rem;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  transition: transform 0.4s;
  pointer-events: none;
  background-image: url("../../assets/images/icon/icon_calendar.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 576px) {
  .form-group:has(input[type=date])::after {
    right: 1.6rem;
  }
}
.form-group:has(input[type=date]).is-selected input {
  color: var(--color-text);
}
.form-group:has(input[type=date]) input {
  color: var(--color-text-2);
  height: 4.8rem;
  padding-right: 5.2rem;
}
@media screen and (max-width: 576px) {
  .form-group:has(input[type=date]) input {
    height: 4.2rem;
  }
}
.form-group:has(input[type=date]) label {
  border: 0.1rem solid #d1d5db;
  padding: 1.1rem 1.2rem;
  height: 4.8rem;
  width: 100%;
  display: flex;
  gap: 1.6rem;
  align-items: center;
  justify-content: space-between;
  transition: 0.4s ease;
}
@media screen and (max-width: 576px) {
  .form-group:has(input[type=date]) label {
    padding: 0.8rem 1.2rem;
    height: 3.9rem;
  }
}
.form-group:has(input[type=date]) label:focus-visible, .form-group:has(input[type=date]) label:hover {
  outline: none;
  border-color: var(--color-sec);
}
.form-group:has(input[type=date]) label span {
  flex: 1 0;
}
.form-group:has(select) select {
  padding-right: 3.2rem;
}
.form-group:has(select).is-active::after {
  transform: translateY(-50%) rotate(180deg);
}
.form-group:has(select).is-selected select {
  color: var(--color-text);
  font-weight: 400;
}
.form-group:has(select[disabled])::after {
  content: none;
}
.form-group:has(select:focus)::after {
  transform: rotate(180deg);
}
.form-group:has(textarea), .form-group:has(.custom-input-file) {
  flex: initial !important;
}
.form-group:has(.g-recaptcha-wrap) {
  width: fit-content;
  gap: 0;
  margin-bottom: 1.6rem;
}
.form-group:has(.g-recaptcha-wrap) .g-recaptcha-wrap {
  padding: 0 !important;
}
.form-group label {
  width: 100%;
  color: #282828;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.28px;
  position: relative;
}
.form-group label .optional {
  display: none;
}
.form-group label sup {
  color: #f04438;
  margin-left: 0.2rem;
}
.form-group label .form-text {
  display: block;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea {
  border: 1px solid transparent;
  width: 100% !important;
  color: var(--color-text);
  font-family: var(--font-pri);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 150%;
  background-color: #f2f4f7;
  border-radius: 0.8rem;
  padding: 1.1rem 1.5rem;
  transition: 0.4s ease;
}
@media screen and (max-width: 576px) {
  .form-group input,
  .form-group textarea {
    padding: 0.7rem 1.5rem;
    border-radius: 0.8rem;
  }
}
.form-group input:focus-visible, .form-group input:hover,
.form-group textarea:focus-visible,
.form-group textarea:hover {
  outline: none;
  border-color: var(--color-pri);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  font-size: 1.6rem;
  color: #98a2b3;
  font-weight: 400;
  letter-spacing: -0.32px;
  line-height: 1.2;
}
.form-group input[disabled],
.form-group textarea[disabled] {
  pointer-events: none;
  color: var(--color-text-2);
  background-color: #f9f9f9;
  border-color: #f9f9f9;
  text-overflow: ellipsis;
}
.form-group textarea {
  resize: none;
  min-height: 9.6rem;
  max-height: 9.6rem;
}
.form-group select {
  padding: 1.2rem 1.5rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media screen and (max-width: 576px) {
  .form-group select {
    padding: 0.8rem 1.6rem;
  }
}
.form-group select[disabled] {
  pointer-events: none;
}
.form-group .select2,
.form-group select {
  position: relative;
  width: 100% !important;
  border: 0.1rem solid transparent;
  outline: none;
  background-color: #f2f4f7;
  text-align: left;
  overflow: hidden;
  transition: 0.4s ease;
  font-family: var(--font-pri);
  color: #98a2b3;
  cursor: pointer;
  border-radius: 1.2rem;
  letter-spacing: -0.032rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 576px) {
  .form-group .select2,
  .form-group select {
    border-radius: 0.8rem;
  }
}
.form-group .select2:focus-visible, .form-group .select2:hover,
.form-group select:focus-visible,
.form-group select:hover {
  outline: none;
  border-color: var(--color-pri);
}
.form-group .select2 option[value=""][disabled],
.form-group select option[value=""][disabled] {
  display: none;
}
.form-group .select2 option,
.form-group select option {
  color: var(--color-text);
}
.form-group .select2.select2-container--open .select2-selection--multiple::after,
.form-group select.select2-container--open .select2-selection--multiple::after {
  transform: translateY(-50%) rotate(180deg) !important;
}
.form-group .select2.select2-container--open.select2-container--above,
.form-group select.select2-container--open.select2-container--above {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.form-group .select2.select2-container--open.select2-container--above .select2-selection:focus-visible,
.form-group select.select2-container--open.select2-container--above .select2-selection:focus-visible {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.form-group .select2.select2-container--open.select2-container--below,
.form-group select.select2-container--open.select2-container--below {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.form-group .select2.select2-container--open.select2-container--below .select2-selection:focus-visible,
.form-group select.select2-container--open.select2-container--below .select2-selection:focus-visible {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.form-group .select2.select2-container--open,
.form-group select.select2-container--open {
  border-color: var(--color-pri);
}
.form-group .select2 .select2-selection,
.form-group select .select2-selection {
  padding: 1.1rem 1.5rem;
  padding-right: 3.4rem;
  border-radius: 0rem;
  background-color: transparent;
  border: none;
  margin: 0;
}
@media screen and (max-width: 576px) {
  .form-group .select2 .select2-selection,
  .form-group select .select2-selection {
    padding: 0.7rem 1.5rem;
    padding-right: 3.4rem;
  }
}
.form-group .select2 .select2-selection:focus-visible,
.form-group select .select2-selection:focus-visible {
  outline-color: var(--color-sec);
  border-radius: 0rem;
  transition: border-radius 0.4s ease;
}
.form-group .select2 .select2-selection.select2-selection--multiple,
.form-group select .select2-selection.select2-selection--multiple {
  min-height: 4.5rem;
  cursor: pointer;
}
@media screen and (max-width: 576px) {
  .form-group .select2 .select2-selection.select2-selection--multiple,
  .form-group select .select2-selection.select2-selection--multiple {
    min-height: 3.9rem;
  }
}
.form-group .select2 .select2-selection.select2-selection--multiple::after,
.form-group select .select2-selection.select2-selection--multiple::after {
  content: "";
  position: absolute;
  top: 50% !important;
  right: 1.2rem !important;
  width: 2.4rem !important;
  height: 2.4rem !important;
  transform: translateY(-50%);
  transition: transform 0.4s;
  background-image: url("../../assets/images/icon/icon_select.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.form-group .select2 .select2-selection__choice,
.form-group select .select2-selection__choice {
  margin: 0;
}
.form-group .select2 .select2-selection__rendered,
.form-group select .select2-selection__rendered {
  padding: 0 !important;
  font-size: 1.6rem;
  color: #98a2b3;
  font-weight: 400;
  line-height: 150%;
  cursor: pointer;
}
.form-group .select2 .select2-selection__placeholder,
.form-group select .select2-selection__placeholder {
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .form-group .select2 .select2-selection__placeholder,
  .form-group select .select2-selection__placeholder {
    font-size: 1.4rem;
  }
}
.form-group .select2 .select2-selection__placeholder,
.form-group select .select2-selection__placeholder {
  color: #999;
  font-weight: 100;
  line-height: 150%;
}
.form-group .select2 .select2-selection--single,
.form-group select .select2-selection--single {
  height: auto;
}
.form-group .select2 .select2-selection__arrow,
.form-group select .select2-selection__arrow {
  top: 50% !important;
  right: 1.6rem !important;
  transform: translateY(-50%);
  width: 2.4rem !important;
  height: 2.4rem !important;
  transition: transform 0.4s;
}
.form-group .select2 .select2-selection__arrow::after,
.form-group select .select2-selection__arrow::after {
  content: "";
  position: absolute;
  background-image: none;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
.form-group .select2 .select2-selection__arrow b,
.form-group select .select2-selection__arrow b {
  display: none !important;
  border: none !important;
}
.form-group .select2.select2-container--open .select2-selection__arrow,
.form-group select.select2-container--open .select2-selection__arrow {
  transform: translateY(-50%) rotate(180deg);
}
.form-group .select2-hidden-accessible {
  width: 1px !important;
}
.form-group .select2.is-selected .select2-selection__rendered {
  color: var(--color-text);
}
.form-group.w-50 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  column-gap: 1.6rem;
  row-gap: 2rem;
}
.form-group.w-50 label {
  width: calc(50% - 0.8rem);
}
@media screen and (max-width: 575.98px) {
  .form-group.w-50 label {
    width: 100%;
  }
}

.form-item {
  width: calc(50% - 0.8rem);
}
@media screen and (max-width: 576px) {
  .form-item {
    width: 100%;
  }
}
.form-item.is-full {
  width: 100%;
}

.form-action .btn {
  width: 100%;
  padding: 1.6rem 2.4rem;
}
.form-action .btn img {
  width: 1.2rem;
  height: 1.2rem;
  transform: rotate(-90deg);
  filter: brightness(0) invert(1);
}
.form-action .btn:hover img {
  filter: brightness(0) saturate(100%) invert(75%) sepia(84%) saturate(6386%) hue-rotate(173deg) brightness(95%) contrast(77%);
}

#count {
  color: #999;
  text-align: right;
  font-size: 1.4rem;
  font-style: italic;
}

.select2-search__field {
  display: none;
}

.select2-dropdown {
  z-index: calc(var(--z-i-header) - 1);
}
.select2-dropdown.custom-select2 {
  z-index: calc(var(--z-i-header));
}

.select2-search--dropdown {
  padding: 0 !important;
}

.select2-results ul::-webkit-scrollbar {
  width: 0.3rem;
}
.select2-results ul::-webkit-scrollbar-thumb {
  background-color: var(--color-pri);
  border-radius: 0.8rem;
}
.select2-results ul::-webkit-scrollbar-track {
  background-color: #f1fbff;
  border-radius: 0.8rem;
}
.select2-results ul::-webkit-scrollbar-corner {
  background-color: transparent;
}
.select2-results ul li {
  padding: 0.8rem 1.2rem;
  color: #373435;
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .select2-results ul li {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 576px) {
  .select2-results ul li {
    padding: 0.8rem 1.2rem;
  }
}

.select2-results__option--highlighted {
  background-color: var(--color-pri) !important;
}

.select2-results__options li:first-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.select2-results__group {
  font-weight: 900;
  padding: 0.8rem 1.2rem !important;
}

.form-txt {
  font-weight: 600;
  line-height: 1.5;
  font-size: 1.4rem;
  color: #282828;
  display: inline-block;
  margin-bottom: 0.4rem;
}

.form-select {
  position: relative;
}
.form-select::after {
  content: "";
  position: absolute;
  bottom: 1.4rem;
  right: 2.4rem;
  width: 1.6rem;
  height: 1.6rem;
  transition: transform 0.4s;
  pointer-events: none;
  background-image: url("../../assets/images/icon/icon_select.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 576px) {
  .form-select::after {
    right: 1.6rem;
    bottom: 1.1rem;
  }
}
.form-select .select2 {
  border-radius: 0.4rem !important;
  background-color: transparent;
  border: 0.1rem solid #e4e4e4;
}
.form-select .select2.select2-container--open.select2-container--above {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
.form-select .select2.select2-container--open.select2-container--above .select2-selection:focus-visible {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
.form-select .select2.select2-container--open.select2-container--below {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.form-select .select2.select2-container--open.select2-container--below .select2-selection:focus-visible {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.form-select .select2.select2-container--open {
  border-color: var(--color-pri);
}
.form-select .select2 .select2-selection {
  background: transparent;
}

.form-group_select {
  position: relative;
}
.form-group_select:has(.select2:hover) input, .form-group_select:has(.select2.select2-container--open) input {
  border-color: var(--color-sec);
}
.form-group_select input {
  padding-left: 8.8rem;
}
.form-group_select .select-block {
  position: absolute;
  top: 0;
  bottom: 0rem;
  left: 0rem;
  width: 8rem;
}
@media screen and (max-width: 576px) {
  .form-group_select .select-block {
    width: 7rem;
  }
}
.form-group_select .select2,
.form-group_select select {
  background-image: none;
  border: none;
}
.form-group_select .select2 .select2-selection {
  padding: 1.2rem 1.6rem;
  padding-right: 2.4rem;
}
@media screen and (max-width: 576px) {
  .form-group_select .select2 .select2-selection {
    padding: 1.1rem 1.2rem;
    padding-right: 2.4rem;
  }
}
.form-group_select .select2 .select2-selection__arrow {
  right: 0rem !important;
  width: 2.4rem !important;
  height: 2.4rem !important;
}
@media screen and (max-width: 576px) {
  .form-group_select .select2 .select2-selection__arrow {
    width: 2rem !important;
    height: 2rem !important;
  }
}
.form-group_select .select2 .select2-selection__rendered {
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .form-group_select .select2 .select2-selection__rendered {
    font-size: 1.4rem;
  }
}
.form-group_select .select2 .select2-selection__rendered {
  color: #373435;
  font-weight: 600;
}

.form-group .form-radio .form-txt {
  margin-bottom: 0;
  color: #101828;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.42;
}
.form-group .form-radio .radio-custom {
  display: flex;
}

.radio-custom {
  cursor: pointer;
  padding: 1.1rem 1.2rem;
  border-radius: 8px;
  border: 1px solid #d0d5dd;
  align-items: center;
  gap: 1.2rem;
}
.radio-custom input {
  display: none;
}
.radio-custom input:checked ~ .checkmark {
  background-image: url("../images/contact/checkbox_1.svg");
}
.radio-custom .checkmark {
  display: block;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  transition: 0.4s ease;
  background-image: url("../images/contact/checkbox.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.check-box {
  cursor: pointer;
  display: flex !important;
  flex-direction: row;
  gap: 0.8rem;
}
.check-box:has(input:checked) .checkmark {
  background-image: url("../images/contact/check-box.svg");
}
.check-box input {
  display: none;
}
.check-box input:checked ~ .checkmark {
  background-image: url("../images/contact/check-box.svg");
}
.check-box .checkmark {
  width: 1.6rem;
  height: 1.6rem;
  display: block;
  transition: 0.4s ease;
  background-image: url("../images/contact/check-box_1.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.check-box .form-txt,
.check-box .wpcf7-list-item-label {
  color: #5a5a5a;
  margin-bottom: 0;
}
.check-box .wpcf7-list-item {
  margin: 0;
}
.check-box .wpcf7-list-item-label {
  font-size: 1.4rem;
  font-weight: 400;
}
.check-box label,
.check-box .wpcf7-form-control-wrap {
  line-height: 1;
}

.custom-input-file {
  gap: 0.8rem;
  display: flex;
  flex-wrap: wrap;
}
.custom-input-file .input-side {
  width: 100%;
  max-width: 35.3rem;
  flex-shrink: 0;
  position: relative;
}
.custom-input-file .file-name {
  color: var(--010, #101212);
  text-align: center;
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .custom-input-file .file-name {
    font-size: 1.4rem;
  }
}
.custom-input-file .file-name {
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -0.32px;
}
.custom-input-file input {
  width: 0.1px !important;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.custom-input-file label {
  gap: 0.8rem;
  border-radius: 1.2rem;
  border: 0.1rem dashed #a3a3a3;
  background-color: #fff;
  padding: 1.6rem;
  width: 100%;
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .custom-input-file label {
    font-size: 1.4rem;
  }
}
.custom-input-file label {
  font-weight: 600;
  line-height: 160%;
  letter-spacing: -0.032rem;
  cursor: pointer;
  transition: background-color 0.4s, color 0.4s, border-color 0.4s;
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 1200px) {
  .custom-input-file label:hover, .custom-input-file label:focus-visible {
    border-color: var(--color-sec);
  }
}
@media screen and (max-width: 576px) {
  .custom-input-file label {
    padding: 1rem 1.2rem;
  }
}
.custom-input-file label .text-main {
  margin-top: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .custom-input-file label .text-main {
    margin-top: 0.8rem;
  }
}
.custom-input-file label .text-sup {
  margin-top: 0.8rem;
  text-align: center;
  color: #a1abab;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.028rem;
}
@media screen and (max-width: 576px) {
  .custom-input-file label .text-sup {
    margin-top: 0.4rem;
    font-size: 1.2rem;
  }
}
.custom-input-file label p {
  color: #082823;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
}
.custom-input-file label span {
  color: #a1abab;
  font-size: 1.4rem;
}
.custom-input-file label img {
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  object-fit: contain;
  margin: 0 auto;
}
@media screen and (max-width: 576px) {
  .custom-input-file label img {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.custom-input-file.is-drag label {
  border-color: var(--color-pri);
}

.banner-hero {
  aspect-ratio: 151.2/63;
  max-width: 100%;
  position: relative;
}
.banner-hero .swiper-pagination {
  position: absolute;
  bottom: 5.9rem !important;
  margin: 0;
  --swiper-pagination-bullet-bg-clr: #fff;
}
@media screen and (max-width: 992px) {
  .banner-hero .swiper-pagination {
    bottom: 3.2rem !important;
  }
}
@media screen and (max-width: 576px) {
  .banner-hero .swiper-pagination {
    bottom: 1.6rem !important;
  }
}

.js-banner-hero {
  position: absolute;
  inset: 0;
}
.js-banner-hero .swiper {
  width: 100%;
  height: 100%;
}
.js-banner-hero .swiper-slide .banner-hero_img {
  position: absolute;
  inset: 0;
}
.js-banner-hero .swiper-slide .banner-hero_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.js-banner-hero .swiper-slide .banner-hero_img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.js-banner-hero .swiper-slide .banner-hero_img iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-mid {
  --swiper-pagination-bullet-bg-clr: #e4e7ec;
  margin: 10rem 0rem 10rem;
}
@media screen and (max-width: 992px) {
  .banner-mid {
    margin: 6rem 0rem;
  }
}
@media screen and (max-width: 576px) {
  .banner-mid {
    margin: 4rem 0rem;
  }
}
.banner-mid > .container {
  position: relative;
}
.banner-mid .swiper-navigation {
  width: calc(100% + 14.8rem);
  top: calc(50% - 2.2rem);
}
@media screen and (max-width: 1440px) {
  .banner-mid .swiper-navigation {
    width: calc(100% + 8rem);
  }
}
.banner-mid .banner-hero {
  position: relative;
  aspect-ratio: 1216/500;
  max-width: 100%;
  border-radius: 1.6rem;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .banner-mid .banner-hero {
    border-radius: 0.8rem;
  }
}
.banner-mid .banner-hero_img {
  position: absolute;
  inset: 0;
}
.banner-mid .banner-hero_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-mid .banner-hero_video {
  position: absolute;
  inset: 0;
}
.banner-mid .banner-hero_video::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.banner-mid .banner-hero_video > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-mid .banner-hero_play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8rem;
  height: 8rem;
}
@media screen and (max-width: 992px) {
  .banner-mid .banner-hero_play {
    width: 6.4rem;
    height: 6.4rem;
  }
}
@media screen and (max-width: 576px) {
  .banner-mid .banner-hero_play {
    width: 4.8rem;
    height: 4.8rem;
  }
}
.banner-mid .banner-hero_play::before, .banner-mid .banner-hero_play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0.1rem solid #fff;
  opacity: 0.7;
}
.banner-mid .banner-hero_play::before {
  animation: playPulse 2s linear infinite;
}
.banner-mid .banner-hero_play::after {
  animation: playPulse 2s 1s linear infinite;
}
@keyframes playPulse {
  100% {
    transform: translate(-50%, -50%) scale(1.7);
    opacity: 0;
  }
}
.banner-mid .banner-hero_play img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.banner-mid .swiper-pagination {
  margin: 0;
  bottom: 0;
  margin-top: 2.4rem;
}
@media screen and (max-width: 576px) {
  .banner-mid .swiper-pagination {
    margin-top: 1.6rem;
  }
}

.js-banner-mid {
  position: absolute;
  inset: 0;
}
.js-banner-mid .swiper {
  width: 100%;
  height: 100%;
}

.banner-sub {
  position: relative;
}
.banner-sub:not(:has(.banner-content)) {
  aspect-ratio: 151.2/40;
  max-width: 100%;
  min-height: 15rem;
}
.banner-sub:not(:has(.banner-content)) .banner-img::before {
  content: none;
}
.banner-sub .banner-img {
  position: absolute;
  inset: 0;
  z-index: -1;
  height: 100%;
  overflow: hidden;
}
.banner-sub .banner-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}
.banner-sub .banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-sub .banner-content {
  padding-block: 14rem;
}
@media screen and (max-width: 1199.98px) {
  .banner-sub .banner-content {
    padding-block: 10rem;
  }
}
@media screen and (max-width: 992px) {
  .banner-sub .banner-content {
    padding-block: 6rem;
  }
}
@media screen and (max-width: 576px) {
  .banner-sub .banner-content {
    padding-block: 4rem;
  }
}
.banner-sub .banner-txt {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .banner-sub .banner-txt {
    gap: 1.2rem;
  }
}
.banner-sub .banner-txt .t-20 {
  letter-spacing: -0.04rem;
  line-height: 1.6;
}
@media screen and (max-width: 576px) {
  .banner-sub .banner-txt .t-20 {
    font-size: 1.4rem;
  }
}

.banner-full {
  scroll-margin-top: 16rem;
}
@media screen and (max-width: 576px) {
  .banner-full {
    scroll-margin-top: 12rem;
  }
}
.banner-full img {
  width: 100%;
}

.banner-full + .banner-full {
  margin-top: 4rem;
}

.hero-img {
  position: relative;
  padding-top: 46.2962962963%;
  overflow: hidden;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.hero-img__1 {
  padding-top: 42.7248677249%;
}
.hero-img + .wp-caption-text {
  margin: 3.2rem 0;
  margin-top: 1.6rem;
  color: #636069;
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .hero-img + .wp-caption-text {
    font-size: 1.4rem;
  }
}
.hero-img + .wp-caption-text {
  font-style: italic;
  line-height: 1.3;
  letter-spacing: -0.32px;
  max-width: 100%;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .hero-img + .wp-caption-text {
    margin-top: 1.2rem;
  }
}

.banner-factory {
  position: relative;
  height: 100vh;
}
@media screen and (max-width: 992px) {
  .banner-factory {
    height: 60vh;
  }
}
@media screen and (max-width: 576px) {
  .banner-factory {
    height: 50vh;
  }
}
.banner-factory_bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.banner-factory_bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}
.banner-factory_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-factory_box {
  padding-top: 12%;
}
@media screen and (max-width: 1512px) {
  .banner-factory_box {
    padding-top: 19%;
  }
}
@media screen and (max-width: 1199.98px) {
  .banner-factory_box {
    padding-top: 10rem;
  }
}
.banner-factory_content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 68.2rem;
}
@media screen and (max-width: 576px) {
  .banner-factory_content {
    gap: 0.8rem;
  }
}
.banner-factory_title {
  font-family: var(--font-sec);
  color: #fff;
  font-size: 4.8rem;
}
@media only screen and (max-width: 1200px) {
  .banner-factory_title {
    font-size: 4.2rem;
  }
}
@media only screen and (max-width: 800px) {
  .banner-factory_title {
    font-size: 2.6rem;
  }
}
.banner-factory_title {
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.096rem;
  text-transform: uppercase;
}
@media screen and (max-width: 576px) {
  .banner-factory_title {
    font-size: 2.4rem;
  }
}
.banner-factory_title span {
  font-size: 6rem;
}
@media only screen and (max-width: 1200px) {
  .banner-factory_title span {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 800px) {
  .banner-factory_title span {
    font-size: 2.8rem;
  }
}
.banner-factory_title span {
  letter-spacing: -0.12rem;
}
.banner-factory_desc {
  color: #fff;
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .banner-factory_desc {
    font-size: 1.4rem;
  }
}
.banner-factory_desc {
  line-height: 150%;
  letter-spacing: -0.032rem;
}

header {
  position: fixed;
  top: 0rem;
  left: 0;
  right: 0;
  z-index: var(--z-i-header);
  width: 100%;
  background-color: #fff;
  transition: top 0.4s, box-shadow 0.4s, -webkit-box-shadow 0.4s, height 0.4s;
  height: 12rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1199.98px) {
  header {
    height: 8rem;
  }
}
@media screen and (max-width: 576.98px) {
  header {
    height: 6rem;
  }
}
header .overlay-menu {
  inset: 0;
  opacity: 0;
  width: 100%;
  z-index: 99;
  height: 100dvh;
  position: fixed;
  visibility: hidden;
  transition: 0.4s ease;
  pointer-events: none;
  backdrop-filter: blur(0.2rem);
  background: rgba(255, 255, 255, 0.6);
}
header .overlay-menu.is-active {
  opacity: 1;
  visibility: visible;
}
header.is-fixed {
  position: fixed;
  top: 0;
  height: 10rem;
  box-shadow: 0px 1px 3px 0px rgba(16, 24, 40, 0.1), 0px 1px 2px -1px rgba(16, 24, 40, 0.1);
  -webkit-box-shadow: 0px 1px 3px 0px rgba(16, 24, 40, 0.1), 0px 1px 2px -1px rgba(16, 24, 40, 0.1);
}
@media screen and (max-width: 1199.98px) {
  header.is-fixed {
    height: 8rem;
  }
}
@media screen and (max-width: 576.98px) {
  header.is-fixed {
    height: 6rem;
  }
}
.header-main {
  z-index: 100;
  height: 100%;
  width: 100%;
  transition: transform 0.4s, padding 0.4s;
  position: relative;
}
.header-main > .container {
  max-width: 156rem;
  height: 100%;
}
.header-main.is-active {
  transform: translateX(32rem);
}
.header-main .main-logo,
.header-main .custom-logo-link {
  flex-shrink: 0;
  display: block;
  transition: width 0.4s, height 0.4s;
}
.header-main .main-logo img,
.header-main .custom-logo-link img {
  max-height: 8rem;
  width: auto;
}
@media screen and (max-width: 1199.98px) {
  .header-main .main-logo img,
  .header-main .custom-logo-link img {
    max-height: 6rem;
  }
}
@media screen and (max-width: 576.98px) {
  .header-main .main-logo img,
  .header-main .custom-logo-link img {
    max-height: 4rem;
  }
}
.header-main_inner {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  justify-content: space-between;
  height: 100%;
  transition: border-color 0.4s, padding 0.4s, border-radius 0.4s;
  position: relative;
}
@media screen and (max-width: 1199.98px) {
  .header-main_inner {
    align-items: center;
  }
}
@media screen and (max-width: 576px) {
  .header-main_inner {
    gap: 2.4rem;
  }
}
@media screen and (max-width: 340px) {
  .header-main_inner {
    gap: 1.6rem;
  }
}
.header-main_left {
  flex-shrink: 0;
}
.header-main_mid {
  height: 100%;
}
@media screen and (max-width: 1199.98px) {
  .header-main_mid {
    display: none;
  }
}
.header-main_right {
  display: flex;
  flex-direction: row-reverse;
}
.header-main_right .header-nav {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1199.98px) {
  .header-main_right .header-nav {
    display: none;
  }
}
.header-main_top {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  justify-content: flex-end;
  padding: 2rem 0;
  transition: padding 0.4s;
}
@media screen and (max-width: 1199.98px) {
  .header-main_top {
    padding: 1.9rem 0;
  }
}
.header-main_top .header-nav {
  border-top: none;
}
.header-main_top .header-nav > .menu-list {
  gap: 1.6rem;
}
@media screen and (max-width: 1440px) {
  .header-main_top .header-nav > .menu-list {
    gap: 1.2rem;
  }
}
.header-main_top .header-nav > .menu-list > .menu-item {
  --clr-header-menu-item: var(--color-text-2);
  text-transform: initial;
}
.header-main_top .header-nav > .menu-list > .menu-item::before {
  top: 0;
}
.header-main_top .header-nav > .menu-list > .menu-item > .menu-link {
  padding: 2.4rem 1.6rem;
}
@media screen and (max-width: 1440px) {
  .header-main_top .header-nav > .menu-list > .menu-item > .menu-link {
    padding-inline: 1rem;
  }
}

.header-nav {
  height: 100%;
}
.header-nav > .menu-list {
  height: 100%;
  position: relative;
}

.header-contact {
  display: flex;
  gap: 2.4rem;
  position: relative;
}
.header-contact::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -2.5rem;
  pointer-events: none;
  width: 0.1rem;
  height: 3.2rem;
  background-color: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 1199.98px) {
  .header-contact::before {
    right: -1.3rem;
  }
}
@media screen and (max-width: 992px) {
  .header-contact {
    display: none;
  }
}
.header-contact_item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.header-contact_icon {
  flex-shrink: 0;
  width: 3.2rem;
  height: 3.2rem;
}
.header-contact_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header-contact_content {
  color: #fff;
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .header-contact_content {
    font-size: 1.4rem;
  }
}
.header-contact_content {
  font-weight: 700;
  line-height: normal;
}
.header-contact_link {
  transition: color 0.4s;
}
@media screen and (min-width: 1200px) {
  .header-contact_link:hover, .header-contact_link:focus-visible {
    color: var(--header-contact-value-hover, var(--color-pri));
  }
}

.header-nav > .menu-list > .menu-item {
  white-space: nowrap;
}
@media screen and (min-width: 1201px) {
  .header-nav > .menu-list > .menu-item.is-mega > .child {
    width: 100%;
    min-width: 90rem;
    left: 50%;
    translate: -50%;
  }
  .header-nav > .menu-list > .menu-item.is-mega > .child .menu-list {
    width: 100%;
    gap: 0 5.6rem;
    flex-wrap: wrap;
    flex-direction: unset;
    max-width: initial;
    transform: none;
  }
  .header-nav > .menu-list > .menu-item.is-mega > .child .menu-list > .menu-item {
    width: calc(26.7% - 4.5rem);
  }
  .header-nav > .menu-list > .menu-item.is-mega > .child .menu-list > .menu-item:nth-child(3) {
    width: 15%;
  }
  .header-nav > .menu-list > .menu-item.is-mega > .child .menu-list > .menu-item .child .menu-item {
    width: 100%;
  }
}

.menu-list {
  display: flex;
}

.menu-item {
  z-index: 101;
  transition: color 0.4s, background-color 0.4s, font-weight 0.4s;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--clr-header-menu-item, var(--color-text));
  font-size: 1.8rem;
}
@media only screen and (max-width: 1200px) {
  .menu-item {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 800px) {
  .menu-item {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .menu-item {
    font-size: 1.4rem;
  }
}
.menu-item {
  font-weight: 400;
  text-transform: capitalize;
}
.menu-item.current-menu-item, .menu-item.is-active {
  color: var(--color-sec);
  font-weight: 700;
}
.menu-item.current-menu-item.menu-item-has-children > .menu-link::before, .menu-item.is-active.menu-item-has-children > .menu-link::before {
  filter: brightness(0) saturate(100%) invert(8%) sepia(11%) saturate(3120%) hue-rotate(161deg) brightness(103%) contrast(105%);
}
.menu-item.current-menu-item::before, .menu-item.is-active::before {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .menu-item:hover {
    color: var(--color-sec);
  }
  .menu-item:hover::before {
    width: 100%;
  }
}
.menu-item.menu-item-has-children > .menu-link {
  padding-right: 3.8rem;
  position: relative;
}
.menu-item.menu-item-has-children > .menu-link::before {
  transition: 0.4s ease;
  position: absolute;
  content: "";
  top: 0.9rem;
  right: 1.8rem;
  width: 1rem;
  height: 0.6rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("../images/icon/icon_dropdown.svg");
}
@media screen and (max-width: 1199.98px) {
  .menu-item.menu-item-has-children > .menu-link::before {
    right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .menu-item.menu-item-has-children:hover > .menu-link::before {
    filter: brightness(0) saturate(100%) invert(8%) sepia(11%) saturate(3120%) hue-rotate(161deg) brightness(103%) contrast(105%);
  }
  .menu-item.menu-item-has-children:hover > .child {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .menu-item.menu-item-has-children:hover > .child:has(.child-tt) {
    transform: translateY(0) translateX(-50%);
  }
  .menu-item.menu-item-has-children:hover > .child:has(> .menu-list:nth-child(3)) {
    transform: translateY(0) translateX(-50%);
  }
}

.menu-link {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding: 0 2rem;
  transition: padding-block 0.4s;
}
@media screen and (max-width: 1440px) {
  .menu-link {
    padding: 0 1rem;
  }
}

.header-action {
  display: flex;
  gap: 3.2rem;
  align-items: center;
  justify-content: flex-end;
  transition: height 0.4s linear;
}
@media screen and (max-width: 1440px) {
  .header-action {
    gap: 2.4rem;
  }
}
@media screen and (max-width: 576px) {
  .header-action {
    gap: 1.6rem;
  }
}
@media screen and (max-width: 340px) {
  .header-action {
    gap: 0.8rem;
  }
}
.header-action_call {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media screen and (max-width: 1199.98px) {
  .header-action_call {
    display: none;
  }
}
.header-action_call img {
  flex-shrink: 0;
  width: 3.2rem;
  height: 3.2rem;
  object-fit: contain;
  filter: var(--phone-img);
  -webkit-filter: var(--phone-img);
}
.header-action_call .content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.header-action_call .content .title {
  color: var(--phone-title-clr, #e8eaeb);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 140%;
  transition: color 0.4s;
}
.header-action_call .content .value {
  background-image: linear-gradient(272deg, #ffeb9f 68.94%, #b57e10 122.48%, #b57e10 144.88%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 1.8rem;
}
@media only screen and (max-width: 1200px) {
  .header-action_call .content .value {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 800px) {
  .header-action_call .content .value {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .header-action_call .content .value {
    font-size: 1.4rem;
  }
}
.header-action_call .content .value {
  font-weight: 700;
  line-height: 140%;
  transition: color 0.4s;
}
@media screen and (min-width: 1200px) {
  .header-action_call .content .value:hover {
    color: var(--color-sec);
  }
}

.header-shop {
  position: relative;
}
@media screen and (min-width: 1200px) {
  .header-shop:hover .header-shop_drop, .header-shop:focus-visible .header-shop_drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.header-shop.is-active .header-shop_drop {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .header-shop_btn img {
    width: 1.4rem;
    height: 1.4rem;
  }
}
@media screen and (max-width: 576px) {
  .header-shop_btn {
    min-width: 8rem;
  }
  .header-shop_btn img {
    display: none;
  }
}
@media screen and (max-width: 340px) {
  .header-shop_btn {
    min-width: unset;
  }
}
.header-shop_icon {
  flex-shrink: 0;
  width: 3.2rem;
  height: 3.2rem;
}
.header-shop_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 576px) {
  .header-shop_text {
    display: none;
  }
}
.header-shop_drop {
  position: absolute;
  top: calc(100% + 1.6rem);
  right: 0;
  transform: translateY(1rem);
  z-index: 100;
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  width: max-content;
  background-color: var(--color-white);
  border-radius: 1.6rem;
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s, transform 0.4s, top 0.4s;
}
.header-shop_drop::before {
  background: transparent;
  height: 2.4rem;
  top: -2.4rem;
  left: 0;
  width: 100%;
  position: absolute;
  content: "";
}
.header-shop_link {
  display: block;
  padding: 0.8rem 0;
  overflow: hidden;
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .header-shop_link {
    font-size: 1.4rem;
  }
}
.header-shop_link {
  transition: 0.4s ease;
  color: var(--color-text);
}
.header-shop_link:first-child {
  padding-top: 0;
  padding-bottom: 1.6rem;
}
.header-shop_link:nth-of-type(2) {
  padding-top: 1.6rem;
}
.header-shop_link:last-child {
  padding-bottom: 0;
}
@media screen and (max-width: 1199.98px) {
  .header-shop_link {
    padding: 0.8rem 0;
  }
}
.header-shop_link:hover, .header-shop_link.is-active {
  color: var(--color-pri);
}
.header-shop_link:first-child {
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
}

.header-lang {
  cursor: pointer;
  flex-shrink: 0;
}
@media screen and (min-width: 1200px) {
  .header-lang:hover .nation-list, .header-lang:focus-visible .nation-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .header-lang:hover .nation-drop, .header-lang:focus-visible .nation-drop {
    transform: rotate(180deg);
  }
}
@media screen and (min-width: 577px) {
  .header-lang {
    position: relative;
  }
}
.header-lang .nation-input {
  user-select: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.header-lang .nation-input.is-active .nation-drop {
  transform: rotate(180deg);
}
.header-lang .nation-box {
  color: #012240;
  font-size: 1.8rem;
}
@media only screen and (max-width: 1200px) {
  .header-lang .nation-box {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 800px) {
  .header-lang .nation-box {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .header-lang .nation-box {
    font-size: 1.4rem;
  }
}
.header-lang .nation-box {
  font-weight: 600;
  padding-left: 2rem;
  position: relative;
  line-height: 2.4rem;
}
.header-lang .nation-box::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  left: 1rem;
  top: 48%;
  transform: translateX(-50%);
  background: var(--color-text);
}
@media screen and (max-width: 768px) {
  .header-lang .nation-box {
    line-height: 2rem;
  }
}
@media screen and (max-width: 576px) {
  .header-lang .nation-box {
    line-height: 1.4rem;
    padding-left: 0.4rem;
  }
  .header-lang .nation-box::before {
    display: none;
  }
}
.header-lang .nation-flag {
  flex-shrink: 0;
  height: 2.4rem;
}
.header-lang .nation-flag img {
  width: auto;
  height: 2.4rem;
}
@media screen and (max-width: 768px) {
  .header-lang .nation-flag img {
    height: 2rem;
  }
}
@media screen and (max-width: 576px) {
  .header-lang .nation-flag img {
    height: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .header-lang .nation-flag {
    height: 2rem;
  }
}
@media screen and (max-width: 576px) {
  .header-lang .nation-flag {
    height: 1.4rem;
  }
}
.header-lang .nation-drop {
  margin-left: 0.4rem;
  flex-shrink: 0;
  width: 1rem;
  height: 0.6rem;
  margin-top: 0.3rem;
  transition: transform 0.4s;
}
.header-lang .nation-drop img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(8%) sepia(11%) saturate(3120%) hue-rotate(161deg) brightness(103%) contrast(105%);
}
@media screen and (max-width: 576px) {
  .header-lang .nation-drop {
    margin-top: 0.1rem;
  }
}
.header-lang .nation-list {
  top: calc(100% + 1.6rem);
  z-index: 100;
  width: 100%;
  cursor: pointer;
  position: absolute;
  background: #fff;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1);
  border-radius: 1.6rem;
  right: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.header-lang .nation-list::before {
  content: "";
  position: absolute;
  top: -2.4rem;
  width: 100%;
  height: 2.4rem;
  background-color: transparent;
  cursor: pointer;
}
.header-lang .nation-list {
  opacity: 0;
  visibility: hidden;
  transform: translateY(2rem);
  transition: opacity 0.4s, visibilty 0.4s, transform 0.4s;
}
@media screen and (min-width: 577px) {
  .header-lang .nation-list {
    min-width: 61.2rem;
  }
}
@media screen and (min-width: 577px) and (max-width: 992px) {
  .header-lang .nation-list {
    right: -10rem;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .header-lang .nation-list {
    right: -14rem;
    min-width: 52.2rem;
  }
}
@media screen and (max-width: 1199.98px) {
  .header-lang .nation-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@media screen and (max-width: 576px) {
  .header-lang .nation-list {
    right: 0;
    top: 100%;
    padding: 1rem 0;
  }
}
.header-lang .nation-inner {
  display: flex;
  gap: 10rem;
  padding: 4rem;
  justify-content: space-evenly;
}
@media screen and (max-width: 992px) {
  .header-lang .nation-inner {
    padding: 4rem 2rem;
    gap: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .header-lang .nation-inner {
    gap: 4rem 3.2rem;
  }
}
@media screen and (max-width: 576px) {
  .header-lang .nation-inner {
    flex-direction: column;
    padding: 1.4rem 1.6rem;
    max-height: 40rem;
    overflow: hidden auto;
    row-gap: 2.4rem;
  }
}
.header-lang .nation-item {
  width: calc(50% - 5rem);
}
@media screen and (max-width: 992px) {
  .header-lang .nation-item {
    width: calc(50% - 3rem);
  }
}
@media screen and (max-width: 768px) {
  .header-lang .nation-item {
    width: calc(50% - 1.6rem);
  }
}
@media screen and (max-width: 576px) {
  .header-lang .nation-item {
    width: 100%;
  }
}
.header-lang .nation-tt {
  font-weight: 600;
  font-size: 2.4rem;
}
@media only screen and (max-width: 1200px) {
  .header-lang .nation-tt {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 800px) {
  .header-lang .nation-tt {
    font-size: 1.8rem;
  }
}
.header-lang .nation-tt {
  color: var(--color-pri);
  text-transform: uppercase;
}
.header-lang .nation-txt {
  font-size: 1.4rem;
  margin-top: 0.4rem;
}

.search-country {
  margin-top: 1.6rem;
}
.search-country form button::before {
  content: "";
  top: 50%;
  right: 2.2rem;
  width: 2rem;
  height: 2rem;
  display: block;
  position: absolute;
  transform: translateY(-50%);
  background-image: url(../images/icon/icon_search.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.search-country .form-group label {
  display: flex;
  align-items: center;
}
.search-country .form-group input {
  padding-left: 2.4rem;
  padding-right: 4rem;
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .search-country .form-group input {
    font-size: 1.4rem;
  }
}
.search-country .form-group input {
  height: 4.8rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.search-country .form-group input::placeholder {
  color: #98a2b3;
}

.lang-list {
  margin-top: 2rem;
  max-height: 20.4rem;
  overflow-y: auto;
}
.lang-list::-webkit-scrollbar {
  width: 0.5rem;
}
.lang-list::-webkit-scrollbar-thumb {
  background-color: #d9d9d9;
  border-radius: 0.8rem;
}
.lang-list::-webkit-scrollbar-track {
  border-radius: 4rem;
}
.lang-list::-webkit-scrollbar-corner {
  background-color: transparent;
}
.lang-list.lang-list--sec .lang-item {
  display: flex;
  gap: 0.4rem;
}
.lang-list.lang-list--sec .lang-item span:first-child {
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #012240;
}
.lang-list.lang-list--sec .lang-item span:last-child {
  color: var(--color-sec);
  font-size: 1.2rem;
  margin-top: 0.4rem;
  display: none;
}
.lang-list.lang-list--sec .lang-item:first-child span:last-child {
  display: block;
}
.lang-item {
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .lang-item {
    font-size: 1.4rem;
  }
}
.lang-item {
  color: var(--color-text);
  transition: 0.4s ease;
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.lang-item:first-child {
  padding-top: 0;
}
.lang-item img {
  margin-left: 0.8rem;
  height: 1.6rem;
  width: auto;
  transition: 0.4s ease;
}
.lang-item.is-active {
  color: #012240;
  font-size: 1.8rem;
}
@media only screen and (max-width: 1200px) {
  .lang-item.is-active {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 800px) {
  .lang-item.is-active {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .lang-item.is-active {
    font-size: 1.4rem;
  }
}
.lang-item.is-active {
  font-weight: 600;
}
.lang-item.is-active img {
  height: 2.8rem;
}
.lang-item:hover {
  color: #012240;
}

.header-search {
  position: relative;
}
@media screen and (max-width: 1199.98px) {
  .header-search {
    width: initial;
  }
}
.header-search_result {
  width: 100%;
  max-height: 30rem;
  position: absolute;
  left: 0;
  top: 5rem;
  box-shadow: 0.5rem 1.2rem 1.5rem rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 0.8rem;
  display: none;
  flex-direction: column;
}
.header-search_result.is-active {
  display: flex;
}
@media screen and (max-width: 1200px) {
  .header-search_result {
    top: 3rem;
  }
}
.header-search_list {
  height: 100%;
  overflow: hidden auto;
}
.header-search_item {
  width: 100%;
  padding: 1rem 2rem;
  transition: all 0.4s;
  display: flex;
  align-items: center;
}
.header-search_item:hover {
  background-color: #f5f5f5;
}
.header-search_item .rs-image {
  max-width: 7rem;
  padding-right: 1.8rem;
  flex-shrink: 0;
}
.header-search_item .rs-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header-search_item .rs-title {
  font-size: 1.6rem;
  font-weight: 500;
  color: #303030;
  margin-bottom: 0.5rem;
}
.header-search_item .rs-price .new {
  color: var(--color-sec);
  font-weight: 700;
}
.header-search_item .rs-price .old {
  font-size: 1.4rem;
  text-decoration: line-through;
  padding-left: 1rem;
}
.header-search_btn a {
  margin: auto;
  margin-top: 2rem;
  padding: 0.5rem 1rem;
  background-color: var(--color-sec);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 0.8rem 0.8rem;
  transition: opacity 0.4s;
}
.header-search_btn a:hover {
  opacity: 0.8;
}
.header-search_group {
  display: flex;
  align-items: center;
  height: 4.8rem;
  border-radius: 0.8rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  position: relative;
}
@media screen and (max-width: 1200px) {
  .header-search_group {
    height: 3rem;
  }
}
.header-search_group button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}
.header-search_group input {
  width: 100% !important;
  font-size: 1.6rem;
  color: var(--color-text);
  font-weight: 400;
  line-height: 150%;
  border-radius: 0.8rem;
  border: 0.1rem solid #d9d9d9;
  background-color: #fdfaf3;
  padding: 1.1rem 2.4rem;
  transition: 0.4s ease;
}
.header-search_group input:focus, .header-search_group input:focus-visible {
  outline: none;
}
.header-search_group button {
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .header-search_group button {
    width: 3rem;
    height: 3rem;
  }
}
.header-search_group button img {
  width: 2rem;
  height: 2rem;
}
@media screen and (max-width: 576px) {
  .header-search_group button.btn-desktop {
    display: none;
  }
}

.js-menu-search {
  cursor: pointer;
  user-select: none;
  position: relative;
}
.js-menu-search.is-active .menu-search {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(0, 1.2rem);
}
@media screen and (max-width: 1199.98px) {
  .js-menu-search.is-active .menu-search {
    transform: translate(0, 0rem);
  }
}
.js-menu-search .search {
  transition: width 0.4s, height 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
}
@media screen and (max-width: 576px) {
  .js-menu-search .search {
    width: 2rem;
  }
}
.js-menu-search .search.is-active .search-icon {
  display: none;
}
.js-menu-search .search.is-active .search-close {
  display: block;
}
.js-menu-search .search-icon {
  width: auto;
  height: auto;
}
.js-menu-search .search-close {
  display: none;
  width: 1.6rem;
  height: auto;
}
.js-menu-search .search img {
  width: 100%;
  height: auto;
}

.menu-search {
  z-index: 5;
  opacity: 0;
  width: 100%;
  top: calc(100% + 1.6rem);
  right: -5rem;
  min-width: 40rem;
  color: #8b8b8b;
  position: absolute;
  visibility: hidden;
  pointer-events: none;
  transition: 0.4s linear;
  transform: translate(0, 2rem);
}
@media screen and (max-width: 1199.98px) {
  .menu-search {
    right: 0rem;
    transform: translate(0, 3.6rem);
  }
}
@media screen and (max-width: 768px) {
  .menu-search {
    right: -18rem;
  }
}
@media screen and (max-width: 576px) {
  .menu-search {
    min-width: 32rem;
  }
}
@media screen and (max-width: 340px) {
  .menu-search {
    min-width: 30rem;
    right: -16rem;
  }
}
.menu-search form {
  position: relative;
}
.menu-search form .form-group {
  display: block;
}
.menu-search form input {
  outline: 0;
  padding: 0;
  width: 100%;
  height: 4rem;
  display: block;
  font-size: 1.6rem;
  padding-left: 3.6rem;
  padding-right: 1.2rem;
  border-radius: 0.8rem;
  font-family: var(--font-pri);
  border: 0.1rem solid #e0e0e0;
  background-color: #fff;
}
.menu-search form input::placeholder {
  color: #d0d5dd;
}
.menu-search form input:-webkit-autofill,
.menu-search form input:-webkit-autofill:hover,
.menu-search form input:-webkit-autofill:focus,
.menu-search form textarea:-webkit-autofill,
.menu-search form textarea:-webkit-autofill:hover,
.menu-search form textarea:-webkit-autofill:focus,
.menu-search form select:-webkit-autofill,
.menu-search form select:-webkit-autofill:hover,
.menu-search form select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--color-text);
  -webkit-box-shadow: 0 0 0 100rem #fff inset;
  transition: background-color 5000s ease-in-out 0s;
}
.menu-search form button {
  display: block;
}
.menu-search form button::before {
  content: "";
  top: 50%;
  left: 0.8rem;
  width: 2rem;
  height: 2rem;
  display: block;
  position: absolute;
  transform: translateY(-50%);
  background-image: url("../../assets/images/icon/icon_search.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.menu-search form button img {
  opacity: 0;
  max-height: 0;
}

.header-bar {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}
@media screen and (min-width: 1200px) {
  .header-bar {
    display: none;
  }
}
.header-bar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s, opacity 0.4s, visibility 0.4s;
}

.child {
  position: absolute;
  top: 65%;
  left: 0rem;
  transform: translateY(2rem);
}
@media screen and (min-width: 1201px) {
  .child {
    pointer-events: none;
  }
}
.child:has(.child-tt) {
  transform: translateY(2rem) translateX(-50%);
  left: 50%;
}
.child:has(> .menu-list:nth-child(3)) {
  transform: translateY(2rem) translateX(-50%);
  left: 50%;
}
.child {
  min-width: 100%;
  width: max-content;
  max-width: 100%;
  border-radius: 0.8rem;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s, transform 0.4s, top 0.4s;
}
.child::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border-radius: inherit;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
  box-shadow: 0 0.8rem 1.6rem 0rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1199.98px) {
  .child::after {
    content: "";
    left: 0;
    top: 50%;
    width: 0.1rem;
    height: calc(100% - 0rem);
    position: absolute;
    transform: translate(0, -50%);
    background-color: var(--color-sec);
  }
  .child::before {
    content: none;
  }
}
.child-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8rem;
}
.child-tt {
  font-size: 1.8rem;
}
@media only screen and (max-width: 1200px) {
  .child-tt {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 800px) {
  .child-tt {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .child-tt {
    font-size: 1.4rem;
  }
}
.child-tt {
  font-weight: 600;
  color: #012240;
  margin-bottom: 0.8rem;
}
.child .menu-list {
  display: flex;
  flex-direction: column;
  width: fit-content;
}
@media screen and (max-width: 1440px) and (min-width: 1201px) {
  .child .menu-list {
    transform: translateX(-1rem);
    max-width: 60rem;
  }
}
.child .menu-item {
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .child .menu-item {
    font-size: 1.4rem;
  }
}
.child .menu-item {
  padding: 0rem;
  flex-direction: column;
  gap: 0;
  text-align: left;
  align-items: start;
}
.child .menu-item > .menu-link {
  padding: 1rem 0rem;
  display: block;
}
@media screen and (min-width: 1200px) {
  .child .menu-item.menu-item-has-children > .menu-link {
    font-weight: 600;
    color: #012240;
  }
  .child .menu-item.menu-item-has-children > .menu-link::before {
    display: none;
  }
}
.child .menu-item {
  white-space: initial;
  position: initial;
}
.child .menu-item::before {
  content: none;
}
.child .menu-item.current-menu-item, .child .menu-item.is-active {
  color: var(--color-pri);
}
@media screen and (min-width: 1200px) {
  .child .menu-item:hover, .child .menu-item:focus-visible {
    color: var(--color-pri);
  }
}
.child .menu-item > .child {
  width: 100%;
  position: relative;
  top: unset;
  left: unset;
  transform: unset;
  opacity: 1;
  visibility: visible;
  padding: 0;
  display: flex;
}
.child .menu-item > .child::before, .child .menu-item > .child::after {
  display: none;
}
@media screen and (max-width: 1199.98px) {
  .child .menu-item > .child {
    display: none;
  }
}
.child > .menu-item {
  gap: 0.8rem;
  text-transform: initial;
}
.child > .menu-item.menu-item-has-children > .menu-link {
  width: 100%;
  justify-content: space-between;
  align-items: initial;
}
@media screen and (min-width: 1200px) {
  .child > .menu-item:hover > .child {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}
.child .menu-link {
  padding: 0;
}

@media screen and (min-width: 1200px) {
  .header-mobile {
    display: none;
  }
}
.header-mobile {
  position: fixed;
  top: 0rem;
  left: 0rem;
  bottom: 0rem;
  z-index: 102;
  width: 32rem;
  height: 100dvh;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform ease 0.4s, box-shadow ease 0.4s, -webkit-box-shadow ease 0.4s;
  pointer-events: none;
}
.header-mobile.is-active {
  transform: translateX(0%);
  pointer-events: auto;
  box-shadow: 0px 9px 18px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 9px 18px 0px rgba(0, 0, 0, 0.15);
}
.header-mobile_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem;
  width: 100%;
  max-width: 126.4rem;
  margin: auto;
  padding: 0 16px;
  overflow: hidden auto;
}
.header-mobile_inner::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 768px) {
  .header-mobile_inner {
    overflow: hidden auto;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0.8rem;
    flex: 1;
  }
}
.header-mobile .header-wrap {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden auto;
}
.header-mobile .header-follow {
  display: flex;
  justify-content: flex-start;
  color: #fff;
}
.header-mobile .header-nav {
  display: block;
  width: 100%;
  overflow: hidden auto;
  position: initial;
  opacity: 1;
  visibility: visible;
  min-width: unset;
  padding: 0rem;
  border-radius: 0rem;
  background-color: transparent;
  box-shadow: none;
  -webkit-box-shadow: none;
}
.header-mobile .header-nav::-webkit-scrollbar {
  width: 0.3rem;
}
.header-mobile .header-nav::-webkit-scrollbar-thumb {
  background-color: var(--color-pri);
  border-radius: 0.8rem;
}
.header-mobile .header-nav::-webkit-scrollbar-track {
  background-color: #f1fbff;
  border-radius: 0.8rem;
}
.header-mobile .header-nav::-webkit-scrollbar-corner {
  background-color: transparent;
}
.header-mobile .header-nav > .menu-list {
  gap: 0;
  border-top: 1px solid #f2f4f7;
}
.header-mobile .header-nav > .menu-list > .menu-item {
  padding: 1.2rem 0;
  border-top: 1px solid #f2f4f7;
}
.header-mobile .header-nav > .menu-list > .menu-item:first-child {
  border-top: 0;
}
.header-mobile .child-inner {
  gap: 0;
}
.header-mobile .child-box {
  width: 100%;
}
.header-mobile .child-box .menu-list {
  gap: 0;
  padding: 0;
  width: 100%;
  font-style: italic;
}
.header-mobile .child-box:has(.child-tt) .menu-list {
  display: none;
  padding: 0 0 0 1rem;
}
.header-mobile .child-box.is-active .child-tt {
  font-weight: 700;
  color: var(--color-pri);
}
.header-mobile .child-box.is-active .child-tt::before {
  filter: brightness(0) saturate(100%) invert(8%) sepia(11%) saturate(3120%) hue-rotate(161deg) brightness(103%) contrast(105%);
}
.header-mobile .child-tt {
  margin-bottom: 0;
  padding: 0.8rem 0;
  font-size: 1.6rem;
  color: var(--color-text);
  font-weight: 400;
  font-style: italic;
}
.header-mobile .child-tt:has(+ .menu-list) {
  position: relative;
}
.header-mobile .child-tt:has(+ .menu-list)::before {
  transition: 0.4s ease;
  position: absolute;
  content: "";
  right: 0;
  top: 1.3rem;
  width: 1rem;
  height: 0.6rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("../images/icon/icon_dropdown.svg");
}
.header-mobile .menu-list {
  flex-direction: column;
  align-items: flex-start;
  padding: 1.6rem;
}
.header-mobile .menu-list > .menu-item {
  white-space: unset;
  align-items: unset;
  gap: 0;
}
.header-mobile .menu-list > .menu-item > img {
  margin-top: 0.2rem;
}
@media screen and (max-width: 576px) {
  .header-mobile .menu-list > .menu-item {
    font-size: 1.6rem;
    width: 100%;
  }
  .header-mobile .menu-list > .menu-item > img {
    margin-left: auto;
    margin-right: 1rem;
  }
}
.header-mobile .menu-list > .menu-item.menu-item-has-children > .menu-link {
  width: 100%;
}
.header-mobile .menu-list > .menu-item > .menu-link {
  padding: 0rem;
  width: 100%;
  gap: 0.8rem;
  align-items: initial;
}
.header-mobile .child .menu-list {
  padding: 0;
  width: 100%;
}
.header-mobile .header-title {
  color: var(--color-pri);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 150%;
  text-transform: uppercase;
}
.header-mobile .menu-item {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0.8rem 0;
  color: var(--color-text);
  background-color: transparent;
  flex-wrap: wrap;
}
.header-mobile .menu-item:last-child {
  border-bottom: 0;
}
.header-mobile .menu-item::before {
  content: none;
}
.header-mobile .menu-item.current-menu-item, .header-mobile .menu-item.is-active {
  color: var(--color-pri);
}
.header-mobile .child {
  position: relative !important;
  top: unset;
  left: unset;
  z-index: unset;
  width: 100%;
  min-width: unset;
  padding: 0 0 0 1.5rem;
  background: transparent;
  border: none;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: unset;
  display: none;
}
.header-mobile .child::before {
  content: unset;
}
.header-mobile .child::after {
  content: "";
  left: 0;
  top: 50%;
  width: 0.1rem;
  height: calc(100% - 0rem);
  position: absolute;
  transform: translate(0, -50%);
  background-color: var(--color-pri);
}
.header-mobile .child .menu-item {
  font-style: italic;
}
.header-mobile .child .child .menu-item.menu-item-has-children > .menu-link::before {
  top: 0.8rem;
}
.header-mobile .group-news-filter {
  padding: 0 1.2rem 2rem;
}
.header-mobile .group-news-filter form {
  width: 100%;
  max-width: unset;
}
.header-mobile .header-action {
  padding: 1.2rem 1.2rem 1.2rem;
  gap: 0.8rem;
}
.header-mobile .header-action > * {
  flex: 1;
}
@media screen and (max-width: 576px) {
  .header-mobile .menu-search {
    position: initial;
    opacity: 1;
    visibility: visible;
    min-width: initial;
    transform: none;
    padding: 1.2rem 1.6rem;
    pointer-events: auto;
  }
}

.header-close {
  width: 4.8rem;
  height: 4.8rem;
  margin-left: auto;
  padding: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-close img {
  width: 1.6rem;
  height: 1.6rem;
}

.header-mobile_logo {
  padding: 1.2rem 0rem;
}
.header-mobile_logo > * {
  display: block;
  width: 13.2rem;
  height: 6.4rem;
  margin: 0 auto;
}
.header-mobile_logo > * img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-info {
  padding: 1.6rem;
  border-top: 0.1rem solid #d9d9d9;
  background-color: var(--color-pri);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.header-info .footer-list {
  gap: 1.2rem !important;
}

.hide-sitename {
  visibility: visible;
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 4rem;
  }
}
.footer .menu-list {
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 0;
  row-gap: 1.2rem;
}
.footer .menu-link {
  padding: 0 3rem;
}
@media screen and (max-width: 1199px) {
  .footer .menu-link {
    padding: 0 1.6rem;
  }
}
@media screen and (max-width: 992px) {
  .footer .menu-link {
    padding: 0 1rem;
  }
}
@media screen and (max-width: 768px) {
  .footer .menu-link {
    padding: 0 0.8rem;
  }
}
.footer .menu-item.current-menu-item,
.footer .menu-item.is-active,
.footer .menu-item:hover {
  color: var(--color-pri);
  font-weight: 400;
}

.footer-bottom {
  margin-top: 4rem;
}
.footer-bottom_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.footer-bottom_inner img {
  max-height: 1.2rem;
}
@media screen and (max-width: 340px) {
  .footer-bottom_inner img {
    max-height: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-bottom {
    margin-top: 2.4rem;
  }
}

.footer-address {
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .footer-address {
    font-size: 1.4rem;
  }
}
.footer-address {
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.032rem;
  word-break: break-word;
}
@media screen and (min-width: 1200px) {
  .footer-address a {
    transition: all 0.4s;
  }
  .footer-address a:hover, .footer-address a:focus-visible {
    text-decoration: underline;
  }
}

.footer-cpr {
  color: var(--color-text);
}

.look-action {
  width: fit-content;
  margin: 0 auto;
  position: relative;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 1.4rem 0;
  padding-left: 2.4rem;
  font-weight: 700;
  color: var(--color-text-2);
  transition: 0.4s ease;
}
.look-action::before {
  height: 4.8rem;
  width: 4.8rem;
  content: " ";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("../images/icon/look.svg");
}
.look-action:hover {
  color: var(--color-pri);
}
.look-action:hover::before {
  filter: brightness(0) saturate(100%) invert(42%) sepia(67%) saturate(553%) hue-rotate(155deg) brightness(102%) contrast(98%);
}

.post-desc {
  margin-top: 6rem;
}
@media screen and (max-width: 576px) {
  .post-desc {
    margin-top: 4rem;
  }
}
.post-desc .mona-content {
  color: var(--color-text);
}

.swiper-navigation {
  --position: 9.6rem;
}
@media screen and (max-width: 1440px) {
  .swiper-navigation {
    --position: 5.4rem;
  }
}
@media screen and (max-width: 1366px) {
  .swiper-navigation {
    --position: 1.6rem;
  }
}
@media screen and (max-width: 1200px) {
  .swiper-navigation {
    display: none;
  }
}
.swiper-navigation > * {
  top: 50%;
  z-index: 5;
  cursor: pointer;
  border-radius: 50%;
  position: absolute;
  transition: 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 4.8rem;
  height: 4.8rem;
  background-color: white;
  transform: translateY(-50%);
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 1201px) {
  .swiper-navigation > *:hover {
    border-color: var(--color-pri);
    background-color: var(--color-pri);
  }
  .swiper-navigation > *:hover img {
    filter: brightness(0) invert(1);
  }
}
.swiper-navigation .prev {
  left: calc(-1 * var(--position));
}
.swiper-navigation .prev img {
  transform: rotate(180deg);
}
.swiper-navigation .next {
  right: calc(-1 * var(--position));
}
.swiper-pagination {
  position: static;
  margin-top: 2.4rem;
}
@media screen and (min-width: 1201px) {
  .swiper-pagination {
    display: none;
  }
}
/*# sourceMappingURL=common.css.map */
