@charset "utf-8";

/* CSS Document */
body {
    font-family: "Century Gothic", "Arial", "微軟正黑體", "Microsoft JhengHei", "Noto Sans", sans-serif;
    font-weight: 400;
    font-size: 15px;
    display: block;
    margin: 0 auto;
    padding: 0;
    clear: both;
    position: relative;
}

.lan_wrapper {
    font-family: "微軟正黑體", "Microsoft JhengHei", "Noto Serif", serif, sans-serif;
    width: 100%;
    max-width: 1280px;
    display: block;
    margin: 0 auto;
    clear: both;
    color: #000;
    background: #e2ebfc;
    overflow: hidden;
    font-optical-sizing: auto;
    /*讓瀏覽器根據字體大小自動開啟或關閉光學尺寸調整*/
}

.lan_wrapper img {
    max-width: none;
    width: 100%;
}

.lan_wrapper ul {
    margin: 0;
    padding: 0;
}

.lan_wrapper ul li {
    list-style-type: disc;
    list-style-position: inside;
    line-height: 1.6;
    letter-spacing: 0.7;
}

.lan_wrapper a {
    cursor: pointer;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.lan_wrapper a:hover {
    text-decoration: none;
}

.lan_wrapper .bg-img img {
    display: block;
}

section {
    margin: 0 auto;
    width: 100%;
    clear: both;
    position: relative;
    display: block;
}

* {
    box-sizing: border-box;
}

.lan_wrapper sub,
.lan_wrapper sup {
    font-size: 65%;
    line-height: 0 !important;
    position: relative;
    vertical-align: baseline;
    font-weight: 300;
}

.mb {
    display: none !important;
}

@media (max-width: 820px) {
    .pc {
        display: none !important;
    }

    .mb {
        display: block !important;
    }
}

.color-text {
    background: -webkit-linear-gradient(left, #000 0%, #000 24%, #000 36%, #8eacc6 46%, #000 52%, #8eacc6 58%, #000 67%, #000 100%);
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    background-size: 300%;
    -webkit-animation: shineText 10s infinite;
    animation: shineText 10s infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes shineText {
    0% {
        background-position: 0 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}

.underline {
    border-bottom: #000 1px solid;
}

.text-shadow-w {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.text-shadow-b {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.label_01 {
    color: #fff;
    text-align: center;
    background-color: #8eacc6;
    padding: 0.02em 0.4em;
    margin-right: 0.4em;
}

.label_01:nth-of-type(3n) {
    margin-right: 0
}

.label_02 {
    color: #fff;
    text-align: center;
    background-color: #8eacc6;
    display: block;
    padding: 0.02em 0.4em;
    margin-right: 0.4em;
}

/***********Button*********/

.btn {
    margin: 0 3px;
    color: #fff !important;
    background: #3a577f;
    outline: 0;
    transition: all 0.5s ease;
    font-weight: 400;
    padding: 17px 13px;
    font-size: 32px;
    font-weight: 400;
    line-height: 100%;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    border-radius: 0;
    border: 1px solid #3a577f;
    /*box-shadow: 0 0 10px #fff;*/
    width: 360px;
    letter-spacing: 0.1rem;
}

.btn:hover,
.btn:focus,
.btn:active {
    border: 1px solid #000;
    color: #000 !important;
    background: #fff;
}

@media screen and (max-width: 1024px) {
    .btn {
        padding: 12px 13px 12px 17px;
        padding: 9.6px 10.4px 9.6px 13.6px;
        font-size: 14.5px;
        width: 140px;
    }
}

@media screen and (max-width: 820px) {
    .btn {
        font-size: 4vw;
        letter-spacing: 0.05em;
        width: 35vw;
        padding: 2vw 2.6vw 2vw 3.4vw;
        padding-left: 4vw;
    }

}

.shine-btn {
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    vertical-align: middle;
}

.shine-btn:before {
    content: '';
    display: block;
    position: absolute;
    background: url(../images/shine_light.png) center center no-repeat;
    background-size: cover;
    width: 200%;
    height: 200%;
    top: -5%;
    pointer-events: none;
    -webkit-animation: btn-shine 6s ease 2s infinite;
    animation: btn-shine 6s ease 2s infinite;
}

@keyframes btn-shine {
    0% {
        transform: translateX(-150%) skewX(-15deg);
        opacity: 1;
    }

    80% {
        transform: translateX(450%) skewX(-15deg);
        opacity: 1;
    }

    100% {
        transform: translateX(450%) skewX(-15deg);
        opacity: 0;
    }
}

.lan_wrapper .white {
    color: #fff;
}

.lan_wrapper .black {
    color: #000;
}

.lan_wrapper .bold {
    font-weight: 600;
}

.lan_wrapper .skew {
    display: block;
    font-weight: 600;
    transform: skewX(-15deg);
    -webkit-transform: skewX(-15deg);
    -moz-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    -o-transform: skewX(-15deg);
}

.lan_wrapper .reflection {
    transform: scaleX(-1) scaleY(-1);
    -webkit-transform: scaleX(-1) scaleY(-1);
    -moz-transform: scaleX(-1) scaleY(-1);
    -ms-transform: scaleX(-1) scaleY(-1);
    -o-transform: scaleX(-1) scaleY(-1);
    transform-origin: center bottom;
    -webkit-transform-origin: center bottom;
    -moz-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    -o-transform-origin: center bottom;
}

/***********錨點位置調整*********/

.adjust,
.adjust2 {
    position: absolute;
    display: block;
    z-index: 1;
    width: 100px;
    top: -135px;
}

@media screen and (max-width: 500px) {
    .adjust {
        position: absolute;
        display: block;
        z-index: 1;
        width: 100px;
        top: -130px;
    }

    .adjust2 {
        position: absolute;
        display: block;
        z-index: 1;
        width: 100px;
        top: 140px;
    }

}


/***********標準字級*********/

.lan_wrapper h1,
.lan_wrapper h2,
.lan_wrapper h3,
.lan_wrapper h4,
.lan_wrapper h5,
.lan_wrapper h6,
.lan_wrapper p {
    font-family: "微軟正黑體", "Microsoft JhengHei", "Noto Serif", serif, sans-serif;
    line-height: 1.3;
    padding: 0;
    margin: 0 auto;
    text-decoration: none;
    font-weight: 400;
    color: #000f;
    text-align: center;
}

.lan_wrapper h1 {
    font-size: 44px;
    /*KV title*/
}

.lan_wrapper h2,
.lan_wrapper h3,
.lan_wrapper h4 {
    font-size: 40px;
    /*區域 title*/
    /*段落 title*/
    /*服務 title*/
}

.lan_wrapper h5 {
    font-size: 38px;
    /*段落內文1*/
}

.lan_wrapper h6 {
    font-size: 32px;
    line-height: 1.5;
    /*段落內文2*/
}

.lan_wrapper p,
.lan_wrapper ol li {
    font-size: 24.5px;
    /*段落內文3*/
    line-height: 1.6;
}

.lan_wrapper p small {
    font-size: 90%;
    /*注意事項內文*/
}


@media (max-width: 1280px) {
    .lan_wrapper h1 {
        font-size: 3.4375vw;
        /* 44px */
    }

    .lan_wrapper h2,
    .lan_wrapper h3,
    .lan_wrapper h4 {
        font-size: 3.125vw;
        /* 40px */
    }

    .lan_wrapper h5 {
        font-size: 2.96875vw;
        /* 38px */
    }

    .lan_wrapper h6 {
        font-size: 2.5vw;
        /* 32px */
    }

    .lan_wrapper p,
    .lan_wrapper ol li {
        font-size: 1.92vw;
        /* 26px */
        line-height: 1.6;
    }

}

@media (max-width: 820px) {
    .lan_wrapper h1 {
        font-size: 5vw;
        /* 44px 對 1280→3.4375vw 再依 820 調整比例 (1280/820≈1.56) */
    }

    .lan_wrapper h2 {
        font-size: 5.8vw;
        letter-spacing: 0.6vw;
    }


    .lan_wrapper h3 {
        font-size: 5.4vw;
        /* 40px */
    }

    .lan_wrapper h4 {
        font-size: 5.2vw;
        /* 40px */
    }

    .lan_wrapper h5 {
        font-size: 4.1vw;
        /* 38px */
    }

    .lan_wrapper h6 {
        font-size: 3.8vw;
        /* 32px */
    }

    .lan_wrapper p {
        font-size: 3.8vw;
        /* 26px */
        line-height: 1.6;
    }

    .lan_wrapper p small.underline,
    .lan_wrapper ol li {
        font-size: 3.2vw;
        /* 26px */
        line-height: 1.6;
    }

    .lan_wrapper p small {
        font-size: 92%;
    }

}

/************sec_01 KV*************/

.sec_01 .content {
    width: 50%;
    position: absolute;
    left: 0;
    top: 17%;
    z-index: 1;
    text-align: center;
}

.sec_01 .shine1 {
    width: 4%;
    height: auto;
    position: absolute;
    top: 46%;
    right: 20.5%;      
}

.sec_01 .shine2 {
    width: 5%;
    height: auto;
    position: absolute;
    top: 14%;
    right: 19.5%;
}

.shine {
    animation: shine .25s infinite alternate;
    pointer-events: none;
}

.shine2 {
    animation: shine .3s infinite alternate;
    pointer-events: none;
}

@keyframes shine {
    0% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

.sec_01 .content .logo {
    width: 50%;
    margin: 0 auto 5%;
}

.sec_01 .content a {
    margin-top: 3%;
}


@media (max-width: 820px) {
    .sec_01 .content .logo {
    width: 60%;
}

.sec_01 .shine1 {
    width: 5%;
    top: 50%;
    right: 19.5%;
}

.sec_01 .shine2 {
    width: 6%;
    top: 15%;
    right: 18.6%;
}


}

/************sec_02*************/

.sec_02 {
    width: 92%;
    margin: 0 auto 5%;
    padding-top: 3%;
    background: #fff;
}

.sec_02 h2.title {
    position: relative;
    background-color: #fff;
    margin: auto;
    z-index: 1;
    line-height: 1.2;
    margin-bottom: 5%;
}

.sec_02 h2.title:before {
    content: "";
    display: block;
    position: absolute;
    background-color: #fff;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    width: 45%;
    height: 100%;
    z-index: -1;
}

.sec_02 h2.title:after {
    content: "";
    display: block;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: -50%;
    width: 95%;
    height: 100%;
    border-bottom: #000 1px solid;
    z-index: -2;
}


.sec_02 .machine {
    width: 39.5%;
    margin-left: -4.5%;
}

.sec_02 .content_01 {
    width: 67.5%;
    position: absolute;
    left: 34%;
    top: 13%;
    z-index: 1;
    text-align: center;
}

.sec_02 .content_01 h6 {
    margin-top: 5%;
}

.sec_02 .content_02 {
    margin-top: -2%;
   /* overflow-x: hidden;*/
}

.sec_02 .content_02 .text_wrap {
    width: 77%;
    margin: 3% auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 8% 2.5%;
    position: relative;
    padding-bottom: 6%;
    overflow: hidden;
}

.sec_02 .content_02 .text_wrap:before {
    content: '';
    display: block;
    position: absolute;
    background: url(../images/shine_light.png) center center no-repeat;
    background-size: cover;
    width: 200%;
    height: 200%;
    top: -5%;
    pointer-events: none;
    -webkit-animation: shine2 8s ease 2s infinite;
    animation: shine2 8s ease 2s infinite;
}

@keyframes shine2 {
    0% {
        transform: translateX(-150%) skewX(-45deg);
        opacity: 1;
    }

    80% {
        transform: translateX(450%) skewX(-45deg);
        opacity: 1;
    }

    100% {
        transform: translateX(600%) skewX(-45deg);
        opacity: 0;
    }
}

.sec_02 .content_02 h4 {
    width: 100%;
    padding: 2.5% 5%;
    background-color: #8eacc6;
    color: #fff;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.sec_02 .content_03 {
    position: relative;
    margin-top: 9%;
}

.sec_02 .content_03 .model {
    margin-top: 5%;
}

.sec_02 .content_03 .text_wrap {
    position: absolute;
    top: 27%;
    width: 67.5%;
    left: 34%;
    text-align: center;
}

.sec_02 .content_03 a {
    margin: 3% auto 2%;
 text-decoration: none;
}

@media (max-width: 820px) {

    .sec_02 {
        padding-top: 5vw;
        padding-bottom: 8vw;
    }

    .sec_02 h2.title {
        margin-bottom: 6vw;
    }

    .sec_02 h2.title:before {
        width: 52%;
    }

    .sec_02 h2.title:after {
        width: 92%;
        border-bottom-width: 0.1vw;
    }

    .sec_02 .machine {
        width: 53%;
        margin-left: -4.5%;
    }

    .sec_02 .content_01 {
        width: 64%;
        left: 37%;
        top: 34vw;
    }

    .sec_02 .content_02 {
        margin-top: 5vw;
    }

    .sec_02 .content_02 h4 {
        font-size: 4vw;
        padding: 1vw 2vw;
    }

    .sec_02 .content_02 .text_wrap {
        width: 90%;
         padding-bottom: 8vw;
    }

    .sec_02 .content_03 .model {
        width: 65%;
        margin: 3vw auto;
    }

    .sec_02 .content_03 .text_wrap {
        position: relative;
        width: 100%;
        left: auto;
    }

}


/************sec_03*************/

.sec_03 {
    width: 92%;
    margin: 0 auto 5%;
    padding-bottom: 1%;
    background: rgba(255, 255, 255, 0.5)
}

.sec_03 h2 {
    width: 100%;
    padding: 0.7% 5%;
    margin: 0 auto;
    background-color: #8eacc6;
    color: #fff;
    font-weight: 600;
}

.sec_03 .content_wrap {
    width: 94%;
    margin: 4% auto 7%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.2% 2.4%;
}

.sec_03 .content_wrap:last-of-type {
    margin-bottom: 4%;
}

.sec_03 .content_wrap .service_box {
    width: 100%;
    padding: 7% 5%;
    text-align: center;
    background-color: #fff;
}

.sec_03 .content_wrap .service_box img {
    width: 100%;
    display: block;
    margin: 6% auto;
}

.sec_03 .content_wrap .service_box h3 {
    font-weight: 600;
}

.sec_03 .content_wrap .service_box h4 {
    color: #3a577f;
    font-weight: 600;
    margin-bottom: 2%;
}

.sec_03 .content_wrap .service_box a {
    margin: 5% auto 1.5%;
    text-decoration: none;
}

@media (max-width: 820px) {
    .sec_03 {
        width: 90%;
        margin: 0 auto;
        padding-bottom: 1%;
        background: none;
    }

    .sec_03 .content_wrap {
        width: 100%;
        margin: 0 auto 4vw;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 5vw 0;
    }

    .sec_03 .content_wrap .service_box img {
        margin: 3vw auto;
    }

    .sec_03 .content_wrap .service_box .title h3,
    .sec_03 .content_wrap .service_box .title p {
        display: inline-block;
    }

    .sec_03 h2 {
        padding: 1vw 2vw;
    }

    .sec_03 h2.title_makeup {
        margin-top: 4vw;
    }

    .sec_03 .content_wrap:last-of-type {
        margin-bottom: 5vw;
    }

}

/************sec_04*************/

.sec_04 {
    width: 92%;
    margin: 0 auto 10%;
}

.sec_04 h2 {
    text-align: center;
    display: table;
    margin: 0 auto 3%;
    border-bottom: #000 1px solid;
}

@media (max-width: 820px) {
    .sec_04 {
        width: 90%;
        margin: 5vw auto 10vw;
    }

}