@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;700&display=swap');

html,body,ul,li {
    margin: 0;
    padding: 0;
}

body {
    background-color: #ffffff;
    font-family: 'Noto Sans TC', sans-serif;
}

.content-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #ffffff;
}
    .section-area {
        width: 100%;
        display: block;
        position: relative;
    }
        .section-inner {
            width: 1366px;
            display: block;
            margin: 0 auto;
        }
            .section-inner img {
                width: 100%;
                height: auto;
            }

@media only screen and (max-width:1440px) {
    .section-inner {
        width: 86%;
    }
}

@media only screen and (max-width:425px) {
    .section-inner {
        width: 92%;
    }
}






/*/////////////////////////////////////////////////////////*/
/*------- 共用區塊 --------*/
/*/////////////////////////////////////////////////////////*/

/* 滾動條樣式 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background: #fff;
}
::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #8d9550;
}
/* 選取樣式 */
::selection {
background-color: #8d9550;
color: #fff;
}

/* 大標 */
.titleBg {
    display: inline-block;
    position: relative;
    font-size: 46px;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0 auto;
    border-bottom: 2px solid #fff;
}
.complete .titleBg {
    border-bottom: 0px solid #fff;
}
    .titleBg .en {
        color: #eae9ca;
        display: inline-block;
        text-transform: uppercase;
    }
    .titleBg .ch {
        color: #fff;
        display: inline-block;
    }

@media (max-width: 950px){
    .titleBg {
        font-size: 40px;
        line-height: 75px;
    }
}

@media (max-width: 640px) {
    .titleBg {
        font-size: 20px;
        line-height: 36px;
        border-bottom: 1px solid #fff;
    }
}




/*/////////////////////////////////////////////////////////*/
/*------- banner區塊 --------*/
/*/////////////////////////////////////////////////////////*/

.banner_bg img {
    width: 100%;
    height: auto;
}




/*/////////////////////////////////////////////////////////*/
/*------- section0 名單公布區塊 --------*/
/*/////////////////////////////////////////////////////////*/

.section0_bg {
    background-color: #f4f2e4;
    position: relative;
    padding: 0 0 10vh;
    background-image: url(../img/bg-img.png);
}
    .section0_bg .name_list {
        display: flex;
        flex-direction: row;
        align-content: space-between;
        align-items: stretch;
        justify-content: flex-end;
        flex-wrap: nowrap;
        margin: 0 0 8.5rem;
    }
    /* 最後一筆 */
    .section0_bg .name_list:last-of-type {
        margin: 0;
    }
        .name_listLeft {
            text-align: left;
            border-right: 5px solid #674d35;
            padding: 0 4rem 0 0;

            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-content: flex-start;
            align-items: flex-start;
        }
            .name_listLeft .title {
                font-size: 36px;
                line-height: 36px;
                color: #ca8269;
                font-weight: bold;
                letter-spacing: 2px;
                padding: 0 0 1.5rem;
            }
            .name_listLeft .en {
                color: #000000;
                font-size: 27px;
                line-height: 27px;
                font-weight: 400;
            }

        .name_listRight {
            box-sizing: border-box;
            padding: 0 0 0 5.5rem;
            width: 92rem;
        }
        .section0_bg .name_list:nth-of-type(2) .name_listRight, 
        .section0_bg .name_list:nth-of-type(3) .name_listRight {
            margin: -1.5rem 0 0;
        }
            .name_listRight .text_list {
                display: flex;
                flex-direction: row;
                align-items: center;
                padding: 0 0 1.5rem;
            }
            .section0_bg .name_list:nth-of-type(2) .name_listRight .text_list, 
            .section0_bg .name_list:nth-of-type(3) .name_listRight .text_list {
                align-items: flex-start;
            }
            /* 最後一筆 */
            .name_listRight .text_list:last-of-type {
                padding: 0;
            }

                .name_listRight .text_list .title {
                    color: #919191;
                    font-size: 24px;
                    line-height: 48px;
                    font-weight: 400;
                    min-width: 19rem;
                    text-align: justify;
                }
                
                .name_listRight .text_list .sub {
                    box-sizing: border-box;
                }
                    .name_listRight .text_list .sub a {
                        display: flex;
                        align-items: center;
                        text-decoration: none;
                        color: #000000;
                        font-size: 24px;
                        line-height: 48px;
                        font-weight: 400;
                    }
                    .name_listRight .text_list .sub a:hover {
                        opacity: 0.6;
                        transition: 0.5s;
                    }
                        .name_listRight .text_list .sub a span {
                            color: #ca8269;
                            font-size: 30px;
                            padding: 0 0 0 0.5rem;
                        }

@media (max-width: 1366px){
    .name_listLeft .title {
        font-size: 30px;
        line-height: 30px;
    }
        .name_listLeft .en {
            font-size: 22px;
            line-height: 22px;
        }

    .name_listRight {
        width: 75rem;
    }
        .name_listRight .text_list .title {
            font-size: 20px;
            line-height: 36px;
            min-width: 15rem;
        }
            .name_listRight .text_list .sub a {
                display: flex;
                align-items: center;
                text-decoration: none;
                color: #000000;
                font-size: 20px;
                line-height: 36px;
                font-weight: 400;
            }
                .name_listRight .text_list .sub a span {
                    font-size: 20px;
                }
}

@media (max-width: 1280px) {
    .name_listLeft .title {
        font-size: 24px;
        line-height: 24px;
    }
    .name_listLeft .en {
        font-size: 18px;
        line-height: 18px;
    }
    .name_listRight {
        width: 70rem;
    }
}

@media (max-width: 1160px) {
    .section0_bg .name_list {
        flex-direction: column;
        margin: 0 0 5.5rem;
    }
        .name_listRight .text_list {
            padding: 0 0 1.5rem;
            flex-direction: column;
            align-items: flex-start;
        }
            .name_listLeft {
                flex-direction: row;
                align-items: center;
                border-left: 3px solid #674d35;
                border-right: 0px solid #674d35;
                padding: 0 0 0 2rem;
            }
            .name_listRight {
                width: 100%;
                padding: 3.5rem 0 0;
            }
                .name_listRight .text_list {
                    padding: 0 0 1.5rem;
                }
                    .name_listRight .text_list .title {
                        font-size: 20px;
                        line-height: 36px;
                    }
                    .name_listRight .text_list .sub a {
                        font-size: 18px;
                        line-height: 40px;
                    }
}

@media (max-width: 640px) {
    .name_listLeft .title {
        font-size: 20px;
        line-height: 20px;
    }
    .name_listLeft .en {
        font-size: 16px;
        line-height: 16px;
    }
    .name_listRight .text_list .title {
        font-size: 16px;
        line-height: 30px;
    }
        .name_listRight .text_list .sub a {
            font-size: 14px;
            line-height: 36px;
            letter-spacing: 0px;
            text-align: left;

            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 1;
            overflow: hidden;
        }
            .name_listRight .text_list .sub a span {
                font-size: 16px;
            }
}

@media (max-width: 375px) {
    .name_listRight .text_list {
        padding: 0 0 1.5rem;
    }
        .name_listRight .text_list .title {
            font-size: 16px;
            line-height: 30px;
            min-width: unset;
        }
}


/*/////////////////////////////////////////////////////////*/
/*------- section1 上方編輯器區塊 --------*/
/*/////////////////////////////////////////////////////////*/

.section1_bg {
    background-color: #f4f2e4;
    position: relative;
    padding: 0 0 10vh;
    background-image: url(../img/bg-img.png);
}

.topArea {
    position: relative;
    background-color: #8d9550;
    height: 25.5rem;
    display: flex;
    align-items: center;
    text-align: center;
}
/* 完成頁 */
.complete .topArea {
    height: 17.5rem;
}

.bottomArea {
    position: relative;
    background-color: #f4f2e4;
    background-image: url(../img/bg-img.png);
}
.bottomArea::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 200px 1800px 0 1800px;
    border-color: #8d9550 transparent transparent transparent;
    z-index: 1;
}
.textArea .text {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
}
.textArea:first-of-type .text {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.btn_map{
    background: #074478;
    border-radius: 30px;
    font-size:1.8em;
    padding: 5px 20px;
    margin:5px 10px;
}

.textArea {
    text-align: center;
    background-color: #fff;
    padding: 9.5rem 11.5rem;
    margin: 0 0 5rem;
    z-index: 999 !important;
    position: relative;
    filter: drop-shadow(0 4px 9px rgb(0 0 0 / 15%));
}
.section3_bg .textArea {
    padding: 4.5rem 7.5rem;
}
.section0_bg .textArea {
    padding: 4.5rem 11.5rem;
}
    .titleBox {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        align-items: center;
        justify-content: flex-start;
    }
        .titleBox .img {
            width: 95px;
        }
            .titleBox .img img {
                width: 100%;
                height: auto;
                border-radius: 100px;
                border: 2px solid #b9512e;
                padding: 1rem;
                box-sizing: border-box;
            }

        .titleBox .right {
            margin-left: 4rem;
            padding: 0 0 2.5rem;
            display: flex;
            border-bottom: 5px solid #674d35;
            position: relative;
            width: 100%;
        }
        .titleBox .right:after {
            content: '';
            width: 96px;
            height: 5px;
            background: #b9512e;
            position: absolute;
            bottom: -5px;
            left: 0;
        }
            .titleBox .right .sub {
                font-size: 20px;
                line-height: 24px;
                color: #b9512e;
                font-weight: bold;
            }
            .titleBox .right .num {
                font-size: 45px;
                line-height: 45px;
                color: #b9512e;
                font-weight: bold;
                padding: 0 0 0 1.5rem;
            }
            .titleBox .right .title {
                color: #674d35;
                font-size: 45px;
                line-height: 45px;
                font-weight: bold;
                text-align: left;
                letter-spacing: 2px;
                padding: 0 0 0 1.5rem;
            }

    .textArea .text {
        color: #000;
        font-size: 24px;
        font-weight: normal;
        letter-spacing: 1px;
        line-height: 40px;
        text-align: left;
        padding: 60px 0 0;
    }
        .textArea .text .left {
            box-sizing: border-box;
        }
            .textArea .text .left img {
                max-width: 475px;
                width: unset !important;
                height: auto;
            }

        .textArea .text .right {
            padding: 0 0 0 5.5rem;
            text-align: justify;
        }

@media (max-width: 1366px){
    .textArea {
        padding: 5.5rem 6.5rem;
    }
        .textArea .text .left img {
            max-width: 445px;
        }
        .titleBox .right {
            margin-left: 2rem;
        }
            .titleBox .right .title {
                font-size: 30px;
            }
.btn_map{
    font-size:1.8em;
}
            .titleBox .right .sub {
                font-size: 15px;
                line-height: 22px;
            }
        .section1_bg .textArea .text {
            font-size: 20px;
            line-height: 36px;
        }
}

@media (max-width: 1160px){
    .section0_bg .textArea {
        padding: 4.5rem;
    }
.btn_map{
    font-size:1.8em;
}
}

@media (max-width: 1024px){
    .bottomArea::before {
        border-width: 130px 495px 0 495px;
    }
    .section0_bg .textArea {
        padding: 4.5rem 3.5rem;
    }
    .section3_bg .textArea {
        padding: 2.5rem 3.5rem;
        margin: 0 0 2rem;
    }
    .textArea {
        padding: 4.5rem 3.5rem;
    }
.btn_map{
    font-size:1.8em;
}
        .section1_bg .textArea .text {
            font-size: 16px;
            line-height: 30px;
        }
            .textArea .text .left img {
                max-width: 350px;
            }
            .textArea .text .right {
                padding: 0 0 0 2.5rem;
            }
}

@media (max-width: 950px){
    .titleBox .img {
        width: 70px;
    }
    .titleBox .right .title {
        font-size: 22px;
        line-height: 35px;
    }
    .titleBox .right .sub {
        font-size: 12px;
        line-height: 19px;
    }
    .titleBox .right .num {
        font-size: 30px;
        line-height: 30px;
        padding: 0 0 0 1rem;
    }
    .textArea .text {
        padding: 40px 0 0;
    }
.btn_map{
    font-size:1.5em;
}
    .bottomArea::before {
        display: none;
    }
}

@media (max-width: 768px){
    .textArea .text {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
        .textArea .text .left img {
            max-width: 100%;
        }
.btn_map{
    font-size:1.5em;
}
        .textArea .text .right {
            padding: 3rem 0 0;
        }
}

@media (max-width: 640px){
    .topArea {
        height: 18.5rem;
        margin: 0 0 4rem;
    }
    .complete .topArea {
        height: 0;
    }
}

@media (max-width: 428px){
    .textArea {
        padding: 2.5rem 1.5rem;
    }
    .section0_bg .textArea {
        padding: 2.5rem;
        margin: 0 0 2rem;
    }
    .section3_bg .textArea {
        padding: 2.5rem 1.5rem;
        margin: 0 0 2rem;
    }
    .titleBox .img {
        display: none;
    }

.btn_map{
    font-size:1.5em;
}

    .titleBox .right {
        margin-left: 1rem;
        padding: 0 0 1.5rem;
        align-content: center;
        align-items: center;
        flex-direction: column;
        justify-content: space-between;
        border-bottom: 3px solid #674d35;
    }
    .titleBox .right:after {
        height: 3px;
        bottom: -3px;
    }
        .titleBox .right .num {
            /* font-size: 25px;
            line-height: 25px;
            padding: 0 0 0 0.5rem; */
            display: none;
        }
        .titleBox .right .title {
            font-size: 18px;
            line-height: 30px;
            padding: 1rem 0 0;
            text-align: center;
        }
        .titleBox .right .sub {
            text-align: left;
        }
}




/*/////////////////////////////////////////////////////////*/
/*------- section2 產品區塊 --------*/
/*/////////////////////////////////////////////////////////*/

.section2_bg {
    background-color: #f4f2e4;
    position: relative;
    padding: 0 0 10vh;
    background-image: url(../img/bg-img.png);
}
    .section2_bg .time_list {
        display: flex;
        flex-direction: row;
        align-content: space-between;
        align-items: stretch;
        justify-content: flex-end;
        flex-wrap: nowrap;
        margin: 0 0 8.5rem;
    }
    /* 最後一筆 */
    .section2_bg .time_list:last-of-type {
        margin: 0;
    }
        .time_listLeft {
            text-align: left;
            border-right: 5px solid #674d35;
            padding: 0 4rem 0 0;

            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-content: flex-start;
            align-items: flex-start;
        }
            .time_listLeft .title {
                font-size: 36px;
                line-height: 36px;
                color: #674d35;
                font-weight: bold;
                letter-spacing: 2px;
                padding: 0 0 1.5rem;
            }
            .time_listLeft .en {
                color: #000000;
                font-size: 27px;
                line-height: 27px;
                font-weight: bold;
            }
            .time_listLeft .memo {
                color: #999999;
                font-size: 18px;
                line-height: 25px;
                font-weight: normal;
                max-width: 168px;
                text-align: justify;
                letter-spacing: 2px;
            }
        .time_listRight {
            box-sizing: border-box;
            padding: 0 0 0 5.5rem;
            width: 92rem;
        }
        .section2_bg .time_list:nth-of-type(2) .time_listRight, 
        .section2_bg .time_list:nth-of-type(3) .time_listRight {
            margin: -1.5rem 0 0;
        }
            .time_listRight .text_list {
                display: flex;
                flex-direction: row;
                align-items: center;
                padding: 0 0 1.5rem;
            }
            .section2_bg .time_list:nth-of-type(2) .time_listRight .text_list, 
            .section2_bg .time_list:nth-of-type(3) .time_listRight .text_list {
                align-items: flex-start;
            }
            /* 最後一筆 */
            .time_listRight .text_list:last-of-type {
                padding: 0;
            }
                .time_listRight .text_list .num {
                    width: 27px;
                    height: 27px;
                    line-height: 27px;
                    border-radius: 50%;
                    background-color: #ff7509;
                    color: #fff;
                    text-align: center;
                    margin: 0 1.5rem 0 0;
                }
                .section2_bg .time_list:nth-of-type(2) .time_listRight .text_list .num,
                .section2_bg .time_list:nth-of-type(3) .time_listRight .text_list .num {
                    margin: 1.5rem 1.5rem 0 0;
                }
                .time_listRight .text_list .title {
                    color: #000;
                    font-size: 24px;
                    line-height: 48px;
                    font-weight: 400;
                    min-width: 17rem;
                    text-align: justify;
                }
                .section2_bg .time_list:nth-of-type(2) .time_listRight .text_list .title, 
                .section2_bg .time_list:nth-of-type(3) .time_listRight .text_list .title {
                    width: calc(100% - 27px);
                }
                
                .time_listRight .text_list .sub {
                    color: #9f7c52;
                    font-size: 24px;
                    line-height: 48px;
                    font-weight: 500;
                    letter-spacing: 2px;
                }


@media (max-width: 1366px){
    .time_listLeft .title {
        font-size: 30px;
        line-height: 30px;
    }
        .time_listLeft .en {
            font-size: 22px;
            line-height: 22px;
        }
        .time_listLeft .memo {
            max-width: 128px;
        }

    .time_listRight {
        width: 80rem;
    }
        .time_listRight .text_list .title {
            font-size: 20px;
            line-height: 36px;
            min-width: 13rem;
        }
        .time_listRight .text_list .sub {
            font-size: 20px;
            line-height: 48px;
        }
        .section2_bg .time_list:nth-of-type(2) .time_listRight, 
        .section2_bg .time_list:nth-of-type(3) .time_listRight {
            margin: 0;
        }
            .section2_bg .time_list:nth-of-type(2) .time_listRight .text_list .num,
            .section2_bg .time_list:nth-of-type(3) .time_listRight .text_list .num {
                margin: 0.5rem 1.5rem 0 0;
            }
}

@media (max-width: 1365px){
    .time_listRight {
        width: 70rem;
    }
}

@media (max-width: 1160px){
    .time_listRight {
        width: 60rem;
    }
}

@media (max-width: 1024px){
    .time_listLeft {
        padding: 0 3rem 0 0;
    }
        .time_listLeft .title {
            font-size: 22px;
            line-height: 22px;
        }
        .time_listLeft .memo {
            max-width: 96px;
        }
        .time_listLeft .en {
            font-size: 18px;
            line-height: 18px;
        }

    .time_listRight {
        width: 60rem;
        padding: 0 0 0 3.5rem;
    }    
}

@media (max-width: 768px) {
    .section2_bg .time_list {
        flex-direction: column;
        margin: 0 0 5.5rem;
    }
        .time_listLeft {
            flex-direction: row;
            align-items: center;
        }
            .time_listLeft .memo {
                max-width: unset;
                font-size: 15px;
                line-height: 24px;
                letter-spacing: 0;
            }
            
        .time_listRight {
            width: 100%;
            padding: 3.5rem 0 0;
        }
            .time_listRight .text_list {
                padding: 0 0 0.5rem;
            }
                .time_listRight .text_list .title {
                    font-size: 18px;
                    line-height: 30px;
                }
                .time_listRight .text_list .num {
                    width: 23px;
                    height: 23px;
                    line-height: 23px;
                }
}

@media (max-width: 640px) {
    .time_listLeft .memo {
        max-width: 100px;
        font-size: 12px;
    }
    .time_listRight .text_list {
        padding: 0 0 1.5rem;
    }
        .time_listRight .text_list .num {
            width: 20px;
            height: 20px;
            line-height: 20px;
        }
        .time_listRight .text_list .title {
            font-size: 16px;
            line-height: 32px;
            min-width: unset;
        }
        .time_listRight .text_list .sub {
            font-size: 16px;
            line-height: 32px;
        }
}

@media (max-width: 375px) {
    .time_listLeft .memo {
        max-width: 100px;
        font-size: 12px;
    }
    .time_listRight .text_list {
        padding: 0 0 1.5rem;
    }
        .time_listRight .text_list .num {
            width: 20px;
            height: 20px;
            line-height: 20px;
        }
        .time_listRight .text_list .title {
            font-size: 14px;
            line-height: 30px;
            min-width: unset;
        }
}




/*/////////////////////////////////////////////////////////*/
/*------- section3 報名區塊 --------*/
/*/////////////////////////////////////////////////////////*/

.section3_bg {
    background-color: #f4f2e4;
    position: relative;
    padding: 0 0 10vh;
    background-image: url(../img/bg-img.png);
}

.titleArea {
    padding: 7rem 0 2rem;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
    border-top: 1px solid #dddddd;
}
/* 第一筆 */
.titleArea:first-of-type {
    padding: 0 0 2rem;
    border-top: 0px solid #dddddd;
}
    .titleArea .title {
        font-size: 30px;
        line-height: 55px;
        font-weight: bold;
        letter-spacing: 1px;
        color: #2b2b2b;
        padding: 0 1rem 0 0;
    }
    .titleArea .tag {
        font-size: 20px;
        line-height: 35px;
        font-weight: bold;
        color: #9f7c52;
        border: 1px solid #9f7c52;
        padding: 0 1.5rem;
    }

input, textarea, select {
	font-size: 26px;
	border: 1px solid #efefef;
    color: #a8a8a8;
}
::placeholder { /* CSS 3 標準 */
    color: #a8a8a8;
}
::-webkit-input-placeholder { /* Chrome, Safari */
    color: #a8a8a8;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #a8a8a8;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #a8a8a8;
    opacity: 1;
}

input[type="text"], .input, input[type="password"], .input, input[type="search"] {
	margin: 0;
    padding: 0;
    outline: none;
    vertical-align: middle;
    height: 70px;
    width: 100%;
    transition: 0.2s ease all;
    padding: 0px 15px;
    box-sizing: border-box;
    color: #a8a8a8;
    font-size: 22px;
}
	input[type="text"]:focus, input[type="password"]:focus {
		border: solid 1px #999;
	}
	
input[type="button"], input[type="submit"], input[type="reset"] {
	background-color: #fff0;
    -webkit-appearance: none;
    margin: 0;
    padding: 0;
    outline: none;
    cursor: pointer;
    vertical-align: middle;
    border: none;
    letter-spacing: 5px;
    font-weight: bold;
    margin: 0 10px;
    height: 90px;
    line-height: 90px;
    color: #fff;
    transition: 0.2s ease all;
}
	input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover {
		opacity:0.7;
	}
	
	input[type="reset"] {
		background:#060f35;
	}
	
input[type="radio"], input[type="checkbox"] {
	margin:0px;
	padding:0px;
	outline:none;
	vertical-align: baseline;
	cursor:pointer;
}
textarea {
	margin: 0;
    padding: 0;
    outline: none;
    vertical-align: middle;
    line-height: 24px;
    width: 100%;
    resize: none;
    height: 215px;
    transition: 0.2s ease all;
    box-sizing: border-box;
    padding: 3px;
}
	textarea:focus {
		border: solid 1px #d5d5d5;
	}

.blockBg .textArea {
    padding: 25px 0;
    box-sizing: border-box;
}
    .blockBg .textArea .title {
        color: #4c5c5e;
        font-size: 36px;
        line-height: 60px;
        font-weight: 500;
        margin-bottom: 50px;
    }
    .blockBg .textArea .text {
        color: #000;
        font-size: 23px;
        line-height: 40px;
        margin-bottom: 50px;
        text-align: justify;
    }

.chooseArea {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}
    .choose_list {
        width: 49%;
    }
        .choose_listIn {
            border-radius: 4px;
            margin: 0px 0px 20px;
            padding-left: 20px;
            height: 70px;
            line-height: 70px;
            background-color: #efefef;
            color: #262626;
            border-radius: 4px
        }
            .choose_list label {
                cursor: pointer;
                text-align: left;
                font-size: 20px;
                line-height: 70px;
                color: #2b2b2b;
                font-weight: normal;
                margin-bottom: 0px;
            }

.form_area {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    vertical-align: top;
    justify-content: space-between;
    align-content: flex-start;
    text-align: left;
    padding: 0 0 4.5rem;
}
/* 體驗產品喜好選擇 */
.section3_bg .textArea:nth-of-type(2) .form_area {
    padding: 0;
}
    .form_list {
        box-sizing:border-box;
        font-size:15px;
        line-height:21px;
        width:100%;
    }
    .form_list.fLType2{
        width:49%;
    }
        .fL_tit {
            font-size: 22px;
            line-height: 55px;
            color: #2b2b2b;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }	
        /*必填icon*/
        .requirde_icon {
            font-size: 24px;
            line-height: 24px;
            color: #ff4b1e;
            padding: 0 0 0 0.5rem;
        }
        .fL_info {
            padding:0px 0px 25px;
        }
            .fL_info select{
                width:100%;
            }
            .contact_area input, .contact_area select {
                background-color: #efefef;
                color: #262626;
                border-radius: 4px;
            }
            .contact_area textarea {
                padding: 15px;
                font-size: 22px;
                margin: 0 0 5rem;
                background-color: #efefef;
                color: #262626;
                border-radius: 4px;
            }
            .contact_area textarea:focus {
                border: solid 1px #999;
            }

    /* 個資保護聲明 */
    .private_list {
        filter: drop-shadow(0 4px 9px rgb(0 0 0 / 15%));
        background-color: #fff;
        padding: 3rem;
        transition: 0.4s;
        margin: 0 0 5rem;
    
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-wrap: nowrap;
        align-content: center;
    }
    .accordion {
        border: 1px solid #fff0 !important;
        color: #9f7c52;
        cursor: pointer;
        width: 100%;
        border: none;
        text-align: left;
        outline: none;
        font-size: 36px;
        background-color: #fff0;
        font-weight: bold;
        padding: 0;
    }
    .active, .accordion:hover {
        background-color: #fff0;
    }
    .accordion:after {
        content: '\002B';
        color: #545454;
        font-weight: bold;
        float: right;
        margin-left: 5px;
    }
    .active:after {
        content: "\2212";
    }
        .panel {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.2s ease-out;
            border: 0px solid #fff0;
            color: #262626;
            font-size: 21px;
            line-height: 36px;
            margin: 0;
            text-align: justify;
            box-shadow: 0 0px 0px rgba(0,0,0,0) !important;
        }
    
    /* 徵文條款 */
    .privArea {
        font-size: 24px;
        line-height: 44px;
        font-weight: 400;
        color: #444444;
        text-align: center;
        padding: 10px 25px;
        justify-content: center;
        margin: 5rem auto;
    }
    
    /* 按鈕 */
    .btn_area {
        text-align: center;
        margin: 0 0 150px;
        background: #9f7c52;
        width: 470px;
        font-size: 30px;
        letter-spacing: 5px;
        border-radius: 50px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin: 0 auto 15rem;
    }
        .btn_area span {
            font-size: 50px;
            color: #fff;
        }

    /* 驗證器 */
    .final_robot_box {
        margin: auto;
        text-align: center;
    }
        .g-recaptcha {
            text-align: center;
            display: inline-block;
        }

@media (max-width: 1366px){
    .titleArea .title {
        font-size: 24px;
        line-height: 40px;
    }
    .choose_list label {
        font-size: 18px;
        line-height: 36px;
    }
    .fL_tit {
        font-size: 20px;
        line-height: 48px;
    }
    input[type="text"],
    .input, input[type="password"],
    .input, input[type="search"] {
        font-size: 18px;
        height: 60px;
    }
    .accordion {
        font-size: 24px;
    }
    .panel {
        font-size: 18px;
        line-height: 32px;
    }
    .privArea {
        font-size: 18px;
        line-height: 40px;
    }
}

@media (max-width: 1024px){
    input[type="button"], input[type="submit"], input[type="reset"] {
        font-size: 20px;
        height: 70px;
        line-height: 70px;
    }
    .private_list {
        margin: 0px 0 2rem;
    }
}

@media (max-width: 768px){
.form_area {
    width: 100%;
}
    .titleArea .title {
        font-size: 18px;
        line-height: 28px;
    }
    .titleArea .tag {
        font-size: 14px;
        line-height: 26px;
        padding: 0 1rem;
    }
        .form_list.fLType2{
            width:100%;
        }

        input, textarea, select {
            font-size: 15px;
        }
        .fL_tit {
            font-size: 15px;
            line-height: 35px;
        }
        .requirde_icon {
            font-size: 15px;
            line-height: 18px;
        }
        .fL_info {
            padding: 0px 0px 10px;
        }
        input[type="text"], .input, input[type="password"], .input, input[type="search"] {
            height: 45px;
            font-size: 15px;
        }
        .contact_area textarea {
            font-size: 15px;
            margin: 0;
        }

        .choose_list {
            width: 100%;
        }
            .choose_list label {
                font-size: 14px;
                line-height: 25px;
            }
        input[type="button"], input[type="submit"], input[type="reset"] {
            width: 100%;
            font-size: 14px;
            margin: 0;
            height: 50px;
            line-height: 50px;
        }
        .choose_listIn {
            height: 50px;
            line-height: 45px;
        }

    .private_list {
        padding: 2rem;
    }
        .accordion {
            font-size: 18px;
        }
        .panel {
            font-size: 15px;
            line-height: 25px;
        }
        .privArea {
            width: 100%;
            margin: 2rem 0;
            font-size: 14px;
            line-height: 17px;
            padding: 10px 25px;
        }
        
    .btn_area {
        margin: 5rem auto 8rem;
        width: 100%;
    }
    .btn_area span {
        font-size: 40px;
        color: #fff;
        padding: 0 1rem 0 0;
    }
}

@media (max-width: 640px){
    .cBT_checkbox {
        display: block;
        padding: 5px 0px 0px 0px;
    }
    .receiving_record {
        padding:0px;
    }
    .choose_list label {
        font-size: 13px;
        line-height: 16px;
    }
    input[type="button"], input[type="submit"], input[type="reset"] {
        width: 100%;
        margin: 0;
    }
    .btn_area span {
        position: absolute;
        right: 7%;
    }
    .titleArea {
        flex-direction: column;
    }
        .titleArea .tag {
            margin: 1rem 0 0;
        }
}

@media (max-width: 390px){
    .privArea {
        font-size: 12px;
        line-height: 17px;
    }
    .panel {
        font-size: 13px;
        line-height: 28px;
    }
}










/*/////////////////////////////////////////////////////////*/
/*-------版腳+版權宣告--------*/
/*/////////////////////////////////////////////////////////*/

.footer {
    background: #ffffff;
    padding: 6rem 0;
    color: #b34f2f;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}
    .footer .section-inner {
        width: 92%;
        display: block;
        margin: 0 auto;
    }
        .footerArea {
            display: flex;
            flex-direction: row;
            align-content: center;
            align-items: center;
            justify-content: space-between;
        }
            .logo_img {
                width: 25rem;
            }
                .logo_img img {
                    width: 100%;
                    height: auto;
                }

            .copyright {
                font-size: 20px;
                font-weight: 300;
                letter-spacing: 10px;
                color:#b34f2f;
            }

@media (max-width: 1366px){
    .footer {
        padding: 40px 0;
    }
        .copyright {
            font-size: 16px;
        }
}

@media (max-width: 1160px){
    .logo_img {
        width: 15rem;
    }
    .copyright {
        letter-spacing: 5px;
    }
}

@media (max-width: 768px){
    .copyright {
        font-size: 14px;
        letter-spacing: 3px;
    }
}

@media (max-width: 640px){
    .footerArea {
        display: flex;
        flex-direction: column;
    }
    .copyright {
        font-size: 12px;
        letter-spacing: 2px;
        padding: 2rem 0 0;
    }
}



