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: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  font-family: "Noto Sans TC", sans-serif;
}

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;
}

img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
      user-select: none;
  pointer-events: none;
}

div {
  box-sizing: border-box;
}

.text--white {
  color: #ffffff !important;
}

.text--red {
  color: #77182d !important;
}

.text--gold {
  background-image: linear-gradient(90deg, #eccdb8 0%, #cb6d29 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  letter-spacing: 2px;
}

.bg--color--skintone {
  background-color: #e0d2c9 !important;
}

.bg--color--red {
  background-color: #77182d !important;
}

.button {
  cursor: pointer;
  display: block;
  outline: none;
}

.button--register {
  position: fixed;
  width: 6.75rem;
  right: -1.75rem;
  top: calc(100vh - 19.4375rem - 18.75rem);
  z-index: 1000;
}
@media screen and (min-width: 790px) {
  .button--register {
    top: calc(100vh - 19.4375rem - 12.5rem);
  }
}

.font--serif {
  font-family: "Noto Serif TC", serif;
}

.h1, .h2, .h3, .h4, .h5, .h6, .section--title {
  font-family: "Noto Serif TC", serif;
}

p, a, li, span {
  font-family: "Noto Sans TC", sans-serif;
}

.align-right {
  text-align: right;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 200;
    stroke-dashoffset: -2.1875rem;
  }
  100% {
    stroke-dashoffset: -7.8125rem;
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 200;
    stroke-dashoffset: -2.1875rem;
  }
  100% {
    stroke-dashoffset: -7.8125rem;
  }
}
@-webkit-keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
html, body {
  font-size: 2.05vw;
}
@media screen and (min-width: 641px) {
  html, body {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  html, body {
    font-size: 11px;
  }
}
@media screen and (min-width: 1441px) {
  html, body {
    font-size: 14px;
  }
}
@media screen and (min-width: 1921px) {
  html, body {
    font-size: 16px;
  }
}

body {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 8rem;
}
@media screen and (min-width: 790px) {
  body {
    padding-bottom: 7.3125rem;
  }
}
body.style-hidden {
  overflow: hidden;
}
body.style-no-scroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

#app {
  position: relative;
  padding-top: 0;
  width: 100%;
  overflow: hidden;
}

.d-box {
  display: none;
}
@media screen and (max-width: 789px) {
  .d-box {
    display: block;
  }
}

.m-box {
  display: block;
}
@media screen and (max-width: 789px) {
  .m-box {
    display: none;
  }
}

.section--title {
  font-size: 2.25rem;
  line-height: 3.75rem;
  font-weight: 700;
}

.loader-component {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2000;
}

svg.loader-component-svg {
  width: 3.75em;
  transform-origin: center;
  -webkit-animation: rotate 2s linear infinite;
          animation: rotate 2s linear infinite;
}
svg.loader-component-svg circle {
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  -webkit-animation: dash 1.5s ease-in-out infinite;
          animation: dash 1.5s ease-in-out infinite;
}
svg.loader-component-svg.style-gray-circle circle {
  stroke: #ccc;
}

a.anchor--link {
  pointer-events: none;
  position: absolute;
  display: block;
  width: 100%;
  height: 8.4375rem;
  left: 0;
  top: -8.4375rem;
}
@media screen and (min-width: 790px) {
  a.anchor--link {
    height: 6.25rem;
    top: -6.25rem;
  }
}

main {
  position: relative;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.8);
  width: 49.375rem;
  margin: 0 auto;
  padding-bottom: 12.6875rem;
}

.container {
  position: relative;
  padding-left: 3.25rem;
  padding-right: 3.25rem;
  overflow: hidden;
}

.kv--root {
  position: relative;
  width: 100%;
  height: 107.25rem;
  font-size: 1rem;
  background-image: url("../images/kv.jpg");
  background-position: left top;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.kv--root .kv--text {
  position: relative;
  font-size: 1.875rem;
  font-weight: 500;
  color: #77182d;
  line-height: 3.75rem;
  text-align: center;
  padding-top: 71.125rem;
}
.kv--root .kv--button {
  position: relative;
  width: 37.0625rem;
  height: 6.32125rem;
  margin-top: 3.5rem;
  margin-left: auto;
  margin-right: auto;
}

.description--root {
  position: relative;
  margin-top: -14.6875rem;
}
.description--root .description--title {
  letter-spacing: 0.125rem;
}
.description--root .description--text {
  font-size: 1.5rem;
  line-height: 3.75rem;
  letter-spacing: 0.125rem;
  color: white;
  text-shadow: 0.125rem 0.125rem 0.3125rem rgba(0, 0, 0, 0.5);
  margin-top: 1.875rem;
  width: 110%;
}
.description--root .description--carousell {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.875rem;
  padding-bottom: 0.3125rem;
  background-image: linear-gradient(90deg, #e6bea1 0%, #d9ac8c 31%, #885d44 82%, #e6bea1 100%);
  overflow: hidden;
}
.description--root .description--carousell--image {
  height: 28.85875rem;
}
.description--root .description--carousell--image > img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.description--root .description--carousell--text {
  font-size: 1.5rem;
  line-height: 3.75rem;
  letter-spacing: 0.125rem;
  color: white;
  text-shadow: 0.125rem 0.125rem 0.3125rem rgba(0, 0, 0, 0.5);
}
.description--root .description--carousell--prev {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 0.625rem;
  transform: translateY(-50%);
  width: 1.9375rem;
  z-index: 2;
  opacity: 0.7;
}
.description--root .description--carousell--next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 0.625rem;
  transform: translateY(-50%);
  width: 1.9375rem;
  z-index: 2;
  opacity: 0.7;
}
.description--root .description--pagination {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.description--root .description--pagination .pagination--bullet {
  cursor: pointer;
  display: block;
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 100%;
  border: 0.125rem solid #d9ac8c;
  margin-left: 0.9375rem;
}
.description--root .description--pagination .pagination--bullet.swiper-pagination-bullet-active {
  background-color: #d9ac8c;
}

@-webkit-keyframes mapJumpAnim {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes mapJumpAnim {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.map--root {
  position: relative;
  margin-top: -8.4375rem;
  padding-top: 15rem;
}
.map--root .map--skyline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.map--root .map--text {
  font-size: 1.5rem;
  line-height: 4.21875rem;
  color: white;
}
.map--root .map--content {
  position: relative;
  padding-left: 3.5rem;
  z-index: 2;
}
.map--root .map--content .map--body {
  position: relative;
  width: 35.125rem;
  height: 48.1875rem;
  margin-left: 10.75rem;
  margin-top: 1.5rem;
}
.map--root .map--content .map--body2 {
  position: absolute;
  width: 35.125rem;
  top: 0;
  left: 14.25rem;
}
.map--root .map--content .map--city1 {
  cursor: pointer;
  position: absolute;
  top: -3.6875rem;
  left: 43.3125rem;
  width: 4.75rem;
  -webkit-animation: mapJumpAnim 1.5s ease-in-out infinite;
          animation: mapJumpAnim 1.5s ease-in-out infinite;
}
.map--root .map--content .map--city2 {
  cursor: pointer;
  position: absolute;
  top: 1.1875rem;
  left: 30.75rem;
  width: 6.25rem;
  -webkit-animation: mapJumpAnim 1.5s ease-in-out infinite;
          animation: mapJumpAnim 1.5s ease-in-out infinite;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.map--root .map--content .map--city3 {
  cursor: pointer;
  position: absolute;
  top: 14rem;
  left: 23.625rem;
  width: 6.3125rem;
  -webkit-animation: mapJumpAnim 1.5s ease-in-out infinite;
          animation: mapJumpAnim 1.5s ease-in-out infinite;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.map--root .map--content .map--city4 {
  cursor: pointer;
  position: absolute;
  top: 19.5625rem;
  left: 20.1875rem;
  width: 6.25rem;
  -webkit-animation: mapJumpAnim 1.5s ease-in-out infinite;
          animation: mapJumpAnim 1.5s ease-in-out infinite;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.map--root .map--content .map--bub1 {
  cursor: pointer;
  position: absolute;
  top: -8.5rem;
  left: 26.625rem;
  width: 16.125rem;
}
.map--root .map--content .map--bub2 {
  cursor: pointer;
  position: absolute;
  top: 2.125rem;
  left: 14.25rem;
  width: 16.125rem;
}
.map--root .map--content .map--bub3 {
  cursor: pointer;
  position: absolute;
  top: 14.5rem;
  left: 28.125rem;
  width: 16.125rem;
}
.map--root .map--content .map--bub4 {
  cursor: pointer;
  position: absolute;
  top: 19.625rem;
  left: 3.25rem;
  width: 16.125rem;
}

.product--root {
  position: relative;
  margin-top: -17.4rem;
}
.product--root .product--wrapper {
  position: relative;
  margin-top: -21.875rem;
}
.product--root .product--title {
  letter-spacing: 0.125rem;
}
.product--root .product--btn {
  position: relative;
  width: 19.9375rem;
  height: 5.0625rem;
  margin-top: 1.875rem;
  margin-bottom: 2.1875rem;
}
.product--root .product--text {
  font-size: 1.5rem;
  line-height: 3.75rem;
  color: #393939;
}
.product--root .product--text2 {
  margin-top: 5rem;
}
.product--root .product--image {
  position: relative;
  margin-top: -38.75rem;
  width: 100%;
  height: 79.8125rem;
  pointer-events: none;
}
.product--root .product--bg--head {
  position: relative;
  height: 36.0625rem;
}
.product--root .product--bg--head img {
  margin-top: -1px;
}
.product--root .product--bg--bottom {
  position: relative;
  height: 36.25rem;
}
.product--root .product--bg--bottom img {
  margin-top: -1px;
}
.product--root .product--discription {
  position: relative;
  margin-top: 2.5rem;
}
.product--root .product--discription .product--discription--title {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.375rem;
}
.product--root .product--discription .product--discription--title p {
  font-size: 2.25rem;
  font-weight: 700;
  font-family: "Noto Serif TC", serif;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.product--root .product--discription .product--discription--title .product--arrow--left {
  width: 2.1875rem;
}
.product--root .product--discription .product--discription--title .product--arrow--right {
  width: 2.1875rem;
}
.product--root .product--discription .product--discription--subtitle {
  font-size: 1.875rem;
  line-height: 3.75rem;
  text-align: center;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.product--root .product--discription .product--discription--line {
  position: relative;
  width: 29.0625rem;
  height: 0.1875rem;
  background-color: #77182d;
  margin: 0 auto;
}
.product--root .product--discription .product--discription--text {
  display: block;
  width: 30.625rem;
  color: #393939;
  text-align: center;
  margin-top: 1.875rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}
.product--root .product--discription .product--discription--text p {
  font-size: 1.5rem;
  line-height: 3.75rem;
}

.food--root {
  position: relative;
  margin-top: -35rem;
}
.food--root .food-container {
  padding-left: 5.0625rem;
  padding-right: 5.0625rem;
}
.food--root .food--image {
  height: 26.520625rem;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0.3125rem;
  background-image: linear-gradient(90deg, #e6bea1 0%, #d9ac8c 31%, #885d44 82%, #e6bea1 100%);
}
.food--root .food--title {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
}
.food--root .food--title p {
  display: inline;
  font-size: 2.25rem;
  font-weight: 700;
  font-family: "Noto Serif TC", serif;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  background-image: linear-gradient(180deg, #ebccb6 50%, #daad8e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  letter-spacing: 0.125rem;
}
.food--root .food--title .food--arrow--left {
  width: 2.1875rem;
}
.food--root .food--title .food--arrow--right {
  width: 2.1875rem;
}
.food--root .food--text {
  position: relative;
  margin-top: 2.1875rem;
}
.food--root .food--text p {
  font-family: "Noto Serif TC", serif;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 3rem;
  text-align: center;
  letter-spacing: 0.125rem;
}
.food--root .food--text--before {
  position: absolute;
  left: 0;
  top: 0;
}
.food--root .food--text--before {
  position: absolute;
  right: 0;
  bottom: 0;
}
.food--root .food--carousell {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.875rem;
  overflow: hidden;
}
.food--root .food--carousell .food--carousell--image {
  padding-bottom: 0.3125rem;
  width: 39.25rem;
  height: 39.625rem;
  background-image: linear-gradient(90deg, #e6bea1 0%, #d9ac8c 31%, #885d44 82%, #e6bea1 100%);
}
.food--root .food--carousell .food--carousell--image > img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.food--root .food--carousell .food--carousell--prev {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 0.625rem;
  transform: translateY(-50%);
  width: 1.9375rem;
  z-index: 2;
  opacity: 0.7;
}
.food--root .food--carousell .food--carousell--next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 0.625rem;
  transform: translateY(-50%);
  width: 1.9375rem;
  z-index: 2;
  opacity: 0.7;
}
.food--root .food--carousell--text {
  position: relative;
  height: 6.25rem;
  z-index: 2;
}
.food--root .food--carousell--text .food--carousell--text-p {
  font-family: "Noto Serif TC", serif;
  text-align: right;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 3.125rem;
  background-image: linear-gradient(180deg, #ebccb6 50%, #daad8e 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  letter-spacing: 0.125rem;
}
.food--root .food--pagination {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding-top: 1.875rem;
  padding-bottom: 1.25rem;
  z-index: 2;
}
.food--root .food--pagination .food--pagination--bullet {
  cursor: pointer;
  display: block;
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 100%;
  border: 0.125rem solid #d9ac8c;
  margin-left: 0.9375rem;
}
.food--root .food--pagination .food--pagination--bullet.swiper-pagination-bullet-active {
  background-color: #d9ac8c;
}
.food--root .button--siginup {
  position: relative;
  width: 37.75rem;
  height: 6.4375rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 6.25rem;
  z-index: 2;
  opacity: 0;
}

.event--root {
  position: relative;
  margin-top: -10.625rem;
}
.event--root .event--title {
  position: relative;
  margin-top: -15.625rem;
  margin-left: auto;
  margin-right: auto;
  width: 37.75rem;
  text-align: center;
}
.event--root .event--title p {
  display: inline-block;
  vertical-align: middle;
  font-size: 2.25rem;
  font-weight: 700;
  font-family: "Noto Serif TC", serif;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  letter-spacing: 0.125rem;
}
.event--root .event--title .event--arrow--left {
  display: inline-block;
  vertical-align: middle;
  width: 2.1875rem;
}
.event--root .event--title .event--arrow--right {
  display: inline-block;
  vertical-align: middle;
  width: 2.1875rem;
}
.event--root .event--text {
  position: relative;
  text-align: center;
  z-index: 2;
}
.event--root .event--text p.p1 {
  margin-top: 1.9375rem;
  font-size: 1.8125rem;
  line-height: 2.8125rem;
  font-weight: 700;
}
.event--root .event--text p.p2 {
  margin-top: 1.9375rem;
  font-size: 1.625rem;
  line-height: 2.5rem;
}
.event--root .event--text .event-price {
  position: relative;
  display: inline-block;
  font-size: 3.125rem;
  font-weight: 700;
  transform: translate(0.1875rem, 1px);
}
.event--root .event--bg--head {
  position: relative;
  height: 36.0625rem;
}
.event--root .event--bg--head img {
  margin-top: -1px;
}
.event--root .event--bg--bottom {
  position: relative;
  margin-top: -5.25rem;
  height: 36.25rem;
}
.event--root .event--bg--bottom img {
  margin-top: -1px;
}

.form--root {
  position: relative;
  margin-top: -25.125rem;
}
.form--root .form--container {
  width: 37.75rem;
  margin-left: auto;
  margin-right: auto;
}
.form--root .form--title {
  width: 37.75rem;
  height: 6.375rem;
  margin-bottom: 1.875rem;
}
.form--root .form-group {
  padding: 0.9375rem 0;
}
.form--root .form-gender-group {
  display: flex;
  align-items: center;
}
.form--root .form-gender-group .radio-component {
  margin-left: 2.5rem;
}
.form--root .form-label {
  font-weight: 600;
  color: #d9ab87;
  font-size: 1.875rem;
  line-height: 1.5;
}
.form--root .form-label ~ .row {
  margin-top: 0.9375rem;
}
.form--root .form-value {
  font-size: 1.875rem;
  line-height: 1.5;
  color: #fff;
}
.form--root .form-placeholder {
  color: rgba(255, 255, 255, 0.3) !important;
}
.form--root .form-tab-container {
  position: relative;
  display: flex;
  align-items: center;
}
.form--root .form-tab-message {
  font-size: 1.875rem;
  line-height: 1.5;
  color: #fff;
}
.form--root .form-tab {
  cursor: pointer;
  position: relative;
  width: 25%;
  height: 3.75rem;
  color: rgba(223, 183, 129, 0.7);
  font-weight: 500;
  font-size: 1.875rem;
  line-height: 3.75rem;
  text-align: center;
  border-left: 1px solid rgba(215, 171, 108, 0.7);
  border-top: 1px solid rgba(215, 171, 108, 0.7);
  border-right: 1px solid rgba(215, 171, 108, 0.7);
  border-bottom: 1px solid rgba(215, 171, 108, 0.7);
  background-color: #77182d;
  box-sizing: border-box;
}
.form--root .form-tab:hover, .form--root .form-tab.is-selected {
  color: white;
  background-color: rgba(215, 171, 108, 0.7);
  border-left: 1px solid #d7ab6c;
  border-top: 1px solid #d7ab6c;
  border-right: 1px solid #d7ab6c;
  border-bottom: 0;
}
.form--root .form-tab-options {
  position: relative;
  padding: 0.9375rem;
  border-left: 1px solid #d7ab6c;
  border-bottom: 1px solid #d7ab6c;
  border-right: 1px solid #d7ab6c;
  background-color: #77182d;
}
.form--root .form-tab-options.show {
  display: block;
}
.form--root .input-component {
  position: relative;
  padding-bottom: 0.3125rem;
  border-bottom: 1px solid #d9ab8d;
}
.form--root .input-component input {
  border: 0;
  width: 100%;
  min-height: 2.5rem;
  line-height: 2.5rem;
  background-color: transparent;
  text-align: left;
  color: white;
}
.form--root .input-component input::-moz-placeholder {
  text-align: left;
  color: rgba(255, 255, 255, 0.3);
}
.form--root .input-component input:-ms-input-placeholder {
  text-align: left;
  color: rgba(255, 255, 255, 0.3);
}
.form--root .input-component input::placeholder {
  text-align: left;
  color: rgba(255, 255, 255, 0.3);
}
.form--root .select-component {
  position: relative;
  padding-bottom: 0.3125rem;
  border-bottom: 1px solid #d9ab8d;
}
.form--root .select-component .form-value {
  height: 2.625rem;
  line-height: 2.625rem;
}
.form--root .select-component select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.form--root .select-component .icon-dropdown {
  position: absolute;
  width: 1.25rem;
  top: 0.625rem;
  right: -1.25rem;
}
.form--root .radio-component {
  position: relative;
  cursor: pointer;
  padding: 0.625rem 0;
}
.form--root .radio-component.disable {
  pointer-events: none;
}
.form--root .radio-component label {
  display: flex;
  justify-content: center;
  align-items: center;
}
.form--root .radio-component .radio-box {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.125rem solid #ffffff;
  background-color: #ffffff;
  border-radius: 0.625rem;
  margin-right: 0.625rem;
  box-sizing: border-box;
}
.form--root .radio-component .radio-value {
  flex: 1;
  font-weight: 500;
  font-size: 1.875rem;
  line-height: 1.5;
  color: #d9ab87;
}
.form--root .radio-component input {
  display: none;
}
.form--root .radio-component input:checked ~ .radio-box::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.05rem;
  left: 0.05rem;
  width: 0.875rem;
  height: 0.875rem;
  background-color: #77182d;
  border-radius: 100%;
}
.form--root .checkbox-conponent {
  position: relative;
  margin-top: 1.875rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.form--root .checkbox-conponent label {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.form--root .checkbox-conponent .checkbox-box {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.1875rem;
  border: 1px solid #d7ab6c;
  background-color: #ffffff;
  margin-top: 0.5rem;
}
.form--root .checkbox-conponent input {
  display: none;
}
.form--root .checkbox-conponent input:checked ~ .checkbox-box::before {
  content: "";
  display: block;
  position: absolute;
  top: 15%;
  left: 15%;
  width: 70%;
  height: 70%;
  background-color: #d7ab6c;
}
.form--root .checkbox-conponent .checkbox-text {
  flex: 1;
  display: inline-block;
  vertical-align: top;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.09375rem;
  color: #d9ab87;
  margin-left: 0.625rem;
  text-align: center;
}
.form--root .price {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(215, 171, 108, 0.1);
  border-top: 1px solid #d7ab6c;
  border-bottom: 1px solid #d7ab6c;
  padding: 1.25rem 0.625rem;
  margin-top: 2.875rem;
}
.form--root .price .price-label {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.09375rem;
  color: #d7ab6c;
  white-space: nowrap;
  margin-right: 0.625rem;
}
.form--root .price .price-value {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #d7ab6c;
}
.form--root .price .price-unit {
  vertical-align: center;
  font-size: 1.125rem;
  letter-spacing: 0.070625rem;
  color: rgba(215, 171, 108, 0.41);
}
.form--root .button-confirm {
  cursor: pointer;
  width: 36.875rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.8125rem;
}
.form--root .plusone-container {
  position: relative;
  margin-top: 2.8125rem;
}
.form--root .button-plusone {
  cursor: pointer;
  display: inline-block;
  vertical-align: bottom;
  width: 11.25rem;
  height: 3.75rem;
  margin-right: 1.125rem;
  border: solid 1px #d9ab87;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 3.75rem;
  letter-spacing: 0.09375rem;
  text-align: center;
  color: #d9ab87;
}
.form--root .plusone-text {
  display: inline-block;
  vertical-align: bottom;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.09375rem;
  color: #d9ab87;
}
.form--root .plusone-group .icon-dropdown {
  right: -2.1875rem;
}
@media screen and (min-width: 641px) {
  .form--root .plusone-group .icon-dropdown {
    right: -1.25rem;
  }
}
.form--root .plusone-group-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.3125rem;
  border-bottom: 1px solid #d7ab6c;
  margin-top: 1.875rem;
  margin-bottom: 0.625rem;
}
.form--root .plusone-group-header .plusone-group-title {
  font-size: 1.5rem;
  line-height: 1.75;
  letter-spacing: 0.09375rem;
  color: #d7ab6c;
}
.form--root .plusone-group-header .icon-close {
  cursor: pointer;
  width: 1.625rem;
}

.rule--root {
  position: relative;
  margin-top: 6.25rem;
}
.rule--root .rule--container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 37.75rem;
}
.rule--root .rule--title {
  cursor: pointer;
  position: relative;
  margin-top: 2.8125rem;
}
.rule--root .rule--title .rule--title--p {
  font-family: "Noto Serif TC", serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  display: inline;
  background-image: linear-gradient(90deg, #ebccb6 50%, #daad8e 60%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  letter-spacing: 0.125rem;
}
.rule--root .rule--title .rule--title--underline {
  position: absolute;
  bottom: -1.25rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #d9ab87;
}
.rule--root .rule--title .rule--title--toogle {
  cursor: pointer;
  position: absolute;
  width: 2.25rem;
  height: 0.125rem;
  background-color: #d9ab87;
  top: 50%;
  right: 0;
  transform: translate(-50, 0);
}
.rule--root .rule--title .rule--title--toogle::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d9ab87;
  transform-origin: 50% 50%;
  transform: rotateZ(90deg);
}
.rule--root .rule--title.is--open .rule--title--toogle::before {
  transform: rotateZ(0deg);
}
.rule--root .rule--item {
  margin-top: 2.5rem;
}
.rule--root .rule--item ul {
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: num;
}
.rule--root .rule--item li {
  position: relative;
  padding-left: 2.5rem;
}
.rule--root .rule--item li::before {
  counter-increment: num;
  content: counter(num) ". ";
  position: absolute;
  left: 0;
}
.rule--root .rule--item--text {
  font-size: 1.875rem;
  line-height: 2.8125rem;
  color: white;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
}
.rule--root .rule--item--tips {
  font-size: 1.875rem;
  line-height: 2.8125rem;
  color: white;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
}
.rule--root .rule--item--tips a, .rule--root .rule--item--tips a:hover, .rule--root .rule--item--tips a:active {
  font-size: 1.875rem;
  line-height: 1.875rem;
  color: white;
}
.rule--root .rule-question {
  display: flex;
  align-items: flex-start;
}
.rule--root .rule-question span {
  font-size: 1.875rem;
  line-height: 2.8125rem;
  color: #dfb781;
  letter-spacing: 0.125rem;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
}
.rule--root .rule-question .rule--question--value {
  flex-grow: 1;
}
.rule--root .rule--answer {
  display: flex;
  align-items: flex-start;
}
.rule--root .rule--answer span {
  color: white;
  font-size: 1.875rem;
  line-height: 2.8125rem;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
}
.rule--root .rule--answer .rule--answer--value {
  flex-grow: 1;
}

.wine--root {
  position: relative;
  margin-top: 5.25rem;
}
.wine--root .wine--container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 42.5rem;
}
.wine--root .wine--title {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 21.3125rem;
  margin-left: auto;
  margin-right: auto;
}
.wine--root .wine--title a {
  display: block;
}
.wine--root .wine--title .wine--title-text {
  display: inline;
  font-size: 2.25rem;
  font-weight: 700;
  font-family: "Noto Serif TC", serif;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  background-image: linear-gradient(180deg, #ebccb6 50%, #daad8e 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  letter-spacing: 0.125rem;
}
.wine--root .wine--title .event--arrow--left {
  width: 2.1875rem;
}
.wine--root .wine--title .event--arrow--right {
  width: 2.1875rem;
}
.wine--root .wine--item {
  margin-top: 3.3125rem;
}
.wine--root .button-more-whiskey {
  display: block;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5.625rem;
  width: 36.875rem;
}

.header-root {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header-root .header-container {
  position: relative;
  pointer-events: auto;
  background-color: #02272b;
  height: 7.9375rem;
  padding-top: 1.5625rem;
}
@media screen and (min-width: 790px) {
  .header-root .header-container {
    height: 5.625rem;
    padding-top: 1.5625rem;
  }
}
.header-root .logo {
  position: relative;
  display: block;
  width: 16rem;
  margin: 0 auto;
  transition: all 0.8s ease-in-out;
}
@media screen and (min-width: 790px) {
  .header-root .logo {
    width: 10.375rem;
  }
}
.header-root .header-menu {
  cursor: pointer;
  position: absolute;
  width: 4.375rem;
  top: 1.5625rem;
  left: 2rem;
}
@media screen and (min-width: 790px) {
  .header-root .header-menu {
    top: 0.9375rem;
    left: 0.9375rem;
  }
}

.footer-root {
  background: #000;
  width: 100%;
  height: 7.33333rem;
  color: #5a7980;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1300 !important;
  box-sizing: border-box;
}

@media screen and (max-width: 789px) {
  .footer-root {
    height: 12rem;
  }
}
@media screen and (max-width: 1440px) {
  .footer-root {
    height: 8rem;
  }
}
.footer-root a {
  color: #5a7980;
  font-size: 0.8rem;
  text-decoration: none;
}

@media screen and (max-width: 789px) {
  .footer-root a {
    font-size: 1.8125rem;
  }
}
.footer-root ul {
  padding: 0;
  margin: 0;
}

.footer-root li {
  list-style: none;
  padding-left: 0.5rem;
}

.footer-root li:after {
  content: "|";
  margin-left: 0.5rem;
  display: inline-block;
  vertical-align: baseline;
}

.footer-root li:last-child:after {
  display: none;
}

@media screen and (max-width: 789px) {
  .footer-root li {
    transform-origin: 100% 50%;
  }
}
.footer-root .footer-content {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMoAAAARCAMAAACrQsN2AAAAulBMVEUAAADJAEv////////////////////////////////////////JAEvJAEvJAEvJAEvJAEv////JAEv////JAEv////JAEv////////JAEvJAEvJAEvJAEvJAEv////////JAEv////////JAEv////JAEv////////JAEvJAEv////////JAEv////////////////////////JAEvJAEv////////////////////JAEv////////JAEsWhuFlAAAAPHRSTlMAEh/QsRDhYPCgwJD4Bb+wHlCOMDBwckDn4aB/0usFqFLHGMgJXNtpQzn3JqiAN9R4+5eXaIi6m0ZaJH2PvYd2AAAFUElEQVR4Xo2XaXuyOBRAL3sA0SJVYFwQpdi6LnXpEv7/35p7Q9g6nXfmfECIPD45uUsiDInxmweCp+HwBUoWQwUqvOsgLmarsRhRhpIJEMpkNevFgxcPWthOBktX8AkSf5TB/+ZwUwHJbB8a7he8bJMDSJZLyNQaKEpmYyHzXBR/ydnPiglIXuOipHcl3UISAzLuyafpGzToDkDAI9M0z3Y9EebyEhvaPBzkpPGSAAQWN2C7Vg1uQc2Ip3OANd9CyVyLDj6vgaJipXRUXlDPq26R6aBPk37/ofIXCfYHU/pYgOTDT49+EHBaUa1SWZ7dET+NEPZTZROhirbXon3SVrF40Fb5OD/yVIXEBMjmQPibKLCsNXeTjWVZqNIH72syw8l6bZUV2pW59lbg4JNIJZRZkMrqlcAwTNBApN3XDu+eocTkiB10Q3DiQaPSxXSFsq2BX6rMhco+gpbK5zn6+NywD3ZmbHM0gAhveDG4P2KAkAqi4NSHLZU3ESggcMXHVab1dh6pDKDkqVf0ZF6RVf9HVG6+75tSZW5GMOJHDTn/qhI50cY5lio+e3D3dme6zjVdP4khTgvk3D75ZTTKj3NhkqFhFZWwUgElLnpKo7LD8aJ4punXM6cHD9oqQ7KswPffurWS7Pf7SKpY3EQVAxDzV5XczpntlCprvubJfRNpR25qmguENQci3fgf2UbYBVxTgXGJXqvAlRKKVORy9+X9Oxk1CJXpmHiGaV1PpfOkpaIGTHABYp6Tyq9lf/Aj3d92EuybWfzC+aGdYCEncn5JNF9W/onnGbscuH9iRtpSUbCma5UJFcUK40SLPZMvlHh12Y+9othBjddrwqfnjm5JwrJSIhO29UgbnSMjzdRNpqelyiW3uB/l0FXxw1A7sq2u+zqUrL+BuWu+HDFwWip4t5Mq1Ilj0bkmVCpTqVoybFQUfIKGuP6pEGNgN5FHbo5tZlbFFlqoQZQEy0TT2AYLSXyF68CNg9VVoULbuAY4DtQsgWFbg9HZjX6PCkmMUSguYo+i0lEZUwdbEF//FpWU82NGm9c9xcsSiKVtqrzC+ketELYGksceVeDTthOe2vZJqqwtK3cBzM28ieianc8hhIydGxWa/rVSWWE8nr9e8WNR14oyRWY40ir7uF0rb3WMdD2lsrcDXQuCKgKk4huE+ptKaFmpSbtDs698m6bJmWkmUiWx7cgFg/MQJAEfYa0A0k4wD3vuk1R5K2r6VM27dpdSuh3s+ksH286pg2EOUxloLZXEJS6/qGQ6L2mpwI8Eu7gP1wefaw+QJMxgR1vQJJg3oPySKruiAdtUM98xav1hX1l1Di5JDvrR98OWiuYQ6Q+VeaRp9lJVkyOm4x9UjKXpAySatZFvHbgLLHIETKp4C5xvrEgV6sTKywQPmc/k91rgVaEUwyD0vkil/ySQu71HUqhPVo2KwfiejKClUmoZXRXnzDfJoaqVP6kEjKkBXxvMqfaYJTAXmgTrxTGdruIvkCqiE5f0qR9fC2RVnsFeumcwb1eewVaF+E4yN4532PMH53kYbA+NSmQKuip3/dOAAA80aYQXv1b5ELl4xytZGTcecZPdtDyDb65nYiO9QXeLFPSGCkgV6sRVMS9EK1vERclsAV0V8Ca96ukVKg6cuwa7Q6hxJG1U7jaRdFWM8tQr0WuVE6ugfFI5e4Rw0M8hwDwVYVHzJaqke4GpwwDZvb8oIPgaDMbPg0G9vt5uMKSPa3/W/F8ZSN6BeJpMe8Wsf/Wg4XudgWjCqr8+fYDgw8qsJRBzawv/xdaaQ5fPTIz78o8KQT43Gca19Tcc9PpLYSxo/gAAAABJRU5ErkJggg==) 0 no-repeat;
  background-size: 16.83333rem;
  width: 98%;
  max-width: 80rem;
  height: 24.54545%;
  margin: 0 auto;
  font-size: 0.8rem;
}

@media screen and (min-width: 1440px) {
  .footer-root .footer-content {
    background-image: url(../images/footer/img-waring@2x.png?635cccfb);
  }
}
@media screen and (max-width: 789px) {
  .footer-root .footer-content {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIUAAAALCAMAAABmvr6mAAAAxlBMVEUAAAD////////////////////////////JAEv////JAEv////JAEvJAEv////JAEv////JAEv////////////JAEvJAEv////JAEv////////JAEv////JAEvJAEvJAEvJAEv////////JAEv////JAEvJAEv////////JAEv////////JAEv////////////JAEv////////JAEvJAEv////////////////JAEv////////////JAEv////////JAEv///9kUSMdAAAAQHRSTlMAME+Q8XCg0NFg/N/C4UBAger4D6ZvgbBfBh8awAah8TmWKE3XIxDFRzC36Xo0dxi1a5ySqauMY8qKJDpUnFpY2nF+VwAAAzJJREFUeF5V1Hlzqjocx+EvEAgQUDZlEavgutS1am3tacP7f1M3yUDPPc8/6gwz+fBLDDzPuw5GADbeK4T+aQxpcw1d/20EZJ40A0Zvvju5TqFAe6BIhT2k9MsRdLRiTdP2jvAN4fOCHHoABdsv5OURQn7Ov00F3J1wPsmAPn+B4PEMwsDlvhfySR9DLg0wFb88X36T6nfW02ivt1IrP1lQGkZC0erRhlpsu0uICqa4B44FJVhRbU8RAzg+koMxv0WGAW5jnIV81lZsOPcgk8IZMB64J1ExWCwWy2XoDsZAXz4qBPOIaoRSoiqsIKBpWlL8InC2JtWJjDjP11szSLUayKsmWbELYeQAIH7mcaKTOJYVwML124o/3OdTOZEppNkYQzUc8fEKaePaaF9QY6ZYCEAROUHV673/W9HNIkgo25XzXXkBYIqt+9yZNdWA9fzTiCLSECor1OJTVbF07T6/Ysk9dIbct217ZLtLKCc+UhXzc20ITwBJ45ypcEOrSKM06GZR3Slbod2RHksfEb0c5hDulmE+9kTrKgY8UxWvPIPtjhb8D4DMFz6GXFr4PhS88Q2AOGgsQqKIECAvU8dUPqEg1iP9p6Sk3AIoTVqvfyvEVJIicXJItXFjIElX8cb7smIcuiNRMhSzUGmCqBgsl0vRNu5msQBQMYrj3jChWE4UCHMdHYK8+HkURwDrJ0Uig1eyYuUYFugFUs5uqzV+7m3FaBKOZUXGlXBst+fihc/ac/Hx77ko9hTvidE0ZlthCOx/FYXOdhHbtkcojs9JHMsKGiR6zFgOwSmNh2VZqarAzOcZZIXtDk/ey5VnMx72gfGraGwrRu1/xOez7nSmafU7C9ITVl1FXTVzDb0S3aP43RFLI/Whqu4A4t3aqHrqVHPXn3D3FbJiyq9qQdfu7otw8fe+mPDQs3k7kuN9pZFLsz2fY1XRMCHqKvbGHgdru7MsTVXUlrVilpUDFWHpbVcU0TtwKGE0EoVt297HAsDGHg7tKaQPe4PpacLV3TmwpUzdnXxy6kOJb+v6C/uDlUB4f1aFcNDw19qRCll8OOpKDphr4FsH1kcgr3H+Unfrf8Q+ZG30DIv8AAAAAElFTkSuQmCC);
    background-position: 2%;
    background-size: 23.35rem;
    font-size: 1.8125rem;
  }
}
@media (max-width: 789px), screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 789px) {
  .footer-root .footer-content {
    background-image: url(../images/footer/img-waring-320@2x.png?a24c520a);
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 3) {
  .footer-root .footer-content {
    background-image: url(../images/footer/img-waring-320@3x.png?51a93e3f);
  }
}
.footer-root .footer-content .flexWrap {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer-root .footer-content a.phone-text {
  font-size: 4.2666666667vw;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: #edf7f6;
  text-decoration: none;
}

@media screen and (min-width: 789px) {
  .footer-root .footer-content a.phone-text {
    font-size: 1.4rem;
  }
}
.footer-root .footer-content .footer-phone:before {
  content: "";
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAPCAYAAADQ4S5JAAAAeklEQVR4AWOAgdyWrlAgrmEgBoAUAvF/KE4gRsMvJA2/CClWgytG4JX4NHii2fAKiB3xaeBHM12NGD+cRNKQTYwGT2RbQGKk2rKCGA0yaJ6vAfkPGqH9uDQlIDsNzdYaXJr64YowsQzBpIJuI/4UgHDSLwIRiqkZxgYAoeOsLjiFUVgAAAAASUVORK5CYII=) 0 0 no-repeat;
  background-size: 100%;
  width: 1rem;
  height: 1.25rem;
  margin-right: 0.41667rem;
  display: inline-block;
  vertical-align: sub;
}

@media screen and (min-width: 1440px) {
  .footer-root .footer-content .footer-phone:before {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAeCAYAAAA2Lt7lAAAA9klEQVR4AWLABnJbugC1lrERhCAQRS8hMya2AwqwAlugBouxASuwApqgAguwATJm9n50ASOryD9nXigPWD7LDKYP+8OgFuwgAwE7c/ABRCAFniVYgVyQgOkdfAQJSIXYK1iAKGSw9AgCkBsSGN4K4gPBAUbSCvhbtN3MfP5XkTOwlJApgpkhMEqhAyvJXjmelrWKsyLZlF9piXYsyVE7rizBVBEo/YEbvPWidh4swLbk4tQlv2s+FKk3TyUOZEUSK5NYW46tVwSa3BFaqcoJBk7RQUM4qStJYHxzX6UGiXn1AuF2QD3xe7ElAgLr2VkG0z1IMv/7AkPbiRMFzbG0AAAAAElFTkSuQmCC);
  }
}
@media screen and (max-width: 789px) {
  .footer-root .footer-content .footer-phone:before {
    width: 0.66667rem;
    height: 0.83333rem;
    vertical-align: baseline;
    transform: scale(1.34);
  }
}
@media screen and (max-width: 789px) {
  .footer-root .footer-content .footer-phone:before {
    text-indent: -9999px;
    position: relative;
  }
}
.footer-root .footer-alert {
  width: 100%;
  background: #20343d url(../images/footer/img-nodrive@3x.png?df72a761) 50% no-repeat;
  background-size: 86% auto;
  height: 75.45455%;
}

@media screen and (max-width: 1440px) {
  .footer-root .footer-alert {
    background-image: url(../images/footer/img-nodrive@2x.png?d5172b9f);
    background-size: 92% auto;
  }
}
@media screen and (max-width: 1024px) {
  .footer-root .footer-alert {
    background-size: 98%;
  }
}
@media screen and (max-width: 789px) {
  .footer-root .footer-alert {
    background-image: url(../images/footer/img-nodrive-320.png?753ea31c);
    background-size: 97.5%;
    font-size: 1.8125rem;
  }
}
@media (max-width: 789px), screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 789px) {
  .footer-root .footer-alert {
    background-image: url(../images/footer/img-nodrive-320@2x.png?101ca598);
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 3) {
  .footer-root .footer-alert {
    background-image: url(../images/footer/img-nodrive-320@3x.png?7a3fcdd6);
  }
}
.footerMeta-root {
  position: relative;
  box-sizing: border-box;
  background-color: #005b65;
}
.footerMeta-root.bg-darkgreen {
  background-color: #02272b;
}
.footerMeta-root .socile-container {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 2.5rem 5rem 2.5rem;
}
@media screen and (min-width: 790px) {
  .footerMeta-root .socile-container {
    width: 22.5rem;
    padding: 1.25rem 0.75rem 1.25rem;
  }
}
.footerMeta-root .link-to-social {
  position: relative;
  width: 5rem;
}
@media screen and (min-width: 790px) {
  .footerMeta-root .link-to-social {
    width: 2.5rem;
  }
}
.footerMeta-root .right-container {
  position: relative;
}

.popup--root {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1200;
}
.popup--root .popup--close {
  cursor: pointer;
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  width: 3.75rem;
  height: 3.75rem;
}
.popup--root .popup--body {
  position: relative;
  width: 49.375rem;
  margin: 0 auto;
  height: 100%;
  background-color: #77182d;
  padding: 9.375rem 0;
  overflow: auto;
  overflow-x: hidden;
}
@media screen and (min-width: 641px) {
  .popup--root .popup--body {
    padding: 6.25rem 0;
  }
}
.popup--root .popup--container {
  position: relative;
  background-image: linear-gradient(117.54deg, rgba(255, 255, 255, 0.5) -19.85%, rgba(235, 235, 235, 0.367354) 4.2%, rgba(224, 224, 224, 0.287504) 13.88%, rgba(212, 212, 212, 0.21131) 27.98%, rgba(207, 207, 207, 0.175584) 37.8%, rgba(202, 202, 202, 0.143432) 44.38%, rgba(200, 200, 200, 0.126299) 50.54%, rgba(196, 196, 196, 0.1) 60.21%);
  box-shadow: 0px 1px 1.5rem rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(1.5rem);
          backdrop-filter: blur(1.5rem);
  border-radius: 0.625rem;
  padding-left: 1.875rem;
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  width: 42.25rem;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.popup--root .popup--inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding-right: 1.875rem;
}
.popup--root .popup--carousell {
  position: relative;
  width: 38.5rem;
  height: 24.0625rem;
  box-shadow: 0px 1px 1.5rem -1px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(1.5rem);
          backdrop-filter: blur(1.5rem);
  border-radius: 0.3125rem;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.popup--root .popup--carousell::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.3125rem;
  background-image: linear-gradient(90deg, #e6bea1 0%, #d9ac8c 31%, #885d44 82%, #e6bea1 100%);
  z-index: 5;
}
.popup--root .popup--carousell img {
  -o-object-fit: cover;
     object-fit: cover;
}
.popup--root .popup--carousell--prev {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 0.625rem;
  transform: translateY(-50%);
  width: 1.9375rem;
  z-index: 2;
  opacity: 0.7;
}
.popup--root .popup--carousell--next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 0.625rem;
  transform: translateY(-50%);
  width: 1.9375rem;
  z-index: 2;
  opacity: 0.7;
}
.popup--root .popup--carousell--image {
  height: 23.875rem;
}
.popup--root .popup--pagination {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
}
.popup--root .popup--pagination .popup--pagination--bullet {
  position: relative;
  width: 2.5rem;
  height: 0.25rem;
  border-radius: 0.125rem;
  background-color: rgba(215, 171, 108, 0.5);
  margin-left: 0.3125rem;
  margin-right: 0.3125rem;
}
.popup--root .popup--pagination .popup--pagination--bullet.swiper-pagination-bullet-active {
  background-color: #D7AB6C;
}
.popup--root .popup--location {
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 3.875rem;
  /* identical to box height, or 186% */
  text-align: center;
  letter-spacing: 2px;
  /* Linear */
  background-image: linear-gradient(90deg, #EABD71 13%, #F6CA8F 53.76%, #D09D61 91%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: center;
  margin-top: 0.625rem;
  text-shadow: 0px 0.25rem 0.25rem rgba(0, 0, 0, 0.2);
}
.popup--root .popup--title {
  font-family: "Noto Serif CJK TC";
  font-style: normal;
  font-weight: 700;
  font-size: 3.25rem;
  line-height: 7.125rem;
  /* identical to box height, or 219% */
  text-align: center;
  letter-spacing: 2.2px;
  color: #E0D2C9;
  text-shadow: 0px 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
  text-align: center;
}
.popup--root .popup--context {
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.8125rem;
  letter-spacing: 1.5px;
  /* gold01 */
  background-image: linear-gradient(180deg, #FDFCFB 0%, #E2D1C3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.popup--root .button-go {
  position: relative;
  width: 18.875rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3.125rem;
}

.v--navi--root {
  position: relative;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
  padding-top: 5.125rem;
  padding-bottom: 5.125rem;
}
.v--navi--root.show {
  display: flex;
  justify-content: center;
  align-items: center;
}
.v--navi--root .v--navi--body {
  position: relative;
  width: 42.1875rem;
  height: 42.875rem;
  background-color: rgba(119, 24, 45, 0.92);
  margin-left: auto;
  margin-right: auto;
  border-top: 2px solid #d9ac8c;
  border-left: 2px solid #d9ac8c;
  border-right: 2px solid #d9ac8c;
}
.v--navi--root .v--navi--body::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.9375rem;
  background-image: linear-gradient(90deg, #e6bea1 0%, #d9ac8c 31%, #885d44 82%, #e6bea2 100%);
}
.v--navi--root .v--navi--cross {
  cursor: pointer;
  position: absolute;
  width: 1.875rem;
  top: 0.9375rem;
  right: 0.9375rem;
}
.v--navi--root .v--navi--group {
  padding: 1.875rem;
}
.v--navi--root .v--navi--line {
  position: relative;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(90deg, #e6bea1 0%, #d9ac8c 31%, #885d44 82%, #e6bea2 100%);
}
.v--navi--root .v--navi--item {
  cursor: pointer;
  position: relative;
  font-family: "Noto Serif TC", serif;
  color: #d9ac8c;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 3.75rem;
  text-align: center;
}/*# sourceMappingURL=index.css.map */