@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap');

html,
body {
    overflow-x: hidden;
    font-family: Arial, 'Noto Sans TC', sans-serif;
    font-weight: 300;
    /* height: 100%; */
}

* {
    /* outline: 1px solid red; */
}



/* 導覽位置 */
.accesskey {
    position: absolute;
    color: #bdbdbd;
    text-decoration: none;
}

.accesskey_go {
    clip: rect(0, 0, 0, 0);
    width: 180px;
    text-align: center;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 55;
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 3px 10px;
    color: #fff;
    font-weight: 500;
}

.accesskey_go:focus-visible {
    clip: auto;
}

#accesskey_u {
    text-decoration: none;
    color: #83742a;
    position: absolute;
    top: 10px;
    left: 10px;
}

#accesskey_c {
    text-decoration: none;
    color: #83742a;
    position: absolute;
    /* top: 10px; */
    left: 10px;
}

#accesskey_b {
    text-decoration: none;
    color: #83742a;
    position: absolute;
    /* top: 10px; */
    left: 10px;
}





/* 首頁 頭部 HomeAwards */
/* 頭部背景 */

.navbar {
    background-repeat: no-repeat;
    background-size: cover;

    padding: 20px 0;

    position: fixed;
    z-index: 555;
    width: 100%;

    height: var(--fixed-div-height);

    background-color: #101010e2;
    border-bottom: 1px solid #ffffff42;
}

.navbar+.nav_hight {
    height: 111px;
}

/* logo */
.navbar .logo_box h1 {
    display: inline-block;
    margin: 0;
}

.navbar .logo_box img {
    width: 230px;
}

/* 選單 */
.navbar .menu_box {
    width: 100%;
}

.navbar .menu_box .box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar .menu .nav-link {
    color: #E4E4E4;
    font-size: 1.3rem;
    margin-right: 8px;
    transition: 0.5s;
    position: relative;

    border: 1px solid #907D1A;
    border-radius: 3px;
    padding: 3px 15px;

    background-color: #0e0e0ed2;
}

.navbar .menu .nav-link:hover {
    text-shadow: 2px 2px 0 #403708;
    background-color: #907D1A;
}

.navbar .menu .nav-link.active {
    text-shadow: 2px 2px 0 #403708;
    font-size: 1.4rem;
}

.navbar .menu .nav-link::before {
    content: "";
    display: inline-block;
    width: 0%;
    height: 1px;
    background-color: #907D1A;

    position: absolute;
    bottom: 0;
    left: 0;

    transition: 0.5s;
}

.navbar .menu .nav-link:hover:before {
    width: 100%;
}

.navbar .menu .nav-link.active:before {
    width: 100%;
}

.navbar .menu .nav-link::after {
    content: none;
}

.navbar .menu .dropdown-menu {
    padding: 0;
    margin-top: 5px;
    min-width: calc(100% - 8px);

    /* overflow: hidden; */
    background-color: transparent;
}

.navbar .menu .dropdown-menu .dropdown-item {
    padding: 10px 15px;
    border-radius: 3px;
    background-color: #fff;
    border: 1px solid transparent;
    transition: 0.3s;

    background-image: url(../img/arrow_b.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) 30px;
    background-size: 20px;
}

.navbar .menu .dropdown-menu .dropdown-item:hover,
.navbar .menu .dropdown-menu .dropdown-item:active {
    background-color: #907D1A;
    border: 1px solid #907D1A;
    color: #fff;
    background-image: url(../img/arrow.svg);
}

.navbar .menu .dropdown-menu .hasImg {
    pointer-events: none;
    text-align: center;

    background-image: none;
}

.navbar .menu .dropdown-menu .dropdown-item img {
    width: 25px;
    transform: translateY(-2px);
}

.navbar .menu .line {
    display: none;
}

/* 右上選單 */
.navbar .menu_box>.submenu {
    display: none;
}

.navbar .submenu {
    display: flex;
    align-items: center;
}

.navbar .submenu .submenu_list {
    border-right: 1px solid #E4E4E4;
}

.navbar .submenu .submenu_list a {
    color: #E4E4E4;
    text-decoration: none;
    margin-right: 10px;
    padding: 5px;

    transition: 0.5s;
}

.navbar .submenu .submenu_list a:hover {
    color: #414141;
    background-color: #e0e0e0;
    padding: 5px;
    border-radius: 3px;
}

/* 語言切換 */
.navbar .submenu .language_box button {
    background-color: transparent;
    border: 1px solid #907D1A;
    border-radius: 3px;
    color: #E4E4E4;
    padding: 0 10px;
    margin-left: 15px;

    transition: 0.5s;

    background-color: #0e0e0e5f;
}

.navbar .submenu .language_box button.active {
    background-color: #907D1A;
}

.navbar .submenu .language_box button:hover {
    background-color: #907D1A;
}

@media (max-width: 991.98px) {

    .navbar {
        height: initial;
    }

    .navbar .menu_box {
        position: relative;
    }

    /* 漢堡紐 */
    .navbar-toggler {
        border: 1px solid #907D1A;
        width: 36px;
        height: 36px;

        position: absolute;
        top: -55px;
        right: 0;
    }

    .navbar-toggler span {
        display: inline-block;
        width: 20px;
        height: 1px;
        background-color: #c9c9c9;

        position: absolute;
    }

    .navbar-toggler span.line1 {
        top: 8px;
        left: 8px;
        width: 18px;
    }

    .navbar-toggler span.line2 {
        top: 17px;
        left: 8px;
        width: 12px;
    }

    .navbar-toggler span.line3 {
        left: 8px;
        bottom: 8px;
    }

    .navbar .menu_box .box {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .navbar .submenu {
        width: 100%;
        justify-content: flex-end;
    }

    .navbar-nav {
        width: 100%;
        margin-top: 30px;
    }

    .navbar .menu .nav-item {
        margin: 0px 0;
    }

    .navbar .menu .nav-link {
        margin: 0px 0;
    }

    .navbar .menu .line {
        display: inline-block;
        width: 100%;
        border: none;
        border-top: 1px solid #e4e4e4;
        margin: 30px 0;
    }

    .navbar .menu .nav-item:nth-last-child(1) .line {
        display: none;
    }

    .navbar .menu .dropdown-menu .dropdown-item {
        background-position: calc(100% - 15px) 25px;
        background-size: 30px;
    }

    .navbar .menu_box>.submenu {
        display: flex;
        position: absolute;
        top: -50px;
        right: 52px;
    }

    .navbar .box .submenu {
        display: none;
    }
}


@media (max-width: 575.98px) {

    .navbar+.nav_hight {
        height: 81px;
    }

    .navbar .logo_box img {
        width: 130px;
    }

    .navbar-toggler {
        top: -38px;
    }

    .navbar .menu_box>.submenu {
        top: -33px;
        right: 43px;
    }

    .navbar .submenu .language_box button {
        margin-left: 6px;
        padding: 2px 7px;
        font-size: 0.9rem;
    }

    .navbar .menu .menu_list {
        top: calc(var(--fixed-div-height) + 0px);
    }

    .navbar .menu .menu_list li {
        flex-basis: 100%;
    }

    .navbar .menu .menu_list .closure_box .closure_btn {
        right: 15px;
    }
}


@media (max-width: 575.98px) {

    .float_menu {
        bottom: 90px;
        right: 0px;
    }
}

/* 回到頂端 */
.top_box {
    position: fixed;
    right: 0;
    bottom: -80px;
    z-index: 55;

    clip-path: polygon(60% 60%, 0 100%, 100% 100%, 100% 0);
    display: none;


}

.top_box.add {
    display: block;
    /* bottom: 0; */

    animation: top_box_add 0.5s forwards;
}

@keyframes top_box_add {
    100% {
        bottom: 0;
    }
}

.top_box .top_bg {
    width: 130px;
    pointer-events: none;
}

.top_box .top_btn {
    position: absolute;
    right: 0;
    bottom: 0;

    width: 115px;
    height: 115px;
    clip-path: polygon(60% 60%, 0 100%, 100% 100%, 100% 0);

    background-color: transparent;
}

.top_box .top_btn:focus-visible {
    width: 65px;
    height: 50px;
    clip-path: none;
}

.top_box .top_btn p {
    color: #d6b619;
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-weight: 800;
    margin: 0;

    transition: 0.5s;
}

.top_box .top_btn:hover p {
    color: #E4E4E4;
    transform: scale(1.1);
}

@media (max-width: 575.98px) {

    .top_box .top_bg {
        width: 100px;
    }

    .top_box .top_btn {
        width: 90px;
        height: 90px;
    }

    .top_box .top_btn p {
        bottom: 3px;
        right: 5px;
    }
}


/* 頁尾 */
/* 頁尾主視覺 */
.design_img {
    background-image: url(../img/bg1.png);
    height: 800px;

    position: relative;
}

.design_img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) scale(1);

    filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5));

    animation: design_img 10s infinite;
}

@keyframes design_img {
    50% {
        transform: translateX(-50%) translateY(-50%) scale(1.1);
        filter: drop-shadow(5px 8px 5px rgba(0, 0, 0, 0.8))
    }
}

/* 合作單位內容 */
.footer {
    background-color: #1f1f1f;
    padding: 50px 0;
}

.footer .list {
    margin: 0 -10px;
    padding: 0;
    list-style: none;

    display: flex;
    flex-wrap: wrap;
}

.footer .list li {
    flex-basis: calc(100% / 3);
    padding: 10px;
    margin-bottom: 15px;
}

.footer .list li.basis_100 {
    flex-basis: 100%;
}

.footer .list li.basis_100>div {
    display: flex;
    flex-wrap: wrap;
}

.footer .list li.basis_100>div div {
    flex-basis: calc(100% / 3);
    margin-bottom: 15px;
}

.footer .list li p {
    color: #b8b8b8;
    font-size: 0.9rem;
    padding-left: 10px;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.footer .list li p::before {
    content: "";
    width: 3px;
    height: 16px;
    background-color: #907D1A;

    position: absolute;
    left: 0;
    top: 3px;
}

.footer .list li img {
    height: 40px;
    margin: 0 10px;
}

.footer .box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer .box p {
    margin: 0;
    color: #b8b8b8;
    margin-right: 15px;
    font-size: 0.9rem;
    margin-top: 10px;
}

.footer .box .accessibility_img {
    height: 35px;
}


@media (max-width: 1399.98px) {

    .footer .list li {
        flex-basis: calc(100% / 3);
    }

    .footer .list li.basis_100>div div {
        flex-basis: calc(100% / 3);
    }
}

@media (max-width: 991.98px) {

    .footer .list li {
        flex-basis: 100%;
    }

    .footer .list li.basis_100 {
        margin-bottom: 0;
    }

    .footer .list li.basis_100>div div {
        flex-basis: initial;
    }
}

@media (max-width: 575.98px) {
    .footer {
        padding: 50px 0;
    }

    .footer .box {
        flex-wrap: wrap;
        margin-right: 50px;
    }

    .footer .box p {
        margin-right: 0;
    }
}




/* 背景 */
.festival {
    background-color: #232323;
    background-image: url(../img/GMAimg_5.png);
    background-size: 100%;
}

/* 毛毛蟲 */
/* .breadcrumb {
    padding: 20px 0;
}

.breadcrumb .container {
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb .container a {
    text-decoration: none;
    color: #E4E4E4;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #E4E4E4;
}

.breadcrumb .container li.active {
    color: #c6b769;
} */








/* 音樂節 */
.festival .title {
    margin: 20px 0;
    border-bottom: 2px dotted #907D1A;
    padding-bottom: 5px;
    margin-top: 50px;
}

.festival .title h2 {
    color: #e4e4e4;
    margin-bottom: 0;

    display: inline-block;
    background-image: url(../img/arrow.svg);
    background-repeat: no-repeat;
    background-position: 100% 15px;
    padding-right: 45px;
}

.festival .festivalActivity .list {
    margin: 0 -20px;
    padding: 10px 0;
    list-style: none;
    margin-bottom: 50px;
}

.festival .festivalActivity .list li {
    padding: 20px 20px;
}

.festival .festivalActivity .list a {
    text-decoration: none;
    display: inline-block;
    width: 100%;
    border: 1px solid #907D1A;
    border-radius: 3px 15px;
    transition: 0.5s;
}

.festival .festivalActivity .list a:hover {
    background-color: #101010;
}

.festival .festivalActivity .list .img_box {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: 3px 15px;
    transition: 0.5s;
}

.festival .festivalActivity .list a:hover .img_box {
    transform: scale(0.95);
}

.festival .main .list img {
    width: 100%;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.festival .festivalActivity .list p {
    margin: 0;
    color: #e4e4e4;
    font-size: 1rem;
    padding: 0px 15px;
}

.festival .festivalActivity .list p.list_title {
    font-weight: 400;
    font-size: 1.2rem;
    margin: 10px 0;
    border-bottom: 1px dotted #565656;

    transition: 0.5s;
}

.festival .festivalActivity .list a:hover p.list_title {
    border-bottom: 1px dotted #907D1A;
    padding: 0;
    margin: 10px 15px;
    color: #b9a121;
}

.festival .festivalActivity .list p.date {
    padding-left: 17px;
}

.festival .festivalActivity .list p.time {
    padding-bottom: 10px;
}



/* 音樂節 大標題 */
.festival .title_text {
    /* display: flex; */
    /* align-items: center; */
    margin: 20px 0;
}

.festival .title_text .title h2 {
    background-position: 0 15px;
    transform: translateX(-100%);
    opacity: 0;

    animation: title_h2 1s forwards;

    font-size: 2rem;
}

@keyframes title_h2 {
    100% {
        background-position: 100% 15px;
        transform: translateX(0%);
        opacity: 1;
    }
}

/* .festival .title_text .img_box {
    flex-basis: 250px;
}

.festival .title_text .img_box img {
    width: 0%;
    opacity: 0;

    animation: title_img 0.8s forwards;
}

@keyframes title_img {
    100% {
        width: 100%;
        opacity: 1;
    }
} */

/* 音樂節 大標題說明文字 */
.festival .title_text .text_box {
    /* flex-basis: calc(100% - 250px); */
    /* padding-left: 50px; */
    /* padding-right: 10px; */
}

.festival .title_text .text_box .text {
    color: #E4E4E4;
    font-size: 1.2rem;
    margin-bottom: 20px;

    animation: title_text 1.2s 0.1s forwards;
    opacity: 0;
    transform: translateX(-100%);
}

@keyframes title_text {
    40% {
        opacity: 0;
    }

    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}



/* 音樂節 內文外框 */
.festival .box .content {
    background-color: #554348bf;
    border-radius: 10px 30px;
    padding: 40px;
    margin-bottom: 50px;
}

/* 音樂節 內文標題 */
.festival .box .content .title_box {
    color: #E4E4E4;
}

.festival .box .content .title_box h2 {
    display: inline-block;
    padding-right: 80px;
    padding-bottom: 4px;

    position: relative;
}

.festival .box .content .title_box h2::before {
    content: "";
    display: inline-block;
    width: calc(100% + 0px);
    height: 1px;
    background-color: #907D1A;
    margin-left: 3px;

    position: absolute;
    bottom: 0px;

    left: 0;
}

.festival .box .content .title_box h2::after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: #907D1A;
    margin-left: 3px;

    position: absolute;
    bottom: 4px;
    left: calc(100% - 80px);
}

/* 音樂節 大圖尺寸 */
.festival .box .content img {
    width: 100%;
}





/* 音樂節 演唱會 */
.festivalPictureList_2 .box .content .title_box {
    padding-top: 0;
}

.festivalPictureList_2 .box .content .title_box h2 {
    padding-right: 0;
    width: 100%;
    font-size: 1.6rem;
    font-weight: 400;
}

.festivalPictureList_2 .box .content .title_box .time {
    padding-left: 10px;
    margin-left: 7px;
}

/* 演唱會 文字內容 */
.festivalPictureList_2 .box .text_box {
    margin: 20px 0;
    padding: 0;
    color: #E4E4E4;
}

.festivalPictureList_2 .box .text_box .heading {
    font-size: 1.25rem;
    margin: 10px 0;
    font-weight: 400;
}


.festivalPictureList_2 .box .text_box p {
    margin: 5px 0;
    font-size: 1.15rem;
    margin-left: 20px;
}

.festivalPictureList_2 .box .text_ol {
    margin: 0;
    padding-left: 42px;
}

.festivalPictureList_2 .box .text_ol p {
    margin-left: 0;
}


@media (max-width: 767.98px) {}

@media (max-width: 575.98px) {

    .festival .box .content {
        padding: 25px;
    }
}