:root {
    --primary-color: rgb(69,65,69);
}

* {
    box-sizing: border-box;
    letter-spacing: 2px;
}

form {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body {
    color: var(--primary-color);
    font-family: "Open Sans", "Noto Sans TC", sans-serif;
    font-weight: 300;
}

/* Noto Sans TC 用於中文 */
@font-face {
    font-family: 'Noto Sans TC';
    src: local('Noto Sans TC');
    unicode-range: U+4E00-9FFF;
}

/* Open Sans 用於英文 */
@font-face {
    font-family: 'Open Sans';
    src: local('Open Sans');
    unicode-range: U+0000-00FF;
}

.title-en,
.en-heading {
    font-weight: 400;
}

h1:not(.title-en),
h2:not(.title-en),
h3:not(.title-en),
h4:not(.title-en),
h5:not(.title-en),
h6:not(.title-en),
.tc-heading {
  font-weight: 350;
}

ul.reset {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.wrapper-sm .container {
    padding: 0 80px;
}

@media (max-width: 991.98px) {
    .wrapper-sm .container {
        padding: 0 15px;
    }
}

.object-pos-bottom {
    object-position: bottom;
}

.bg-pos-bottom {
    background-position: bottom center !important;
}

@media (min-width: 992px) {
    .custom-lg.container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width: 768px) {
    .custom.container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 575.98px) {
    .custom-lg.container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.mt-6 {
    margin-top: 6rem !important;
}

.mt-7 {
    margin-top: 7rem !important;
}

.mt-9 {
    margin-top: 9rem !important;
}

.mb-6 {
    margin-bottom: 6rem !important;
}

.mb-7 {
    margin-bottom: 7rem !important;
}

.mb-10 {
    margin-bottom: 10rem;
}

@media (min-width: 992px) {
    .mb-lg-9 {
        margin-bottom: 9rem !important;
    }
}

@media (max-width: 991.98px) {
    .mt-6 {
        margin-top: 3.5rem !important;
    }

    .mt-9 {
        margin-top: 3.5rem !important;
    }

    .mb-6 {
        margin-bottom: 3.5rem !important;
    }

    .mb-7 {
        margin-bottom: 3.5rem !important;
    }

    .mb-mobile-45 {
        margin-bottom: 4.5rem !important;
    }

    .mb-10 {
        margin-bottom: 5.5rem;
    }
}

.flex-row-lg,
.flex-row-md {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-row-lg h4,
.flex-row-md h4 {
    letter-spacing: 0.2em;
}

@media (max-width: 991.98px) {
    .flex-row-lg {
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .flex-row-md {
        flex-direction: column;
    }
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.form-control:read-only {
    background: #f2f2f2;
}

.form-group {
    margin-bottom: 15px;
}

.flex-horizontal {
    display: flex;
    align-items: center;
}

.flex-horizontal label {
    padding-right: 5px;
    flex: 0 0 100px;
    white-space: nowrap;
    /* font-weight: bold; */
    font-size: 15px;
    text-align: end;
}

/* .flex-horizontal label span {
    font-weight: 500;
} */

@media (max-width: 991.98px) {
    iframe {
        height: 400px;
    }
}
  
@media (max-width: 767.98px) {
    iframe {
        width: 100%;
        height: 250px;
    }
}

/* --------------------編輯器-------------------- */
.editor img {
    margin: 5px auto;
    max-width: 100%;
    display: block;
}

.editor tbody,
.editor td,
.editor tfoot,
.editor th, 
.editor thead,
.editor tr {
    border-color: #dddddd;
    border-width: 1px;
}

/* --------------------共用-------------------- */
/* 按鈕 */
.custom-radius-btn {
    display: inline-block;
    padding: 8px 10px;
    border: 1px solid var(--primary-color);
    border-radius: 3px;
    line-height: 1;
    background: #fff;
    font-size: 14.5px;
    /* font-weight: 600; */
    color: var(--primary-color);
    text-decoration: none;
}

.custom-btn-lg {
    padding: 10px 15px;
}

.btn-green {
    background-color: #00C300;
    color: #fff;
}

.steelblue-btn {
    border-color: #39464e;
    background: #39464e;
    color: #fff;
}

.black-outline-btn {
    padding: 3px 0;
    display: inline-block;
    width: 100%;
    max-width: 200px;
    border-radius: 2px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    letter-spacing: 5px;
    text-decoration: none;
    text-align: center;
    font-weight: 400;
}

.black-outline-btn.en {
    font-size: 20px;
}

.black-outline-btn.zh {
    font-size: 17px;
}

.black-btn {
    padding: 3px 0;
    display: inline-block;
    width: 100%;
    border-radius: 2px;
    background-color: var(--primary-color);
    color: #fff;
    letter-spacing: 5px;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
}

.black-link {
    display: block;
    font-size: 14px;
    text-decoration: none;
    color: var(--primary-color);
}

.desktop-only {
    display: block;
}
  
.mobile-only {
    display: none;
}

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

    .mobile-only {
        display: block;
    }
}

/* 主要背景圖 */
.brand-bg {
    padding-top: 42.86%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

.brand-bg-lg {
    padding-top: 75%;
}

@media (max-width: 991.98px) {
    .brand-bg {
        padding-top: 56.25%;
    }
}

@media (max-width: 767.98px) {
    .brand-bg {
        padding-top: 150%;
    }
}

.slogan-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
}

.slogan-large,
.slogan-small {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.slogan-large > *,
.slogan-small > *,
.brand-name > * {
    letter-spacing: 0.25em;
}

.slogan-large {
    column-gap: 40px;
    font-size: 56px;
    /* font-weight: 300; */
}

a.slogan-large {
    color: #fff;
    text-decoration: none;
}

.slogan-large-zh {
    margin-bottom: 1.5rem;
    column-gap: 0;
    font-size: 1.9rem;
}

.slogan-large-zh span {
    display: inline-block;
    position: relative;
    letter-spacing: 0.65rem;
}

.slogan-large-zh span:not(:last-child) {
    padding-right: 38px;
    display: inline-block;
    position: relative;
}

.slogan-large-zh span:not(:last-child)::after {
    content: '、';
    position: absolute;
    bottom: -8px;
}

.slogan-small {
    margin-top: 10px;
    font-size: 2.1rem;
}

.slogan-small span:not(:last-child) {
    padding-right: 42px;
    display: inline-block;
    position: relative;
}

.slogan-small span:not(:last-child)::after {
    content: '、';
    position: absolute;
    bottom: -8px;
}

.brand-name {
    position: absolute;
    left: 50%;
    bottom: 5%;
    transform: translateX(-50%);
    text-align: center;
}

.brand-name small {
    font-size: 15px;
}

.brand-name h2 {
    letter-spacing: 0.2em;
    font-size: 2.5rem;
}

@media (max-width: 767.98px) {
    .slogan-large,
    .slogan-small {
        flex-direction: column;
    }

    .slogan-large {
        margin-bottom: 15px;
        font-size: 38px;
    }

    .slogan-large-zh {
        margin-bottom: 60px;
        font-size: 1.6rem;
    }

    .slogan-large-zh span:not(:last-child) {
        padding-right: 0;
    }

    .slogan-large-zh span:not(:last-child)::after {
        content: ',';
        bottom: 0px;
    }

    .slogan-large-zh span:last-child::after {
        content: '。';
        position: absolute;
        bottom: -8px;
        right: -25px;
    }

    .slogan-small,
    .brand-name h2 {
        font-size: 1.8rem;
    }

    .slogan-small span:not(:last-child) {
        padding-right: 0;
    }

    .brand-name {
        bottom: 2%;
    }
}

/* 背景圖 */
.bg-block {
    padding-top: 30%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 991.98px) {
    .bg-block {
        padding-top: 33.33%;
    }
}

@media (max-width: 767.98px) {
    .bg-block {
        padding-top: 56.25%;
    }
}

.bg-text {
    color: var(--primary-color);
}

.bg-text-sm {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    color: #fff;
    /* font-weight: bold; */
}

.bg-text > *:not(:last-child) {
    margin-bottom: 1rem;
}

.bg-text > *:last-child {
    margin-bottom: 0;
}

.bg-text span {
    display: inline-block;
    background-color: #fff;
    letter-spacing: 1px;
    line-height: 0.9;
}

.bg-text .title-en span {
    line-height: 0.7;
}

/* .bg-text > *:first-child span {
    background-color: transparent;
} */

.bg-text > *:not(.title-en) span {
    font-size: 46px;
    font-weight: 300;
}

.bg-text .title-en span {
    font-size: 48px;
}

@media (max-width: 991.98px) {
    .bg-text > *:not(:last-child) {
        margin-bottom: 0.5rem;
    }

    .bg-text > *:not(.title-en) span,
    .bg-text .title-en span {
        font-size: 25px;
    }

    .bg-text > *:not(.title-en) span {
        font-weight: 400;
    }
}

.no-bg-text h3 {
    margin-bottom: 0;
    font-size: 46px;
    line-height: 1.1;
}

.no-bg-text h3.title-en {
    font-size: 48px;
}

@media (max-width: 991.98px) {
    .no-bg-text h3,
    .no-bg-text h3.title-en {
        font-size: 25px;
    }
}

/* 輪播樣式 */
.custom-slick .slick-prev,
.custom-slick .slick-next {
    width: auto;
}

.custom-slick .slick-prev:before,
.custom-slick .slick-next:before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-width: 1px;
    border-style: solid;
    border-color: var(--primary-color) var(--primary-color) transparent transparent;
    color: transparent;
    opacity: 1;
}

.custom-slick .slick-prev:before {
    /* content: '<'; */
    transform: rotate(-135deg);
    /* margin-left: 17px; */
}

.custom-slick .slick-next:before {
    /* content: '>'; */
    transform: rotate(45deg);
    /* margin-left: 12.5px; */
}

.custom-slick .slick-dots li {
    height: auto;
}

.custom-slick .slick-dots li button::before {
    content: '';
}

.custom-slick .slick-dots li button.dot-btn {
    padding: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
}

.custom-slick .slick-dots li.slick-active button.dot-btn {
    background-color: var(--primary-color);
}

.custom-slick-dots .slick-dots {
    margin-left: 20px;
    /* margin-right: 6.21px; */
    display: inline-block;
    width: auto;
    position: static;
    text-align: start;
}

.custom-slick-dots .slick-prev {
    top: calc(100% - 10px);
    left: 0;
}

.custom-slick-dots .slick-next {
    display: inline-block;
    position: static;
    transform: translateY(1.5px);
}

/* --------------------麵包屑-------------------- */
.breadcrumb.custom {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: bold;
}

.breadcrumb.custom a {
    text-decoration: none;
    color: var(--primary-color);
}

/* --------------------表頭-------------------- */
header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
}

header nav {
    padding: 12px 0;
    position: relative;
}

.header-logo {
    text-align: center;
}

.header-logo a {
    display: inline-block;
}

.header-logo img {
    height: 28px;
}

.navbar-icon {
    position: absolute;
    top: 50%;
    right: 120px;
    transform: translateY(-50%);
    display: flex;
    column-gap: 30px;
}

.navbar-icon a:not(.mobile-search-icon) {
    display: block;
    text-decoration: none;
}

.navbar-icon img {
    height: 25px;
}

.navbar-icon .shop-cart {
    position: relative;
}

.navbar-icon .shop-cart .amount {
    width: 16px;
    height: 16px;
    position: absolute;
    top: -5px;
    right: 0;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    text-align: center;
    letter-spacing: 0px !important;
}

/* 搜尋 */
.navbar-icon .navbar-search-input {
    display: flex;
    column-gap: 8px;
}

.navbar-icon .navbar-search-input input {
    display: none;
    padding: 0 5px;
    border: none;
    border-bottom: 1px solid var(--primary-color);
    border-radius: 0;
    font-size: 15px;
    outline: none;
    background: transparent;
}

.navbar-icon .navbar-search-input button {
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
}

@media (min-width: 992px) {
    .navbar-icon .navbar-search-input:hover input,
    .navbar-icon .navbar-search-input input:focus {
        display: block;
    }
}

@media (max-width: 991.98px) {
    .navbar-icon {
        padding: 5px;
        position: fixed;
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;
        transform: translateY(0);
        justify-content: space-around;
        background-color: rgba(255, 255, 255, 0.8);
    }

    .navbar-icon .navbar-search-wrapper {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 100%;
        background-color: rgba(255, 255, 255, 0.8);
    }

    .navbar-icon .navbar-search-wrapper.open {
        display: block;
    }

    .navbar-icon .navbar-search-input {
        padding: 4px 10px 4px 20px;
    }

    .navbar-icon .navbar-search-input input {
        padding: 4px 20px;
        display: block;
        flex-grow: 1;
    }

    
}

/* 會員 */
.user-icon {
    position: relative;
}

.user-menu {
    padding: 12.5px 0;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    background: #fff;
    z-index: 10;
}

.user-menu a {
    padding: 12.5px 15px;
    white-space: nowrap;
    font-size: 14px;
    color: var(--primary-color);
}

@media (min-width: 992px) {
    .user-icon:hover .user-menu {
        opacity: 1;
        pointer-events: auto;
    }
}

@media (max-width: 991.98px) {
    .user-menu {
        display: none;
    }
}

/* 漢堡選單 */
.burger-btn {
    position: absolute;
    top: 50%;
    right: 32px;
    transform: translateY(-50%);
}

.line {
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.line i {
    display: block;
    position: absolute;
    width: 24px;
    height: 0.5px;
    background: var(--primary-color);
    left: 8px;
    transition: all 0.5s ease-in-out;
    opacity: 0.7;
}

.line i:nth-child(1) {
    top: 12px;
}

.line i:nth-child(2) {
    top: 19px;
}

.line i:nth-child(3) {
    top: 26px;
}

.line.open i:nth-child(1) {
    opacity: 0;
}

.line.open i:nth-child(2) {
    transform: rotate(225deg);
}

.line.open i:nth-child(3) {
    top: 19px;
    transform: rotate(135deg);
}

@media (max-width: 991.98px) {
    .burger-btn {
        right: 15px;
    }

    .line i {
        height: 1px;
    }
}

.menu-block {
    position: fixed;
    left: 0;
    right: 0;
    display: none;
}

.menu {
    display: flex;
}

.menu .left {
    padding: 30px;
    width: 75%;
    display: flex;
    flex-direction: column;
    background-color: #b4b7b7;
    color: #fff;
}

.menu-left-title {
    margin: 30px 0 50px 30px;
    /* font-weight: 600; */
}

.left-content {
    margin: 0 0 90px 60px;
    display: flex;
    flex-direction: column;
    row-gap: 35px;
}

.menu-left-link {
    display: flex;
    column-gap: 50px;
}

.menu-left-link a {
    color: #fff;
    text-decoration: none;
}

.menu-prod-block {
    display: flex;
}

.menu-prod-block .main-prod-link {
    display: flex;
    align-items: center;
    column-gap: 15px;
    flex: 0 0 80px;
}

.menu-prod-block .main-prod-link a {
    flex-grow: 1;
    color: #fff;
    text-decoration: none;
}

.menu-prod-block .main-prod-link .icon {
    display: none;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.menu-prod-block .menu-prod-link {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
}

.menu-prod-block .menu-prod-link a {
    padding: 0 10px;
    position: relative;
    color: #fff;
    text-decoration: none;
}

.menu-prod-block .menu-prod-link a::before {
    content: '';
    display: inline-block;
    width: 1px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background: #fff;
}

.menu-prod-block .menu-prod-link a:last-child:after {
    content: '';
    display: inline-block;
    width: 1px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background: #fff;
}

.left-social-block {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 10;
    position: relative;
}

.left-social-block ul {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    column-gap: 15px;
}

.left-social-block ul a {
    display: block;
}

.left-social-block ul img {
    width: 30px;
    height: 30px;
}

.menu .right {
    padding: 60px;
    width: 25%;
    background: rgba(255, 255, 255, 0.9);
}

.menu-right-title {
    margin-bottom: 30px;
    text-align: center;
    /* font-weight: 600; */
    color: var(--primary-color);
}

.menu-right-title span {
    display: block;
}

.menu-right-link {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
}

.menu-right-link a {
    color: var(--primary-color);
    text-decoration: none;
}

.reserve-btn {
    padding: 2px 25px;
    display: inline-block;
    border-radius: 2px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .menu {
        flex-direction: column;
    }

    .menu .left,
    .menu .right {
        width: 100%;
    }

    .left-content {
        margin: 0;
        row-gap: 20px;
    }

    .menu-left-link {
        flex-direction: column;
        row-gap: 20px;
    }

    .menu-prod-block {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-prod-block .main-prod-link {
        flex-basis: auto;
    }

    .menu-prod-block .main-prod-link a {
        flex-grow: 0;
    }

    .menu-prod-block .main-prod-link .icon {
        display: block;
        position: relative;
    }

    .menu-prod-block .main-prod-link .icon::before,
    .menu-prod-block .main-prod-link .icon::after {
        content: '';
        display: inline-block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 15px;
        height: 1px;
        background-color: #fff;
    }

    .menu-prod-block .main-prod-link .icon::before {
        transform: translateY(-50%) rotate(90deg);
    }

    .menu-prod-block.open .main-prod-link .icon::before {
        display: none;
    }
    
    .menu-prod-block .menu-prod-link {
        margin-top: 10px;
        margin-left: 10px;
        display: none;
    }

    .menu-prod-block.open .menu-prod-link {
        display: flex;
    }

    .left-social-block ul {
        position: fixed;
        top: 80px;
        right: 20px;
        flex-direction: column;
        row-gap: 15px;
    }
    
    .menu .right {
        padding: 30px;
    }

    .menu-right-title {
        text-align: start;
        font-size: 18px;
    }

    .menu-right-title span {
        display: inline-block;
    }

    .menu-right-link {
        display: grid;
        grid-template-columns: repeat(3, auto);
        row-gap: 20px;
    }
}

/* --------------------表尾-------------------- */
footer {
    margin-top: auto;
    padding-top: 80px;
    padding-bottom: 10px;
    color: var(--primary-color);
}

.footer-link {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(7, auto);
    row-gap: 20px;
    /* font-weight: bold; */
}

.footer-link a {
    text-decoration: none;
    color: var(--primary-color);
}

@media (max-width: 991.98px) {
    footer {
        padding-bottom: 40px;
    }
}

@media (max-width: 767.98px) {
    .footer-link {
        grid-template-columns: repeat(4, auto);
        justify-content: space-between;
    }

    .footer-link li:nth-child(4n) {
        text-align: end;
    }
}

.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 16px;
    font-size: 12px;
    white-space: nowrap;
}

.copyright p {
    margin-bottom: 0;
}

.copyright-info {
    display: flex;
    flex-wrap: wrap;
}

.copyright-info > * {
    padding: 0 16px;
    position: relative;
    display: block;
    color: var(--primary-color);
    text-decoration: none;
}

.copyright-info > *::before {
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    top: 3px;
    bottom: 3px;
    width: 0.5px;
    background: var(--primary-color);
}

@media (max-width: 991.98px) {
    .copyright {
        padding: 10px 0;
        flex-direction: column;
        row-gap: 5px;
        text-align: center;
    }

    .copyright-info {
        justify-content: center;
        row-gap: 3px;
    }

    .copyright-info > *:first-child::before {
        background: transparent;
    }
}

/* --------------------首頁-------------------- */
.slick_banner img {
    width: 100%;
}

.slick_banner .slick-dots {
    bottom: 15px;
}

.banner .slogan-large > * {
    letter-spacing: 2px;
}

.banner .slogan-large span:last-child {
    position: relative;
}

.banner .slogan-large span:last-child::before {
    content: '';
    position: absolute;
    top: 138%;
    left: 38px;
    right: 0;
    height: 3px;
    background: #fff;
}

.banner .slogan-large span:last-child::after {
    content: '';
    width: 38px;
    position: absolute;
    top: 138%;
    right: 0;
    height: 3px;
    background: #fff;
    transform: rotateZ(30deg);
    transform-origin: right;
}

.news-title {
    margin: 3rem 0;
    text-align: center;
}

.news-title .en {
    font-size: 28px;
    font-weight: 600;
}

.news-title .zh {
    font-size: 24px;
    font-weight: 400;
}

.news_slick.slick-dotted.slick-slider {
    margin-bottom: 40px;
}

.news_slick .slick-dots {
    bottom: -40px;
}

.news_slick .img {
    margin: 0 10px;
    padding-bottom: 42.86%;
    position: relative;
}

@media (min-width: 768px) {
    .news_slick {
        margin-left: -10px;
        margin-right: -10px;
    }
}

@media (max-width: 767.98px) {
    .banner .slogan-large {
        margin-bottom: 0;
    }

    .banner .slogan-large span:last-child::before {
        top: 150%;
        left: 5px;
    }

    .banner .slogan-large span:last-child::after {
        top: 150%;
        width: 45px;
    }

    .news-title {
        margin: 1.5rem 0;
    }

    .news-title .en {
        font-size: 25px;
        font-weight: 100;
    }
    
    .news-title .zh {
        font-size: 25px;
        font-weight: 350;
    }

    .news_slick.slick-dotted.slick-slider {
        margin-bottom: 45px;
    }

    .news_slick .slick-dots {
        bottom: -46px;
    }

    .news_slick .img {
        margin: 0;
    }
}

/* 手機版背景 */
@media (max-width: 991.98px) {
    .index-bg {
        padding-top: 0;
        height: 100px;
        position: relative;
        border-top: 1.6px solid var(--primary-color);
        background-position: center center;
    }

    .index-bg::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.6);
    }

    .index-bg.open::after {
        background: transparent;
    }

    .index-bg-text {
        padding: 0 2rem;
        position: relative;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--primary-color);
        font-size: 1.5rem;
        z-index: 1;
    }

    .index-bg-text .left {
        letter-spacing: 1px;
        line-height: 1;
    }

    .index-bg-text .right .zh {
        font-weight: 350;
    }

    /* .index-bg-text .arrow {
        font-size: 2rem;
    } */

    .index-bg.open .index-bg-text .arrow {
        display: inline-block;
        transform: rotate(90deg);
    }

    .index-bg.open .bg-text-white {
        color: #fff;
    }

    .index-content {
        display: none;
    }
}

/* 香水、香氛 */
.prod_slick.slick-dotted.slick-slider {
    margin-bottom: 65px;
}

.prod_slick .slick-dots {
    bottom: -60px;
}

.prod_slick .slick-prev {
    left: 0;
    z-index: 1;
}

.prod_slick .slick-next {
    right: 0;
    z-index: 1;
}

.prod_slick .img {
    position: relative;
    padding-bottom: 100%;
}

.prod_content {
    height: 100%;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
}

.prod_content .top {
    margin-bottom: 35px;
}

.prod_content .top h4 {
    font-size: 25px;
}

.prod_content .top h4.title-cn {
    font-size: 26px;
}

.prod_content .middle * {
    font-size: 15px !important;
    font-weight: 350 !important;
}

.prod_content .bottom {
    font-size: 14px;
}

.prod_content .middle p {
    margin-bottom: 8px;
}

.prod_content .bottom {
    margin-top: auto;
}

/* 加入收藏 */
.prod_content .action-wish {
    margin-top: 1rem;
    margin-bottom: 38px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prod_content .action-wish input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    appearance: none;
}

.prod_content .action-wish input[type="checkbox"]:checked ~ svg path {
    fill: var(--primary-color);
    stroke-width: 0;
}

@media (min-width: 992px) {
    .prod_content .action-wish:hover svg {
        transform: scale(1.1);
    }
}

.prod-link.index-link::before {
    left: 102%;
}

.prod-link.index-link::after {
    left: calc(102% + 50px);
}

.prod-volume .form-check-input:checked {
    background-color: transparent;
    border-color: var(--primary-color);
}

.prod-volume .form-check-input:checked[type=radio] {
    background-image: url('../images/circle.png');
    background-size: 7px;
}

.prod-volume .form-check-input:focus {
    box-shadow: 0 0 0 .25rem transparent;
}

.index-info .bg-desc {
    width: 160px;
    position: absolute;
    top: 50%;
    left: 10.4%;
    transform: translateY(-50%);
    font-weight: 400;
}

.index-info .bg-desc p {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .prod_content .top,
    .prod_content .middle,
    .prod_content .bottom,
    .prod_content .middle .prod-desc {
        margin-bottom: 20px;
    }

    .prod_content .middle .prod-desc {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .prod_content .prod-volume {
        font-size: 13.5px;
    }

    .prod-link.index-link::before {
        width: 80px;
        top: 140%;
        left: 50%;
        transform: translate(-50% , -50%);
    }

    .prod-link.index-link::after {
        top: 140%;
        left: calc(50% + 40px);
        width: 20px;
    }
}

/* 廠內探索 */
.index-bg .slogan-large {
    margin-bottom: 0;
    font-size: 2.5rem;
    /* font-weight: 500; */
    letter-spacing: 1rem;
}

.index-info {
    position: relative;
}

.index-info .img {
    padding-bottom: 75%;
    position: relative;
}

.index-info .bg-text {
    position: absolute;
    top: -38px;
    left: 8.33333333%;
    z-index: 1;
}

/* .index-info .bg-text > *:not(.title-en) span {
    font-size: 46px;
    font-weight: 300;
}

.index-info .bg-text .title-en span {
    font-size: 48px;
} */

.index-info .bg-text > *:first-child span {
    background-color: transparent;
}

.index-info .desc {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.index-info .desc p {
    margin-bottom: 0;
    font-weight: 400;
}

.index-link-block {
    height: 100%;
    display: inline-flex;
    flex-direction: column;
    justify-content: end;
}

.index-link {
    display: inline-block;
    position: relative;
}

.index-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 110%;
    width: 50px;
    height: 0.5px;
    transform: translateY(-50%);
    background: var(--primary-color);
}

.index-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(110% + 50px);
    width: 20px;
    height: 0.5px;
    background: var(--primary-color);
    transform: translateY(-50%) rotateZ(-160deg);
    transform-origin: left;
}

@media (max-width: 991.98px) {
    .index-info .bg-text {
        top: -1.2rem;
    }

    /* .index-info .bg-text > *:not(.title-en) span,
    .index-info .bg-text .title-en span {
        font-size: 25px;
    }

    .index-info .bg-text > *:not(.title-en) span {
        font-weight: 400;
    } */

    .index-info .desc {
        margin: 0 8px 48px 5px;
        align-items: center;
    }

    .index-info .desc p {
        margin-bottom: 0.8rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        font-weight: 350;
    }

    .index-info .black-link {
        font-size: 17px;
    }

    .index-link::before {
        width: 20px;
    }

    .index-link::after {
        left: calc(110% + 20px);
        width: 10px;
    }
}

/* 廠內活動 */
.index-event-container {
    margin-top: 30px;
}

@media (max-width: 991.98px) {
    .index-event-container {
        margin-top: 0;
    }
}

/* 預約 */
.reservation-title-container {
    margin-top: 15px;
    padding-top: 0;
}

.reservation-title-container .bg-text {
    position: static;
    margin-left: 8.33333333%;
}

@media (max-width: 991.98px) {
    .reservation-title-container {
        margin: 0;
        background-image: url("../images/about2.jpg")
    }
}

.booking-title {
    margin-bottom: 20px;
    padding: 5px 0;
    border-radius: 0.15rem;
    letter-spacing: 6px;
    text-align: center;
    background: var(--primary-color);
    color: #fff;
    font-size: 17.34px;
}

.booking-left {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.booking-left .booking-images-wrapper .img {
    margin-bottom: 0;
}

.booking-option-wrapper {
    display: flex;
    align-items: center;
    column-gap: 10px;
    border-bottom: 1px solid #c9c9c9;
}

.arrow-btn {
    padding: 0 0 8px 0;
    border: none;
    background: transparent;
    color: #c9c9c9;
}

.booking-option-viewport {
    flex-grow: 1;
    display: flex;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.booking-option-viewport li {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 10px;
    flex: 0 0 20%;
    letter-spacing: 4px;
    text-align: center;
    text-decoration: underline;
    font-size: 15px;
    color: #c9c9c9;
    cursor: pointer;
}

.booking-option-viewport li:first-child:before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    bottom: 7px;
    width: 1px;
    background-color: #c9c9c9;
}

.booking-option-viewport li:after {
    content: '';
    position: absolute;
    top: 7px;
    right: 0;
    bottom: 7px;
    width: 1px;
    background-color: #c9c9c9;
}

.booking-option-viewport li.active::after,
.booking-option-viewport li:not(:first-child):has(+ li.active)::after,
.booking-option-viewport li.active::before {
    background-color: var(--primary-color);
}

.booking-option-viewport li.active {
    border-bottom: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.booking-desc-wrapper {
    width: 80%;
    font-weight: 400;
}

@media (max-width: 991.98px) {
    .booking-title {
        font-size: 20px;
        font-weight: 350;
    }

    .booking-images-wrapper {
        order: 3;
    }

    .booking-option-wrapper{
        order: 1;
    }

    .booking-desc-wrapper {
        width: 100%;
        order: 2;
    }

    .booking-option-viewport li {
        flex: 0 0 33.333%;
        font-weight: 400;
    }
}

/* 預約(行事曆) */
.calendar {
    margin-bottom: 1.2rem;
}

.calendar-header {
    position: relative;
    margin-bottom: 1.2rem;
    padding: 3px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    font-size: 17px;
}

.calendar-header .month-picker-wrapper {
    display: flex;
    align-items: center;
    column-gap: 10px;
    cursor: pointer;
}

.calendar-header .month-picker-wrapper.open .arrow {
    color: #9e9f9f;
}

.calendar-header .month-picker {
    font-weight: 600;
    letter-spacing: 5px;
}

.calendar-header .booking-option-title {
    font-weight: 400;
    letter-spacing: 3px;
}

.calendar-body .calendar-week {
    margin-bottom: 6px;
    font-size: 21px;
}

.calendar-body .calendar-week ul,
.calendar-body .calendar-days ul {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.calendar-body .calendar-week ul li {
    text-align: center;
}

.calendar-body .calendar-days ul li a {
    /* padding: 6px 0; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 0.15rem;
    color: var(--primary-color);
    font-size: 22px;
}

.calendar-body .calendar-days ul li a.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-body .calendar-days ul li a.active {
    background: #9e9f9f;
    color: #fff;
}

.calendar-body .calendar-days ul li a.today,
.calendar-body .calendar-days ul li a.today.active {
    color: #b60e14;
}

.calendar-body .calendar-days ul li a.today.disabled {
    opacity: 0.5;
}

@media (min-width: 992px) {
    .calendar-body .calendar-days ul li:hover a:not(.disabled) {
        border-color: var(--primary-color);
    }
}

@media (max-width: 991.98px) {
    .calendar-header .booking-option-title {
        letter-spacing: 6px;
        font-size: 18px;
    }

    .calendar-header .month-picker {
        font-size: 18px;
    }

    .calendar-body .calendar-week {
        font-size: 18px;
    }

    .calendar-body .calendar-days ul li a {
        font-size: 20px;
    }
}

/* 月份彈跳視窗 */
.month-popup {
    display: none;
    width: 70%;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #b9baba;
    z-index: 1;
    font-size: 16px;
}

.month-popup .popup-header {
    padding: 5px 0;
    background: #9e9f9f;
    color: #fff;
    text-align: center;
}

.month-popup .popup-body {
    padding: 15px 10px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    background: #f1f2f2;
}

.month-popup .popup-body li {
    text-align: center;
}

.month-popup .popup-body a {
    display: block;
    padding: 2px 7px;
    border: 1px solid transparent;
    border-radius: 0.15rem;
    color: var(--primary-color);
    text-decoration: none;
}

.month-popup .popup-body a.active {
    background: #9e9f9f;
    color: #fff;
}

@media (min-width: 992px) {
    .month-popup .popup-body li:hover a {
        border-color: var(--primary-color);
    }
}

@media (max-width: 991.98px) {
    .month-popup {
        width: 90%;
    }

    .month-popup .popup-body {
        gap: 5px;
    }

    .month-popup .popup-body a {
        padding: 2px;
    }
}

.booking-time {
    margin-bottom: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.booking-time .item {
    padding: 4px 15px;
    border: 1px solid var(--primary-color);
    border-radius: 0.15rem;
    cursor: pointer;
    font-size: 18px;
}

.booking-time .item.active {
    border-color: #9e9f9f;
    background: #9e9f9f;
    color: #fff;
}

.booking-people {
    display: none;
    margin-bottom: 1.2rem;
    text-align: end;
}

.booking-info .black-btn {
    display: none;
    font-size: 17px;
}

.qty .qtyMinus,
.qty .qtyPlus {
    padding: 16px;
    display: block;
    position: relative;
    cursor: pointer;
}

.qty .qtyMinus::before,
.qty .qtyPlus::before,
.qty .qtyPlus::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    background-color: var(--primary-color);
}

.qty .qtyPlus::after {
    transform: translate(-50%) rotate(90deg);
}

.qty .qtyInput {
    text-align: center;
    border: none;
    outline: none;
    background-color: transparent;
}

.booking-people .qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--primary-color);
    border-radius: 0.15rem;
}

.booking-people .qty-input-block {
    padding: 0 50px;
    font-size: 17px;
}

.booking-people .qtyInput {
    width: 30px;
    text-align: end;
    letter-spacing: 1px;
}

.booking-people .qty-input-block span {
    display: inline-block;
    transform: translateY(1.5px);
    letter-spacing: 1px;
}

.booking-people small {
    display: block;
    text-decoration: underline;
    font-size: 11px;
    font-weight :600;
}

@media (max-width: 991.98px) {
    .booking-time .item {
        font-size: 16px;
    }

    .booking-people {
        text-align: center;
    }

    .booking-people .qtyInput {
        width: 40px;
    }

    .booking-people small {
        font-size: 13px;
        font-weight: 450;
        letter-spacing: 3px;
    }

    .booking-info .black-btn {
        padding: 1px 0;
        width: 60%;
        margin: 0 auto;
        display: block;
        border: 1px solid var(--primary-color);
        background: #fff;
        color: var(--primary-color);
        font-size: 18px;
        font-weight: 350;
        letter-spacing: 8px;
    }
}

/* 聯絡 */
.contact-block {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.contact-title.bg-text {
    position: absolute;
    top: 0;
    /* left: 0; */
}

.contact-title h5 {
    font-size: 2rem;
}

.contact-subtitle {
    margin-bottom: 2rem;
}

.contact-subtitle h6 {
    font-size: 30px;
    /* font-weight: 300; */
}

.contact-content ul {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    font-weight: 400;
}

.contact-content ul li {
    line-height: 1.7;
}

.contact-content ul a {
    text-decoration: none;
    color: var(--primary-color);
}

@media (max-width: 991.98px) {
    .contact-subtitle h6 {
        font-size: 31px;
    }
}

/* --------------------最新消息-------------------- */
/* bootstrap-select */
.bootstrap-select > .dropdown-toggle {
    padding: 0;
    border-radius: 0;
    border-color: var(--primary-color);
    background: #fff;
}

.bootstrap-select > .dropdown-toggle:active,
.bootstrap-select > .dropdown-toggle:focus {
    outline: none !important;
    background: #fff;
}

.bootstrap-select > .dropdown-toggle:after {
    content: "▼";
    margin: 0;
    padding: 4px 0.375rem 0.375rem;
    border: none;
    border-left: 1px solid var(--primary-color);
    font-size: 20px;
}

.bootstrap-select .dropdown-toggle .filter-option {
    padding: .375rem;
    text-align: center;
}

.bootstrap-select .dropdown-menu {
    padding: 0.375rem 0;
    border-radius: 0;
    border-color: var(--primary-color);
}

.title-bar {
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

@media (max-width: 991.98px) {
    .title-bar {
        margin-bottom: 40px;
    }
}

.news {
    position: relative;
}

.news a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.news .img,
.about .img,
.fragrance .img {
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 75%;
}

.news .img img,
.about .img img,
.fragrance .img img,
.event .img img,
.guide_slick .img img,
.space .img img,
.news_slick .img img,
.index-info .img img,
.prod_slick .img img,
.booking-images-wrapper .img img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news .img {
    margin-bottom: 25px;
}

.news .img .badge-top {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 10px;
    background: rgba(255, 255, 255, .3);
    font-size: 18px;
}

.news .img .badge-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 5px 10px;
    background: rgba(255, 255, 255, .3);
    font-size: 32px;
    letter-spacing: 2.5px;
    line-height: 1.2;
}

.news .content .title {
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news .content .title h6 {
    margin-bottom: 0;
    font-size: 1.6rem;
}

.news .content .title span {
    font-size: 17px;
    font-weight: 600;
}

.news .content p {
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 991.98px) {
    .news .img {
        margin-bottom: 18px;
    }

    .news .img .badge-top {
        font-size: 16px;
    }

    .news .img .badge-bottom {
        font-size: 26px;
    }

    .news .content .title {
        margin-bottom: 15px;
    }

    .news .content .title h6 {
        font-size: 1.25rem;
    }

    .news .content p {
        -webkit-line-clamp: 3;
    }
}

/* --------------------About-------------------- */
.brand-purpose {
    margin-bottom: 70px;
    text-align: center;
}

.brand-purpose h5 {
    font-weight: 500;
    letter-spacing: 5px;
}

.brand-purpose h6 {
    font-weight: 600;
    letter-spacing: 3.5px;
}

.tagline {
    margin: 0 auto;
    line-height: 2;
    text-align: center;
    font-weight: 350;
}

.tagline-large label {
    flex-shrink: 0;
}

.tagline-large .flex-row-md {
    align-items: flex-start;
}

@media (max-width: 767.98px) {
    .brand-purpose {
        margin-bottom: 60px;
    }

    .brand-purpose h5 {
        font-size: 1.1rem;
    }

    .tagline {
        line-height: 1.8;
    }

    .tagline-large {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }

    .tagline-large .flex-row-md {
        align-items: center;
    }
}

.about-bg-text {
    position: absolute;
    top: -38px;
    left: 8.33333333%;
    z-index: 1;
}

.about-bg-text > *:first-child span {
    background-color: transparent;
}

@media (max-width: 991.98px) {
    .about-bg-text {
        top: -1.2rem;
    }
}

.about {
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.about .img {
    margin-bottom: 25px;
}

.about .title-block {
    margin-bottom: 12px;
}

.about .title-block .title-zh {
    margin-bottom: 12px;
}

.about .desc {
    margin: auto auto 40px auto;
    text-align: start;
}

@media (max-width: 991.98px) {
    .about .img {
        margin-bottom: 18px;
    }

    .about .title-block {
        margin-bottom: 8px;
        color: #000;
    }

    .about .title-block .title-zh {
        margin-bottom: 8px;
        font-size: 1.1rem;
    }

    .about .title-block .title-en {
        font-size: 15px;
    }

    .about .desc {
        margin-bottom: 25px;
    }
}

.custom-lg.container .fragrance:not(:last-child) {
    margin-bottom: 7.5rem;
}

.fragrance .img {
    margin-bottom: 0;
}

.fragrance .content {
    margin: 0 auto;
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.fragrance .content .title-block {
    margin-bottom: 5rem;
}

.fragrance .content .title-block h3 {
    margin-bottom: 5px;
    font-size: 2.3rem;
    letter-spacing: 3px;
}

.fragrance .content .title-block h4 {
    margin-top: 20px;
    font-size: 2.1rem;
    letter-spacing: 3px;
}

.fragrance .content .desc {
    margin: 0 auto;
    width: 60%;
    text-align: start;
}

.fragrance .content .desc p {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .custom-lg.container .fragrance:nth-child(2n) {
        flex-direction: row-reverse;
    }
}

@media (max-width: 991.98px) {
    .custom-lg.container .fragrance:not(:last-child) {
        margin-bottom: 3.5rem;
    }

    .fragrance .content .title-block {
        margin-bottom: 0.8rem;
    }

    .fragrance .content .title-block h3 {
        font-size: 1.3rem;
    }

    .fragrance .content .title-block h4 {
        margin-top: 10px;
        font-size: 1.25rem;
    }

    .fragrance .img {
        margin-bottom: 20px;
    }

    .fragrance .content {
        width: 100%;;
    }

    .fragrance .content .desc {
        width: 83.33333333%;;
    }
}

/* --------------------廠內活動-------------------- */
.brand-bg-text {
    position: absolute;
    top: 15%;
    left: 8.33333333%;
}

.slogan-bg-text {
    line-height: 0.7;
    background: #fff;
    color: var(--primary-color);
    font-size: 65px;
}

.slogan-bg-text > * {
    display: inline-block;
}

@media (max-width: 991.98px) {
    .brand-bg-text {
        top: 17%;
    }

    .slogan-bg-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 0.8rem;
        background: transparent;
        font-size: 38px;
    }

    .slogan-bg-text > * {
        background-color: #fff;
    }
}

.event .img,
.guide_slick .img {
    position: relative;
    padding-bottom: 42.86%;
}

.event .content {
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.event .content .date {
    margin-bottom: 2px;
    font-size: 1.6rem;
}

.event .content .title {
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
}

.event .content p {
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event .content .link {
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0;
    line-height: 1;
    color: #fff;
    background-color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
}

@media (max-width: 991.98px) {
    .event .content p {
        margin-bottom: 3px;
        -webkit-line-clamp: 2;
    }

    /* .event .content .title {
        margin-bottom: 0.5rem;
    } */

    .event .content .date {
        font-size: 1.5rem;
    }

    .event .content .title {
        font-size: 1.25rem;
    }
}

/* @media (min-width: 768px) and (max-width: 991.98px) {
    .event .content .date,
    .event .content .title {
        font-size: 1.1rem;
    }
} */

@media (max-width: 767.98px) {
    .event .img {
        margin-bottom: 8px;
    }

    .event .content p {
        margin-bottom: 0;
    }

    .event .content .date {
        margin-bottom: 3px;
        font-size: 1.5rem;
    }

    .event .content .title {
        margin-bottom: 1rem;
        font-size: 1.25rem;
    }

    .event .content .link {
        position: static;
        margin-top: 0.5rem;
    }
}

/* --------------------廠域探索-------------------- */
.guide_slick .img {
    margin-bottom: 10px;
}

.floor-info-title {
    transform: translateY(20px);
}

@media (max-width: 991.98px) {
    .guide_slick .img {
        margin-bottom: 2px;
    }

    .floor-info-title {
        transform: translateY(0);
    }
}

.floor-SD {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.floor-desc {
    margin-bottom: 20px;
    font-size: 14px;
}

.floor-desc h6 {
    margin-bottom: 0;
    font-weight: bold;
    font-size: 14px;
}

@media (max-width: 991.98px) {
    .floor-SD.floor2,
    .floor-SD.floor3,
    .floor-SD.floor4 {
        margin-top: -25px;
    }

    .floor-desc {
        margin-bottom: 0;
        font-size: 16px;
    }

    .floor-desc h6 {
        font-size: 16px;
    }
}

.guide_slick {
    margin-bottom: 0 !important;
}

.guide_slick_list .slick-prev {
    top: auto;
    left: 0;
    bottom: -3px;
    z-index: 1;
}

.guide_slick_list .slick-next {
    top: auto;
    right: 0;
    bottom: -3px;
}

.floor-content .content {
    margin-top: 15px;
    width: 80%;
}

.floor-content .content h5 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.floor-content .guide_slick_list::before {
    content: '';
    position: absolute;
    top: 1.6rem;
    right: 119%;
    transform-origin: right center; /* 設定旋轉的基準點 */
    height: 0.5px;
    background: gray;
}

.floor-content .guide_slick_list::after {
    content: '';
    position: absolute;
    top: 1.6rem;
    right: 101%;
    width: 18%;
    height: 0.5px;
    background: gray;
}

.floor-content.floor1 .guide_slick_list::before {
    transform: translateY(-50%) rotateZ(35deg);
    width: 2.5%;
}

.floor-content.floor2 .guide_slick_list::before {
    transform: translateY(-50%) rotateZ(75deg);
    width: 10%;
}

.floor-content.floor3 .guide_slick_list::before {
    transform: translateY(-50%) rotateZ(80deg);
    width: 15%;
}

.floor-content.floor4 .guide_slick_list::before {
    transform: translateY(-50%) rotateZ(83deg);
    width: 19%;
}

@media (min-width: 1920px) {
    .floor-content.floor1 .guide_slick_list::before {
        width: 10%;
    }

    .floor-content.floor2 .guide_slick_list::before {
        transform: translateY(-50%) rotateZ(55deg);
        width: 16%;
    }

    .floor-content.floor3 .guide_slick_list::before {
        transform: translateY(-50%) rotateZ(62deg);
        width: 20%;
    }

    .floor-content.floor4 .guide_slick_list::before {
        transform: translateY(-50%) rotateZ(67deg);
        width: 25%;
    }
}

/* @media (max-width: 1399.98px) {
    .floor-content.floor1 .guide_slick_list::before {
        width: 7%;
    }

    .floor-content.floor2 .guide_slick_list::before {
        width: 20%;
    }

    .floor-content.floor3 .guide_slick_list::before {
        width: 25%;
    }
} */

.floor-content .content p {
    margin-bottom: 15px;
}

.link-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.link-tag {
    display: block;
    width: 140px;
    padding: 4px 0;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    text-align: center;
    letter-spacing: 5px;
}

.link-tag.active {
    color: #fff;
    background: var(--primary-color);
}

@media (max-width: 991.98px) {
    .floor-SD {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .floor-content.floor1 {
        margin-top: -15px;
    }

    .floor-content.floor2,
    .floor-content.floor3,
    .floor-content.floor4 {
        margin-top: -28px;
    }

    .floor-content .content {
        width: 100%;
    }

    .floor-content .content h5 {
        font-size: 1.1rem;
    }

    .floor-content .content p {
        font-size: 14px;
    }

    .floor-content .guide_slick_list::before,
    .floor-content .guide_slick_list::after {
        width: 0;
        height: 0;
    }

    .link-wrap {
        margin: 0 12px 0 12px;
        gap: 10px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .link-tag {
        padding: 4px;
        width: auto;
        font-size: 14px;
    }

    /* 輪播樣式圖片 */
    .guide_slick .slick-dots {
        margin-left: 0;
        margin-right: 0;
        display: block;
        width: 100%;
    }

    .guide_slick .slick-dots li:first-child {
        margin-left: 0;
    }
}

/* 圓柱體 */
.cylinder {
    position: relative;
    overflow: hidden;
    width: 250px;
    height: 100px;
    border-radius: 125px / 25px;
    border-left: 0.5px solid gray;
    border-right: 0.5px solid gray;
}

.cylinder::before,
.cylinder::after,
.cylinder .bottom::before,
.cylinder .bottom::after {
    content: '';
    position: absolute;
    left: 0;
    width: 250px;
    height: 50px;
    border-radius: 125px / 25px;
}

.cylinder::after {
    border-bottom: 0.5px solid gray;
}

.cylinder::before,
.cylinder .bottom::before {
    top: 0;
}

.cylinder .bottom::before {
    border-top: 0.5px solid gray;
}

.cylinder::after,
.cylinder .bottom::after {
    bottom: 0;
}

.cylinder .bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 250px;
    height: 0;
    padding-top: 50px;
    border-radius: 125px / 25px;
}

.cylinder2 {
    transform: translateY(50px);
}

.cylinder3 {
    transform: translateY(100px);
}

.cylinder4 {
    transform: translateY(150px);
}

.cylinder4 .cylinder::before {
    border-top: 0.5px solid gray;
    border-bottom: 0.5px solid gray;
}

.floor-group {
    transform: translateY(-90px);
}

.floor-group .item {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.floor-group .item .label {
    font-size: 38px;
    opacity: 0.3;
}

.floor1 .cylinder1 .cylinder {
    /* background-color: rgba(182, 197, 207, 0.5); */
    background-color: rgba(182, 197, 207, 1);
}

.floor1 .cylinder1 .cylinder::before,
.floor2 .cylinder2 .cylinder::before,
.floor3 .cylinder3 .cylinder::before,
.floor4 .cylinder4 .cylinder::before {
    /* background-color: rgba(182, 197, 207, 0.2); */
    border-bottom: 0.5px solid gray;
}

.floor1 .cylinder1 .cylinder .bottom::before,
.floor1 .cylinder1 .cylinder .bottom::after {
    background-color: rgba(182, 197, 207, 0.4);
}

.floor2 .cylinder2 .cylinder {
    background-color: rgba(223, 182, 187, 1);
}

.floor2 .cylinder2 .cylinder .bottom::before,
.floor2 .cylinder2 .cylinder .bottom::after {
    background-color: rgba(223, 182, 187, 0.4);
}

.floor3 .cylinder3 .cylinder {
    background-color: rgba(174, 213, 192, 1);
}

.floor3 .cylinder3 .cylinder .bottom::before,
.floor3 .cylinder3 .cylinder .bottom::after {
    background-color: rgba(174, 213, 192, 0.4);
}

.floor4 .cylinder4 .cylinder {
    background-color: rgba(177, 166, 154, 1);
}

.floor4 .cylinder4 .cylinder .bottom::before,
.floor4 .cylinder4 .cylinder .bottom::after {
    background-color: rgba(177, 166, 154, 0.4);
}

.floor1 .cylinder1 .label,
.floor2 .cylinder2 .label,
.floor3 .cylinder3 .label,
.floor4 .cylinder4 .label {
    opacity: 1;
}

@media (max-width: 991.98px) {
    .floor-group .item .label {
        font-size: 20px;
    }

    /* 圓柱體 */
    .cylinder {
        width: 100px;
        height: 50px;
        border-radius: 50px / 12.5px;
    }
    
    .cylinder::before,
    .cylinder::after,
    .cylinder .bottom::before,
    .cylinder .bottom::after {
        width: 100px;
        height: 25px;
        border-radius: 50px / 12.5px;
    }
    
    .cylinder .bottom {
        width: 100px;
        padding-top: 25px;
        border-radius: 50px / 12.5px;
    }

    .cylinder2 {
        transform: translateY(25px);
    }
    
    .cylinder3 {
        transform: translateY(50px);
    }

    .cylinder4 {
        transform: translateY(75px);
    }

    .floor-group {
        margin-right: 5px;
        transform: translateY(-30px);
    }

}

/* 其他空間 */
.spaces-title {
    margin-bottom: 7rem;
    display: flex;
    align-items: flex-end;
    column-gap: 50px;
}

.spaces-title .floor-desc {
    margin-bottom: 0;
}

.space .content .img,
.booking-images-wrapper .img {
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 56.25%;
}

.space .content h5 {
    margin-bottom: 10px;
    position: relative;
    font-size: 1.25rem;
}

.space {
    position: relative;
}

.space2 {
    margin-bottom: 3rem;
}

.space1 .space-SD {
    position: absolute;
    top: -10%;
    left: 125%;
}

.space2 .space-SD {
    position: absolute;
    left: -50%;
    bottom: 2%;
}

.space3 .space-SD {
    position: absolute;
    top: -8%;
    left: -85%;
}

.space1 .content .img::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 110%;
    transform-origin: left center; /* 設定旋轉的基準點 */
    height: 0.5px;
    background: gray;
    transform: translateY(-50%) rotateZ(-30deg);
    width: 30%;
}

.space1 .content .img::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 102%;
    transform: translateY(-50%);
    width: 8%;
    height: 0.5px;
    background: gray;
}

.space2 .content h5::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 111%;
    transform-origin: right center; /* 設定旋轉的基準點 */
    height: 0.5px;
    background: gray;
    transform: translateY(-50%) rotateZ(-35deg);
    width: 30%;
}

.space2 .content h5::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 101%;
    transform: translateY(-50%);
    width: 10%;
    height: 0.5px;
    background: gray;
}

.space3 .content .img::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 109%;
    transform-origin: right center; /* 設定旋轉的基準點 */
    height: 0.5px;
    background: gray;
    transform: translateY(-50%) rotateZ(30deg);
    width: 55%;
}

.space3 .content .img::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 101%;
    transform: translateY(-50%);
    width: 8%;
    height: 0.5px;
    background: gray;
}

@media (max-width: 991.98px) {
    .space1 {
        margin-bottom: 30px;
    }

    .space2 {
        margin-bottom: 87px;
    }

    .spaces-title {
        margin-bottom: 2rem;
        align-items: flex-start;
        flex-direction: column;
        row-gap: 60px;
    }

    .space .space-SD {
        margin: 3rem 0 2rem 1rem;
    }

    .space .content h5 {
        margin-bottom: 15px;
        font-size: 1.55rem;
    }

    .space .content .img {
        margin-bottom: 19px;
    }

    .space .content p {
        font-size: 15px;
    }

    .space .space-SD,
    .space .content .img::before,
    .space .content .img::after,
    .space .content h5::before,
    .space .content h5::after {
        position: static;
    }
}

/* 圓柱體 */
.space .cylinder {
    width: 100px;
    height: 130px;
    border-radius: 50px / 25px;
    border-left: 1px solid gray;
    border-right: 1px solid gray;
}

.space .cylinder::before,
.space .cylinder::after {
    width: 100px;
    height: 50px;
    border-radius: 50px / 25px;
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
    border-left: 1px solid gray;
    border-right: 1px solid gray;
}

@media (max-width: 991.98px) {
    .space .cylinder {
        width: 130px;
        height: 145px;
        border-radius: 65px / 25px;
    }

    .space .cylinder::before, .space .cylinder::after {
        width: 130px;
        border-radius: 65px / 25px;
    }
}

/* 正方體 */
.cube > .top {
    width: 80px;
    height: 20px;
    border-top: 1px solid gray;
    border-left: 1px solid gray;
    border-right: 1px solid gray;
    transform: skew(-45deg, 0deg) translate(10px, 0px);
}

.cube > .center {
    display: inline-block;
    width: 80px;
    height: 80px;
    border: 1px solid gray;
}

.cube > .right {
    display: inline-block;
    width: 20px;
    height: 80px;
    border-right: 1px solid gray;
    border-bottom: 1px solid gray;
    transform: skew(0deg, -45deg) translate(0px, -10px);
}

@media (max-width: 991.98px) {
    .cube > .top {
        width: 110px;
    }

    .cube > .center {
        width: 110px;
        height: 110px;
    }

    .cube > .right {
        height: 110px;
    }
}

/* 長方體 */
.cuboid > .top {
    width: 140px;
    height: 20px;
    border-top: 1px solid gray;
    border-left: 1px solid gray;
    border-right: 1px solid gray;
    transform: skew(-45deg, 0deg) translate(10px, 0px);
}

.cuboid > .center {
    display: inline-block;
    width: 140px;
    height: 70px;
    border: 1px solid gray;
}

.cuboid > .right {
    display: inline-block;
    width: 20px;
    height: 70px;
    border-right: 1px solid gray;
    border-bottom: 1px solid gray;
    transform: skew(0deg, -45deg) translate(0px, -10px);
}

@media (max-width: 991.98px) {
    .cuboid > .top {
        width: 170px;
        height: 30px;
        transform: skew(-45deg, 0deg) translate(15px, 0px);
    }

    .cuboid > .center {
        width: 170px;
        height: 80px;
    }

    .cuboid > .right {
        width: 30px;
        height: 80px;
        transform: skew(0deg, -45deg) translate(0px, -15px);
    }
}

/* --------------------頁碼-------------------- */
.page-nav {
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    list-style: none;
}

.page-nav a {
    display: inline-block;
    text-decoration: none;
    color: var(--primary-color);
}

.page-nav a:not(.prev):not(.next) {
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 50%;
    text-align: center;
}

.page-nav .page-item.active a {
    background-color: var(--primary-color);
    color: #fff;
}

@media (min-width: 992px) {
    .page-nav .page-item:hover a:not(.prev):not(.next) {
        background-color: var(--primary-color);
        color: #fff;
    }
}

/* --------------------預約-------------------- */
.main-title {
    margin-bottom: 18px;
    text-align: center;
    /* font-weight: bold; */
    letter-spacing: 0.5px;
}

.main-title span {
    padding: 0 15px;
    display: inline-block;
    position: relative;
}

.main-title span::before,
.main-title span::after {
    content: '';
    display: block;
    width: 2px;
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: var(--primary-color);
}

.main-title span::before {
    left: 0;
}

.main-title span::after {
    right: 0;
}

.reservationModal .modal-header {
    padding: 6px 15px;
    border-bottom: none;
    background: #39464e;
    color: #fff;
}

.reservationModal .modal-title {
    /* font-weight: bold; */
    font-size: 1.15rem;
}

.reservationModal .modal-body {
    padding: 20px 40px 10px 40px;
}

.reservationModal .modal-body .item {
    margin-bottom: 5px;
    display: flex;
}

.reservationModal .modal-body .item span:first-child {
    flex: 0 0 110px;
}

.reservationModal .modal-footer {
    border-top: none;
}

@media (max-width: 767.98px) {
    .reservationModal .modal-body {
        padding: 15px 20px 0px 20px;
    }

    .reservationModal .modal-body .item span:first-child {
        flex: 0 0 100px;
    }
}

.radius-block {
    height: 100%;
    padding: 20px 30px;
    border-radius: 0.35rem;
    background: #f9f9f9;
}

.radius-block p {
    margin-bottom: 10px;
}

.radius-block p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .radius-block {
        padding: 20px;
    }
}