@charset "utf-8";




/* CSS Document */

@import 'reset.css';
@import url("https://fonts.googleapis.com/css?family=Roboto");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap');



/* -------------------------------- 

global style

-------------------------------- */

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: #f6f6f6;
    font-family: "Noto Sans TC", "Microsoft JhengHei",  "微軟正黑體", "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

a {
    color: #1467A7;
    text-decoration: none;
}

.clear {
    clear: both
}

a,
a:active,
a:visited,
a:hover,
li a:visited {
    text-decoration: none;
}



.img-responsive {
    width: 100%;
}


.red {
    color: #d30c18;
}

.small {
    font-size: 1.2rem;
}

a.btn {
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    border: 3px solid #fff;
    border-radius: 40px;
    color: #fff;
    display: block;
    padding: 8px 20px;
    position: relative;
    text-align: center;
    max-width: 150px;
    background-color: #2f6bd1;
    margin: 20px auto;
    letter-spacing: 2px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, .2);
}

a.btn:hover {
    background-color: #275bb4;
}



/* -------------------------------- 

MENU_選單

-------------------------------- */

.cd-auto-hide-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background-color: #ffffff;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cd-auto-hide-header::after {
    clear: both;
    content: "";
    display: block;
}

@media screen and (min-width: 1024px) {
    .cd-auto-hide-header {
        height: 65px;
    }
}

@media screen and (max-width: 590px) {
    .cd-auto-hide-header {
        height: 60px;
    }
}

.cd-auto-hide-header .navber_logo_ttl,
.cd-auto-hide-header .nav-trigger {
    position: absolute;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.cd-auto-hide-header ul.navber_logo_ttl {
    display: flex;
    align-items: center;
}

.cd-auto-hide-header ul.navber_logo_ttl .brands_logo a {
    display: block;
    width: 95px;
    height: 60px;
    background: url('../img/brands-logo.svg') no-repeat left center;
    font-size: 0;
    -webkit-background-size: cover;
    background-size: cover;
}


.cd-auto-hide-header ul.navber_logo_ttl .pa_logo a {
    display: block;
    width: 80px;
    height: 60px;
    background: url('../img/pa-logo.svg') no-repeat left center;
    font-size: 0;
    -webkit-background-size: cover;
    background-size: cover;
}


@media (max-width: 590px) {
    .cd-auto-hide-header ul.navber_logo_ttl .cross {
        display: block;
        width: 10px;
        height: 10px;
    }
    .cd-auto-hide-header ul.navber_logo_ttl .brands_logo a {
        display: block;
        width: 87px;
        height: 55px;
    }

    .cd-auto-hide-header ul.navber_logo_ttl .pa_logo a {
        display: block;
        width: 73px;
        height: 55px;
    }
    .cd-auto-hide-header ul.navber_logo_ttl .slogan {
        display: block;
        width: 110px;
        height: 14px;
    }
}


.cd-auto-hide-header .nav-trigger {
    /* vertically align its content */
    display: table;
    height: 100%;
    padding: 0 1.5em;
    right: 0;
    background-color: #008F43;
}


.cd-auto-hide-header .nav-trigger span {
    /* vertically align inside parent element */
    display: table-cell;
    vertical-align: middle;
}

.cd-auto-hide-header .nav-trigger em,
.cd-auto-hide-header .nav-trigger em::after,
.cd-auto-hide-header .nav-trigger em::before {
    /* this is the menu icon */
    display: block;
    position: relative;
    height: 3px;
    width: 24px;
    background-color: #ffffff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.cd-auto-hide-header .nav-trigger em {
    /* this is the menu central line */
    margin: 8px auto;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
}

.cd-auto-hide-header .nav-trigger em::before,
.cd-auto-hide-header .nav-trigger em::after {
    position: absolute;
    content: '';
    left: 0;
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
}

.cd-auto-hide-header .nav-trigger em::before {
    /* this is the menu icon top line */
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
}

.cd-auto-hide-header .nav-trigger em::after {
    /* this is the menu icon bottom line */
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
}

@media screen and (min-width: 1024px) {
    .cd-auto-hide-header .nav-trigger {
        display: none;
    }
}

.cd-auto-hide-header.nav-open .nav-trigger em {
    /* transform menu icon into a 'X' icon */
    background-color: rgba(255, 255, 255, 0);
}

.cd-auto-hide-header.nav-open .nav-trigger em::before {
    /* rotate top line */
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.cd-auto-hide-header.nav-open .nav-trigger em::after {
    /* rotate bottom line */
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cd-primary-nav {
    display: inline-block;
    float: right;
    height: 100%;
    padding-right: 1%;
}

.cd-primary-nav>ul {
    position: absolute;
    z-index: 2;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    display: none;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
}

.cd-primary-nav>ul a {
    display: block;
    height: 65px;
    line-height: 65px;
    color: #333;
    font-size: 16px;
    position: relative;
    text-align: center;
    font-weight: 500;
}

.cd-primary-nav>ul li.nav-btn a{
    display: inline;
    height: 34px;
    margin: 0 5px;
    border-radius: 40px;
    color: #ffffff;
    background-color: #69a710;
    padding: 5px 20px;
    text-align: center;
}

.cd-primary-nav>ul li.social_box {
    background: none;
}

.cd-primary-nav>ul li.social_box a:before {
    display: none;
}

.cd-primary-nav>ul li.social_box a:hover:before {
    display: none;
}

.cd-primary-nav>ul li.social_box .social {
    height: 65px;
    display: flex;
    align-items: center;
}

.cd-primary-nav>ul li.social_box .social a.fb {
    display: block;
    width: 30px;
    height: 30px;
    font-size: 0;
    border-radius: 50%;
    background: url('../img/fb-icon.svg');
    -webkit-background-size: cover;
    background-size: cover;
    background-color: #007e44;
    margin: 0 5px;
}

.cd-primary-nav>ul li.social_box .social a.line {
    display: block;
    width: 30px;
    height: 30px;
    font-size: 0;
    border-radius: 50%;
    background: url('../img/line-icon.svg');
    -webkit-background-size: cover;
    background-size: cover;
    background-color: #007e44;
    margin: 0 5px;
}

.cd-primary-nav>ul a:hover,
.cd-primary-nav>ul a.active {
    color: #007e44;
}

@media screen and (max-width: 980px) {
    .cd-primary-nav>ul li.social_box .social {
        justify-content: center;
    }
    .cd-primary-nav>ul li:first-child {
        border-top: 1px solid #f6f6f6;
    }
    .cd-primary-nav>ul li:nth-child(even) {
        background-color: #f6f6f6;
    }

     .cd-primary-nav>ul li.nav-btn{
        display: flex;
        justify-content: center;
        align-items: center;
        height: 65px;
     }

    .cd-primary-nav>ul li.nav-btn a {
        /* display: block; */
       /*  width: 100%;
        margin: 0 auto; */
        line-height: 34px;
        padding: 0;
        width: 300px;

    }
}

@media screen and (max-width: 590px) {

    .cd-auto-hide-header .nav-trigger {
        /* vertically align its content */
        display: table;
        height: 100%;
        padding: 0 1em;
        right: 0;
        background-color: #007e44;
    }
    .cd-primary-nav>ul {
        top: 60px;
    }
}


@media screen and (min-width: 1024px) {
    .cd-primary-nav {
        /* vertically align its content */
        display: table;
    }
    .cd-primary-nav>ul {
        /* vertically align inside parent element */
        display: table-cell;
        /* vertical-align: middle; */
        /* reset mobile style */
        position: relative;
        width: auto;
        height: 65px;
        line-height: 65px;
        top: 0;
        padding: 0;
        background-color: transparent;
        box-shadow: none;
    }
    .cd-primary-nav>ul::after {
        clear: both;
        content: "";
        display: block;
    }
    .cd-primary-nav>ul li {
        display: inline-block;
        float: left;
        height: 65px;
        font-size: 15px;
        margin-right: 0.5em;
        text-align: center;
        text-decoration: none;
    }
    .cd-primary-nav>ul li:last-of-type {
        margin-right: 0;
    }
    .cd-primary-nav>ul a {
        /* reset mobile style */
        height: auto;
        line-height: 65px;
        font-weight: 500;
        padding: 0;
        border: none;
        position: relative;
        margin: 0 15px;
    }

    .cd-primary-nav>ul a:before {
        content: ' ';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 0;
        background: #008F43;
        transition: height 0.3s;
    }

    .cd-primary-nav>ul li.nav-btn a:hover:before {
        height: 0px;
    }

    .cd-primary-nav>ul li.nav-btn a:before {
        content: ' ';
        width: 0;
        height: 0;
    }
    .cd-primary-nav>ul a:hover:before {
        height: 3px;
        transition: height 0.3s;
    }

    .cd-primary-nav>ul a:last-child:before:hover {
        width: 100%;
    }

    .cd-primary-nav>ul li:last-child a:after {
        display: none;
    }
}

.nav-open .cd-primary-nav ul,
.cd-primary-nav ul:target {
    display: block;
}

@media screen and (min-width: 1200px) {
    .nav-open .cd-primary-nav ul,
    .cd-primary-nav ul:target {
        display: table-cell;
    }
}

#ARTI {
    padding-top: 30px;
    height: auto;
    margin-bottom: 20px;
    background-image: url('../img/kv_bg.jpg');
    background-position: center top;
    -webkit-background-size: cover;
    background-size: cover;
}

.arti-text-box {
    display: flex;
    margin: 30px 0;
    align-items: center;
}



.arti-head {
    display: flex;
    background-color: #fff;
    margin-top: 65px;
    padding: 10px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

.arti-img {
    flex: 5;
}

.arti-ttl-box {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 5;
}

.arti-ttl-box .arti-sub-ttl {
    font-size: 18px;
    line-height: 22px;
    border-left: 5px solid #008747;
    padding-left: 10px;
    text-align: justify;
    font-weight: bold;
    color: #008747;
    margin-bottom: 25px;
}

.arti-ttl-box .arti-ttl {
    font-size: 30px;
    font-weight: bold;
    line-height: 35px;
    color: #085130;
}

.arti-ttl-box .arti-author {
    font-size: 15px;
    color: #888;
    margin: 10px 0;
}


.arti-content .summary {
    margin: 0 0 20px 0;
    border-bottom: 1px solid #dddddd;
}

.arti-content .summary p {
    font-size: 16px;
    line-height: 28px;
    color: #888;
}

.arti-content p {
    font-size: 16px;
    line-height: 32px;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
}

.arti-content h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 20px;
    color: #008747;
    margin-top: 30px;
}

.arti-content h5 {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 20px;
    margin-top: 30px;
}

.arti-content .article-img {
    padding: 40px 80px;
}

@media (max-width:1430px) {
    .arti-img {
        flex: 6;
    }
    .arti-ttl-box {
        padding: 15px 20px;
    }
    .arti-ttl-box .arti-ttl {
        font-size: 26px;
        font-weight: bold;
        line-height: 30px;
        color: #085130;
    }
}




@media (max-width:1380px) {
    #ARTI {
        height: auto;
    }
}


@media (max-width:1024px) {

    #ARTI {
        padding-top: 65px;
        height: auto;
    }
    .arti-head {
        display: block;
    }
}

.arti-head .social {
    display: flex;
    justify-content: flex-end;
}

.arti-head .social a.fb {
    display: block;
    width: 40px;
    height: 40px;
    font-size: 0;
    border-radius: 50%;
    background: url('../img/fb-icon.svg');
    -webkit-background-size: cover;
    background-size: cover;
    background-color: #375893;
    margin: 0 5px;
}

.arti-head .social a.line {
    display: block;
    width: 40px;
    height: 40px;
    font-size: 0;
    border-radius: 50%;
    background: url('../img/line-icon.svg');
    -webkit-background-size: cover;
    background-size: cover;
    background-color: #31ae36;
    margin: 0 5px;
}


#LINK {
    overflow: hidden;
    min-height: 150px;
}

.link-box-all {
    display: flex;
    align-items: stretch;
    margin-top: 80px;
}

.link-box-all a {
    min-height: 150px;
    flex: 1;
    text-decoration: none;
    background: linear-gradient(-90deg, rgba(0, 126, 68, 1) 0%, rgba(41, 142, 48, 1) 42%, rgba(117, 171, 10, 1) 100%);
    border-bottom: 2px solid #fff;
    position: relative;
}


.link-box-all a:first-child {
    border-right: 2px solid #fff;
}


.link-box-all .link-box-inner {
    padding: 30px;
}

.link-btn {
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: #ffff;
    font-size: 16px;
    font-weight: 500;
}

.link-btn .fas {
    font-size: 24px;
    padding-left: 5px;
}

.link-ttl h3 {
    font-size: 30px;
    line-height: 42px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
}


.link-ttl span {
    display: block;
    font-weight: bold;
    font-size: 22px;
    line-height: 32px;
    color: #b9d4a7;
    letter-spacing: 0px;
}

.link-ttl p {
    display: block;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #fff;
}


@media screen and (max-width: 960px) {
    .arti-content .summary {
        margin: 30px 0 20px 0;
    }
}

@media screen and (max-width: 768px) {

    .link-box-all {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        margin-top: 80px;
    }

    .arti-content .article-img {
        padding: 20px 0px;
    }
}


@media screen and (max-width: 540px) {
    .arti-ttl-box {
        padding: 20px;
    }
    .link-box-all .link-box-inner {
        padding: 20px 20px 50px 20px;
    }

    .link-ttl h3 {
        font-size: 25px;
        line-height: 35px;
    }


    .link-ttl span {
        display: block;
        font-weight: bold;
        font-size: 20px;
        line-height: 28px;
    }

    .link-ttl p {
        font-size: 16px;
        line-height: 24px;
    }

    .arti-content .article-img {
        padding: 20px 0px;
    }
}


.content_inner {
    margin-bottom: 50px;
}



#KV {
    overflow: hidden;
    margin-top: 65px;
    height: 750px;
    background-image: url('../img/kv_bg2021-kv.jpg');
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
}



#KV .kv_inner .container {
    display: flex;
}

#KV .kv_inner .container .kv-left-box{
    flex: 1;
    position: relative;
}
#KV .kv_inner .container .kv-right-box{
    flex: 1;
}

/* #KV .kv_inner .container .kv-left-box a.kv-green-button{
    display: block;
    font-size: 0;
    width: 170px;
    height: 170px;
    background-image: url('../img/kv_green_btn.png');
    -webkit-background-size: cover;
    background-size: cover;
    position: absolute;
    bottom: 10%;
    left: 20%;
        animation: pulse 1s infinite alternate;
    -webkit-animation: pulse 1s infinite alternate;
}
 */

@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}


.kv-right-box{
    padding: 40px 0;
}

.kv-right-box .kv-green-button{
    width: 350px;
    margin: 0 auto;
}
.kv-right-box .kv-green-button .kv-title{
    width: 250px;
    height: 182px;
    background-image: url('../img/kv_slogan2021.png');
    -webkit-background-size: cover;
    background-size: cover; 
    margin: 0 auto;
    margin-left: 70px;
    margin-top: 20px;
}


.kv-right-box .kv-green-button a{
    display: block;
    width: 350px;
    height: 152px;
    background-image: url('../img/kv_green_btn.png');
    -webkit-background-size: cover;
    background-size: cover;
    font-size: 0; 
    margin: 0 auto;
    margin-top: -50px;
    animation: pulse 1s infinite alternate;
    -webkit-animation: pulse 1s infinite alternate;
}

.kv-green-button-m{
    display: none;
}

@media (max-width:1200px) {

#KV {
    height: 720px;
    background-position: center center;
    -webkit-background-size: 2600px;
    background-size: 2600px;
}

.kv-right-box .kv-green-button .kv-title{
    margin-left: 80px;
    margin-top: 30px;
}


.kv-right-box .kv-green-button a{
    width: 300px;
    height: 130px;
    margin-top: -40px;
}


}
@media (max-width:1040px) {

#KV {
    height: 620px;
    background-position: center center;
    -webkit-background-size: 2250px;
    background-size: 2250px;
}

.kv-right-box{
    padding: 25px 0;
}



}

@media (max-width:768px) {

    #KV {
        padding-top: 55%;
        height: auto;
        background-image: url('../img/kv_bg_m.jpg');
        background-position: center top;
        -webkit-background-size: cover;
        background-size: cover;
        margin-top: 55px;
        position: relative;
        padding-bottom: 100px;
    }


    #KV .kv_inner .container {
        display: flex;
        flex-direction: column;
    }

    .kv-right-box .kv-green-button .kv-title{
        display: none;
    }

    .kv-right-box .kv-green-button a{
        display: none;
    }


    .kv-green-button-m{
        display: block;
        width: 350px;
        margin: 0 auto;
    }

}

@media (max-width:590px) {
    #KV {
        padding-top: 57%;
    }

}

@media (max-width:480px) {
    #KV {
        padding-top: 70%;
        min-height: 680px;
    }

    #KV .kv_inner .container {
        display: flex;
        flex-direction: column;
        align-items: center; 
    }
    


}

@media (max-width:375px) {

    #KV {
        padding-top: 70%;
        min-height: 580px;
    }

    .kv-green-button-m{
        display: block;
        width: 300px;
        margin: 0 auto;
    }
}


@media (max-width:320px) {

    #KV {
        padding-top: 82%;
        min-height: 560px;
    }

    .kv-right-box .kv-title{
        width: 300px;
        height: 75px;
        margin-top: -20px;
    }

    .kv-green-button-m{
        display: block;
        width: 260px;
        margin: 0 auto;
    }
}

#PR {
    width: 100%;
    -webkit-background-size: 100% 250px;
    background-size: 100% 250px;
    background-repeat: no-repeat;
    margin-top: -340px;
}


@media (max-width:1950px) {

    #PR {
        margin-top: -320px;
    }
}



@media (max-width:1040px) {

    #PR {
        margin-top: -230px;
    }
}

.pr_top_pic{
    width: 650px;
    margin: 0 auto;
    margin-top: -110px;
}

@media (max-width:960px) {

    #PR {
        margin-top: -220px;
    }

}


@media (max-width:768px) {

    #PR {
        margin-top: -70px;
    }

    .pr_top_pic{
        width: 500px;
        margin: 0 auto;
        margin-top: -110px;
    }

}


@media (max-width:540px) {

    #PR {
        margin-top: -80px;
    }

    .pr_top_pic{
        width: 460px;
        margin: 0 auto;
        margin-top: -100px;
    }
}

@media (max-width:414px) {

    .pr_top_pic{
        width: 380px;
        margin: 0 auto;
        margin-top: -80px;
    }

}


@media (max-width:375px) {

    .pr_top_pic{
        width: 340px;
        margin: 0 auto;
        margin-top: -80px;
    }

}

@media (max-width:320px) {

    .pr_top_pic{
        width: 280px;
        margin: 0 auto;
        margin-top: -80px;
    }

}

#PR .container {
    background-color: #e4007f;
    padding-top: 50px;
}

#PR .content_inner {
    padding: 20px 0;
}

#PR .pr_title_box {
    position: relative;
}

#PR .pr_title_box img {
    position: absolute;
    width: 100px;
    left: 33%;
    top: -60px;
}

#PR .pr_title_box p {
    font-size: 12px;
    font-weight: 300;
    text-align: center;
    color: #fff;
    line-height: 22px;
    margin-top: 5px;
}

#PR .pr_title_box h3 a {
    display: block;
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

#PR .pr_title_box h4 {
    padding: 50px 0 10px 0;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

#PR .pr_title_box h3 span {
    color: #ffd633;
}

#PR .pr_subtitle_box {
    display: block;
    text-align: center;
    background-color: #fff;
    border-radius: 80px;
    width: 280px;
    padding: 15px 10px;
    margin: 0 auto;
    margin-top: 20px;
    font-weight: bold;
    color: #e4007f;
    font-size: 28px;
}

#PR .pr_box .text-box h4 {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #ffd633;
    font-style: italic;
}


#PR .pr_box {
    margin-bottom: 30px;
}


#PR .pr_box .text-box h4 .far {
    font-size: 24px;
    margin-right: 3px;
}

#PR .pr_box .text-box p {
    padding: 20px 40px;
    font-size: 16px;
    line-height: 28px;
    text-align: justify;
    color: #fff;
    min-height: 200px;
    font-weight: 300;
}


#PR .pr_box .text-box .pr_author {
    padding: 0px 50px;
    text-align: right;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}


#PR .pr_box .img-box {
    padding: 15px 70px 25px 70px;
}

@media screen and (max-width: 1400px) {

    #PR .pr_box .img-box {
        padding: 15px 40px 25px 40px;
    }
}

@media screen and (max-width: 768px) {

    #PR .pr_box .img-box {
        padding: 15px 100px 25px 100px;
    }
}

@media screen and (max-width: 590px) {

    #PR .pr_box .img-box {
        padding: 15px 70px 25px 70px;
    }

    #PR .pr_box .text-box p {
        padding: 20px 30px;
    }

}

@media screen and (max-width: 360px) {

    #PR .pr_box .img-box {
        padding: 15px 40px 25px 40px;
    }
}

#STUDENT {
    overflow: hidden;
}

#STUDENT .container {
    margin-top: -130px;
}

#STUDENT .student_box {
    margin-bottom: 20px;
}


#STUDENT .student_box .text-box h4 {
    text-align: center;
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
    color: #00462e;
    padding: 0px 30px 0px 30px;
}

#STUDENT .student_box .text-box p {
    padding: 20px 30px 50px 30px;
    font-size: 16px;
    line-height: 28px;
    text-align: justify;
    color: #333;
}


#STUDENT .student_box .img-box {
    padding: 15px 70px 10px 70px;
}

@media screen and (max-width: 590px) {

    #STUDENT .student_box .text-box p {
        padding: 20px 30px 20px 30px;
    }
}


.head-ttl {
    margin: 80px 0 40px 0;
}

.head-ttl h3 {
    text-align: center;
    font-size: 32px;
    line-height: 42px;
    font-weight: bold;
    color: #7f7a73;
    letter-spacing: 1px;
}


.head-ttl span {
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    line-height: 32px;
    color: #037f42;
    letter-spacing: 0px;
}

.head-ttl p {
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
}

.head-ttl h4 {
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    line-height: 34px;
}

.head-ttl.green {
    padding: 40px 0 80px 0;
    color: #fff;
    background: rgb(0, 126, 68);
    background: linear-gradient(-90deg, rgba(0, 126, 68, 1) 0%, rgba(138, 180, 0, 1) 100%);
}

.head-ttl.green h3,
.head-ttl.green p {
    color: #ffffff;
}

.head-ttl.green span {
    color: #b9d4a7;
}


@media screen and (max-width: 590px) {
.head-ttl {
    margin: 0px 0 40px 0;
}

#STUDENT{
    margin-top: -50px;
}
}


#STATIATICS{
    padding: 40px 0 80px 0;
    background-color: #fee101;
}

#STATIATICS .head-ttl .statistics_subttl {
    display:flex;
    align-items: center;
    justify-content: center;
}

#STATIATICS .head-ttl .statistics_subttl img{
    width: 250px;
}

#STATIATICS .head-ttl .statistics_subttl h5{
    font-weight: bold;
}

#STATIATICS .head-ttl h3{
    color: #1c6e41;
}

#STATIATICS p{
    text-align: center;
    font-size: 13px;
}

@media screen and (max-width: 590px) {

    #STATIATICS{
        margin: 0px 0 80px 0;
    }
}



@media screen and (max-width: 414px) {

    #STATIATICS p br{
        display: none;
    }

    #STATIATICS .head-ttl .statistics_subttl {
        display:flex;
        flex-direction: column;
    }

    #STATIATICS .head-ttl .statistics_subttl img{
        width: 200px;
    }


}

#KNOW {
    overflow: hidden;
    margin-bottom: 80px;
}

#KNOW .graphic-box {
    margin-left: 20px;
    margin-right: 20px;
    margin-top: -100px;
}


#KNOW .graphic-item-box {
    background-color: #fff;
    padding: 8px;
}

#KNOW .video-box {
    background-color: #000;
    margin-top: -100px;
    overflow: hidden;
    position: relative;
}

#KNOW .video-box .fa-play-circle {
    color: #ffd633;
    font-size: 60px;
    position: absolute;
    top: 42%;
    left: 45%;
}

#KNOW .video-ttl {
    padding: 20px 0;
}

#KNOW .video-ttl h3 {
    font-weight: bold;
    font-size: 20px;
    line-height: 28px;
    color: #00432d;
}

#KNOW .video-ttl p {
    font-size: 16px;
    line-height: 28px;
    text-align: justify;
    color: #333333;
    font-weight: 300;
    padding: 10px 0;
}

@media screen and (max-width: 1280px) {

    #PR .pr_title_box img {
        position: absolute;
        left: 33%;
        top: -60px;
    }
}

@media screen and (max-width: 1200px) {

    #PR .pr_title_box img {
        position: absolute;
        left: 29%;
        top: -60px;
    }
}

@media screen and (max-width: 1000px) {

    #PR .pr_title_box img {
        width: 90px;
        position: absolute;
        left: 23%;
        top: -40px;
    }
}

@media screen and (max-width: 960px) {

    #PR .pr_title_box img {
        width: 80px;
        position: absolute;
        left: 25%;
        top: -25px;
    }
}

@media screen and (max-width: 768px) {


    #PR .pr_title_box img {
        width: 90px;
        position: absolute;
        left: 16%;
        top: -40px;
    }

    #KNOW .graphic-box {
        margin-left: 20px;
        margin-right: 20px;
        margin-top: -100px;
    }


    #KNOW .video-box {
        margin-top: 20px;
    }
}

@media screen and (max-width: 590px) {

    #KNOW .video-ttl {
        padding: 20px 15px;
    }
}

@media screen and (max-width: 375px) {

    #PR .pr_title_box h4 {
        padding: 50px 0 10px 0;
        text-align: center;
        font-size: 32px;
    }
    #PR .pr_title_box img {
        width: 70px;
        position: absolute;
        left: 12%;
        top: -15px;
    }
}


@media screen and (max-width: 320px) {
    #PR .pr_title_box img {
        width: 70px;
        position: absolute;
        left: 7%;
        top: -25px;
    }
}

#PREPARE .kol-box {
    display: flex;
    flex-direction: row;
    margin: 0 0 80px 0;
}

#PREPARE .kol-box.img-right {
    display: flex;
    flex-direction: row-reverse;
}

#PREPARE .kol-box .kol-img {
    position: relative;
    flex-basis: 350px;
    background-color: #000;
}

#PREPARE .kol-box .kol-img .kol-sub-ttl {
    display: table;
    padding: 5px 25px;
    font-size: 18px;
    font-weight: bold;
    color: #037f42;
    background-color: #fff;
    border-radius: 40px;
    position: absolute;
    top: 15px;
    left: 15px;
}


#PREPARE .kol-box .kol-text {
    flex: 4;
    background: rgb(0, 139, 73);
    background: linear-gradient(-90deg, rgba(0, 139, 73, 1) 0%, rgba(15, 81, 53, 1) 100%);
    color: #ffffff;
    padding: 50px 40px 30px 40px;
}

#PREPARE .kol-box .kol-video {
    position: relative;
    min-height: 400px;
    flex-basis: 620px;
    background-color: #000;
}

#PREPARE .kol-box.video-box-green .kol-text p.video-text{
    text-align: justify;
    display:block!important;
    overflow: inherit!important;
}

#PREPARE .kol-box .kol-video-m{
    display: none;
    position: relative;
    flex-basis: 350px;
    background-color: #000;
}

#PREPARE .kol-box .kol-video-m .fa-play-circle {
    color: #ffd633;
    font-size: 60px;
    position: absolute;
    top: 42%;
    left: 45%;
}
@media only screen and (max-width: 1200px) {
    #PREPARE .kol-box .kol-video {
        position: relative;
        min-height: 400px;
        flex-basis: 400px;
        background-color: #000;
    }
    #PREPARE .kol-box.video-box-green .kol-text p br {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
      #PREPARE .kol-box .kol-video {
        display: none;
      }

    #PREPARE .kol-box .kol-video-m{
        display: block;
        max-height: 250px;
    }


}



@media only screen and (max-width: 590px) {

}

#PREPARE .kol-box.video-box-green .kol-text {
    flex: 4;
    background: rgb(0, 139, 73);
    background: linear-gradient(-90deg, rgba(138, 180, 0, 1) 0%, rgba(94, 163, 22, 1) 100%);
    color: #ffffff;
    padding: 50px 40px 50px 40px;
}


#PREPARE .kol-box .kol-text .kol-sub-ttl {
    display: table;
    padding: 3px 15px;
    font-size: 20px;
    font-weight: bold;
    color: #037f42;
    background-color: #fff;
    border-radius: 40px;
    margin-bottom: 15px;
}

#PREPARE .kol-box .kol-text h4 {
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
    min-height: 45px;
    margin-bottom: 10px;
}


#PREPARE .kol-box .kol-text p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
    text-align: justify;
}

#PREPARE .kol-box .kol-text .kol-link {
    margin-top: 20px;
    text-align: right;
}
#PREPARE .kol-box .kol-text .kol-video-link {
    margin-top: 15px;
}

#PREPARE .kol-box .kol-text .kol-link a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: bold;
}

#PREPARE .kol-box .kol-text .kol-video-link a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: bold;
}

@media only screen and (max-width: 1430px) {

    #PREPARE .kol-box .kol-text {
        padding: 30px 30px;
    }

    #PREPARE .kol-box .kol-img {
        flex-basis: 305px;
        background-color: #000;
    }

    #PREPARE .kol-box.video-box-green  .kol-text p {
        text-align: justify;
        overflow: auto!important;
        text-overflow: clip!important;
        -webkit-line-clamp: none!important;
    }

    #PREPARE .kol-box .kol-text p {
        text-align: justify;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
}


@media only screen and (max-width: 768px) {

    #PREPARE .kol-box {
        display: flex;
        flex-direction: column;
    }

    #PREPARE .kol-box.img-right {
        display: flex;
        flex-direction: column;
    }


}

@media only screen and (max-width: 590px) {

    #PREPARE .kol-box {
        margin: 0 0 50px 0;
    }

    #PREPARE .kol-box .kol-text {
        padding: 30px;
    }

    #PREPARE .kol-box .kol-img {
        flex-basis: auto;
    }
}





/*裝備素養能力*/

.arti-row {
    display: flex;
    min-height: 540px;
    margin-bottom: 40px;
}


@media only screen and (max-width: 1280px) {
    .arti-row {
        display: flex;
        min-height: 440px;
    }
}


.arti-reverse {
    display: flex;
    flex-direction: column-reverse;
}

.pa-box {
    flex: 1;
    background-color: #fff;
    margin-bottom: 50px;
}

.pa-box .pa-text .pa-ttl a {
    font-size: 20px;
    line-height: 28px;
    border-left: 5px solid #008747;
    padding-left: 10px;
    text-align: justify;
    font-weight: bold;
    color: #085130;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pa-box .pa-text {
    position: relative;
}

.pa-box .pa-text p {
    font-size: 16px;
    line-height: 26px;
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.pa-box .pa-text .pa-btn a {
    display: block;
    width: 45px;
    height: 45px;
    background-color: #ffd633;
    font-size: 25px;
    position: absolute;
    right: 0;
    bottom: 0;
    color: #fff;
    text-align: center;
    line-height: 45px;
}

.pa-box .pa-img {
    overflow: hidden;
    background-color: #000;
}

.pa-box .pa-img img {
    opacity: 0.8;
}


.pa-box .pa-img,
.pa-box .pa-text {
    height: 50%;
}

.pa-box .pa-text {
    padding: 40px 30px;
}

@media only screen and (max-width: 1430px) {
    .pa-box .pa-text p {
        -webkit-line-clamp: 2;
    }
}

@media only screen and (max-width: 1024px) {

    .arti-row {
        display: block;
        min-height: auto;
    }
    .arti-reverse {
        display: flex;
        flex-direction: row;
    }
    .pa-box {
        display: flex;
        background-color: #fff;
    }
    .pa-box .pa-img {
        overflow: visible;
        flex: 2.2;
    }
    .pa-box .pa-text {
        flex: 3;
    }
    .pa-box .pa-img,
    .pa-box .pa-text {
        height: auto;
    }
}

@media only screen and (max-width: 768px) {

    .pa-box {
        display: block;
        background-color: #fff;
    }

    .pa-box .pa-text {
        padding: 30px 30px 60px 30px;
    }
}

#AD {
    overflow: hidden;
    height: 500px;
    background: url('../img/ad_bg.jpg');
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    /*  margin-top: 80px; */
}

#AD .ad-head-ttl {
    background-color: #00432d;
    padding: 15px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#AD .ttl-box{
    display: flex;
    align-items: center;
}

#AD .ad-head-ttl h3 {
    color: #ffffff;
    letter-spacing: 3px;
    line-height: 35px;
    font-weight: bold;
    margin-bottom: 0;
}


#AD .ad-head-ttl .icon{
    margin-top: -5px;
    margin-right: 5px;
}

#AD .ad-head-ttl p {
    color: #ffffff;
    padding-top: 0;
    font-weight: bold;
}



#AD .ad_box {
    height: 400px;
    background: url('../img/ad_prod_bg.png');
    -webkit-background-size: 950px 375px;
    background-size: 950px 375px;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#AD .ad-text-box.ad-left {
    width: 372px;
    text-align: right;
    /*     margin-right: 15%;
    
    padding-left: 50px; */
}

#AD .ad-text-box.ad-right {
    width: 372px;
    text-align: left;
    /*    margin-left: 15%;
    text-align: left;
    padding-right: 40px; */
}


#AD .ad-text-box h4 {
    font-size: 24px;
    color: #085130;
    font-weight: bold;
    font-style: italic;
    margin-bottom: 10px;
    line-height: 34px;
}


#AD .ad-text-box p {
    font-size: 15px;
    color: #333;
    font-weight: 400;
}



#AD .ad-text-box p span{
    color: #D3152D;
}

@media only screen and (max-width: 1430px) {

    #AD .ad-text-box.ad-left {
        width: auto;
        margin-right: 0%;
        padding-right: 11%;
        padding-left: 20px;
    }

    #AD .ad-text-box.ad-right {
        width: auto;
        margin-left: 0%;
        padding-left: 20%;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 768px) {
    #PR .pr_title_box h3 a {
        font-size: 32px;
        line-height: 40px;
        padding: 0 20px;
    }

    #PR .pr_title_box h4 {
        padding: 50px 0 10px 0;
        font-size: 22px;
    }
}

@media only screen and (max-width: 590px) {

    #PR .pr_title_box h3 {
        font-size: 30px;
        line-height: 38px;
    }

    #PR .pr_title_box h4 {
        padding: 50px 0 15px 60px;
        font-size: 22px;
    }

    .head-ttl h3 {
        font-size: 28px;
        line-height: 36px;
    }

    #AD .ad-head-ttl h3 {
        letter-spacing: 0px;
        font-size: 25px;
    }
}



@media only screen and (max-width: 590px) {

    #AD .ad-head-ttl h3 {
        font-size: 22px;
    }
}

@media screen and (max-width: 768px) {

    #AD {
        height: auto;
        padding-bottom: 40px;
    }

    #AD .ad_box {
        height: auto;
        background: url('../img/ad_prod_bg.png');
        -webkit-background-size: 500px 197px;
        background-size: 500px 197px;
        background-position: top;
        background-repeat: no-repeat;
        display: block;
        padding-top: 200px;
    }

    #AD .ad-text-box {
        margin-bottom: 20px;
    }

    #AD .ad-text-box h4 {
        font-size: 20px;
        line-height: 30px;
    }

    #AD .ad-text-box.ad-left {
        text-align: center;
        padding-right: 20px;
        padding-left: 20px;
    }

    #AD .ad-text-box.ad-right {
        text-align: center;
        margin-left: 0%;
        padding-left: 0%;
        padding-right: 20px;
        padding-left: 20px;
    }
}


.logo-box-bg{
    padding: 40px;
/*     background-color: #f7f7f7; */
    border-radius: 20px;
    margin: 20px 0 40px 0;
}
#EC {
    padding: 30px 0;
    background-color: #fff;
}

#EC .ec-row {
    padding: 20px 80px;
    display: flex;
    justify-content: space-between;
}


#EC .ec-box {
    padding: 0 30px;
}

#EC .ec-box.lg{
    padding: 0 50px;
}

#EC .ec-box-ttl p {
    color: #085130;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    padding: 10px 0;
    letter-spacing: 2px;
}

#EC .ec-box-ttl .fas {
    margin: 0 10px;
}

#EC .mobile{
    display: none;
}

@media screen and (max-width: 1043px) {
    #EC .ec-row {
        padding: 20px 0px;
    }
}

@media screen and (max-width: 768px) {

    #EC .ec-box {
        padding: 0 0px;
    }

    #EC .ec-box.lg{
        padding: 0 0px;
    }

}

@media screen and (max-width: 600px) {

   #EC .pc{
        display: none;
    }

    #EC .mobile{
        display: block;
    }

    #EC .ec-row .ec-box{
        flex: 1;
    }

    #EC .ec-row {
        padding: 0px 0px;
    }

    #EC .ec-box {
        padding: 0 30px;
        margin: 5px 0;
    }

    #EC .ec-box.lg{
        padding: 0 120px;
    }
}

@media screen and (max-width: 414px) {

    #EC .ec-box {
        padding: 0 15px;
        margin: 10px 0;
    }
}




@media screen and (max-width: 320px) {

    #EC .ec-box {
        padding: 0 10px;
        margin: 10px 0;
    }
}



#EXTEND {
    margin: 40px 0;
    overflow: hidden;
}

#EXTEND .owl-kol .item {
    padding: 0 15px;
}

#EXTEND .owl-kol .kol-box {
    background-color: #fff;
}


#EXTEND .kol-box .kol-img {
    position: relative;
}

#EXTEND .kol-box .kol-img .card-mask {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    content: "";
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 63.7%, rgba(0, 0, 0, 0.25) 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(63.7%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 63.7%, rgba(0, 0, 0, 0.25) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 63.7%, rgba(0, 0, 0, 0.25) 100%);
}

#EXTEND .kol-box .kol-img .card-mask .author-title {
    color: #ffffff;
    height: 32px;
    font-size: 15px;
    line-height: 32px;
    font-weight: 500;
    position: absolute;
    bottom: 10px;
    left: 20px;
    width: 100%;
}

#EXTEND .kol-box .kol-text .kol-ttl {
    font-size: 16px;
    line-height: 20px;
    border-left: 5px solid #008747;
    padding-left: 10px;
    text-align: justify;
    font-weight: bold;
    color: #085130;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

#EXTEND .kol-box .kol-text {
    position: relative;
    padding: 20px 20px 50px 20px;
}

#EXTEND .kol-box .kol-text a p {
    font-size: 15px;
    line-height: 22px;
    text-align: justify;
    font-weight: 300;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #333;
}


#EXTEND .kol-box .kol-text .kol-btn a {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #ffd633;
    font-size: 25px;
    position: absolute;
    right: 0;
    bottom: 0;
    color: #fff;
    text-align: center;
    line-height: 40px;
}


.tag.exam{
    display: inline-block;
    background-image: url('../img/exam-icon.png');
    background-size: cover;
}

.tag.exam.lg{
    width: 60px;
    height: 60px;
}

.tag.exam.md{
    width: 45px;
    height: 45px;
}

footer {
    color: #D2D2D2;
    background-color: #333333;
    font-size: 12px;
    line-height: 16px;
    padding: 15px 0;
    text-align: center;
}

footer p {
    color: #008747;
}

@media screen and (max-width: 590px) {

    footer {
        font-size: 11px;
        line-height: 18px;
        padding: 20px 15px;
    }
}