@charset "UTF-8";
.formBox input[type=text], .formBox select, .formBox textarea {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.applyingArea {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1000
}

.applyingArea .applyingWrap {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 6px solid rgba(233, 233, 233, 0.8);
    width: 600px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

@media (max-width: 640px) {
    .applyingArea .applyingWrap {
        width: 100%;
        height: 100%
    }
}

.applyingArea .applyingWrap:before {
    content: "";
    position: absolute;
    top: -6px;
    left: -6px;
    width: calc(100% + 5px);
    height: calc(100% + 5px);
    border: 1px solid #000;
    pointer-events: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.applyingArea .contentBox {
    padding: 30px;
    height: 100%;
    overflow-y: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.applyingArea .Txt {
    line-height: 1.8;
    letter-spacing: 0.5px;
    font-size: 15px
}

.applyingArea .Txt a {
    color: #0000ff;
    text-decoration: underline
}

.applyingArea .title {
    font-size: 18px;
    font-weight: 600;
    color: #000
}

.applyingArea .note {
    font-size: 17px;
    color: #2f2f2f
}

.applyingArea .understandBtn {
    cursor: pointer;
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.applyingArea .understandBtn a {
    padding: 8px 15px;
    background-color: #0070C0;
    font-size: 20px;
    color: #fff
}

.mainArea {
    padding-bottom: 0;
    background-color: #fbfaf5
}

.mainArea.show .leftBox {
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    opacity: 1
}

.mainArea.show .rightBox {
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    opacity: 1
}

.mainArea .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%
}

@media (max-width: 1180px) {
    .mainArea .wrap {
        padding: 0
    }
}

.mainArea .leftBox {
    width: 50%;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
    opacity: 0
}

@media (max-width: 960px) {
    .mainArea .leftBox {
        display: none
    }
}

.mainArea .rightBox {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 90px 20px;
    margin: 0 auto;
    width: 710px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

@media (min-width: 961px) {
    .mainArea .rightBox {
        -webkit-transition: all 1s ease;
        -o-transition: all 1s ease;
        transition: all 1s ease;
        -webkit-transform: translateX(30px);
        -ms-transform: translateX(30px);
        transform: translateX(30px);
        opacity: 0
    }
}

@media (max-width: 1180px) {
    .mainArea .rightBox {
        width: 620px
    }
}

@media (max-width: 960px) {
    .mainArea .rightBox {
        padding: 40px 20px
    }
}

@media (max-width: 640px) {
    .mainArea .rightBox {
        width: 100%
    }
}

.mainArea .Img {
    height: 100%
}

.mainArea .Img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.mainArea .titleBox {
    margin-bottom: 50px;
    position: relative;
    color: #5e5e5e;
}

@media (max-width: 960px) {
    .mainArea .titleBox {
        text-align: center;
    }
}

.mainArea .titleBox .subTitle {
    position: relative;
    display: block;
    padding-right: 30px;
}

@media (max-width: 960px) {
    .mainArea .titleBox .subTitle {
        padding-right: 0;
    }
}

.mainArea .titleBox .subTitle:after, .mainArea .titleBox .subTitle:before {
    content: "";
    position: absolute;
    top: 20px;
    right: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #62ccc3;
}

@media (max-width: 960px) {
    .mainArea .titleBox .subTitle:after, .mainArea .titleBox .subTitle:before {
        display: none;
    }
}

.mainArea .titleBox .subTitle:after {
    right: 17px;
}

.mainArea .titleBox .titleOuterBox {
    position: relative;
    padding-right: 80px
}

@media (max-width: 960px) {
    .mainArea .titleBox .titleOuterBox {
        padding-right: 0
    }
}

.mainArea .titleBox .title {
    margin-bottom: 20px;
    font-size: 23px;
    font-weight: 600;
    color: #353535;
    letter-spacing: 2px
}

.mainArea .titleBox .notice {
    position: absolute;
    right: 0;
    top: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #353535;
    text-align: right;
    letter-spacing: 2px
}

.thankInfo {
    font-size: 14px;
    font-weight: 500;
    color: #5e5e5e;
    line-height: 1.8
}

.formBox {
    margin-top: 20px;
    font-size: 13px;
    color: #2f2f2f;
}

.formBox em {
    font-style: normal;
    font-weight: 400;
    font-family: "新細明體", Verdana, Geneva, sans-serif;
    color: #e61f6e;
}

.formBox input[type=text], .formBox select, .formBox textarea {
    padding: 5px;
    border: 1px solid #cccccc;
    background-color: #fbfaf5;
}

.formBox input[type=text] {
    width: 100%;
    height: 40px;
    line-height: 40px;
}

.formBox select {
    height: 40px;
}

.formBox textarea {
    display: block;
    width: 100%;
    height: 150px;
}

.formBox .dataBox {
    margin: 0 -10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    letter-spacing: 1px;
}

.formBox .item {
    width: 100%;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-bottom: 5px;
}

.formBox .item.half {
    width: 50%;
}

@media (max-width: 640px) {
    .formBox .item.half {
        width: 100%;
    }
}

.formBox .item.hide {
    pointer-events: none;
    opacity: 0;
}

.formBox .top {
    font-weight: 600;
    color: #616161;
    height: 20px;
    padding: 10px 0;
}

.formBox .bottom {
    font-weight: 500;
    color: #3a3a3a;
}

.checkArea {
    clear: both;
    padding-top: 25px;
    padding-left: 5px;
}

.checkArea .btn {
    display: inline-block;
    vertical-align: middle;
}

.checkArea .btn a,.checkArea .btn button {
    margin: 5px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 160px;
    height: 35px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 5px;
    color: #fff;
    background-color: #b79b5c;
}

.checkArea .btn button{
    border: none;
    outline: none;
}

.checkArea .btn a:hover:before,.checkArea .btn button:hover:before {
    right: auto;
    left: 0;
    width: 100%;
}

.checkArea .btn a:before,.checkArea .btn button:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: #81d8cf;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.checkArea .btn a span,.checkArea .btn button span {
    position: relative;
    z-index: 1;
}

.checkArea .btnBox a {
    margin: 5px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 160px;
    height: 35px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
    background-color: #cab380
}

.checkArea .btnBox a:hover:before {
    right: auto;
    left: 0;
    width: 100%
}

.checkArea .btnBox a:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: #0f765e;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease
}

.checkArea .btnBox a span {
    position: relative;
    z-index: 1
}

.sliderBox {
    position: relative;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle
}

.photoBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.photoBtn {
    display: inline-block;
    vertical-align: middle
}

.photoBtn a {
    margin-left: 5px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 160px;
    height: 40px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 5px;
    color: #fff;
    background-color: #cab380
}

.photoBtn a:hover:before {
    right: auto;
    left: 0;
    width: 100%
}

.photoBtn a:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: #0f765e;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease
}

.photoBtn a span {
    position: relative;
    z-index: 1
}

.notice_copycat {
    color: #f00
}

.note {
    position: absolute;
    left: 55px;
    top: 7px;
    font-family: '微軟正黑體';
    font-size: 15px;
    color: #999
}

.error {
    -webkit-box-shadow: 0 0 10px #f00;
    box-shadow: 0 0 10px #f00
}

.customSelect {
    display: none
}

.customSelectBox {
    position: relative;
    text-align: center;
    letter-spacing: 5px;
    color: #838383;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.customSelectBox .main {
    cursor: pointer;
    position: relative;
    font-weight: 700;
    color: #5e5e5e;
    height: 40px;
    line-height: 40px;
    border: 1px solid #ccc
}

.customSelectBox .main:before {
    content: "";
    position: absolute;
    top: calc(50% + 5px);
    right: 20px;
    width: 9px;
    height: 9px;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    background-origin: padding-box;
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg)
}

.customSelectBox .main.open {
    border-color: #b79b5c
}

.customSelectBox .main.open:before {
    top: calc(50% - 5px);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-color: #b79b5c
}

.customSelectBox ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #ccc;
    border-top: none;
    background-color: #fbfaf5;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 1;
    max-height: 200px;
    overflow-y: auto
}

.customSelectBox li {
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    font-weight: 400
}

.customSelectBox li:not(:first-child) {
    border-top: 1px solid #ccc
}

.radioBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.radioBox > label {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    cursor: pointer;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 20px
}

.radioBox input[type=checkbox], .radioBox input[type=radio] {
    position: relative;
    -webkit-appearance: none;
    margin: 0;
    margin-right: 10px;
    min-height: 20px;
    min-width: 20px;
    border-radius: 50%;
    border: 1px solid #81d8cf;
    outline: none
}

.radioBox input[type=checkbox]:checked:after, .radioBox input[type=radio]:checked:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #81d8cf;
}

