@charset "UTF-8";

html {
    font-size: 8px;
    -webkit-text-size-adjust: none;
    color: #3c3535;
    line-height: 1.25em;
    letter-spacing: .0625em;
}

/*@media screen and (max-width: 1400px) {
    html {
        font-size: 0.7vw;
    }
}

@media screen and (max-width: 1000px) {
    html {
        font-size: 10px;
    }
}
*/
@media screen and (max-width: 750px) {
    html,body {
        font-size: 1.3333vw;
    }
}
@media screen and (max-width: 375px) {
    html {
        font-size: 1.33vw;
    }
}
body {
    font-family: 'Noto Sans TC', "微軟正黑體", "Microsoft JhengHei", sans-serif;
    background: url(../images/bg.jpg) repeat top center;
}

img {
    position: relative;
    display: block;
    border: 0;
    width: 100%;
    height: auto;
}
.ta-c{text-align: center;}

.fs25{font-size: 2.5rem;}
.fs30{font-size: 3rem;}
.fs35{font-size: 3.5rem;}
.fs40{font-size: 4rem;}
.fs50{font-size: 5rem;}
.fs65{font-size: 6.5rem;}


.lh125{line-height: 1.25em;}
.lh13{line-height: 1.3em;}
.lh15{line-height: 1.5em;}

.fw-500{font-weight: 500;}
.fw-bold{font-weight: bold;}
.fw-black{font-weight: 900;}


.mb56{margin-bottom: 5.6rem;}

main{
    display: block;
    position: relative;
    width: 100%;
    min-height: calc(100dvh - 7.2rem);
}
.wrap {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    background: #f8e4ea;

    /*background: url(../images/bg.jpg) no-repeat top center;*/

    max-width: 75rem;
    min-height: 100vh;
    margin: 0 auto;
}

header a,nav a {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

header {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 99;
    height: 11rem;
    /*background: #fff;*/
    max-width: 75rem;
}

header .nav-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

nav .nav-list {
    position: relative;
    display: block;
}

nav {
    position: fixed;
    width: 63.5rem;
    z-index: 98;
    height: 100vh;
    max-width: 75rem;
    overflow: hidden;
    pointer-events: none;
}
nav .nav-con{
    position: relative;
    width: 100%;
    transform: translateX(-120%);
        -webkit-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    height: 100%;
    background: rgb(233 80 150 / .95);
}
nav .nav-list {
    margin-right: 12rem;
}

nav .nav-list>li {
    position: relative;
    width: 33.4rem;
    height: 5.1rem;
    background: url(../images/nav_list.png);
    background-size: 100% auto;
    text-indent: -9999px;
    display: block;
    margin: 3.5rem 0;
}
nav .nav-list>li:nth-child(2){background-position-y:-5.1rem }
nav .nav-list>li:nth-child(3){background-position-y:-10.2rem }
nav .nav-list>li:nth-child(4){background-position-y:-15.3rem }
nav .nav-list>li:nth-child(5){background-position-y:-20.4rem }
nav .nav-list>li:nth-child(6){background-position-y:-25.5rem }

header .burger-btn {
    display: none;
}

header,.header-h {
    height: 11rem;

}

header .nav-container {
    position: absolute;
    display: block;
    height: 100%;
}

header .nav-container .logo {
    position: absolute;
    top: 1.8rem;
}
header .nav-txt{
    position: absolute;
    top: 1.8rem;
    height: 5.8rem;
    left: 20.4rem;
    border-left: 2px solid #999;
    padding-left: 2.5rem;

}
header .nav-txt p{
    color: #2dc393;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 5.8rem;
}
header .nav-txt span{
    color: #616161;
}

nav .nav-list {
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*top: 9.4rem;*/

    /*right: -64rem;*/
    right: calc(50% -37.5rem);
    width: 100%;
    height: calc(100dvh);
    
    margin: 0;
    /*padding: 0 7rem;*/
    /*padding-top: 14rem;*/
    
}
nav.expand{
    pointer-events: initial;
}
nav.expand .nav-con{
    transform: translateX(0);
}



header .burger-btn {
    position: absolute;
    display: block;
    width: 11rem;
    height: 11rem;
    top: 0rem;
    left: 0rem;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: calc( (11rem - 4.5rem) / 2);
    background: #e95096;
}

header .burger-btn span {
    position: absolute;
    display: block;
    width: 4.5rem;
    height: .6rem;
    border-radius: .3rem;
    background: #fff;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
}

header .burger-btn span:nth-child(1) {
    -webkit-transform: scale(1, 1) translate(0, 0) rotate(0deg);
    transform: scale(1, 1) translate(0, 0) rotate(0deg);
}

header .burger-btn span:nth-child(2) {
    -webkit-transform: scale(1, 1) translate(0, 1.8rem) rotate(0deg);
    transform: scale(1, 1) translate(0, 1.8rem) rotate(0deg);
}

header .burger-btn span:nth-child(3) {
    -webkit-transform: scale(1, 1) translate(0, 3.6rem) rotate(0deg);
    transform: scale(1, 1) translate(0, 3.6rem) rotate(0deg);
}

header.expand .burger-btn span:nth-child(1) {
    -webkit-transform: scale(1, 1) translate(0, 1.8rem) rotate(45deg);
    transform: scale(1, 1) translate(0, 1.8rem) rotate(45deg);
}

header.expand .burger-btn span:nth-child(2) {
    -webkit-transform: scale(0, 1) translate(0, 1.8rem) rotate(0deg);
    transform: scale(0, 1) translate(0, 1.8rem) rotate(0deg);
}

header.expand .burger-btn span:nth-child(3) {
    -webkit-transform: scale(1, 1) translate(0, 1.8rem) rotate(-45deg);
    transform: scale(1, 1) translate(0, 1.8rem) rotate(-45deg);
}

nav .social-list {
    position: relative;
    right: auto;
}

nav .social-list li{

    position: relative;
    display: inline-block;
    width: 8rem;
    margin: 0 0.5rem;
}


/*FOOTER*/

footer{
    padding: 2.5em 0 1.25em 0;
    /*height: 7.2rem;*/
    width: 100%;
    font-size: 2rem;
    text-align: center;
    color:#fff;
    background:#e95096;
    font-weight: 400;
    line-height: 1.5em;
    display: flex;justify-content: center;align-items: center;
}
footer img{width: 46.4rem;}


@media screen and (min-width: 1100px) and (max-height: 1100px) {
    nav {
        
    }
    nav.expand{
       /*overflow-y: scroll;    overflow-x: hidden; */
    }
    .nav-con{background: #20c696;}
    nav .nav-list{}

}
section{position: relative;}

.title{
    margin:0 auto;
}
/*kv*/

.kv{
    min-height: 136.6rem;
    /*height: 100dvh;*/
    padding-top: 4.2rem;
    background: #f8e4ea url(../images/kv_bg.png) center bottom no-repeat;
    background-size: 100% auto;
}

.kv-logo{
    width: 30.8rem;
    margin:0 auto;
}
.kv-title{
    margin-top: -2rem;
}
.kv-scroll{
    width: 23.7rem;
    margin: 0 auto;
    margin-top: 2rem;
}

.kv-btn{
    position: absolute;
    width: 60.2rem;
    left: 50%;
    transform: translateX(-50%);
    bottom: 3.2rem;
    cursor: pointer;
}
/*info*/

.info{
    background:url(../images/info_bg.jpg);
    background-size: 100% auto;
    padding-top: 2.8rem;
    padding-bottom: 6.8rem;
}

.info-ing{
    position: absolute;
    width: 100%;
    left: 0;
    top: 80.6rem;
    pointer-events: none;
}
.award-title{margin-top: 12.5rem;}

.award-list{
    width: calc((32.7rem + 2rem) * 2);
    margin:0 auto;
    margin-top: 4rem;display: flex;flex-wrap: wrap;justify-content: flex-end;align-items: center;}


.award-item{width: 32.7rem;
    margin:.7rem 1rem;

}
/*form*/

.form{padding-top: 8.8rem;padding-bottom: 7.8rem;}

.form-ing{
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -5.1rem;
    pointer-events: none;
}
.form-title{margin-bottom: 3.2rem;}

.form  .form-content{
    width: 67.3rem;
    margin:0 auto;
    margin-top: 
}
.form-tip1{margin-bottom: .7rem;}
.form-tip2{margin-bottom: -.8rem;}
.form-input{
    width: 100%;
    margin-bottom: 1.1rem;
}
.form  .form-content input[type="text"],
.form  .form-content input[type="tel"],
.form  .form-content input[type="email"],.form  .form-content li select{
    width: 100%;
    height: 100%;
    border:none;
    outline: none;
    padding: 0 1em;
    color: #000;
    font-size: 3.2rem;
    letter-spacing: .125em;
    line-height: 10.2rem;
    height: 10.2rem;
    background: #fff;

}
.form-tip{
    font-size: 2rem;
    font-weight: 500;
}
/*
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus{
       -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
  transition: background-color 5000s ease-in-out 0s;
}
*/
.form .demand-check{
    color: #000;
    font-size: 14px;
    text-align: left;
    margin-top: 3.2rem;
    /*margin-left: 1em;*/
}
.form .demand-check span{
    color: #000;
    font-weight: 400;
    
}
.form .demand-check span.margin-r{
    margin-left: .25em;
    letter-spacing: .125em;
        display: inline-block;
    /*transform: scaleY(1.1);*/
    font-size: 3rem;
    line-height: 4rem;
}
.form  .form-content li.demand-check p:first-child{
    line-height: 1.5em;
}
.form  .form-content li:last-child{
    margin-top: .5em;   
}
::placeholder {
  color: #c2c2c2;
  font-size: 1em;
  letter-spacing: .125em;
}
.form  .form-content li select:invalid { color: gray; }

.form .form-content li.demand-check{
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-bottom: none;
    /*line-height: 70px;*/
}

.demand-check a{
    text-decoration: underline;
    color: #1044d7;
    font-weight: 400;
}

.send-btn{
    width: 42.2rem;
    margin:0 auto;
    margin-top: 3rem;
    cursor: pointer;
}
label.el-radio, label.el-checkbox{
    display: flex;align-items: center;
    margin-bottom: 1rem;
}
.demand-check p{
    font-size: 1.6rem;
    padding-left: 5rem;
    line-height: 1.25em;
}


/*qa*/

.qa{padding-top: 12.5rem;}

.qa .title{
    /*width: 40.5rem;*/

}

.qa dl{
    position: relative;
    z-index: 0;
    width: 67.7rem;
    overflow:hidden;
    margin:4rem auto;
}
.qa dt{
    color: #000;
    font-size:2.4rem;
    font-weight: bold;
    line-height: 3rem;
    display: flex;    
    align-items: flex-start;  
    justify-content: flex-start; 
    padding: 0.625em 1em 0.625em 0;
    position: relative;
    cursor: pointer;
    /*border-bottom: 1px solid #fff;*/
}
.qa dt .qNum {
    /*width: 2em;*/
    text-align: right;
    font-size: 2.4rem;
    position: relative;
    /*margin-top: -0.25em;*/
    margin-right: 0.25em;
    /*line-height: 3rem;*/
    /*margin-right: 1em;*/
}
.qa dt::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 0;
    height: 0;
    top: calc(50% - 1rem);
    right: 1rem;
    border-style: solid;
    border-width: 0 1.1rem 1.9rem 1.1rem;
    border-color: transparent transparent #ee85b3 transparent;

    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.qa dt.current::after {
    transform: rotate(-180deg);
}

.qa dd{background: rgba(255,255,255,1);
    /*padding: 30px 65px;*/
    font-size: 2.4rem;
    line-height: 1.25em;
    position: relative;
    padding-left: 1em;
    color: #e95096;
}
.qa dd {
    height: 0;
    opacity: 0;
    padding: 2.5rem .5em 2.5rem 1em;
}
.qa dt.current + dd {
    height: auto;
    opacity: 1;
    /*padding: 30px 65px;*/
    /*padding-left: calc(65px + 2em);*/
}

.qa li{position: relative;list-style: decimal;margin-left: 1em;margin-top: 1em;}


.qa-tip{
    text-indent: -.5em;
    padding-left: .5em;
}



/*rule*/
.rule{
    padding-top: 12.5rem;
}
.rule-box{
    margin-bottom: 4.2rem;
}
.rule-title{
    margin-bottom: 3.5rem;
}
.rule-con p,.rule-con ul{
    padding: 0 4rem 0 4rem;
}
.rule-con p,.rule-con li{
    font-size: 2.4rem;
    line-height: 3.8rem;
}
.rule-con span{
    color: #ff0000;
}
.rule-con ul{
    margin-bottom: 2.4rem;
}
.rule-con li{
    text-indent: -1em;
    margin-left: 1em;
}

.rule-con .rule-tip{
    text-indent: -.5em;
    margin-left: .5em;
}
.rule-con .rule-tip.small{font-size: 1.8rem;line-height: 1.5em;margin-top: 1em;}
.rule-con ul.rule-list1{
    list-style: decimal;
}
.rule-con ul.rule-list1 li{
    text-indent: 0em;
    margin-left: 1em;
}

.rule-con ul.rule-list2{
    list-style: disc;
}
.rule-con ul.rule-list2 li{
   text-indent: 0em;
    margin-left: 1em;
}

.rule-line{
    margin-top: 5rem;
    width: 100%;
    height: 6rem;
    background: url(../images/rule_line.png);
    background-size: cover;
}


/*download*/


.download{
    padding-top: 12.5rem;
}

.download-list{
    display: flex;
    flex-direction: column;
    width: 67.7rem;

    margin:0 auto;
    margin-top: 4rem;
}

.download-list a{
    width: 100%;
    font-size: 3rem;
    color:#fff;
    border-radius: 1.4rem;
    border:.3rem solid #000;
    padding: 2rem;
    margin-bottom: 3.2rem;
    background: #e95096;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.download-list a::after{
    content: "";
    background: url(../images/download_icon.png);
    width: 3.8rem;
    height: 3.2rem;
    background-size: cover;
    position: relative;
    display: inline-block;
}

.download-line{
    margin:1.8rem 0 5rem 0;
}


/*winner*/
.winner-list {
    display: flex;
    flex-direction: column;
    width: 67.7rem;
    margin: 0 auto;
}
.winner-box{
    position: relative;
    border-radius: 2.4rem;
    border:.3rem solid #000;
    overflow: hidden;
    margin-bottom: 2rem;
}
.winner-box dt{
    position: relative;
    line-height: 8rem;
    background: #fff;
    text-align: center;
    font-size: 2.4rem;
    font-weight: bold;
    /*border-bottom: .3rem solid #000;*/
    border-bottom: 0rem solid #000;
    cursor: pointer;
}
.winner-box dt.current{
    border-bottom: .3rem solid #000;
}
.winner-box dt::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 0;
    height: 0;
    top: calc(50% - 1rem);
    right: 3.5rem;
    border-style: solid;
    border-width: 0 1.1rem 1.9rem 1.1rem;
    border-color: transparent transparent #ee85b3 transparent;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.winner-box dt.current::after {
    transform: rotate(-180deg);
}
.winner-box dd{
    line-height: 5.4rem;
    font-size: 2.4rem;
    background: #ee85b3;
    /*display: none;*/
}
.winner-box dd > div{display: flex;position: relative;width: 100%;border-bottom: .3rem solid #000;}
.winner-box dd > div:last-child{border-bottom: none;}
.winner-box dd > div p{display: block;position: relative;}
.winner-box dd > div p:nth-child(1){width: 25%;padding-left: 1.5em;}
.winner-box dd > div p:nth-child(2){width: 30%;padding-left: 1.5em;}
.winner-box dd > div p:nth-child(3){width: 45%;padding-left: 1.5em;}
.winner-box dd > div p:nth-child(3)::before{content: "中獎序號："}
