@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');
/*圓體(日文)*/

/* 共用變數 */
:root {
    --primary-base: #fff1b3;
    --primary-base-hover: #d4a224;
    --primary-dark: #e0ba7f;
    --primary-light: #fce15e;
    --accent-base: #fff1f1;
    --accent-dark: #e39696;
    --accent-light: #ff937b;
    --highlight-base: #d2f1fd;
    --highlight-dark: #98cee6;
    --highlight-light: #9fc9f9;
    --bg: #fffcf1;
    --area-line: #e8c92a;
    --coast-line: #ffefab;
    --city-center: #ffe266;
    --tun-district: #e5d180;
    --mountain-line: #ffe780;
    /* black */
    --black-100: rgba(0, 0, 0, 1);
    --black-90: rgba(0, 0, 0, 0.9);
    --black-80: rgba(0, 0, 0, 0.8);
    --black-70: rgba(0, 0, 0, 0.7);
    --black-60: rgba(0, 0, 0, 0.6);
    --black-50: rgba(0, 0, 0, 0.5);
    --black-40: rgba(0, 0, 0, 0.4);
    --black-30: rgba(0, 0, 0, 0.3);
    --black-20: rgba(0, 0, 0, 0.2);
    --black-10: rgba(0, 0, 0, 0.1);
    /* white */
    --white-100: rgba(255, 255, 255, 1);
    --white-90: rgba(255, 255, 255, 0.9);
    --white-80: rgba(255, 255, 255, 0.8);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-60: rgba(255, 255, 255, 0.6);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-40: rgba(255, 255, 255, 0.4);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-0: rgba(255, 255, 255, 0);
    /* grey */
    --Grey-900: #131927;
    --Grey-800: #212936;
    --Grey-700: #394050;
    --Grey-600: #4d5461;
    --Grey-500: #6d717f;
    --Grey-400: #9ea2ae;
    --Grey-300: #d2d5db;
    --Grey-200: #e5e7ea;
    --Grey-100: #f3f4f6;
    --Grey-50: #f9fafb;
    /* Functional */
    --success-dark: #215b00;
    --success-base: #75e15a;
    --success-light: #c8fadb;
    --danger-dark: #65071c;
    --danger-base: #d33928;
    --danger-light: #fce5d3;
    --warning-dark: #754e00;
    --warning-base: #f4bb00;
    --warning-light: #fef7cb;
    --font-maru: "Zen Maru Gothic", sans-serif;
    --font-bs-icon: "bootstrap-icons";
}


/* 項目icon圖案 */
.img-icon::before {
    content: '\F42A';
}

.pdf-icon::before {
    content: '\F63E';
}

.doc-icon::before {
    content: '\F38D';
}

.ppt-icon::before {
    content: '\F381';
}

.xls-icon::before {
    content: '\F368';
}

.archive-icon::before {
    content: '\F391';
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: "微軟正黑體", sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 165%;
    color: #333;
    overflow-x: hidden;
    background-image: url('../images/inspiration-geometry.png');
}

img {
    max-width: 100%;
    height: auto;
}

a:focus, button:focus, select:focus, input:focus {
    outline: 3px dotted var(--danger-base) !important;
}

.sr-only {
    display: none !important;
}

.wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

header {
    transition: all 0.3s;
    position: fixed;
    z-index: 3;
    width: 100%;
    top: 0px;
    left: 0px;
    padding: 1rem 0;
}

header.sticky {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 999;
}

header>.wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.oc-edit-buttons-visible header.sticky {
    top: 50px;
}

header .logo h1 {
    margin-bottom: 0;
    line-height: 1;
}

header .logo h1 a {
    display: block;
}

header .logo h1 a img {
    height: 60px;
}

header nav {
    display: flex;
    align-items: center;
    margin-left: auto;
    position: relative;
}

@media (max-width:991px) {
    header.active nav {
        width: 100%;
        height: 100vh;
        position: absolute;
        top: 0px;
        left: 0px;
        background-color: var(--black-30);
        flex-direction: column;
        justify-content: center;
    }
}

header nav .nav {
    background-color: var(--primary-dark);
    border-radius: 30px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1)
}

@media (max-width:991px) {
    header nav .nav {
        display: none;
    }

    header.active nav .nav {
        display: block;
        width: 50%;
    }
}

@media (max-width:767px) {
    header.active nav .nav {
        width: 80%;
    }
}

header nav ul li {
    position: relative;
    transition: all 0.3s;
}

header nav ul li::before {
    content: '';
    background-color: var(--primary-light);
    border-radius: 30px;
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 0;
    transition: all 0.3s;
    transform: scale(0);
    width: 160px;
    height: 60px;
    margin: 0 -10px
}

@media (max-width:991px) {
    header nav ul li::before {
        width: 100%;
        margin: 0;
    }
}

header nav ul li:hover::before,
header nav ul li:focus::before {
    transform: scale(1);
}

header nav ul li:first-child::before {
    left: initial;
    right: 0px;
    transition: all 0.3s
}

header nav ul li a {
    text-decoration: none;
    color: var(--Grey-700);
    font-size: 1.5rem;
    padding: 0 20px;
    line-height: 60px;
    font-family: var(--font-maru);
    letter-spacing: 1px;
    font-weight: 500;
    display: block;
    position: relative;
    text-align: center;
}


header nav>ul>li:first-child>a {
    /* padding: 0 20px 0 30px; */
}

@media (max-width:991px) {
    header nav>ul>li:first-child>a {
        padding: 0 20px;
    }
}

header nav>ul>li:last-child>a {
    /* padding: 0 30px 0 20px; */
}

@media (max-width:991px) {
    header nav>ul>li:last-child>a {
        padding: 0 20px;
    }
}

header nav li .arrow {
    background-color: var(--white-100);
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

header nav li .arrow.active {
    transform: rotate(90deg);
}

header nav li .arrow::before {
    content: '\F285';
    font-family: var(--font-bs-icon);
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--blue-color);
    line-height: 1;
}

header nav .sitemap {
    display: flex
}

header nav .sitemap a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-light);
    margin-right: 0.5rem;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    color: var(--Grey-700);
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
}

@media (max-width:1040px) {
    header nav .sitemap a {
        width: 50px;
        height: 50px;
    }
}

@media (max-width:991px) {
    header nav .sitemap {
        display: none;
    }

    header.active nav .sitemap {
        display: block;
        width: 50%;
    }

    header nav .sitemap a {
        width: 100%;
        border-radius: 30px;
        margin-bottom: 1rem;
        text-decoration: none;
        font-family: var(--font-maru);
        margin-right: 0;
        font-size: 1.25rem;
    }

    header.active nav .sitemap span {
        display: block;
    }
}

@media (max-width:767px) {
    header.active nav .sitemap {
        width: 80%;
    }
}

header nav .sitemap a::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-dark);
    z-index: -1;
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.3s;
}

header nav .sitemap a:hover::before {
    transform: scale(1);
}

header nav .sitemap a i::before {
    font-weight: 600 !important;
}

header nav .sitemap span {
    display: none;
}

@media (max-width:991px) {
    header nav .sitemap span {
        display: block;
        margin-left: 0.5rem;
        font-weight: 500;
    }
}

.mobiBtn {
    display: none;
}

.mobiBtn a {
    color: var(--white-100);
    font-size: 1.5rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2)
}

@media (max-width:991px) {
    .mobiBtn {
        display: block;
        position: fixed;
        z-index: 2;
        top: 1.5rem;
        right: 1.5rem;
    }
}

@media (max-width:575px) {
    .mobiBtn a {
        width: 36px;
        height: 36px;
        line-height: 1
    }
}

.banner {
    overflow: hidden;
    width: 100%;
    height: 100vh;
    position: relative;
    background-color: var(--bg);
}

@media (max-width:1024px) {
    .banner {
        height: initial;
        position: relative;
    }
}

@media (max-width:991px) {
    .banner .item a {
        aspect-ratio: 16 / 9;
        overflow: hidden;
        display: flex;
    }
}

@media (max-width:768px) {
    .banner .item a {
        aspect-ratio: 3 / 4;
    }
}

.banner .item a {
    display: block
}

.banner .item a:focus {
    border: var(--danger-base) 3px dotted
}

.banner img {
    height: 100vh;
    object-fit: cover;
}

@media (max-width:991px) {
    .banner img {
        height: 100%;
    }
}

@media (max-width:768px) {
    .banner img {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }
}

.banner .owl-nav {
    position: absolute;
    top: calc(50% - 40px);
    width: 100%;
    z-index: 1;
}

.banner .owl-nav button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-dark);
    border: none;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
}

@media (max-width:991px) {
    .banner .owl-nav button {
        width: 60px;
        height: 60px;
    }
}

@media (max-width:767px) {
    .banner .owl-nav button {
        width: 50px;
        height: 50px;
    }
}

.banner .owl-nav button::before {
    font-family: var(--font-bs-icon);
    font-size: 2.5rem;
}

@media (max-width:575px) {
    .banner .owl-nav button::before {
        font-size: 1.75rem;
    }
}

.banner .owl-prev {
    left: 20px;
}

@media (max-width:1440px) {
    .banner .owl-prev {}
}

.banner .owl-prev::before {
    content: '\F12C';
}

.banner .owl-next {
    right: 20px;
}

@media (max-width:1440px) {
    .banner .owl-next {
        right: 30px;
    }
}

.banner .owl-next::before {
    content: '\F135';
}

.banner .owl-dots {
    width: 100%;
    bottom: 1rem;
}

@media (max-width:480px) {
    .banner .owl-dots {
        bottom: 2rem;
    }
}

.banner .kv {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('../images/kv-bg-top.png'), url('../images/kv-bg.png');
    background-repeat: no-repeat, no-repeat;
    background-position: top center, bottom center;
}

@media (orientation: portrait) {
    .banner .kv {
        height: initial;
    }
}

.banner .kv img {
    height: initial;
    object-fit: initial;
    width: initial;
    max-width: 100%;
}

.owl-dots {
    text-align: center;
    margin: 1rem 0;
    position: absolute;
    z-index: 2;
    width: 100%;
}

.owl-dots button {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin: 0.25rem;
    background-color: var(--primary-light);
    border: none;
    position: relative;
}

@media (max-width:575px) {
    .owl-dots button {
        width: 12px;
        height: 12px;
    }
}

.owl-dots button::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--primary-dark);
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.3s
}

.owl-dots button:hover::before, .owl-dots button.active::before {
    transform: scale(1);
}

.owl-dots button span {
    display: none;
}

.marqueeBlk {
    /* padding: 0 1rem; */
    margin-bottom: 2rem;
}

@media (max-width:991px) {
    .marqueeBlk {
        padding: 0;
    }
}

.message {
    background-color: var(--primary-light);
    display: flex;
    padding: 1.125rem 1.5rem;
    border-radius: 30px;
    margin: 1rem 0;
}

.marquee-title {
    flex-shrink: 0;
    border-right: var(--Grey-600) 1px solid;
    padding-right: 1rem;
    line-height: 26px;
    color: var(--Grey-600);
    font-weight: 600;
}

.marquee-title i {
    margin-right: 0.5rem
}

.marqueeBlk a {
    font-weight: 600;
    text-decoration: none;
    color: var(--Grey-700);
    line-height: 1;
}

.marqueeBlk a:hover {
    text-decoration: underline
}

.marqueeBlk a:focus {
    outline-offset: -2px;
}

.marqueeBlk .more a {
    background-color: var(--white-100);
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.marqueeBlk .more a:hover {
    background-color: var(--blue-color);
    color: var(--white-color);
}

.newsBlk-wrapper {
    position: relative;
    /* background-color: var(--white-100); */
    padding-bottom: 12rem;
    /* overflow: hidden; */
    padding: 0 1rem;
    margin-bottom: 5rem;
}

@media (max-width:991px) {
    .newsBlk-wrapper {
        padding-bottom: 0rem
    }
}

@media (max-width:575px) {
    .newsBlk-wrapper {
        padding-bottom: 0rem
    }
}

.newsBlk-wrapper::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 500px;
    border-radius: 100% 100% 0 0;
    background: inherit;
    top: -40%;
    left: 50%;
    transform: translate(-50%, 20%);
    z-index: 0;
    background-color: var(--white-100);
    background-image: url('../images/inspiration-geometry.png');
}

@media (max-width:991px) {
    .newsBlk-wrapper::before {
        top: -45%;
        transform: translate(-50%, 30%);
    }
}

@media (max-width:768px) {
    .newsBlk-wrapper::before {
        height: 250px;
        top: -250px;
        transform: translate(-50%, 50%)
    }
}

.newsBlk {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

@media (max-width:991px) {
    .newsBlk {
        /* padding: 0 2.25rem; */
    }
}

@media (max-width:575px) {
    .newsBlk {
        /* padding: 0 1rem; */
    }
}

.newsBlk .title h2::before, .newsBlk .title h2::after {
    filter: brightness(200%)
}

.news-list {
    /* padding: 0 1rem; */
}

@media (max-width:991px) {
    .news-list {
        padding: 0;
    }
}

.news-list ul {
    margin: 0;
    padding: 1.5rem;
    background-color: var(--white-100);
    border-radius: 20px;
}

@media (max-width:575px) {
    .news-list ul {
        padding: 1rem;
    }
}

.news-list ul li {
    list-style: none;
    border-bottom: var(--Grey-300) 1px dotted;
    transition: all 0.3s;
}

.news-list ul li a {
    display: flex;
    text-decoration: none;
    line-height: 1;
    padding: 0.75rem 1.5rem;
    align-items: baseline;
    color: var(--Grey-700);
}

@media (max-width:767px) {
    .news-list ul li a {
        flex-wrap: wrap;
        padding: 0.75rem 0rem;
    }
}

.news-list ul li:hover {
    background-color: var(--accent-base);
    border-radius: 50px
}

.news-list ul li a::after {
    content: '\F133';
    font-family: var(--font-bs-icon);
    margin-left: auto;
    color: var(--primary-dark);
    transition: all 0.3s;
}

@media (max-width:991px) {
    .news-list ul li a::after {
        display: none;
    }
}

.news-list ul li a:hover::after {
    transform: translateX(3px);
    color: var(--accent-dark);
}

.news-list ul li a .date {
    flex-shrink: 0;
    margin-right: 1rem;
    /* padding-right: 1rem; */
    font-size: 1.125rem;
}

@media (max-width:767px) {
    .news-list ul li a .date {
        width: 100%;
        border-right: none;
        margin-right: 0;
    }
}

.news-list ul li a .info {
    display: flex;
    margin-right: 0.25rem;
    flex-shrink: 0;
}

@media (max-width:767px) {
    .news-list ul li a .info {
        margin-top: 0.75rem;
    }
}

.news-list ul li a .info>div {
    margin: 0 0.5rem 0 0;
    font-size: 0.9rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px
}

.news-list ul li a .info>div:first-child {
    background-color: var(--highlight-base)
}

.news-list ul li a .info>div:first-child::before {
    content: '\F3E7';
    font-family: var(--font-bs-icon);
    margin-right: 0.25rem;
    vertical-align: bottom;
}

.news-list ul li a .info>div:last-child {
    background-color: var(--Grey-200)
}

.news-list ul li a .text {
    line-height: 1.65;
    margin-right: 1rem;
    word-break: break-word;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width:991px) {
    .news-list ul li a .text {
        margin-right: 0rem;
        margin-bottom: 0rem;
    }
}

@media (max-width:767px) {
    .news-list ul li a .text {
        width: 100%;
        margin-top: 0.5rem;
        overflow: initial;
        text-overflow: initial;
        display: block;
    }
}

.news-list ul li a:hover .text {
    color: var(--blue-color);
}

footer {
    background-color: var(--accent-base);
    position: relative;
    padding: 2rem 0;
    font-size: 1rem;
}

footer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 200px;
    border-radius: 100% 100% 0 0;
    background: inherit;
    top: -46%;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 0;
    background-color: var(--accent-base);
}

@media (max-width:820px) {
    footer::before {
        top: -40%;
    }
}

@media (max-width:767px) {
    footer::before {
        height: 100px;
        top: -30%;
    }
}

@media (max-width:620px) {
    footer::before {
        top: -24%;
    }
}

.index footer {
    margin-top: 400px;
}

@media (max-width:900px) {
    .index footer {
        margin-top: 250px;
    }
}

.index footer::before {
    z-index: -1;
}

footer a {
    text-decoration: none;
    color: var(--Grey-700);
    display: block;
}

footer .wrapper {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    flex-wrap: wrap;
    position: relative;
    margin-top: -2rem;
}

@media (max-width:991px) {
    footer .wrapper {
        padding: 2rem 2.25rem 1rem 2.25rem;
    }
}

@media (max-width:820px) {
    footer .wrapper {
        justify-content: center;
        margin-top: 1rem;
    }

    .leftBlk {
        margin-bottom: 1.5rem
    }
}

@media (max-width:575px) {
    footer .wrapper {
        padding: 2rem 1.5rem 1rem 1.5rem;
    }
}

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

.footer-logo img {
    height: 100px;
    margin-right: 1rem;
}

@media (max-width:480px) {
    .footer-logo img {
        height: initial;
        width: 21.5vw;
        margin-right: 0;
    }

    .footer-logo a img {
        width: 54.5vw;
        margin-right: 3vw;
    }
}

.footer-logo img:nth-of-type(2) {
    display: none
}

footer ul {
    margin: 0;
    padding: 0;
}

footer ul li {
    list-style: none;
}

.footer-info ul {
    display: flex;
    margin-top: 1rem;
}

@media (max-width:900px) {
    .footer-info ul {
        justify-content: center
    }
}

.footer-info li {
    margin: 0 0.5rem
}

.footer-info li a {
    font-size: 2rem;
    transition: all 0.3s
}

.footer-info li a:hover {
    transform: scale(1.05);
}

.footer-info li a img {
    width: 100px
}

.footer-info li a:has(.bi-youtube) {
    color: #ed2525
}

.footer-info li a:has(.bi-facebook) {
    color: #0d60f7
}

.footer-info li>div {
    margin-right: 1rem
}

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

.footer-nav {
    width: 340px;
}

.footer-nav>ul>li {
    float: left;
}

.footer-nav ul li a {
    font-size: 1rem;
    line-height: 2;
    font-weight: bold;
    padding: 0.25rem 0.5rem;
}

.footer-nav .submenu {
    margin-top: 0.25rem;
    width: 250px;
    border-left: #333 1px solid;
    padding-left: 0.75rem;
}

.footer-nav .submenu li {
    /* margin: 0.125rem 0; */
}

.footer-nav .submenu+a {
    margin-top: 1rem !important;
}

.footer-nav .submenu~a {
    display: block;
    margin: 0.5rem 0;
}

.footer-nav .submenu li a {
    line-height: 1.5;
    display: block;
    font-size: 0.95rem;
    font-weight: normal;
    padding: 0.25rem;
}

.footer-nav li a:hover {
    color: var(--Grey-900);
    text-decoration: underline
}

.copyright {
    margin-top: 2rem;
}

.index main {
    position: relative;
    margin-top: -200px;
    padding-top: 200px;
    margin-bottom: 0px;
    z-index: 1;
    overflow-x: hidden;
    width: 100%;
    padding-bottom: 0;
}

.index main::before {
    content: '';
    top: 0px;
    position: absolute;
    width: 120%;
    height: 250px;
    border-radius: 100%;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 0;
    background-color: var(--white-100);
    background-image: url('../images/inspiration-geometry.png');
}

@media (max-width:480px) {
    .index main::before {
        height: 150px;
        top: 80px;
    }
}

main {
    min-height: 110vh;
    padding-bottom: 400px;
    position: relative;
    margin-top: -200px;
    padding-top: 200px;
    /* z-index: 1; */
    overflow-x: hidden;
    width: 100%;
}

@media (max-width:991px) {
    main {
        padding-bottom: 300px;
    }
}

@media (max-width:767px) {
    main {
        padding-bottom: 250px;
    }
}

.breadcrumb {
    justify-content: center;
}

.breadcrumb a {
    text-decoration: none;
    color: var(--gray-color-90);
}

.centercontent {
    /* margin-top: 1rem; */
}


.modal-header {
    background-color: var(--green-color);
    padding: 0.75rem 1.25rem;
    color: var(--white-color);
    font-weight: 500;
}

.modal .btn-close {
    position: absolute;
    top: -1rem;
    right: -1rem;
    z-index: 1;
    width: 36px;
    height: 36px;
    background-color: var(--highlight-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: none;
    opacity: 1;
}

.modal .btn-close::after {
    content: '';
    display: block;
    background-color: var(--highlight-dark);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    transform: scale(0);
    transition: all 0.3s;
}

.modal .btn-close:hover::after {
    transform: scale(1);
}

.modal .modal-content {
    border: none;
    box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.2);
    background-color: var(--primary-base);
}

.modal .modal-content:has(.mapBlk) {
    background-color: initial;
    box-shadow: none;
}

.modal .btn-close::before {
    content: '\F659';
    font-family: var(--font-bs-icon);
}

.modal .modal-header .btn-close::before {
    color: var(--white-color);
}

.modal .modal-body .btn-close {
    position: absolute;
    right: 1rem;
}

.modal .text a {
    text-decoration: none;
    font-size: 0.95rem;
    color: var(--gray-color-90);
    margin: 0 0.5rem
}


.downloadBlk {
    /* margin-bottom: 3rem; */
}

.detail .downloadBlk ul {
    margin: 0 0.5rem;
    padding: 0;
    /* display: flex; */
    /* flex-wrap: wrap; */
}

.downloadBlk li {
    list-style: none;
    margin: 0.5rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.downloadBlk li a {
    display: inline-block;
    border-radius: 30px;
    padding: 0rem 1rem;
    margin: 0.25rem;
    text-decoration: none;
    background-color: var(--highlight-base);
    transition: all 0.3s;
    color: var(--Grey-700);
    font-size: 0.9rem;
}

@media (max-width:575px) {
    .downloadBlk li a {
        min-width: initial;
    }
}

.downloadBlk li a:first-child {
    margin: 0.25rem 0.25rem 0.25rem 1rem;
}

.downloadBlk li a:hover {
    background-color: var(--primary-light);
}

.downloadBlk li a::before {
    font-family: var(--font-bs-icon);
    float: right;
    margin-left: 0.5rem;
    font-weight: normal;
}

.owl-nav button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--primary-base);
    color: var(--white-color);
    border: none;
    position: absolute;
    display: flex;
    justify-content: center;
    top: calc(50% - 23px);
    align-items: center;
}

.owl-nav button::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-light);
    border-radius: 50%;
    z-index: 0;
    transition: all 0.3s;
    transform: scale(0)
}

.owl-nav button:hover::after {
    transform: scale(1)
}

.owl-nav button::before {
    font-family: var(--font-bs-icon);
    font-size: 2rem;
    z-index: 1
}

.owl-nav button.disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
}

.owl-nav button.disabled:hover::after {
    content: none;
}

.owl-prev {
    left: -23px;
}

.owl-prev::before {
    content: '\F12C';
}

.owl-next {
    right: -10px;
}

.owl-next::before {
    content: '\F135';
}

.page {
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 1rem;
}

@media (max-width:991px) {
    .page {
        justify-content: center;
    }
}

.page ul {
    margin: 0 !important;
    flex-wrap: wrap;
}

.page a {
    text-decoration: none;
    border-radius: 50%;
    min-width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.page a:hover {
    background-color: var(--Grey-100);
}

@media (max-width:767px) {
    .page-display {
        margin-bottom: 100px
    }
}

.content-inner .title {
    margin-bottom: 3rem;
}

.content-inner .title .info {
    display: flex;
    font-size: 1rem;
    border-bottom: var(--Grey-100) 1px solid;
    padding-bottom: 1rem;
    align-items: flex-end;
    position: relative;
}

@media (max-width:480px) {
    .content-inner .title .info {
        padding-top: 2rem;
    }
}

.content-inner .title .info .date {
    color: #333;
    display: flex;
    line-height: 1;
}

.content-inner .title .info .category {
    color: #333;
    line-height: 1;
    border-left: var(--Grey-700) 1px solid;
    padding-left: 1rem;
    margin-left: 1rem;
}

.content-inner .title .info .back {
    margin-left: auto;
}



.content-inner .title .info a {
    display: block;
    text-align: center;
    color: var(--white-100);
    background-color: var(--warning-dark);
    width: 40px;
    height: 40px;
    line-height: 36px;
    border-radius: 50%;
    font-size: 1.25rem;
    margin: 0 0 0 0.5rem;
    position: relative;
}

.content-inner .title .info a:hover {
    background-color: var(--primary-base-hover);
}


.content-inner .title .info a span {
    position: absolute;
    bottom: 40px;
    left: calc(50% - 50px);
    display: block;
    width: 100px;
    white-space: initial;
    background-color: var(--white-100);
    border-radius: 20px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: all 0.3s;
    color: var(--Grey-700);
}

.content-inner .title .info a:hover span {
    opacity: 1;
    transform: translateY(-3px)
}

.content-inner .title .info a:hover span::before {
    content: '';
    display: block;
    position: absolute;
    bottom: -8px;
    left: calc(50% - 8px);
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: var(--white-100) transparent transparent transparent;
    transition: all 0.3s
}

.detail .content-inner h3, .detail .content-inner .h3 {
    margin: 0 0 2rem 0;
    text-align: left;
    font-family: initial;
}

@media (max-width:480px) {
    .detail .content-inner h3 {
        text-align: justify;
    }
}

.imgBlk {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    width: calc(100% - 1rem);
}

.imgBlk .item {
    width: calc(100% / 4 - 2rem);
    margin: 1rem;
    position: relative;
}

@media (max-width:991px) {
    .imgBlk .item {
        width: calc(100% / 3 - 1rem);
    }
}

@media (max-width:768px) {
    .imgBlk .item {
        width: calc(100% / 2 - 1rem);
    }
}

@media (max-width:575px) {
    .imgBlk .item {
        width: calc(100% / 1 - 1rem);
    }
}

.imgBlk .item a {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 20px;
    display: block;
}

.imgBlk .item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s
}

.imgBlk .item a:hover img {
    transform: scale(1.05);
}

.imgBlk .item a .text {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: var(--black-70);
    width: 100%;
    height: 100%;
    border-radius: 20px;
    padding: 1.25rem;
    color: var(--white-100);
    font-size: 1.125rem;
    transition: all 0.3s;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imgBlk .item a:hover .text {
    opacity: 1;
}

.youtube {
    max-width: 900px;
    margin: 3rem auto 4rem auto;
    overflow: hidden;
    border-radius: 20px;
	position: relative;
}
@media (max-width: 991px) {
    .youtube {
        width: 95%;
    }
}

@media (max-width: 480px) {
    .youtube {
        width: 95%;
    }
}

.video-container {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
}

.video-container iframe,
.video-container object,
.video-container embed {
    width: 100%;
    height: 100%;
}

.detail .row {
    margin: 2rem 0;
}

@media (max-width:991px) {
    .detail .row:has(.infoBlk) {
        flex-direction: column-reverse
    }
}

.detail .row .img, .detail .row .row .youtube {
    max-width: 95%;
    margin: 1rem auto;
}

.linkBlk ul li {
    margin: 0.5rem 0;
}

.linkBlk ul li a::after {
    content: "\f1c5";
    font-family: var(--font-bs-icon);
    margin-left: 0.5rem;
}

.imgBlk.slider-group {}

.imgBlk.slider-group .owl-carousel {
    margin: 0.5rem;
    position: relative;
}

.imgBlk.slider-group .item {
    width: 100%;
    margin: initial;
}

.imgBlk.videoBlk .item a {
    position: relative;
    overflow: hidden;
}

.imgBlk.videoBlk .item a::before {
    content: '';
    background-color: var(--black-20);
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    opacity: 1;
    transition: all 0.3s;
}

.imgBlk.videoBlk .item a::after {
    content: '\F4F3';
    font-family: var(--font-bs-icon);
    color: var(--white-100);
    position: absolute;
    top: 43%;
    left: 41%;
    z-index: 1;
    font-size: 2.5rem;
    transition: all 0.3s;
}

.imgBlk.videoBlk .item a:hover::before, .imgBlk.videoBlk .item a:hover::after {
    opacity: 0;
}


.linkBlk {
    /* margin-bottom: 3rem; */
}

.detail .linkBlk ul {
    margin: 0 0 0 0.5rem;
}

.formBlk {
    display: flex;
    flex-wrap: wrap;
    max-width: 900px;
}

.formBlk .input-group, .formBlk .select-group, .formBlk .calendar-select {
    flex-wrap: initial;
    display: flex;
    align-items: center;
    margin: 0 0 0.5rem 0;
    width: 100%;
    position: relative;
}

@media (max-width:767px) {
    .formBlk .input-group, .formBlk .select-group, .formBlk .calendar-select {
        flex-wrap: wrap;
    }
}

.formBlk label, .formBlk .heading {
    flex-shrink: 0;
    padding: 0 1rem 0 0;
    white-space: nowrap;
    position: relative;
    font-size: 1.125rem;
    width: 124px;
    margin-bottom: 0;
    font-weight: 600;
    font-family: var(--font-maru);
}

@media (max-width:767px) {
    .formBlk label, .formBlk .heading {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

.formBlk .heading+.check-item:has(.options-caption) {
    margin-top: 0.5rem
}

.formBlk input[type=text], .formBlk input[type=password],
.formBlk input[type=file], .formBlk input[type=date], .formBlk select,
.formBlk input[type=time] {
    border-radius: 30px !important;
    padding: 0.5rem 1rem;
    border: none;
}

@media (max-width:767px) {

    .formBlk input[type=text], .formBlk input[type=password],
    .formBlk input[type=file], .formBlk input[type=date], .formBlk select {
        width: 100% !important;
        margin: 0 !important;
        flex: initial !important;
    }
}

@media (max-width:767px) {
    .formBlk input+select {
        margin-top: 0.5rem !important;
    }
}

.formBlk input[type=file] {
    padding: 0.5rem 1rem;
}

.formBlk span {
    margin: 0 0.5rem;
}

.formBlk .input-group:has(span),
.formBlk .select-group:has(span),
.formBlk .calendar-select:has(span) {
    white-space: nowrap;
}

.formBlk .required {
    position: absolute;
    top: 0px;
    left: -10px;
    color: var(--danger-base);
    margin: 0;
    text-align: initial !important;
    width: initial !important;
}

.formBlk .input-group:has(.verify-img) {
    align-items: center;
    margin-bottom: 1.5rem;
}

.formBlk .input-group:has(.verify-img) input {
    border-radius: 30px !important;
    margin-right: 0.5rem;
    margin-bottom: 0;
    border: var(--Grey-500) 1px solid;
}

@media (max-width:767px) {
    .formBlk .input-group:has(.verify-img) input {
        margin-bottom: 0.5rem !important;
    }
}

.formBlk .input-group:has(.verify-img) button {
    background-color: var(--Grey-400);
    color: var(--white-color);
    border-radius: 50% !important;
    aspect-ratio: 1 / 1;
    margin-left: 0.5rem !important;
    font-size: 1.25rem
}

.formBlk .input-group:has(.verify-img) button:hover {
    background-color: var(--Grey-500);
}

.formBlk .input-group .verify-img {
    width: 100px;
    flex-shrink: 0;
    font-size: 1.125rem;
}

.formBlk .input-group:has(.row) {
    margin-bottom: 0;
}

.formBlk .input-group:has(.row) label {
    align-self: flex-start;
}

.formBlk .input-group label+.row {
    flex: 1;
    margin: 0;
}

@media (max-width:767px) {
    .formBlk .input-group label+.row {
        flex: initial;
        margin-bottom: 1.5rem
    }
}

.formBlk .row [class*="col-"] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

@media (max-width:767px) {
    .formBlk .row [class*="col-"] {
        padding-left: 0rem;
        padding-right: 0rem;
    }

    .formBlk .row [class*="col-"]>* {
        margin-bottom: 0
    }
}

.formBlk .row [class*="col-"] label {
    min-width: initial;
    font-weight: 400;
    font-size: 1rem;
}

.formBlk .check-group, .formBlk .radio-group {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 1.5rem;
}

.formBlk .check-group h5, .formBlk .radio-group h5 {
    margin: 0;
}

.formBlk .check-group:has(.options-caption) h5, .formBlk .radio-group:has(.options-caption) h5 {
    width: 100%;
    margin-bottom: 1.5rem
}

.formBlk .check-item {
    width: initial;
    padding-left: 2rem;
    margin: 0rem 0.5rem;
    display: flex;
    align-items: center;
}

.formBlk .check-item:has(.options-caption) {
    flex-wrap: wrap;
}

.formBlk .check-item.w-100 {
    width: 100%;
    margin: 0.5rem 0.5rem 0 0.5rem;
}

@media (max-width:767px) {
    .formBlk .check-item.w-100 {
        align-items: flex-start;
    }

    .formBlk .check-item.w-100>input[type=radio] {
        margin-top: 0.25rem
    }
}

.formBlk .check-item label {
    padding: 0 0.5rem 0 0;
    min-width: initial;
    white-space: initial;
}

.formBlk .check-item:has(.options-caption) label {
    white-space: nowrap;
    margin-right: 1rem;
}

.formBlk .check-item label:has(input) {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

@media (max-width:767px) {
    .formBlk .check-item label:has(input) {
        flex-wrap: wrap;
        flex-grow: 1;
        flex-shrink: initial;
    }

    .formBlk .check-item label:has(input) input {
        margin-top: 0.25rem !important;
    }
}

.formBlk input[type=checkbox] {
    width: 25px;
    height: 25px;
    margin: 0 0.5rem 0 -2rem;
    border: var(--Grey-500) 1px solid;
    padding: 0;
    border-radius: 0.25rem !important;
}

.formBlk input[type=radio] {
    width: 25px;
    height: 25px;
    margin: 0 0.5rem 0 -2rem;
    border: var(--Grey-500) 1px solid;
    padding: 0;
}

.formBlk input[type=checkbox]:checked, .formBlk input[type=radio]:checked {
    background-color: var(--primary-base);
    border-color: var(--primary-base);
}

.formBlk .options-caption {
    display: block;
    margin: 0 0 0.5rem 0;
    width: 100%;
    white-space: initial;
}

.formBlk .options-caption ol, .formBlk .options-caption ul {
    margin: 0 0 2rem 0;
}

@media (max-width:575px) {
    .formBlk .options-caption ol {
        padding: 0 0 0 0.5rem;
    }
}

.formBlk .options-caption ol ol, .formBlk .options-caption ol ul,
.formBlk .options-caption ul ol, .formBlk .options-caption ul ul {
    margin: 0.5rem 0 1rem 0;
}

@media (max-width:575px) {
    .formBlk .options-caption ol ul {
        padding: 0;
    }
}

.formBlk .input-group:has(textarea) label {
    align-self: flex-start
}

.formBlk textarea {
    border-radius: 20px !important;
    border: var(--Grey-500) 1px solid;
    margin: 0 0.5rem !important;
}

@media (max-width:767px) {
    .formBlk textarea {
        width: 100% !important;
        margin: 0 !important;
    }
}

.modal .formBlk textarea {
    margin: 0 !important;
}


.formBlk .input-group:has(textarea) {
    flex-wrap: wrap;
}

.formBlk .input-group:has(textarea) span {
    width: 100%;
    text-align: end;
}

.formBlk .form-control:disabled, .form-select:disabled {
    border: none;
    background-color: var(--Grey-100);
    background-image: initial;
}

.formBlk .info {
    width: 100%;
}

.formBlk .info+.hr {
    margin-bottom: 5rem;
}

.formBlk .info .row [class*="col-"] label {
    min-width: 112px;
}

.formBlk .info .row:has([class*="col-"]) {
    margin: 0 -0.5rem;
}

.formBlk .title {
    margin: 2rem auto;
}

.send button.reset {
    background-color: var(--gray-color-50);
}

.send button.reset:hover {
    background-color: var(--gray-color-60);
}

.send {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.send a, .send button {
    display: block;
    background-color: var(--primary-dark);
    color: var(--Grey-700);
    text-decoration: none;
    padding: 0 1.5rem;
    text-align: center;
    border-radius: 30px;
    outline: none;
    border: none;
    width: 100%;
    position: relative;
    z-index: 2;
}


.send a::before, .send button::before {
    content: '';
    background-color: var(--primary-light);
    border-radius: 30px;
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    transition: all 0.3s;
    transform: scale(0);
    width: 100%;
    height: 100%;
}

.send a:hover::before, .send button:hover::before {
    transform: scale(1);
}

.send .btn:first-child:active {
    background-color: var(--primary-dark);
}

.closed::before {
    content: '\F26A';
    color: var(--primary-base);
    font-family: var(--font-bs-icon);
    margin-right: 5px;
}

.formBlk .file-group {
    flex-wrap: initial;
    display: flex;
    margin: 0 0 1.5rem 0;
    width: 100%;
}

@media (max-width:767px) {
    .formBlk .file-group {
        flex-wrap: wrap;
    }
}

.file-upload {
    width: 100%;
}

.file-upload input {
    width: calc(100% - 1rem);
}

.file-upload ul {
    margin: 0;
    padding: 0 0.5rem;
}

.file-upload ul li {
    list-style: none;
    margin: 0.5rem;
}

.file-upload ul li::before {
    content: '\F392';
    font-family: var(--font-bs-icon);
}

.file-upload ul li span {
    margin: 0;
}

.file-upload ul li button {
    border: none;
    outline: none;
    background-color: initial;
    font-size: 0.975rem;
    color: var(--Grey-700);
}

.file-upload ul li button:hover {
    color: var(--primary-base);
}

.input-group:has(.file-name) {
    align-items: flex-start;
}


.file-name {
    flex-grow: 1;
}

@media (max-width:767px) {
    .file-name {
        width: 100%;
    }
}

.file-name ul {
    margin: 0;
    padding: 0;
}

.file-name ul li {
    background-color: var(--primary-light);
    border-radius: 30px !important;
    padding: 0.5rem 2.25rem 0.5rem 1.5rem;
    line-height: 30px;
    margin: 0 0.5rem 0.5rem 0.5rem;
    font-size: 1rem;
    list-style: none;
}

@media (max-width:767px) {
    .file-name ul li {
        margin: 0 0 0.5rem 0;
    }
}

.file-name ul li::before {
    content: '\F392';
    font-family: var(--font-bs-icon);
    margin-right: 0.25rem;
}

.check-group:has(.check-item-group), .radio-group:has(.check-item-group) {
    align-items: flex-start;
}

.check-item-group {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 130px);
    margin-bottom: 0.5rem;
}

@media (max-width:767px) {
    .check-item-group {
        width: 100%;
    }
}

.check-item-group .check-item {
    padding: 0.5rem 0 0.5rem 2.5rem;
    margin: 0 0.5rem;
}

.check-item-group .check-item:has(input[type="text"]) {
    width: 100%;
    flex-wrap: wrap;
}

.check-item-group .check-item label+input[type="text"] {
    flex: 1;
}

.check-item-group .options-caption {
    margin: 0.75rem 1rem 0.5rem 1rem;
}

@media (max-width:767px) {
    .check-item-group .options-caption {
        margin: 0 0 0.5rem 0;
    }
}

.list-btn a {
    display: block;
    padding: 0 1rem;
    border-radius: 20px;
    background-color: var(--green-color);
    color: var(--white-color);
}

.list-btn a:hover {
    background-color: var(--blue-color);
    color: var(--white-color);
}

.table {
    display: table;
    border-collapse: collapse;
}

.table .thead {
    display: table-header-group;
}

.table .tbody {
    display: table-row-group;
}

.table .tr {
    display: table-row;
}

.table .th, .table .td {
    display: table-cell;
    background-color: initial;
    padding: 13px 25px;
    line-height: 1.5;
}

@media (max-width:991px) {
    .calendarBlk {
        border-radius: 30px;
        overflow: hidden;
        outline: #ddd 1px solid;
    }
}

.calendarBlk .table {
    border-radius: 30px;
    border: #ddd 1px solid;
    overflow: hidden;
    outline: #ddd 1px solid;
    margin-bottom: 0
}

@media (max-width:991px) {
    .calendarBlk .table {
        border: none;
        overflow: initial;
    }
}

.calendarBlk .table .th,
.calendarBlk .table .td {
    padding: 0.5rem 0.75rem;
    border-right: #ddd 1px solid;
    border-bottom: #ddd 1px solid;
}

.calendarBlk .table .th {
    text-align: center;
    color: var(--white-color);
    background-color: var(--green-color);
}

@media (max-width:991px) {
    .calendarBlk .table .th {
        display: none
    }
}

.calendarBlk .table .td {
    height: 100px;
    width: calc(100%/7);
}

@media (max-width: 991px) {
    .calendarBlk .table .td {
        width: 100%;
        display: block;
        height: initial;
        padding: 0.5rem 0.75rem;
        border-right: none;
    }

    .calendarBlk .table .tr:last-child .td:last-child {
        border-bottom: none;
    }
}

.calendarBlk .table .day {
    color: var(--gray-color-90);
}

@media (max-width: 991px) {
    .calendarBlk .table .day {
        text-align: left;
    }
}

.calendarBlk .table .day span {
    display: none;
}

@media (max-width: 991px) {
    .calendarBlk .table .day span {
        display: inline-block;
        margin-right: 0.5rem;
    }
}

.calendarBlk .table .expired {
    background-color: #f5f5f5;
    opacity: 0.5;
}

.calendarBlk .table .today {
    outline: var(--blue-color) 3px solid;
}

.calendarBlk .table .today .day {
    color: var(--white-color);
    position: relative;
    z-index: 1;
    padding-left: 5px;
}

@media (max-width: 991px) {
    .calendarBlk .table .today .day {
        padding-left: 0px;
    }
}

.calendarBlk .table .today .day::before {
    content: '';
    display: block;
    background-color: var(--blue-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    left: 0px;
}

@media (max-width: 991px) {
    .calendarBlk .table .today .day::before {
        left: 35px;
    }
}

.calendarBlk .reserve-event a {
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0.25rem 0;
    background-color: #fff7bb;
    border-radius: 10px;
    padding: 0 0.5rem;
    line-height: 1.6;
}

.table-calendar {
    padding: 0.5rem 2rem 1rem 2rem;
}

@media (max-width:430px) {
    .table-calendar {
        padding: 0.5rem 1rem 1rem 1rem;
    }
}

.supercal-header {
    display: flex;
    align-items: center;
    font-size: 1rem;
    border-bottom: var(--gray-color-50) 1px solid;
    padding-bottom: 0.25rem;
    margin-bottom: 0.25rem;
    font-weight: 500
}

.supercal-header button {
    border: none;
    outline: none;
    background-color: initial;
    color: var(--gray-color-70);
}

.supercal-header a {
    margin-left: auto;
    text-decoration: none;
    color: var(--gray-color-70);
    font-weight: 400;
    font-size: 0.9rem;
}

.supercal-header button:hover, .supercal-header a:hover {
    color: var(--green-color);
}

.table-calendar table {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
}

.table-calendar table th {
    padding-bottom: 0.5rem;
    width: calc(100% / 7);
}

.table-calendar table tbody tr:nth-of-type(odd) {
    background-color: var(--white-color-75);
    border-radius: 30px
}

.table-calendar table td:first-child,
.table-calendar .card table th:first-child {
    border-radius: 30px 0 0 30px;
}

.table-calendar table td:last-child,
.table-calendar .card table th:last-child {
    border-radius: 0 30px 30px 0;
}

.month-prev, .month-next {
    opacity: 0.8;
}

.table-calendar table td.today {
    position: relative;
    color: var(--white-color);
    z-index: 1;
}

.table-calendar table td.today::before {
    content: '';
    background-color: var(--blue-color);
    color: var(--white-color);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: block;
    position: absolute;
    z-index: -1;
    top: calc(50% - 11px);
    left: calc(50% - 11px);
}

.table-calendar table td.event a {
    font-weight: 500;
    color: var(--green-color);
}

.table-calendar table td.event {
    position: relative;
}

.table-calendar table td.event:hover::before {
    content: '';
    background-color: var(--blue-color);
    color: var(--white-color);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: block;
    position: absolute;
    z-index: -1;
    top: calc(50% - 11px);
    left: calc(50% - 11px);
}

.promoBlk {
    position: relative;
    z-index: 2;
    padding-bottom: 7rem;
    overflow: hidden;
    /* margin-top: -14rem; */
    padding-top: 60px;
}

@media (max-width:991px) {
    .promoBlk .title {
        margin-bottom: 0
    }
}

.promoBlk .wrapper {
    position: relative;
    background-color: var(--primary-base);
    padding: 3rem 2rem;
    border-radius: 50px;
}

@media (max-width:991px) {
    .promoBlk .wrapper {
        margin: 0 1rem
    }
}

@media (max-width:575px) {
    .promoBlk .wrapper {
        padding: 3rem 0rem;
    }
}

.promoBlk .owl-carousel {
    padding: 2rem 1rem;
    overflow: hidden;
}

.promoBlk .owl-carousel .owl-stage-outer {
    overflow: initial;
}

.promoBlk .owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.promoBlk .owl-carousel .owl-item {
    z-index: 2;

}

.promoBlk .owl-carousel .owl-item {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    background-color: var(--white-100);
    filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.1));
}

@media (max-width:815px) {
    .promoBlk .owl-carousel .owl-item {
        filter: initial;
    }
}

.promoBlk .owl-carousel .owl-item:hover {
    text-decoration: none;
    position: relative;
    filter: drop-shadow(8px 8px 8px rgba(0, 0, 0, 0.1));
    transform: translateY(-8px)
}

.promoBlk .owl-carousel .item a {
    text-decoration: none;
    color: var(--Grey-700);
    display: block;
}

.owl-carousel .item a:focus {
    outline-offset: -3px;
    border-radius: 20px;
    border: var(--danger-base) 3px dotted;
    outline: none !important;
}

.promoBlk .owl-carousel .item a .photo {
    aspect-ratio: 16 / 9;
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.promoBlk .owl-carousel .item a .text {
    padding: 1rem 1.5rem 1.25rem 1.5rem;
    line-height: 1.5;
    transition: all 0.3s;
    font-weight: 600;
}

.promoBlk .owl-carousel .item a .info {
    display: flex;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    font-weight: normal;
}

.promoBlk .owl-carousel .item a .sort {
    margin-right: 0.5rem;
    padding: 0 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    line-height: 28px;
}

.promoBlk .owl-carousel .item a .sort {
    background-color: var(--accent-base);
}

.promoBlk .owl-carousel .item a .date {
    margin-left: auto;
}

.promoBlk .owl-carousel .item a .heading {
    transition: all 0.5s;
    text-align: justify;
}

.promoBlk .owl-carousel .item a:hover .heading {
    color: var(--primary-base-hover);
}


.promoBlk .owl-carousel .item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s
}

.promoBlk .owl-carousel .item a:hover img {
    transform: scale(1.05);
}

.promoBlk .owl-dots {
    width: calc(100% - 6rem);
}

@media (max-width:575px) {
    .promoBlk .owl-dots {
        width: calc(100% - 2rem);
    }
}

.promoBlk .more {
    width: 300px;
    margin: 2.5rem auto 0 auto
}

.input-group .invalid-feedback,
.select-group .invalid-feedback,
.calendar-select .invalid-feedback {
    position: absolute;
    top: 50px;
    left: 130px;
    line-height: 1;
}

.formBlk .row [class*="col-"] .input-group .invalid-feedback {
    left: 0px;
}

@media (max-width:767px) {

    .input-group .invalid-feedback,
    .select-group .invalid-feedback,
    .calendar-select .invalid-feedback {
        position: initial;
    }
}

.input-group:has(textarea) .invalid-feedback {
    position: initial;
}

.invalid-feedback::before {
    content: '\F332';
    margin-right: 0.25rem;
    font-family: var(--font-bs-icon);
    vertical-align: bottom;
}

.formBlk .input-group:has(#turnstileWidget) {
    justify-content: center;
}

.formBlk .input-group:has(#turnstileWidget) .check-item {
    margin: 0;
    padding: 0;
}

.themeBlk {
    position: relative;
    padding: 0px 0 200px 0;
    background-color: var(--highlight-base);
    /* overflow: hidden; */
}

@media (max-width:480px) {
    .themeBlk {
        padding: 0px 0 80px 0;
    }
}

.themeBlk::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 592px;
    border-radius: 100% 100% 0 0;
    top: -500px;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 0;
    background-color: var(--highlight-base);
}

@media (max-width:768px) {
    .themeBlk::before {
        height: 250px;
        top: -250px;
    }
}

.themeBlk-inner {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 6rem auto 4rem auto;
    position: relative;
    z-index: 1;
}

@media (max-width:991px) {
    .themeBlk-inner {
        margin: 5rem auto;
    }
}

@media (max-width:575px) {
    .themeBlk-inner {
        justify-content: center;
    }
}

.themeBlk .item {
    width: calc(100% / 4 - 2rem);
    margin: 1rem;
}

@media (max-width:991px) {
    .themeBlk .item {
        width: calc(100% / 2 - 2rem);
    }
}

@media (max-width:575px) {
    .themeBlk .item {
        width: calc(100% / 2 - 1rem);
        margin: 0.5rem;
    }
}

.themeBlk .item.long {
    width: calc(100% - 1.5rem);
    margin: 1rem 0.75rem;
}

.themeBlk .item a {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    background-color: var(--primary-light);
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.5rem;
    color: #333;
    letter-spacing: 2px;
    flex-direction: column;
    transition: all 0.3s;
    font-family: var(--font-maru);
    font-weight: 500;
    position: relative;
    z-index: 1
}

.themeBlk .item a::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: var(--white-100);
    top: 0px;
    left: 0px;
    border-radius: 30px;
    z-index: -1;
    transform: scale(0);
    transition: all 0.3s;
}

@media (max-width:991px) {
    .themeBlk .item a {
        aspect-ratio: initial;
        /* flex-direction: row; */
        padding: 1rem;
    }
}

@media (max-width:430px) {
    .themeBlk .item:not(.long) a {
        min-height: 217px
    }
}

@media (max-width:390px) {
    .themeBlk .item:not(.long) a {
        min-height: 196px
    }
}

.themeBlk .item a:hover::before, .themeBlk .item a:focus::before {
    transform: scale(1);
}

.themeBlk .item a span {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

@media (max-width:575px) {
    .themeBlk .item a span {
        font-size: 1.75rem;
        margin-bottom: 0;
    }
}

.themeBlk .item a .heading {
    text-align: center;
}

@media (max-width:575px) {
    .themeBlk .item a .heading {
        font-size: 1.25rem;
    }
}

.themeBlk .item.long a {
    display: block;
    aspect-ratio: initial;
    background-color: var(--primary-dark);
    padding: 1rem 1.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.8;
    border-radius: 50px;
}

@media (max-width:817px) {
    .themeBlk .item.long a {
        font-size: 3.5vw;
    }
}

@media (max-width:575px) {
    .themeBlk .item.long a {
        font-size: 1.75rem;
    }
}

@media (max-width:480px) {
    .themeBlk .item.long a {
        font-size: 1.5rem;
    }
}

.themeBlk .item.long a br {
    display: none;
}

@media (max-width:480px) {
    .themeBlk .item.long a br {
        display: block;
    }
}

.themeBlk .item.long a::before {
    content: '';
    background-color: var(--primary-light);
    border-radius: 50px;
}

.themeBlk .item.long a:hover {
    transform: scale(1.05);
}


.themeBlk .item a .icon {
    margin-bottom: 0.75rem;
    transition: all 0.3s;
    transform: scale(0.85) translateY(-41px);
    height: 100px;
}

@media (max-width:991px) {
    .themeBlk .item a .icon {
        margin-right: 0rem;
        margin-bottom: 0.75rem;
    }
}

@media (max-width:430px) {
    .themeBlk .item a .icon {
        height: initial;
        transform: scale(0.85) translateY(0px);
        margin: -2rem 0 0.5rem 0;
    }
}

.themeBlk .item a:hover .icon, .themeBlk .item a:focus .icon {
    transform: scale(1) translateY(-50px);
    transform-origin: bottom;
}

@media (max-width:430px) {
    .themeBlk .item a:hover .icon, .themeBlk .item a:focus .icon {
        transform: scale(1) translateY(0px);
        transform-origin: bottom;
    }
}

.themeBlk .item .caption {
    position: absolute;
    top: 0%;
    left: 10%;
    line-height: 1.25;
    border-radius: 30px;
    font-size: 1.25rem;
    display: block;
    width: 80%;
    opacity: 0;
    transition: all 0.3s;
    text-align: center;
}

@media (max-width:991px) {
    .themeBlk .item .caption {
        display: none;
    }
}

.themeBlk .item a:hover .caption, .themeBlk .item a:focus .caption {
    opacity: 1;
    transform: translateY(-90px);
}

.themeBlk .item .caption::before {
    content: '';
    height: 50px;
    width: 2px;
    background-color: var(--Grey-700);
    display: block;
    transform: rotate(-20deg);
    position: absolute;
    left: -8px;
}

.themeBlk .item .caption::after {
    content: '';
    height: 50px;
    width: 2px;
    background-color: var(--Grey-700);
    display: block;
    transform: rotate(20deg);
    position: absolute;
    right: -8px;
    top: 0px
}

.areaBlk {
    position: relative;
    height: 1300px;
    background-color: var(--white-100);
    /* overflow: hidden; */
    background-image: url('../images/inspiration-geometry.png');
    padding-top: 80px;
}

@media (max-width:991px) {
    .areaBlk {
        height: initial;
    }
}

@media (max-width:768px) {
    .areaBlk {
        padding-top: 50px;
    }
}

@media (max-width:575px) {
    .areaBlk {
        padding-top: 20px;
    }
}

/* .promoBlk::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 500px;
    border-radius: 100% 100% 0 0;
    background: inherit;
    top: -14%;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: -1;
    background-color: #fff;
    background-image: url('../images/inspiration-geometry.png');
} */

section .title {
    text-align: center;
    margin-bottom: 3rem;
}

section .title h2 {
    font-size: 2.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    display: inline-flex;
    font-family: "Zen Maru Gothic", sans-seri
}

@media (max-width:725px) {
    section .title h2 {
        font-size: 9vw;
    }
}

@media (max-width:480px) {
    section .title h2 {
        line-height: 1.5
    }
}

section .title h2 br {
    display: none;
}

@media (max-width:480px) {
    section .title h2 br {
        display: block;
    }
}

section .more {
    margin-top: 5rem;
}

section .more a {
    display: block;
    text-decoration: none;
    text-align: center;
    border-radius: 30px;
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
    font-weight: 600;
    background-color: var(--primary-dark);
    color: var(--Grey-700);
    font-family: var(--font-maru);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

@media (max-width:768px) {
    section .more {
        margin-top: 3rem;
    }

    section .more a {
        padding: 0.5rem;
        font-size: 1.125rem;
    }
}

section .more a::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: var(--primary-light);
    z-index: -1;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 30px;
    transition: all 0.3s;
    transform: scale(0);
}

section .more a:hover::before {
    transform: scale(1);
}

section .more a:hover {
    transform: scale(1.05);
}

.map-svg {
    position: absolute;
    top: 30%;
    left: calc((100% - 1200px) / 2);
    width: 1920px;
    height: 720px;
    z-index: 2;
}

@media (max-width:991px) {
    .map-svg {
        width: 150%;
        position: relative;
        top: initial;
        left: initial;
        height: auto;
        margin-left: 3rem;
    }
}

@media (max-width:575px) {
    .map-svg {
        width: 200%;
        margin-left: 0.5rem;
    }
}

.map-svg a {
    text-decoration: none;
}

.copyright {
    border-top: #333 1px solid;
    width: 100%;
    margin-top: 3rem;
    padding-top: 0.5rem;
}

@media (max-width:575px) {
    .copyright {
        margin-top: 0rem;
    }
}

.page-title {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 360px;
    padding: 70px 1rem 0 1rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -2;
    overflow: hidden;
}

@media (max-width:991px) {
    .page-title {
        height: 250px;
        padding: 30px 1rem 0 1rem;
    }

    .page-title[style*="background-image"] {
        height: 360px;
    }
}

.page-title::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--bg);
    background-image: url('../images/tree-bg.png'), url('../images/kv-bg-top.png');
    background-repeat: no-repeat, no-repeat;
    background-position: bottom center, top center;
    background-size: auto, contain;
}

@media (max-width:991px) {
    .page-title::before {
        background-image: url('../images/tree-bg.png');
    }
}

.page-title[style*="background-image"]::before {
    background-color: rgba(0, 0, 0, .35);
    background-image: initial;
}

.page-title h2 {
    font-size: 2.25rem;
    font-weight: 600;
    color: #6e4c3e;
    margin: 0;
    position: relative;
    z-index: 1;
    text-align: center;
    letter-spacing: 3px;
    font-family: var(--font-maru);
    text-shadow: 2px 2px 0px rgb(255 255 255);
}

.page-title[style*="background-image"] h2 {
    color: #fff;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 1);
}

.page-title::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 250px;
    border-radius: 100%;
    bottom: -19%;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 0;
    background-color: var(--white-100);
    background-image: url('../images/inspiration-geometry.png');
}

.bread-crumbs {
    max-width: 1400px;
    margin: 2rem auto 0 auto;
    color: var(--Grey-700);
}

.bread-crumbs .crumbs {
    /* width: 100%; */
    margin: 0 1rem;
    display: flex;
    line-height: 1.5rem;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0 0.5rem;
}

.bread-crumbs .crumbs li {
    line-height: 1.5rem;
    position: relative;
    line-height: 1.5rem;
}

.bread-crumbs .crumbs li::after {
    content: '/';
    margin: 0 6px;
}

.bread-crumbs .crumbs li:last-child::after {
    content: '';
    margin: 0;
}

.bread-crumbs .crumbs li a {
    text-decoration: none;
    color: var(--Grey-700);
    font-size: 1rem;
    font-weight: 600
}

.bread-crumbs .crumbs li {
    color: var(--Grey-500);
    font-size: 1rem;
}


.bread-crumbs .crumbs li a:hover {
    text-decoration: underline;
}

.card-filter {
    display: flex;
    justify-content: space-between;
    margin: 60px auto 40px;
    padding: 0 10px;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width:767px) {
    .card-filter {
        margin: 2rem auto;
    }
}

.card-filter>p {
    line-height: 30px;
}

.card-filter>p>span {
    padding: 0 0 0 5px;
    font-weight: 900;
    color: #333;
}

.card-filter .array-list {
    display: flex;
    margin-left: auto;
    margin-top: 0.5rem;
}

.card-filter .array-list>div {
    display: flex;
    position: relative;
}

.card-filter .array-list a {
    margin: 0 2px;
    display: block;
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 5px 16px;
    color: var(--Grey-700);
    border-radius: 20px;
    text-decoration: none;
}

.card-filter .array-list a.active,
.card-filter .array-list a:hover {
    background-color: var(--primary-base);
}


.content-card, .content-card ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0.5rem 0;
}

.content-card ul {
    margin: 0;
    padding: 0;
}

.content-card .card-box {
    width: calc(100% / 3);
    padding: 0 15px;
    margin: 0 0 40px;
}

@media (max-width:820px) {
    .content-card .card-box {
        width: calc(100% / 2);
    }
}

@media (max-width:575px) {
    .content-card .card-box {
        width: calc(100% / 1);
        margin: 0 0 1.5rem 0;
        padding: 0 0.5rem;
    }
}

.card-box a {
    display: block;
    background-color: var(--white-100);
    border-radius: 20px;
    transition: all .5s;
    height: 100%;
    text-decoration: none;
    filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.1));
}

.card-box a:hover {
    transform: translateY(-8px);
}

.card-box .card-content .info {
    display: flex;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 0.25rem;
    flex-wrap: wrap;
}

@media (max-width:1024px) {
    .card-box .card-content .info {
        flex-wrap: wrap;
        margin-bottom: 0.5rem;
        line-height: 1;
    }
}

.card-box .card-content .info .area,
.card-box .card-content .info .sort {
    padding: 0 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    line-height: 28px;
    margin: 0.25rem;
}

@media (max-width:1024px) {

    .card-box .card-content .info .area,
    .card-box .card-content .info .sort {}
}

.card-box .card-content .info .area {
    background-color: var(--highlight-base);
}

.card-box .card-content .info .sort {
    background-color: var(--Grey-200);
}

.card-box .card-content .info .area::before {
    content: '\F3E7';
    font-family: var(--font-bs-icon);
    margin-right: 0.25rem;
    vertical-align: bottom;
}

.card-box .date {
    font-size: 0.9rem;
    /* margin-bottom: 0.25rem; */
    margin-left: auto;
}

.other-news .card-box .date {
    margin-top: 0.25rem;
    margin-bottom: 0;
    margin-left: initial;
}

@media (max-width:1024px) {
    .card-box .card-content .info .date {
        margin-left: initial;
        margin-top: 0.5rem
    }
}


.card-box .card-content .heading {
    margin: 0;
    font-size: 1.125rem;
    transition: all 0.5s;
    line-height: 1.5;
    text-align: justify;
}

.card-box a:hover .heading {
    color: var(--primary-base-hover);
}

.card-box .card-img {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 2.75;
    width: 100%;
}

.card-box .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s
}

.card-box a:hover img {
    transform: scale(1.1)
}

.card-box .card-content {
    justify-content: space-between;
    padding: 1rem 1.5rem;
    align-items: flex-start;
}

.other-news .card-box .card-content {
    padding: 1rem;
}

@media (max-width:1024px) {
    .card-box .card-content {
        padding: 1.25rem;
    }
}

.page-display {
    text-align: center;
    font-size: 1rem;
}

.page ul li a.active {
    background-color: var(--highlight-base);
}

.upload-btn a {
    display: block;
    background-color: #0c83bc;
    color: #fff !important;
    text-decoration: none;
    padding: 0 1.5rem;
    text-align: center;
    border-radius: 30px;
    line-height: 46px;
    width: 100%;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}



.infoBlk {
    background-color: var(--primary-base);
    padding: 1.5rem;
    border-radius: 30px;
    margin-bottom: 3rem;
    position: relative;
}

@media (max-width:991px) {
    .infoBlk {
        margin-left: 0rem;
        margin-bottom: 3rem;
    }
}

@media (max-width:575px) {
    .infoBlk {
        padding: 1rem
    }
}

.infoBlk .title {
    margin: 0;
    text-align: left;
    background-color: var(--accent-dark);
    font-family: var(--font-maru);
    font-weight: 600;
    font-size: 1.5rem;
    border-radius: 30px;
    position: absolute;
    top: -32px;
    left: -29px;
    color: var(--white-100);
    border: #fff 6px solid;
    padding: 0.5rem 1.5rem;
    display: none;
}

.detail .infoBlk ul {
    margin: 0;
    padding: 0 0 0 1.5rem;
}

.detail .infoBlk ul li {
    margin: 0.75rem 0;
    font-size: 1rem;
    line-height: 1.5;
}

.infoBlk ul li a {
    color: var(--warning-dark);
    font-weight: 600;
}

.infoBlk ul li a:hover {
    color: var(--Grey-700);
}

.infoBlk iframe {
    width: 100%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
}

.filter-search .formBlk {
    margin: 3rem auto 0 auto;
    background-color: var(--primary-base);
    padding: 2.25rem 1.5rem 2rem 1.5rem;
    border-radius: 20px;
    max-width: 100%;
    align-items: center;
}

@media (max-width:820px) {
    .filter-search .formBlk {
        padding: 1rem 1.5rem;
    }
}

@media (max-width:575px) {
    .filter-search .formBlk {
        padding: 1rem;
    }
}

.filter-search .formBlk>div {
    flex: 1;
    margin: 0 1rem;
}

@media (max-width:1200px) {
    .filter-search .formBlk>div {
        flex: initial;
        margin: 0.5rem;
    }
}

.filter-search .formBlk .send {
    width: 100px;
    flex: initial;
    margin: 0 1rem 0 0;
    height: 40px;
}

@media (max-width:820px) {
    .filter-search .formBlk .send {
        width: 100%;
        margin: 1rem 0.5rem 0.5rem 0.5rem;
    }
}

.filter-search .formBlk .send button {
    padding: initial;
    background-color: var(--primary-dark);
}

.filter-search .formBlk .hot {
    width: 100%;
    flex: initial;
    display: flex;
    margin-top: 1.25rem;
    align-items: baseline;
}

@media (max-width:820px) {
    .filter-search .formBlk .hot {
        flex-direction: column;

        margin-top: 0.5rem;
    }
}

.filter-search .formBlk .hot .title {
    text-align: left;
    margin: 0;
    font-size: 1.125rem;
    width: 120px;
    font-weight: 600;
    font-family: var(--font-maru);
    flex-shrink: 0;
}

@media (max-width:820px) {
    .filter-search .formBlk .hot .title {
        margin-bottom: 0.5rem;
        width: initial;
    }
}

.filter-search .formBlk .topic-group .title {
    text-align: left;
    margin: 0;
    font-size: 1.125rem;
    width: 120px;
    align-self: center;
    flex-shrink: 0;
    font-weight: 600;
    font-family: var(--font-maru)
}


/*內容頁-detail*/

.detail {
    /* min-height: calc(100vh - 0px); */
    /* margin-bottom: 17rem; */
}

.detail h3, .detail .h3 {
    font-size: 1.75rem;
    color: var(--Grey-700);
    margin: 5rem 0 2rem 0;
    letter-spacing: 1px;
    text-align: center;
    font-family: var(--font-maru);
    font-weight: 700;
}

.detail .h4 {
    margin: 2rem 0;
    line-height: 1.6;
    font-weight: bold;
}

.detail h5 {
    margin: 2rem 0;
    line-height: 1.8;
    font-weight: bold;
    font-size: 1.4rem;
}

.detail h6 {
    font-size: 1.125rem;
    margin: 2rem 0;
    line-height: 1.8;
}

.detail .text .heading {
    font-size: 1rem;
    margin: 2rem 0;
    line-height: initial;
    display: initial;
    font-family: initial;
}

.detail strong {
    background-color: #ffe670;
}

.detail p {
    line-height: 1.8;
    font-size: 1.125rem;
    letter-spacing: 1px;
    word-break: break-word;
}

.detail span {
    font-size: 1rem;
    color: var(--Grey-700);
    margin-top: 0.5rem
}

.detail ol:not(.breadcrumb) {
    padding: 0 0 0 2.5rem;
}

.detail ol:not(.breadcrumb)>li {
    counter-increment: num-counter;
    margin: 1rem 0;
    list-style: none;
    position: relative;
}

.detail ol:not(.breadcrumb)>li::before {
    content: counter(num-counter);
    background: var(--accent-light);
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1rem;
    position: absolute;
    left: -2.5rem;
    color: var(--Grey-700);
    font-family: var(--font-maru);
    font-weight: 600;
}

.detail .img {

    width: fit-content;

    margin: 4rem auto;

    border-radius: 20px;

    overflow: hidden;

    max-width: 900px;
}

.detail .img .photo {}

.detail .img .text, .detail .youtube .text, .detail .img-full .text {
    padding: 0.5rem 1rem;
    background-color: #f1f1f1;
}

.detail .img .text>*, .detail .youtube .text>*, .detail .img-full .text>* {
    margin: 0;
    font-size: 1rem
}


.detail ul, .detail ol {
    margin: 2rem 0;
}

.detail ol li ul {
    margin: 0.5rem 0 1rem 0;
}

.detail ol li ul li {
    list-style-type: disc;
}


.detail ul li::marker {
    color: var(--primary-base-hover);
}

.detail p+.linkBlk {
    margin-top: 3rem
}

.detail .heading {
    line-height: 35px;
    font-size: 1.35rem;
    color: var(--Grey-700);
    margin: 2rem 0 1rem 0;
    font-weight: bold;
    width: 100%;
    display: flex;
    align-items: center;
}

.detail div[class*="col-"]>.heading {
    margin: 0 0 1rem 0;
}

.detail .heading:has(i):after {
    content: '';
    display: block;
    height: 1px;
    flex: 1;
    margin-left: 1rem;
    background-color: var(--Grey-500)
}

.detail .heading i {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    width: 40px;
    height: 40px;
    font-weight: 400;
    border-radius: 50%;
    margin-right: 10px;
    color: var(--white-100);
    background-color: var(--accent-dark);
}

.detail .table-responsive table {
    min-width: 530px;
}

.detail .table-responsive.has-scrollbar::before {
    content: '向右滑看更多 ➨';
    position: sticky;
    left: 0px;
}

.detail table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    margin-bottom: 1.5rem;
    padding: 2px;
}

.detail table tbody tr {
    background-color: var(--Grey-50);
    border-radius: 30px;
}

.detail table tbody tr:nth-of-type(odd) {
    background-color: var(--Grey-100);
}

.detail table tbody tr:hover {
    box-shadow: 0px 0px 0px 2px var(--Grey-300);
    border-radius: 30px
}

.detail table thead th {
    padding: 13px 25px;
    line-height: 1.5;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white-color);
    white-space: nowrap;
    background-color: var(--Grey-300);
}

@media (max-width:575px) {
    .detail table thead th {
        padding: 10px 16px;
        font-size: 1rem;
    }
}

.detail table thead :first-of-type {
    border-radius: 30px 0 0 30px;
}

.detail table thead :last-of-type {
    border-radius: 0 30px 30px 0;
}

.detail table td, .detail table th {
    padding: 13px 25px;
    line-height: 1.5;
}

@media (max-width:575px) {
    .detail table td {
        padding: 10px 16px;
        font-size: 1rem;
    }
}

.detail table tbody :first-child {
    border-radius: 30px 0 0 30px;
}

.detail table tbody td:last-child {
    border-radius: 0 30px 30px 0;
}

.detail table strong, .detail table tbody strong:first-child {
    border-radius: 0;
}

.detail a, a {
    text-decoration: none;
    color: var(--Grey-700);
}

.detail a:hover {
    color: var(--green-color);
}

#taichungSVG .area-line {
    stroke: var(--area-line);
    stroke-dasharray: 4.05 10.79;
    stroke-miterlimit: 10;
    stroke-width: 4.05px;
    fill: none;
}

#taichungSVG .coast-line {
    fill: var(--coast-line);
}

#taichungSVG .city-center {
    fill: var(--city-center);
}

#taichungSVG .tun-district {
    fill: var(--tun-district);
}

#taichungSVG .mountain-line {
    fill: var(--mountain-line);
}

#taichungSVG a {
    transition: all 0.3s;
}

#taichungSVG a:hover {
    filter: drop-shadow(8px 8px 0px var(--area-line));
    transform: translateY(-8px);
}

#taichungSVG a:focus {
    outline: none !important;
}

#taichungSVG a:focus path {
    stroke: #d33928;
    stroke-width: 5px;
    stroke-dasharray: 5, 5;
}

#taichungSVG .cls-1 {
    fill: var(--white-100);
    transition: all 0.3s;
}

#taichungSVG a:hover .cls-1 {
    fill: var(--highlight-dark);
}

#taichungSVG .svg-text {
    font-family: var(--font-maru);
    font-size: 2.125rem;
    font-weight: 700;
    fill: var(--Grey-700);
}

#taichungSVG a:hover .svg-text {
    fill: var(--white-100);
}

.palette {
    position: fixed;
    bottom: 50%;
    right: 0px;
    background-color: #fff;
    border-radius: 10px 0 0 10px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
    padding: 10px;
}

.palette button {
    border: none;
    display: block;
    margin: 5px;
    padding: 0 10px;
    font-size: 1rem;
}

.palette button.active {
    background-color: #666;
    color: #fff
}

.full-block {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.full-block.show {
    opacity: 1;
    visibility: visible;
}

@media (max-width:991px) {
    .full-block.show {
        padding: 0 2rem 2rem 2rem;
    }
}

.full-block ul {
    margin: 3rem 0 0 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: initial;
    box-shadow: initial;
}

@media (max-width:991px) {
    .full-block ul {
        flex-wrap: wrap;
        flex-direction: initial;
        /* justify-content: initial; */
        margin-top: 0;
    }
}

.full-block ul li {
    aspect-ratio: 1 / 1;
    width: 200px;
    margin: 0 1rem;
    list-style: none;
    background-color: var(--primary-base);
    border-radius: 30px;
}

@media (max-width:1024px) {
    .full-block ul li {
        width: 175px;
    }
}

@media (max-width:991px) {
    .full-block ul li {
        aspect-ratio: initial;
        width: calc(100% / 2 - 2rem);
        padding: 1rem;
        margin: 1rem;
    }
}

@media (max-width:820px) {
    .full-block ul li {
        width: calc(100% / 2 - 2rem);
    }
}

@media (max-width:575px) {
    .full-block ul li {
        width: calc(100% / 2 - 1rem);
        padding: 0 0.5rem 0.75rem 0.5rem;
        margin: 0.5rem;
    }
}

.full-block ul li::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: var(--white-100);
    z-index: 0;
    border-radius: 30px;
    margin: 0
}

.full-block ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-direction: column;
    position: relative;
}

@media (max-width:991px) {
    .full-block ul li a {
        /* flex-direction: initial; */

    }
}

@media (max-width:575px) {
    .full-block ul li a {
        font-size: 1rem;
        padding: 0;
    }
}

.full-block ul li a .icon {
    margin-bottom: 0.5rem;
    width: 85px
}

.full-block ul li a .heading {
    text-align: center;
    line-height: 1
}

.full-block ul li a span {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

@media (max-width:575px) {
    .full-block ul li a span {
        font-size: 1.5rem;
    }
}

.full-block .lottery {
    text-align: center;
    margin: 3rem auto 0rem auto;
    position: relative;
    background-color: var(--primary-dark);
    border-radius: 50px;
}

.full-block .lottery+.lottery {
    margin: 1rem auto 0rem auto;
}

@media (max-width:991px) {
    .full-block .lottery {
        margin: 2rem 1rem
    }
}

@media (max-width:575px) {
    .full-block .lottery, .full-block .lottery+.lottery {
        margin: 0.5rem 1rem
    }
}

.full-block .lottery::before {
    content: '';
    background-color: var(--primary-light);
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    z-index: 0;
    transition: all 0.3s;
    transform: scale(0)
}

.full-block .lottery:hover::before {
    transform: scale(1);
}

.full-block .lottery a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 2rem;
    font-weight: 600;
    position: relative;
}

@media (max-width:820px) {
    .full-block .lottery a {
        font-size: 1.5rem;
    }
}

@media (max-width:575px) {
    .full-block .lottery a {
        font-size: 1.125rem;
        line-height: 1.5;
    }
}

.full-block .lottery a br {
    display: none;
}

@media (max-width:480px) {
    .full-block .lottery a br {
        display: block;
    }
}

.full-block ul li a .icon {
    margin-bottom: 0.5rem;
    transition: all 0.3s
}

@media (max-width:991px) {
    .full-block ul li a .icon {
        /* margin-bottom: 0; */
        /* margin-right: 1rem; */
    }
}

@media (max-width:575px) {
    .full-block ul li a .icon {
        width: 50px
    }
}

.full-block ul li a:hover .icon,
.full-block ul li a:focus .icon {
    transform: scale(1.5);
    transform-origin: bottom
}

.full-block ul li a .caption {
    position: absolute;
    top: 0%;
    left: 10%;
    line-height: 1.25;
    border-radius: 30px;
    font-size: 1.25rem;
    display: block;
    width: 80%;
    opacity: 0;
    transition: all 0.3s;
    text-align: center;
    color: var(--white-100);
}

@media (max-width:991px) {
    .full-block ul li a .caption {
        display: none;
    }
}

.full-block ul li a:hover .caption {
    opacity: 1;
    transform: translateY(-80px);
}

.full-block ul li a .caption::before {
    content: '';
    height: 50px;
    width: 2px;
    background-color: var(--white-100);
    display: block;
    transform: rotate(-20deg);
    position: absolute;
    left: -8px;
}

.full-block ul li a .caption::after {
    content: '';
    height: 50px;
    width: 2px;
    background-color: var(--white-100);
    display: block;
    transform: rotate(20deg);
    position: absolute;
    right: -8px;
    top: 0px
}

.closeBtn {
    margin: 2rem auto 0 auto;
    width: 70px;
    height: 70px;
    background-color: initial;
    display: block;
    border: var(--white-100) 2px solid;
    border-radius: 50%;
    color: var(--white-100);
    position: relative;
    transition: all 0.3s;
}

@media (max-width:575px) {
    .closeBtn {
        font-size: 1rem;
        width: 50px;
        height: 50px;
        margin-top: 1rem;
    }
}

.closeBtn:hover {
    color: var(--Grey-700);
}

.closeBtn::before {
    content: '';
    background-color: var(--primary-light);
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.3s;
    z-index: -1;
}

.closeBtn:hover::before {
    transform: scale(1)
}

.area-text {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.area-text h3 {
    margin-bottom: 1.5rem;
    font-weight: 600
}

.area-text p {
    margin-bottom: 0.25rem;
    white-space: pre-line;
}

.area-text p strong {
    z-index: -1;
    background-color: var(--highlight-base);
}

.area-text p span {
    font-size: 0.9rem;
}

.route {
    padding: 1rem;
}

@media (max-width:430px) {
    .route {
        padding: 0rem;
    }
}

.route .title {
    font-family: var(--font-maru);
    font-weight: 700;
    text-align: center;
    color: var(--Grey-700);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.route .title-area {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.route .text {
    border-radius: 20px;
    overflow: hidden;
}

.route .text .item {
    list-style: none;
}

.route .text .item a {
    display: flex;
    padding: 1rem 2rem;
    background-color: var(--white-100);
    position: relative;
    transition: all 0.3s;
    overflow: hidden;
    align-items: center;
    border-bottom: #ddd 2px dotted;
    /* flex-wrap: wrap; */
    text-decoration: none;
    color: var(--Grey-700);
    margin: 0;
}

@media (max-width:768px) {
    .route .text .item a {
        flex-wrap: wrap;
    }
}

@media (max-width:575px) {
    .route .text .item a {
        padding: 1rem 0rem;
    }
}

.route .text .item a:hover, .route .text .item a:focus {
    background-color: var(--primary-light);
}

.route .text .item a:focus {
    outline-offset: -3px;
}

.route .text .item a .route-num {
    display: flex;
    font-size: 0.85rem;
    color: var(--Grey-700);
    background-color: var(--highlight-base);
    line-height: 1;
    border-radius: 50%;
    margin-right: 2rem;
    width: 70px;
    height: 70px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1rem;
    transition: all 0.3s;
    flex-shrink: 0;
}

@media (max-width:820px) {
    .route .text .item a .route-num {
        margin-right: 1rem;
    }
}

@media (max-width:768px) {
    .route .text .item a .route-num {
        margin-left: 1rem;
    }
}


@media (max-width:430px) {
    .route .text .item a .route-num {
        margin-right: 0.5rem;
        width: 60px;
        height: 60px;
    }
}

.route .text .item a:hover .route-num {
    width: 80px;
    height: 80px;
    background-color: var(--white-100);
}

@media (max-width:430px) {
    .route .text .item a:hover .route-num {
        width: 70px;
        height: 70px;
    }
}

.route .text .item a .route-num span {
    width: 100%;
    margin-top: 0.35rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.route .text .item a .heading {
    font-family: var(--font-maru);
    font-weight: 700;
    font-size: 1.35rem;
    position: relative;
    z-index: 2;
    margin-right: 1.25rem;
    white-space: pre-line;
}

@media (max-width:767px) {
    .route .text .item a .heading {
        margin-right: 0rem;
    }
}

@media (max-width:575px) {
    .route .text .item a .heading {
        font-size: 1.2rem;
        margin: 0;
    }
}

.route .text .item a i {
    font-size: 2rem;
    position: relative;
    opacity: 0;
    transition: all 0.3s
}

@media (max-width:991px) {
    .route .text .item a i {
        position: absolute;
        right: 2rem;
        bottom: 25%;
    }

    .routeBlk .route .text .item a i {
        right: initial;
        bottom: initial;
        top: 70px;
        left: 120px;
        color: var(--white-100);
    }
}

@media (max-width:768px) {
    .route .text .item a i {
        right: 2rem;
        top: 2rem
    }

    .routeBlk .route .text .item a i {
        top: 2rem;
        left: 15%;
    }
}


.route .text .item a:hover i, .route .text .item a:focus i {
    opacity: 1;
    transform: translateX(5px)
}

.route .text .item a i::after {
    content: '探險去';
    position: absolute;
    font-size: 0.8rem;
    top: 29px;
    left: -4px;
    width: 100px;
    font-style: initial;
}

.picBlk div {
    position: absolute;
    z-index: 2;
}

.pic-1 {
    right: calc((100% - 1200px) / 2);
    top: 380px;
    animation: footerKids2 2.5s ease-in-out infinite alternate-reverse
}

.all-map .pic-1 {
    right: calc((100% - 900px) / 2);
    top: 400px;
    animation: footerKids2 2.5s ease-in-out infinite alternate-reverse
}

@media (max-width:1200px) {
    .pic-1 {
        right: 5%;
    }
}

@media (max-width:991px) {
    .pic-1 {
        right: 2rem;
        top: initial;
        bottom: 36%;
    }
}

@media (max-width:640px) {
    .pic-1 {
        bottom: 39%;
    }
}

@media (max-width:480px) {
    .pic-1 {
        bottom: 32%;
    }
}

.pic-1 img {
    width: 350px;
    transition: all 0.3s
}

@media (max-width:991px) {
    .pic-1 img {
        width: 30vw;
    }
}

.pic-2 {
    left: calc((100% - 1400px) / 2);
    bottom: 50px;
    animation: footerKids 2.5s ease-in-out infinite alternate-reverse
}

@media (max-width:1300px) {
    .pic-2 {
        bottom: 0px;
        left: 1rem;
    }
}

.pic-2 img {
    width: 250px;
}

@media (max-width:991px) {
    .pic-2 img {
        width: 25vw;
    }
}


@keyframes footerKids2 {
    0% {
        transform: rotate(-1deg) translateX(-10%)
    }

    to {
        transform: rotate(1deg) translateX(-0%)
    }
}

@-webkit-keyframes footerKids {
    0% {
        transform: translateY(-5%)
    }

    to {
        transform: translateY(5%)
    }
}

.process-line {
    padding: 1rem 0 0 0;
    /* position: relative; */
    display: flex;
    margin-left: auto;
    width: calc(100% - 350px);
}

@media (max-width: 768px) {
    .process-line {
        width: 100%;
        margin-top: 1rem;
    }
}

@media (max-width:575px) {
    .process-line {
        flex-wrap: wrap;
        margin-top: 0;
        padding-top: 0.5rem;
    }
}

.process-line::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    border-top: #333 2px dashed;
    position: absolute;
}

@media (max-width:575px) {
    .process-line::before {
        width: 1px;
        height: calc(100% - 4rem);
        border-left: #333 2px dashed;
        border-top: none;
        left: 3.25rem;
    }
}

@media (max-width:480px) {
    .process-line::before {
        left: 2.75rem;
    }
}

.process-line .point {
    position: relative;
    padding: 1rem 0;
    writing-mode: vertical-lr;
    display: flex;
    font-size: 1.05rem;
    font-weight: bold;
    align-items: center;
    line-height: 1.25;
    margin: 0 8px;
    white-space: pre-line;
}

@media (max-width:768px) {
    .process-line .point {
        writing-mode: initial;
        width: 100%;
        display: block;
        text-align: center;
        white-space: normal;
    }

    .process-line .point br {
        display: none;
    }
}

@media (max-width:575px) {
    .process-line .point {
        padding: 0.5rem 0 0.5rem 3.5rem;
        text-align: left;
    }
}

@media (max-width:480px) {
    .process-line .point {
        /* padding: 0.5rem 0 0.5rem 2.5rem; */
    }
}

.process-line .point::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #0c83bc;
    position: absolute;
    top: -4px;
    left: calc(50% - 5px);
}

@media (max-width:575px) {
    .process-line .point::before {
        top: 14px;
        left: 40px;
    }
}

@media (max-width:480px) {
    .process-line .point::before {
        left: 32px;
    }
}

footer .picBlk {
    max-width: 1400px;
    margin: -8rem auto 0 auto;
    position: relative;
    height: 230px;
}

@media (max-width:991px) {
    footer .picBlk {
        height: 220px;
    }
}

@media (max-width:820px) {
    footer .picBlk {
        height: 180px;
    }
}

.pic-tree {
    max-width: 1200px;
    top: -13%;
    left: calc((100% - 1200px) / 2);
}

@media (max-width:991px) {
    .pic-tree {
        left: 0px;
        padding: 0 2rem;
    }
}

@media (max-width:575px) {
    .pic-tree {
        top: -8%;
    }
}

.pic-tree2 {
    max-width: 1200px;
    top: 0%;
    left: calc((100% - 1200px) / 2);
}

@media (max-width:991px) {
    .pic-tree2 {
        left: 0px;
        padding: 0 2rem;
    }
}

@media (max-width:575px) {
    .pic-tree2 {
        top: 7%;
    }
}

.pic-tree3 {
    max-width: 1600px;
    left: calc((100% - 1500px) / 2);
    z-index: 3 !important;
}

@media (max-width:1400px) {
    .pic-tree3 {
        left: 0%;
        top: 0px;
    }
}

@media (max-width:767px) {
    .pic-tree3 {
        top: 30%;
    }
}

.pic-demo-1 {
    width: 100%;
    top: -82%;
    transition: all 0.3s;
    /* animation: footerKids3 2s ease-in-out infinite alternate-reverse; */
    opacity: 0.7;
    display: flex;
    justify-content: center;
}

@media (max-width:767px) {
    .pic-demo-1 {
        top: -50%;
    }
}

@media (max-width:620px) {
    .pic-demo-1 {
        top: -30%;
    }
}

@media (max-width:480px) {
    .pic-demo-1 {
        top: -10%;
    }

    .pic-demo-1 img {
        width: 80%;
    }
}

.pic-demo-2 {
    width: 180px;
    border-radius: 50%;
    top: -30%;
    left: 33%;
    transition: all 0.3s;
    /* animation: footerKids3 2s ease-in-out infinite alternate-reverse; */
}

@media (max-width:991px) {
    .pic-demo-2 {
        left: 25%;
    }
}

@media (max-width:835px) {
    .pic-demo-2 {
        left: 12%;
    }
}

@media (max-width:767px) {
    .pic-demo-2 {
        display: none;
    }
}

.pic-demo-3 {
    width: 100px;
    top: -80%;
    right: 40%;
    transition: all 0.3s;
    animation: footerKids3 2.5s ease-in-out infinite alternate-reverse;
}

@media (max-width:640px) {
    .pic-demo-3 {
        right: 60%;
    }
}


.pic-demo-4 {
    width: 130px;
    border-radius: 50%;
    top: -43%;
    right: 13%;
    transition: all 0.3s;
    /* animation: footerKids3 1.5s ease-in-out infinite alternate-reverse; */
}

@media (max-width:767px) {
    .pic-demo-4 {
        display: none;
    }
}

@keyframes footerKids3 {
    0% {
        transform: rotate(-0deg) translateY(-10%)
    }

    to {
        transform: rotate(0deg) translateY(-0%)
    }
}

.pic-3 {
    top: -94%;
    right: 23%;
    /* animation: footerKids3 1.8s ease-in-out infinite alternate-reverse; */
    transition: all 0.3s;
}

@media (max-width:640px) {
    .pic-3 {
        right: 8%;
    }
}

@media (max-width:480px) {
    .pic-3 {
        right: 0%;
        text-align: center;
    }
}

.pic-3 img {
    width: 400px
}

@media (max-width:480px) {
    .pic-3 img {
        width: 80%
    }
}


.routeBlk {
    background-color: var(--primary-base);
    padding: 3rem;
    border-radius: 30px;
    position: relative;
    margin-top: 2rem;
}

@media (max-width:1400px) {
    .routeBlk {
        margin: 2rem 1.5rem;
    }
}

@media (max-width:991px) {
    .routeBlk {
        padding: 1.5rem;
        margin: 2rem 0;
    }
}

@media (max-width:575px) {
    .routeBlk {
        padding: 0.5rem 1rem;
    }
}

.route .text .item a .photo {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 20px;
    height: 180px;
    margin-right: 2rem;
    position: relative;
    flex-shrink: 0;
}

@media (max-width:820px) {
    .route .text .item a .photo {
        margin-right: 1rem
    }
}

@media (max-width:768px) {
    .route .text .item a .photo {
        margin: 0 auto;
        width: 83%;
        height: auto;
    }
}

@media (max-width:575px) {
    .route .text .item a .photo {
        margin: 0 1.5rem 1rem 1.5rem;
        width: calc(100% - 3rem);
    }
}

.route .text .item a .photo::before {
    font-family: var(--font-maru);
    font-size: 3rem;
    color: var(--white-60);
    position: absolute;
    right: 5px;
    bottom: 6px;
    z-index: 1;
    font-weight: 600;
}

.route .text .item.cc a .photo::before {
    content: '中區';
}

.route .text .item.tu a .photo::before {
    content: '屯區';
}

.route .text .item.cl a .photo::before {
    content: '海區';
}

.route .text .item.ml a .photo::before {
    content: '山區';
}

.route .text .item a .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s
}

.route .text .item a:hover .photo img {
    transform: scale(1.05)
}

.routeBlk .heading {
    width: 250px;
}

@media (max-width:991px) {
    .routeBlk .heading {
        width: initial;
    }
}

.routeBlk .process-line {
    width: initial;
    flex-grow: 1;
}

@media (max-width:991px) {
    .routeBlk .process-line {
        width: 100%;
        padding-top: 2.5rem;
        flex-grow: initial;
    }
}

@media (max-width:768px) {
    .routeBlk .process-line {
        padding-top: 0.5rem;
        margin-top: 0;
    }
}

.routeBlk .route .item {
    opacity: 0;
    transform: scale(0.5);
    transition: all 1s ease;
    height: 0;
}

.routeBlk .route .item.show {
    opacity: 1;
    transform: scale(1);
    height: auto;
    transition: all 1s ease;
}

.routeBlk .text .item a i {
    font-size: 3rem;
}

.routeBlk .text .item a i::after {
    font-size: 1rem;
    top: 48px;
    left: 0px;
}

.route-filter {
    /* position: sticky;
    top: 92px;
    z-index: 2;
    background-color: var(--primary-base); */
    padding: 2rem;
}

@media (max-width:767px) {
    .route-filter {
        padding: 1rem;
    }
}

.route-filter ul {
    display: flex;
    /* justify-content: center; */
    margin: 0;
    padding: 0;
}

@media (max-width:768px) {
    .route-filter ul {
        flex-wrap: wrap;
    }
}

.route-filter ul li {
    list-style: none;
    margin: 0 0.5rem
}

@media (max-width:768px) {
    .route-filter ul li {
        margin: 0.5rem;
    }
}

@media (max-width:575px) {
    .route-filter ul li {
        width: calc(100% / 3 - 1rem);
    }
}

@media (max-width:480px) {
    .route-filter ul li {
        width: calc(100% / 2 - 1rem);
    }
}

.route-filter ul li a {
    text-decoration: none;
    color: var(--Grey-700);
    font-family: var(--font-maru);
    font-weight: 600;
    display: block;
    padding: 0.5rem;
    background-color: var(--primary-dark);
    font-size: 1.5rem;
    border-radius: 30px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
    min-width: 110px;
}

@media (max-width:768px) {
    .route-filter ul li a {
        min-width: initial;
        padding: 0.5rem 1.5rem;
    }
}

.route-filter ul li a.active {
    background-color: var(--primary-light);
}

.mapBtn {
    position: absolute;
    top: 0px;
    right: 50px;
    animation: footerKids3 2.5s ease-in-out infinite alternate-reverse;
    transition: all 0.3s;
}

@media (max-width:991px) {
    .mapBtn {
        position: fixed;
        bottom: 2rem;
        top: initial;
        z-index: 1;
        display: none;
    }
}

.mapBtn a {
    width: 200px;
    display: block;
    padding: 0.5rem;
    border-radius: 20px;
}

@media (max-width:991px) {
    .mapBtn a {
        width: 150px;
        height: 150px;
    }
}

.mapBtn a:hover {
    background-color: var(--primary-light)
}

.mapBtn span {
    position: absolute;
    top: -43px;
    left: 0px;
    font-size: 1.25rem;
    font-family: var(--font-maru);
    font-weight: 600;
    width: 100%;
    text-align: center;
}

@media (max-width:991px) {
    .mapBtn span {
        transform: rotate(333deg) translateX(-45px);
        top: -40px;
    }
}

.mapBlk {
    position: relative;
    left: 13%;
}

@media (max-width:1200px) {
    .mapBlk {
        left: 5%;
    }
}

.modal-dialog:has(.mapBlk) {
    max-width: initial;
    width: 90%;
}

.map-img {
    width: 1622px;
}

.map-pin .item {
    position: absolute;
}

.map-pin .item a {
    text-decoration: none;
    position: relative;
}

.map-pin .item a .num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-dark);
    color: var(--Grey-700);
    font-family: var(--font-maru);
    font-weight: 600;
    display: block;
    text-align: center;
    line-height: 33px;
}

.map-pin .item a .caption {
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    transition: all 0.3s;
    color: var(--Grey-700);
    font-size: 1.125rem;
    font-weight: bold;
    background-color: var(--white-100);
    padding: 0.75rem;
    border-radius: 20px;
    position: absolute;
    width: 200px;
    height: 200px;
    line-height: 1.5;
    left: -80px;
    top: -80px;
    z-index: 1;
    text-align: center;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

.map-pin .item a .caption span {
    display: block;
    position: absolute;
    top: -10px;
    background-color: var(--accent-light);
    color: var(--Grey-700);
    width: 100px;
    border-radius: 20px;
    font-size: 1.125rem;
    left: calc(50% - 50px);
    line-height: 30px;
}

.map-pin .item a .caption .photo {
    width: 100%;
    height: 115px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 0.5rem;
}

.map-pin .item a .caption .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-pin .item a:hover .caption, .map-pin .item a:focus .caption {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.map-pin .item a:focus .caption {
    outline: 3px dotted var(--danger-base)
}

.map-pin .m01 {
    top: 280px;
    left: 260px;
}

.map-pin .m02 {
    top: 323px;
    left: 361px;
}

.map-pin .m03 {
    top: 322px;
    left: 110px;
}

.map-pin .m04 {
    top: 172px;
    left: 162px;
}

.map-pin .m05 {
    top: 457px;
    left: 82px;
}

.map-pin .m06 {
    top: 625px;
    left: 475px;
}

.map-pin .m07 {
    top: 410px;
    left: 344px;
}

.map-pin .m08 {
    top: 461px;
    left: 197px;
}

.map-pin .m09 {
    top: 425px;
    left: 754px;
}

.map-pin .m10 {
    top: 303px;
    left: 637px;
}

.map-pin .m11 {
    top: 230px;
    left: 366px;
}

.map-pin .m12 {
    top: 130px;
    left: 217px;
}

.map-pin .m13 {
    top: 65px;
    left: 257px;
}

.map-pin .m14 {
    top: 575px;
    left: 221px;
}

.map-pin .m15 {
    top: 620px;
    left: 380px;
}

.map-pin .m16 {
    top: 643px;
    left: 254px;
}

.map-pin .m17 {
    top: 518px;
    left: 310px;
}

.map-pin .m18 {
    top: 470px;
    left: 350px;
}

.map-pin .m19 {
    top: 446px;
    left: 297px;
}

.map-pin .m19 {
    top: 446px;
    left: 297px;
}

.map-pin .m20 {
    top: 386px;
    left: 193px;
}

.map-area div {
    position: absolute;
    background-color: var(--white-100);
    font-family: var(--font-maru);
    font-weight: 600;
    font-size: 1.75rem;
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
}

.map-area .a01 {
    top: 472px;
    left: 226px;
}

.map-area .a02 {
    top: 552px;
    left: 412px;
}

.map-area .a03 {
    top: 232px;
    left: 135px;
}

.map-area .a04 {
    top: 300px;
    left: 468px;
}

.route-content {
    margin: 3rem auto;
    max-width: 991px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: center;
}

.route-content .item {
    width: 50%;
    background-color: var(--white-100);
    border-radius: 30px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    margin: 2rem 2rem 5rem 2rem;
}

@media (max-width:767px) {
    .route-content .item {
        width: 75%;
        margin: 2rem 1rem 5rem 1rem;
    }
}

@media (max-width:575px) {
    .route-content .item {
        width: 85%;
    }
}

@media (max-width:575px) {
    .route-content .item.event {
        /* width: 100%; */
    }
}

.route-content .item:nth-of-type(even) {
    margin-left: auto;
}

.route-content .item::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    border-top: var(--Grey-700) 2px dashed;
    border-radius: 0 30px 0 0;
    border-right: var(--Grey-700) 2px dashed;
    z-index: -1
}

@media (max-width:767px) {
    .route-content .item::before {
        border-top: none;
        width: 20px;
    }
}

.route-content .item.event:before {
    content: none;
}

/* .route-content .item::after {
    content: '';
    display: block;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #f1f1f1;
    position: absolute;
    right: -80%;
    bottom: -293px;
    animation: footerKids2 1.8s ease-in-out infinite alternate-reverse
} */

.route-content .item:nth-of-type(even)::before {
    left: initial;
    right: 50%;
    border-top: var(--Grey-700) 2px dashed;
    border-left: var(--Grey-700) 2px dashed;
    border-right: none;
    border-radius: 30px 0 0 0;
}

.route-content .item:nth-of-type(even)::after {
    right: initial;
    left: -80%;
}

.route-content .item a {
    position: relative;
    display: block;
}

.route-content .item a:focus {
    border-radius: 20px;
}

.route-content .item a .title {
    margin-bottom: 0;
    position: absolute;
    bottom: 27px;
    right: 4px;
    font-family: var(--font-maru);
    font-size: 3.5rem;
    color: var(--white-100);
    font-weight: 600;
    text-align: right;
    line-height: 1.05;
    padding: 0 0.5rem;
    filter: drop-shadow(2px 2px 0px black);
    white-space: pre-line;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

@media (max-width:991px) {
    .route-content .item a .title {
        font-size: 3rem;
    }
}

@media (max-width:820px) {
    .route-content .item a .title {
        font-size: 2rem;
    }
}

@media (max-width:575px) {
    .route-content .item a .title {
        font-size: 1.5rem;
        margin-top: 0.5rem;
    }
}

.route-content .item a .title span {
    display: block;
    margin-top: 0.5rem;
    font-size: 1rem;
    color: var(--white-100);
}

@media (max-width:575px) {
    .route-content .item a .title span {
        font-size: 0.8rem;
    }
}

.route-content .item a .num {
    display: block;
    width: 80px;
    height: 80px;
    background-color: var(--accent-light);
    border-radius: 50%;
    position: absolute;
    top: -2rem;
    left: -2rem;
    color: var(--Grey-700);
    font-size: 2rem;
    font-family: var(--font-maru);
    text-align: center;
    line-height: 62px;
    font-weight: 600;
    border: #fff 6px solid;
    z-index: 1;
}

@media (max-width:575px) {
    .route-content .item a .num {
        width: 60px;
        height: 60px;
        line-height: 45px;
        font-size: 1.5rem;
    }
}


.route-content .item a .photo {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 20px;
}

.route-content .item a .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.route-content .hoverBlk {
    position: absolute;
    color: var(--white-100);
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-maru);
    font-size: 1.5rem;
    letter-spacing: 1px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0px);
    transition: all 0.3s;
    flex-direction: column;
    padding: 0 1rem;
    text-align: center;
    white-space: pre-line;
}

@media (max-width:575px) {
    .route-content .hoverBlk {
        font-size: 1.25rem;
    }
}

.route-content a:hover .hoverBlk, .route-content a:focus .hoverBlk {
    opacity: 1;
    visibility: visible;
    transform: translateY(-10px);
}

.route-content a:hover .hoverBlk::before, .route-content a:focus .hoverBlk::before {
    content: '';
    display: block;
    background-color: var(--black-40);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: -1;
    transform: translateY(10px);
    border-radius: 20px;
}

.route-content .hoverBlk span {
    font-size: 1.125rem;
    display: block;
    margin-top: 0.5rem;
    background-color: var(--area-line);
    border-radius: 20px;
    padding: 0.25rem 1rem;
    color: var(--Grey-700);
}

.route-text {
    background-color: var(--white-100);
    border-radius: 30px;
    padding: 2rem;
    font-size: 1.125rem;
}

.route-text h3 {
    margin-top: 0;
}

@media (max-width:575px) {
    .route-text {
        padding: 1rem;
    }
}

.route-text .heading {
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

@media (max-width:575px) {
    .route-text .heading {
        margin-top: 1rem;
    }
}

.route-text strong {
    background-color: #ffe670;
}

.route-text .route-slider {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0 auto;
    /* overflow: hidden; */
    aspect-ratio: 16 / 9;
}

@media (max-width:575px) {
    .route-text .route-slider {
        width: 100%;
    }
}

.route-text .route-slider .item {
    overflow: hidden;
    border-radius: 20px;
}

.route-text .route-slider .item a {
    display: block;
}

.route-text .route-slider .owl-prev {
    left: 8px;
}

.route-text .route-slider .owl-next {
    right: 8px;
}

.route-text .route-slider .owl-dots {
    bottom: -0.5rem;
}

.learnBtn {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-end;
}

.learnBtn a {
    display: inline-block;
    background-color: var(--primary-dark);
    border-radius: 20px;
    padding: 0.25rem 1.5rem;
    color: var(--Grey-700);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.learnBtn a::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: var(--primary-light);
    top: 0px;
    left: 0px;
    border-radius: 20px;
    z-index: -1;
    transform: scale(0);
    transition: all 0.3s;
}

.learnBtn a:hover::before {
    transform: scale(1);
}

.pic-demo-5 {
    width: 185px;
    border-radius: 50%;
    /* animation: footerKids3 1.8s ease-in-out infinite alternate-reverse; */
    transition: all 0.3s;
    left: 20%;
    aspect-ratio: 1 / 1;
    top: -33%;
}

@media (max-width:767px) {
    .pic-demo-5 {
        display: none;
    }
}

.pic-demo-6 {
    width: 250px;
    animation: footerKids2 2.5s ease-in-out infinite alternate-reverse;
    transition: all 0.3s;
    top: 64px;
    right: -4%;
}

@media (max-width:1200px) {
    .pic-demo-6 {
        right: 0%;
    }
}

@media (max-width:991px) {
    .pic-demo-6 {
        width: 25%;
    }
}

.pic-demo-7 {
    width: 200px;
    animation: footerKids2 2.5s ease-in-out infinite alternate-reverse;
    transition: all 0.3s;
    top: 430px;
    left: -5%;
}

@media (max-width:1200px) {
    .pic-demo-7 {
        left: 0%;
    }
}

@media (max-width:991px) {
    .pic-demo-7 {
        width: 20%;
        left: 3%;
    }
}

@media (max-width:820px) {
    .pic-demo-7 {
        top: 45vh;
    }
}

@media (max-width:767px) {
    .pic-demo-7 {
        top: 70vh;
    }
}

@media (max-width:630px) {
    .pic-demo-7 {
        top: 60vh;
    }
}


.pic-demo-7 img {
    transform: rotate(-20deg)
}

.pic-demo-8 {
    width: 180px;
    animation: footerKids2 2.5s ease-in-out infinite alternate-reverse;
    transition: all 0.3s;
    right: -5%;
    top: 753px;
}

@media (max-width:1200px) {
    .pic-demo-8 {
        right: 0%;
    }
}

@media (max-width:991px) {
    .pic-demo-8 {
        width: 18%;
        right: 3%;
    }
}

@media (max-width:820px) {
    .pic-demo-8 {
        top: 78vh;
    }
}

@media (max-width:767px) {
    .pic-demo-8 {
        top: 102vh;
    }
}


.pic-demo-9 {
    width: 230px;
    animation: footerKids2 2.5s ease-in-out infinite alternate-reverse;
    transition: all 0.3s;
    top: 1120px;
    left: -5%;
}

@media (max-width:1200px) {
    .pic-demo-9 {
        left: 0%;
    }
}

@media (max-width:991px) {
    .pic-demo-9 {
        width: 22%;
        left: 3%;
    }
}

@media (max-width:820px) {
    .pic-demo-9 {
        top: 120vh;
    }
}

@media (max-width:767px) {
    .pic-demo-9 {
        top: 168vh;
    }
}

@media (max-width:700px) {
    .pic-demo-9 {
        top: 150vh;
    }
}

@media (max-width:630px) {
    .pic-demo-9 {
        top: 135vh;
    }
}

.learn-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: #f1f1f1;
    animation: footerKids3 2.5s ease-in-out infinite alternate-reverse;
    transition: all 0.3s;
    top: -6%;
    right: -5%;
    overflow: hidden;
}

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

.learnBlk {
    position: relative
}

.learnBlk .h4 {
    /* text-align: center; */
    /* padding-right: 300px; */
    padding-left: 110px;
    margin: 1rem 0;
}

@media (max-width:767px) {
    .learnBlk .h4 {
        padding-right: 0px;
    }
}

.learnBlk .h4 p {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.5
}

.learnBlk .h4 p strong {
    color: var(--danger-base);
    background-color: initial;
}

.learnBlk .h4 ul {
    margin: 0.5rem 0;
}

.learnBlk .h4 span, .learnBlk .h4 p.caption {
    font-size: 1.125rem;
    color: var(--warning-dark);
    display: block;
}

.learnBlk .h4 span:has(img) {
    top: 52px;
    display: block;
    width: 100px;
    position: absolute;
    left: 10px;
    margin: 0;
    z-index: 1;
}

.learnBlk .heading {
    font-family: var(--font-maru);
    color: var(--Grey-700);
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0 1rem;
    margin-top: 0;
}

.passphrase {
    background-color: var(--primary-base);
    border-radius: 30px;
    padding: 2rem;
    position: relative;
}

@media (max-width:575px) {
    .passphrase {
        padding: 1rem 0.5rem;
    }
}

.keywords {
    background-color: var(--accent-base);
    border-radius: 30px;
    padding: 2rem;
    margin: 3rem 0;
    position: relative;
}

@media (max-width:575px) {
    .keywords {
        padding: 1rem;
    }
}

.challenge {
    background-color: var(--highlight-base);
}

.passphrase-content {
    background-color: var(--white-100);
    border-radius: 30px;
    padding: 2rem;
}

@media (max-width:575px) {
    .passphrase-content {
        padding: 1.5rem 0.5rem;
    }
}

.keywords-content {
    background-color: var(--white-100);
    border-radius: 30px;
    padding: 1rem 2rem;
}

@media (max-width:575px) {
    .keywords-content {
        padding: 1rem;
    }
}

.passphrase-content .item {
    display: flex;
    align-items: flex-start;
}

@media (max-width:767px) {
    .passphrase-content .item {
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
        position: relative;
        margin-left: 50px;
        align-items: flex-start;
    }
}

@media (max-width:480px) {
    .passphrase-content .item {
        flex-direction: column;
        align-items: center;
    }
}

.passphrase-content .item .photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f1f1f1;
    flex-shrink: 0;
    /* margin-right: 1rem; */
}

@media (max-width:767px) {
    .passphrase-content .item .photo {
        position: absolute;
        left: -50px;
    }
}

.passphrase-content .item .text {
    flex: 1;
    padding: 1rem
}

@media (max-width:767px) {
    .passphrase-content .item .text {
        padding: 0 1rem;
        width: 100%;
    }
}

@media (max-width:575px) {
    .passphrase-content .item .text {
        padding: 0 0 0 1rem;
    }
}

.passphrase-content .item .text p {
    margin-bottom: 0;
}

.passphrase-content .item .line {
    width: 1px;
    height: -webkit-fill-available;
    background-color: var(--Grey-300);
}

@media (max-width:767px) {
    .passphrase-content .item .line {
        width: calc(100% - 2rem);
        height: 1px;
        margin: 0.5rem 1rem;
    }
}

@media (max-width:575px) {
    .passphrase-content .item .line {
        width: calc(100% - 2rem);
        height: 1px;
        margin: 0.5rem 0 0.5rem 1rem;
    }
}

.passphrase-content .item .text-en {
    font-family: var(--font-maru);
    font-weight: 600;
    /* font-size: 1.35rem; */
}

.passphrase-content .item .text-ch {
    padding: 1rem 1rem 1rem 2rem
}

@media (max-width:767px) {
    .passphrase-content .item .text-ch {
        padding: 0 1rem;
    }
}

@media (max-width:575px) {
    .passphrase-content .item .text-ch {
        padding: 0 0 0 1rem;
    }
}

.passphrase-content .item-content {
    display: flex;
    flex-grow: 1;
}

@media (max-width:767px) {
    .passphrase-content .item-content {
        flex-direction: column;
    }
}

@media (max-width:480px) {
    .passphrase-content .item-content {
        width: 100%;
        margin-top: 0.5rem
    }
}

.keywords-content ol {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.keywords-content ol li {
    width: calc(50% - 1rem);
    margin: 0.5rem !important;
}

@media (max-width:767px) {
    .keywords-content ol li {
        width: calc(100% - 1rem);
    }
}

.hot {
    width: 100%;
    flex: initial;
}

.hot-content {
    display: flex;
    flex-wrap: wrap;
}

.hot-content .item {
    margin: 0.25rem;
}

.hot-content .item a {
    display: block;
    padding: 0.25rem 1.5rem;
    background-color: var(--white-100);
    border-radius: 20px;
    font-size: 1rem;
    position: relative;
    z-index: 1
}

@media (max-width:575px) {
    .hot-content .item a {
        padding: 0.25rem 1rem;
    }
}

.hot-content .item a::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: var(--primary-dark);
    border-radius: 20px;
    z-index: -1;
    transform: scale(0);
    transition: all 0.3s;

}

.hot-content .item a:hover::before {
    transform: scale(1);
}

.filter-search .formBlk .topic-group {
    display: flex;
    width: calc(100% - 100px - 3rem);
    flex: initial;
    margin-top: 1.5rem;
}

@media (max-width:991px) {
    .filter-search .formBlk .topic-group {
        flex: initial;
        width: 100%;
        margin-bottom: 0.5rem;
        margin-top: 0.5rem;
    }
}

@media (max-width:767px) {
    .filter-search .formBlk .topic-group {
        flex-wrap: wrap;
        margin-bottom: 0
    }
}

.filter-search .formBlk .topic-group .form-select {
    margin: 0 0.25rem
}

@media (max-width:767px) {
    .filter-search .formBlk .topic-group .form-select {
        margin: 0.25rem 0 !important;
    }
}

.filter-search .formBlk .topic-group+.send {
    margin-top: 1.5rem;
}

@media (max-width:991px) {
    .filter-search .formBlk .topic-group+.send {
        margin-top: 1rem;
    }
}

.topic-content {
    display: flex;
    flex-wrap: wrap
}

@media (max-width:767px) {
    .topic-content {
        margin-top: 0.5rem
    }
}

.topic-group .item {
    margin: 0.25rem;
    display: flex;
}

.topic-group .item label {
    display: block;
    padding: 0.45rem 1.5rem 0.35rem 3rem;
    background-color: var(--white-100) !important;
    border-radius: 20px;
    font-size: 1rem;
    font-family: "微軟正黑體", sans-serif;
    font-weight: 400;
    width: initial;
}

@media (max-width:575px) {
    .topic-group .item label {
        padding: 0.45rem 1rem 0.35rem 2.5rem;
    }
}

.topic-group .item .btn-check:checked+.btn {
    background-color: var(--primary-light) !important;
    border-color: var(--primary-light);
}

.topic-group .item a {
    display: block;
    padding: 0 1.5rem;
    background-color: var(--white-100);
    border-radius: 20px;
    font-size: 1rem;
    white-space: nowrap;
    line-height: 40px;
    position: relative;
    z-index: 1;
}

.topic-group .item a::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 20px;
    z-index: -1;
    transform: scale(0);
    transition: all 0.3s;
    background-color: var(--primary-light);
}

.topic-group .item.all a::before {
    background-color: var(--primary-light);
}

.topic-group .item.discount a::before {
    background-color: #c6e9a5;
}

.topic-group .item.art a::before {
    background-color: #ffb9c8;
}

.topic-group .item.together a::before {
    background-color: #d1e0fc;
}

.topic-group .item.promo a::before {
    background-color: #ffc392;
}

.topic-group .item.teach a::before {
    background-color: #d1b9ff;
}

.topic-group .item.other a::before {
    background-color: var(--Grey-300)
}

.topic-group .item a:hover::before {
    transform: scale(1);
}

.topic-group .item.active a {
    background-color: var(--primary-light);
    color: var(--Grey-700);
}

.card-box .card-content .info .sort.discount {
    background-color: #c6e9a5;
}

.card-box .card-content .info .sort.art {
    background-color: #ffb9c8;
}

.card-box .card-content .info .sort.together {
    background-color: #d1e0fc;
}

.card-box .card-content .info .sort.promo {
    background-color: #ffc392;
}

.card-box .card-content .info .sort.teach {
    background-color: #d1b9ff;
}

.card-box .card-content .info .sort.other {
    background-color: var(--Grey-300)
}

.other-news {
    /* margin: 7rem 0 3rem 0; */
    padding: 2rem 0 4rem 0;
    position: relative;
}

.other-news .content-card .card-box {
    width: 100%;
    padding: 0;
    margin: 0;
    height: 100%;
}

.other-news .owl-carousel .owl-stage-outer {
    /* overflow: initial; */
}

.other-news .owl-carousel .owl-stage {
    display: flex;
}

.other-news .owl-carousel .owl-item {
    border-radius: 20px;
    /* overflow: hidden; */
    transition: all 0.3s;
    padding: 1rem;
    /* box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3); */
}

.other-news .owl-carousel .owl-item:hover {
    transform: translateY(-8px);
}

.other-news .owl-carousel .card-box a {
    filter: none;
    display: block;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.other-news .owl-carousel .card-box a:hover {
    transform: initial;
}

.other-news .card-box .card-img {
    aspect-ratio: 4 / 2;
}

.other-news .owl-nav button {
    top: 50%;
}

.other-news .owl-dots {
    width: calc(100% - 4rem);
}

.other-news .owl-prev {
    left: 0px;
}

.other-news .owl-next {
    /* right: 0px; */
}

.content-list {
    margin-bottom: 3rem;
}

.list-item a {
    display: flex;
    align-items: baseline;
    padding: 1rem 1.5rem;
    border-bottom: var(--Grey-300) 1px dotted;
    transition: all 0.3s;
}

@media (max-width:767px) {
    .list-item a {
        padding: 1rem 0.5rem;
    }
}

@media (max-width:575px) {
    .list-item a {
        flex-direction: column;
    }
}

.list-item a:hover {
    background-color: var(--accent-base);
    border-radius: 50px
}

.list-item a .heading {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.5;
}

.list-item a .date {
    margin-right: 1rem;
    font-size: 1.125rem;
    line-height: 1;
    display: flex;
    flex-shrink: 0;
}

@media (max-width:575px) {
    .list-item a .date {
        margin-bottom: 0.75rem;
        margin-right: 0
    }
}

.list-item.top a .date::after {
    content: '置頂';
    background-color: var(--primary-light);
    font-size: 1rem;
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    margin-left: 1rem;
    flex-shrink: 0;
}

.promoBlk .owl-carousel .item a .sort.promo {
    background-color: #ffc392;
}

.promoBlk .owl-carousel .item a .sort.teach {
    background-color: #d1b9ff;
}

.promoBlk .owl-carousel .item a .sort.other {
    background-color: var(--Grey-300)
}

.related-links {
    margin: 3rem -1rem;
    display: flex;
    flex-wrap: wrap;
}

@media (max-width:991px) {
    .related-links {
        margin: 3rem 0rem;
    }
}

.related-links .link-item {
    width: calc(100% / 4);
    padding: 1rem;
}

@media (max-width:991px) {
    .related-links .link-item {
        width: calc(100% / 3);
        padding: 1rem 1rem 0rem 1rem;
    }
}

@media (max-width:768px) {
    .related-links .link-item {
        width: calc(100% / 2);

    }
}

@media (max-width:480px) {
    .related-links .link-item {
        width: calc(100% / 1);
    }
}

.related-links .link-item a {
    flex-direction: column;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.1);
    background-color: var(--white-100);
    padding: 1rem;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.related-links .link-item a:hover {
    transform: translateY(-8px) scale(1.05);
}

.related-links .link-item a .photo {
    margin-bottom: 0.75rem;
}

.related-links .link-item a .photo img {
    height: 50px;
    width: auto
}

.related-links .link-item a .heading {
    margin: 0;
    font-weight: normal;
    font-size: 1.125rem;
    justify-content: center;
    line-height: 1;
}

.related-links .link-item a:hover .heading {
    color: var(--warning-dark)
}

.share {
    position: relative;
}

.shareBtn {
    position: absolute;
    top: 45px;
    left: 0px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s;
    z-index: 1;
}

.share.active .shareBtn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.shareBtn .item {
    margin-bottom: 0.25rem
}

.shareBtn .item.fb a {
    background-color: #1877f2;
}

.shareBtn .item.line a {
    background-color: #4caf50;
}

/* .copyBtn a.copied::after {
    content: "已複製";
    font-size: 0.8rem;
    color: var(--Grey-700);
    position: absolute;
    top: 12px;
    left: -60px;
    background-color: #fce15e;
    line-height: 1;
    padding: 0.125rem 0.5rem;
    border-radius: 5px;
} */

.share:has(.copied)::before {
    content: "已複製頁面網址";
    font-size: 0.8rem;
    color: var(--Grey-700);
    position: absolute;
    top: -29px;
    right: 0px;
    background-color: #fce15e;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    white-space: nowrap
}

.detail .table {
    border-collapse: separate;
    border-spacing: 0 10px;
    margin: 1.5rem 0;
    padding: 2px;
    min-width: 820px;
}

.detail .table .tr {
    background-color: var(--primary-base);
    border-radius: 30px;
}

.detail .table .tr:nth-of-type(odd) {
    background-color: var(--highlight-base);
}

.detail .table .tbody .tr:hover {
    box-shadow: 0px 0px 0px 2px var(--highlight-dark);
    border-radius: 30px
}

.detail .table .thead .th {
    padding: 13px 25px;
    line-height: 1.5;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white-color);
    white-space: nowrap;
    background-color: var(--highlight-dark);
}

@media (max-width:575px) {
    .detail .table .thead .th {
        padding: 10px 16px;
        font-size: 1rem;
    }
}

.detail .table .thead :first-of-type {
    border-radius: 30px 0 0 30px;
}

.detail .table .thead :last-of-type {
    border-radius: 0 30px 30px 0;
}

.detail .table .tbody :first-child {
    border-radius: 30px 0 0 30px;
}

.detail .table .tbody .td:last-child {
    border-radius: 0 30px 30px 0;
}

.detail .accordion {
    margin: 1.5rem 0 2.5rem 0;
}

.detail .accordion .accordion-item {
    margin-bottom: 1rem;
    border: none;
    background-color: var(--Grey-50);
    border-radius: 30px;
}

.detail .accordion-button {
    border-radius: 30px;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-base);
    font-weight: bold;
    font-size: 1.25rem
}

.detail .accordion-button:not(.collapsed) {
    background-color: var(--primary-light);
    box-shadow: initial;
}

.detail .accordion .heading {
    margin: 0.5rem 0 1rem 0;
}

.detail .accordion-body {
    padding: 1rem 1.5rem;
}

.modal-dialog {
    max-width: 800px;
}

@media (max-width:875px) {
    .modal-dialog {
        max-width: 95%;
        margin: 1.5rem auto;
    }
}

@media (max-width:991px) {
    .routeBlk .text .item a {
        flex-wrap: wrap;
    }

    .routeBlk .process-line .point {
        writing-mode: initial;
        flex: 1;
        justify-content: center;
    }
}

@media (max-width:575px) {
    .routeBlk .process-line .point {
        flex: initial;
        font-weight: normal;
    }
}

.sitemap ul {
    margin: 0;
    padding: 0;
}

.sitemap>ul>li {
    list-style: none;
    background-color: var(--white-100);
    border-radius: 20px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    width: calc(50% - 2rem);
    margin: 0.5rem 1rem;
}

@media (max-width:575px) {
    .sitemap>ul>li {
        width: 100%;
        margin: 0.75rem 0rem;
    }
}

.sitemap>ul>li {
    float: left;
}

.sitemap>ul>li>a {
    display: block;
    padding: 0.5rem 1.5rem;
    background-color: var(--primary-base);
    border-radius: 20px;
}

.sitemap>ul>li>a:hover {
    background-color: var(--primary-light)
}

.sitemap>ul>li>ul {
    margin: 0.75rem 1rem 1rem 2rem;
}

.sitemap>ul>li>ul>li {
    list-style: none;
}

.sitemap>ul>li>ul>li>a {
    font-size: 1rem
}

.sitemap>ul>li>ul>li>a:hover {
    color: var(--warning-dark)
}

.detail .template_color {
    display: inline-block;
    font-size: 13px;
    line-height: 22px;
    color: var(--Grey-700);
    border: 1px solid var(--Grey-700);
    border-radius: 5px;
    padding: 0px 6px;
}

.div_u {
    margin-right: 1rem;
    position: absolute;
    left: -20px;
}

.div_u a {
    color: transparent;
}

.div_u a:hover, .div_u a:focus {
    color: var(--Grey-500);
}

body>.visually-hidden-focusable {
    top: 0px;
    position: fixed;
    z-index: 2;
    background-color: #fff;
}

.index a[accesskey="C"] {
    top: -100px;
}

a[accesskey="C"] {
    display: inline-block;
    transform: translate(-20px, 20px);
    opacity: 0;
    position: absolute;
    z-index: 1;
}

a[accesskey="B"] {
    display: block;
    position: absolute !important;
    opacity: 0;
}

a[accesskey="Z"] {
    display: block;
    position: absolute !important;
    transform: translate(-30px, 20px);
    opacity: 0;
}

a[accesskey="C"]:hover, a[accesskey="Z"]:hover, a[accesskey="B"]:hover,
a[accesskey="C"]:focus, a[accesskey="Z"]:focus, a[accesskey="B"]:focus {
    opacity: 1;
}

.news-list .nav-pills .nav-item a {
    border-radius: 20px 20px 0 0;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: var(--Grey-700);
}

@media (max-width:380px) {
    .news-list .nav-pills .nav-item a {
        padding: 0.75rem 1.5rem;
    }
}

.news-list .nav-pills .nav-item a:hover {
    background-color: var(--Grey-100);
}

.news-list .nav-pills .nav-item a.active {
    background-color: var(--primary-base);
    opacity: 1
}

.news-list .tab-pane {
    background-color: var(--primary-base);
    padding: 2rem 1rem 1rem 1rem;
}

.news-list .tab-pane:first-child {
    border-radius: 0 20px 20px 20px;
}

.news-list .tab-pane:last-child {
    border-radius: 20px;
}

.news-list .tab-pane .more {
    margin: 1.5rem auto 0.5rem auto;
    max-width: 300px;
}

/*menu-置中*/

.index .menu-center>.wrapper {
    flex-direction: column;
    transition: all 0.3s
}

.menu-center.sticky>.wrapper {
    flex-direction: initial;
    transition: all 0.3s
}

.menu-center .logo {
    margin-bottom: 1.25rem;
}

.menu-center.sticky .logo {
    margin-bottom: 0;
}

.index .menu-center .logo h1 a img {
    height: 60px;
    transition: all 0.3s;
}

@media (orientation: portrait) {
    .index .menu-center .logo h1 a img {
        height: 100px;
    }
}

.menu-center.sticky .logo h1 a img {
    height: 60px;
}

.index .menu-center nav {
    margin-left: initial;
}

.index .menu-center nav .sitemap a {
    /* width: initial; */
    /* border-radius: 30px; */
    /* text-decoration: none; */
    /* color: var(--Grey-700); */
    /* font-size: 1.5rem; */
    /* padding: 0 1.5rem; */
    /* line-height: 60px; */
    /* font-family: var(--font-maru); */
    /* letter-spacing: 1px; */
    /* font-weight: 500; */
    /* display: flex; */
    /* position: relative; */
    margin-right: 0.5rem;
    /* background-color: var(--white-100); */
}

@media (max-width:991px) {
    .index .menu-center nav .sitemap a {
        /* margin: 1rem 0 0 0; */
        background-color: var(--primary-light);
    }
}

.index .menu-center nav .sitemap a::before {
    background-color: var(--primary-light);
    border-radius: 30px;
}

.index .menu-center .sitemap span {
    /* display: block; */
    /* margin-left: 0.5rem; */
}

@media (max-width:1024px) {
    .menu-center .sitemap span {
        display: none;
    }
}

.menu-center nav .nav {
    background-color: initial;
    box-shadow: initial
}

.menu-center nav>ul>li {
    margin: 0 0.25rem;
}

@media (max-width:991px) {
    .menu-center nav>ul>li {
        margin: 0 0 1rem 0;
    }
}

.menu-center nav>ul>li>a {
    text-decoration: none;
    color: var(--Grey-700);
    font-size: 1.5rem;
    padding: 0 1.5rem;
    line-height: 60px;
    font-family: var(--font-maru);
    letter-spacing: 1px;
    font-weight: 500;
    display: block;
    position: relative;
    z-index: 1;
    text-align: center;
    background-color: var(--white-100);
    border-radius: 30px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1)
}

@media (max-width:1040px) {
    .menu-center nav>ul>li>a {
        font-size: 1.25rem;
        line-height: 50px;
    }
}

.menu-center nav>ul>li:first-child>a, .menu-center nav>ul>li:last-child>a {
    /* padding: 0 30px; */
}

.menu-center nav>ul>li::before {
    content: none;
}

.menu-center nav>ul>li>a::before {
    content: '';
    background-color: var(--primary-light);
    border-radius: 30px;
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    transition: all 0.3s;
    transform: scale(0);
    width: 100%;
    height: 60px;
}

@media (max-width:1040px) {
    .menu-center nav>ul>li>a::before {
        height: 50px;
    }
}


.menu-center nav>ul>li>a:hover::before {
    transform: scale(1);
}

.areaBlk.all-map {
    height: initial;
}

.all-map .map-svg {
    position: relative;
    max-width: 1400px;
    width: initial;
    margin: 4rem auto 0 auto;
    top: initial;
    left: initial;
    z-index: 1;
}

.all-map .pic-2 {
    display: none;
}

@media (max-width:991px) {
    .all-map .map-svg {
        width: 100%;
        margin: 0rem;
    }
}

@media (max-width:991px) {
    .all-map .pic-1 {
        right: 2rem;
    }

}

@media (max-width:767px) {
    .all-map .pic-1 {
        bottom: 12%;
        top: initial;
    }
}

@media (max-width:480px) {
    .all-map .pic-1 {
        bottom: 9%;
    }

}


.learn-img a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.learn-img a span {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    margin-top: 0;
    justify-content: center;
    align-items: center;
    background-color: var(--black-20);
    color: var(--white-100);
    font-size: 3rem;
    flex-direction: column;
    opacity: 0;
    transition: all 0.3s
}

.learn-img a span::after {
    content: '點選看大圖';
    font-size: 0.9rem;
    margin-top: 0.5rem
}

.learn-img a:hover span {
    opacity: 1;
}

@media (max-width:767px) {
    .learnBlk .picBlk div {
        position: initial;
    }

    .learn-img {
        max-width: 500px;
        height: initial;
        animation: initial;
        border-radius: 20px;
        width: initial;
        margin: 0 auto 2rem auto;
    }

}

@media (max-width:480px) {
    .row [class*="col-"] {
        padding: 0;
    }
}

.route-content .item.event {
    background-color: var(--primary-light);
    /* margin: 6rem 2rem 5rem auto; */
}

.route-content .item.event a {
    padding: 1rem;
}

.route-content .item.event a .title {
    color: var(--Grey-700);
    filter: drop-shadow(2px 2px 0px white);
    position: initial;
    text-align: center;
    white-space: initial;
}

.route-content .item.event a .photo {
    overflow: initial;
}

.route-content .item.event a span {
    display: block;
    width: 300px;
    position: relative;
    transition: all 0.3s;
    margin: 0 auto;
}

.route-content .item.event a:hover span {
    transform: scale(1.25);
    transform-origin: bottom
}

.map-pin .item a .caption .text {
    white-space: pre-line;
}

.all-map .pic-city {
    right: calc((100% - 1200px) / 2);
    bottom: 30px;
}

@media (max-width:991px) {
    .all-map .pic-city {
        bottom: -36px;
    }
}

@media (max-width:575px) {
    .all-map .pic-city {
        right: -20px
    }
}

.pic-city img {
    width: 620px;
    transition: all 0.3s
}


@media (max-width:575px) {
    .pic-city img {
        width: 50vw;
    }
}

.kv-img {
    width: 100%;
    height: 100vh;
}

@media (orientation: portrait) {
    .kv-img {
        height: auto;
    }
}

.kv-img img {
    height: initial;
    width: initial !important;
    max-width: 100%;
}

.kv-img div {
    position: absolute;
}

.kv-bg-left {
    top: -20px;
    left: 0px;
}

.kv-bg-right {
    top: -9px;
    right: 0px;
}

.kv-main {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    position: relative !important;
    align-items: flex-end;
    z-index: 2;
    bottom: 10vh;
}

@media (max-width:1024px) {
    .kv-main {
        bottom: 0vh;
    }
}

.kv-bg {
    bottom: 21vh;
    z-index: 0;
}

@media (max-height:800px) {
    .kv-bg {
        bottom: 30vh;
    }
}

@media (max-width:1400px) {
    .kv-bg {
        bottom: 26vh;
    }
}

.kv-road {
    bottom: 0px;
    z-index: 1;
}

.kv-road img {
    height: 280px;
}

@media (max-height:800px) {
    .kv-road img {
        height: 250px;
    }
}

.kv-balloon-left {
    width: 120px;
    top: 10vh;
    left: 5vw;
    animation: footerKids 2.5s ease-in-out infinite alternate-reverse
}

.kv-balloon-right {
    width: 120px;
    top: 10vh;
    right: 8vw;
    animation: footerKids 2.5s ease-in-out infinite alternate-reverse
}

.kv-cloud-left {
    width: 150px;
    top: 35vh;
    left: 5vw;
    animation: cloud 30s linear infinite alternate-reverse
}

.kv-cloud-right {
    width: 200px;
    top: 40vh;
    right: 3vw;
    animation: cloud2 20s linear infinite reverse;
}

@keyframes cloud {
    0% {
        transform: translateX(0%);
    }

    to {
        transform: translateX(300%);
        opacity: 0;
    }
}

@keyframes cloud2 {
    0% {
        transform: translateX(-300%);
    }

    to {
        transform: translateX(0%);
        opacity: 0;
    }
}

.kv-cloud-01 {
    width: 170px;
    top: 30vh;
    right: 31vw;
    animation: footerKids 2.5s ease-in-out infinite alternate-reverse
}

.kv-cloud-02 {
    width: 90px;
    bottom: 47vh;
    right: 3vw;
    animation: footerKids 2.5s ease-in-out infinite alternate-reverse
}

.kv-cloud-03 {
    width: 100px;
    bottom: 40vh;
    left: 5vw;
    animation: footerKids 2.5s ease-in-out infinite alternate-reverse
}

.cloud-01 {
    width: 170px;
    top: 400px;
    right: 50vw;
    /* animation: footerKids 1.8s ease-in-out infinite alternate-reverse; */
}

.cloud-02 {
    width: 90px;
    top: 450px;
    right: 42vw;
    /* animation: footerKids 1.5s ease-in-out infinite alternate-reverse; */
}

@media (max-width:991px) {
    .cloud-01 {
        width: 15vw;
        top: 420px;
    }

    .cloud-02 {
        width: 8vw;
        top: 480px;
    }
}

@media (max-width:725px) {
    .cloud-01 {
        top: initial;
    }

    .cloud-02 {
        top: initial;
    }

    .cloud-02 img {
        margin-top: 24px
    }
}

.passphrase-content .item::before {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 0.75rem;
}

@media (max-width:767px) {
    .passphrase-content .item::before {
        position: absolute;
        left: -50px
    }
}

.passphrase-content .item.girl::before {
    background-image: url('../images/girl.png');
}

.passphrase-content .item.boy::before {
    background-image: url('../images/boy.png');
}

.passphrase-content .item.teacher::before {
    background-image: url('../images/teacher.png');
}

.passphrase-content .item.sales::before {
    background-image: url('../images/sales.png');
}

.passphrase-content .item.driver::before {
    background-image: url('../images/driver.png');
}

.passphrase-content .item.flying::before {
    background-image: url('../images/flying.png');
}

.passphrase-content .item.man::before {
    background-image: url('../images/man.png');
}

.passphrase-content .item.woman::before {
    background-image: url('../images/woman.png');
}

.topic-group .item input[type=checkbox] {
    position: relative;
    z-index: 1;
    top: 7px;
    left: 50px;
    width: 20px;
}

@media (max-width:575px) {
    .topic-group .item input[type=checkbox] {
        left: 43px;
        width: 20px;
    }
}

.toolBlk {
    position: relative;
    bottom: -1.5rem;
    z-index: 1;
}

.toolBlk>.wrapper {
    display: flex;
    justify-content: flex-end;
}

.toolBlk a {
    display: block;
    text-align: center;
    color: var(--white-100);
    background-color: var(--warning-dark);
    width: 40px;
    height: 40px;
    line-height: 36px;
    border-radius: 50%;
    font-size: 1.25rem;
    margin: 0 0 0 0.5rem;
    position: relative;
}

.toolBlk a:hover {
    background-color: var(--primary-base-hover);
}


.toolBlk a span {
    position: absolute;
    bottom: 40px;
    left: calc(50% - 50px);
    display: block;
    width: 100px;
    white-space: initial;
    background-color: var(--white-100);
    border-radius: 20px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: all 0.3s;
    color: var(--Grey-700);
    font-size: 0.9rem;
}

.toolBlk a:hover span {
    opacity: 1;
    transform: translateY(-3px)
}

.toolBlk a:hover span::before {
    content: '';
    display: block;
    position: absolute;
    bottom: -8px;
    left: calc(50% - 8px);
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: var(--white-100) transparent transparent transparent;
    transition: all 0.3s
}

.textBlk {
    background-color: var(--highlight-base);
    border-radius: 30px;
    padding: 1.5rem 13rem 1.5rem 2rem;
    margin: 2rem 0;
    background-image: url('../images/text-bg.png');
    background-repeat: no-repeat;
    background-position: right center;
    min-height: 180px;
}

@media (max-width:767px) {
    .textBlk {
        padding: 1.5rem 2rem 13rem 2rem;
        background-position: center bottom;
    }
}

.textBlk .heading {
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    padding-left: 0;
}

.textBlk ul {
    margin: 0;
}

.newsBlk-wrapper+.newsBlk-wrapper::before {
    content: none;
}

table caption {
    caption-side: top;
}

.oc-screensize-large .toolBlk {
    padding-right: 60px;
}

.route-content-inner {
    width: 94%;
}

@media (max-width:767px) {
    .route-content-inner {
        width: 100%;
    }
}

.imgBlk .imgBlk {
    margin-bottom: 0;
}

p.red {
    color: #d33928;
    font-weight: bold;
}

.toolBlk a span.sr-only {
    display: none;
}

@media (max-width:575px) {
    .route-content .picBlk {
        display: none;
    }
}

.detail .normal {
    margin-bottom: 1.5rem;
}

.detail .normal table {
    border-collapse: collapse;
    margin-bottom: 0;
    box-shadow: 1px 0 0 #ddd, 0px 0 0 #ddd, 0 1px 0 #ddd;
    border-radius: 30px;
    overflow: hidden;
}

.detail .normal table thead :first-of-type {
    border-radius: 30px 0 0 0;
}

.detail .normal table thead :last-of-type {
    border-radius: 0 30px 0 0;
}

.detail .normal table tbody tr:last-child {
    border-radius: 0 0 0 30px;
}

.detail .normal table tbody tr:nth-of-type(odd),
.detail .normal table tbody tr {
    background-color: initial;
}

.detail .normal table tbody tr:hover {
    box-shadow: initial;
}

.detail .normal table tbody th:first-child, .detail .normal table tbody td {
    border: #ddd 1px solid;
    border-bottom: none;
}

.share:has(a:focus-visible) .shareBtn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.detail .infoBlk .h3 {
    margin-bottom: 1rem;
}

.detail .infoBlk:has(iframe) ul {
    margin-bottom: 1.5rem;
}

.detail p a {
    color: var(--warning-dark)
}

.error {
    max-width: 960px;
    margin: 5rem auto 0 auto;
    text-align: center;
}

.error img {
    max-width: 200px;
    margin-bottom: 1rem;
}

.error .h3 {
    margin: 0;
}

.error .btn {
    background-color: var(--primary-base);
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
}

.error .btn:hover {
    background-color: var(--primary-light);
}

.detail ol:not(.breadcrumb)>li a {
    color: var(--warning-dark);
}

.detail ol:not(.breadcrumb)>li a:hover {
    color: #333
}

.promoBlk .owl-nav button {
    background-color: var(--white-100);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2)
}

.promoBlk .owl-nav button.owl-prev {
    left: 16px;
}

.promoBlk .owl-nav button.owl-next {
    right: 20px;
}

@media (max-width:575px) {
    .promoBlk .owl-nav button.owl-prev {
        left: -15px;
    }

    .promoBlk .owl-nav button.owl-next {
        right: -14px;
    }
}

/*opecms*/
.oc-option-bar:first-of-type .opencms-icon-cut-20 {
    /*剪刀按鈕不出現*/
    display: none;
}

.liveBtn {
    position: fixed;
    bottom: 3rem;
    right: 0.5rem;
    width: 200px;
    height: 200px;
    text-align: center;
    z-index: 3;
}

@media (max-width:480px) {
    .liveBtn {
        width: 160px;
        height: 160px;
    }
}

header .liveBtn {
    position: initial;
    margin: 0 auto 1rem auto;
}

.liveBtn a {
    display: block;
    padding: inherit;
}

.liveBtn button {
    background-color: var(--primary-light);
    border: none;
    font-size: 0.9rem;
    padding: 0rem 0.5rem;
    border-radius: 10px;
    margin-top: 0.25rem;
    border: #fff 3px solid;
    filter: drop-shadow(3px 3px 0px rgba(0, 0, 0, 0.5));
}

.liveBtn button:hover {
    background-color: var(--accent-dark);
}

.full-block .lottery img {
    height: 100px;
    margin: -2rem 0 -2rem 1rem;
}

@media (max-width:575px) {
    .full-block .lottery img {
        margin: 0.25rem;
        height: 80px;
    }

}

.full-block .lottery+.lottery a {
    padding: 0.25rem 0.5rem;
}

@media (max-width:575px) {
    .full-block .lottery+.lottery a {
        padding: 0.5rem;
        font-size: 1rem;
    }
}

.full-block .lottery+.lottery span {
    font-size: 1rem;
}

.contact a {
    display: inline-block
}

.contact i {
    margin-right: 0.25rem;
}

.contact a:hover {
    text-decoration: underline;
}

.designer {
    position: absolute;
    right: 1rem;
    bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--Grey-600);
}

.modal-body .route .text .item a {
    padding-bottom: 2.5rem
}


@media (max-width:991px) {
    .designer {
        position: initial;
        margin-top: 0.5rem;
        width: 100%;
        text-align: right;
    }

    .modal-body .designer {
        position: absolute;
    }
}

@media (max-width:575px) {
    .designer {
        margin-right: 1rem;
        margin-top: 1.5rem;
    }

    .modal-body .designer {
        position: initial;
        margin-right: 0.5rem;
    }

    .modal-body .route .text .item a {
        padding-bottom: 1rem;
    }
}

@media (max-width:510px) {
    .designer {
        text-align: left;
        margin-left: 65px;
    }
}


.detail li a {
    color: var(--warning-dark);
}

.detail li a:hover {
    color: var(--Grey-700);
}

.page ul li a {
    color: var(--Grey-700);
}