@charset "UTF-8";
* {
  margin: 0;
  outline: none;
  text-decoration: none;
  box-sizing: border-box;
  border: unset;
  background: unset;
  list-style: none;
  color: unset;
  padding: 0;
  word-break: break-all;
}

a:visited,
a:focus,
a:active {
  color: unset;
}

body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Helvetica Neue", "Noto Sans", sans-serif;
}

button {
  cursor: pointer;
}

h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
}

h2,
.h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 38.4px;
}

h3,
.h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 33.6px;
}

h4,
.h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 28.8px;
}

h5,
.h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

h6,
.h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 19.2px;
}

.btn1 {
  font-size: 14px;
  font-weight: 400;
  line-height: 16.8px;
  letter-spacing: 1.25px;
}

.btn2 {
  font-size: 13px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 1.25px;
}

.btn3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 19.2px;
  letter-spacing: 1.25px;
}

.btn4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 1.25px;
}

.bd1n {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.25px;
}

.bd1b {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.25px;
}

.bd2n {
  font-size: 18px;
  font-weight: 400;
  line-height: 32.4px;
  letter-spacing: 0.25px;
}

.bd2m {
  font-size: 18px;
  font-weight: 400;
  line-height: 32.4px;
  letter-spacing: 0.25px;
}

.bd2b {
  font-size: 18px;
  font-weight: 700;
  line-height: 32.4px;
  letter-spacing: 0.25px;
}

.bd3n {
  font-size: 12px;
  font-weight: 400;
  line-height: 14.4px;
  letter-spacing: 0.8px;
}

.bd3b {
  font-size: 12px;
  font-weight: 700;
  line-height: 14.4px;
  letter-spacing: 0.8px;
}

.bd4n {
  font-size: 14px;
  font-weight: 300;
  line-height: 16.8px;
  letter-spacing: 0.8px;
}

.bd4b {
  font-size: 14px;
  font-weight: 700;
  line-height: 16.8px;
  letter-spacing: 0.8px;
}

.bd5n {
  font-size: 24px;
  font-weight: 400;
  line-height: 43.2px;
  letter-spacing: 0.8px;
}

.bd5b {
  font-size: 24px;
  font-weight: 700;
  line-height: 43.2px;
  letter-spacing: 0.8px;
}

.bd6n {
  font-size: 36px;
  font-weight: 400;
  line-height: 64.8px;
  letter-spacing: 0.8px;
}

.bd6b {
  font-size: 36px;
  font-weight: 700;
  line-height: 64.8px;
  letter-spacing: 0.8px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
.noScrollX {
  overflow-y: hidden;
  overflow-x: scroll;
  scrollbar-width: none;
}
.noScrollX::-webkit-scrollbar {
  display: none;
}

.breadcrumb {
  white-space: nowrap; /* 不換行 */
  overflow: hidden; /* 隱藏溢出的內容 */
  text-overflow: ellipsis;
}

header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 8;
  background: #fff;
  box-shadow: 0 4px 20px 0px rgba(200, 200, 200, 0.25);
}
header > * {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header-top {
  padding: 8px 45px;
  border-bottom: 1px solid rgba(182, 182, 182, 0.28);
  -moz-column-gap: 15px;
  column-gap: 15px;
}
header .header-top .logo-search {
  display: flex;
  align-items: center;
  -moz-column-gap: 25px;
  column-gap: 25px;
  flex-grow: 1;
}
header .header-top .logo-search .logo {
  width: 80px;
  flex-shrink: 0;
}
header .header-top .logo-search .search-input-wrapper {
  background: #f9f9f9;
  border-radius: 40px;
  padding: 10px 20px;
  display: flex;
  flex-grow: 1;
  align-items: center;
  max-width: 568px;
}
header .header-top .logo-search .search-input-wrapper img {
  opacity: 0.6;
  cursor: pointer;
  transition: 0.3s linear;
}
header .header-top .logo-search .search-input-wrapper img:hover {
  opacity: 1;
}
header .header-top .logo-search .search-input-wrapper input {
  flex-grow: 1;
  color: #4b4b4b;
}
header .header-top .logo-search .search-input-wrapper input::-moz-placeholder {
  color: #a2a2a2;
}
header .header-top .logo-search .search-input-wrapper input::placeholder {
  color: #a2a2a2;
}
header .header-top .show-search-button {
  display: none;
  width: 25px;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: contain;
  object-fit: contain;
  opacity: 0.6;
  cursor: pointer;
  transition: 0.3s linear;
}
header .header-top .show-search-button:hover {
  opacity: 1;
}
header .header-top .show-menu-button {
  display: none;
  width: 30px;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: contain;
  object-fit: contain;
  cursor: pointer;
}
header .header-top ul {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
header .header-top ul li {
  color: #393939;
  cursor: pointer;
  transition: 0.3s linear;
  padding: 3px 10px;
  font-size: 13px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 1.25px;
}
header .header-top ul li:hover {
  color: #15aa93;
}
header .header-top ul li a {
  display: inline-block;
}
header .header-top ul span {
  width: 1px;
  height: 20px;
  border-left: 1px solid rgba(199, 199, 199, 0.5);
}
header .header-top ul .contact {
  position: relative;
}
header .header-top ul .contact .code-wrapper {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s linear;
  background: #fff;
  border-radius: 22px;
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 10px 15px 22px;
  color: #1e1e1e !important;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 1px 5px;
  animation: fadeIn 0.3s ease;
}
header .header-top ul .contact .code-wrapper img {
  width: 210px;
  height: 210px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
header .header-top ul .contact:hover p {
  display: flex;
}
header nav {
  padding: 3px 45px;
}
header nav .menu-wrapper {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
header nav .menu-wrapper > span {
  width: 1px;
  height: 20px;
  border-left: 1px solid #c7c7c7;
}
header nav .menu-wrapper .topic-menu-wrapper > div,
header nav .menu-wrapper .great-ticket-wrapper > div,
header nav .menu-wrapper > a {
  cursor: pointer;
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
header nav .menu-wrapper .topic-menu-wrapper > div > span,
header nav .menu-wrapper .great-ticket-wrapper > div > span,
header nav .menu-wrapper > a > span {
  color: #393939;
  transition: 0.3s linear;
}
header nav .menu-wrapper .topic-menu-wrapper > div img,
header nav .menu-wrapper .great-ticket-wrapper > div img,
header nav .menu-wrapper > a img {
  transition: 0.3s linear;
}
header nav .menu-wrapper .topic-menu-wrapper > div img:first-of-type,
header nav .menu-wrapper .great-ticket-wrapper > div img:first-of-type,
header nav .menu-wrapper > a img:first-of-type {
  width: 22px;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: contain;
  object-fit: contain;
}
header nav .menu-wrapper .topic-menu-wrapper > div img:last-of-type,
header nav .menu-wrapper .great-ticket-wrapper > div img:last-of-type,
header nav .menu-wrapper > a img:last-of-type {
  width: 16px;
}
header nav .menu-wrapper > div,
header nav .menu-wrapper a {
  position: relative;
  padding: 10px 0;
}
header nav .menu-wrapper > div .hover-wrapper,
header nav .menu-wrapper a .hover-wrapper {
  transition: 0.3s linear;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 1px 5px;
  display: none;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 30px;
  border-radius: 2px;
  width: 156px;
  background: #fff;
  animation: fadeIn 0.3s ease;
}
header nav .menu-wrapper > div .hover-wrapper ul,
header nav .menu-wrapper a .hover-wrapper ul {
  width: 100%;
}
header nav .menu-wrapper > div .hover-wrapper ul li,
header nav .menu-wrapper a .hover-wrapper ul li {
  padding: 20px 0;
  border-bottom: 1px solid rgba(199, 199, 199, 0.4);
  color: #393939;
  transition: 0.3s linear;
  font-size: 13px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 1.25px;
}
header nav .menu-wrapper > div .hover-wrapper ul li:hover,
header nav .menu-wrapper a .hover-wrapper ul li:hover {
  color: #15aa93;
}
header nav .menu-wrapper > div .hover-wrapper ul li:last-of-type,
header nav .menu-wrapper a .hover-wrapper ul li:last-of-type {
  border: none;
}
header nav .menu-wrapper > div:hover span,
header nav .menu-wrapper a:hover span {
  color: #15aa93;
}
header nav .menu-wrapper > div:hover > div img:last-of-type,
header nav .menu-wrapper a:hover > div img:last-of-type {
  transform: rotate(180deg);
}
header nav .menu-wrapper > div:hover .hover-wrapper,
header nav .menu-wrapper a:hover .hover-wrapper {
  display: block;
}
header nav .quick-search {
  display: flex;
  align-items: center;
  color: #393939;
  font-size: 13px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 1.25px;
}
header nav .quick-search ul {
  display: flex;
  align-items: center;
}
header nav .quick-search ul span {
  width: 1px;
  height: 10px;
  border-left: 1px solid rgba(199, 199, 199, 0.5);
}
header nav .quick-search ul li {
  transition: 0.3s linear;
  border-radius: 6px;
}
header nav .quick-search ul li:hover {
  color: #fff;
  background: #15aa93;
}
header nav .quick-search ul li a {
  display: inline-block;
  padding: 4px 14px;
}
@media screen and (max-width: 1199px) {
  header .header-top {
    padding: 8px 30px;
  }
  header nav {
    padding: 3px 30px;
  }
}
@media screen and (max-width: 1023px) {
  header {
    box-shadow: none;
  }
  header .header-top {
    justify-content: space-between;
    padding: 8px 25px;
  }
  header .header-top ul {
    display: none;
  }
  header .header-top .search-input-wrapper {
    display: none !important;
  }
  header .header-top .show-search-button {
    opacity: 0.6 !important;
  }
  header .header-top .show-search-button,
  header .header-top .show-menu-button {
    display: block;
  }
  header .header-top .logo-search {
    flex-grow: 0;
  }
  header nav {
    display: none;
  }
}

footer {
  width: 100%;
}
footer .top-container {
  display: flex;
}
footer .top-container .left-wrapper {
  flex-grow: 1;
  background: #15aa93;
  padding: 53px 46px 53px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .top-container .left-wrapper .logo-container .contact-wrapper {
  padding-top: 15px;
  display: none;
  color: #fff;
}
footer
  .top-container
  .left-wrapper
  .logo-container
  .contact-wrapper
  p:last-of-type {
  margin: 18px auto;
}
footer .top-container .left-wrapper .logo-container .contact-wrapper a {
  display: inline-block;
  color: #15aa93;
  padding: 10px 30px;
  background: #fff;
  border-radius: 40px;
}
footer .top-container .left-wrapper .logo-container .logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 206px;
  flex-shrink: 0;
}
footer .top-container .left-wrapper .logo-container .logo-wrapper img {
  width: 100%;
}
footer .top-container .left-wrapper .logo-container .logo-wrapper p {
  color: #fff;
  margin-top: 5px;
  text-align: center;
}
@media screen and (max-width: 1379px) {
  footer .top-container .left-wrapper .logo-container {
    display: flex;
    align-items: center;
    -moz-column-gap: 22px;
    column-gap: 22px;
  }
  footer .top-container .left-wrapper .logo-container .logo-wrapper {
    max-width: 187px;
    flex-shrink: 1;
    width: unset;
  }
  footer .top-container .left-wrapper .logo-container .contact-wrapper {
    display: block;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 374px) {
  footer .top-container .left-wrapper .logo-container {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 35px;
  }
  footer .top-container .left-wrapper .logo-container .contact-wrapper {
    padding: 0;
  }
}
footer .top-container .left-wrapper .page-container {
  flex-grow: 1;
  max-width: 620px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
footer .top-container .left-wrapper .page-container .page-wrapper {
  flex-shrink: 0;
  color: #fff;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
footer .top-container .left-wrapper .page-container .page-wrapper h6 {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 12px;
}
footer .top-container .left-wrapper .page-container .page-wrapper ul {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.25px;
}
footer .top-container .left-wrapper .page-container .page-wrapper ul.mb {
  display: none;
}
@media screen and (max-width: 1379px) {
  footer .top-container .left-wrapper .page-container .page-wrapper ul.pc {
    display: none;
  }
  footer .top-container .left-wrapper .page-container .page-wrapper ul.mb {
    display: block;
  }
  footer .top-container .left-wrapper .page-container .page-wrapper ul li {
    list-style: disc;
  }
}
footer .top-container .left-wrapper .page-container .page-wrapper ul li {
  margin-bottom: 10px;
}
footer
  .top-container
  .left-wrapper
  .page-container
  .page-wrapper
  ul
  li:last-of-type {
  margin: 0;
}
footer .top-container .left-wrapper .page-container .page-wrapper ul li a {
  transition: 0.3s linear;
  border-bottom: 1px solid transparent;
}
footer
  .top-container
  .left-wrapper
  .page-container
  .page-wrapper
  ul
  li
  a:hover {
  border-color: #fff;
}
footer .top-container .company-info {
  padding: 53px 20px 53px 33px;
  background: #4b4b4b;
  color: white;
  flex-shrink: 0;
}
footer .top-container .company-info li {
  margin-bottom: 18px;
}
footer .top-container .company-info li:last-of-type {
  margin: 0;
}
@media screen and (max-width: 1379px) {
  footer .top-container .company-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
footer .copyright {
  width: 100%;
  background: #1e1e1e;
  padding: 18px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1511px) {
  footer .top-container .left-wrapper {
    padding: 53px 50px;
  }
}
@media screen and (max-width: 1379px) {
  footer .top-container .left-wrapper {
    flex-direction: column;
    row-gap: 40px;
    padding: 40px 30px;
  }
  footer .top-container .page-container {
    padding-top: 40px;
    border-top: 1px dashed rgba(255, 255, 255, 0.4);
    max-width: unset !important;
    width: 100%;
    justify-content: center !important;
    -moz-column-gap: 55px;
    column-gap: 55px;
  }
  footer .top-container .page-container .page-wrapper:last-of-type {
    display: none;
  }
  footer .top-container .page-container .page-wrapper h6,
  footer .top-container .page-container .page-wrapper span {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  footer .top-container {
    display: block;
  }
  footer .top-container .left-wrapper {
    padding: 40px 15px !important;
  }
  footer .company-info {
    align-items: center;
    padding: 30px 15px !important;
  }
  footer .company-info li {
    width: 280px;
  }
}
@media screen and (max-width: 374px) {
  footer .top-container .page-container {
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}

#mobile-menu {
  position: fixed;
  top: 0;
  width: 237px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.89);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 11;
  transition: 0.3s linear;
  right: -240px;
  display: flex;
  flex-direction: column;
  row-gap: 150px;
  justify-content: space-between;
  max-height: 100vh;
  overflow-y: scroll;
}
#mobile-menu > div {
  font-size: 16px;
  font-weight: 350;
  line-height: 24px;
  letter-spacing: 0.25px;
  color: #393939;
}
#mobile-menu > div .top {
  padding: 33px 30px 16px;
  border-bottom: 1px dashed #c7c7c7;
}
#mobile-menu > div .top li {
  margin-bottom: 2px;
}
#mobile-menu > div .top li a {
  padding: 14px 0;
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
#mobile-menu > div .top li:last-of-type {
  margin: 0;
}
#mobile-menu > div .bottom {
  padding: 16px 30px;
}
#mobile-menu > div .bottom > a,
#mobile-menu > div .bottom > div > .title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 2px;
  padding: 14px 0;
  cursor: pointer;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
#mobile-menu > div .bottom > a span,
#mobile-menu > div .bottom > div > .title span {
  border-radius: 50px;
  width: 6px;
  height: 6px;
  background: #15aa93;
}
#mobile-menu > div .bottom > a img,
#mobile-menu > div .bottom > div > .title img {
  transition: 0.3s linear;
}
#mobile-menu > div .bottom > div {
  max-height: 52px;
  transition: 0.3s linear;
  overflow: hidden;
}
#mobile-menu > div .bottom > div.act {
  max-height: 2000px;
}
#mobile-menu > div .bottom > div.act .title img {
  transform: rotate(180deg);
}
#mobile-menu > div .bottom .content {
  font-size: 14px;
}
#mobile-menu > div .bottom .content li {
  color: #4b4b4b;
  margin-bottom: 2px;
  border-bottom: 1px dashed rgba(199, 199, 199, 0.6);
}
#mobile-menu > div .bottom .content li:last-of-type {
  border: none;
}
#mobile-menu > div .bottom .content li a {
  display: inline-block;
  padding: 10px 20px;
}
#mobile-menu > div > a {
  width: calc(100% - 36px);
  display: block;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  background: #15aa93;
  border-radius: 40px;
  padding: 12px 0;
}
#mobile-menu .copyright {
  color: #393939;
  padding: 0 22px 33px;
}
#mobile-menu.act {
  right: 0;
}
@media screen and (min-width: 1024px) {
  #mobile-menu.act {
    right: -240px !important;
  }
}

#search-pop {
  padding: 35px;
  transition: 0.3s linear;
  position: fixed;
  top: -500px;
  left: 0;
  width: 100vw;
  background: #fff;
  z-index: -1;
  border-bottom: 1px solid rgba(199, 199, 199, 0.2);
}
#search-pop .search-wrapper {
  background: #fff;
  border-radius: 40px;
  padding: 12px 18px 12px 30px;
  border: 1px solid rgba(199, 199, 199, 0.32);
  display: flex;
  flex-grow: 1;
  align-items: center;
  width: 100%;
}
#search-pop .search-wrapper img {
  width: 20px;
  opacity: 0.8;
  cursor: pointer;
}
#search-pop .search-wrapper input {
  flex-grow: 1;
  color: #4b4b4b;
}
#search-pop .search-wrapper input::-moz-placeholder {
  color: #b0b0b0;
}
#search-pop .search-wrapper input::placeholder {
  color: #b0b0b0;
}
#search-pop p {
  margin: 25px auto 15px;
  color: #393939;
}
#search-pop .tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 6px;
  column-gap: 6px;
  row-gap: 12px;
}
#search-pop .tags-wrapper a {
  padding: 4px 12px;
  border-radius: 4px;
  color: #15aa93;
  border: 1px solid rgba(21, 170, 147, 0.2509803922);
  font-size: 14px;
  font-weight: 400;
  line-height: 16.8px;
  letter-spacing: 0.8px;
  transition: 0.3s linear;
}
#search-pop .tags-wrapper a:hover {
  border-color: #15aa93;
}
#search-pop.act {
  top: 64px;
  z-index: 10;
}
@media screen and (min-width: 1024px) {
  #search-pop.act {
    z-index: -1 !important;
    display: none !important;
  }
}
@media screen and (max-width: 413px) {
  #search-pop {
    padding: 25px;
  }
}

#close-bg {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
}
#close-bg.act {
  display: block;
}
@media screen and (min-width: 1024px) {
  #close-bg {
    display: none !important;
  }
}

#login-failed {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  max-width: 96vw;
  max-height: 96vh;
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  background: white;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s linear;
  text-align: center;
  opacity: 0;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  #login-failed {
    padding: 30px 20px;
  }
  #login-failed img {
    width: 60px;
  }
}
#login-failed .h4 {
  color: #1e1e1e;
  margin: 24px auto 10px;
}
#login-failed p:last-of-type {
  color: #5e5e5e;
  margin-bottom: 35px;
}
#login-failed a,
#login-failed button {
  transition: 0.3s linear;
  background: #15aa93;
  color: white;
  padding: 12px 0;
  width: 100%;
  border-radius: 40px;
}
#login-failed a:hover,
#login-failed button:hover {
  background: #288b92;
}
#login-failed.act {
  opacity: 1;
  z-index: 100;
}

main {
  width: 100%;
  position: relative;
  overflow-x: hidden;
}
main .inner {
  width: 100%;
  max-width: 1512px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
main .inner .banner {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  height: 496px;
  padding: 58px 30px 0;
}
@media screen and (max-width: 599px) {
  main .inner .banner {
    padding: 40px 15px 0;
  }
}
main .inner .banner > * {
  position: relative;
  z-index: 2;
}
main .inner .banner h1 {
  text-align: center;
  color: #fff;
}
main .inner .banner .subtitle {
  text-align: center;
  margin: 20px auto 40px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 599px) {
  main .inner .banner .subtitle {
    margin-bottom: 28px;
  }
}
main .inner .banner .search-wrapper {
  background: #fff;
  border-radius: 40px;
  margin: 0 auto;
  max-width: 740px;
  display: flex;
  align-items: center;
  padding: 8px 10px 8px 25px;
  -moz-column-gap: 12px;
  column-gap: 12px;
}
@media screen and (max-width: 413px) {
  main .inner .banner .search-wrapper {
    padding: 7px 5px 7px 15px;
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
}
main .inner .banner .search-wrapper img {
  width: 22px;
  flex-shrink: 0;
  opacity: 0.6;
}
@media screen and (max-width: 413px) {
  main .inner .banner .search-wrapper img {
    width: 15px;
  }
}
@media screen and (max-width: 374px) {
  main .inner .banner .search-wrapper img {
    display: none;
  }
}
main .inner .banner .search-wrapper input {
  flex-grow: 1;
  color: #393939;
}
main .inner .banner .search-wrapper input::-moz-placeholder {
  color: #5e5e5e;
}
main .inner .banner .search-wrapper input::placeholder {
  color: #5e5e5e;
}
main .inner .banner .search-wrapper button {
  cursor: pointer;
  color: #fff;
  padding: 12px 31px;
  border-radius: 40px;
  background: #15aa93;
  transition: 0.3s linear;
}
main .inner .banner .search-wrapper button:hover {
  background: #288b92;
}
@media screen and (max-width: 413px) {
  main .inner .banner .search-wrapper button {
    padding: 5px 12px;
  }
}
main .inner .swiper-container {
  width: 1180px;
  margin: -160px 0 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  padding: 10px 12px 15px;
}
@media screen and (max-width: 599px) {
  main .inner .swiper-container {
    width: 1162px;
  }
}
@media screen and (max-width: 413px) {
  main .inner .swiper-container {
    width: 1100px;
  }
}
@media screen and (max-width: 374px) {
  main .inner .swiper-container {
    width: 940px;
  }
}
main .inner .swiper-container .mySwiper {
  width: 100%;
}
main .inner .swiper-container .mySwiper .swiper-slide {
  max-width: 397px;
  width: 100%;
  aspect-ratio: 384/256;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
main .inner .swiper-container .mySwiper .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0.15%,
    rgba(0, 0, 0, 0.68) 73.43%
  );
}
main .inner .swiper-container .mySwiper .swiper-slide img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  transition: 0.3s linear;
}
main .inner .swiper-container .mySwiper .swiper-slide div {
  position: absolute;
  z-index: 2;
  bottom: 15px;
  text-align: center;
  color: #fff;
  transition: 0.3s linear;
}
main .inner .swiper-container .mySwiper .swiper-slide div h5 {
  text-align: center;
}
main .inner .swiper-container .mySwiper .swiper-slide div p {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 300;
  line-height: 16.8px;
  letter-spacing: 0.8px;
}
main .inner .swiper-container .mySwiper .swiper-slide:hover {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 25px;
}
main .inner .swiper-container .mySwiper .swiper-slide:hover img {
  transform: scale(1.1);
}
main .inner .swiper-container .mySwiper .swiper-slide:hover div {
  bottom: 25px;
}
main .inner .swiper-container .swiper-button-next {
  width: 40px;
  height: 40px;
  background-position: center;
  background-size: contain;
  background-position: center;
  background-size: contain;
  background-image: url("../../images/icon/icon_arrow_left.svg");
  right: -5px;
}
main .inner .swiper-container .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-position: center;
  background-size: contain;
  background-position: center;
  background-size: contain;
  background-image: url("../../images/icon/icon_arrow_right.svg");
  left: -5px;
}
main .inner .swiper-container .swiper-button-prev::after,
main .inner .swiper-container .swiper-button-next::after {
  display: none;
}
main .inner section {
  width: 100%;
  margin: 60px auto;
  padding: 0 48px;
  text-align: center;
}
@media screen and (max-width: 1379px) {
  main .inner section {
    padding: 0 30px;
  }
}
@media screen and (max-width: 599px) {
  main .inner section {
    padding: 0 15px;
  }
}
main .inner section h2 {
  color: #1e1e1e;
  text-align: center;
  margin-bottom: 16px;
}
main .inner section > p {
  text-align: center;
  color: #868686;
}
main .inner .discount-package .package-wrapper {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 50px;
  justify-content: flex-start;
}
main .inner .discount-package .package-wrapper .package {
  width: calc((100% - 80px) / 5);
  max-width: calc((100% - 80px) / 5);
  flex-grow: 1;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
main .inner .discount-package .package-wrapper .package a {
  position: relative;
  text-align: left;
}
main .inner .discount-package .package-wrapper .package a .tag {
  position: absolute;
  top: 7px;
  left: 7px;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 1;
}
main .inner .discount-package .package-wrapper .package a .tag span {
  transition: 0.3s linear;
  padding: 2px 12px;
  color: #fff;
  border-radius: 4px;
  background: rgba(45, 45, 45, 0.5);
  -webkit-backdrop-filter: blur(11px);
  backdrop-filter: blur(11px);
}
main .inner .discount-package .package-wrapper .package a:last-of-type {
  margin-top: 15px;
}
main .inner .discount-package .package-wrapper .package a:last-of-type .name {
  color: #1e1e1e;
}
main
  .inner
  .discount-package
  .package-wrapper
  .package
  a:last-of-type
  .location {
  color: #8d8d8d;
  margin: 7px auto 15px;
}
main .inner .discount-package .package-wrapper .package a:last-of-type .price {
  margin-bottom: 3px;
  color: #393939;
  text-decoration: line-through;
}
main
  .inner
  .discount-package
  .package-wrapper
  .package
  a:last-of-type
  .discount {
  color: #1e1e1e;
}
main .inner .discount-package .package-wrapper .package .img-box {
  width: 100%;
  aspect-ratio: 268/232;
  border-radius: 12px;
  overflow: hidden;
}
main .inner .discount-package .package-wrapper .package img {
  transition: 0.3s linear;
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 0;
}
main .inner .discount-package .package-wrapper .package:hover img {
  transform: scale(1.1);
}
main .inner .discount-package .package-wrapper .package:hover .tag span {
  background: rgba(21, 170, 147, 0.7);
}
@media screen and (max-width: 1379px) {
  main .inner .discount-package .package-wrapper {
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
  main .inner .discount-package .package-wrapper .package {
    width: calc((100% - 75px) / 5);
    max-width: calc((100% - 75px) / 5);
  }
}
@media screen and (max-width: 1023px) {
  main .inner .discount-package .package-wrapper .package {
    width: calc((100% - 15px) / 2);
    max-width: calc((100% - 15px) / 2);
  }
}
@media screen and (max-width: 767px) {
  main .inner .discount-package .package-wrapper {
    row-gap: 30px;
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
  main .inner .discount-package .package-wrapper .package {
    width: calc((100% - 10px) / 2);
    max-width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 413px) {
  main .inner .discount-package .package-wrapper .package {
    width: 100%;
    max-width: unset;
  }
}
main .inner .rank-container {
  position: relative;
  padding: 40px 0 87px;
}
@media screen and (max-width: 1199px) {
  main .inner .rank-container {
    padding-left: 30px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  main .inner .rank-container {
    padding: 30px 0 50px 15px;
  }
}
main .inner .rank-container .swiper-container2 {
  width: 1155px;
  overflow: hidden;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  main .inner .rank-container .swiper-container2 {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  main .inner .rank-container .swiper-container2 {
    width: 1150px;
  }
}
@media screen and (max-width: 413px) {
  main .inner .rank-container .swiper-container2 {
    width: 1050px;
  }
}
@media screen and (max-width: 374px) {
  main .inner .rank-container .swiper-container2 {
    width: 900px;
  }
}
main .inner .rank-container .swiper-container2 .mySwiper2 {
  margin-top: 40px;
  width: 100%;
}
main
  .inner
  .rank-container
  .swiper-container2
  .mySwiper2
  .swiper-wrapper
  .rank
  h5 {
  color: #1e1e1e;
  margin-bottom: 10px;
}
main
  .inner
  .rank-container
  .swiper-container2
  .mySwiper2
  .swiper-wrapper
  .rank
  .popular-inner
  > a {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 16px;
  transition: 0.3s linear;
}
@media screen and (max-width: 599px) {
  main
    .inner
    .rank-container
    .swiper-container2
    .mySwiper2
    .swiper-wrapper
    .rank
    .popular-inner
    > a {
    padding: 10px 12px !important;
  }
}
main
  .inner
  .rank-container
  .swiper-container2
  .mySwiper2
  .swiper-wrapper
  .rank
  .popular-inner
  > a.first {
  padding: 20px;
  display: block;
}
main
  .inner
  .rank-container
  .swiper-container2
  .mySwiper2
  .swiper-wrapper
  .rank
  .popular-inner
  > a.first
  .title {
  display: flex;
  -moz-column-gap: 12px;
  column-gap: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
}
main
  .inner
  .rank-container
  .swiper-container2
  .mySwiper2
  .swiper-wrapper
  .rank
  .popular-inner
  > a.first
  .title
  p {
  text-align: left;
  color: #1e1e1e;
}
main
  .inner
  .rank-container
  .swiper-container2
  .mySwiper2
  .swiper-wrapper
  .rank
  .popular-inner
  > a.first
  .img-box {
  width: 100%;
  aspect-ratio: 348/168;
  overflow: hidden;
  border-radius: 6px;
}
main
  .inner
  .rank-container
  .swiper-container2
  .mySwiper2
  .swiper-wrapper
  .rank
  .popular-inner
  > a.first
  .img-box
  img {
  transition: 0.3s linear;
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
}
main
  .inner
  .rank-container
  .swiper-container2
  .mySwiper2
  .swiper-wrapper
  .rank
  .popular-inner
  > a.first:hover {
  box-shadow: 0px 4px 22px 0px rgba(161, 161, 161, 0.25);
}
main
  .inner
  .rank-container
  .swiper-container2
  .mySwiper2
  .swiper-wrapper
  .rank
  .popular-inner
  > a.first:hover
  .img-box
  img {
  transform: scale(1.1);
}
main
  .inner
  .rank-container
  .swiper-container2
  .mySwiper2
  .swiper-wrapper
  .rank
  .popular-inner
  > a:last-of-type {
  margin-bottom: 0;
}
main
  .inner
  .rank-container
  .swiper-container2
  .mySwiper2
  .swiper-wrapper
  .rank
  .popular-inner
  > a.title {
  -moz-column-gap: 12px;
  column-gap: 12px;
}
main
  .inner
  .rank-container
  .swiper-container2
  .mySwiper2
  .swiper-wrapper
  .rank
  .popular-inner
  > a.title
  p {
  text-align: left;
  color: #1e1e1e;
}
main
  .inner
  .rank-container
  .swiper-container2
  .mySwiper2
  .swiper-wrapper
  .rank
  .popular-inner
  > a.title
  span {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 24px */
  width: 20px;
  flex-shrink: 0;
}
main
  .inner
  .rank-container
  .swiper-container2
  .mySwiper2
  .swiper-wrapper
  .rank
  .popular-inner
  > a.title:hover {
  padding-left: 12px;
  box-shadow: 0px 4px 22px 0px rgba(161, 161, 161, 0.25);
}
main .inner .rank-container .swiper-container2 .mySwiper2 .swiper-pagination {
  display: none;
  bottom: -10px;
  position: relative;
  width: 100vw;
  max-width: 100vw;
  left: 0;
}
main
  .inner
  .rank-container
  .swiper-container2
  .mySwiper2
  .swiper-pagination
  .swiper-pagination-bullet {
  background: #15aa93;
  opacity: 1;
}
main
  .inner
  .rank-container
  .swiper-container2
  .mySwiper2
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background: #393939;
}
@media screen and (max-width: 1199px) {
  main .inner .rank-container .swiper-container2 .mySwiper2 .swiper-pagination {
    display: block;
  }
}
main .inner .rank-container .bg {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 100vw;
  background: #f9f9f9;
}
main .inner .rank-container > * {
  position: relative;
  z-index: 1;
}
main .inner .selected-wrapper > p {
  margin-bottom: 30px;
}
main .inner .selected-wrapper .hotel {
  margin-bottom: 12px;
  width: 100%;
  display: flex;
  -moz-column-gap: 54px;
  column-gap: 54px;
  border-radius: 22px;
  background: #f9f9f9;
  padding: 54px 46px;
  transition: 0.3s linear;
  position: relative;
}
main .inner .selected-wrapper .hotel > div {
  position: relative;
  z-index: 2;
}
main .inner .selected-wrapper .hotel .info {
  max-width: 417px;
  width: 36.4166059723%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1511px) {
  main .inner .selected-wrapper .hotel .info {
    flex-grow: 1;
    max-width: unset;
  }
}
@media screen and (max-width: 1379px) {
  main .inner .selected-wrapper .hotel .info {
    flex-shrink: 0;
  }
}
main .inner .selected-wrapper .hotel .info > div {
  position: relative;
  z-index: 2;
}
main .inner .selected-wrapper .hotel .info > div .name {
  color: #1e1e1e;
}
main .inner .selected-wrapper .hotel .info > div .tag-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px auto 0;
}
main .inner .selected-wrapper .hotel .info > div .tag-wrapper a {
  border-radius: 40px;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(11px);
  backdrop-filter: blur(11px);
  padding: 3px 12px;
  color: #fff;
  transition: 0.3s linear;
  font-size: 14px;
  font-weight: 300;
  line-height: 16.8px;
  letter-spacing: 0.8px;
}
main .inner .selected-wrapper .hotel .info > div .tag-wrapper a:hover {
  background: #1e1e1e;
}
main .inner .selected-wrapper .hotel .info .more {
  cursor: pointer;
  position: relative;
  z-index: 2;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid;
  padding: 10px 30px;
  border-radius: 40px;
  text-align: center;
  color: #1e1e1e;
  border: 1px solid #c7c7c7;
  transition: 0.3s linear;
}
main .inner .selected-wrapper .hotel .item-container {
  width: 856px;
  flex-shrink: 0;
  border: none !important;
  scrollbar-width: none;
  outline: none !important;
  box-shadow: none !important;
  overflow-y: hidden;
  overflow-x: scroll;
}
main .inner .selected-wrapper .hotel .item-container::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 1511px) {
  main .inner .selected-wrapper .hotel .item-container {
    width: 800px;
  }
}
@media screen and (max-width: 1379px) {
  main .inner .selected-wrapper .hotel .item-container {
    flex-shrink: 1;
  }
}
main .inner .selected-wrapper .hotel .item-container .item-wrapper {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 25px;
  column-gap: 25px;
  border-color: none !important;
  box-shadow: none !important;
  outline: none !important;
  scrollbar-width: none;
  width: -moz-max-content;
  width: max-content;
  padding-right: 30px;
}
main
  .inner
  .selected-wrapper
  .hotel
  .item-container
  .item-wrapper::-webkit-scrollbar {
  display: none;
}

main .inner .selected-wrapper .hotel .item-container .item-wrapper a {
  display: block;
  width: 268px;
  text-align: left;
}
main .inner .selected-wrapper .hotel .item-container .item-wrapper a .img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 268/232;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}
main
  .inner
  .selected-wrapper
  .hotel
  .item-container
  .item-wrapper
  a
  .img-box
  img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  transition: 0.3s linear;
  position: relative;
  z-index: 0;
}
main
  .inner
  .selected-wrapper
  .hotel
  .item-container
  .item-wrapper
  a
  .img-box
  .tags {
  z-index: 1;
  position: absolute;
  top: 7px;
  left: 7px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
}
main
  .inner
  .selected-wrapper
  .hotel
  .item-container
  .item-wrapper
  a
  .img-box
  .tags
  span {
  padding: 2px 12px;
  border-radius: 4px;
  background: rgba(45, 45, 45, 0.5);
  -webkit-backdrop-filter: blur(11px);
  backdrop-filter: blur(11px);
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%; /* 16.8px */
  letter-spacing: 0.8px;
  transition: 0.3s linear;
}
main .inner .selected-wrapper .hotel .item-container .item-wrapper a p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 0.25px;
  color: #1e1e1e;
}
main .inner .selected-wrapper .hotel .item-container .item-wrapper a h6 {
  color: #1e1e1e;
  margin-top: 15px;
}
main
  .inner
  .selected-wrapper
  .hotel
  .item-container
  .item-wrapper
  a:hover
  .img-box
  img {
  transform: scale(1.1);
}
main
  .inner
  .selected-wrapper
  .hotel
  .item-container
  .item-wrapper
  a:hover
  .img-box
  .tags
  span {
  background: #15aa93;
}
@media screen and (max-width: 1379px) {
  main .inner .selected-wrapper .hotel {
    padding: 35px 0 35px 35px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}
@media screen and (max-width: 1023px) {
  main .inner .selected-wrapper .hotel {
    flex-direction: column;
    padding-left: 0;
  }
  main .inner .selected-wrapper .hotel .info {
    width: 100%;
    max-width: unset;
    margin-bottom: 25px;
    padding: 0 30px;
  }
  main .inner .selected-wrapper .hotel .more {
    display: none;
  }
  main .inner .selected-wrapper .hotel .item-container {
    width: 100%;
  }
  main .inner .selected-wrapper .hotel .item-container .item-wrapper {
    padding: 0 30px;
  }
}
@media screen and (max-width: 599px) {
  main .inner .selected-wrapper .hotel {
    padding: 30px 0;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
  main .inner .selected-wrapper .hotel .info {
    padding: 0 15px;
  }
  main .inner .selected-wrapper .hotel .item-container .item-wrapper {
    padding: 0 15px;
  }
  main .inner .selected-wrapper .hotel .bg {
    display: block;
  }
}
main .inner .selected-wrapper .hotel:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
main .inner .selected-wrapper .hotel:hover .more {
  background: #393939;
  color: #fff;
}
main .bg,
main .filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 496px;
}
main .bg {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  z-index: 0;
}
main .filter {
  z-index: 1;
  background: rgba(0, 0, 0, 0.66);
}
