/*font.css 已經引入思源黑體*/

@import url('https://fonts.googleapis.com/css?family=Noto+Serif+TC:200,300,400,500,600,700,900');

* {
    box-sizing: border-box;
}

html,
body {
    font-family: 'Noto Serif TC', 'cwTeXMing', serif, '新細明體', "Times New Roman", Times;
    font-size: 16px;
}

.wrapper {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    max-width: 750px;
    min-width: 320px;
    text-align: center;
    position: relative;
}



/* ----------------------------------------------------
	initial html5 reset
---------------------------------------------------- */

html,
body,
div,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
audio,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
mark,
menu,
meter,
nav,
output,
progress,
section,
summary,
time,
video {
    border: 0;
    outline: 0;
    font-size: 100%;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

body {
    line-height: 1;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section,
blockquote {
    display: block;
}

nav ul {
    list-style: none;
}

ol {
    list-style: none;
}

ul {
    list-style: none;
}

ul ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: none;

}

ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;

}

mark {
    background: none;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted #000;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

input[type=submit],
input[type=button],
button {
    margin: 0;
    padding: 0;
    border: none;
    vertical-align: middle;
}

input,
select,
a img {
    vertical-align: middle;
}



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

           a   

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

a,
button {
    cursor: pointer;
    display: block;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
    font-family: 'Noto Sans TC', Helvetica, Arial, '黑體-繁', 'Heiti TC', '儷黑', 'LiHei', '微軟正黑體', 'Microsoft JhengHei', sans-serif;
}

a:focus,
button:focus {
    outline: none;
    text-decoration: none;
}

.btn {
    border-radius: 10px;
    color: white;
    font-size: 34px;
    font-weight: 700;
    height: 85px;
    width: 400px;
    margin: 0 auto;
    position: relative;

    align-items: center;
    display: flex;
    justify-content: center;

    background: #fde5b3;
    /* Old browsers */
    background: -moz-linear-gradient(-45deg, #fde5b3 0%, #a58b61 92%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #fde5b3 0%, #a58b61 92%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #fde5b3 0%, #a58b61 92%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fde5b3', endColorstr='#a58b61', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
}

.pd .btn,
.kol .btn {
    box-shadow: 3px 3px 30px 3px rgba(0%, 0%, 0%, 0.25);
}

.pd .btn::after,
.kol .btn::after {
    background: url("../images/btn-arr.png") no-repeat top center;
    content: '';
    height: 27px;
    width: 24px;
    position: absolute;
}


h1 {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

h2 {
    color: #c9a062;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 0.05em;
    padding: 23px 20px;
}

.title-line {
    border-bottom: 2px solid #c9a062;
    margin: 0 auto;
    width: 90px;
}


/* ----------------------------------------------------
	burger
---------------------------------------------------- */

#trigger-overlay {
    background-color: #fff;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 100;
    width: 88px;
    height: 88px;
}

.burger {
    position: relative;
    margin: 0 auto;
    padding: 20px;

    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -moz-transition: ease-in-out .5s;
    -o-transition: ease-in-out .5s;
    -webkit-transition: ease-in-out .5s;
    transition: ease-in-out .5s;

    cursor: pointer;

}

.burger > span {
    position: absolute;
    right: 0;
    display: block;
    width: 55px;
    height: 5px;
    margin-right: 19%;
    background: #c9a062;
    border-radius: 4px;
    opacity: 1;


    transform: rotate(0deg);
    transition: ease-in-out .25s;
}

.burger span:nth-child(1) {
    top: 26px
}

.burger span:nth-child(2) {
    top: 43px
}

.burger span:nth-child(3) {
    top: 60px
}


.burger.open span:nth-child(1) {
    top: 50%;
    transform: rotate(135deg)
}

.burger.open span:nth-child(2) {
    opacity: 0;
    /* left: -60px; */
}

.burger.open span:nth-child(3) {
    top: 50%;
    transform: rotate(-135deg)
}

/*-------------------------
          選 單
-------------------------*/

.overlay {
    z-index: 99;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;


    background: -moz-linear-gradient(left, rgba(253, 229, 179, 0.97) 0%, rgba(165, 139, 97, 0.97) 92%, rgba(165, 139, 97, 0.97) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(253, 229, 179, 0.97) 0%, rgba(165, 139, 97, 0.97) 92%, rgba(165, 139, 97, 0.97) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(253, 229, 179, 0.97) 0%, rgba(165, 139, 97, 0.97) 92%, rgba(165, 139, 97, 0.97) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2fde5b3', endColorstr='#f2a58b61', GradientType=1);
    /* IE6-9 */
}

.overlay nav {
    text-align: center;
    position: relative;
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay ul {
    width: 70%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    position: relative;

}

.overlay ul li {
    display: block;
    height: 120px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-bottom: 1px solid rgba(255, 247, 134, 0.4);
}

.overlay ul li:last-child {
    border-bottom: 1px solid transparent;
}

.overlay ul li .navItem {
    width: 100%;
    height: 100%;

    font-family: "Noto Sans TC", "Oswald", sans-serif;
    font-size: 2.75rem;
    font-weight: 500;
    line-height: 120px;
    display: block;
    color: #fff;

    -webkit-transition: color .2s;
    transition: color .2s;
    background-color: transparent;

    transition: background-color .2s ease-in-out;
}

.overlay ul li:hover,
.overlay ul li:focus,
.overlay ul li:active {
    background-color: transparent;
}

.overlay ul li:hover:last-child,
.overlay ul li:focus:last-child,
.overlay ul li:active:last-child {
    background-color: transparent;
}



.overlay-scale {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(.9);
    transform: scale(.9);
    -webkit-transition: -webkit-transform .2s, opacity .2s, visibility 0s .2s;
    transition: transform .2s, opacity .2s, visibility 0s .2s;
}

.overlay-scale.open {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform .4s, opacity .4s;
    transition: transform .4s, opacity .4s;
}




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

         lightbox

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

/* ---------------------
           共用
---------------------- */

.modal {
    background-color: transparent;
}


/*背景底色*/

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;

    background: -moz-linear-gradient(left, rgba(253, 229, 179, 1) 0%, rgba(165, 139, 97, 1) 92%, rgba(165, 139, 97, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(253, 229, 179, 1) 0%, rgba(165, 139, 97, 1) 92%, rgba(165, 139, 97, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(253, 229, 179, 1) 0%, rgba(165, 139, 97, 1) 92%, rgba(165, 139, 97, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2fde5b3', endColorstr='#f2a58b61', GradientType=1);
    /* IE6-9 */
}

.modal-backdrop.fade-2 {
    opacity: 0;
    filter: alpha(opacity=0);
}

.modal-backdrop.in {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.modal-open .modal {
    overflow-x: auto;
    overflow-y: auto;
}

.modal .modal-content {
    position: relative;
    background-color: transparent;
    border-radius: 0px;
    outline: 0;
}

.style-box .modal-content {
    border: none;
    background-color: transparent;
}

.style-box .modal-body {
    padding: 0;
    text-align: center;

}

@media (min-width: 768px) {
    .modal-dialog {
        width: 700px;
    }
}

/* 關閉按鈕 */

.style-box .close {
    position: absolute;
    right: 15px;
    top: 0px;
    z-index: 10;
    font-size: 6em;
    color: #d2d2d2;
    font-family: 'Noto Sans TC';
    font-weight: 400;
    text-shadow: none;
    background-color: transparent;
    opacity: 1;
    cursor: pointer;
    transition: all ease-in-out 0.2s;
}

.style-box .close:hover {
    color: #d2d2d2;
}


/*-------------------------
       活動規則
-------------------------*/

#Reissue .modal-body {
    width: 700px;
    height: 775px;
    background-color: #fff;
    margin: 300px auto;
    padding: 75px 30px;
    text-align: center;
}

#Reissue .modal-dialog {
    width: 700px;
    margin: 0 auto;
}

#Reissue .modal-content {
    width: 700px;
    margin: 0 auto;
    border: none;
    background-color: transparent;
}

#Reissue h4 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 50px;
}

#Reissue .title-line {
    margin: 25px auto 35px;
}


#Reissue ul {
    font-size: 28px;
    line-height: 43px;
    padding-left: 20px;
    margin: 0 auto;
    text-align: justify;
    width: 80%;
}

#Reissue ul li {
    font-family: Helvetica, Arial, '黑體-繁', 'Heiti TC', '儷黑', 'LiHei', '微軟正黑體', 'Microsoft JhengHei', sans-serif;
    list-style: decimal;
}


#Reissue ul li a {
    color: #c9a062;
    display: inline-block;
    vertical-align: baseline;
}



/*-------------------------
       kol-lightbox
-------------------------*/

.kol-lightbox .modal-body {
    width: 700px;
    height: auto;
    background-color: #fff;
    margin: 300px auto;
    padding: 75px 30px;
    text-align: center;
}

.kol-lightbox .modal-dialog {
    width: 700px;
    margin: 0 auto;
}

.kol-lightbox .modal-content {
    width: 700px;
    margin: 0 auto;
    border: none;
    background-color: transparent;
}



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

           slider

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

.slider {
    /*    padding-top: 40px;*/
    position: relative;
    width: 100%;
}

.slick-slider {
    display: inline-block;
    width: 100%;
    position: relative;
    margin: 0 auto;
}

.slick-list {
    width: 100%;
    height: auto;
}

.pd2 .slider {}

.pd2 .slider .pd2-1 {
    height: auto;
    /*    background: #fff;*/
}


/* ----------------------------------------------------
    slider arr
---------------------------------------------------- */

.kol .slick-prev,
.kol .slick-next {
    z-index: 2;
    height: 200px;
    width: 100px;
}


.kol .slick-prev {
    background-image: url("../images/kol-arr-l.png") no-repeat;
}

.kol .slick-prev:before {
    content: url(../images/kol-arr-l.png);
}

[dir='rtl'] .kol .slick-prev:before {
    content: url(../images/kol-arr-l.png);
}

.kol .slick-next {
    background-image: url("../images/kol-arr-r.png") no-repeat;
}

.kol .slick-next:before {
    content: url(../images/kol-arr-r.png);
}

[dir='rtl'] .kol .slick-next:before {
    content: url(../images/kol-arr-r.png);
}



.kol .slick-prev,
.kol .slick-next {
    top: 47%;
}

.kol .slick-prev {
    left: 0%;
}

.kol .slick-next {
    right: 0%;
}


/* ----------------------------------------------------
    slider dot
---------------------------------------------------- */

.slick-dotted.slick-slider {
    position: relative;
}



/*pd*/

.pd2 .slick-dots {
    top: -90px;
    height: 88px;
}

.pd2 .slick-dots li {
    margin: 0px 8px 0;
    height: 88px;
    width: 88px;
}

.pd2 .slick-dots li button {
    background: #f2f2f2;
    border-radius: 88px;
    height: 88px;
    width: 88px;
}


.pd2 .slick-dots li.slick-active button {
    background: white;
}

.pd2 .slick-dots li button:before {
    content: '緊緻';
    color: #333;
    font-size: 28px;
    letter-spacing: 0.05em;
    opacity: 1;
    height: 88px;
    width: 88px;
    border-radius: 88px;
    padding-top: 34px;
}


.pd2 .slick-dots li:nth-child(2) button:before {
    content: '修護';
}

.pd2 .slick-dots li:nth-child(3) button:before {
    content: '香氛';
}

.pd2 .slick-dots li:nth-child(4) button:before {
    content: '抗老';
}

.pd2 .slick-dots li:nth-child(5) button:before {
    content: '美體';
}

.pd2 .slick-dots li:nth-child(6) button:before {
    content: '精華';
}

.pd2 .slick-dots li:nth-child(7) button:before {
    content: '工具';
}


.pd2 .slick-dots li.slick-active button:before {
    color: black;
    opacity: 1;
}

.pd2 .slick-dots li.slick-active button:after {
    content: url(../images/pd2-dot4.png);
    height: 97px;
    opacity: 1;
    position: absolute;
    top: -1px;
    left: 0;
    animation: pd2-dot 5s linear infinite;
}


@keyframes pd2-dot {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);

    }
}

/*edit*/

.edit .slick-dots {
    bottom: 110px;
}

.edit .slick-dots li {
    margin: 0px 10px 0;
}

.edit .slick-dots li button:before {
    color: #f2f2f2;
    font-size: 27px;
    opacity: 1;
}

.edit .slick-dots li.slick-active button:before {
    color: #f2b5c4;
    opacity: 1;
}





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

           kv  

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

header {
    /*    height: 1200px;*/
    position: relative;
    background: transparent;
    animation: fadein 5s;
    -moz-animation: fadein 5s;
    /* Firefox */
    -webkit-animation: fadein 5s;
    /* Safari and Chrome */
    -o-animation: fadein 5s;
    /* Opera */
    z-index: 1;
}

.kv-logo {
    position: absolute;
    left: 0;
    top: 0;
}

.kv-bg {
    background: transparent url(../images/kv-bg.jpg) top center no-repeat;
    height: 1200px;
    width: 100%;
    margin-top: 40px;
    padding-top: 760px;
    text-align: center;
}

.kv-bg img {
    display: block;
    margin: 0 auto;
}

.kv-title2 {
    padding: 40px 0 20px;
}

/*
.kv-title3 {
    position: relative;
}

.kv-title3::after {
    border-right: 1px solid #c9a062;
    content: '';
    height: 50px;
    width: 100%;
    position: absolute;
    top: 0;
}
*/

.kv-line {
    border-right: 1px solid #c9a062;
    height: 50px;
    right: 375px;
    position: relative;
    top: 30px;
}


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

           pd  

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

.pd {
    position: relative;
    margin-top: -270px;
    width: 100%;
    z-index: 0;
}


.pd-bg {
    background: url(../images/pd-bg.jpg) top center no-repeat;
    height: 1492px;
    width: 100%;
    margin: 0 auto;
    padding-top: 400px;
    position: relative;
}

.pd .btn {
    margin: -270px auto 270px;
    padding-right: 25px;
}

.pd .btn span {
    background: url(../images/pd-btn-dec.png) top center no-repeat;
    height: 14px;
    width: 13px;
    margin-top: 4px;
}

.pd .btn::after {
    right: 30px;
}


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

           pd2  

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

.pd2 {
    position: relative;
    margin-top: -200px;
    z-index: 1;

    height: 100%;
}

.pd2 .title {
    background: url(../images/pd2-title-bg.png) top right no-repeat;
    height: 491px;
    width: 100%;
}

.pd2 h1 {
    padding-top: 150px;
}


.pd2 h3 {
    font-size: 30px;
    font-weight: 700;
    display: block;
    letter-spacing: 0.09em;
    padding: 25px 0 40px;
    position: relative;
}


.pd2 h3 span {
    background: url(../images/pd2-title-icon.png) top center no-repeat;
    height: 25px;
    width: 24px;
    display: inline-block;
}

.rule {
    background: #f5eddd;
    border-radius: 10px;
    color: #333;
    font-size: 26px;
    font-weight: 500;
    height: 50px;
    width: 185px;
    letter-spacing: 0.05em;
    margin: 0 auto;
    padding-right: 15px;
    position: relative;

    align-items: center;
    display: flex;
    justify-content: center;
}


.rule::after {
    border-style: solid;
    border-width: 5px 0 5px 10px;
    border-color: transparent transparent transparent #c9a062;
    content: '';
    height: 0;
    width: 0;
    position: absolute;
    right: 25px;
}

.pd2 .slider {
    /*    top: 160px;*/
    margin-top: 110px;
    z-index: 1;
}

.pd2 .slider-line {
    border-right: 1px solid #c9a062;
    height: 40px;
    position: absolute;
    top: 0px;
    z-index: 10;
}


.pd2 .pd2-1 .slider-line {
    left: 66px;
}


.pd2 .pd2-2 .slider-line {
    left: 166px;
}



.pd2 .pd2-3 .slider-line {
    left: 270px;
}



.pd2 .pd2-4 .slider-line {
    left: 376px;
}


.pd2 .pd2-5 .slider-line {
    right: 270px;
}


.pd2 .pd2-6 .slider-line {
    right: 165px;
}


.pd2 .pd2-7 .slider-line {
    right: 58px;
}



.slider-img {
    padding-top: 50px;
}

.pd2-1 {
    position: relative;
}


/*
.pd2-1::after{
    border-right: 1px solid #c9a062;
    content: '';
    height: 40px;
    left: 66px;
    position: absolute;
    top: 0;
    z-index: 10;
}
*/

.pd2 .slider .content {
    background: url(../images/pd2-fb-bg.jpg) top center no-repeat;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 200px;
    max-height: 1200px;
    padding: 0 0 100px 0;
    box-sizing: border-box;
    /*    outline: 1px solid red;*/
}

.pd2 .slider .content .txt p {
    font-family: 'Noto Sans TC', Helvetica, Arial, '黑體-繁', 'Heiti TC', '儷黑', 'LiHei', '微軟正黑體', 'Microsoft JhengHei', sans-serif;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 38px;
    text-align: left;
    margin: 0 auto 10px;
    width: 87%;
}

.pd2 .slider .content .txt {
    padding-top: 35px;
    position: relative;
}

.pd2-dec-l,
.pd2-dec-r {
    position: absolute;
}

.pd2-dec-l {
    left: 10px;
    top: -20px;
}


.pd2-dec-r {
    right: 20px;
    bottom: -45px;
}

.fb-wrap {
    background: white;
    min-height: 200px;
    width: 700px;
    margin: 0 auto;
    top: 55px;
    position: relative;
}

.pd2-1 .fb-wrap {
/*    height: 200px;*/
}

.fb-comments {
    /*    outline: 1px solid black;*/
    /*    background: white;*/
    /*
    top:55px;
    padding: 10px;
*/
    min-height: 200px;
}


.pd2-4 .content,
.pd2-6 .content {
    height: 178px
}


.pd2-7 .txt {
    padding-bottom: 24px;
}

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

           kol  

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

.kol {
    width: 100%;
    padding-top: 40px;
}

.kol > .wrap {
    background: url(../images/kol-bg.jpg) no-repeat top center;
    margin: 0 auto;
    /*    max-width: 1300px;*/
    width: 100%;
    height: 1138px;
    /*    min-width: 1300px;*/
    position: relative;
}

.kol-dec-l,
.kol-dec-r {
    position: absolute;
}

.kol-dec-l {
    left: 0;
}

.kol-dec-r {
    right: 0;
}


.kol .wrapper {
    padding-top: 50px;
}

.kol .title-en {
    padding-bottom: 20px;
}

.kol-frame {
    /*    border: 1px solid red;*/
    height: 900px;
    width: 750px;
    position: relative;
}

.kol-frame img {
    position: absolute;
    left: 35px;
}

.kol .btn {
    letter-spacing: 0.1em;
    padding-right: 20px;
    position: absolute;
    bottom: 120px;
    right: 30px;
    width: 305px;
}

.kol .btn::after {
    top: 33px;
    right: 60px;
}

.kol-lightbox {
    /*    border: 1px solid red;*/
    height: 88px;
    width: 100px;
    position: absolute;
    top: 550px;
    left: 115px;
}



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

           edit  

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

.edit {
    padding-bottom: 115px;
}

.edit h2 {
    padding-bottom: 0;
}

.edit h1 {
    padding: 15px 0 25px;
}

.edit .title-line {
    margin-bottom: 30px;
}

.edit .slider {
    /*    height: 910px;*/
}

.edit .wrap {
    height: 910px;
}

.edit-frame {
    border: 1px solid #c9a062;
    height: 840px;
    width: 700px;
    position: absolute;
    top: 25px;
    left: 25px;
}


.edit p {
    font-family: 'Noto Sans TC', Helvetica, Arial, '黑體-繁', 'Heiti TC', '儷黑', 'LiHei', '微軟正黑體', 'Microsoft JhengHei', sans-serif;
    font-size: 38px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 50px;
    text-align: justify;
    padding: 600px 0;
    margin: 0 auto;
    width: 85%;
}


.edit .btn {
    height: 70px;
    width: 260px;
    left: 225px;
    position: absolute;
    top: 800px;
}