/*@charset "utf-8";*/
/*CSS Info ======================================================================
File Name: global.css
Editor: Eliam
Last Editor: Yeats
LastDate: 2022/04/07
Version: 3.2
【 Table of Contents 】
    DIV XHTML頁面
    Free Style
    使用jQuery
    
    內容置中，100%寬度
    Responsive Design
    *--》超大螢幕：目標1440螢幕，內容1360，新的 base grid                           (1380 以上)
    *--》普通寬螢幕：目標1280螢幕，內容1200                                                     (1220～1379)
    *--》Smaller than 960: Smaller than the standard base grid，目標1024   (977～1219)
    *--》Tablet Portrait 752: Between 768px and 975px                                         ( 768～976px)
    *--》All Mobile Sizes: Less than 767px                                                                 (767以下)
    *--》Just Mobile Landscape: Between 480px and 767px                                 ( 480～767px)
    *--》Just Mobile Portrait: Less than 479px                                                           (479以下)
    
=================================================================================*/


/*===============================================================================
                               Browser-CSS Reset
=================================================================================*/
@import "Reset.css";
/*===============================================================================
                                     全域設定
=================================================================================*/
/* #Basic Setting
================================================== */

html, body {
    width: 100%;
    height: 100%;
    min-width: 320px;
}

body {
    font-family: "Microsoft JhengHei","Apple LiGothic Medium","PMingLiU","sans-serif","serif";
}

    body.Blank /*空白頁適用*/ {
        background: none;
        border-top: none;
    }

#Wrap {
    _overflow: visible;
    _height: 1px;
    zoom: 1;
}

    #Wrap:after {
        content: ".";
        display: block;
        height: 1px;
        clear: both;
        visibility: hidden;
        font-size: 0;
        line-height: 0;
        margin: -1px 0 0 0;
    }

.clearfix:before, .clearfix:after {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden;
}

.clearfix:after { /*修正Float 撐開 DIV*/
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
/* Hides from IE-mac \*/
* html .clearfix {
    height: 1%;
}
/* End hide from IE-mac */


/* #Typography
================================================== */
/*#region Typography */
h1, h2, h3, h4, h5, h6 {
    position: relative;
    color: #303030;
    font-weight: bold;
}

h1 {
    font-size: 2rem; /*32px*/
    font-weight: bold;
    display: flex;
    line-height: 50px;
    align-items: center;
}

h2 {
    font-size: 1.75rem; /*28px*/
    padding-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem; /*28px*/
    padding-bottom: 1rem;
}

h4 {
    font-size: 1.5rem; /*24px*/
    padding-bottom: 1rem;
}

h5 {
    font-size: 1.375rem; /*22px*/
    padding-bottom: 1rem;
}

h6 {
    font-size: 1.25rem; /*20px*/
    padding-bottom: 1rem;
}

img {
    width: 100%;
}

a {
    text-decoration: none;
    -ms-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

    a:hover {
        cursor: pointer;
    }

    a:focus {
        outline: 2px dotted #F9BF75;
    }

.accesskey a {
    opacity: 0;
}

p {
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.6785rem;
}

/*===============================================================================
                         視覺化全版
=================================================================================*/
.wrapper {
    width: 1360px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

@media only screen and (min-width: 76.25em) and (max-width: 86.1875em) { /*1220~1379*/
    .wrapper {
        width: 1200px;
    }
}

@media only screen and (min-width: 61.0525em) and (max-width: 76.1875em) { /*977~1219*/
    .wrapper {
        width: 960px;
    }
}


@media only screen and (min-width: 48em) and (max-width:61em) { /*768~976*/
    .wrapper {
        width: 752px;
    }
}

@media only screen and (max-width: 47.9735em) { /*767↓*/
    body {
        overflow-x: hidden;
    }

    .wrapper {
        /*width: 100%;*/
        width: calc(100% - 40px);
        margin: 0 20px;
    }
}

/*-----------------Header-----------------*/
header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 200;
    background-color: #ffffff;
}

    header .wrapper {
        padding-top: 0;
        padding-bottom: 0;
    }

/* h1 */
h1 a {
    width: 4rem;
    height: 4rem;
    display: block;
}

    h1 a img {
        width: 100%;
        /*height: 100%;*/
    }

h1 span {
    font-size: 2rem;
    font-weight: bold;
    padding-left: 15px;
}

/* subNav */

.subNav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

    .subNav .navRight {
        display: flex;
        align-items: center;
    }

        .subNav .navRight ul li {
            float: left;
        }

            .subNav .navRight ul li a {
                font-size: 1rem;
                font-weight: normal;
                color: #303030;
                margin: 0 12px;
            }

                .subNav .navRight ul li a:hover, .subNav .navRight ul li a:active {
                    color: #E99177;
                }

        .subNav .navRight .SearchArea span, .subNav .navRight .SearchArea ul li a {
            font-size: .875rem;
            color: #303030;
            margin: 0;
            margin-right: 10px;
            float: left;
        }

            .subNav .navRight .SearchArea span::before {
                content: ' ';
                background-color: #9FC280;
                width: 4px;
                height: 4px;
                border-radius: 50px;
                display: inline-block;
                margin-right: 5px;
                margin-bottom: 2px;
            }

            .subNav .navRight .SearchArea ul li a:hover, .subNav .navRight .SearchArea ul li a:active {
                color: #E99177;
            }

/* mainNav */

.mainNav {
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .2);
    box-sizing: border-box;
}

    .mainNav ul {
        display: flex;
        justify-content: end;
    }

        .mainNav ul li {
            margin: 0 13px;
            position: relative;
            padding: 10px 0 20px 0;
        }

            .mainNav ul li:first-child {
                margin-left: 0;
            }

            .mainNav ul li:last-child {
                margin-right: 0;
            }

            .mainNav ul li::after {
                content: '';
                width: 100%;
                height: 5px;
                background-color: #ffffff;
                margin-top: 3px;
                display: block;
            }

            .mainNav ul li a {
                font-size: 1.125rem;
                font-weight: bold;
                color: #303030;
            }

            .mainNav ul li:hover::after, .mainNav ul li:active::after {
                background-color: #5D8E9F;
            }

            .mainNav ul li ul {
                display: none;
                position: absolute;
                top: 45px;
                left: 50%;
                transform: translateX(-50%);
                padding: 10px 0;
                background-color: #ffffff;
                border-radius: 5px;
                box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
                box-sizing: border-box;
                transition: all 1s ease-in-out;
                z-index: 100;
            }

                .mainNav ul li ul li {
                    min-width: 145px;
                    padding: 8px 15px;
                    margin: 0;
                    background-color: #ffffff;
                }

                    .mainNav ul li ul li:hover, .mainNav ul li ul li:active {
                        background-color: #D1E6EB;
                    }

                    .mainNav ul li ul li::after {
                        display: none;
                    }

            .mainNav ul li:hover ul {
                transition: all 1s ease-in-out;
                display: block;
            }

/* TitleBar */
.TitleBar {
    width: 100%;
    height: 50px;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .TitleBar .webTitle {
        box-sizing: border-box;
    }

        .TitleBar .webTitle .Logo {
            display: inline-block;
            margin-right: 1rem;
            width: 50px;
            height: 50px;
            vertical-align: top;
        }

    .TitleBar nav {
        width: 100%;
    }


/*-----------------Menu-----------------*/
/*** Web menu ***/
nav.mainMenu {
    background: #D1E6EB;
}

    nav.mainMenu .wrapper {
        padding: 0 20px;
        box-sizing: border-box;
    }

#webMenu .Menu {
    margin: 0 auto;
    display: block;
}

    #webMenu .Menu li:hover,
    #webMenu .Menu li a:hover
    #webMenu .Menu li:focus,
    #webMenu .Menu li a:focus {
        font-weight: bold;
        cursor: pointer;
        box-sizing: border-box;
    }

    #webMenu .Menu .frtMenu {
        padding: 24px 0;
    }

        #webMenu .Menu .frtMenu li {
            color: #303030;
            font-size: 1.25rem;
            font-weight: bold;
            text-align: left;
            display: inline-block;
            position: relative;
            transition: all .3s ease-in;
        }

            #webMenu .Menu .frtMenu li a, #webMenu .Menu .frtMenu li span {
                color: #303030;
                padding: 0 26px;
            }

                #webMenu .Menu .frtMenu li a.dropdown::after {
                    content: '\f0d7';
                    font-family: 'Font Awesome 6 Free';
                    font-size: 1.125rem;
                    padding-left: 5px;
                }

            #webMenu .Menu .frtMenu li:hover a {
                color: #1C768B;
                background-color: transparent;
                text-shadow: 0 0 6px rgba(0, 0, 0, .4);
            }


    /* 第二層            */
    #webMenu .Menu .secMenu, #webMenu .Menu .trdMenu {
        width: 16rem;
        position: absolute;
        top: calc(100% + 1rem);
        left: calc(50% - 6rem);
        background-color: #ffffff;
        border-radius: 5px;
        border: 1px solid #ECF1F0;
        box-shadow: 0 2px 8px rgba(75, 75, 75, 0.2);
        padding: .55rem 1rem;
        -webkit-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
        z-index: 2;
        opacity: 0;
        visibility: hidden;
    }

        #webMenu .Menu .secMenu li {
            text-shadow: none;
            margin: 0;
            vertical-align: middle;
            box-sizing: border-box;
        }

        #webMenu .Menu .secMenu li {
            color: #1C768B;
            display: block;
            box-sizing: border-box;
            -webkit-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease;
        }

            #webMenu .Menu .secMenu li a {
                color: #1C768B;
                display: block;
                width: 100%;
                padding: 1rem;
                -webkit-font-smoothing: antialiased;
                text-shadow: none;
                border: 3px solid #00000000;
                box-sizing: border-box;
            }

                #webMenu .Menu .secMenu li a.dropdown::after {
                    content: '\f0da';
                    font-family: 'Font Awesome 6 Free';
                    color: #1C768B;
                }

    #webMenu .Menu .frtMenu li:hover .secMenu {
        opacity: 1;
        visibility: visible;
    }

        #webMenu .Menu .frtMenu li:hover .secMenu li a {
            text-shadow: none;
        }

    #webMenu .Menu .secMenu li a:hover, #webMenu .Menu .secMenu li a:focus {
        background-color: #E0F1EE;
        border: 3px solid #1C768B;
        font-weight: bold;
        color: #1C768B;
        transition: all .3s ease-in;
        border-radius: 5px;
        text-shadow: none;
    }


    /* 第三層 */
    #webMenu .Menu .trdMenu {
        top: .5rem;
        left: calc(100% + 1rem);
    }

    #webMenu .Menu .secMenu li:hover .trdMenu {
        opacity: 1;
        visibility: visible;
    }


/*** mobile menu ***/

.toggleMenu {
    position: absolute;
    top: -9999px;
    left: -9999px;
}

.toggleMenuLabel {
    display: none;
    align-items: center;
    cursor: pointer;
    user-select: none;
    margin-right: 1rem;
}

    .toggleMenuLabel i.fas {
        font-size: 2.125rem;
        color: #5D8E9F;
    }

.toggleMenu:focus ~ label i.fas {
    color: #F8D90F;
}

.MenuArea {
    position: fixed;
    left: -999px;
    top: 0px;
    z-index: 100;

    display: none;
}

.closeMenuLabel {
    left: -100%;
    /*top: 20px;*/
    width: 2.75rem;
    height: 2.75rem;
    display: inline-block;
    text-align: center;
    background-color: #fff;
}

    .closeMenuLabel i.fas {
        font-size: 2.5rem;
        line-height: 2.75rem;
        color: #FF7373;
    }

.MenuArea-Overlay {
    background: rgba(255,255,255, 0.55);
}

.toggleMenu:checked ~ .MenuArea {
    left: 0px;
}

    .toggleMenu:checked ~ .MenuArea #mobileMenu {
        position: fixed;
        left: 0;
        z-index: 100;
        -webkit-transition: all .35s ease-out;
        -moz-transition: all .35s ease-out;
        -o-transition: all .35s ease-out;
        transition: all .35s ease-out;
    }

    .toggleMenu:checked ~ .MenuArea .closeMenuLabel {
        position: fixed;
        left: 300px;
        z-index: 10000;
        -webkit-transition: all .35s ease-out;
        -moz-transition: all .35s ease-out;
        -o-transition: all .35s ease-out;
        transition: all .35s ease-out;
    }

    .toggleMenu:checked ~ .MenuArea .MenuArea-Overlay {
        background: rgba(0, 0, 0, 0.55);
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        height: 100vh;
        z-index: 99;
        overflow: hidden;
        -webkit-transition: all .5s ease-out;
        -moz-transition: all .5s ease-out;
        -o-transition: all .5s ease-out;
        transition: all .5s ease-out;
    }

#mobileMenu {
    position: fixed;
    left: -100%;
    z-index: 100;
    width: calc(300px - 40px);
    /*min-height: 150px;*/
    height: calc(100% - 40px);
    padding: 20px;
    transition: all .35s ease-out;
    overflow-y: auto;
}

    #mobileMenu .Menu {
        padding-left: 1.5rem;
    }

        #mobileMenu .Menu a {
            color: #5D8E9F;
        }

        #mobileMenu .Menu .frtMenu > li {
            border-bottom: 1px dotted #1C768B;
            padding-bottom: 1rem;
            margin-bottom: 1rem;
        }

        #mobileMenu .Menu .frtMenu li a {
            line-height: 3rem;
            font-size: 1.8rem;
            font-weight: bold;
        }

        #mobileMenu .Menu .secMenu li a {
            font-size: 1.4rem;
            margin-left: 1rem;
        }

        #mobileMenu .Menu .trdMenu li a {
            font-size: 1.1rem;
            font-weight: normal;
            margin-left: 2rem;
        }

    #mobileMenu .SearchArea {
        display: block;
        margin: 0;
    }

        #mobileMenu .SearchArea input[type="search"] {
            width: 170px;
        }

        #mobileMenu .SearchArea button {
            border: 2px solid #5D8E9F;
            background-color: #5D8E9F;
        }

    #mobileMenu .searchWord {
        display: block;
        padding: 1rem 0;
    }

    #mobileMenu .SearchArea .searchWord span {
        margin: 0;
    }

    #mobileMenu .SearchArea .searchWord ul {
        display: flex;
        margin-top: 0.6rem;
    }

        #mobileMenu .SearchArea .searchWord ul li {
            margin-right: 0.5rem;
        }

    #mobileMenu .OtherLinks {
        border-bottom: 1px dotted #5D8E9F;
        margin-bottom: 1rem;
    }

        #mobileMenu .OtherLinks li {
            padding-bottom: 1rem;
        }

            #mobileMenu .OtherLinks li a {
                font-size: 1.1rem;
                font-weight: bold;
            }

    #mobileMenu .Menu .firMenu > li {
        border-bottom: 1px dotted #5D8E9F;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }

    #mobileMenu .Menu .firMenu li a {
        line-height: 3rem;
        font-size: 1.8rem;
        font-weight: bold;
    }

    #mobileMenu .Menu .secMenu li a {
        font-size: 1.4rem;
        margin-left: 1rem;
    }

    #mobileMenu .Menu .trdMenu li a {
        font-size: 1.1rem;
        font-weight: normal;
        margin-left: 2rem;
    }

/*-----------------topNavArea-----------------*/
.topNavArea {
    display: flex;
    align-items: center;
    justify-content: right;
}

    .topNavArea .accesskey {
        position: static;
        display: inline-block;
        vertical-align: middle;
        margin-right: .5rem;
    }

    .topNavArea ul {
        display: flex;
        align-items: center;
    }

        .topNavArea ul li {
            margin: 0 0.3rem;
            font-size: 1rem;
        }

            .topNavArea ul li a {
                color: #000;
            }

                .topNavArea ul li a:hover {
                    color: #1C768B;
                }


.SearchArea {
    margin-left: 5px;
    display: flex;
    align-items: center;
}

    .SearchArea .HideLabel {
        display: none;
    }

    .SearchArea input[type="search"] {
        position: relative;
        line-height: 2rem;
        font-size: .875rem;
        border: 2px solid #A2C2CD;
        border-radius: 50px;
        min-width: 150px;
        height: 35px;
        background-color: #fff;
        color: #000;
        padding-left: 10px;
    }

        .SearchArea input[type="search"]:focus {
            background-color: #FFF;
            border: 2px solid #5D8E9F;
            color: #303030;
        }

        .SearchArea input[type="search"]:hover {
            background-color: #FFF;
            color: #303030;
        }

        .SearchArea input[type="search"]::-webkit-input-placeholder {
            color: #999;
            font-size: .875rem;
        }

        .SearchArea input[type="search"]::-moz-placeholder {
            color: #999;
        }

        .SearchArea input[type="search"]:-ms-input-placeholder {
            color: #999;
        }

        .SearchArea input[type="search"]:-moz-placeholder {
            color: #999;
        }

    .SearchArea button {
        border: 2px solid #A2C2CD;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        vertical-align: bottom;
        background-color: #A2C2CD;
        margin: 0;
        margin-left: 5px;
        padding: 0;
        line-height: 0;
        min-height: 0;
    }

        .SearchArea button:hover, .SearchArea button:focus {
            border: 2px solid #5D8E9F;
            background-color: #5D8E9F;
            box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
        }

        .SearchArea button:before {
            display: inline-block;
            font-style: normal;
            font-variant: normal;
            text-rendering: auto;
            -webkit-font-smoothing: antialiased;
            font-family: "Font Awesome 6 Free";
            content: "\f002";
            font-weight: 900;
            color: #ffffff;
            font-size: 1rem;
        }

    .SearchArea .searchWord, .SearchArea .searchWord a {
        color: #000;
        font-size: 1rem;
    }

    .SearchArea .searchWord {
        display: flex;
        align-items: center;
    }

        .SearchArea .searchWord span {
            font-size: 1rem;
            margin-left: 15px;
        }


/*-----------------loignArea-----------------*/

.loignArea {
    padding-left: 0.5rem;
}

    .loignArea::before {
        content: '|';
        vertical-align: top;
        margin-right: 0.3rem;
        color: #1C768B;
    }

    .loignArea .LoginBtn {
        display: block;
        text-align: center;
        width: 3rem;
        padding: 0.5rem;
        color: #fff;
        background: #1C768B;
        border-radius: 50px;
        opacity: 0.9;
        font-weight: bold;
    }

        .loignArea .LoginBtn:hover {
            color: #fff;
            opacity: 1;
        }


@media only screen and (max-width: 76.1875em) {
    .topNavArea {
        float: right;
    }
}

@media only screen and (min-width: 48em) and (max-width:61em) {
    .topNavArea {
        display: block;
    }
}

@media only screen and (max-width:61em) {
    .toggleMenuLabel {
        margin-left: 32px;
    }
}

@media only screen and (max-width: 47.9735em) {
    .toggleMenuLabel {
        margin-left: 8px;
        vertical-align: text-bottom;
    }

        .toggleMenuLabel i.fas {
            font-size: 1.5rem;
        }

    .topNavArea {
        display: none;
    }
}

@media only screen and (max-width: 29.9375em) {
    .toggleMenuLabel {
        margin-right: 8px;
    }
}

/*-----------------Content-----------------*/
#Content {
    min-height: calc(100vh - 418.59px);
    margin-top: 140px;
}

.BreadcrumbArea {
}

    .BreadcrumbArea span:nth-child(1):before {
        content: "\f015";
        color: #5D8E9F;
        font-family: 'Font Awesome 6 Free';
        font-size: .85rem;
        font-weight: 900;
        margin-right: 0.3rem;
        line-height: .85rem;
    }

    .BreadcrumbArea span {
        color: #5D8E9F;
        font-size: 1rem;
        line-height: 1.25rem;
        position: relative;
        font-weight: bold;
    }

        .BreadcrumbArea span::after {
            content: '/';
            font-size: 1rem;
            color: #303030;
            margin: 0 5px;
        }

        .BreadcrumbArea span:last-child::after {
            display: none;
        }

        .BreadcrumbArea span.current {
            color: #303030;
        }

        .BreadcrumbArea span:nth-last-child(1) {
            border-right: none;
        }

        .BreadcrumbArea span a {
            color: #5D8E9F;
        }

            .BreadcrumbArea span a:hover, .BreadcrumbArea span a:hover i {
                color: #E99177;
                font-weight: bold;
            }

            .BreadcrumbArea span a i {
                color: #C0B7B2;
            }

@media only screen and (max-width: 61em) { /*767↓*/

}

#Main {
}

.note_moenv {
    margin-bottom: 60px;
    margin-left: 1rem;
}

    .note_moenv span {
        font-size: 1rem;
        color: #9FC280;
        padding: 5px 10px;
        border: 1px solid #9FC280;
        background-color: #f6ffed;
    }


@media only screen and (min-width: 48em) {
}
/*#endregion */

/*#region article for text content style */
/* .txtCont {
}

    .txtCont ul,
    .txtCont ol {
        padding-left: 35px;
        padding-bottom: 30px;
    }

        .txtCont ul li,
        .txtCont ol li {
            margin-bottom: 20px;
            line-height: 1.75rem;
        }

            .txtCont ul li:last-child,
            .txtCont ol li:last-child {
                margin-bottom: 0;
            }

    .txtCont span.imp-orange {
        color: #FE5900;
        font-weight: bold;
    }

    .txtCont .itemList li::before {
        content: '▪';
        margin-right: 8px;
        color: #36CBDC;
    }

    .txtCont ol.itemList {
        counter-reset: num;
    }

        .txtCont ol.itemList li::before {
            counter-increment: num;
            content: counter(num) '.';
            font-weight: bold;
            margin-right: 0;
        }

.deepBg .txtCont ul li,
.deepBg .txtCont ol li {
    color: #fff;
}

.deepBg .txtCont span.imp-orange {
    color: #F9BF3B;
}

.deepBg .txtCont .itemList li::before {
    color: #00E0E0;
}

@media screen and (max-width: 47.9735em) {
    .txtCont ul,
    .txtCont ol {
        padding-left: 20px;
    }
} */
/*#endregion */

/*-----------------Footer-----------------*/

#Footer {
    width: 100%;
    height: auto;
    /*background-color: #1C768B;*/
    /*padding: 20px 0;*/
    box-sizing: border-box;
}

    #Footer .declare {
        display: flex;
        align-items: end;
        justify-content: space-between;
    }


        #Footer .declare ul {
            display: flex;
            align-items: center;
            justify-content: left;
        }

            #Footer .declare ul li {
                vertical-align: middle;
            }

        #Footer .declare .leftArea ul li::after {
            content: '|';
            color: #ffffff;
            margin: 0 15px;
        }

        #Footer .declare .leftArea ul li:last-child::after {
            content: '';
            display: none;
        }

        #Footer .declare ul li span {
            padding: 0 15px;
        }

        #Footer .declare .leftArea ul li a {
            color: #ffffff;
            font-size: 1rem;
            line-height: 1.5rem;
            font-weight: bold;
            white-space: nowrap;
        }

            #Footer .declare .leftArea ul li a:hover, #Footer .declare .leftArea ul li a:focus {
                text-decoration: underline;
            }

        #Footer .declare .leftArea address {
            padding-top: 20px;
        }

        /*#Footer span, #Footer p {
        color: #ffffff;
        font-size: 1rem;*/
        /*line-height: 21px;*/
        /*}*/

        #Footer .declare .rightArea {
            text-align: right;
        }

            #Footer .declare .rightArea span {
                padding-left: 5px;
            }

            #Footer .declare .rightArea ul {
                padding-top: 10px;
            }

                #Footer .declare .rightArea ul li {
                    width: fit-content;
                    height: 40px;
                }

                    #Footer .declare .rightArea ul li a {
                        background-repeat: no-repeat;
                        background-size: contain;
                    }

                        #Footer .declare .rightArea ul li a.logo_site {
                            width: 40px;
                            height: 40px;
                            display: inline-block;
                            margin-right: 20px;
                            background-repeat: no-repeat;
                        }

                        #Footer .declare .rightArea ul li a.logo_fb {
                            background-image: url(../../../wwwroot/images/master/fb_logo.svg);
                        }

                        #Footer .declare .rightArea ul li a.logo_line {
                            background-image: url(../../../wwwroot/images/master/line_logo.png);
                        }

                        #Footer .declare .rightArea ul li a.logo_ig {
                            background-image: url(../../../wwwroot/images/master/ig_logo.png);
                        }

                        #Footer .declare .rightArea ul li a.logo_accessibility {
                            width: 88px;
                            height: 31px;
                            display: inline-block;
                            background-image: url(../../../wwwroot/images/master/Accessibility_A.png);
                        }

@media only screen and (max-width:61em) { /*976↓*/
    #Footer .declare {
        display: block;
        margin-left: 20px;
        margin-right: 20px;
    }
}

/* Footer */

.ft_info, .ft_link {
    width: 100%;
}

.ft_info {
    background-color: #A2C2CD;
    padding: 40px 0;
}

    .ft_info .ft_moenvLogo {
        margin-bottom: 15px;
    }

        .ft_info .ft_moenvLogo a {
            width: 140px;
            display: block;
        }

    .ft_info p {
        font-size: 1.125rem;
        color: #303030;
        padding-bottom: 8px;
    }

        .ft_info p:last-child {
            padding-bottom: 15px;
        }

.ft_social ul {
    display: flex;
}

    .ft_social ul li a.link {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ft_social ul li a.link_social {
        width: 40px;
        height: 40px;
        background-color: #5D8E9F;
        border-radius: 50%;
        border: 2px solid #5D8E9F;
        margin: 0 5px;
        box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
        box-sizing: border-box;
    }

    .ft_social ul li:first-child a.link_social {
        margin-left: 0;
    }

    .ft_social ul li a.link_social:hover, .ft_social ul li a.link_social:active {
        background-color: #ffffff;
    }

        .ft_social ul li a.link_social:hover svg path, .ft_social ul li a.link_social:active svg path {
            fill: #5D8E9F;
        }

.ft_link {
    background-color: #5D8E9F;
    padding: 20px 0;
}

    .ft_link .ft_bottom {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .ft_link .ft_update {
        display: flex;
    }

        .ft_link .ft_update p {
            color: #ffffff;
            margin-right: 30px;
        }

    .ft_link ul {
        display: flex;
    }

        .ft_link ul li a {
            font-size: 1.125rem;
            line-height: 1.75rem;
            color: #ffffff;
        }

            .ft_link ul li a:hover, .ft_link ul li a:active {
                color: #F1EBCB;
            }

            .ft_link ul li a::after {
                content: '|';
                color: #ffffff;
                font-size: 1.125rem;
                margin: 0 12px;
            }

        .ft_link ul li:last-child a::after {
            display: none;
        }

/*===============================================================================
                        Dialog Setting
=================================================================================*/
.ui-dialog .ui-dialog-titlebar {
    padding: 0.25rem 1rem;
}

.ui-draggable .ui-dialog-titlebar span {
    color: #A48781;
}

.ui-dialog .ui-dialog-content input {
    margin: 5px auto;
}

.ui-dialog .ui-dialog-titlebar button {
    min-height: auto;
}

.ui-dialog .ui-dialog-content p span {
    color: #DA5E3F;
}


/*===============================================================================
                                無障礙 Accessibility
=================================================================================*/

/*#region Accessibility */
.TopAccessibility a {
    position: absolute;
    top: 0px;
    left: -999px;
    width: 0px;
    height: 0px;
    color: #FFF;
}

    .TopAccessibility a:hover {
        color: #eac400;
    }

    .TopAccessibility a:focus {
        position: absolute;
        top: 10px;
        left: 10px;
        width: auto;
        height: auto;
        padding: 5px;
        background-color: rgba(0,0,0,0.8);
    }

.accesskey {
    position: absolute;
    left: 5px;
    z-index: 0;
}

    .accesskey a {
        color: #1C768B
    }

        .accesskey a:hover {
            text-decoration: none;
        }

        .accesskey a:focus {
            outline: 2px dotted #F8D90F;
        }

footer .accesskey a {
    color: #fff;
}

@media only screen and (max-width: 47.9735em) {
    .accesskey {
        display: none;
    }
}
/*#endregion */

/*-----------------No Script-----------------*/
/*#region No Script */
.TopNotice {
    display: none;
    padding: 0;
}

html.no-js .TopNotice {
    display: block;
    padding: 10px;
    font-weight: bold;
    line-height: 1.5rem;
    color: #FFF;
    background-color: #3a3a3a;
}
/*#endregion */

/*----------------- RWD -----------------*/
@media only screen and (min-width: 76.25em) and (max-width: 86.1875em) { /*1220~1379*/
    h1 span {
        font-size: 1.75rem; /*28px*/
    }

    .subNav .navRight ul li a {
        margin: 0 6px;
    }
}

@media only screen and (min-width: 61.0525em) and (max-width: 76.1875em) { /*977~1219*/
    h1 {
        width: 34%;
    }

        h1 span {
            font-size: 1.5rem; /*24px*/
        }

    .subNav .navRight {
        width: calc(66% - 20px);
    }

        .subNav .navRight ul {
            width: 35%;
        }

            .subNav .navRight ul li a {
                margin: 0 6px;
                line-height: 1.5rem;
            }

        .subNav .navRight .SearchArea {
            width: 65%;
        }

            .subNav .navRight .SearchArea span {
                width: 18%;
            }

            .subNav .navRight .SearchArea ul {
                width: 35%;
            }

                .subNav .navRight .SearchArea span, .subNav .navRight .SearchArea ul li a {
                    margin-right: 6px;
                }

    .SearchArea input[type="search"] {
        min-width: 0;
        width: 140px;
    }
}

@media only screen and (min-width: 48em) and (max-width:61em) { /*768~976*/
    header {
        box-shadow: 0 4px 4px rgba(0, 0, 0, .2);
    }

    .toggleMenuLabel {
        display: flex;
    }

    .MenuArea {
        display: block;
    }

    h1 {
        width: 100%;
    }

        h1 a {
            width: 3rem;
            height: 3rem;
        }

        h1 span {
            font-size: 1.5rem; /*24px*/
        }

    .subNav .navRight {
        display: none;
    }

    .mainNav {
        display: none;
    }

    #Content {
        margin-top: 82px;
    }
}

@media only screen and (max-width: 47.9735em) { /*767↓*/
    header {
        box-shadow: 0 4px 4px rgba(0, 0, 0, .2);
    }

    .toggleMenuLabel {
        display: flex;
    }

    .MenuArea {
        display: block;
    }

    h1 {
        width: 100%;
    }

        h1 a {
            width: 3rem;
            height: 3rem;
        }

        h1 span {
            font-size: 1.375rem; /*22px*/
        }

    .subNav .navRight {
        display: none;
    }

    .mainNav {
        display: none;
    }

    .ft_info {
        padding: 40px 20px 40px 20px;
    }

        .ft_info p, .ft_link p, .ft_link ul li a {
            font-size: 1rem;
        }

    .ft_link {
        padding: 20px;
    }

        .ft_link .ft_bottom {
            display: block;
        }

        .ft_link .ft_update {
            padding-bottom: 5px;
        }

        .ft_link ul {
            flex-wrap: wrap;
        }

    #Content {
        margin-top: 82px;
    }
}

/*-----------------右側按鈕 share、gotop-----------------*/

.sideLink {
    position: fixed;
    z-index: 400;
    bottom: 35px;
    right: 10px;
}

    .sideLink .link {
        width: 50px;
        height: 50px;
        border-radius: 50px;
        display: inline-block;
        box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
        margin: 5px 0;
    }

        .sideLink .link.link_shareBar, .sideLink .link.link_gotop {
            background-color: #DB7456;
            border: 2px solid #F5EDEA;
        }

            .sideLink .link.link_shareBar p, .sideLink .link.link_gotop p {
                color: #F5EDEA;
                font-size: .625rem;
                font-weight: bold;
                line-height: .1rem;
                text-align: center;
            }

        .sideLink .link.link_orange p::before {
            content: '';
            font-family: 'Font Awesome 6 Free';
            font-weight: bold;
            font-size: 1.25rem;
            line-height: 2.25rem;
            text-align: center;
            display: block;
        }

        .sideLink .link.link_shareBar p::before {
            content: '\f1e0';
        }

        .sideLink .link.link_gotop p::before {
            content: '\f062';
        }

        .sideLink .link.link_orange:hover, .sideLink .link.link_orange:active {
            background-color: #ffffff;
            border: 2px solid #DB7456;
        }

            .sideLink .link.link_orange:hover p, .sideLink .link.link_orange:active p {
                color: #DB7456;
            }

                .sideLink .link.link_orange:hover p::before, .sideLink .link.link_orange:active p::before {
                    color: #DB7456;
                }

        .sideLink .link.link_share {
            background-color: #73A04B;
            border: 2px solid #73A04B;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .sideLink .link.link_share svg {
                width: 30px;
            }

            .sideLink .link.link_share:hover, .sideLink .link.link_share:active {
                background-color: #ffffff;
            }

                .sideLink .link.link_share:hover svg path, .sideLink .link.link_share:active svg path {
                    fill: #73A04B;
                }
