/*font.css 已經引入思源黑體*/
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+TC:400,500&display=swap');

* {
    box-sizing: border-box;
}

html,
body {
    font-family: 'Noto Sans TC', Helvetica, Arial, '黑體-繁', 'Heiti TC', '儷黑', 'LiHei', '微軟正黑體', 'Microsoft JhengHei', sans-serif;
    font-size: 16px; 
    background-color: #e8d9cf;
/*    background: url(../demo/index.jpg) center top no-repeat;*/
}

.wrapper {
    overflow: hidden;
/*    width: 100%; max-width: 750px; min-width: 320px; */
    margin: 0 auto;
    
}


/* ----------------------------------------------------
	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 {
    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;
}
a:focus,
button:focus{
    outline: none;
    text-decoration: none;
}



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

         按鈕  btn 

-------------------------*/
.btn{
    display:block; padding:0; border-radius:0;
    font-family: 'Noto Sans TC', '微軟正黑體';
}






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

           menu

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

/*-------------------------
          漢堡icon
-------------------------*/
#trigger-overlay {
    position: fixed; right: 0px; top:0px; z-index: 100;
    width: 90px; height: 90px;
    /* border-radius: 50px; */
    /* background-color:black; */
}

.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;  left: 8px;
    display: block;

    width: 60%; height: 4px;
    margin: 0 10%;
    background: #e95867;
    border-radius: 4px;
    opacity: 1;


    transform: rotate(0deg);
    transition: ease-in-out .25s;
}
.burger span:nth-child(1) { top: 29px}
.burger span:nth-child(2) { top: 42px;}
.burger span:nth-child(3) { top: 57px}

.burger.open span:nth-child(1) {
    top: 50%;
    transform: rotate(135deg);
    background: #fff;
}
.burger.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}
.burger.open span:nth-child(3) {
    top: 50%;
    transform: rotate(-135deg);
    background: #fff;
}


/*-------------------------
          選 單
-------------------------*/
.overlay {
    z-index: 99;
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    
    background: rgba(173, 145, 122, 0.95);
}

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

    display: flex;
    align-items:flex-start;
    justify-content: center;
    padding-top: 100px;
}

.overlay ul {
    position: relative;
    width: 80%;
    list-style: none;
    padding: 0; margin: 0;
    display: inline-block;
}
.overlay ul li {
    display: block;
    min-height: 120px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.48);
    
}
.overlay ul li:last-child,
.overlay ul li:nth-child(4){
    border-bottom: 1px solid transparent;
    
}
.overlay ul li .navItem {
    width: 100%; height: 100%;

    font-family: "Noto Sans TC", sans-serif;
    font-size: 2.75rem; font-weight: 400;
    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 {
    color: #e95867;
    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;
}

@media screen and (min-width: 751px) {
    .overlay ul li {
        min-height: 100px;
    }
    .overlay ul li .navItem {
        font-size: 2rem;
        line-height: 100px;
    }
    
}


.menulogo{
    display: block;
    width: 100%; height: 200px;
    margin: 40px 0;
    background: url(../images/kv/menu-logo_etudehouse.png) center no-repeat; 
}


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


          內  容


-------------------------*/
/* 共用框 */
.inner{
	position: relative;
    width: 750px; max-width: none !important;
    margin: 0 auto;
    padding: 0;
}



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

    fixed 療程搶先體驗

-------------------------*/
.fix{
    position: fixed; z-index: 50;
    right: 0; top: 32vh;
    width: 69px; height: 358px;
    display: block;
}


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

           kv

-------------------------*/
.kv{
    width: 750px; height: 1260px;
    
    margin: 0 auto;
    background: url(../images/kv/kv_bg.jpg) center top no-repeat;
}
 
.kv .inner{
    
}


/*標題*/
.kv .title{
    position: relative; z-index: 5; top: 840px;
    width: 100%; height: 280px;
    text-align: center;
}
.kv .title h1{
    color: #fff;
    font-size: 44px;
    line-height: 1.8em;
    font-weight: 400;
    letter-spacing: 0.05em;  
}
.kv .title h2{
    color: #fff;
    font-size: 50px;
    line-height: 1.2em;
    font-weight: 500;
    letter-spacing: 0.05em;
}
.kv .title p{
    position: relative;
    color: #ffb6c7;
    font-size: 32px;
    line-height: 1.5em;
    font-weight: 400;
    letter-spacing: 0.3em;
    padding-left: 10px;
}
.kv .title p:before,
.kv .title p:after{
    position: absolute;
    content: "";
    display: block;
}
.kv .title p:after{
    top:20px; right: 95px;
    width: 93px; height: 8px;
    background: url(../images/kv/dec-right.png) center top no-repeat;
}
.kv .title p:before{
    top:20px; left: 95px;
    width: 93px; height: 8px;
    background: url(../images/kv/dec-right.png) center top no-repeat;
    transform: rotate(180deg);
}




/*按鈕*/
.kv .btn{
    width: 325px; height: 75px;
    margin: 25px auto;
    border-radius: 50px;
    color: #fff;
    font-size: 36px;
    line-height: 70px;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-align: center; 
    background-color: #e95867;
    box-shadow: 3px 5px 0 3px #df4050;
}
.kv .btn span{
    font-size: 46px;
    font-weight: 600;
/*    line-height: 1em;*/
    vertical-align:bottom;
    font-style: italic;
    
}



/*線 動態*/
.kv-streak{
    position: absolute; bottom: -20px; right: 10px;
    width: 161px; height: 30px;
}
.kv-streak:before{
    top: 0; left: 0;
    position: absolute;
    display: block;
    content: "";
    width: 152px; height: 1px;
    background-color: #000;
    animation: 1s kv_arrow1  ease-in-out;
}
@keyframes kv_arrow1 {
    0% {
        width: 0px;  
    }
    100% {
        width: 152px;
    }
} 
.kv-streak:after{
    top: 0;  right: 8px;
    position: absolute;
    display: block;
    content: "";
    width: 1px; height: 30px;
    background-color: #000;
    animation: .5s kv_arrow2  ease-in-out;
    
}
@keyframes kv_arrow2 {
    0% {
        height: 0px; 
        opacity: 0;
    }
    20%{
        opacity: 1;
    }
    100% {
        height: 30px;
        opacity: 1;
    }
} 

.kv-streak span{
    position: absolute; bottom: 0; right: 1px;
    display: block;
    width: 13px; height: 6px;
    background: url(../images/kv/arrow-3.png) center top no-repeat;
    animation: 1s kv_arrow3 infinite ease-in-out ;
    animation-delay: 0.5s;
    opacity: 0;
}
@keyframes kv_arrow3 {
    0% {
        bottom: -4px; 
        opacity: 1;
    }
    50%{
        bottom: 0px;
        opacity: 1;
    }
    100% {
        bottom: -4px;
        opacity: 1;
    }
} 



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

        vote

-------------------------*/
.vote{
    position: relative;
    width: 750px; min-height: 1900px;
    margin: 0 auto;
    background-color: #fff;
    padding-top: 40px;
}

/*標題*/
.vote .title{
    width: 100%;
}
.vote .title h2 {
    color: #e95867;
    font-size: 50px;
    line-height: 1.3em;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-align: center;
    margin: 0 0 30px 0;
}
.vote .title h3 {
    color: #e95867;
    font-size: 40px;
    line-height: 1.3em;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-align: center;
}
.vote .title p{
    position: relative; z-index: 2;
    color: #333;
    font-size: 30px;
    line-height: 1.5em;
    letter-spacing: 0.05em;
    font-weight: 400;
    text-align:justify;
    padding: 0 11%;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 2px #fff);
}
.vote .title span{
    width: 80%;
    color: #e95867;
    font-size: 18px;
    line-height: 1.4em;
    letter-spacing: 0.03em;
    padding: 0 10%;
}

/*產品區*/
.vote .pd{
    position: relative; z-index: 1;
    top: -90px;
    width: 750px; height: 1480px;
    background: url(../images/data/pd1-img.jpg) center top no-repeat;
    padding-top: 260px;
}


/*-------------------------
        slides
-------------------------*/
#ettudegirl {
    position: relative; z-index: 2;
	display: block;
	width: 100%;
    padding-top: 100px;
}
/*矩形背景*/
#ettudegirl:before{
    position: absolute; top: 0;
    content: "";
    display: block;
    width: 750px; height: 1350px;
    -webkit-clip-path: polygon(0 15%, 100% 0%, 100% 85%, 0% 100%);
    clip-path: polygon(0 15%, 100% 0%, 100% 85%, 0% 100%);
    
    
    background-color: #ddc9bc;
}
#ettudegirl .slider_wrap {
    position: relative;
    width: 535px; height: 1010px;
    padding-bottom: 10px;
}

/*置中*/
.center .slider_wrap {
    opacity: 0.5;
    transform: scale(0.88);
    transition: all 300ms ease;
}
.center .slick-center.slider_wrap{
    opacity: 1;
    transform: scale(1);
    box-shadow: 12px 12px 0 0 rgba(179, 146, 121, 0);
}
.center .slick-center.slider_wrap .ettudegirl_bg{
    box-shadow: 12px 12px 0 0 rgba(179, 146, 121, 0.6)
}
/**/
#ettudegirl .ettudegirl_bg{
    position: absolute; top: 0;
    width: 535px; height: 998px;
    background:url(../images/data/ettudegirl-box.jpg) no-repeat left top;   
}


#ettudegirl .crown{
    position: absolute; top: 93px; right: 20px;
    z-index: 10;
}


/*------------
    照片小圖
--------------*/
#ettudegirl .profile_img{
    position: absolute; z-index: 3;
    top: 13px; left: 17px;
    width: 45px; height: 45px; 
    overflow: hidden;
}

/*------------
    愛心
--------------*/
#ettudegirl .vote-heart{
    position: absolute; z-index: 3;
    top: 600px; left: 16px;
    width: 83px; height: 74px;
    background:url(../images/data/heart.png) no-repeat left top; 
    cursor: pointer;
    transition:all ease-in-out 0.2s;
/*
    animation: 1.8s vote-heart  ease-in-out;
    animation-iteration-count: infinite;
*/
}
@keyframes vote-heart{
    0% {
        transform: scale(1);
    }
    10% {
        transform: scale(0.7);
    }
    20% {
        transform: scale(0.9);
    }
    40% {
        transform: scale(0.8);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
} 
#ettudegirl .vote-heart:hover{
    background:url(../images/data/heart-active.png) no-repeat left top; 
    transition:all ease-in-out 0.2s;
}
/*------------
    kol圖片
--------------*/

#ettudegirl #girl_photo{
    position: absolute; z-index: 3;
    top: 73px;
    width: 535px; height: 535px;
    
}
#ettudegirl #girl_photo>.wrap {
    position: relative;
    width: 535px;
    overflow: hidden;
}
#ettudegirl #girl_photo>.wrap video{
    width: 535px;
}

#girl_photo{
    position: relative;
}
/*左右按鍵*/
#girl_photo .slick-prev{
    position: absolute; top: 250px; left: 10px; z-index: 50;
    width: 41px; height: 41px;
    background: url(../images/data/arrow-l.png) no-repeat left top;
/*    transform: rotateY(180deg);*/
    opacity: 0.8;
}
#girl_photo .slick-next{
    position: absolute; top: 250px; right: 10px; z-index: 50;
    width: 41px; height: 41px;
    background: url(../images/data/arrow.png) no-repeat right top;
    opacity: 0.8;
}
#girl_photo .slick-prev:before,
#girl_photo .slick-next:before{
    color: transparent;
}
#girl_photo .slick-prev:hover{
    position: absolute; top: 250px; left: 10px; z-index: 50;
    width: 41px; height: 41px;
    background: url(../images/data/arrow-l.png) no-repeat left top;
/*    transform: rotateY(180deg);*/
    opacity: 1;
}
#girl_photo .slick-next:hover{
    position: absolute; top: 250px; right: 10px; z-index: 50;
    width: 41px; height: 41px;
    background: url(../images/data/arrow.png) no-repeat right top;
    opacity: 1;
}


/* Dots */
#girl_photo  .slick-dotted.slick-slider {
	margin-bottom: 0px;
}
#girl_photo .slick-dots {
	position: absolute; bottom: -30px; left: 0px; z-index: 10;
	display: block;
	width: 100%;
	padding: 0; margin: 0;
	list-style: none;
	text-align: center;
}
#girl_photo .slick-dots li {
	position: relative;
	display: inline-block;
	cursor: pointer;
	width: 9px; height: 9px;
    
	margin: 5px;
	padding: 0;
}
#girl_photo .slick-dots li button {
	font-size: 0;
	line-height: 0;
	display: block;
	cursor: pointer;
	color: transparent;
	border: 0;
    border-radius: 150px;
	outline: none;
	background: transparent;
}
#girl_photo .slick-dots li button:hover,
#girl_photo .slick-dots li button:focus {
	outline: none;
}
#girl_photo .slick-dots li button:hover:before {
	opacity: 1;
}
#girl_photo .slick-dots li button:before {
	position: absolute; top: 0; left: 0;
	width: 9px; height: 9px;
	content: '';
	text-align: center;
    border-radius: 50px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
#girl_photo .slick-dots li button:after{
    position: absolute; top: 0; left: 50%;
    content: '';
    width: 9px; height: 9px;
    background-color: #333;
    border-radius: 50px;
    opacity: .4;
}
#girl_photo .slick-dots li.slick-active button:after {
	opacity: 1;
}



/*------------
    文字區
--------------*/
#ettudegirl .txt{
    position: absolute;  z-index: 3;
    top: 675px;
    width: 100%; height: 324px;
    padding: 0 20px;
}
/*目前票數*/
#ettudegirl .txt .number{
    color: #333;
    font-size: 32px;
    line-height: 1.3em;
    font-weight: 500;
    letter-spacing: 0.03em;
}
#ettudegirl .txt .number>p{
    display: inline-block;
    vertical-align: baseline;
    margin: 0 5px;
}

/*kol名字*/
#ettudegirl .txt .name{
    color: #333;
    font-size: 30px;
    line-height: 1.3em;
    font-weight: 500;
    letter-spacing: 0.03em;
    margin-bottom: 5px;
}
#ettudegirl .txt .name span{
    color: #a6a6a6;
}

/*p*/
#ettudegirl .txt>p{
    color: #333;
    font-size: 20px;
    line-height: 1.3em;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-align: justify;
}




/*--------------------
        數字導航
--------------------*/
#slider-nav{
    position: relative; z-index: 2;
    top: 0px; left: 150px;
	display: block;
	width: 125px; height: 120px;
}
#slider-nav:before{
    position: absolute; right: 0; bottom: 0;
    content: "";
    display: block;
    width: 65px; height: 61px;
    background:url(../images/data/dot_sum.png) no-repeat bottom right;
}
#slider-nav .slider_wrap {
    position: relative;
    width: 100%;
	color: #fff;
    font-size: 72px;
    line-height: 1.3em;
    font-weight: 500;
    text-align: right;
    padding-right: 60px;
}

/*左右按鍵*/
#slider-nav .slick-prev{
    position: absolute; top: 45px; left: -75px; z-index: 50;
    width: 28px; height: 53px;
    background: url(../images/data/aeeow2.png) no-repeat right top;
    transform: rotateY(180deg);
}
#slider-nav .slick-next{
    position: absolute; top: 45px; right: -75px; z-index: 50;
    width: 28px; height: 53px;
    background: url(../images/data/aeeow2.png) no-repeat right top;
}
#slider-nav .slick-prev:before,
#slider-nav .slick-next:before{
    color: transparent;
}
#slider-nav .slick-prev:hover{
    position: absolute; top: 45px; left: -75px; z-index: 50;
    width: 28px; height: 53px;
    background: url(../images/data/aeeow2.png) no-repeat right top;
    transform: rotateY(180deg);
}
#slider-nav .slick-next:hover{
    position: absolute; top: 45px; right: -75px; z-index: 50;
    width: 28px; height: 53px;
    background: url(../images/data/aeeow2.png) no-repeat right top;
}




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

        product

-------------------------*/
.product{
    position: relative;
    min-height: 1000px;
    width: 750px; margin: 0 auto;
    background-color: #fff;
    
}

.product .title{
    
}
.product .title h2{
    width: 100%; height: 117px;
    text-indent: -9999px;
    background:url(../images/pd/pd_title.png) no-repeat center top;  
    margin-bottom: 20px;
}


/**/
.product .pd1 .txt{
    text-indent: -9999px;
    width: 100%; height: 146px;
    background:url(../images/pd/pd1_txt.png) no-repeat left top;  
}
.product .pd1 .pic{
    position: relative; z-index: 2;
    left: 210px;
    width: 374px; height: 284px;
    background:url(../images/pd/pd1_babyegg.png) no-repeat center top;  
}
.product .pd1 .pic:before{
    position: absolute; z-index: 1;
    top: 117px; left: -160px;
    content: "";
    display: block;
    width: 623px; height: 196px;
    background:url(../images/pd/pd1_point.png) no-repeat center top;  
}
.product .pd1 p{
    color: #333;
    font-size: 32px;
    line-height: 1.3em;
    font-weight: 400;
    letter-spacing: 0.em;
    text-align: justify;
    padding: 0 13%;
    margin: 75px 0 40px;
}

.product .pd2{
    margin: 65px 0 0 0 ;
}
.product .pd2 .txt{
    text-indent: -9999px;
    width: 100%; height: 132px;
    background:url(../images/pd/pd2_txt.png) no-repeat left top;  
}
.product .pd2 .pic{
    position: relative; z-index: 2;
    left: 210px;
    width: 360px; height: 360px;
    background:url(../images/pd/pd2_brush.png) no-repeat center top;  
}
.product .pd2 p{
    color: #333;
    font-size: 32px;
    line-height: 1.3em;
    font-weight: 400;
    letter-spacing: 0.em;
    text-align: justify;
    padding: 0 13%;
    margin: 70px 0 40px;
}






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

        share

-------------------------*/
.share{
    position: relative;
    width: 750px; min-height: 1418px;
    background: url(../images/share/share_bg.jpg) center top no-repeat #fff;
    margin: 0 auto;
    padding: 130px 0 0;
}

/*標題*/
.share .title{
    width: 100%; height: auto;
    margin-bottom: 94px;
}
.share .title h2 {
    position: relative;
    text-indent: -9999px;
    width: 100%; height: 117px;
    background: url(../images/share/share_h2.png) center no-repeat;
}

.share .bg{
    position: absolute;
    top: 142px; left: 70px;
    width: 608px; height: 596px;
    overflow: hidden;
}



/*-------------------------
          slides
-------------------------*/
#user_sharing{
    position: relative; z-index: 4;
    width: 655px; height: 950px;
    margin: 0 auto;
    padding-top: 10px;
}
#user_sharing .slider_wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 650px; height: auto;
    margin: 0 auto;
}

/**/
#user_sharing .box{
    position: relative;
    width: 305px; height: 305px;
    margin: 0 9px 64px 2px;
}
/*使用者照片*/
#user_sharing .box .user_photo{
    position: absolute; z-index: 5;
    width: 75px; height: 75px;
    overflow: hidden;
}
#user_sharing .box .user_photo img{
    width: 75px; height: 75px;
}
/*遊戲結果照片*/
#user_sharing .box .result{
    position: absolute; z-index: 3;
    left: 20px; top: 20px;
    width: 283px; height: 283px;
    overflow: hidden;
    filter: drop-shadow( 2px 2px 6px #333);
    background-color: #fff;
}
#user_sharing .box .result img{
    width: 283px; height: 283px;
}
/*黑色色塊*/
#user_sharing .box .square{
    position: absolute; z-index: 1;
    left: 11px; top: 11px;
    width: 203px; height: 203px;
    background-color: #000;
}
  

/*左右按鍵*/
#user_sharing>.slick-prev{
    position: absolute; top: 320px; left: -30px; z-index: 50;
    width: 25px; height: 44px;
    background: url(../images/share/arrow-2.png) no-repeat right top;
    transform: rotateY(180deg);
}
#user_sharing>.slick-next{
    position: absolute; top: 320px; right: -30px; z-index: 50;
    width: 25px; height: 44px;
    background: url(../images/share/arrow-2.png) no-repeat right top;
}
#user_sharing>.slick-prev:before,
#user_sharing>.slick-next:before{
    color: transparent;
}
#user_sharing>.slick-prev:hover{
    position: absolute; top: 320px; left: -40px; z-index: 50;
    width: 25px; height: 44px;
    background: url(../images/share/arrow-2.png) no-repeat right top;
    transform: rotateY(180deg);
}
#user_sharing>.slick-next:hover{
    position: absolute; top: 320px; right: -40px; z-index: 50;
    width: 25px; height: 44px;
    background: url(../images/share/arrow-2.png) no-repeat right top;
}






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

         lightbox

-------------------------*/
/* ---------------------
           共用
---------------------- */
.modal {
	background-color: transparent;
}

/*背景底色*/
.modal-backdrop {
	position: fixed;
	top: 0; right: 0; bottom: 0; left: 0;
	z-index: 1040;
	background: rgba(243, 225, 213, 0.88);
}
.modal-backdrop.fade {
	opacity: 0;
	filter: alpha(opacity=0);
}
.modal-backdrop.in {
	opacity: 1;
	filter: alpha(opacity=100);
}
.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-dialog {
	width: 750px;
	height: 100%;
	padding: 0;
	margin: 0 auto;
	display: block;

}

.style-box .modal-body {
    width: 700px; 
	padding: 90px 70px 70px;
	margin: 25px;
    background: #fff;
}

.style-box .modal-body h2{
	color: #e95867;
    font-size: 50px;
    line-height: 1.3em;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-align: center;
    margin: 0 0 60px 0;
}
.style-box .modal-body h3{
	color: #e95867;
    font-size: 40px;
    line-height: 1.4em;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-align: center;
}
.style-box .modal-body .box,
.style-box .modal-body .box2{
    display: block;
    margin: 0 0 50px 0;
}
.style-box .modal-body .box h4{
    position: relative;
    color: #333;
    font-size: 36px;
    line-height: 1.6em;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-align: center;
    width: 275px;
    margin: 0 auto 20px auto;
}
.style-box .modal-body .box h4:before,
.style-box .modal-body .box h4:after{
    position: absolute;
    display: block;
    content: "";
    width: 100%; height: 1px;
    background-color: #333;
}
.style-box .modal-body .box p{
    position: relative;
    color: #333;
    font-size: 32px;
    line-height: 1.4em;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-align: justify;
}


/*得獎名單*/
.style-box .modal-body .box2 h4{
    position: relative;
    color: #333;
    font-size: 34px;
    line-height: 1.6em;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-align: center;
    width: 400px;
    margin: 0 auto 20px auto;
}
.style-box .modal-body .box2 h4:before,
.style-box .modal-body .box2 h4:after{
    position: absolute;
    display: block;
    content: "";
    width: 100%; height: 1px;
    background-color: #333;
}
.style-box .modal-body .box2 p{
    position: relative;
    color: #333;
    font-size: 28px;
    line-height: 1.4em;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-align: center;
}
.style-box .modal-body .box2  span{
    display: block;
    color: #e95867;
    font-size: 30px;
    line-height: 1.3em;
    font-weight: 400;
    letter-spacing: 0.03em;
    padding: 10px 0;
    text-align: center;
}
.style-box .modal-body .box2 ul{
    list-style:disc;
    padding: 20px 10px;
}
.style-box .modal-body .box2 ul li{
    font-size: 26px;
    line-height: 1.5em;
    text-align: justify;
    
}

/* 關閉按鈕 */
.style-box .close {
	position: absolute; right: 30px; top: -5px; z-index: 10;
	font-size:6em;  color:#f295a2;
	font-family:'Noto Sans TC';  font-weight:100;
	text-shadow: none;
    background-color: transparent;
    opacity: 1;
    cursor: pointer;
	transition:all ease-in-out 0.5s;
}
.style-box .close:hover {
	opacity: 1;
	transform: rotate(90deg);
	transition: all ease-in-out 0.5s;
}







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

        data.php

-------------------------*/
.data{
    position: relative;
	width: 750px; height: 100%;
	padding: 20px;
	margin: 0 auto;

}
.data .inner{
    width: 100%; 
	padding: 60px 0;
	margin: 25px;
    background: #fff;
    margin: 0 auto
}
.data .title h2 {
    color: #e95867;
    font-size: 50px;
    line-height: 1.3em;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-align: center;
    margin: 0 0 30px 0;
}
.data .title p{
    position: relative;
    color: #333;
    font-size: 32px;
    line-height: 1.4em;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-align: justify;
    margin-bottom: 30px;
}
.data .title p b{
    vertical-align: bottom;
}


/* 關閉按鈕 */
.btn-close{
	position: absolute; right: 10px; top:0; z-index: 10;
	font-size:6em;  color:#f295a2;
	font-family:'Noto Sans TC';  font-weight:100;
	text-shadow: none;
    background-color: transparent;
    opacity: 1;
    cursor: pointer;
	transition:all ease-in-out 0.5s;
}
.btn-close:hover {
	opacity: 1;
	transform: rotate(90deg);
	transition: all ease-in-out 0.5s;
}

/*送出按鈕*/
.data .send button{
    width: 325px; height: 75px;
    margin: 25px auto;
    border-radius: 50px;
    color: #fff;
    font-size: 36px;
    line-height: 70px;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-align: center; 
    background-color: #e95867;
    box-shadow: 3px 5px 0 3px #df4050;
    cursor: pointer;
}
.data .send button:hover{
    box-shadow: 0 0 0 0 #df4050;
}

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

           表 單

-------------------------*/
.form-1{
    width:100%; 
    
}
.form-box{
    position: relative;
    padding: 0 9% 10%;
/*    margin-bottom: 110px;*/
}


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

---------------------- */
.form-box-list{
    margin-bottom: 40px;
}
.form-box-list .column{
	position: relative;
	height: 100%;   min-height: 77px;
    
    font-size: 30px; line-height: 77px;
    color: #000; font-weight: 400; letter-spacing: 0px;
    border-bottom: solid 1px #333;
    
    display: flex;
    flex-wrap: wrap;
    
}
.form-box-list .column2{
	position: relative;
	height: 100%;   min-height: 77px;
    
    font-size: 30px; line-height: 77px;
    color: #000; font-weight: 400; letter-spacing: 0px;
    border-bottom: solid 1px #333;
    
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.form-box-list .column label{
    padding: 0 20px;
}

.input-txt{
    height: 77px; padding: 0 25px;
    letter-spacing: 0.1em;
    background-color: transparent;
}
.input-txt3{
    height: 76px; padding: 0 10px;
    letter-spacing: 0.1em;
}
.style-select{
   /*  width: 74%;   */ 

/*
    display: flex;
    align-self:flex-end;
    justify-content: flex-end;
*/

}

.w1{ width:84.5%;}
.w2{ width:72%;}
.w3{ width:77%;}
.w4{ width:77%;}
.w5{ width:18%;}
.w6{ width:80%; }





/**/
input::placeholder {
    color: #969696;
    opacity: 1;
    font-weight: 300;
}


/* ---------------------
         下拉選單
---------------------- */
.style-select{
    position: relative; display: block;
    height: 77px;
    border: none; margin: 0;
	color: #000;
    border-radius: none;
    background-color: transparent;
}

/*線
.style-select:before{
    top:0%; right:22%;
    content: " ";
    height: 36px; width:0;
    position: absolute; z-index:1;
    border-left:solid 1px #fff;
}
*/
/*箭頭*/
.style-select:after{/*箭頭*/
	top:47%; right:4%;
    border: solid transparent;
    content: " ";
    height: 0; width: 0;
    position: absolute; z-index:2;
    pointer-events: none;

    border-top-color:#333;
    border-width: 8px;
}

/*內容*/
.style-select > select {
    width: 100%; height: 77px; line-height: 77px;
    border: 0px; padding: 0 25px;
	-webkit-appearance: none; outline: inherit;
    cursor:pointer;
    background-color: transparent;
    border-radius: 0px;
    font-weight: 400;
    letter-spacing: 0.05em;
}
.style-select > select > option {  color:#000; background-color: transparent; border:none; border-radius: 0;}
.style-select > select > option:hover { color:#000; background-color: transparent; border:none; border-radius: 0;}






/* ---------------------
        checkbox
---------------------- */
input[type="checkbox"] {
    position: absolute;
    left: -9999px;
}

label.side-label {
    display: block; position: relative;
    padding-left: 43px;
    margin: 20px 0 0 5px;
    padding-bottom: 5px;
    cursor: pointer;
    font-size: 24px; line-height: 33px;
	font-weight: 400; color: #555;
    letter-spacing: 0em;
    text-align: justify;
}

label.side-label::before,
label.side-label::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
}

label.side-label::before {
    display: block;
    width: 30px; height: 30px;
    border: 2px solid #555;
}

input:focus + label.side-label::before {
    border-color: #555;
}

label.side-label::after {
    display: none;
    width: 30px; height: 30px;
    background: url(../images/data/check.jpg) no-repeat;
    background-size: cover;
    border: 2px solid #555;
}

input:checked + label.side-label::after {
    display: block;
    
}


/*連結*/
label.side-label a{
    margin: 0 4px;
    vertical-align: bottom;
    color: #000; font-weight: 400;
    border-bottom: solid 2px #666;
    vertical-align: baseline;
}
label.side-label a:hover{
    color: #000;
    border-bottom: solid 2px #000;
}






/* ---------------------
        共用input
---------------------- */
input[type="text"],
input[type="tel"],
input[name="email"],
input[type="number"],
select, textarea,
.style-select>select{
    color:#000; font-size: 30px; font-weight: 400;
    border: none;
    border-radius: 0;
    font-family:'Noto Sans TC','儷黑 Pro','微軟正黑體', 'Arial', sans-serif;
    vertical-align: bottom;

}

input[type="text"]:focus,
input[type="tel"]:focus,
input[name="email"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus,
button:focus,
input[type='radio']:focus{
    outline: none;
}







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

          footer

-------------------------*/
footer.mobile {
    position: absolute; bottom: 0;
    background-color: transparent;
    height: 110px;
}
footer.mobile .logo{
    color: #333;
    font-size: 55px;
}






