/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@100;300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700&display=swap');

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --general-dark-pink: #583440;
  --general-pink: #fc87b3;
  --general-dark-red: #921220;
  --general-red: #ce2f45;
  --general-plain-red: #c76c78;

  --family-dark-pink: #583440;
  --family-pink: #e67191;
  --family-dark-red: #821220;
  --family-red: #f15a25;

  --family-plain-red: #8d4242;
  --family-plain-orange: #e58f71;
  --yellow: #ffdd55;
  --yellow-light: rgb(250, 225, 126);
  --family-yellow: #ffcc33;
  --family-purple: #563e95;
  --family-orange: #f37543;
  --family-green: #1f938b;
  --family-plain-green: #2cbab0;
  --blue: #30b8ed;
  --text-gray: #cccccc;
  --font-family-Serif: 'Noto Serif TC', 'Microsoft JhengHei', 'Heiti TC',
    'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-family-Sans: 'Noto Sans TC', 'Microsoft JhengHei', 'Heiti TC',
    'Helvetica Neue', Helvetica, Arial, sans-serif;

  --font-clamp-h1: clamp(1rem, 3vw, 2rem);
  --font-clamp-h2: clamp(1.5rem, 6vw, 4rem);
  --font-clamp-h3: clamp(1rem, 3vw, 2rem);
  --font-clamp-h4: clamp(1rem, 1.9vw, 1.7rem);
  --font-clamp-h5: clamp(1rem, 1.5vw, 1.5rem);
  --font-clamp-span: clamp(1rem, 1vw, 1.3rem);
  --font-clamp-p: clamp(1rem, 1vw, 1.2rem);
  --font-clamp-strong: clamp(1.5rem, 4vw, 5rem);
  --font-clamp-h6: clamp(14px, 2vw, 14px);
  --font-clamp-small: clamp(12px, 2vw, 13px);
}

/* 修正手機版點開表單時被鍵盤畫面頂到上面 */
html,
body {
  font-family: var(--font-family-Sans);
  -webkit-overflow-scrolling: touch !important;
  overflow: auto !important;
  scroll-behavior: smooth !important;
  margin: 0;
}

a {
  text-decoration: none;
}

strong {
  font-size: var(--font-clamp-strong);
  font-weight: 500;
}

small {
  font-size: var(--font-clamp-small);
  font-weight: 400;
}

h3 {
  font-size: var(--font-clamp-h3);
  font-weight: 500;
}

h4 {
  font-size: var(--font-clamp-h4);
  font-weight: 500;
}

h5 {
  font-size: var(--font-clamp-h5);
  font-weight: 400;
}

img {
  -webkit-transition: .2s all ease;
  -o-transition: .2s all ease;
  transition: .2s all ease;
}
/* ------------@common------------ */
section {
  width: 100vw;
  height: auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  background-size: cover;
  opacity: 0;
}

.section_title {
  background-image: url('/gamelanding/images/tamsui2023/section_title_frame.svg');
  width: 100%;
  background-repeat: no-repeat;
  background-position: center 65%;
  background-size: 37%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: var(--font-clamp-h4);
  color: white;
  margin-bottom: 1.5rem;
}

.section_desc {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: var(--font-clamp-h6);
  text-align: center;
  font-weight: 300;
  margin-bottom: 1rem;
}

.text_yellow {
  color: var(--yellow);
}

.bg_red {
  background-color: var(--general-dark-red);
}

.bg_blue {
  background-color: var(--blue);
}

.text_grey {
  color: rgb(227 227 227);
}

.text_red {
  color: var(--general-dark-red);
}

.opacity_20 {
  opacity: 20%;
}

.opacity_20 {
  opacity: 20%;
}

.not_allowed {
  cursor: not-allowed !important;
  pointer-events: none;
}

.fade-enter-active,
.fade-leave-active {
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

.btn_primary {
  cursor: pointer;
  -webkit-box-shadow: 0px 5px 0px #5c0008;
          box-shadow: 0px 5px 0px #5c0008;
  background: var(--general-dark-red);
  color: white;
  padding: 0.5rem 1rem;
  -webkit-transform: translate(0, -5px);
      -ms-transform: translate(0, -5px);
          transform: translate(0, -5px);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.btn_primary:hover {
  color: black;
  -webkit-box-shadow: 0px 3px 0px orange;
          box-shadow: 0px 3px 0px orange;
  background: var(--family-yellow);
  -webkit-transform: translate(0, 0px);
      -ms-transform: translate(0, 0px);
          transform: translate(0, 0px);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

section .swiper-button-prev,
section .swiper-button-next {
  border: 1px solid white;
  position: absolute;
  top: 50%;
  right: 0rem;
  border-radius: 99%;
  background: rgba(0, 0, 0, 0.8);
  width: 2rem;
  height: 2rem;
  font-size: 12px;
  color: white;
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

section .swiper-button-prev {
  right: auto;
  left: 0rem;
}

section .swiper-button-next::after,
section .swiper-button-prev::after {
  font-size: inherit;
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

section .swiper-button-prev:hover,
section .swiper-button-next:hover {
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

section .swiper-pagination {
  --swiper-pagination-bullet-inactive-color: white;
  --swiper-pagination-color: white;
}

section .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

.lazy_load {
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

/* ------------@loader------------ */
#loader {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background-color: #510b12;
  -webkit-transition: all 1s 0.5s;
  -o-transition: all 1s 0.5s;
  transition: all 1s 0.5s;
}

#loader img {
  opacity: 1;
  width: 100px;
  height: auto;
  margin: auto;
  /* animation-duration: 1s;
  animation-name: rollIn;
  animation-fill-mode: forwards; */
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  -webkit-transition: all 0.8s cubic-bezier(0.87, 0, 0.13, 1);
  -o-transition: all 0.8s cubic-bezier(0.87, 0, 0.13, 1);
  transition: all 0.8s cubic-bezier(0.87, 0, 0.13, 1);
}

body.loaded #loader img {
  /* animation-duration: 2s;
  animation-name: rollOut;
  animation-fill-mode: forwards; */
  opacity: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

#loader span {
  color: #fff;
  position: absolute;
  bottom: 15vh;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: var(--font-clamp-span);
  -webkit-animation: shining 0.8s infinite;
          animation: shining 0.8s infinite;
}

body.loaded #loader {
  opacity: 0;
  pointer-events: none;
}

@-webkit-keyframes shining {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes shining {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* ------------@head------------ */

header {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  z-index: 992;
}

body.show_nav header {
  pointer-events: auto;
}

.head_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.8rem 1rem;
  background-color: rgba(255, 255, 255, 0.837);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

img.mv_title_mobile {
  display: none;
}

.head_wrap.on_top {
  background-color: transparent;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.head_wrap #logo_ul > li a,
.head_wrap.on_top #logo_ul > li a {
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  font-weight: normal;
}

#logo_ul > li a span {
  font-size: var(--font-clamp-span);
  color: white;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#logo_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#logo_ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#logo_ul > li a span {
  font-size: var(--font-clamp-span);
  color: #000;
}

#logo_ul > li a.active,
#logo_ul > li:hover a {
  color: var(--family-yellow);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.head_wrap #logo_ul > li a img {
  width: 1.8rem;
  margin: 0 6px 2px 0;
  -webkit-filter: brightness(1) invert(1);
          filter: brightness(1) invert(1);
}

.head_wrap.on_top #logo_ul > li a span {
  color: white;
}

.head_wrap.on_top #logo_ul > li:hover a span {
  color: var(--family-yellow);
}

.head_wrap #logo img.wabay {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.head_wrap #logo img.wabay.small {
  display: none;
}

.head_wrap.on_top #logo img.wabay {
  -webkit-filter: invert(0);
          filter: invert(0);
}

.head_wrap.on_top .head_social span {
  -webkit-filter: invert(0);
          filter: invert(0);
}

.head_social span {
  display: none;
}

.head_social .links_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
}

.head_social .links_wrap a {
  width: 30px;
  margin-right: 0.5rem;
}
body.show_nav .head_wrap {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.logo_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.logomobile {
  display: none;
}

#logoMobile {
  display: none;
}

#logo {
  width: calc(50vw + 190px / 3);
  margin: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#logo img {
  height: 3rem;
  margin-right: 0.5rem;
}

#logo img.wabay {
  width: 190px;
  margin: 2px 0vw 0px auto;
}

#logo img.family {
  height: 3.5rem;
}

/* ------------@burger------------ */
#navopen {
  display: none;
  position: fixed;
  z-index: 2000;
  cursor: pointer;
}

#page_container {
  overflow: hidden;
}

/* ------------@main------------ */

main {
  overflow: hidden;
  background-color: var(--family-dark-red);
}

.all_main_bg {
  position: fixed;
  display: block;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

/* ------------@main visual------------ */

.main_visual {
  font-family: var(--font-family-Serif);
  width: 100%;
  height: 100vh;
  background-image: url('');
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.main_video {
  opacity: 1;
  background-color: #510b12;
  -webkit-transition: opacity 3s;
  -o-transition: opacity 3s;
  transition: opacity 3s;
}

.main_video video {
  position: absolute;
  width: 100vw;
  /* aspect-ratio: 3/2; */
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  right: 0;
  bottom: 0;
  opacity: 1;
  -webkit-filter: brightness(0.5) grayscale(0.5) sepia(0.3);
          filter: brightness(0.5) grayscale(0.5) sepia(0.3);
  pointer-events: none;
}

.main_title {
  width: 100%;
  margin: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  text-align: center;
  z-index: 1;
}

.main_title h2 {
  margin: 0.5rem;
  font-size: var(--font-clamp-h2);
  font-weight: 600;
}
.main_title h2:first-child {
  margin-top: 22vh;
  line-height: 1.1;
}

.main_visual .scroll_tip_wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 10%;
  color: white;
  font-weight: 600;
  font-size: var(--font-clamp-span);
  letter-spacing: 0.04em;
  opacity: 0;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  z-index: 1;
  -webkit-animation-name: ani_scroll;
          animation-name: ani_scroll;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.69, 0, 1, 1);
          animation-timing-function: cubic-bezier(0.69, 0, 1, 1);
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
}
@-webkit-keyframes ani_scroll {
  0% {
    opacity: 0;
    -webkit-filter: brightness(10);
            filter: brightness(10);
  }

  50% {
    opacity: 0.5;
    -webkit-filter: brightness(5);
            filter: brightness(5);
  }

  100% {
    opacity: 1;
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
}
@keyframes ani_scroll {
  0% {
    opacity: 0;
    -webkit-filter: brightness(10);
            filter: brightness(10);
  }

  50% {
    opacity: 0.5;
    -webkit-filter: brightness(5);
            filter: brightness(5);
  }

  100% {
    opacity: 1;
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
}

.scroll_tip_wrapper a {
  color: white;
  text-decoration: none;
}

.main_visual .scroll_tip {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  font-size: var(--font-clamp-h6);
  font-weight: 400;
  height: 100vh;
}

.main_visual .scroll_tip_el {
  position: relative;
  width: 0.1rem;
  height: 6rem;
  margin-top: 0.5rem;
  margin-right: 2px;
  overflow: hidden;
}

.main_visual .scroll_tip_el::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  -webkit-animation: scroller 2s cubic-bezier(0.39, 0.575, 0.565, 1) infinite;
  animation: scroller 2s cubic-bezier(0.39, 0.575, 0.565, 1) infinite;
  content: '';
}

@-webkit-keyframes scroller {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@keyframes scroller {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

.main_visual .sub_title {
  position: absolute;
  width: 80vw;
  z-index: 1;
  bottom: 0;
  left: 50%;
  text-align: center;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
  color: white;
  letter-spacing: 1px;
  background: -webkit-gradient(
    linear,
    left top, right top,
    color-stop(0.83%, rgba(255, 255, 255, 0)),
    color-stop(50.42%, rgba(255, 255, 255, 0.3)),
    to(rgba(255, 255, 255, 0))
  );
  background: -o-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0.83%,
    rgba(255, 255, 255, 0.3) 50.42%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0.83%,
    rgba(255, 255, 255, 0.3) 50.42%,
    rgba(255, 255, 255, 0) 100%
  );
}

.sub_title h5 {
  font-weight: 400;
  font-size: var(--font-clamp-span);
  font-family: var(--font-family-Sans);
  margin: 1rem 0;
}

.main_links {
  position: fixed;
  top: 15vh;
  right: 3vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main_links .link {
  cursor: pointer;
  text-decoration: none;
  --bg-clr: rgba(35, 35, 35, 0.68);
  max-width: 125px;
  width: 10vw;
  font-size: var(--font-clamp-span);
  font-weight: 300;
  padding: 0.7rem 0rem;
  text-align: center;
  margin-bottom: 1rem;
  background-color: var(--bg-clr);
  outline: 5px solid var(--bg-clr);
  border: 1.5px solid white;
  color: white;
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

.main_links .link.red {
  --bg-clr: rgba(103, 0, 0, 0.68);
}

.main_links .link.red:hover {
  --bg-clr: rgba(103, 0, 0, 1);
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

.main_links .link:hover {
  --bg-clr: rgba(35, 35, 35, 1);
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

/* ------------@regStatus------------ */
#regStatus {
  background-image: url('/gamelanding/images/tamsui2023/reg_status_bg.svg');
  background-position: bottom center;
  background-repeat: no-repeat;
  padding: 2rem;
  padding-bottom: 5rem;
  background-size: contain;
}

.count_down {
  color: white;
  text-align: center;
  background-image: url('/gamelanding/images/tamsui2023/count_down_bg.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 30%;
  min-width: 300px;
  aspect-ratio: 3/2;
  margin: 0 auto;
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.count_down strong {
  font-size: var(--font-clamp-strong);
  margin: 0 2px;
}

.count_down p {
  font-size: var(--font-clamp-h5);
  margin: 0 2px;
  letter-spacing: 2px;
  font-weight: 300;
}

.count_down span {
  font-size: var(--font-clamp-span);
  font-weight: 300;
}

.count_down_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.count_down_container .count_down_wrap {
  width: 100%;
  margin-right: 1rem;
}

.count_down_container .count_down_wrap {
  width: 100%;
  margin-right: 0;
}

.count_down_container .count_down_wrap .number {
  color: var(--yellow);
  position: relative;
  font-weight: bold;
  font-family: var(--font-family-Serif);
  font-size: var(--font-clamp-strong);
}
.count_down_container .count_down_wrap:not(:last-child) .number:after {
  content: '：';
  position: absolute;
  right: -23px;
  color: var(--yellow);
  font-weight: bold;
  font-family: var(--font-family-Serif);
  font-size: var(--font-clamp-strong);
}

.count_down_container .count_down_wrap .unit {
  font-size: var(--font-clamp-small);
  font-weight: 400;
}

.game_label {
  width: 35%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  margin: 0 auto;
  margin-top: 1rem;
  min-width: 450px;
  max-width: 600px;
  font-size: var(--font-clamp-span);
}

.game_label .label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px;
}

.game_label .label.general {
  background: -webkit-gradient(
    linear,
    left top, right top,
    from(#91000d),
    color-stop(25%, #91000d),
    color-stop(50%, #91000d),
    color-stop(75%, #91000d),
    to(rgba(145, 0, 13, 0))
  );
  background: -o-linear-gradient(
    left,
    #91000d 0%,
    #91000d 25%,
    #91000d 50%,
    #91000d 75%,
    rgba(145, 0, 13, 0) 100%
  );
  background: linear-gradient(
    90deg,
    #91000d 0%,
    #91000d 25%,
    #91000d 50%,
    #91000d 75%,
    rgba(145, 0, 13, 0) 100%
  );
}

.game_label .label.family {
  background: -webkit-gradient(
    linear,
    right top, left top,
    from(#30b8ed),
    color-stop(25%, #30b8ed),
    color-stop(50%, #30b8ed),
    color-stop(75%, #30b8ed),
    to(rgba(48, 184, 237, 0))
  );
  background: -o-linear-gradient(
    right,
    #30b8ed 0%,
    #30b8ed 25%,
    #30b8ed 50%,
    #30b8ed 75%,
    rgba(48, 184, 237, 0) 100%
  );
  background: linear-gradient(
    270deg,
    #30b8ed 0%,
    #30b8ed 25%,
    #30b8ed 50%,
    #30b8ed 75%,
    rgba(48, 184, 237, 0) 100%
  );
}

.game_label img {
  width: 1.5rem;
  margin-right: 5px;
}

.reg_status_text {
  color: white;
  text-align: center;
  font-size: var(--font-clamp-h5);
  margin-top: 1.5rem;
  font-weight: 400;
}

.reg_status_text strong {
  color: var(--yellow);
  font-family: var(--font-family-Serif);
}

.status_bar {
  position: relative;
  height: 4px;
  margin: 1.5rem auto 2rem auto;
  width: 100%;
  min-width: 300px;
  max-width: 700px;
  background-color: white;
}

.bar_inside {
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  border-right: 4px solid var(--general-dark-red);
  background-color: var(--family-yellow);
}

.reward_card_wrapper {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  min-width: 300px;
  max-width: 700px;
}

.reward_card {
  width: 33%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 2px solid white;
  margin-right: 1rem;
  height: auto;
}

.reward_card:last-child {
  margin-right: 0;
}

.reward_card::before {
  position: absolute;
  left: -10px;
  top: 12%;
  content: '';
  background-image: url('/gamelanding/images/tamsui2023/game_general_icon_filled.svg');
  width: 2.2rem;
  height: 2.2rem;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

.reward_card::after {
  position: absolute;
  left: -10px;
  top: 56%;
  content: '';
  background-image: url('/gamelanding/images/tamsui2023/game_family_icon_filled.svg');
  width: 2.2rem;
  height: 2.2rem;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

.reward_card .title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5rem;
  padding-top: 0;
  font-weight: 500;
  color: grey;
  background-color: white;
  font-size: var(--font-clamp-h3);
  font-family: var(--font-family-Serif);
}

.reward_card .title::after {
  content: '';
  position: absolute;
  top: -17px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(90deg);
      -ms-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
  width: 0px;
  height: 0px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 13px solid white;
}

.reward_card .title::before {
  content: '';
  position: absolute;
  top: -44px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
      -ms-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  background-color: black;
  width: 10px;
  aspect-ratio: 1/1;
  border: 3px solid white;
}

.reward_card .title small {
  margin: auto 0 4px 5px;
}

.reward_card .desc {
  position: relative;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 0 0.8rem;
}

.reward_card .desc::after {
  cursor: help;
  content: url('https://api.iconify.design/mdi/question-mark-circle-outline.svg');
  position: absolute;
  bottom: 0;
  right: 7px;
  z-index: 1;
  -webkit-transform: scale(1.5);
      -ms-transform: scale(1.5);
          transform: scale(1.5);
  pointer-events: none;
}

.reward_card .desc .desc_cover {
  position: absolute;
  width: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: justify;
  height: 30px;
  bottom: 0;
  right: 0;
  aspect-ratio: 2/1;
  border-radius: 1rem 0 0 0;
  background-color: white;
  color: black;
  padding: 0.8rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-image: url('');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 90%;
}

.reward_card .desc .desc_cover p {
  font-size: var(--font-clamp-small);
  text-align: justify;
  font-weight: 500;
  font-weight: 300;
  margin: auto;
  opacity: 0;
  -webkit-transition: 0s all;
  -o-transition: 0s all;
  transition: 0s all;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}

.reward_card .desc .desc_cover:hover {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: white;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 0 0 0 0;
}

.reward_card .desc .desc_cover:hover p {
  opacity: 1;
  -webkit-transition: 0.4s all ease;
  -o-transition: 0.4s all ease;
  transition: 0.4s all ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.reward_card .desc.general {
  border-bottom: 2px solid white;
}

.reward_card .desc.general .desc_cover:hover {
  background-image: url('/gamelanding/images/tamsui2023/game_general_icon_clr.svg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.reward_card .desc.family .desc_cover:hover {
  background-image: url('/gamelanding/images/tamsui2023/game_family_icon_clr.svg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.reward_card .desc span {
  cursor: help;
  color: white;
  font-size: var(--font-clamp-span);
  text-align: center;
  margin: 10px auto 5px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* active狀態 */
.reward_card.active {
  width: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 2px solid var(--yellow);
  margin-right: 1rem;
}

.reward_card.active .title {
  color: black;
  background-color: var(--yellow);
}

.reward_card.active .title::after {
  border-right: 13px solid var(--yellow);
}

.reward_card.active .desc.general {
  border-bottom: 2px solid var(--yellow);
}

.reward_card.active .desc span {
  color: var(--yellow);
}

.reward_card.active .title::before {
  content: '';
  position: absolute;
  top: -47px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
      -ms-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  background-color: var(--family-dark-red);
  width: 14px;
  aspect-ratio: 1/1;
  border: 3px solid var(--yellow);
}

.reward_card.active .desc .desc_cover {
  background: var(--yellow);
  color: black;
}

/* ------------@gameSelection------------ */

#gameSelection {
  height: auto;
  background-image: url('/gamelanding/images/tamsui2023/game_selection_bg.png');
  background-position: bottom center;
  background-repeat: no-repeat;
  padding: 5rem 2rem 0 2rem;
  margin-bottom: 8vh;
}

.slogan {
  color: white;
  width: 60%;
  text-align: center;
  font-weight: 500;
  margin: 0px auto;
  font-size: var(--font-clamp-h4);
  text-shadow: black -1px 3px 2px;
}

.selection_wrap {
  margin-top: 2.5rem;
  position: relative;
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  text-align: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.selection_wrap .selection {
  padding-bottom: 2rem;
  position: relative;
  width: 23vw;
  aspect-ratio: 5/6;
  z-index: 1;
  min-width: 260px;
  overflow: hidden;
  border: 2px solid white;
  border-radius: 10rem 10rem 0 0;
}

.selection_wrap .selection img {
  position: absolute;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-filter: brightness(0.3) grayscale(0.2) contrast(0.8);
          filter: brightness(0.3) grayscale(0.2) contrast(0.8);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -webkit-transform: scale(1.3);
      -ms-transform: scale(1.3);
          transform: scale(1.3);
  overflow: hidden;
  z-index: 0;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.selection_wrap .selection:hover img {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  overflow: hidden;
  z-index: 0;
  position: absolute;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.selection_wrap .selection_info {
  position: absolute;
  top: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  left: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: white;
}

.selection_info h5 {
  margin-bottom: auto;
}

.selection_info p {
  line-height: 1.5;
  letter-spacing: 0px;
}

.selection_info .btn_nav {
  margin: auto auto 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: var(--font-clamp-span);
  width: 80%;
  text-align: center;
  -webkit-box-shadow: 0 6px 0 0 grey;
          box-shadow: 0 6px 0 0 grey;
  border-radius: 2rem;
  background-color: lightgray;
  -webkit-transform: translate(0, -6px);
      -ms-transform: translate(0, -6px);
          transform: translate(0, -6px);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
  font-weight: 500;
}

.selection_info .btn_nav.general {
  -webkit-box-shadow: 0px 5px 0px #5c0008;
          box-shadow: 0px 5px 0px #5c0008;
  background: var(--general-dark-red);
  color: white;
}

.selection_info .btn_nav.family {
  -webkit-box-shadow: 0 5px 0 0 rgb(13, 77, 107);
          box-shadow: 0 5px 0 0 rgb(13, 77, 107);
  background-color: var(--blue);
  color: white;
}

.selection_info .btn_nav::after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  background-color: transparent;
}

.selection_info .btn_nav a {
  text-decoration: none;
  width: 96%;
  height: 86%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  padding: 0.4rem 0.5rem 0.6rem 0.5rem;
  color: inherit;
  font-weight: 400;
  border-radius: 2rem;
}

.selection_info .btn_nav:hover {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transform: translate(0, 0px);
      -ms-transform: translate(0, 0px);
          transform: translate(0, 0px);
  color: black;
  -webkit-box-shadow: 0 2px 0 0 orange;
          box-shadow: 0 2px 0 0 orange;
  background-color: var(--yellow);
}

/* ------------@gameIntro------------ */

section.game_intro {
  height: auto;
  background-color: rgba(0, 0, 0, 0.468);
}

section.game_intro .top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}

section.game_intro .top .poster_container {
  --gradient-main: transparent;
  --gradient-side: #270708;
  width: 55%;
  aspect-ratio: 4/3;
  position: relative;
}

section.game_intro .top .poster_container::after {
  position: absolute;
  content: '';
  width: 50%;
  height: 100%;
  z-index: 1;
  right: 0;
  top: 0;
  background: -o-linear-gradient(
    left,
    var(--gradient-main) 0%,
    var(--gradient-main) 25%,
    var(--gradient-main) 50%,
    var(--gradient-main) 75%,
    var(--gradient-side) 100%
  );
  background: linear-gradient(
    90deg,
    var(--gradient-main) 0%,
    var(--gradient-main) 25%,
    var(--gradient-main) 50%,
    var(--gradient-main) 75%,
    var(--gradient-side) 100%
  );
}

section.game_intro .top .poster_container img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

.top .info {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 300;
  padding: 1rem 7vw;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  font-size: var(--font-clamp-span);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: url('/gamelanding/images/tamsui2023/image_opera_mask.png');
  background-position: center 20%;
  background-size: 40%;
  background-repeat: no-repeat;
}

.top .info > p {
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

.top .info img {
  width: 100%;
  margin: 1rem 0;
}

.top .info .info_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  margin: 5px 0;
  text-align: left;
  font-weight: 400;
  font-size: var(--font-clamp-h6);
}

.top .info .info_item .iconify {
  font-size: var(--font-clamp-p);
  margin-right: 5px;
}

section.game_intro .middle {
  width: 100%;
  padding: 1rem 16vw 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  height: auto;
}

.middle .info_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.middle .info_item:not(:last-child) {
  margin: 0 1.5rem 0 0;
}

.middle .info_item h6 {
  font-weight: 300;
  font-size: var(--font-clamp-span);
}

.middle .info_item img {
  width: 5rem;
  aspect-ratio: 1/1;
  margin-right: 8px;
}

section.game_intro .bottom {
  width: 100%;
  padding: 0rem 10vw 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  height: auto;
}

.bottom .image_container {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 45%;
  aspect-ratio: 2/1;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url('/gamelanding/images/tamsui2023/general_yt_intro.webp');
  border: 1px solid white;
}

.bottom .image_container.family {
  background-image: url('/gamelanding/images/tamsui2023/family_yt_intro.webp');
  background-position: bottom;
}

.bottom .image_container span {
  position: absolute;
  top: 2rem;
  left: 50%;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
  opacity: 0;
  color: white;
  z-index: 1;
  font-size: var(--font-clamp-h5);
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

.bottom .image_container .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 1;
  color: white;
  z-index: 1;
  font-size: 5rem;
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

.bottom .image_container::after {
  content: '';
  width: 100%;
  background-color: rgba(31, 31, 31, 0.6);
  height: 100%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: 0;
  top: 0;
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

.bottom .image_container:hover::after {
  background-color: rgba(31, 31, 31, 0.4);
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

.bottom .image_container:hover span {
  opacity: 1;
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

.bottom .image_container:hover .icon {
  font-size: 7rem;
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

.bottom .feedback_container {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.bottom .feedback_container .swiper h5 {
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
}

.bottom .feedback_container .swiper {
  width: 100%;
  margin: 0;
  height: 100%;
  padding: 0 2rem;
  position: relative;
}

.bottom .feedback_container .swiper .swiper-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 1rem;
  position: relative;
}

.bottom .feedback_container .swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  padding: 1rem 0;
}

.bottom
  .feedback_container
  .swiper
  .swiper-wrapper
  .swiper-slide
  .slide_content {
  position: relative;
  width: 80%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  margin-bottom: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0.8rem 1rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border: 1px solid white;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 1rem;
}

.bottom
  .feedback_container
  .swiper
  .swiper-wrapper
  .swiper-slide
  .slide_content
  span {
  font-size: var(--font-clamp-h6);
}

.bottom
  .feedback_container
  .swiper
  .swiper-wrapper
  .swiper-slide
  .slide_content
  div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bottom
  .feedback_container
  .swiper
  .swiper-wrapper
  .swiper-slide
  .slide_content
  div
  img {
  width: 2rem;
  border-radius: 99%;
  margin-right: 7px;
}

.bottom .swiper-button-prev,
.bottom .swiper-button-next {
  top: 70%;
  left: 0;
  right: auto;
}

.bottom .swiper-button-next {
  top: 70%;
  left: auto;
  right: 0;
}

/* ------------@introFamily------------ */
section.game_intro h5 {
  text-align: center;
  font-family: var(--font-family-Sans);
  font-size: var(--font-clamp-h5);
  margin-bottom: 0rem;
}

.top.family .info {
  background-image: url('/gamelanding/images/tamsui2023/image_epad.png');
}

/* ------------@introSin------------ */
.game_intro.addition {
  height: auto;
  margin-bottom: 8vh;
  background: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.5rem 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
}

.game_intro.addition span.sub_title {
  font-size: var(--font-clamp-span);
  margin-bottom: 5px;
}

.game_intro.addition span.title {
  font-size: var(--font-clamp-h4);
}

.game_intro.addition p {
  font-size: var(--font-clamp-h6);
  margin: 1rem 2rem;
  text-align: center;
  font-weight: 300;
}

.game_intro.addition.general p {
  font-size: var(--font-clamp-p);
  margin: 1rem 0rem;
  text-align: justify;
}

.game_intro.addition .poster_container {
  width: 60%;
  position: relative;
  margin: 1rem auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 5vh 10vw 5vw 0;
  text-align: justify;
  font-weight: 300;
}

.game_intro.addition.general .poster_container {
  width: 45%;
  min-width: 530px;
  margin: 5vh 0vw 5vw 0;
}

.game_intro.addition .poster_container > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-width: 600px;
}

.game_intro.addition .poster_container > img.general {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-width: 200px;
}

.game_intro.addition .poster_container .poster_info {
  width: 50%;
  margin: auto;
  min-width: 200px;
  max-width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.game_intro.addition .poster_container .poster_info img {
  width: 50%;
  max-width: 90px;
}

.game_intro.addition .poster_container .poster_info .btn_primary {
  margin: 1rem 0px 0.5rem 0px;
  text-align: center;
  width: 100%;
  max-width: 300px;
  font-size: var(--font-clamp-h6);
  letter-spacing: 2px;
}

/* ------------@dateInfo------------ */
#dateInfo {
  height: auto;
  padding: 5rem 2rem 0 2rem;
  margin-bottom: 8vh;
}

.reg_date_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 80%;
  position: relative;
  margin: 1rem auto;
  height: auto;
  min-height: 400px;
  background-color: black;
}

.reg_date_container .date_list {
  width: 88%;
  margin: auto;
  height: 10vh;
  min-height: 50px;
  max-height: 76px;
}

.reg_date_container .date_list .sw_date_list {
  width: 100%;
  height: 100%;
  background-color: white;
}

.reg_date_container .date_list .swiper-wrapper {
  background-color: white;
  height: 100%;
}

.reg_date_container .date_list .swiper-wrapper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-image: url('/gamelanding/images/tamsui2023/date_selected_bg.svg');
  background-size: 100% 90%;
  background-repeat: no-repeat;
  background-position: 1px 5px;
  border: 1.5px solid black;
  border-bottom: 0.5px solid black;
  text-align: center;
  overflow-wrap: normal;
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

.reg_date_container .date_list .swiper-wrapper .swiper-slide:hover {
  background-color: var(--yellow-light);
  font-weight: bold;
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

.reg_date_container .date_list .swiper-wrapper .swiper-slide.active {
  background-color: var(--yellow);
  font-weight: bold;
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

.reg_date_container .swiper-button-next,
.reg_date_container .swiper-button-prev {
  color: white;
  top: 3rem;
  font-size: 1rem;
  right: 12px;
  left: auto;
  padding: 0.5rem;
  border: none;
}

.reg_date_container .swiper-button-prev {
  right: auto;
  left: 12px;
}

.reg_date_container .swiper-button-next:after {
  content: url('https://api.iconify.design/material-symbols/navigate-next.svg?color=white');
  -webkit-transform: scale(3.5);
      -ms-transform: scale(3.5);
          transform: scale(3.5);
}

.reg_date_container .swiper-button-prev:after {
  content: url('https://api.iconify.design/material-symbols/navigate-next.svg?color=white&flip=horizontal');
  -webkit-transform: scale(3.5);
      -ms-transform: scale(3.5);
          transform: scale(3.5);
}

.reg_date_container .reg_info_container {
  width: 100%;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 0rem 0 1.5rem 0;
  border: 1px solid black;
}

.reg_date_container .reg_info_container h4 {
  text-align: center;
  margin: 0.8rem 0 0rem 0;
}

.reg_date_container .reg_info_container .game_label {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0;
  color: black;
}

.reg_info_container .game_label .cube {
  width: 20px;
  margin-right: 5px;
  height: 20px;
}

.reg_info_container .sessions_container {
  width: 100%;
  height: 100%;
  display: -ms-grid;
  display: grid;
  padding: 1.5rem;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: -webkit-min-content;
  -ms-grid-rows: min-content;
  grid-template-rows: -webkit-min-content;
  grid-template-rows: min-content;
  grid-gap: 0.8rem 1rem;
}

.reg_info_container .sessions_container > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.reg_info_container .sessions_container > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.reg_info_container .sessions_container > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}

.reg_info_container .sessions_container > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}

.reg_info_container .sessions_container .session {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.reg_info_container .sessions_container .session > span {
  font-weight: bold;
  margin-bottom: 5px;
}

.reg_info_container .sessions_container .session .link_wrap {
  width: 100%;
  height: 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.reg_info_container .sessions_container .session .link_wrap .link {
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  font-weight: 300;
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

.reg_info_container .sessions_container .session .link_wrap .link.disabled {
  pointer-events: none;
  cursor: default !important;
}

.reg_info_container .sessions_container .session .link_wrap .link.unavailable {
  pointer-events: none;
  background: lightgray;
  color: lightgray;
  position: relative;
  cursor: default !important;
}

.reg_info_container .sessions_container .session .link_wrap .link.waiting {
  pointer-events: none;
  background: #767676;
  color: white;
  position: relative;
  cursor: default !important;
}

.reg_info_container .sessions_container .session .link_wrap .link:hover {
  opacity: 0.8;
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

.reg_info_empty {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1rem auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgb(40, 39, 39);
  font-size: 5rem;
  background-color: white;
}

.reg_info_container .btn_primary {
  width: 50%;
  max-width: 180px;
  margin: auto;
  margin-top: 1.5rem;
  text-align: center;
}

/* ------------@feature------------ */
#feature {
  height: auto;
  padding: 2rem 2rem 0 2rem;
  margin-bottom: 8vh;
}

#feature .hint  {
  display: block;
  width: 100%;
  margin-top: 1.5rem;
  color: var(--yellow);
  text-align: center;
}


.feature_container {
  width: 85%;
  margin: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1rem;
}

.feature_container .feature {
  width: 100%;
  height: 100%;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.feature_container .feature img {
  width: 100%;
  aspect-ratio: 1/1;
}

.feature_container .feature span.title {
  font-size: var(--font-clamp-h5);
  color: var(--yellow);
  margin: 1rem 0;
}

.feature_container .feature small {
  color: var(--text-gray);
  text-align: justify;
  font-weight: 300;
  padding: 0 0.5rem;
}

/* ------------@priceInfo------------ */
#priceInfo {
  height: auto;
  padding: 3rem 2rem 4rem;
  margin-bottom: 8vh;
  background-color: #ffffff96;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

#priceInfo .section_title {
  -webkit-filter: invert(1);
          filter: invert(1);
}
#priceInfo .tab_wrapper {
  width: 80%;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.5rem 1fr 0.5rem 1fr 0.5rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0.5rem;
}

#priceInfo .tab {
  cursor: pointer;
  width: 100%;
  border: 4px solid white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(10px, 1.4vw, 1.2rem);
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 8px 5px;
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

#priceInfo .tab.combination::after {
  content: '最超值!!';
  position: absolute;
  left: -4px;
  top: -4px;
  width: 66px;
  padding: 3px 2px;
  border-radius: 0px 0px 0.5rem;
  background-color: var(--family-dark-red);
  color: white;
  font-size: 15px;
}

#priceInfo .tab:hover {
  background-color: rgba(56, 56, 56, 0.5);
  color: white;
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

#priceInfo .tab.active {
  cursor: pointer;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background-color: white;
  background-image: url('/gamelanding/images/tamsui2023/tab_bg.svg');
  color: black;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

#priceInfo .tab_content {
  color: white;
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 4px solid var(--yellow);
  margin: 1.5rem auto 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 0 0rem 1rem 0rem;
}

#priceInfo .tab_content h5 {
  text-align: center;
  font-weight: 500;
  margin: 1.2rem auto 1rem auto;
  color: white;
  font-size: var(--font-clamp-h5);
}

#priceInfo .tab_content .ticket_wrapper {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 1fr 0rem 1fr 0rem 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0rem;
}

#priceInfo .tab_content .ticket_wrapper .ticket_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#priceInfo .tab_content .ticket_wrapper .ticket_info img {
  width: 90%;
  height: 90%;
  max-width: 280px;
  max-height: 280px;
  /* aspect-ratio: 1/1; safari不支援 凸 */
  margin: auto;
}

#priceInfo .tab_content .btn_primary {
  width: 50%;
  min-width: 100px;
  margin: auto;
  margin-top: 0.5rem;
  text-align: center;
}

#priceInfo .tab_content .btn_primary:hover {
  -webkit-box-shadow: 0px 2px 0px orange;
          box-shadow: 0px 2px 0px orange;
  background: var(--yellow);
  color: black;
}

#priceInfo .tab_content .content {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#priceInfo .tab_content .additional h5 {
  margin-bottom: 0px;
}

#priceInfo .tab_content .additional {
  padding: 1rem;
  text-align: center;
}

#priceInfo .tab_content .additional .additional_wrapper {
  padding: 1rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#priceInfo
  .tab_content
  .additional
  .additional_wrapper.single
  .additional_item {
  padding: 1rem;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
}

.additional .additional_wrapper .additional_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.additional .additional_wrapper .additional_item:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 2rem;
  width: 100%;
}

.additional .additional_wrapper .additional_item img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 35%;
  min-width: 140px;
}

.additional .additional_wrapper .additional_item .item_desc {
  width: 100%;
  text-align: justify;
  padding: 1rem;
  color: black;
  background-color: rgba(255, 255, 255, 0.8);
}

.additional .additional_wrapper .additional_item .item_desc li {
  width: 100%;
  font-size: var(--font-clamp-small);
  margin-bottom: 0.5rem;
}

.additional .additional_wrapper .additional_item .item_desc li::marker {
  font-size: 10px;
}

.additional .additional_wrapper .additional_item .item_desc ul {
  -webkit-padding-start: 1rem;
          padding-inline-start: 1rem;
  margin: 7px 0rem;
}

.additional .additional_wrapper .additional_item .item_desc span {
  width: 100%;
  text-align: center;
  font-family: var(--font-family-Serif);
  font-weight: 500;
}

/* ------------@instruction------------ */

#instructions {
  height: auto;
  padding: 5rem 2rem 0 2rem;
  margin-bottom: 0vh;
}

.instruction_container {
  width: 80%;
  margin: 2rem auto;
  color: white;
}

.instruction_container .swiper-wrapper {
  position: relative;
  height: 60vh;
  min-height: 430px;
  max-height: 450px;
}

.instruction_container .swiper-slide {
  position: relative;
  width: 100%;
  padding: 1.5rem 5px 0 5px;
  aspect-ratio: 1/2;
  height: 100%;
}

@supports not (aspect-ratio: 1/2) {
  .instruction_container .swiper-slide .btn_primary {
    display: none;
  }
}

.instruction_container .swiper-slide::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 10px;
  -webkit-transform: translateX(-50%) rotate(45deg);
      -ms-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  color: var(--yellow);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid white;
  background: rgba(0, 0, 0);
}

.instruction_container .swiper-slide::after {
  content: attr(data-number);
  position: absolute;
  left: 50%;
  height: 30px;
  top: 5px;
  font-size: var(--font-clamp-h4);
  -webkit-transform: translateX(-50%) rotate(0deg);
      -ms-transform: translateX(-50%) rotate(0deg);
          transform: translateX(-50%) rotate(0deg);
  color: var(--yellow);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
}

.instruction_container .slide_content {
  width: 100%;
  height: 85%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border: 1px solid white;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
}

.instruction_container .slide_content .title {
  margin-top: 1.5rem;
}

.instruction_container .slide_content .btn_primary {
  width: 90%;
  margin: 0 auto;
  margin-top: 1rem;
  text-align: center;
}

.instruction_container .slide_content .info  {
  text-align: justify;
  min-height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 50%;
  overflow: hidden;
}

.instruction_container .slide_content .info p {
  font-size: var(--font-clamp-small);
  font-weight: 400;
  margin: 5px 0;
  letter-spacing: 1px;

}

.instruction_container .slide_content p span {
  color: var(--yellow);
}

.instruction_container .slide_content .img_container {
  width: 100%;
  height: 50%;
  margin: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-repeat: no-repeat;
  background-size: 90% 90%;
  background-position: center center;
  aspect-ratio: 4/3;
  background-color: rgb(255, 255, 255, 0.9);
}

.instruction_container .swiper-button-next,
.instruction_container .swiper-button-prev {
  right: 5vw;
  top: 60%;
  width: 3rem;
  font-size: 1.5rem;
  height: 3rem;
}

.instruction_container .swiper-button-prev {
  left: 5vw;
  right: auto;
  width: 3rem;
  height: 3rem;
}

/* ------------@FAQ+notice------------ */
#FAQ .info_container {
  width: 60%;
  max-width: 900px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  color: black;
  padding: 0rem 1.7rem 1.5rem;
  margin-bottom: 2rem;
  font-family: var(--font-family-Sans);
  text-align: center;
  overflow: hidden;
  border-radius: 5px;
  -webkit-transition: 0.4s all ease;
  -o-transition: 0.4s all ease;
  transition: 0.4s all ease;
}

#FAQ .info_container.hide {
  width: 60%;
  height: 72px;
  background-color: rgba(255, 255, 255, 0.9);
  color: black;
  -webkit-transition: 0.4s all ease;
  -o-transition: 0.4s all ease;
  transition: 0.4s all ease;
}

#FAQ .info_container h5 {
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: 130px;
  margin: 1.5rem 0;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 0.8;
  -webkit-transition: 0.4s all ease;
  -o-transition: 0.4s all ease;
  transition: 0.4s all ease;
}

#FAQ .info_container h5:hover {
  -webkit-transition: 0.4s all ease;
  -o-transition: 0.4s all ease;
  transition: 0.4s all ease;
  opacity: 1;
}

#FAQ .info_container.hide h5::after {
  -webkit-transform: translateY(-52%) rotate(-135deg);
      -ms-transform: translateY(-52%) rotate(-135deg);
          transform: translateY(-52%) rotate(-135deg);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.4s all ease;
  -o-transition: 0.4s all ease;
  transition: 0.4s all ease;
}

#FAQ .info_container.hide h5::before {
  -webkit-transform: translateY(-52%) rotate(225deg);
      -ms-transform: translateY(-52%) rotate(225deg);
          transform: translateY(-52%) rotate(225deg);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.4s all ease;
  -o-transition: 0.4s all ease;
  transition: 0.4s all ease;
}

#FAQ .info_container h5::after {
  content: url('https://api.iconify.design/iconamoon/arrow-top-left-6-circle-fill.svg?width=28&height=28');
  position: absolute;
  right: -1rem;
  top: 50%;
  -webkit-transform: translateY(-42%) rotate(45deg);
      -ms-transform: translateY(-42%) rotate(45deg);
          transform: translateY(-42%) rotate(45deg);
  border-radius: 99%;
  color: white;
  width: 1.8rem;
  height: 1.8rem;
  -webkit-transition: 0.4s all ease;
  -o-transition: 0.4s all ease;
  transition: 0.4s all ease;
}

#FAQ .info_container h5::before {
  content: url('https://api.iconify.design/iconamoon/arrow-top-left-6-circle-fill.svg?width=28&height=28');
  position: absolute;
  right: auto;
  left: -1rem;
  top: 50%;
  -webkit-transform: translateY(-42%) rotate(45deg);
      -ms-transform: translateY(-42%) rotate(45deg);
          transform: translateY(-42%) rotate(45deg);
  border-radius: 99%;
  color: white;
  width: 1.8rem;
  height: 1.8rem;
  -webkit-transition: 0.4s all ease;
  -o-transition: 0.4s all ease;
  transition: 0.4s all ease;
}

#FAQ .info_container ul {
  font-size: var(--font-clamp-h6);
  font-weight: 400;
  opacity: 0.9;
  padding: 0 12px 1rem 25px;
}

#FAQ .info_container ul li {
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-align: justify;
}

#FAQ .info_container .faq {
  margin-bottom: 1rem;
  font-size: var(--font-clamp-small);
  letter-spacing: 1px;
  font-weight: 400;
  opacity: 0.9;
  text-align: justify;
  padding: 0 1rem;
  margin-bottom: 1.5rem;
}

#FAQ .info_container .faq .question {
  font-size: var(--font-clamp-h6);
  color: var(--general-dark-red);
  font-weight: bold;
  opacity: 0.9;
  margin-bottom: 2px;
}

/* ------------@footer------------ */

footer {
  position: relative;
  width: 100vw;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5rem 2rem 0 2rem;
  color: white;
  z-index: 1;
  background-image: url('/gamelanding/images/tamsui2023/footer_bg.webp');
  background-size: 100% 90%;
  background-repeat: no-repeat;
  background-position: center bottom;
}

footer > div {
  padding: 2rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  text-align: center;
  font-weight: 300;
  font-size: var(--font-clamp-h6);
  letter-spacing: 1px;
  min-height: 100px;
}

footer .left img {
  width: 80%;
  max-width: 200px;
  min-width: 100px;
  margin-bottom: 0.5rem;
}

footer .left .social_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60%;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  max-width: 160px;
}

footer .left .social_links a {
  all: unset;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  width: 1.3rem;
  height: 1.3rem;
  padding: 3px;
  border-radius: 99%;
  background-color: white;
  color: black;
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

footer .left .social_links a:hover {
  opacity: 0.8;
  -webkit-filter: invert(1);
          filter: invert(1);
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

footer .left .social_links a svg {
  width: 100%;
  height: 100%;
}

/* ------------@shops------------ */

#shops {
  height: auto;
  padding: 5rem 2rem 0 2rem;
  margin-bottom: 0vh;
}

.shops_container {
  width: 80%;
  margin: 2rem auto;
  color: white;
}

.shops_container .swiper-wrapper {
  position: relative;
  height: 70vh;
  max-height: 550px;
  min-height: 400px;
}

.shops_container .swiper-slide {
  position: relative;
  width: 100%;
  padding: 0rem 5px 2rem 5px;
  aspect-ratio: 1/2;
  height: 100%;
}

.shops_container .slide_content {
  width: 100%;
  height: 85%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0.5rem;
}

.shops_container .slide_content .title {
  margin-top: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.shops_container .slide_content .address_wrap small {
  margin-left: 2px;
  font-weight: 300;
}

.shops_container .slide_content .address_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.shops_container .slide_content .img_container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-repeat: no-repeat;
  background-size: 90% 90%;
  background-position: center center;
  aspect-ratio: 4/3;
  border-radius: 4px;
  background-color: rgb(255, 255, 255, 0.9);
}

.shops_container .slide_content .img_container img {
  width: 100%;
  border-radius: 4px;
  border: 2px solid black;
  -o-object-fit: cover;
     object-fit: cover;
}

.shops_container .swiper-wrapper .link {
  margin: auto;
  display: block;
  color: black;
  border-radius: 4rem;
  background-color: var(--yellow);
  padding: 5px 10px 6px;
  width: 100px;
  text-align: center;
  -webkit-transition: .2s all ease;
  -o-transition: .2s all ease;
  transition: .2s all ease;
}

.shops_container .swiper-wrapper .link:hover {
  background-color: #f4df8b;
  -webkit-transition: .2s all ease;
  -o-transition: .2s all ease;
  transition: .2s all ease;
}


.shops_container .swiper-button-next,
.shops_container .swiper-button-prev {
  right: 5vw;
  top: 60%;
  width: 3rem;
  font-size: 1.5rem;
  height: 3rem;
}

.shops_container .swiper-button-prev {
  left: 5vw;
  right: auto;
  width: 3rem;
  height: 3rem;
}

/* ------------@彈出式視窗------------ */

.popup_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 991;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.popup_overlay.show {
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.popup_content {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80%;
  z-index: 10000;
}

.popup_content.sin {
  position: fixed;
  background-color: #333333;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50%;
  min-width: 500px;
  aspect-ratio: 1/1;
  z-index: 10000;
}

.popup_content .content_wrap {
  width: 100%;
  height: 100%;
  color: white;
  padding: 1.5rem;
  line-height: 1.5;
  text-align: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  display: flex;
}

.popup_content .content_wrap::after {
  content: url('https://api.iconify.design/ri/close-circle-line.svg?color=white');
  position: absolute;
  cursor: pointer;
  -webkit-transform: scale(2);
      -ms-transform: scale(2);
          transform: scale(2);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  top: 1.5vw;
  right: 2vw;
}

.popup_content .content_wrap .typewriter {
  white-space: pre-line;
}

.popup_close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* ------------@預約頁面------------ */
.alert_success {
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert_cancel {
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.disabled_link {
  pointer-events: none;
}

/* ------------@動畫------------ */

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg) scale(1);
            transform: translate3d(-100%, 0, 0) rotate(-120deg) scale(1);
  }
  to {
    opacity: 1;
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg) scale(1);
            transform: translate3d(-100%, 0, 0) rotate(-120deg) scale(1);
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
            transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
            transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}