* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans TC', "Font Awesome 5 Free", sans-serif !important;
}

a:hover {
    text-decoration: none !important;
}

ul,
li {
    list-style-type: none;
    padding: 0px;
}

p {
    margin: 0px !important;
    padding: 0px !important;
}

a {
    cursor: pointer;
}

/*--------------header---------------*/

.container {
    padding: 2em 0em;
    max-width: 1200px;
}

@media all and (min-width:1200px) {
    .container {
        max-width: 1200px !important;
    }
}

@media all and (max-width:1200px) {
    .container {
        max-width: 1200px !important;
    }
}

.bg_banner {
    background: url(../img/header-1.jpg) center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.bg_bannerph {
    background: url(../img/header-1-ph.jpg) center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.headerbox {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.headerbox2 {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

.headerbox2 img {
    animation: neon-shine 1.7s .5s linear infinite;
}

@keyframes neon-shine {

    /*霓虹燈特效*/
    0% {
        filter: drop-shadow(2px 2px 0px #ffffff);
    }

    50% {
        filter: drop-shadow(2px 2px 10px #ffffff);
    }

    100% {
        filter: drop-shadow(2px 2px 0px #ffffff);
    }
}

/*--------------#header---------------*/

/*-----------------------nav-------------------------------------*/

/*固定導覽列*/

.menu,
.topmenu_bg {
    background-color: #40204b;
}

.menu .nav {
    font-size: 16px;
}

.menu .nav-item {
    position: relative;
    margin: .5em;
    filter: drop-shadow(5px 5px 1px #000);
    width: calc(100%/3.5);
}

.menu .nav-item::before {
    content: '';
    position: absolute;
    background: url(../img/nav-4.png) center/cover no-repeat;
    top: 15%;
    right: -11%;
    width: 50px;
    height: 63px;
}

.menu .nav-item:last-child:before {
    display: none;
}

/* .menu .nav-item:hover {
    transform: scale(1.2, 1.2);
} */

.menu .nav-link {
    padding: 0px;
    width: 80%;
    margin: 0 auto;
}

.hide {
    display: none !important;
}

@media all and (max-width:1024px) {
    .menu .nav {
        font-size: 14px;
    }
}

@media all and (max-width:768px) {
    .menu .nav-item {
        width: calc(100%/3.2);
    }

    .menu .nav-item::before {
        width: 40px;
        height: 51px;
    }
}

@media all and (max-width:576px) {
    .menu .container {
        padding: 0px;
    }

    .menu .nav-item::before {
        display: none;
    }

    .menu .nav-item {
        width: calc(100%/3.5);
    }

    .menu .nav-link {
        width: 100%;
    }
}

@media all and (max-width:425px) {
    .menu .nav {
        font-size: 5px;
    }

    .menu .nav-link {
        padding: .5rem 0rem;
        font-size: 3em;
    }
}

@media all and (max-width:375px) {
    .menu .nav {
        font-size: 4px;
    }
}

/*固定導覽列*/

/*滑動頁面上方導覽列*/

.container-lg {
    font-size: 30px;
}

#mainNav .nav-pills .nav-link {
    font-size: 1em;
    font-weight: bold;
    background-color: #d7b6d6;
    color: #964faf;
    transform: scale(1, 1);
    transition: all .5s ease-out;
    box-shadow: inset 0px 0px 6px 2px #9c27b0, 0px 0px 6px 2px #9c27b0;
    border: 2px solid #fff;
}

#mainNav .nav-pills .nav-link:hover {
    transform: scale(.8, .8);
}

#mainNav {
    padding-top: 10px;
    padding-bottom: 10px;
}

.hide {
    display: none !important;
}

@media all and (max-width:768px) {
    #mainNav .nav-pills {
        font-size: 25px;
    }
}

@media all and (max-width:576px) {
    #mainNav .nav-pills {
        font-size: 17px;
    }
}

@media all and (max-width:425px) {
    #mainNav .nav-pills {
        font-size: 14px;
    }

    #mainNav .nav-pills .nav-link {
        padding: .5rem 0;
    }
}

@media all and (max-width:375px) {
    #mainNav .nav-pills .nav-link {
        font-size: .9em;
    }
}

/*-----------------------nav-------------------------------------*/

/*-----------------------title-------------------------------------*/

.title1 {
    width: 100%;
    text-align: center;
    color: #fff;
    text-shadow: 0px 0px 7px #fff;
}

.title1 h2 {
    font-size: 3em;
}



.title1 h2 span {
    color: yellow;
}

.title1 h2 span.d-inline-block {
    color: #fff;
}

.title1 h2 strong {
    position: relative;
    color: yellow;
    font-size: 1.2em;
}

.title1 h2 strong::before {
    content: '';
    position: absolute;
    background: url(../img/strong-1.png) center/cover no-repeat;
    top: 0%;
    right: -10%;
    width: 30px;
    height: 24px;
    filter: drop-shadow(0px 0px 7px #fff);
}

.title2 h2 {
    font-size: 2.5em;
}

.title2 h2 span {
    color: #fff;
}

@media all and (max-width:1280px) {
    .title1 h2 {
        font-size: 2.5em;
    }

    .title1 h2 strong::before {
        top: -20%;
        right: -15%;
    }

    .title2 h2 {
        font-size: 2em;
    }

    .title2 h2 strong::before {
        display: none;
    }
}

@media all and (max-width:768px) {
    .title1 h2 {
        font-size: 2em;
    }

    .ph {
        display: none;
    }
}

@media all and (max-width:576px) {
    .sph {
        display: none;
    }

    .title1 h2 strong::before {
        display: none;
    }

    .title2 h2 {
        font-size: 1.5em;
    }
}

@media all and (max-width:425px) {}

/*-----------------------#title-------------------------------------*/

/*--------------------------------------pt1-------------------------------------------------*/

.pt1 {
    background: url(../img/bg-1.jpg) center/cover no-repeat;
    overflow: hidden;
}

.a01box,
.a01box2,
.a01boxph {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.a01-1 {
    position: relative;
    width: calc(100%/3);
}

.a01-1>img,
.a01-2>img {
    animation: a01-1 25s linear infinite;
}

@keyframes a01-1 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.a01-p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
}

.a01-text {
    text-align: center;
    color: #fff;
    line-height: 1.5em;
}

.a01-text span {
    color: yellow;
    font-size: 1.5em;
}

.a01-2 {
    position: relative;
    width: calc(100%/3);
}

.a01-2:nth-child(2) .a01-text small {
    background: unset;
    color: #fff;
    font-weight: 500;
}

.a01-text .sp-s {
    font-size: .5em;
    color: #fff;
}

.a01-text small {
    background: #fff;
    border-radius: 20px;
    color: #000;
    padding: 0 .2em;
    font-weight: 600;
}

.a01-text small span {
    color: red;
    font-size: 80%;
}

.a01-4 {
    width: calc(100%/2);
}
.a01-4 img:hover{
    transform: scale(1.5);
    transition: .5s linear;
}
.small {
    color: #fff;
    text-align: center;
    font-size: 1.5em !important;
}

@media all and (max-width:1024px) {}

@media all and (max-width:768px) {

    .a01-1,
    .a01-2 {
        width: calc(100%/2.4);
    }
}

@media all and (max-width:576px) {
    .small {
        font-size: 1em !important;
    }
}

@media all and (max-width:425px) {}

@media all and (max-width:375px) {}

/* ----------------- */

.a01box3 {
    width: 80%;
    margin: 0 auto;
    position: relative;
}

.a01box3 .a01-3 {
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    color: #fde2a6;
    font-size: 2em;
    width: 100%;
}

.a01box3 .a01-3 span {
    color: #fff;
}

.a01box3 .a01-img {
    position: absolute;
    top: 50%;
    right: -5%;
    width: 25%;
    transform: translate(-50%, -50%);
}

@media all and (max-width:1024px) {
    .a01box3 .a01-img {
        width: 20%;
    }
}

@media all and (max-width:768px) {
    .a01box3 {
        width: 90%;
    }

    .a01box3 .a01-3 {
        font-size: 1.8em;
    }
}

@media all and (max-width:576px) {
    .a01box3 .a01-3 {
        font-size: 1.1em;
    }

    .a01box3 .a01-img {
        width: 25%;
        right: -15%;
    }
}

@media all and (max-width:425px) {}

@media all and (max-width:375px) {}

/*--------------------------------------#pt1-------------------------------------------------*/

/*--------------------------------------pt2-------------------------------------------------*/

.pt2 {
    background: url(../img/bg-2.png) center/cover no-repeat, #7154a0;
    overflow: hidden;
}

.b01box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 80%;
    margin: 0 auto;
}

.b01-1 {
    width: 100%;
    border: 3px solid #f8dea5;
    margin: 1em 0;
    box-shadow: 0px 0px 7px #fff;
}

.b01-2 {
    width: 57%;
    border: 3px solid #f8dea5;
    text-align: center;
    padding-bottom: 1em;
    box-shadow: 0px 0px 7px #fff;
}

.b01-2 small {
    font-size: 90%;
    background: #fff;
    font-weight: 500;
    padding: 0 .5em;
}

.b01-2 small span {
    color: #c40d23;
}

.b01-3 {
    width: 40%;
    border: 3px solid #f8dea5;
    padding-bottom: .5em;
    box-shadow: 0px 0px 7px #fff;
    min-height: 127px;
}

.b01box .b01-h3 {
    width: 95%;
    margin: 0 auto;
    border-bottom: 3px solid #f8dea5;
}

.b01box h3 {
    position: relative;
    color: #f8dea5;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    line-height: 2em;
    text-shadow: 0px 0px 5px #fff;
}

.b01box h3::before {
    content: '';
    background: url(../img/b01-1.png) center/cover no-repeat;
    position: absolute;
    top: 50%;
    left: -15%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 33px;
}

.b01box h3::after {
    content: '';
    background: url(../img/b01-1.png) center/cover no-repeat;
    position: absolute;
    top: 50%;
    left: 114%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 33px;
}

.b01box p {
    font-size: 1.4em;
    width: 95%;
    margin: 0 auto !important;
    color: #fff;
    text-align: center;
}

.b01box p span:first-child {
    color: yellow;
}

.ph {
    display: none;
}

@media all and (max-width:1024px) {}

@media all and (max-width:768px) {
    .b01box {
        width: 90%;
    }

    .b01box p {
        font-size: 1.2em;
    }

    .b01box h3::before,
    .b01box h3::after {
        display: none;
    }
}

@media all and (max-width:576px) {
    .b01-1 p br {
        display: none;
    }

    .b01-2,
    .b01-3 {
        width: 100%;
        margin-bottom: 1em;
    }

    .ph2 {
        display: inline;
    }

    .b01-3{
        min-height: 90px;
    }

}

@media all and (max-width:425px) {}

@media all and (max-width:375px) {}

/* ------------------------------------------- */

.b01box2 {
    width: 80%;
    margin: 0 auto;
    position: relative;
}

.b01box2ph {
    position: relative;
}

.b01box2 a,
.b01box2 a:hover,
.b01box2ph a,
.b01box2ph a:hover {
    color: #fff;
}

.b01-but {
    position: absolute;
    top: 35%;
    right: 3%;
    background: #b91c22;
    text-align: center;
    padding: 1em;
    padding-top: .5em;
    border-radius: 50%;
}

.b01box2ph .b01-but {
    position: absolute;
    top: 75%;
    right: 30%;
    background: #b91c22;
    text-align: center;
    padding: 1em;
    border-radius: 15px;
}

@media all and (max-width:1024px) {}

@media all and (max-width:768px) {
    .b01-but {
        font-size: .8em;
    }
}

@media all and (max-width:576px) {}

@media all and (max-width:425px) {}

@media all and (max-width:375px) {}

/*--------------------------------------#pt2-------------------------------------------------*/

/*--------------------------------------pt3-------------------------------------------------*/

.pt3 {
    background: url(../img/bg-3.jpg) center top/cover no-repeat;
    overflow: hidden;
}

.c01box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.c01-1 {
    width: calc(100%/3.5);
    margin: 1em;
    border: 3px solid #fff;
    border-radius: 30px;
    box-shadow: inset 0px 0px 6px 2px #ff5722, 0px 0px 6px 2px #ff5722;
}

.c01-img img {
    border-radius: 30px 30px 0 0;
}

.c01-1 h3 {
    font-size: 2.5em;
    text-align: center;
    text-shadow: 0px 0px 20px #ff5722;
    -webkit-text-stroke: 1px #ff5722;
    color: #fff;
}

.c01-1 p {
    color: #fff;
    width: 85%;
    margin: .5em auto !important;
    font-size: 1.3em;
    min-height: 93px;
}

.c01h3 {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.c01h3 h3 {
    font-size: 2em;
    color: #fff;
}

@media all and (max-width:1024px) {}

@media all and (max-width:768px) {
    

    .c01-1 p {
        font-size: 1em;
    }
}

@media all and (max-width:576px) {
    .c01-1 {
        width: calc(100%/2.3);
        margin: .5em;
    }

    .c01h3 h3 {
        font-size: 1.5em;
    }
    .c01-1 h3 {
        font-size: 2em;
        text-shadow: 1px 1px 0px #ffffff;
        -webkit-text-stroke: unset;
        color: #ff5722;
    }
}

@media all and (max-width:425px) {}

@media all and (max-width:375px) {}

/* ---------------------------------- */

.c01box2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.c01-2 {
    position: relative;
    width: calc(100%/2.2);
    margin: 2em 1em;
    border: 3px solid #fff;
    border-radius: 10px;
    box-shadow: inset 0px 0px 6px 2px #248dc5, 0px 0px 6px 2px #248dc5;
}

.c01-2::before {
    content: '';
    position: absolute;
    background: url(../img/c01-6-1.png) center/cover no-repeat;
    top: 0%;
    right: 2%;
    width: 100px;
    height: 72px;
}

.c01-2:nth-child(2):before {
    background: url(../img/c01-7-1.png) center/cover no-repeat;
}

.c01-2:nth-child(3):before {
    background: url(../img/c01-8-1.png) center/cover no-repeat;
}

.c01-2:nth-child(4):before {
    background: url(../img/c01-9-1.png) center/cover no-repeat;
}

.c01-head {
    position: relative;
}

.c01-himgbg {
    position: absolute;
    bottom: -40%;
    left: -5%;
    background: #40214b;
    width: 40%;
}

.c01-himg {
    padding: .2em;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: inset 0px 0px 6px 2px #248dc5, 0px 0px 6px 2px #248dc5;
}

.c01-hp {
    color: yellow;
    margin: 10% 0 5% 40%;
    font-size: 1.5em;
    font-weight: 600;
}

.c01-hp span {
    color: #fff;
    font-size: 1.5em;
}

.c01-bot {
    color: #fff;
    padding: 1.5em;
}

@media all and (max-width:1024px) {
    .c01-hp {
        color: yellow;
        margin: 10% 0 5% 40%;
        font-size: 1.3em;
    }
}

@media all and (max-width:768px) {
    .c01-hp {
        font-size: 1em;
    }
}

@media all and (max-width:576px) {
    .c01-2 {
        width: calc(100%/1.5);
    }
}

@media all and (max-width:425px) {
    .c01-2 {
        width: calc(100%/1);
    }

    .c01-hp {
        font-size: 1.4em;
    }
}

@media all and (max-width:375px) {}

/* -------------------------------------------------- */

.c01box3 {
    padding: .2em;
    border: 3px solid #fff;
    border-radius: 15px;
    box-shadow: inset 0px 0px 6px 2px #ff5722, 0px 0px 6px 2px #ff5722;
}

.c01box3-h2 h2 {
    position: relative;
    font-size: 3em;
    padding: .3em;
    margin: 0px;
    text-align: center;
    text-shadow: 0px 0px 20px #ff5722;
    -webkit-text-stroke: 1.5px #ff5722;
    color: #fff;
    font-style: italic;
}

.c01box3-h2 h2::before {
    content: '';
    position: absolute;
    background: url(../img/nav-4.png) center/cover no-repeat;
    top: 25%;
    left: 10%;
    width: 50px;
    height: 63px;
}

.c01box3-h2 h2::after {
    content: '';
    position: absolute;
    background: url(../img/nav-4.png) center/cover no-repeat;
    top: 25%;
    right: 9%;
    width: 50px;
    height: 63px;
}

.c01box3-bg .c01box3-p {
    font-size: 1.5em;
    width: 100%;
    margin: 0 auto;
    font-weight: 500;
    color: white;
    text-align: center;
    letter-spacing: .3em;
}

.c01box3-bg .c01box3-p span {
    color: #40204b;
    background: #fff;
    padding: 0 .5em;
    border-radius: 30px;
    margin-right: .2em;
    letter-spacing: initial;
}

.c01box3-bg .c01box3-p strong {
    color: #fff100;
}

@media all and (max-width:768px) {
    .c01box3-h2 h2::before {
        left: 2%;
    }

    .c01box3-h2 h2::after {
        right: 1%;
    }
}

@media all and (max-width:576px) {
    .c01box3-h2 h2 {
        font-size: 2em;
        text-shadow: 1px 1px 0px #ffffff;
        -webkit-text-stroke: unset;
        color: #ff5722;
    }

    .c01box3-h2 h2::before,
    .c01box3-h2 h2::after {
        display: none;
    }

    .c01box3-bg .c01box3-p {
        letter-spacing: unset;
    }
}

@media all and (max-width:425px) {

    .c01box3-bg .c01box3-p {
        font-size: 1.3em;
    }
}

@media all and (max-width:375px) {}

/* iframe */

.iframe {
    position: relative;
    box-sizing: border-box;
    padding: 1vh 1vw;
    width: 95%;
    max-width: 1200px;
    text-align: center;
}

.iframe iframe {
    height: 530px;
    background-color: white;
}

.iframe .ifr {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.ifrimg {
    width: 50%;
}

.ifrinp {
    width: 50%;
}

.iframe .ifr img {
    width: 80%;
}

@media all and (max-width:768px) {}

@media all and (max-width:576px) {
    .iframe {
        width: 100%;
    }

    .ifrimg {
        width: 90%;
    }

    .ifrinp {
        width: 90%;
    }
}

/*--------------------------------------#pt3-------------------------------------------------*/

/*--------------------------------------pt4-------------------------------------------------*/

.pt4 {
    background: #7154a0;
    overflow: hidden;
}

.title3 {
    text-align: center;
}

.title3 h4 {
    font-size: 2.5em;
    color: #fff;
}

.d01box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.d01-1 {
    width: calc(100%/5);
    margin: 1em;
}

.d01-1:hover {
    filter: drop-shadow(0px 0px 7px #fff);
}

@media all and (max-width:1024px) {}

@media all and (max-width:768px) {
    .title3 h4 {
        font-size: 2em;
    }
}

@media all and (max-width:576px) {
    .d01-1 {
        width: calc(100%/3);
    }
}

@media all and (max-width:425px) {}

@media all and (max-width:375px) {}

/*--------------------------------------#pt4-------------------------------------------------*/

/*---------------- BAR-social_address_浮動社群連結 --------------*/

.social-icon a {
    width: 75%;
}

.social-icon img {
    width: 100%;
}

.hover-deep-purple:hover {
    box-shadow: 0px 0px 7px #fff;
}

#social_part .coll_close {
    font-size: 2em;
}

#social_part .coll_close:hover {
    color: gray;
}

/*------兩個 浮動式按鈕 LINE NEW 手機版-----------*/

@media all and (max-width: 575px) {
    .social-icon p {
        margin: 0px;
    }

    .act_btn {
        background-image: linear-gradient(to top, #dd5418 0%, #eab640 100%) !important;
    }

    .social_btn {
        background-image: linear-gradient(to top, #22ac38 0%, #92fb4b 100%) !important;
    }
}

@media screen and (max-width: 575px) {

    #line_line,
    #act_act {
        padding: 2em 0px 1em !important;
    }
}

/*------#兩個 浮動式按鈕 LINE NEW 手機版----------*/

/*---------------- BAR-social_address_浮動社群連結 --------------*/

/*-----------TOP按鈕------------------*/

#goTop {
    position: fixed;
    bottom: 1em;
    right: 1em;
    /* width: 3em; */
    /* height: 4em; */
    /* padding: 0.5em; */
    z-index: 999;
    font-size: 1.5em;
    text-shadow: 0px 0px 20px aqua;
    -webkit-text-stroke: 1px aqua;
    color: #fff;
}

#goTop .fas {
    font-family: "Font Awesome 5 Free" !important;
}

@media all and (max-width: 575px) {
    #goTop {
        bottom: 0em;
        right: 0em;
    }
}

/*-----------TOP按鈕------------------*/