@charset "UTF-8";
@font-face {
  font-family: Roboto;
  src: url("../fonts/Roboto-Thin.0bcdf4a7.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: Roboto;
  src: url("../fonts//Roboto-Light.cf1d77a2.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: Roboto;
  src: url("../fonts/Roboto-Regular.8ff69652.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Roboto;
  src: url("../fonts/Roboto-Medium.530bae4d.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Roboto;
  src: url("../fonts/Roboto-Bold.a5947e77.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Roboto;
  src: url("../fonts/Roboto-Black.cf9b4c79.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
/*==========================================================================*/
/*                               M I X I N                                  */
/*==========================================================================*/
/*==========================================================================*/
/*                       H E A D I N G   T I T L E                          */
/*==========================================================================*/
.main-under h2,
.main-under h3,
.main-under h4,
.main-under h5,
.main-under h6 {
  position: relative;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 10px;
}
.main-under h2 {
  font-size: 40px;
  font-weight: 900;
}
.main-under h3 {
  font-size: 32px;
  font-weight: 600;
  color: var(--main-cl);
  text-transform: uppercase;
  line-height: 1.5;
}
.main-under h4 {
  margin-top: 0;
  font-size: 28px;
  line-height: 1.5;
  color: #343436;
  font-weight: 500;
}
.main-under h5 {
  font-size: 28px;
}
.main-under h6 {
  font-size: 24px;
}

/*==========================================================================*/
/*                           U T I L I T I E S                              */
/*==========================================================================*/
.ovh {
  overflow: hidden;
}

.image-l {
  float: left;
  margin: 0 60px 20px 0;
  line-height: 0;
}

.image-r {
  float: right;
  margin: 0 0 20px 60px;
  line-height: 0;
}

.image-c {
  text-align: center;
  margin: 0 auto 20px;
  line-height: 0;
}

section {
  padding: 0;
}
section:last-child {
  margin-bottom: 0;
}
section section {
  padding: 0;
}

table {
  margin-bottom: 30px;
}
table:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 700;
}

@keyframes jumpAni {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes jumpReverseAni {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
  to {
    transform: translateY(0);
  }
}
#topic-path {
  margin: 0;
}
#topic-path li,
#topic-path a {
  color: #fff;
}
#topic-path a {
  text-decoration: none !important;
}
#topic-path svg {
  transform: translateY(3px);
}
#topic-path li {
  position: relative;
  display: inline;
}
#topic-path li::after {
  content: "/";
  display: inline-block;
  margin: 0 4px;
}
#topic-path li:first-child {
  font-size: 20px;
  line-height: 1;
}
#topic-path li:last-child::after {
  display: none;
}

.utbl {
  width: 100%;
}
.utbl.tbl-fix {
  table-layout: fixed;
}
.utbl td,
.utbl th {
  border-color: #505050;
  vertical-align: top;
  padding: 10px;
}
.utbl th {
  background-color: var(--main-cl);
  font-weight: 400;
}

.tbl-scroll table {
  table-layout: fixed;
}
.ulist li {
  position: relative;
  overflow: hidden;
  padding: 0 0 0 13px;
  margin-bottom: 5px;
  text-align: left;
  line-height: 1.5em;
}
.ulist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  height: 5px;
  width: 5px;
  border-radius: 8px;
  background: #343436;
}
.ulist li:last-child {
  margin-bottom: 0;
}

.main-under {
  --uwrap: 100px;
}

.uwrap + .uwrap {
  margin-top: var(--uwrap);
}

.text-eff {
  background: linear-gradient(180deg, rgba(235, 75, 145, 0.15) 15.71%, rgba(235, 75, 145, 0) 87.27%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 92px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.ubtn {
  position: relative;
  padding: 16px 28px;
  z-index: 2;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  text-align: center;
  vertical-align: middle;
  min-width: 125px;
  width: 100%;
  font-weight: 500;
  color: #fff !important;
  background-color: #eb4b91 !important;
  border: none;
  border-radius: 14px;
  overflow: hidden;
}
.ubtn::before {
  content: "";
  background-color: #cb0b6f;
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  width: 0;
  z-index: -1;
  transform: skew(50deg);
  transition: width 0.6s;
  transform-origin: top left;
}

.fcontrol .fgroup {
  width: 100%;
  margin-bottom: 25px;
}
.fcontrol .fgroup:last-child {
  margin-bottom: 0 !important;
}
.fcontrol .flabel {
  font-weight: 600;
  color: #212529;
  line-height: 1.4;
  margin-bottom: 7px;
  display: block;
}
.fcontrol .finput {
  width: 100%;
  border-radius: 8px;
  padding: 14px 12px;
  border: 1px solid #dee2e6;
}
.fcontrol .finput:focus {
  box-shadow: 0 0 0 0.25rem rgba(235, 75, 145, 0.25);
  border-color: #eb4b91;
}
.fcontrol .finput-search {
  padding: 14px 12px 14px 40px;
  background: url("../../template/images/ic-serach.svg") center left 10px/24px auto no-repeat;
}
.fcontrol .fcheck {
  margin-bottom: 5px;
  padding-left: 24px;
  position: relative;
}
.fcontrol .fcheck:last-child {
  margin-bottom: 0;
}
.fcontrol .fcheck-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  vertical-align: top;
  background-color: var(--bs-form-check-bg);
  background-image: var(--bs-form-check-bg-image);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  position: absolute;
  top: 1px;
  bottom: 0;
  left: 0;
}
.fcontrol .fcheck-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.fcontrol .fcheck-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.fcontrol .f-dflex {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fcontrol .f-dflex input {
  padding-left: 16px;
}
.fcontrol select.finput {
  appearance: none;
  padding-left: 12px;
  padding-right: 40px;
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background: var(--bs-form-select-bg-img) center right 14px/13px auto no-repeat;
}

/*==========================================================================*/
/*                             C O N T E N T                                */
/*==========================================================================*/
.under-visual {
  position: relative;
  z-index: 0;
  height: 320px;
  color: #fff;
}
.under-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #181a20;
  opacity: 0.6;
}
.under-visual .umvs-img {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.under-visual .umvs-img img {
  width: 100%;
  height: 100%;
}
.under-visual .container {
  height: 100%;
}
.under-visual .umvs-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 49px;
}
.under-visual .umvs-title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 8px;
}

.main-under {
  min-height: 1000px;
}

.utrip {
  padding: 80px 0;
}
.utrip .utrip-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.utrip .utrip-img {
  width: 48%;
  position: relative;
  padding-left: 100px;
}
.utrip .utrip-img img {
  border-radius: 16px;
}
.utrip .utrip-ibig {
  display: block;
  margin-left: auto;
}
.utrip .utrip-ism {
  border: 10px solid #fff;
  position: absolute;
  bottom: -48px;
  right: -40px;
  width: 280px;
  animation: jumpAni 10s linear infinite;
}
.utrip .utrip-eff {
  position: absolute;
  top: 0;
  left: 0;
  height: max-content;
  writing-mode: sideways-lr;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  line-height: 1;
  background: linear-gradient(90deg, rgba(235, 75, 145, 0.15) 15.71%, rgba(235, 75, 145, 0) 87.27%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.utrip .utrip-txt {
  width: 48%;
  margin-top: 60px;
}
.utrip .utrip-head {
  margin-bottom: 20px;
}
.utrip .utrip-head h3 {
  margin-bottom: 20px;
}
.utrip .aul-thead {
  display: flex;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.24);
  padding: 8px;
  border-radius: 8px;
  background-color: #fff;
  margin-bottom: 24px;
}
.utrip .aul-thead li {
  color: #343436;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 33.3333333333%;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
}
.utrip .aul-thead li.active {
  background-color: var(--main-cl);
  color: #fff;
}
.utrip .utrip-tbody {
  padding: 0 24px;
}
.utrip .utrip-item {
  display: none;
}
.utrip .utrip-item.active {
  display: block;
}
.utrip .utrip-list li {
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
}
.utrip .utrip-list li::before {
  content: "✔";
  position: absolute;
  top: -2px;
  left: 0;
}
.utrip .utrip-list li:last-child {
  margin-bottom: 0;
}

.uhighlight {
  padding: 80px 0;
  background: linear-gradient(#82004f 32.05%, #c12679 65.62%, #fc4aa0 100.01%);
}
.uhighlight .uhl-wrapper {
  display: flex;
}
.uhighlight .uhl-item {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 10px;
}
.uhighlight .uhl-number {
  font-size: 72px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 5px;
}
.uhighlight .uhl-tt {
  font-size: 20px;
}

.uexperience {
  padding: 80px 0;
}
.uexperience .uexp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.uexperience .uexp-title {
  width: min(630px, 100%);
}
.uexperience .uexp-en {
  margin-bottom: -30px;
}
.uexperience .uexp-ig {
  position: relative;
  width: min(400px, 100%);
  padding: 0 40px;
  z-index: 0;
}
.uexperience .uexp-ig::before, .uexperience .uexp-ig::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  height: calc(100% - 48px);
  margin: auto 0;
  z-index: -1;
}
.uexperience .uexp-ig::before {
  left: 0;
  background: #fef1f9;
}
.uexperience .uexp-ig::after {
  right: 0;
  background: var(--main-cl);
}
.uexperience .uexp-ig img {
  width: 100%;
}
.uexperience .uexp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 24px;
  margin-top: 50px;
}
.uexperience .uexp-list li {
  display: flex;
  align-items: center;
  width: calc((100% - 48px) / 3);
}
.uexperience .uexp-icon {
  padding: 24px;
  border-radius: 100%;
  border: 1px dashed var(--main-cl);
  position: relative;
  z-index: 0;
  width: 98px;
  height: 98px;
  flex-shrink: 0;
  margin-right: 15px;
  margin-bottom: 0;
  color: #fff;
}
.uexperience .uexp-icon::before {
  content: "";
  position: absolute;
  inset: 5px;
  background-color: var(--main-cl);
  z-index: -1;
  border-radius: 100%;
}
.uexperience .uexp-icon img {
  width: 48px;
  aspect-ratio: 1;
}
.uexperience .uexp-tt {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 7px;
  text-transform: capitalize;
  color: #343436;
}
.ufaq {
  padding: 70px 0 60px;
  background: url("../images/ufaq-bg.jpg") center/cover no-repeat;
}
.ufaq .ufaq-wrapper {
  position: relative;
  z-index: 0;
}
.ufaq .ufaq-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60px;
  width: 60px;
  aspect-ratio: 1;
  background: url("../images/star-pink.svg") center/contain no-repeat;
  z-index: -1;
  animation: jumpAni 7s linear infinite;
}
.ufaq .ufaq-wrapper::after {
  content: "";
  position: absolute;
  top: 150px;
  right: -60px;
  width: 45px;
  aspect-ratio: 45/47;
  background: url("../images/star-black.svg") center/contain no-repeat;
  z-index: -1;
  animation: jumpReverseAni 10s linear infinite;
}
.ufaq .ufaq-head {
  text-align: center;
  margin-bottom: 30px;
}
.ufaq .ufaq-en {
  line-height: 1;
  margin-bottom: -10px;
}
.ufaq .ufaq-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.ufaq .ufaq-ig {
  width: min(100%, 526px);
}
.ufaq .ufaq-list {
  width: min(100%, 746px);
}
.ufaq .ufaq-list dl {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(24, 26, 32, 0.07);
  overflow: hidden;
  margin: 0 0 8px;
}
.ufaq .ufaq-list dl:last-child {
  margin-bottom: 0;
}
.ufaq .ufaq-list dl.active dt {
  background-color: var(--main-cl);
  color: #fff;
}
.ufaq .ufaq-list dl.active dt::before {
  border-right-color: #fff;
  border-bottom-color: #fff;
  transform: rotate(-135deg);
  top: 4px;
}
.ufaq .ufaq-list dt {
  padding: 16px 60px 16px 20px;
  font-size: 18px;
  color: #212529;
  position: relative;
  cursor: pointer;
}
.ufaq .ufaq-list dt::before {
  content: "";
  position: absolute;
  top: -4px;
  bottom: 0;
  right: 15px;
  margin: auto 0;
  width: 11.316px;
  height: 11.316px;
  transform: rotate(45deg);
  border-bottom: solid 1px #333;
  border-right: solid 1px #333;
  transition: all 0.3s ease;
}
.ufaq .ufaq-list dd {
  margin: 0;
  padding: 16px 20px;
  color: #212529;
  display: none;
  line-height: 1.5;
  font-size: 16px;
}

.uproduct {
  background-color: #fafafa;
  padding: 50px 0;
  position: relative;
  z-index: 0;
  overflow: visible !important;
}
.uproduct::before {
  content: "";
  position: absolute;
  bottom: 12rem;
  left: -16rem;
  aspect-ratio: 1;
  max-width: 800px;
  width: 40%;
  background: #eb4b91;
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(150px);
}
.uproduct .uproduct-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  z-index: 0;
}
.uproduct .uproduct-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: max((100vw - 102%) / -2, -305px);
  background: url("../images/handwriting-pink.svg") center/contain no-repeat;
  width: 40%;
  max-width: 380px;
  aspect-ratio: 1;
  animation: jumpAni 10s linear infinite;
  z-index: -1;
}
.uproduct .uproduct-result {
  font-size: 14px;
  color: #737373;
}
.uproduct .uproduct-cnt {
  width: 100%;
}

.uproduct-sibar {
  width: min(100%, 440px);
  background-color: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 4px rgba(24, 26, 32, 0.07);
  padding: 24px;
  position: sticky;
  top: 100px;
  left: 0;
}

.uproduct-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(328px, 1fr));
  gap: 24px;
}

.uproduct-item {
  padding: 16px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 4px rgba(24, 26, 32, 0.07);
  transition: all 0.45s ease;
}
.uproduct-item .uproduct-thumb {
  aspect-ratio: 5/3;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 13px;
}
.uproduct-item .uproduct-thumb a {
  display: block;
  height: 100%;
}
.uproduct-item .uproduct-thumb img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.uproduct-item .uproduct-address {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5px;
  color: #a3a3a3;
  font-size: 14px;
}
.uproduct-item .uproduct-address img {
  margin-right: 3px;
  margin-top: 1px;
}
.uproduct-item .uproduct-tt a {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
}
.uproduct-item .up-list {
  display: flex;
  align-items: center;
  gap: 5px;
}
.uproduct-item .up-list li {
  display: flex;
  align-items: center;
  width: 100%;
}
.uproduct-item .up-list img {
  width: 28px;
  height: 28px;
  padding: 5px;
  border: 1px solid #a3a3a3;
  border-radius: 100%;
  object-fit: contain;
  margin-right: 5px;
}
.uproduct-item .uproduct-ft {
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.uproduct-item .uproduct-price {
  color: #eb4b91;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
}
.uproduct-item .uproduct-ubtn {
  width: 32px;
  height: 32px;
  background-color: #000;
  border-radius: 100%;
  display: flex;
  align-items: center;
  padding: 4px;
}
.uproduct-item .uproduct-ubtn img {
  width: 100%;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 8px;
}
.pagination li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  aspect-ratio: 1;
  font-weight: 500;
  border-radius: 50%;
  transition: all 0.45s ease;
}
.pagination li.active {
  color: #fff;
  background-color: #eb4b91;
}
.pagination #svg_back {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.product-detail {
  background-color: #fafafa;
  padding: 50px 0;
  overflow: visible !important;
}
.product-detail .pdetail-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.product-detail iframe {
  width: 100%;
  aspect-ratio: 21/9;
  border-radius: 14px;
  height: auto;
}

.pdetail-cnt {
  width: min(100%, 856px);
  overflow: hidden;
}
.pdetail-cnt p {
  color: #343436;
}
.pdetail-cnt .pdetail-head {
  margin-bottom: 50px;
}
.pdetail-cnt .pdetail-img {
  aspect-ratio: 5/3;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.pdetail-cnt .pdetail-img img {
  height: 100%;
  width: 100%;
  border-radius: 16px;
}
.pdetail-cnt .pdetail-tt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.pdetail-cnt h3 {
  color: #343436;
  text-transform: none;
  margin-bottom: 0;
  padding-right: 10px;
}
.pdetail-cnt .pdetail-price {
  color: #eb4b91;
  font-size: 28px;
  font-weight: 600;
}
.pdetail-cnt .pdetail-list {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 0;
  padding-right: 20px;
  margin-bottom: 25px;
}
.pdetail-cnt .pdetail-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -100%;
  left: 100%;
  margin: auto 0;
  height: 1px;
  background-color: #e5e5e5;
  z-index: -1;
}
.pdetail-cnt .pdetail-list li {
  display: flex;
  align-items: center;
}
.pdetail-cnt .pdetail-list img {
  margin-right: 6px;
  width: 28px;
  aspect-ratio: 1;
}

.pdetail-extention {
  margin-bottom: 50px;
}

.uex-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
  gap: 18px 20px;
}
.uex-list li {
  padding: 16px 24px;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 500;
  color: #eb4b91;
  background-color: #fee5f6;
  border: 1px solid transparent;
  border-radius: 14px;
  position: relative;
  transition: 0.35s ease;
}
.uex-list img {
  width: 32px;
  aspect-ratio: 1;
  margin-right: 8px;
}
.pdetail-sidebar {
  position: sticky;
  top: 100px;
  right: 0;
  background-color: #fff;
  padding: 24px;
  border-radius: 14px;
  width: min(100%, 410px);
}
.pdetail-sidebar::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -40px;
  width: 68px;
  height: 74px;
  transform: scaleX(-1);
  background: url("../images/idea-black.svg") center/contain no-repeat;
}
.pdetail-sidebar form {
  display: flex;
  flex-wrap: wrap;
}

.psidebar-head {
  margin-bottom: 15px;
}
.psidebar-head .psidebar-tt {
  color: #eb4b91;
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 10px;
}
.psidebar-head .psidebar-label {
  color: #212529;
}

.fproduct {
  gap: 16px;
}
.fproduct .fgroup {
  margin-bottom: 0;
  position: relative;
}
.fproduct .fgroup-df {
  width: 100%;
  gap: 8px;
  display: flex;
  justify-content: space-between;
}
.fproduct .fgroup-df input {
  padding-top: 26px;
  padding-bottom: 10px;
}
.fproduct .fgroup-df label {
  color: rgba(33, 37, 41, 0.65);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.fproduct .fgroup.col8 {
  width: 66.6666666667%;
}
.fproduct .fgroup.col4 {
  width: 33.3333333333%;
}
.fproduct label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 100%;
  padding: 18px 12px;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: var(--bs-border-width) solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
.fproduct .finput {
  padding: 16px 12px;
  line-height: 1.5;
}
.fproduct .finput:focus {
  padding-top: 26px;
  padding-bottom: 10px;
}
.fproduct .finput:focus ~ label {
  color: rgba(33, 37, 41, 0.65);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.fproduct textarea {
  height: 132px;
}

.ubtn-job::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../images/ic-location02.svg");
}

.pdetail-similar {
  overflow: hidden;
  background-color: #fafafa;
  padding-bottom: 50px;
}
.pdetail-similar h3 {
  font-weight: 500;
  font-size: 28px;
}
.pdetail-similar .swiper {
  overflow: visible;
}
.pdetail-similar .swiper-slide {
  width: auto;
}
.pdetail-similar .uproduct-item {
  width: 400px;
}
.pdetail-similar .swiper-pagination {
  position: static;
  width: auto !important;
}
.pdetail-similar .swiper-pagination-bullet {
  background-color: var(--main-cl);
  border-radius: 999px;
  transition: all 0.35s;
  margin: 0 2px !important;
}
.pdetail-similar .swiper-pagination-bullet-active {
  width: 24px;
}
.pdetail-similar .swiper-navigation {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pdetail-similar .swiper-arrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pdetail-similar .swiper-button-prev,
.pdetail-similar .swiper-button-next {
  position: static;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: var(--main-cl);
  border-radius: 100%;
  transition: 0.35s;
  transform: none;
  margin: 0;
}
.pdetail-similar .swiper-button-prev::after,
.pdetail-similar .swiper-button-next::after {
  font-size: 16px;
}
.pdetail-similar .swiper-button-prev:hover,
.pdetail-similar .swiper-button-next:hover {
  background-color: var(--main-cl);
  color: #fff;
}

.fancybox-hidden {
  display: none;
}

#openGallery {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 8px 24px;
  background-color: #fff;
  border: none;
  border-radius: 60px;
  box-shadow: 0 1px 4px rgba(24, 26, 32, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
#openGallery svg {
  font-size: 24px;
}
#openGallery .text-sm {
  font-size: 14px;
  line-height: 20px;
}

.under .sec__article {
  padding: 48px 0;
}

.pagination {
  display: flex;
  justify-content: center;
  column-gap: 8px;
}
.pagination li {
  display: flex;
  justify-content: center;
  column-gap: 8px;
  align-items: center;
  width: 38px;
  aspect-ratio: 1;
  font-weight: 500;
  border-radius: 50%;
  transition: all 0.45s ease;
  cursor: pointer;
}
.pagination li.active {
  color: #fff;
  background-color: #eb4b91;
}
.pagination li:has(svg) {
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(24, 26, 32, 0.07);
  vertical-align: middle;
}

.article-detail {
  padding: 72px 0;
  position: relative;
  z-index: 1;
}
.article-detail-dc {
  position: absolute;
  top: 12rem;
  right: 0;
  width: 40%;
  max-width: 380px;
  animation: jumpAni 10s linear infinite;
}
.article-detail::before {
  content: "";
  position: absolute;
  bottom: 12rem;
  left: -16rem;
  aspect-ratio: 1;
  max-width: 800px;
  width: 40%;
  background: #eb4b91;
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(150px);
}
.article-detail .pdetail-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.article-detail .pdetail-head .pdetail-tt {
  position: relative;
  z-index: 1;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 24px;
}
.article-detail .pdetail-head .pdetail-tt > img {
  position: absolute;
  top: calc(0% - 4rem);
  left: calc(0% - 4rem);
}
.article-detail .pdetail-head .pdetail-tt h3 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 4px;
}
.article-detail .pdetail-head .pdetail-date {
  color: #737373;
  font-size: 14px;
  line-height: 20px;
}
.article-detail .pdetail-head .pdetail-date svg {
  position: relative;
  top: 3px;
}
.article-detail .pdetail-body img {
  width: 100%;
  border-radius: 16px;
}
.article-detail .pdetail-body h4 {
  margin-top: 32px;
  margin-bottom: 16px;
  text-align: justify;
  color: #525252;
  font-size: 28px;
  line-height: 32px;
}
.article-detail .pdetail-cnt {
  overflow: unset;
  position: relative;
  z-index: 2;
}
.article-detail .pdetail-cnt ul {
  margin-bottom: 16px;
  text-align: justify;
  color: #525252;
}
.article-detail .pdetail-cnt ul li {
  padding-left: 15px;
  position: relative;
  z-index: 1;
  line-height: 24px;
}
.article-detail .pdetail-cnt ul li::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: #525252;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
}
.article-detail .pdetail-cnt blockquote {
  margin-top: 48px;
  margin-bottom: 48px;
  margin: 48px 0;
  padding: 24px;
  background-color: #fef1f9;
  border-left: 2px solid #eb4b91;
  border-radius: 8px;
  font-size: 18px;
  line-height: 26px;
  text-align: justify;
  color: #525252;
}
.article-detail .pdetail-sidebar {
  min-width: 354px;
  box-shadow: 0 1px 4px rgba(24, 26, 32, 0.07);
}
.article-detail .pdetail-sidebar::before {
  display: none;
}
.article-detail .pdetail-form {
  display: flex;
  flex-direction: column;
  gap: 16px 24px;
}
.article-detail .pdetail-form .item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.article-detail .pdetail-form .ttl {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: #343436;
  margin-bottom: 0;
}
.article-detail .pdetail-form .img {
  position: relative;
  z-index: 1;
  width: 80px;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.article-detail .pdetail-form .img::after {
  content: "";
  z-index: 2;
  display: block;
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, hsla(0deg, 0%, 100%, 0) 0, hsla(0deg, 0%, 100%, 0.3));
  transform: skewX(-20deg);
}
.article-detail .pdetail-form .img img {
  width: 100%;
  height: 100%;
}
.article-detail .pdetail-form .address-room {
  padding-left: 25px;
  position: relative;
  z-index: 1;
}
.article-detail .pdetail-form .address-room::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: url("../images/ic-location2.svg") center no-repeat;
  background-size: 14px 14px;
  z-index: -1;
  top: 4px;
  left: 0;
}
.article-detail .pdetail-form .address-room p {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-similar {
  overflow: hidden;
  padding: 48px 0;
}
.article-similar .swiper {
  overflow: visible;
}
.article-similar .swiper-slide {
  width: auto;
  height: auto;
}
.article-similar .item {
  width: 328px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.article-similar .item .img {
  position: relative;
  z-index: 1;
}
.article-similar .item .img .thumb {
  border-radius: 16px;
  aspect-ratio: 3/2;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.article-similar .item .img .date {
  position: absolute;
  right: 16px;
  bottom: -16px;
  padding: 6px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  background-color: #fff;
  border-radius: 8px;
  z-index: 2;
  box-shadow: 0 1px 4px rgba(24, 26, 32, 0.07);
}
.article-similar .item .img img {
  height: 100%;
  transition: 0.2s linear;
}
.article-similar .item .type-news {
  font-size: 14px;
  line-height: 20px;
  color: #a3a3a3;
  margin-bottom: 0;
}
.article-similar .item .ttl {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-size: 20px;
  line-height: 28px;
  -webkit-line-clamp: 2;
  font-weight: 700;
}

.pdetail-similar .uproduct-item {
  height: 100%;
}

.article-detail .uproduct-item {
  display: flex;
  gap: 10px;
}

.pdetail-similar .type-news {
  margin-bottom: 0;
}
.pdetail-similar .img {
  position: relative;
  z-index: 1;
}
.pdetail-similar .img .date {
  position: absolute;
  right: 16px;
  bottom: -16px;
  padding: 6px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(24, 26, 32, 0.07);
}

.ucontact {
  padding: 50px 0;
}
.ucontact .container {
  width: 1120px;
}
.ucontact .ucontact-wrapper {
  display: flex;
  gap: 48px;
}
.ucontact .ucontact-info {
  width: calc((100% - 24px) / 2);
  background: url("../images/ucontact-bg.svg") center/cover no-repeat;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 48px;
  border-radius: 14px;
  position: relative;
}
.ucontact .ucontact-title {
  font-size: 24px;
  color: #343436;
  font-weight: 500;
  margin-bottom: 24px;
}
.ucontact .ucontact-desc {
  color: #525252;
  margin-bottom: 24px;
}
.ucontact .ucontact-list {
  display: flex;
  flex-wrap: wrap;
}
.ucontact .ucontact-list li {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 16px;
}
.ucontact .ucontact-list li:last-child {
  margin-bottom: 0;
}
.ucontact .ucontact-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 100%;
  background-color: #fff;
  color: var(--main-cl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-right: 10px;
}
.ucontact .ucontact-icon::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px dashed var(--main-cl);
  border-radius: 100%;
}
.ucontact .ucontact-icon svg {
  font-size: 32px;
}
.ucontact .ucontact-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ucontact .ucontact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #fff;
  padding: 8px;
}
.ucontact .ucontact-social svg {
  font-size: 24px;
  color: #eb4b91;
  transition: 0.35s;
}
.ucontact .ucontact-lb {
  color: #737373;
  line-height: 1;
  margin-bottom: 5px;
}
.ucontact .ucontact-tt {
  font-size: 24px;
  font-weight: 500;
  color: #343436;
}
.ucontact .ucontact-flow {
  margin-top: 24px;
}
.ucontact .ucf-tt {
  font-size: 24px;
  font-weight: 500;
  color: #343436;
  margin-bottom: 10px;
}
.ucontact .ucontact-form {
  width: calc((100% - 24px) / 2);
  color: #343436;
}
.ucontact .ucf-label {
  margin-bottom: 6px;
  line-height: 1;
}
.ucontact .ucf-title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 24px;
}
.fcontact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
}
.fcontact .flabel {
  text-transform: capitalize;
  margin-bottom: 8px;
}
.fcontact .fgroup {
  margin: 0;
}
.fcontact .fgroup.col6 {
  width: calc(50% - 10px);
}

/*==========================================================================*/
/*                 F O R   S P E C I F I E D   B R O W S E R                */
/*==========================================================================*/
/* EDGE  */
/* FIREFOX */
@-moz-document url-prefix() {}
/* Safari 10.1+ (which is the latest version of Safari at this time) */
@supports (-webkit-touch-callout: none) {
  /* CSS specific to iOS devices */
}

/*# sourceMappingURL=under.css.map */
