/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

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;
  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;
}

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;
}

/* ---------------------------------
Base Styles
--------------------------------- */

:root {
  --inner-wrap-xl: 1920px;
  --inner-wrap-l: 1275px;
  --inner-wrap-m: 1170px;
  --inner-wrap-s: 980px;
  --inner-wrap-ss: 850px;
  --inner-wrap-xs: 750px;
  --sticky-sidebar-width: 230px;
  --font-10: 0.625rem;
  --font-12: 0.75rem;
  --font-13: 0.8125rem;
  --font-14: 0.875rem;
  --font-16: 1rem;
  --font-18: 1.125rem;
  --font-20: 1.25rem;
  --font-22: 1.375rem;
  --font-24: 1.5rem;
  --font-26: 1.625rem;
  --font-28: 1.75rem;
  --font-38: 2.375rem;
  --gray-main: #595757;
  --gray-secondary: #919191;
  --gray-light: #d5d5d5;
  --gray-lighter: #f7f7f7;
  --blue: #f5a100;
  --blue-light: #f5aa00;
  --blue-lighter: #addef2;
  --blue-medium: #58a2d0;
  --yellow: #ffff00;
  --orange: #ff6614;
  --white: #ffffff;
}

html {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, "PingFang TC", "Heiti TC", 微軟正黑體, sans-serif;
  font-size: 16px;
  color: #595757;
  color: var(--gray-main);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/* ---------------------------------
Global Styles
--------------------------------- */

.clearfix {
  display: inline-block;
}

.clearfix::after {
  content: " ";
  display: block;
  clear: both;
}

.main-section--gray {
  background: #f7f7f7;
  background: var(--gray-lighter);
}

.wrapper-l {
  max-width: 1275px;
  max-width: var(--inner-wrap-l);
  margin: 0 auto;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}

.wrapper-m {
  max-width: 1170px;
  max-width: var(--inner-wrap-m);
  margin: 0 auto;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}

.wrapper-s {
  max-width: 980px;
  max-width: var(--inner-wrap-s);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.wrapper-ss {
  max-width: 850px;
  max-width: var(--inner-wrap-ss);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.wrapper-xs {
  max-width: 750px;
  max-width: var(--inner-wrap-xs);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.wrapper-header-desktop__top {
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 4rem;
}
@media (max-width: 550px) {
  .wrapper-l,
  .wrapper-m {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.column {
  display: flex;
  flex-wrap: wrap;
}

.column--2 .column__item {
  flex: 0 0 50%;
  max-width: 50%;
}

.column--3 .column__item {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding-left: 15px;
  padding-right: 15px;
}

.column--4 .column__item {
  flex: 0 0 25%;
  max-width: 25%;
  padding-left: 15px;
  padding-right: 15px;
}

.column--6 .column__item {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.column--14 .column__item {
  flex: 0 0 7.142857%;
  max-width: 7.142857%;
}

@media (max-width: 768px) {
  .column--2 .column__item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .column--3 .column__item,
  .column--4 .column__item {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .column--6 .column__item {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .column--14 .column__item {
    flex: 0 0 14.285714%;
    max-width: 14.285714%;
  }
}

.body-content__max-width {
  max-width: 1275px;
  max-width: var(--inner-wrap-l);
  margin: 0 auto;
}

.body-content__wrapper {
  display: flex;
}

.img-full-width {
  display: block;
  max-width: 100%;
}

/* 圖片延遲加載的修飾。放置在img的上一層容器，輔助lazysizes插件 */
.is-load {
  position: relative;
  background-color: var(--gray-lighter);
  background-image: url(./img/loading.gif);
  background-position: center;
  background-size: auto;
  background-repeat: no-repeat;
  max-height: auto;
  height: auto;
}

/* ---------------------------------
全站箭頭符號
--------------------------------- */

.arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  border-top: 3px solid var(--white);
  border-left: 3px solid var(--white);
  margin: 3px;
}

.arrow--small {
  width: 8px;
  height: 8px;
  border-top-width: 2px;
  border-left-width: 2px;
  border-style: solid;
}

.arrow--left {
  transform: rotate(-45deg);
}

.arrow--right {
  transform: rotate(135deg);
}

.arrow--top {
  transform: rotate(45deg);
}

/* ---------------------------------
Button 全站按鈕
--------------------------------- */

.blue-btn {
  display: inline-block;
  font-size: 0.875rem;
  font-size: var(--font-14);
  text-align: center;
  text-decoration: none;
  background: #f5a100;
  background: var(--blue);
  color: #ffffff;
  color: var(--white);
  padding: 0.3rem;
}

.blue-btn--arrow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-size: var(--font-16);
  font-weight: bold;
  padding: 0.3rem 0.95rem;
}

.blue-btn--wide {
  padding: 0.75rem 3.125rem;
}

.blue-btn--full-width {
  display: block;
  padding: 0.75rem 3.125rem;
  font-size: 1rem;
  font-size: var(--font-16);
  font-weight: bold;
}

.news .blue-btn--arrow {
  display: none;
}

@media (max-width: 1024px) {
  .news .blue-btn--arrow {
    display: flex;
  }
}

/* ---------------------------------
Search Form 搜尋品牌框
--------------------------------- */

.search-form {
  position: relative;
}

.search-form__input {
  margin: 0;
  border: 1px solid #f5a100;
  border: 1px solid var(--blue);
  background: none;
  outline: none;
}

.search-form--half-size .search-form__input {
  width: 125px;
  padding: 15px 40px 15px 10px;
  font-size: 0.875rem;
  font-size: var(--font-14);
}

.search-form--full-size .search-form__input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  font-size: 1.125rem;
  font-size: var(--font-18);
}

.search-form__submit-btn {
  position: absolute;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.search-form--half-size .search-form__submit-btn {
  top: 12px;
  right: 12px;
}

.search-form--full-size .search-form__submit-btn {
  top: 15px;
  right: 15px;
}

.search-form__submit-icon {
  width: 25px;
  height: auto;
}

@media (max-width: 768px) {
  .search-form__wrapper {
    border-bottom: 0;
    padding-top: 1.875rem;
  }
}

/* ---------------------------------
Alert Modal 全站通知彈跳視窗
--------------------------------- */

.alert-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: visibility 1.3s, opacity 1.3s;
  pointer-events: none;
  z-index: 3;
  overflow-y: auto;
}

.is-open.alert-modal {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.alert-modal__inner {
  width: 400px;
  max-width: 100%;
  margin: 6.25rem auto 0;
  background: #ffffff;
  background: var(--white);
  transform: translateY(-50px);
  transition: transform 0.3s;
}

.is-open .alert-modal__inner {
  transform: translateY(0);
}

.alert-modal__header {
  background: #f5a100;
  background: var(--blue);
  padding: 0.5rem 0.5rem 1.875rem;
}

.alert-modal__close-btn-wrapper {
  text-align: right;
}

.alert-modal__close-btn {
  display: inline-block;
  position: relative;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.alert-modal__close-btn::before,
.alert-modal__close-btn::after {
  content: "";
  position: absolute;
  left: 15px;
  width: 1px;
  height: 33px;
  background: #ffffff;
  background: var(--white);
}

.alert-modal__close-btn::before {
  transform: rotate(45deg);
}

.alert-modal__close-btn::after {
  transform: rotate(-45deg);
}

.alert-modal__icon-wrapper {
  margin-bottom: 1.25rem;
}

.alert-modal__icon {
  display: block;
  margin: auto;
  margin-bottom: 0.625rem;
  width: 45px;
  height: auto;
}

.alert-modal__subtitle,
.alert-modal__title {
  display: block;
  text-align: center;
}

.alert-modal__subtitle {
  color: #ffffff;
  color: var(--white);
  font-size: 0.875rem;
  font-size: var(--font-14);
}

.alert-modal__title {
  color: #ffff00;
  color: var(--yellow);
  font-size: 1.125rem;
  font-size: var(--font-18);
  font-weight: bold;
}

.alert-modal__content {
  padding: 1.875rem 2.5rem;
}

.alert-modal__text {
  line-height: 1.5;
}

.alert-modal__text:not(:last-of-type) {
  margin-bottom: 1.25rem;
}

@media (max-width: 550px) {
  .alert-modal__inner {
    width: calc(100% - 40px);
    margin-top: 1.25rem;
  }
}

/* ---------------------------------
ad Modal 促銷彈跳視窗
--------------------------------- */

.ad-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  /* opacity: 0; */
  /* visibility: hidden; */
  transition: visibility 1.3s, opacity 1.3s;
  /* pointer-events: none; */
  z-index: 99;
  /* overflow-y: auto; */
}

.is-open.ad-modal {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ad-modal__inner {
  width: 80%;
  height: auto;
  max-width: 600px;
  max-height: 600px;
  margin: 0rem auto 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.ad-modal__inner img {
  width: 100%;
  height: auto;
}

.ad-modal__close-btn-wrapper {
  text-align: right;
}

.ad-modal__close-btn {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 10%;
  height: 10%;
  max-height: 80px;
  cursor: pointer;
  z-index: 1;
}
@media (min-width: 1025px) and (max-height: 900px) {
  .ad-modal__inner {
    width: auto;
    height: 60vh;
    max-height: 500px;
  }
  .ad-modal__inner img {
    width: auto;
    height: 60vh;
    max-height: 500px;
  }
}
@media (max-width: 1024px) {
  .ad-modal__close-btn {
    /* margin-top: 1.25rem; */
  }
  .ad-modal__inner {
    top: 43%;
    max-width: 600px;
    max-height: 600px;
  }
  .ad-modal__inner img {
    max-width: 600px;
    max-height: 600px;
  }
}
@media (orientation: landscape) and (max-height: 750px) {
  .ad-modal__inner {
    width: auto;
    height: 60vh;
    max-height: 500px;
  }
  .ad-modal__inner img {
    width: auto;
    height: 60vh;
    max-height: 500px;
  }
}

.ad-modal__icon-wrapper {
  margin-bottom: 1.25rem;
}

.ad-modal__icon {
  display: block;
  margin: auto;
  margin-bottom: 0.625rem;
  width: 45px;
  height: auto;
}

.ad-modal__subtitle,
.ad-modal__title {
  display: block;
  text-align: center;
}

.ad-modal__subtitle {
  color: #ffffff;
  color: var(--white);
  font-size: 0.875rem;
  font-size: var(--font-14);
}

.ad-modal__title {
  color: #ffff00;
  color: var(--yellow);
  font-size: 1.125rem;
  font-size: var(--font-18);
  font-weight: bold;
}

.ad-modal__content {
  /* padding: 1.875rem 2.5rem; */
}

.ad-modal__text {
  line-height: 1.5;
}

.ad-modal__text:not(:last-of-type) {
  margin-bottom: 1.25rem;
}
.ad-modal__btn {
  position: absolute;
  top: 83%;
  left: 50%;
  max-width: 500px;
  max-height: 90px;
  width: 54vw;
  height: 10vw;
  transform: translateX(-50%);
  cursor: pointer;
}

@media (max-width: 550px) {
  .ad-modal__inner {
    width: calc(100% - 40px);
    /* margin-top: 1.25rem; */
  }
}

/* ---------------------------------
活動倒數計時器
--------------------------------- */
#clockdiv-desktop {
  position: absolute;
  top: 4.5%;
  left: 0;
  font-family: sans-serif;
  color: #f08300;
  /* display: inline-block; */
  font-weight: 900;
  text-align: center;
  font-size: 30px;
  background-color: #f6ab00;
  display: flex;
  align-items: center;
}

#clockdiv-desktop > div {
  padding: 5px;
  background: rgba(255, 255, 255, 0.5);
  display: inline-block;
  margin-right: 5px;
}

#clockdiv-desktop div > span {
  padding: 13px;
  background: rgba(255, 255, 255, 0.8);
  display: inline-block;
}

.smalltext {
  padding-top: 5px;
  font-size: 16px;
}
#clockdiv-desktop .dayTxt {
  background: rgba(255, 255, 255, 0);
  display: unset;
}
#clockdiv-desktop .dayTxt img {
  max-width: 210px;
  width: 16vw;
  height: auto;
  margin: 0 10px;
}
@media (max-width: 1800px) {
  #clockdiv-desktop {
    /* top: 2.5%; */
    font-size: 2vw;
  }
  #clockdiv-desktop .dayTxt img {
    margin: 0 5px;
    max-width: 200px;
    width: 18vw;
  }
  #clockdiv-desktop div > span {
    padding: 5px;
  }
}
@media (max-width: 1690px) {
  #clockdiv-desktop {
    top: 2.5%;
  }
}

#clockdiv-mobile {
  position: relative;
  /* top: 4.5%; */
  left: 0;
  font-family: sans-serif;
  color: #f08300;
  /* display: inline-block; */
  font-weight: 900;
  text-align: center;
  font-size: 5vw;
  background-color: #f6ab00;
  display: flex;
  align-items: center;
  justify-content: center;
}

#clockdiv-mobile > div {
  padding: 5px;
  background: rgba(255, 255, 255, 0.5);
  display: inline-block;
  margin-right: 1vw;
}

#clockdiv-mobile div > span {
  padding: 2vw;
  background: rgba(255, 255, 255, 0.8);
  display: inline-block;
}

.smalltext {
  padding-top: 5px;
  font-size: 16px;
}
#clockdiv-mobile .dayTxt {
  background: rgba(255, 255, 255, 0);
  display: unset;
  padding: 0;
}
#clockdiv-mobile .dayTxt img {
  max-width: 250px;
  width: 49vw;
  height: auto;
  margin-right: 4vw;
}

/* ---------------------------------
Header 桌面版
--------------------------------- */

.header-desktop {
  padding: 1.25rem 0;
  border-top: 5px solid #f5a100;
  border-top: 5px solid var(--blue);
  background-color: #ffffff;
  background-color: var(--white);
  transition: background-color 0.3s;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.5);
}

.header-desktop__top {
  display: -ms-grid;
  display: grid;
  grid-column-gap: 1.25rem;
  -ms-grid-columns: (1fr);
  grid-template-columns: repeat(3, 1fr);
}

.header-desktop__logo {
  -ms-grid-column: 2;
  grid-column: 2;
}

.header-desktop__logo-img {
  display: block;
  width: 250px;
  height: auto;
  margin: 0 auto;
}

.languages {
  -ms-grid-column: 3;
  grid-column: 3;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
}

.languages__list {
  position: relative;
  display: inline-block;
  transform: translateX(101%);
  transition: transform 0.3s;
  border-left: 1px solid #595757;
  border-left: 1px solid var(--gray-main);
}

.is-active.languages__list {
  transform: translateX(0);
}

.languages__icon {
  position: absolute;
  left: -35px;
  margin-top: -3px;
  cursor: pointer;
}

.languages__item {
  display: inline-block;
}

.languages__item:first-of-type {
  padding-left: 0.5rem;
}

.languages__item:not(:last-of-type) {
  padding-right: 0.5rem;
}

.languages__link {
  display: block;
  text-decoration: none;
  font-size: 0.875rem;
  font-size: var(--font-14);
  line-height: 1.3;
  color: #595757;
  color: var(--gray-main);
}

.languages__link:hover {
  color: #f5a100;
  color: var(--blue);
}

/* 主要 Menu 選單 */

.nav-desktop {
  margin-top: 1rem;
}

.nav-desktop__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-desktop__list--zh-cn,
.nav-desktop__list--jp,
.nav-desktop__list--en {
  max-width: 500px;
  margin: auto;
}

.nav-desktop__item {
  cursor: pointer;
  margin: 0 0.5em;
}

.nav-desktop__link {
  position: relative;
  font-size: 1rem;
  font-size: var(--font-16);
  color: #595757;
  color: var(--gray-main);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-desktop__link:hover,
.is-active.nav-desktop__link {
  color: #f5a100;
  color: var(--blue);
}

.onlineStore {
  background-image: url("./img/shop_online_pc.jpg?v=003");
  background-size: contain;
  background-repeat: no-repeat;
  color: #fff;
  height: 30px;
  width: 139px;
  line-height: 30px;
  display: block;
  text-align: center;
}
.orderBtn {
  background-image: url("../../images/menu_btn/orderBtn.gif");
  background-size: contain;
  background-repeat: no-repeat;
  color: #fff;
  height: 30px;
  width: 139px;
  line-height: 30px;
  display: block;
  text-align: center;
}
@media (min-width: 1025px) {
  .onlineStore:hover {
    background-image: url("./img/shop_online_pc_over.gif?v=003");
  }
}
@media (max-width: 1024px) {
  .header-desktop {
    display: none;
  }
  .onlineStore {
    background-image: url("./img/shop_online_pc_over.gif?v=003");
  }
  .nav-mobile__link.orderBtn {
    height: 8vw;
    width: 34vw;
    max-width: 134px;
    max-height: 28px;
    display: block;
    transform: translateX(8%);
  }
}

/* ---------------------------------
Header 手機版
--------------------------------- */

.header-mobile {
  display: none;
  border-top: 5px solid #f5a100;
  border-top: 5px solid var(--blue);
}

.is-active.header-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  background: var(--white);
  overflow-y: auto;
  z-index: 3;
}

.header-mobile__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.header-mobile__logo-img {
  display: block;
  width: 40%;
  height: auto;
}

.header-mobile__hamburger-btn {
  position: relative;
  display: block;
  width: 35px;
  height: 25px;
  margin-left: 2.5rem;
  padding: 0;
  border: 0;
  background: none;
  z-index: 1;
  outline: none;
}

.header-mobile__hamburger-line {
  display: block;
  width: 35px;
  height: 3px;
  margin-top: 2.5px;
  background: #f5a100;
  background: var(--blue);
  transition: all 0.3s;
}

.header-mobile__hamburger-line::before,
.header-mobile__hamburger-line::after {
  content: "";
  display: block;
  position: absolute;
  width: 35px;
  height: 3px;
  margin-top: 2.5px;
  background: #f5a100;
  background: var(--blue);
  transition: all 0.3s;
  z-index: -1;
}

.header-mobile__hamburger-line::before {
  top: 0;
}

.header-mobile__hamburger-line::after {
  top: 20px;
}

.is-active .header-mobile__hamburger-line {
  background: none;
}

.is-active .header-mobile__hamburger-line::before,
.is-active .header-mobile__hamburger-line::after {
  top: 10px;
}

.is-active .header-mobile__hamburger-line::before {
  transform: rotate(-45deg);
}

.is-active .header-mobile__hamburger-line::after {
  transform: rotate(45deg);
}

.header-mobile__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}

.is-active .header-mobile__content {
  max-height: 1024px;
  margin-bottom: 1.875rem;
}

.header-mobile__bar-block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0.625rem 1.25rem;
  background: #f5a100;
  background: var(--blue);
}

.bar-block__languages {
  display: flex;
  margin: 0.25rem 0;
}

.bar-block__languages-item:not(:first-of-type) {
  padding-left: 1rem;
}

.bar-block__languages-item:not(:last-of-type) {
  padding-right: 1rem;
  border-right: 1px solid #ffffff;
  border-right: 1px solid var(--white);
}

.bar-block__languages-link {
  font-size: 1.125rem;
  font-size: var(--font-18);
  color: #ffffff;
  color: var(--white);
  text-decoration: none;
}

.bar-block__social {
    display: flex;
    margin: 0.25rem 0;
    gap: 0.5rem;
    justify-content: center;
}

.bar-block__social-icon {
  width: 100%;
  vertical-align: middle;
}
.bar-block__social-item {
  width: 3rem;
}
.header-mobile__search-form {
  margin: 0.25rem 0 1.25rem;
  padding: 0 1.25rem;
}

.nav-mobile__list {
  padding: 0 1.25rem;
}

.nav-mobile__item {
  padding: 4vw 0;
}

.nav-mobile__item:not(:last-of-type) {
  border-bottom: 1px solid #d5d5d5;
  border-bottom: 1px solid var(--gray-light);
}

.nav-mobile__link {
  display: block;
  color: inherit;
  font-size: 1.125rem;
  font-size: var(--font-18);
  padding-left: 1.25rem;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .header-mobile {
    display: block;
  }

  .nav-mobile__link.onlineStore {
    height: 8vw;
    width: 34vw;
    max-width: 134px;
    max-height: 28px;
    display: block;
    transform: translateX(8%);
  }
}

@media (max-width: 550px) {
  .header-mobile__logo-img {
    width: 70%;
  }
  .bar-block__languages-link {
    font-size: 1rem;
    font-size: var(--font-16);
  }
  .bar-block__languages-item:not(:first-of-type) {
    padding-left: 0.5rem;
  }
  .bar-block__languages-item:not(:last-of-type) {
    padding-right: 0.5rem;
  }
}

/* ---------------------------------
Footer 桌面版
--------------------------------- */

.footer-desktop {
  margin-top: 1.5625rem;
  padding-bottom: 1.5625rem;
  border-bottom: 5px solid #f5a100;
  border-bottom: 5px solid var(--blue);
}

.footer-desktop__content {
  display: flex;
  justify-content: space-between;
}

.footer-desktop__right {
  text-align: right;
}

.footer-margin-bottom {
  margin-bottom: 0.625rem;
}

.footer-desktop__text,
.footer-desktop__menu-link {
  font-size: 0.75rem;
  font-size: var(--font-12);
}

.footer-desktop__text {
  display: block;
  line-height: 1.2;
}

.footer-desktop__menu-item {
  display: inline-block;
  padding-bottom: 0.3rem;
}

.footer-desktop__menu-item:not(:first-of-type) {
  padding-left: 0.3rem;
}

.footer-desktop__menu-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-desktop__menu-link:hover {
  color: #f5a100;
  color: var(--blue);
}

.footer-desktop__logo-img {
  width: 120px;
}

@media (max-width: 1024px) {
  .footer-desktop {
    display: none;
  }
}

/* ---------------------------------
Footer 手機版
--------------------------------- */

.footer-mobile {
  display: none;
  background: #f7f7f7;
  background: var(--gray-lighter);
}

.footer-mobile__content {
  padding: 1.5rem;
}

.footer-mobile__menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-bottom: 1.25rem;
}

.footer-mobile__menu-item:not(:first-of-type) {
  padding-left: 0.625rem;
}

.footer-mobile__menu-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.75rem;
  font-size: var(--font-12);
  line-height: 2.5;
}

.footer-mobile__bottom {
  text-align: right;
}

.footer-mobile__info {
  margin-bottom: 0.625rem;
}

.footer-mobile__text {
  display: block;
  font-size: 0.625rem;
  font-size: var(--font-10);
  line-height: 1.5;
}

.footer-mobile__logo-img {
  width: 120px;
}

@media (max-width: 1024px) {
  .footer-mobile {
    display: block;
  }
}

/* ---------------------------------
Hero Carousel 首頁圖片輪播
--------------------------------- */
.main-section.index {
  max-width: 100%;
  width: 100%;
}
.hero-carousel .owl-height {
  overflow: hidden;
}

@media (min-width: 641px) {
  .hero-carousel .is-load {
    width: 100%;
    height: 37.5vw;
  }
}

@media (max-width: 640px) {
  .hero-carousel .is-load {
    max-height: 900px;
    height: 140vw;
  }
}

.hero-carousel .lazyload {
  opacity: 0;
  /* transform: scale(0.8); */
}

.hero-carousel .lazyloaded {
  opacity: 1;
  /* transform: scale(1); */
  transition: all 700ms;
}

.hero-carousel__img {
  object-fit: cover;
  object-position: 50% 0;
}

.hero-carousel .owl-dots {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  height: 0;
}

.hero-carousel button.owl-dot {
  width: 8px;
  height: 8px;
  margin: -1% 10px 1rem;
  border-radius: 50%;
  background: #ffffff;
  background: var(--white);
  outline: none;
  position: relative;
  z-index: 1;
}

.hero-carousel button.owl-dot.active {
  background: #f5a100;
  background: var(--blue);
}

.hero-carousel button.owl-dot:hover {
  background: #f5a100;
  background: var(--blue);
}

@media (max-width: 1200px) {
  .hero-carousel button.owl-dot {
    margin-top: -1.5%;
  }
}
@media (max-width: 640px) {
  .hero-carousel .owl-dots {
    display: none;
  }
}

/* 上、下導行鈕 */
.hero-carousel .owl-nav.disabled {
  display: block !important;
}
.hero-carousel .owl-prev,
.hero-carousel .owl-next {
  position: absolute;
  z-index: 1;
  top: 0%;
  max-width: 55px;
  width: 8vw;
  height: 90%;
  padding: 0;
  display: block;
  text-indent: -999999px;
  color: #fff;
  overflow: hidden;
}
.hero-carousel .owl-prev {
  left: 2%;
}
.hero-carousel .owl-next {
  right: 2%;
}
.hero-carousel .owl-prev span,
.hero-carousel .owl-next span {
  position: absolute;
  width: 3.5vw;
  height: 3.5vw;
  cursor: pointer;
  transform: rotate(-45deg);
  text-indent: -999999px;
}

.hero-carousel .owl-prev span {
  left: 50%;
  border-top: 2px solid rgba(0, 0, 0, 0.5);
  border-left: 2px solid rgba(0, 0, 0, 0.5);
  box-shadow: -2px -2px 0px 1px rgb(255 255 255);
}
.hero-carousel .owl-next span {
  right: 50%;
  border-bottom: 2px solid rgba(0, 0, 0, 0.5);
  border-right: 2px solid rgba(0, 0, 0, 0.5);
  box-shadow: 2px 2px 0px 1px rgb(255 255 255);
}
@media (max-width: 640px) {
  .hero-carousel .owl-prev,
  .hero-carousel .owl-next {
    max-height: 900px;
    height: 93%;
  }
  .hero-carousel .owl-prev span,
  .hero-carousel .owl-next span {
    width: 4vw;
    height: 4vw;
  }
}

/* 影片類型的輪播 */
.video-container {
  /* background-color: #000 !important; */
}
.hero-carousel iframe {
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 37.5vw;
}
@media (max-width: 640px) {
  .hero-carousel iframe {
    max-height: 900px;
    height: 140vw;
  }
}

/* ---------------------------------
Text Carousel 首頁跑馬燈文字輪播
--------------------------------- */
.notice-block {
  position: relative;
  display: flex;
  align-items: center;
}

.notice-block__icon {
  width: 25px;
  height: 25px;
}

.text-carousel {
  display: block;
  width: 95%;
  height: auto;
  padding: 1.25rem 5rem 1.25rem 1.25rem;
}

.text-carousel__link {
  text-decoration: none;
}

.text-carousel__link,
.text-carousel__link:hover,
.text-carousel__link:active,
.text-carousel__link:visited {
  color: #595757;
  color: var(--gray-main);
}

.text-carousel__text {
  line-height: 1.5;
}

.text-carousel .owl-nav button.owl-prev,
.text-carousel .owl-nav button.owl-next {
  width: 35px;
  height: 35px;
  background: #ffffff;
  background: var(--white);
  padding: 10px;
  border: 1px solid #d5d5d5;
  border: 1px solid var(--gray-light);
  outline: none;
  text-indent: 1;
}

.text-carousel .owl-nav button.owl-prev {
  margin-right: 10px;
}

.text-carousel button.owl-prev span,
.text-carousel button.owl-next span {
  position: relative;
  top: -10%;
  left: 1px;
  color: #1fa6eb;
  color: var(--blue);
  font-size: 1.5rem;
}

@media (min-width: 551px) {
  .text-carousel .owl-nav {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}

@media (max-width: 550px) {
  .notice-block__icon {
    align-self: flex-start;
    margin-top: 1.5rem;
  }

  .text-carousel {
    padding: 0.9rem;
  }

  .text-carousel .owl-nav {
    margin-top: 1rem;
    text-align: right;
  }

  .text-carousel .owl-nav button.owl-prev,
  .text-carousel .owl-nav button.owl-next {
    width: 45px;
    height: 45px;
  }

  .text-carousel button.owl-prev span,
  .text-carousel button.owl-next span {
    font-size: 1.875rem;
  }
}

/* ---------------------------------
Fixed Sidebar (Desktop and Mobile)
--------------------------------- */

.fixed-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  max-width: 500px;
  height: 100vh;
  border-top: 5px solid #f5a100;
  border-top: 5px solid var(--blue);
  background: #f7f7f7;
  background: var(--gray-lighter);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0, 0, 0.21, 1);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0, 0, 0.21, 1);
  -webkit-overflow-scrolling: touch;
  will-change: transform;
  outline: none;
  z-index: 2;
}

.is-open.fixed-sidebar {
  transform: translateX(0);
}

.fixed-sidebar__trigger {
  position: absolute;
  top: -5px;
  left: -60px;
  border-top: 5px solid #f5a100;
  border-top: 5px solid var(--blue);
}

.fixed-sidebar__trigger-btn {
  width: 60px;
  height: 134px;
  border: none;
  outline: none;
  padding: 10px;
  background: #f5aa00;
  background: var(--blue-light);
  color: #ffffff;
  color: var(--white);
  cursor: pointer;
}

.trigger-btn__arrow {
  position: relative;
  left: 5px;
  display: block;
  width: 18px;
  height: 18px;
  border-top: 4px solid var(--white);
  border-left: 4px solid var(--white);
  border-top: 4px solid #ffffff;
  border-left: 4px solid #ffffff;
  transform: rotate(-45deg);
  margin: 1.25rem auto 1.875rem;
}

.is-open .trigger-btn__arrow {
  transform: rotate(135deg);
  left: -5px;
}

.trigger-btn__text {
  display: block;
  margin: auto;
  font-size: 0.625rem;
  font-size: var(--font-10);
  font-weight: bold;
}

/* Hide Scrollbar */

.fixed-sidebar__container {
  box-sizing: content-box;
  max-width: 500px;
  width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  height: 100%;
  padding-right: 17px;
}

.fixed-sidebar__inner-container {
  padding: 20px 0;
}

.fixed-sidebar__search-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 2.25rem;
  padding: 0 1.25rem;
}

.social-block {
  margin-left: 1.2rem;
}
.social-block .social-block__item {
  margin-right: 0.8rem;
}

.social-block.zh-cn,
.social-block.jp,
.social-block.en {
  margin-left: 0;
}

.social-block--mobile {
  margin: 0 1rem 1.5rem;
}

.social-block__list {
  display: flex;
}

.social-block__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.social-block__icon {
  width: 55px;
}

.social-block__text {
  font-size: 0.75rem;
  font-size: var(--font-12);
  line-height: 1.2;
}

.opening-hours {
  margin-bottom: 1.5rem;
}

.opening-hours--bg {
  background: url("./img/tc_bg_text_small.png") no-repeat;
  padding: 1.25rem 1.25rem 0;
}

.opening-hours--mobile {
  margin: 0 1.25rem 1.5rem;
}

.opening-hours__title {
  font-size: 1.125rem;
  font-size: var(--font-18);
  font-weight: bold;
}

.opening-hours__list {
  margin-top: 0.8rem;
}

.opening-hours__item {
  font-size: 0.8125rem;
  font-size: var(--font-13);
  font-weight: bold;
  line-height: 1.7;
}

.opening-hours__point.opening-hours__item {
  padding-left: 1rem;
}

.opening-hours--mobile .opening-hours__item {
  font-size: 0.875rem;
  font-size: var(--font-14);
}

.opening-hours__point {
  position: relative;
}

.opening-hours__point::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #595757;
  background: var(--gray-main);
}

.opening-hours--mobile .opening-hours__point::before {
  top: 10px;
}

.info-card--1-column {
  background: #f7f7f7;
  background: var(--gray-lighter);
}

.info-card--2-column {
  padding: 0 1.25rem;
}

.info-card__item {
  display: flex;
  align-items: center;
  background: #ffffff;
  background: var(--white);
}

.info-card--1-column .info-card__item {
  flex-direction: column;
}

.info-card__item:not(:last-of-type) {
  margin-bottom: 1.125rem;
}

.info-card--1-column .info-card__image-wrapper {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}

.info-card--2-column .info-card__image-wrapper {
  width: 200px;
  height: 200px;
}

.info-card--1-column .info-card__image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-card--2-column .info-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-card__content {
  text-align: center;
}

.info-card--1-column .info-card__content {
  padding: 1.25rem;
}

.info-card--2-column .info-card__content {
  flex: 1;
  padding: 1.25rem;
}

.info-card__title {
  line-height: 1.1;
  font-size: 1.375rem;
  font-size: var(--font-22);
  font-weight: bold;
}

.info-card__summary {
  font-size: 0.8125rem;
  font-size: var(--font-13);
  line-height: 1.5;
  margin: 1.25rem 0;
}

.info-card--2-column .info-card__summary {
  text-align: left;
}

.fixed-sidebar-mobile {
  display: none;
  background: #f7f7f7 url("./img/tc_bg_text_small.png") no-repeat;
  background: var(--gray-lighter) url("./img/tc_bg_text_small.png") no-repeat;
  background-position: 100% 0;
  border-top: 1px solid #595757;
  border-top: 1px solid var(--gray-main);
}

.fixed-sidebar-mobile__wrapper {
  padding-top: 3.75rem;
}

@media (max-width: 1024px) {
  .fixed-sidebar {
    display: none;
  }
  .fixed-sidebar-mobile {
    display: block;
  }
}

/* ---------------------------------
Fixed To Top Menu 回到頂端
--------------------------------- */

.fixed-top-menu {
  position: fixed;
  bottom: 5.625rem;
  right: 2.5rem;
  height: auto;
  border-radius: 40px;
  background: #ffffff;
  background: var(--white);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  z-index: 1;
  transition: visibility 0.3s;
  visibility: hidden;
}

.is-visible.fixed-top-menu {
  visibility: visible;
}

.fixed-top-menu__content .fixed-top-menu__social-wrapper:not(:last-of-type) {
  margin-bottom: 0.5rem;
}
.fixed-top-menu__content .fixed-top-menu__social-wrapper:nth-of-type(2) {
  margin-bottom: 0.8rem;
}

.fixed-top-menu__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 20px 14px;
}

.fixed-top-menu__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.fixed-top-menu__social-icon {
  width: 30px;
}

.fixed-top-menu__top-text {
  position: relative;
  font-size: 0.75rem;
  font-size: var(--font-12);
}

.fixed-top-menu .arrow--small {
  display: block;
  margin: auto;
  border-color: inherit;
}

@media (min-width: 1281px) {
  .fixed-top-menu {
    right: calc((100vw - 1281px) / 3);
  }
}

@media (max-width: 1024px) {
  .fixed-top-menu {
    display: none;
  }
}

/* ---------------------------------
Sticky Sidebar 內頁左側 Sidebar
--------------------------------- */

.sticky-sidebar {
  position: relative;
  width: 230px;
  width: var(--sticky-sidebar-width);
}

.sticky-sidebar::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  background: #f7f7f7 url("./img/tc_bg_text.png") 99% 0 no-repeat;
  background: var(--gray-lighter) url("./img/tc_bg_text.png") 99% 0 no-repeat;
  z-index: -1;
}

.sticky-sidebar__list {
  position: relative;
  width: 230px;
  width: var(--sticky-sidebar-width);
  margin-top: 3.75rem;
  /* margin-top: 5rem; */
}

.sticky-sidebar__item {
  border-bottom: 1px solid transparent;
  cursor: pointer;
  transition: color 0.3s;
}

.is-active.sticky-sidebar__item,
.sticky-sidebar__item:hover {
  background: #ffffff;
  background: var(--white);
  border-bottom: 1px solid #d5d5d5;
  border-bottom: 1px solid var(--gray-light);
  z-index: 2;
}

.sticky-sidebar__link {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0.75rem 1.5rem 0.75rem 1.25rem;
  text-decoration: none;
  text-align: right;
  color: inherit;
  transition: color 0.3s;
}

.is-active .sticky-sidebar__link,
.sticky-sidebar__item:hover .sticky-sidebar__link {
  color: #f5a100;
  color: var(--blue);
}

.sticky-sidebar__arrow {
  width: 7px;
  height: 7px;
  margin-top: 1px;
  margin-left: 1.25rem;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-style: solid;
  border-color: #d5d5d5;
  border-color: var(--gray-light);
  transform: rotate(-45deg);
  transition: border-color 0.3s;
}

.is-active .sticky-sidebar__arrow,
.sticky-sidebar__item:hover .sticky-sidebar__arrow {
  border-color: #f5a100;
  border-color: var(--blue);
}

/* 手機版本 */
@media (max-width: 1024px) {
  .sticky-sidebar {
    display: none;
  }
  .select-menu__md{
    position: absolute;
    width: auto;
    left: 0;
    right: 0;
    top: 10%;
    background-color: #f7f7f7;
    background-color: var(--gray-lighter);
    color: inherit;
    font-size: 1.125rem;
    font-size: var(--font-18);
    cursor: pointer;
    padding: 0 1.25rem;
    display: none;
  }
  .main-content__section--select-menu.visible .select-menu__md{
    display: block;
  }
  .sticky-sidebar__list {
    border: 2px solid #d5d5d5;
    border: 2px solid var(--gray-light);
    width: 100%;
    /* background: var(--gray-secondary); */
    color: var(--gray-main);
  }
  .sticky-sidebar__link {
    justify-content: flex-start;
  }
  .sticky-sidebar__arrow{
    display: none;
  }

}

/* ---------------------------------
Main Content 內頁右側內容共用元件
--------------------------------- */

.main-content {
  width: calc(100% - 230px);
  width: calc(100% - var(--sticky-sidebar-width));
  max-width: 100%;
  padding: 2.5rem 0;
  box-shadow: -12px 0 8px -8px rgba(0, 0, 0, 0.1);
}

.main-content.service {
  padding-bottom: 5rem;
}

.main-content__section {
  padding: 0 1.25rem;
}

.main-content__section--no-padding {
  padding: 0;
}

.main-content__section--select-menu {
  display: none;
  margin-bottom: 2.5rem;
  padding: 1.25rem;
  background: #f7f7f7;
  background: var(--gray-lighter);
}

.main-content__section--news {
  margin-bottom: 3.125rem;
}

.main-content__section--tab {
  margin-top: 1.875rem;
}

.main-content__section-divider {
  padding-bottom: 1.875rem;
  border-bottom: 1px solid #d5d5d5;
  border-bottom: 1px solid var(--gray-light);
}

.main-content__section--search-result {
  margin: 1.875rem 0 2.5rem;
}

.main-content__section--service {
  margin-top: 5rem;
}

.main-content__section--service-feedback {
  margin-bottom: 5rem;
}

.main-content__section--about {
  margin-bottom: 3.125rem;
}

.main-content__section--outletpark {
  width: 750px;
  width: var(--inner-wrap-xs);
  max-width: 100%;
}

.main-content__section--traffic:not(:last-of-type) {
  margin-bottom: 4.25rem;
}

.main-content__heading {
  margin-bottom: 1.5rem;
}

.single-content {
  display: block;
  padding: 3.75rem 0;
}

@media (max-width: 1024px) {
  .main-content {
    width: 100%;
    padding-top: 0;
    box-shadow: none;
  }
  .main-content__section--select-menu {
    display: block;
    position: relative;
    z-index: 2;
  }
  .main-content__section--search {
    background: #f7f7f7;
    background: var(--gray-lighter);
    padding-top: 1.875rem;
  }
  .main-content__section-divider {
    border-bottom: 0;
  }
  .main-content__heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }
}

.center-bold-heading {
  text-align: center;
  font-size: 1.25rem;
  font-size: var(--font-20);
  font-weight: bold;
}

.center-bold-heading--large {
  font-size: 1.625rem;
  font-size: var(--font-26);
  line-height: 1.5;
}

.left-large-heading {
  font-size: 1.625rem;
  font-size: var(--font-26);
  font-weight: bold;
  line-height: 1.2;
}

.double-line-heading {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-width: 1px;
  border-style: solid;
  -webkit-border-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ffffff),
    color-stop(10%, #addef2),
    color-stop(16%, #f5aa00),
    color-stop(55%, #f5a100),
    color-stop(84%, #f5aa00),
    color-stop(90%, #addef2),
    to(#ffffff)
  );
  -webkit-border-image: -webkit-linear-gradient(
    left,
    #ffffff 0%,
    #addef2 10%,
    #f5aa00 16%,
    #f5a100 55%,
    #f5aa00 84%,
    #addef2 90%,
    #ffffff 100%
  );
  -o-border-image: -o-linear-gradient(
    left,
    #ffffff 0%,
    #addef2 10%,
    #f5aa00 16%,
    #f5a100 55%,
    #f5aa00 84%,
    #addef2 90%,
    #ffffff 100%
  );
  border-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ffffff),
    color-stop(10%, #addef2),
    color-stop(16%, #f5aa00),
    color-stop(55%, #f5a100),
    color-stop(84%, #f5aa00),
    color-stop(90%, #addef2),
    to(#ffffff)
  );
  border-image: linear-gradient(
    90deg,
    #ffffff 0%,
    #addef2 10%,
    #f5aa00 16%,
    #f5a100 55%,
    #f5aa00 84%,
    #addef2 90%,
    #ffffff 100%
  );
  border-image-slice: 2;
  color: #f5a100;
  color: var(--blue);
  font-size: 1.125rem;
  font-size: var(--font-18);
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 2px;
}

.blue-line-heading {
  position: relative;
  margin-left: 12px;
  margin-bottom: 1.25rem;
  letter-spacing: 1px;
}

.blue-line-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: -12px;
  width: 3px;
  height: 100%;
  background: #f5a100;
  background: var(--blue);
}

.blue-icon-heading {
  display: flex;
  align-items: center;
  font-size: 1.625rem;
  font-size: var(--font-26);
  font-weight: bold;
  letter-spacing: 3px;
}

.blue-icon-heading::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-right: 0.625rem;
  padding-right: 25px;
  background-size: cover;
}

.blue-icon-heading--hours::before {
  background-image: url("./img/service_heading_icon_1.png?v=2021");
}

.blue-icon-heading--information {
  margin-right: 0.9375rem;
}

.blue-icon-heading--information::before {
  background-image: url("./img/service_heading_icon_2.png?v=2021");
}

.blue-icon-heading--others::before {
  background-image: url("./img/service_heading_icon_3.png?v=2021");
}

.blue-icon-heading--tax::before {
  background-image: url("./img/service_heading_icon_4.png?v=2021");
}
.blue-icon-heading--lost::before {
  background-image: url("./img/service_heading_icon_5.svg?v=2021");
}
.blue-icon-heading--traffic-location::before {
  background-image: url("../assets/img/traffic/traffic_heading_icon_1.png?v=2021");
}

.blue-icon-heading--traffic-public::before {
  background-image: url("../assets/img/traffic/traffic_heading_icon_2.png?v=2021");
}

.blue-icon-heading--traffic-car::before {
  background-image: url("../assets/img/traffic/traffic_heading_icon_3.png?v=2021");
}

.blue-icon-heading--traffic-explore::before {
  background-image: url("../assets/img/traffic/traffic_heading_icon_4.png?v=2021");
}

.small-note-text {
  font-family: Arial;
  font-size: 0.75rem;
  font-size: var(--font-12);
}

.blue-dot-text {
  display: inline-block;
  position: relative;
  padding-left: 18px;
  line-height: 1.5;
}

.blue-dot-text::before {
  position: absolute;
  top: 10px;
  left: 0;
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 5px;
  border-radius: 50%;
  background: #f5a100;
  background: var(--blue);
}

.select-menu__wrapper {
  position: relative;
  display: block;
  width: 100%;
}

.select-menu {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 10px 0 10px 15px;
  border: 1px solid #f5a100;
  border: 1px solid var(--blue);
  border-right-width: 30px;
  border-radius: 0;
  background-color: #f7f7f7;
  background-color: var(--gray-lighter);
  line-height: 1.5;
  color: inherit;
  font-size: 1.125rem;
  font-size: var(--font-18);
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.select-menu__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 100%;
  background: #f5a100;
  background: var(--blue);
}

.select-menu__wrapper::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 9px;
  margin-top: -2.5px;
  pointer-events: none;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid #ffffff;
  border-top: 10px solid var(--white);
  z-index: 1;
}

@media (max-width: 1024px) {
  .center-bold-heading {
    font-size: 1.375rem;
    font-size: var(--font-22);
  }
}

@media (max-width: 550px) {
  .blue-line-heading {
    font-size: 1.125rem;
    font-size: var(--font-18);
  }
}

/* ---------------------------------
最新消息 / 總覽頁輪播
--------------------------------- */

.multi-items-carousel {
  border: 1px solid #d5d5d5;
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  box-shadow: 0 6px 0px #f7f7f7;
  box-shadow: 0 6px 0px var(--gray-lighter);
}

.multi-items-carousel .owl-stage-outer {
  margin: 3px;
  /* 遮住第三個項目右邊的灰色border */
}

.multi-items-carousel .owl-stage {
  display: flex;
}

.multi-items-carousel .owl-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.multi-items-carousel .owl-item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  width: 1px;
  height: 75%;
  background: #d5d5d5;
  background: var(--gray-light);
}

.multi-items-carousel .owl-nav button.owl-prev,
.multi-items-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: 1px solid #d5d5d5;
  border: 1px solid var(--gray-light);
  font-size: 2.375rem;
  font-size: var(--font-38);
  outline: none;
}

.multi-items-carousel .owl-nav button.owl-prev {
  left: 0;
  margin-left: -1px;
}

.multi-items-carousel .owl-nav button.owl-next {
  right: 0;
  margin-right: -1px;
}

.multi-items-carousel .owl-nav button.owl-prev span,
.multi-items-carousel .owl-nav button.owl-next span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #f5a100;
  color: var(--blue);
  font-size: 1.5rem;
}

/* 當滑到第一個和最後一個時，箭頭顏色變淡 */

.multi-items-carousel .owl-nav button.owl-prev.disabled span,
.multi-items-carousel .owl-nav button.owl-next.disabled span {
  color: #addef2;
  color: var(--blue-lighter);
}

@media (max-width: 550px) {
  .multi-items-carousel__title {
    font-size: 1.125rem;
    font-size: var(--font-18);
  }
  .multi-items-carousel__info {
    font-size: 0.875rem;
    font-size: var(--font-14);
  }
}

/* ---------------------------------
最新消息 / 單一活動頁面列表
--------------------------------- */

.news-card__item {
  text-align: center;
}

.news-card__item--border {
  margin-bottom: 2.5rem;
}

.news-card__item--border:not(:nth-of-type(3n)):not(:last-of-type) {
  border-right: 1px solid #d5d5d5;
  border-right: 1px solid var(--gray-light);
}

.news-card__item--carousel {
  padding: 1.25rem 2.5rem 2.5rem;
}

.news-card__link {
  text-decoration: none;
  color: inherit;
}

.news-card__img {
  display: block;
  width: 200px;
  height: auto;
  max-width: 100%;
  margin: 0 auto 1rem;
  object-fit: contain;
}

.news-card__img--carousel {
  width: 200px !important;
}

.news-card__title {
  margin-bottom: 0.625rem;
  font-size: 1rem;
  font-size: var(--font-16);
  font-weight: bold;
  line-height: 1.3;
}

.news-card__info {
  font-size: 0.875rem;
  font-size: var(--font-14);
}

.news-pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 2px solid #d5d5d5;
  border-top: 2px solid var(--gray-light);
}

.news-pagination__link,
.news-pagination__link-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-top: -2px;
  text-decoration: none;
  color: inherit;
}

.is-active .news-pagination__link {
  font-weight: bold;
  border-top: 2px solid #595757;
  border-top: 2px solid var(--gray-main);
}

.news-pagination__arrow {
  border-color: #919191;
  border-color: var(--gray-secondary);
}

@media (max-width: 768px) {
  .news-card__item--border:not(:nth-of-type(3n)):not(:last-of-type) {
    border-right: 0;
  }
  .news-card__item--border:not(:nth-of-type(2n)):not(:last-of-type) {
    border-right: 1px solid #d5d5d5;
    border-right: 1px solid var(--gray-light);
  }
  .news-card__item--border .news-card__title {
    font-size: 0.75rem;
    font-size: var(--font-12);
  }
  .news-card__item--border .news-card__info {
    font-size: 0.75rem;
    font-size: var(--font-12);
  }
}

/* ---------------------------------
最新消息 / 內文頁
--------------------------------- */

.news-detail {
  padding: 0 3.75rem;
}

.news-detail__header {
  margin-bottom: 1.25rem;
}

.news-detail__heading-date {
  display: block;
  margin-bottom: 2.5rem;
  font-size: 0.875rem;
  font-size: var(--font-14);
  text-align: center;
}

.news-detail__img {
  margin: 0 auto 1.5rem;
}

.news-detail__content-holder {
  display: flex;
  padding-top: 1.5rem;
  border-top: 1px solid #f5a100;
  border-top: 1px solid var(--blue);
}

.news-detail__logo-holder {
  width: 200px;
  height: 200px;
  margin-right: 1.25rem;
}

.news-detail__text-holder {
  flex: 1;
}

/* 當頁面有 Logo 區塊時 */

.news-detail__logo-holder + .news-detail__text-holder .news-detail__list {
  padding-left: 0;
}

.news-detail__item {
  display: flex;
}

@media (max-width: 768px) {
  .news-detail {
    padding: 0;
  }
  .news-detail__content-holder {
    flex-direction: column;
  }
  .news-detail__logo-holder {
    width: 150px;
    height: 150px;
    margin: auto;
  }
  /* 當頁面有 Logo 區塊時 */
  .news-detail__logo-holder + .news-detail__text-holder {
    margin-left: 0;
    margin-top: 2rem;
  }
}

/* ---------------------------------
交通資訊
--------------------------------- */

/* 地理位置 */
.traffic__content {
  margin-top: 1.875rem;
}

.traffic__list-block {
  margin-top: 2.5rem;
}

.traffic__list-block--no-padding {
  margin-top: 0;
}

.traffic-location__btn-holder {
  margin-top: 1.25rem;
  text-align: center;
}

.traffic-location__btn,
.traffic-public__bus-stop-btn,
.traffic-car__parking-btn {
  max-width: 350px;
  width: 100%;
  line-height: 1.4;
}

/* 大眾運輸 */
.traffic-public__free-bus-wrapper {
  display: flex;
  align-items: center;
}
.traffic-public__free-bus-wrapper p {
  /* width: 27%; */
  margin-right: 0.8rem;
}

.traffic-public__free-bus-btn {
  padding: 0.75rem 1.2rem;
  line-height: 1.4;
  margin-right: 0.375rem;
  /* width: 20%; */
}

.traffic-public__free-bus-btn:last-of-type {
  margin-right: 0;
}

.traffic-public__free-bus-btn:nth-of-type(2) {
  width: 33%;
}
.traffic-public__free-bus-wrapper p:lang(zh-tw),
.traffic-public__free-bus-wrapper p:lang(zh-cn) {
  /* width: 20%; */
}
.traffic-public__free-bus-btn:nth-of-type(1):lang(zh-tw),
.traffic-public__free-bus-btn:nth-of-type(1):lang(zh-cn) {
  width: 25%;
}
.traffic-public__free-bus-btn:nth-of-type(2):lang(zh-tw),
.traffic-public__free-bus-btn:nth-of-type(2):lang(zh-cn) {
  width: 30%;
}
.traffic-public__free-bus-btn:nth-of-type(3):lang(zh-tw),
.traffic-public__free-bus-btn:nth-of-type(3):lang(zh-cn) {
  width: 32%;
}

.traffic-public__free-bus-btn .arrow {
  margin-left: 0.625rem;
}

.traffic-tab__btn {
  position: relative;
  display: inline-block;
  width: 190px;
  padding: 0.3125rem 0.625rem;
  background: #919191;
  background: var(--gray-secondary);
  cursor: pointer;
}

.traffic-tab__btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top-color: #ffffff;
  border-right-color: #ffffff;
  border-top-color: var(--white);
  border-right-color: var(--white);
}

.traffic-tab__btn:first-of-type {
  margin-right: -3px;
}

.is-selected.traffic-tab__btn {
  padding-top: 0.75rem;
  background: #f5a100;
  background: var(--blue);
}

.traffic-tab__btn-arrow {
  display: block;
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  transform: rotate(-45deg) translateY(-50%);
}

.is-selected .traffic-tab__btn-arrow {
  transform: rotate(45deg);
}

.traffic-tab__btn-title {
  display: block;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 2px;
  color: #ffffff;
  color: var(--white);
}

.traffic-tab__container {
  display: none;
  margin-top: 0.625rem;
}

.is-selected.traffic-tab__container {
  display: block;
}

.traffic-tab__bus-title,
.traffic-tab__thsr-title,
.traffic-tab__mrt-title {
  display: none;
}

.traffic-public__info-list {
  margin-top: 1.5rem;
}

.traffic-public__info-item {
  line-height: 2;
}

.traffic-public__btn-holder {
  text-align: center;
  margin: 1.25rem 0;
}

.traffic-public__e-bus-text::before {
  top: 18px;
}

.traffic-public__e-bus-btn {
  margin: 0 0.625rem;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-size: var(--font-16);
  font-weight: bold;
}

.traffic-public__mop-bus-img {
  margin-top: 1.875rem;
}

/* 自行開車 */

.traffic-car__route-content {
  margin-top: 1.875rem;
}

.traffic-car__route-info-list {
  margin-top: 1.5rem;
}

.traffic-car__route-info-item {
  line-height: 2;
}

.traffic-car__parking-info {
  margin: 2.5rem 0 1.25rem;
}

.traffic-car__parking-info-title {
  margin-bottom: 0.5rem;
}

.traffic-car__blue-dot-text {
  display: block;
}

.traffic-car__blue-dot-text::before {
  top: 11px;
}

.traffic-car__highlight {
  font-size: 1.375rem;
  font-size: var(--font-22);
  color: #f5a100;
  color: var(--blue);
}

.traffic-car__parking-info-list {
  margin: 0.5rem 0 0 1.25rem;
}

.traffic-car__parking-info-item {
  line-height: 1.5;
}

.traffic-car__btn-holder {
  text-align: center;
}

.traffic-car__note-holder {
  text-align: center;
  margin-top: 0.625rem;
}

.traffic-car__note-text {
  line-height: 1.4;
}

/* 設施周邊觀光景點 */

.traffic-explore__intro-wrapper {
  margin-top: 1.875rem;
}

.traffic-explore__intro-text {
  margin: 1.25rem 0 0 2rem;
  line-height: 1.5;
  letter-spacing: 2px;
  font-weight: bold;
}

.traffic-explore__img {
  margin: 2.1875rem 0 1.875rem;
}

.intro-photo-grid__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-photo-grid__item {
  position: relative;
}

.intro-photo-grid__item--text {
  padding: 1.875rem;
}

.intro-photo-grid__title {
  display: flex;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #d5d5d5;
  border-bottom: 1px solid var(--gray-light);
}

.intro-photo-grid__title::before {
  content: attr(number);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  border-radius: 50%;
  background: #595757;
  background: var(--gray-main);
  color: #ffffff;
  color: var(--white);
  font-size: 0.75rem;
  font-size: var(--font-12);
  font-weight: bold;
}

.intro-photo-grid__description {
  line-height: 1.5;
  padding-top: 1.25rem;
}

.intro-photo-grid__guide {
  display: flex;
  align-items: flex-start;
  padding: 2.5rem 0 0.625rem;
}

.intro-photo-grid__guide-icon {
  width: 18px;
  height: 18px;
  margin: 3px 5px 0 0;
}

.intro-photo-grid__guide-text {
  font-weight: bold;
  line-height: 1.5;
}

.intro-photo-grid__btn {
  width: 100%;
  padding: 0.75rem 3.125rem;
}

.traffic_decor {
  position: absolute;
}
.traffic_decor img{
  max-width: 100%;
  height: auto; 
}
.traffic_decor1 {
  bottom: -4%;
  left: 0px;
  width: 28%;
  transform: translateX(-48%);
}
.traffic_decor2 {
  bottom: -4%;
  left: 0px;
  width: 26%;
  transform: translateX(-98%);
}
@media (max-width: 1200px) {
  .traffic_decor2 {
    bottom: -4%;
    left: 0px;
    width: 28%;
    transform: translateX(-35%);
  }
}

.traffic_decor3 {
  bottom: -1%;
  left: 0px;
  width: 26.5%;
  transform: translateX(-27%);
}

@media (max-width: 768px) {
  .traffic-public__free-bus-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .traffic-public__free-bus-wrapper .blue-dot-text {
    width: unset !important;
    margin-bottom: 0.5rem;
  }

  .traffic-public__free-bus-btn {
    padding: 0.75rem 1.875rem;
    margin-bottom: 0.375rem;
    width: unset !important;
  }

  .traffic-public__free-bus-btn:last-of-type {
    margin-bottom: 0;
  }
  .traffic-public__free-bus-wrapper .blue-dot-text,
  .traffic-public__free-bus-btn:nth-of-type(2) {
    width: unset;
  }

  .intro-photo-grid__item:nth-of-type(1) {
    order: 1;
  }
  .intro-photo-grid__item:nth-of-type(2) {
    order: 2;
  }
  .intro-photo-grid__item:nth-of-type(3) {
    order: 4;
  }
  .intro-photo-grid__item:nth-of-type(4) {
    order: 3;
    padding-top: 1.875rem;
  }
  .intro-photo-grid__item:nth-of-type(5) {
    order: 5;
    padding-top: 1.875rem;
  }
  .intro-photo-grid__item:nth-of-type(6) {
    order: 6;
  }
  .intro-photo-grid__item:nth-of-type(7) {
    order: 8;
  }
  .intro-photo-grid__item:nth-of-type(8) {
    order: 7;
    padding-top: 1.875rem;
  }
  .intro-photo-grid__item:nth-of-type(9) {
    padding-top: 1.875rem;
    order: 9;
  }
  .intro-photo-grid__item:nth-of-type(10) {
    order: 10;
  }
  .intro-photo-grid__item:nth-of-type(11) {
    order: 12;
  }
  .intro-photo-grid__item:nth-of-type(12) {
    order: 11;
    padding-top: 1.875rem;
  }
  .intro-photo-grid__item:nth-of-type(13) {
    order: 13;
    padding-top: 1.875rem;
  }
  .intro-photo-grid__item:nth-of-type(14) {
    order: 14;
  }
  .intro-photo-grid__item:nth-of-type(15) {
    order: 16;
  }
  .intro-photo-grid__item:nth-of-type(16) {
    order: 15;
    padding-top: 1.875rem;
  }
  .intro-photo-grid__item:nth-of-type(17) {
    order: 17;
  }
  .intro-photo-grid__item:nth-of-type(18) {
    order: 18;
    padding-top: 1.875rem;
  }
  .intro-photo-grid__item--text {
    padding: 1rem 0 1.875rem;
  }
  .intro-photo-grid__item--text:not(:last-of-type) {
    border-bottom: 1px solid #d5d5d5;
    border-bottom: 1px solid var(--gray-light);
  }
  .intro-photo-grid__title {
    padding-bottom: 0;
    border-bottom: 0;
  }
}

@media (max-width: 550px) {
  .traffic-tab__btns {
    display: none;
  }
  .traffic-tab__container {
    display: block;
  }
  .traffic-tab__bus-title,
  .traffic-tab__thsr-title,
  .traffic-tab__mrt-title {
    display: flex;
  }
}

/* ---------------------------------
櫃位資訊 / Tab 切換搜尋區塊
--------------------------------- */

.tab-block__btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  border-bottom: 1px solid #d5d5d5;
  border-bottom: 1px solid var(--gray-light);
}

.tab-block__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  border-color: #d5d5d5;
  border-color: var(--gray-light);
  border-style: solid;
  border-top-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding: 0.625rem 0.75rem;
  cursor: pointer;
}

.tab-block__btn:not(:last-of-type) {
  margin-right: 1.25rem;
}

.is-selected.tab-block__btn {
  background: #f5a100;
  background: var(--blue);
}

.tab-block__btn-icon {
  width: 30px;
  height: 30px;
  margin-right: 0.375rem;
  background-repeat: no-repeat;
}

.tab-block__btn-icon--category {
  background-image: url("./img/search_category_icon_blue.png?v=2021");
}

.is-selected .tab-block__btn-icon--category {
  background-image: url("./img/search_category_icon.png?v=2021");
}

.tab-block__btn-icon--alphabet {
  background-image: url("./img/search_alphabet_icon_blue.png?v=2021");
}

.is-selected .tab-block__btn-icon--alphabet {
  background-image: url("./img/search_alphabet_icon.png?v=2021");
}

.tab-block__btn-icon--floor {
  background-image: url("./img/search_floor_icon_blue.png?v=2021");
}

.is-selected .tab-block__btn-icon--floor {
  background-image: url("./img/search_floor_icon.png?v=2021");
}

.tab-block__btn-title {
  display: block;
  font-weight: bold;
  line-height: 1.8;
}

.tab-block__btn-title.mobile {
  display: none;
}

.is-selected .tab-block__btn-title {
  color: #ffffff;
  color: var(--white);
}

.tab-block__container {
  display: none;
}

.is-selected.tab-block__container {
  display: block;
}

.tab-block__category-list,
.tab-block__alphabet-list {
  margin-bottom: 2.5rem;
}

.tab-block__category-item,
.tab-block__alphabet-item {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #d5d5d5;
  border-left: 1px solid #d5d5d5;
  border-top: 1px solid var(--gray-light);
  border-left: 1px solid var(--gray-light);
  cursor: pointer;
}

.tab-block__category-item:nth-of-type(6n),
.tab-block__alphabet-item:nth-of-type(14n) {
  border-right: 1px solid #d5d5d5;
  border-right: 1px solid var(--gray-light);
}

.tab-block__category-item:nth-of-type(n + 7),
.tab-block__alphabet-item:nth-of-type(n + 15) {
  border-bottom: 1px solid #d5d5d5;
  border-bottom: 1px solid var(--gray-light);
}

.tab-block__category-item:hover,
.tab-block__alphabet-item:hover {
  background: #f5a100;
  background: var(--blue);
}

.current.tab-block__category-item,
.current.tab-block__alphabet-item {
  background: #f5a100;
  background: var(--blue);
}

.tab-block__category-link,
.tab-block__alphabet-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 1.25rem 0.9375rem;
  text-decoration: none;
  color: inherit;
}

.tab-block__category-icon {
  width: 45px;
  height: 45px;
  margin-bottom: 0.625rem;
  background-size: contain;
  background-repeat: no-repeat;
}

.tab-block__category-icon--1 {
  background-image: url("./img/category_icon_1.png");
}

.tab-block__category-item:hover .tab-block__category-icon--1,
.current .tab-block__category-icon--1 {
  background-image: url("./img/category_icon_1_w.png");
}

.tab-block__category-icon--2 {
  background-image: url("./img/category_icon_2.png");
}

.tab-block__category-item:hover .tab-block__category-icon--2,
.current .tab-block__category-icon--2 {
  background-image: url("./img/category_icon_2_w.png");
}

.tab-block__category-icon--3 {
  background-image: url("./img/category_icon_3.png");
}

.tab-block__category-item:hover .tab-block__category-icon--3,
.current .tab-block__category-icon--3 {
  background-image: url("./img/category_icon_3_w.png");
}

.tab-block__category-icon--4 {
  background-image: url("./img/category_icon_4.png");
}

.tab-block__category-item:hover .tab-block__category-icon--4,
.current .tab-block__category-icon--4 {
  background-image: url("./img/category_icon_4_w.png");
}

.tab-block__category-icon--5 {
  background-image: url("./img/category_icon_5.png");
}

.tab-block__category-item:hover .tab-block__category-icon--5,
.current .tab-block__category-icon--5 {
  background-image: url("./img/category_icon_5_w.png");
}

.tab-block__category-icon--6 {
  background-image: url("./img/category_icon_6.png");
}

.tab-block__category-item:hover .tab-block__category-icon--6,
.current .tab-block__category-icon--6 {
  background-image: url("./img/category_icon_6_w.png");
}

.tab-block__category-icon--7 {
  background-image: url("./img/category_icon_7.png");
}

.tab-block__category-item:hover .tab-block__category-icon--7,
.current .tab-block__category-icon--7 {
  background-image: url("./img/category_icon_7_w.png?v=202101");
}

.tab-block__category-icon--8 {
  background-image: url("./img/category_icon_8.png");
}

.tab-block__category-item:hover .tab-block__category-icon--8,
.current .tab-block__category-icon--8 {
  background-image: url("./img/category_icon_8_w.png");
}

.tab-block__category-icon--9 {
  background-image: url("./img/category_icon_9.png");
}

.tab-block__category-item:hover .tab-block__category-icon--9,
.current .tab-block__category-icon--9 {
  background-image: url("./img/category_icon_9_w.png");
}

.tab-block__category-icon--10 {
  background-image: url("./img/category_icon_10.png");
}

.tab-block__category-item:hover .tab-block__category-icon--10,
.current .tab-block__category-icon--10 {
  background-image: url("./img/category_icon_10_w.png");
}

.tab-block__category-icon--11 {
  background-image: url("./img/category_icon_11.png");
}

.tab-block__category-item:hover .tab-block__category-icon--11,
.current .tab-block__category-icon--11 {
  background-image: url("./img/category_icon_11_w.png");
}

.tab-block__category-icon--12 {
  background-image: url("./img/category_icon_12.png");
}

.tab-block__category-item:hover .tab-block__category-icon--12,
.current .tab-block__category-icon--12 {
  background-image: url("./img/category_icon_12_w.png");
}

.tab-block__category-item:hover .tab-block__category-title,
.tab-block__alphabet-item:hover .tab-block__alphabet-title,
.current .tab-block__category-title,
.current .tab-block__alphabet-title {
  color: #ffffff;
  color: var(--white);
}

.tab-block__alphabet-title {
  text-align: center;
}

.tab-block__floor-item:nth-of-type(odd) {
  padding-right: 15px;
}

.tab-block__floor-item:nth-of-type(even) {
  padding-left: 15px;
}

.tab-block__floor-img {
  display: block;
  width: 100%;
  border: 1px solid #d5d5d5;
  border: 1px solid var(--gray-light);
  margin-bottom: 0.625rem;
}

@media (max-width: 1024px) {
  .tab-block__btn:not(:last-of-type) {
    margin-right: 0.3125rem;
  }
}

@media (max-width: 768px) {
  .tab-block__btn-icon {
    display: none;
  }
  .tab-block__btn-title.desktop {
    display: none;
  }
  .tab-block__btn-title.mobile {
    display: block;
  }
  .tab-block__category-item:nth-of-type(6n),
  .tab-block__alphabet-item:nth-of-type(14n) {
    border-right: 0;
  }
  .tab-block__category-item:nth-of-type(n + 7),
  .tab-block__alphabet-item:nth-of-type(n + 15) {
    border-bottom: 0;
  }
  .tab-block__category-item:nth-of-type(4n),
  .tab-block__alphabet-item:nth-of-type(7n) {
    border-right: 1px solid #d5d5d5;
    border-right: 1px solid var(--gray-light);
  }
  .tab-block__category-item:nth-of-type(n + 9),
  .tab-block__alphabet-item:nth-of-type(n + 22) {
    border-bottom: 1px solid #d5d5d5;
    border-bottom: 1px solid var(--gray-light);
  }
  .tab-block__floor-item:nth-of-type(odd) {
    padding-right: 0;
  }
  .tab-block__floor-item:nth-of-type(even) {
    padding-left: 0;
  }
  .tab-block__floor-item {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 550px) {
  .tab-block__category-title {
    font-size: 0.625rem;
    font-size: var(--font-10);
  }
  .tab-block__alphabet-title {
    font-size: 0.875rem;
    font-size: var(--font-14);
  }
  .tab-block__category-link,
  .tab-block__alphabet-link {
    padding-left: 0.3125rem;
    padding-right: 0.3125rem;
  }
}

/* ---------------------------------
櫃位資訊 / 品牌資訊列表
--------------------------------- */

.brand-store__item {
  display: flex;
  align-items: center;
  padding: 1.25rem;
  border-bottom: 1px solid #d5d5d5;
  border-bottom: 1px solid var(--gray-light);
}

.brand-store__item:first-of-type {
  border-top: 1px solid #d5d5d5;
  border-top: 1px solid var(--gray-light);
}

.brand-store__img-holder {
  width: 220px;
  height: 150px;
  border: 1px solid #d5d5d5;
  border: 1px solid var(--gray-light);
}

.brand-store__link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.brand-store__img {
  width: 100%;
  height: auto;
  max-width: 120px;
}

.brand-store__text-holder {
  flex: 1;
  margin-left: 1.25rem;
}

.brand-store__name {
  letter-spacing: 1px;
}

.brand-store__info {
  display: flex;
  margin-top: 1.25rem;
}

.brand-store__location {
  margin-right: 1.875rem;
}

.brand-store__sub-title,
.brand-store__sub-text {
  font-size: 0.875rem;
  font-size: var(--font-14);
  letter-spacing: 1.5px;
}

.brand-store__sub-title {
  display: inline-block;
  background: #f5a100;
  background: var(--blue);
  color: #ffffff;
  color: var(--white);
  margin: 0 10px 3px 0;
  padding: 0.3125rem 0.625rem;
}

@media (max-width: 768px) {
  .brand-store__item {
    padding-left: 0;
    padding-right: 0;
  }
  .brand-store__img-holder {
    width: 120px;
    height: 120px;
  }
  .brand-store__img {
    width: 100px;
    height: 100px;
  }
  .brand-store__info {
    display: block;
  }
  .brand-store__location {
    margin-right: 0;
    margin-bottom: 0.625rem;
  }
}

@media (max-width: 550px) {
  .brand-store__img-holder {
    width: 100px;
    height: 100px;
  }
  .brand-store__img {
    width: 80px;
    height: 80px;
  }
  .brand-store__text-holder {
    margin-left: 0.625rem;
  }
  .brand-store__info {
    margin-top: 0.625rem;
  }
  .brand-store__sub-title,
  .brand-store__sub-text {
    font-size: 0.75rem;
    font-size: var(--font-12);
    letter-spacing: 0;
  }
  .brand-store__sub-title {
    margin-right: 3px;
    padding: 0.3125rem;
  }
}

/* ---------------------------------
櫃位資訊 / 品牌詳細說明頁
--------------------------------- */

.brand-details__img-holder {
  margin-bottom: 1.25rem;
  text-align: center;
}

.brand-details__img {
  width: 200px;
  height: 200px;
  max-width: 100%;
}

.brand-details__name {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #d5d5d5;
  border-bottom: 1px solid var(--gray-light);
  font-size: 1.75rem;
  font-size: var(--font-28);
}

.brand-details__description {
  margin: 1.875rem 0 2.5rem;
  line-height: 1.6;
}

.brand-details__info {
  background: #f7f7f7;
  background: var(--gray-lighter);
}

.brand-details__info-list {
  padding: 1.875rem;
  border-left: 4px solid #f5a100;
  border-left: 4px solid var(--blue);
}

.brand-details__info-item {
  position: relative;
  padding-left: 8px;
  line-height: 1.5;
}

.brand-details__info-item:not(:last-of-type) {
  margin-bottom: 0.625rem;
}

.brand-details__info-item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #f5a100;
  background: var(--blue);
}

.brand-details__link {
  color: inherit;
}

@media (max-width: 550px) {
  .brand-details__name {
    font-size: 1.375rem;
    font-size: var(--font-22);
  }
}

/* ---------------------------------
櫃位資訊 / 搜尋結果
--------------------------------- */

.search-results__heading {
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  font-size: var(--font-28);
  font-weight: bold;
  color: #919191;
  color: var(--gray-secondary);
}

.search-results__heading em {
  margin-right: 1.25rem;
}

.search-results__description {
  line-height: 1.5;
}

@media (max-width: 550px) {
  .search-results__heading {
    font-size: 1.375rem;
    font-size: var(--font-22);
  }
}

/* ---------------------------------
顧客服務
--------------------------------- */

/* 營業時間 */

.service-hours,
.service-hours-special {
  margin-top: 2.5rem;
}

.service-hours__text-holder {
  padding-top: 1.25rem;
  border-top: 1px solid #d5d5d5;
  border-top: 1px solid var(--gray-light);
}

.service-hours__text {
  line-height: 2;
}

.img-list-block__item {
  display: flex;
  align-items: center;
  padding: 1.25rem;
  border-bottom: 1px solid #d5d5d5;
  border-bottom: 1px solid var(--gray-light);
}

.img-list-block__item:first-of-type {
  border-top: 1px solid #d5d5d5;
  border-top: 1px solid var(--gray-light);
}

.img-list-block__img-holder {
  width: 200px;
  height: 200px;
  border: 1px solid #d5d5d5;
  border: 1px solid var(--gray-light);
}

.img-list-block__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-list-block__text-holder {
  flex: 1;
  margin-left: 1.875rem;
}

.img-list-block__wrapper {
  margin-top: 1.125rem;
  max-width: 600px;
}

.img-list-block__wrapper p {
  display: flex;
  margin-top: 0;
}

.img-list-block__wrapper p span:nth-of-type(1) {
  width: 30%;
  padding-right: 0.5rem;
}

.img-list-block__wrapper p span:nth-of-type(2) {
  width: 70%;
}

.img-list-block__description {
  margin-top: 1.125rem;
  font-size: 0.875rem;
  font-size: var(--font-14);
  line-height: 1.5;
}

.img-list-block__description.blue {
  color: #58a2d0;
  color: var(--blue-medium);
}

/* 服務台服務 */

.service-heading-holder {
  display: flex;
  align-items: flex-end;
}

.three-icon-block {
  width: 640px;
  max-width: 100%;
  margin-top: 2.5rem;
}

.three-icon-block__list {
  display: flex;
  flex-wrap: wrap;
}

.three-icon-block__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 15px;
  margin-bottom: 2.5rem;
}

.three-icon-block__icon {
  width: 40px;
  margin-bottom: 1.25rem;
}

.three-icon-block__title {
  text-align: center;
  line-height: 1.5;
}

.icon-block__floor-btn {
  width: 360px;
  max-width: 100%;
  margin-right: 1.25rem;
  font-size: 1rem;
  font-size: var(--font-16);
  font-weight: bold;
}

/* 其他貼心服務 */

.two-icon-block {
  width: 700px;
  max-width: 100%;
  margin-top: 2.5rem;
}

.two-icon-block__list {
  display: flex;
  flex-wrap: wrap;
}

.two-icon-block__item {
  display: flex;
  align-items: center;
  flex: 0 0 50%;
  max-width: 50%;
  margin-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
}

.two-icon-block__item--note {
  flex-direction: column;
  align-items: flex-start;
}

.two-icon-block__icon {
  width: 40px;
  margin-right: 1.125rem;
}

.two-icon-block__text-holder {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-left: 1.125rem;
}

.two-icon-block__text-holder::before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: -18px;
  width: 1px;
  height: 25px;
  background: #595757;
  background: var(--gray-main);
}

.two-icon-block__title {
  margin-bottom: 5px;
}

.two-icon-block__sub-title {
  font-size: 0.75rem;
  font-size: var(--font-12);
}

.two-icon-block__note-text {
  font-size: 0.75rem;
  font-size: var(--font-12);
  line-height: 1.5;
}

.two-icon-block__more-info {
  margin-top: 1.25rem;
}

/* 退稅說明 */

.tax-info {
  margin-top: 2.5rem;
}

.tax-info__item {
  display: flex;
  align-items: flex-start;
}

.tax-info__title {
  display: flex;
  align-items: center;
  width: 140px;
  margin-right: 0.625rem;
  line-height: 1.5;
}

.tax-info__title::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 0.625rem;
  padding-right: 5px;
  border-radius: 50%;
  background: #f5a100;
  background: var(--blue);
}

.tax-info__content {
  flex: 1;
}

.tax-info__text {
  margin-bottom: 0.3125rem;
  line-height: 1.5;
}

.tax-info__text--number {
  display: flex;
}

.tax-info__text--number::before {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  margin: 3px 5px 0 0;
  padding: 5px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-size: var(--font-12);
  font-weight: bold;
  background: #f5a100;
  background: var(--blue);
  color: #ffffff;
  color: var(--white);
}

.tax-info__text--number:nth-of-type(1):before {
  content: "1";
}

.tax-info__text--number:nth-of-type(2):before {
  content: "2";
}

.tax-info__text--number:nth-of-type(3):before {
  content: "3";
}

.tax-info__text--number:nth-of-type(4):before {
  content: "4";
}

.tax-info__text--number:nth-of-type(5):before {
  content: "5";
}

/* 失物招領 */
@media (min-width: 1025px) {
  .service-heading-lost {
    padding-bottom: 15rem;
  }
}
.tax-info {
  margin-top: 2.5rem;
}
.lost-info-item {
  line-height: 1.5;
  margin-bottom: 0.5rem;
  margin-left: 0.5rem;
}
.lost-info-item::before {
  width: 5px;
  height: 5px;
  margin-right: 0.625rem;
  padding-right: 5px;
  margin-left: 0px;
}
.lost-info__text {
  margin-bottom: 0.3125rem;
  line-height: 1.5;
}

.lost-info__text--number {
  display: flex;
  margin: 1.5rem 0 0.5rem;
}

.lost-info__text--number::before {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 14px;
  margin: 3px 5px 0 0;
  padding: 5px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-size: var(--font-14);
  font-weight: bold;
  /* background: #f5a100;
  background: var(--blue);
  color: #ffffff;
  color: var(--white); */
}

.lost-info__text--number:nth-of-type(1):before {
  content: "1.";
}
.lost-info__text--number:nth-of-type(2):before {
  content: "2.";
}

/* 客戶意見回饋 */

.feedback-form {
  margin-top: 2.5rem;
}

.feedback-form__top {
  display: flex;
}

.feedback-form__holder {
  display: flex;
  flex-direction: column;
}

.feedback-form__holder--guestname,
.feedback-form__holder--mail {
  flex: 0 0 50%;
  max-width: 50%;
  margin-bottom: 1.5rem;
}

.feedback-form__holder--guestname {
  padding-right: 15px;
}

.feedback-form__holder--mail {
  padding-left: 15px;
}

.feedback-form__label {
  padding-left: 1rem;
  padding-bottom: 0.625rem;
}

.feedback-form__input-name,
.feedback-form__input-mail,
.feedback-form__input-message {
  padding: 1rem;
  box-shadow: none;
  border: 1px solid #d5d5d5;
  border: 1px solid var(--gray-light);
  font-size: 1rem;
  font-size: var(--font-16);
  color: #595757;
  color: var(--gray-main);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.feedback-form__btn-holder {
  margin-top: 1rem;
  text-align: right;
}

.feedback-form__submit-btn {
  width: 450px;
  max-width: 100%;
  font-size: 1rem;
  font-size: var(--font-16);
  font-weight: bold;
  letter-spacing: 1px;
  border: 0;
  cursor: pointer;
}

@media (max-width: 768px) {
  .icon-block__more-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .icon-block__floor-btn {
    width: 260px;
    margin-right: 0;
    margin-bottom: 0.625rem;
    padding-top: 1.125rem;
    padding-bottom: 1.125rem;
  }
  .feedback-form__btn-holder {
    text-align: center;
  }
  .feedback-form__submit-btn {
    width: 250px;
    padding: 0.75rem 1.25rem;
  }

  .img-list-block__wrapper p span:nth-of-type(1) {
    width: 50%;
  }

  .img-list-block__wrapper p span:nth-of-type(2) {
    width: 50%;
  }
}

@media (max-width: 550px) {
  .service-hours__text-time {
    font-size: 1.125rem;
    font-size: var(--font-18);
  }
  .service-hours__text-note {
    font-size: 0.75rem;
    font-size: var(--font-12);
  }
  .img-list-block__item {
    padding: 0.625rem;
  }
  .img-list-block__img-holder {
    width: 110px;
    height: 110px;
  }
  .img-list-block__text-holder {
    margin-left: 0.625rem;
  }
  .img-list-block__name {
    font-size: 1.125rem;
    font-size: var(--font-18);
  }
  .img-list-block__description {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-size: var(--font-12);
  }
  .three-icon-block__item {
    padding: 0 5px;
  }
  .three-icon-block__title {
    font-size: 0.625rem;
    font-size: var(--font-10);
  }
  .two-icon-block__item {
    padding-left: 10px;
    padding-right: 10px;
  }
  .two-icon-block__icon {
    margin-right: 5px;
  }
  .two-icon-block__text-holder {
    margin-left: 0;
  }
  .two-icon-block__text-holder::before {
    display: none;
  }
  .two-icon-block__title,
  .two-icon-block__sub-title,
  .two-icon-block__note-text {
    font-size: 0.625rem;
    font-size: var(--font-10);
  }
  .tax-info__title,
  .tax-info__text {
    font-size: 0.875rem;
    font-size: var(--font-14);
  }
  .tax-info__title {
    width: 90px;
  }
  .feedback-form__top {
    flex-direction: column;
  }
  .feedback-form__holder--guestname,
  .feedback-form__holder--mail {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .feedback-form__holder--guestname {
    padding-right: 0;
  }
  .feedback-form__holder--mail {
    padding-left: 0;
  }
}

/* ---------------------------------
關於MOP
--------------------------------- */

.about-outlet__img {
  margin: 1.875rem 0;
}

.about-outlet__text {
  line-height: 1.8;
}

.multi-photo-grid {
  position: relative;
  margin-top: 1.875rem;
}

.multi-photo-grid__imgs-container {
  margin: 0 2.5rem;
}

.multi-photo-grid__wrapper {
  display: flex;
}

.multi-photo-grid__inner-wrapper {
  display: flex;
  flex-direction: column;
  flex: 0 0 50%;
}

.multi-photo-grid__item {
  width: 100%;
  height: 100%;
}

.multi-photo-grid__item--half {
  flex: 0 0 50%;
}

.multi-photo-grid__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.multi-photo-grid__card {
  position: absolute;
  width: 260px;
  height: auto;
  border-left: 5px solid #f5a100;
  border-left: 5px solid var(--blue);
  background: #ffffff;
  background: var(--white);
}

.multi-photo-grid__card--right {
  border-left: 0;
  border-right: 5px solid #f5a100;
  border-right: 5px solid var(--blue);
}

.multi-photo-grid__card-1 {
  top: 14%;
  left: 0;
}

.multi-photo-grid__card-2 {
  top: 43%;
  right: 0;
}

.multi-photo-grid__card-3 {
  bottom: 12%;
  left: 0;
}

.multi-photo-grid__card-container {
  padding: 2.5rem 1.75rem 3rem;
}

.multi-photo-grid__card-title {
  font-size: 2.375rem;
  font-size: var(--font-38);
  font-weight: bold;
  line-height: 1.2;
}

.multi-photo-grid__card-title--center {
  text-align: center;
}

.multi-photo-grid__card-cross-icon {
  display: block;
  width: 34px;
  height: 34px;
  margin: 10px auto;
  background: url("./img/cross_icon.png") no-repeat;
  background-size: contain;
}

.multi-photo-grid__card-subtitle {
  margin-top: 1rem;
  line-height: 1.2;
  color: #919191;
  color: var(--gray-secondary);
}

.multi-photo-grid__card-text {
  margin-top: 1.875rem;
  font-size: inherit;
  line-height: 2;
}

.about-concept__img {
  margin-bottom: 5rem;
}

.three-photo-grid {
  display: flex;
}

.three-photo-grid__item:nth-of-type(1) {
  flex: 1;
}

.three-photo-grid__item:nth-of-type(2) {
  flex: 1;
  margin-left: 3px;
  margin-right: 3px;
}

.three-photo-grid__item:nth-of-type(3) {
  flex: 3;
}

.three-photo-grid__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.outletpark {
  margin-top: 1.875rem;
}

.outletpark__jp {
  margin-bottom: 1rem;
}

.outletpark__jp-link {
  display: block;
  width: 100%;
  border: 3px solid transparent;
}

.outletpark__jp-link:hover {
  border-color: #ff6614;
  border-color: var(--orange);
}

.outletpark__tw,
.outletpark__my {
  position: relative;
  width: 50%;
}

.outletpark__tw {
  float: left;
  padding-right: 10px;
}

.outletpark__link {
  display: block;
  position: absolute;
}

.outletpark__tw-linkou-link {
  top: 25%;
  left: 38%;
  width: 35%;
}

.outletpark__tw-tcport-link {
  top: 42%;
  left: 5%;
  width: 48%;
}
.outletpark__tw-tainan-link {
  top: 67%;
  left: 2%;
  width: 43%;
}
.outletpark__my {
  float: right;
  padding-left: 10px;
}

.outletpark__my-kl-link {
  top: 65%;
  left: 6%;
  width: 49%;
}
@media (max-width: 915px) {
  .multi-photo-grid__card-3 {
    bottom: 10%;
    left: 0;
  }
}
@media (max-width: 768px) {
  .multi-photo-grid__imgs-container {
    margin: 0;
  }
  .multi-photo-grid__card {
    width: 220px;
  }
  .multi-photo-grid__card-1,
  .multi-photo-grid__card-3 {
    left: -1.25rem;
  }
  .multi-photo-grid__card-1 {
    top: 14%;
  }
  .multi-photo-grid__card-2 {
    top: 43%;
    right: -1.25rem;
  }
  .multi-photo-grid__card-3 {
    bottom: 12%;
  }
  .multi-photo-grid__card-container {
    padding: 1.8rem 1.25rem;
  }
  .multi-photo-grid__card-title {
    font-size: 1.75rem;
    font-size: var(--font-28);
  }
  .multi-photo-grid__card-title--center {
    text-align: left;
  }
  .multi-photo-grid__card-cross-icon {
    width: 25px;
    height: 25px;
    margin-left: 58px;
  }
  .multi-photo-grid__card-text {
    font-size: 0.875rem;
    font-size: var(--font-14);
  }
}

@media (max-width: 550px) {
  .multi-photo-grid__card {
    width: 140px;
  }
  .multi-photo-grid__card-container {
    padding: 1rem 0.75rem;
  }
  .multi-photo-grid__card-3 {
    bottom: 11%;
  }
  .multi-photo-grid__card-title {
    font-size: 1rem;
    font-size: var(--font-16);
  }
  .multi-photo-grid__card-cross-icon {
    width: 14px;
    height: 14px;
    margin: 5px 0 5px 34px;
  }
  .multi-photo-grid__card-subtitle {
    font-size: 0.75rem;
    font-size: var(--font-12);
  }
  .multi-photo-grid__card-text {
    margin-top: 0.5rem;
    font-size: 0.625rem;
    font-size: var(--font-10);
    line-height: 1.5;
  }
  .about-concept__img {
    margin-bottom: 2.5rem;
  }
  .three-photo-grid {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
  }
}

@media (max-width: 375px) {
  .multi-photo-grid__card-2 {
    top: 42%;
  }
}

/* ---------------------------------
網站使用條款、個人資料聲明
--------------------------------- */

.policy__content-wrapper {
  margin-top: 3.75rem;
}

.policy__content-block {
  margin-bottom: 1.875rem;
}

.policy__content-block--margin-60:not(:last-of-type) {
  margin-bottom: 3.75rem;
}

.policy__content-block-heading {
  margin-bottom: 3.125rem;
  font-size: 1.125rem;
  font-size: var(--font-18);
  line-height: 1.5;
  color: #f5a100;
  color: var(--blue);
}

.policy__text {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.policy__title {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #f5a100;
  color: var(--blue);
  font-weight: 600;
}

.policy__number-list {
  margin-bottom: 1.875rem;
}

.policy__number-item {
  display: flex;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.policy__number-item-no {
  width: 16px;
  color: #f5a100;
  color: var(--blue);
}

.policy__number-item-text {
  flex: 1;
  padding-left: 0.3125rem;
}

.policy__contact-title {
  line-height: 1.5;
}

.policy__contact-title::before {
  content: "◆";
  margin-right: 4px;
  color: #f5a100;
  color: var(--blue);
}

.policy__contact-list {
  margin-top: 1rem;
  margin-left: 1.25rem;
}

.policy__contact-item {
  margin-bottom: 1rem;
  line-height: 1.5;
}

.policy__publish-date {
  margin: 1.25rem 0;
  text-align: right;
}

.policy__cn-number {
  color: #f5a100;
  color: var(--blue);
}

.policy__text-holder {
  margin-left: 1.25rem;
}

.policy__sub-list {
  margin-left: -12px;
}

.policy__sub-item {
  display: flex;
  margin-bottom: 5px;
  line-height: 1.5;
}

/* ---------------------------------
公司介紹
--------------------------------- */

.company__logo-holder {
  display: flex;
  justify-content: center;
  margin: 2.5rem auto;
}

.company__company-logo {
  display: block;
  width: 230px;
}

/* ---------------------------------
網站地圖
--------------------------------- */
.sitemap {
  font-size: 15px;
}

.sitemap__heading {
  padding: 0 1.25rem;
}

.sitemap__content-wrapper {
  margin-top: 3.75rem;
  padding-top: 2.75rem;
  background: #f7f7f7;
  background: var(--gray-lighter);
}

.sitemap__sub-heading {
  text-align: center;
}

.sitemap__sub-heading-link {
  color: #f5a100;
  color: var(--blue);
  font-weight: bold;
  text-decoration: none;
}

.sitemap__link-holder {
  margin-top: 3.5rem;
}

.sitemap__block {
  margin-bottom: 6.25rem;
}

.sitemap__block-title {
  font-weight: bold;
  color: #f5a100;
  color: var(--blue);
}

.sitemap__block-list {
  margin-top: 1.875rem;
  padding-left: 1rem;
  border-left: 1px solid #d5d5d5;
  border-left: 1px solid var(--gray-light);
}

.sitemap__block-item:not(:last-of-type) {
  margin-bottom: 1.75rem;
}

.sitemap__block-link {
  text-decoration: none;
  color: inherit;
  line-height: 1.3;
  transition: color 0.3s;
}

.sitemap__block-link:hover {
  color: #f5a100;
  color: var(--blue);
}

@media (max-width: 768px) {
  .sitemap h3 {
    font-size: 18px;
  }
  .sitemap .sitemap__block-item {
    font-size: 15px;
  }
  .sitemap__heading {
    text-align: left;
  }
  .sitemap__sub-heading {
    text-align: left;
  }
  .sitemap__block {
    margin-bottom: 5rem;
  }
  .sitemap__block.column__item:nth-of-type(odd) {
    padding-left: 0;
  }
  .sitemap__block.column__item:nth-of-type(even) {
    padding-right: 0;
  }
}
@media (max-width: 330px) {
  .sitemap .sitemap__block-item {
    font-size: 14px;
  }
}

/* ---------------------------------
聯名卡
--------------------------------- */

main.creditcard {
  width: 100%;
  max-width: 966px;
  margin: 0 auto;
}

main.creditcard .pc {
  display: block;
}

main.creditcard .rwd {
  display: none;
}

main.creditcard a {
  display: block;
  position: relative;
}

main.creditcard img {
  width: 100%;
  display: block;
}

@media (max-width: 1024px) {
  main.creditcard {
    max-width: 100%;
  }
  main.creditcard .pc {
    display: none;
  }
  main.creditcard .rwd {
    display: block;
  }
}

/* ---------------------------------
會員app
--------------------------------- */

main.app-page a {
  /*	background: rgba(204, 204, 204, .5);*/
}

main.app-page {
  width: 100%;
  max-width: 966px;
  margin: 0 auto;
}

main.app-page .pc {
  display: block;
}

main.app-page .rwd {
  display: none;
}

main.app-page a {
  display: block;
  position: relative;
}

main.app-page img {
  width: 100%;
}

main.app-page .wrapper {
  position: relative;
}

main.app-page .qrcode-btn {
  position: absolute;
}

main.app-page .click-btn {
  position: absolute;
  max-width: 394px;
  max-height: 85px;
  width: 40%;
  height: 5%;
  left: 46%;
  top: 57%;
}

main.app-page .memlogin-btn {
  position: absolute;
  width: 45%;
  top: 0;
  height: 96px;
  left: 3.5%;
}

main.app-page .pdf-btn {
  position: absolute;
  width: 50%;
  top: 0;
  height: 96px;
  right: 0;
}

@media (max-width: 1024px) {
  main.app-page {
    max-width: 100%;
  }
  main.app-page .pc {
    display: none;
  }
  main.app-page .rwd {
    display: block;
  }
  main.app-page .qrcode-btn {
    width: 47vw;
    height: 27vw;
    right: 3vw;
    top: 56vw;
  }
  main.app-page .pdf-btn {
    height: 13vw;
  }
  main.app-page .memlogin-btn {
    height: 13vw;
  }
}

.app__btns,
.app__middle {
  position: relative;
}

.app__news-link {
  display: block;
}

.app__member-link,
.app__shop-link,
.app__download-link,
.app__register-link {
  position: absolute !important;
  display: inline-block;
}

.app__member-link {
  top: 18%;
  left: 9%;
  width: 33%;
  height: 60%;
}

.app__shop-link {
  top: 18%;
  left: 47%;
  width: 44%;
  height: 60%;
}

.app__download-link {
  display: none;
}

.app__register-link {
  top: 52%;
  left: 9%;
  width: 82%;
  height: 36%;
}
@media only screen and (max-width: 1024px) {
  .app-page.single-content {
    padding-top: 0.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .app__member-link {
    left: 7%;
    width: 34%;
  }

  .app__shop-link {
    left: 42.5%;
    width: 50%;
  }

  .app__download-link {
    display: block;
    top: 10.5%;
    left: 40.8%;
    width: 59%;
    height: 37.5%;
  }

  .app__register-link {
    top: 51.5%;
    left: 40.8%;
    width: 59%;
    height: 37.5%;
  }
}

/* ---------------------------------
後台編輯器
--------------------------------- */

.editor-block h1,
.editor-block h2,
.editor-block h3 {
  margin-bottom: 1.25rem;
}

.editor-block h1 {
  font-size: 1.375rem;
  font-size: var(--font-22);
}

.editor-block h2 {
  font-size: 1.25rem;
  font-size: var(--font-20);
}

.editor-block h3 {
  font-size: 1.125rem;
  font-size: var(--font-18);
}

.editor-block p {
  font-size: 1rem;
  font-size: var(--font-16);
  margin-bottom: 0.625rem;
  line-height: 1.5;
}

.editor-block ol,
.editor-block ul {
  margin: 1.25rem 0;
  padding-left: 1.5rem;
}

.editor-block ol {
  list-style-type: decimal;
}

.editor-block ul {
  list-style-type: disc;
}

.editor-block ol li,
.editor-block ul li {
  margin-bottom: 0.625rem;
  line-height: 1.5;
}

.editor-block img {
  display: block;
  margin: auto;
  max-width: 100% !important;
  height: auto !important;
}

.editor-block a {
  color: #f5a100;
  color: var(--blue);
}

.pc {
  /* display: block; */
}

.rwd {
  display: none;
}

@media (max-width: 1024px) {
.pc {
    display: none;
  }
.rwd {
    display: block;
  }
}