﻿/* ---reset.css--- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption,  tfoot, 
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

a,a:link,a:visited{text-decoration: none}
a:hover{ text-decoration: none; cursor:pointer;}


body {
	line-height: 1;
	font-size: 16px;
	font-family:"Open Sans","Noto Sans TC","Microsoft JhengHei", "Source Sans Pro", sans-serif;
	color:  #4e3027;
	display: relative;
	word-wrap: break-word;
	word-break: break-all;
	margin:0;
	padding:0;
	overflow-x: hidden;
	overflow-y: scroll;
}

table{
	border-collapse: collapse;
}


/* --選單------------------------------------- */

nav {
	width: 100%;
    display: block;
    background-color: #ffffff;
    color: #ecedee;
    border-color: #060606;
    height: 80px;
	z-index: 9999;
	position: fixed;
	box-shadow:0px 1px 2px rgba(165, 165, 165, 0.3)
}


nav a {
    color: #666666;
}

nav a:link {
    color: #666666;
}

nav a:hover {
    color: #ff8a3b;
}

#logo {
	display: block;
	float: left;
}

#logo img{
    width: 250px;
    padding-top: 30px;
    padding-left: 10px;
}

nav label {
    display: block;
    float: right;
	padding-top: 23px ;
	padding-bottom: 12px;
	padding-right: 20px;
}

nav label div {
	width: 30px;
	height: 3px;
	background-color: #9e9e9e;
	margin: 6px 0;
}

nav ul {	
    display: none;
    list-style:none;
	clear: both;
	font-size: 18px;
}

nav ul li {
	display: block;
	border-bottom: 1px solid #dbdbdb;
}

nav ul li a {
    display: block;
    height: 50px;
    text-align: center;
    line-height: 50px;
	background: #ffffff;
	letter-spacing: 1.4px;
	float: none;
}

nav ul li a:hover {
    background: #f9f2e6;
}

nav ul:active {
     display: block;
}

#drop {
      display: none;
}

#drop:checked ~ ul {
    display: block;
    clear: both;
}



@media screen and (min-width: 1280px) {
	nav {
		height:80px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	nav label {
		display: none;
	}
	
	nav ul {
		display: block;
		float: right;
		padding: 0px 40px;
		font-size: 18px;
	}
	
	nav ul li {
		display: inline-block;
		min-width: 160px;
		border-bottom: none;
	}
	
	nav ul li a {
		background: #ffffff;
	}
	
	nav ul li a:hover {
		background: #ffffff;
		color: #ff8a3b;
	}

	#logo {
		display: block;
		float: left;
	}

	#logo img{
		width: 250px;
		padding-top: 5px;
		padding-left: 25px;
	}
}


/* --主視覺------------------------------------- */

#KV{
	width: 100%;
	height: 700px;
	padding-top: 80px;	
	background-image:url(image/KV_pc.png);
	background-repeat: no-repeat;
	background-position:center bottom;
	color: #FFF;		
}

.KV_content{
	width: 95%;
	height: 100%;
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
}


.KV_tit {
	display:  block;
	position: relative;
	width: 100%;
	max-width: 520px;
    padding: 80px 0 0 0;
	margin: 0 auto;
	z-index: 999;
}

.KV_arrow{
	width:100px ;
	height: auto;
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
	animation:KV_arrow 0.8s infinite ease-in-out ;
	animation-direction: alternate;
}

@keyframes KV_arrow {
	0%{ top:80%;}  100%{top:85%;} 
}

.KV_people{
	position: absolute;
	width: 390px;
	top: 90px;
	z-index: 1;
}

.KV_people_1{
	animation:KV_people_1 1s infinite ease-in-out ;
	animation-direction: alternate;
	left: 30px;
}

.KV_people_2{
	animation:KV_people_2 1s infinite ease-in-out ;
	animation-direction: alternate;
	right: 30px;
}

@keyframes KV_people_1 {
	0%{transform:rotate(-2deg);}
	100%{transform:rotate(2deg);}
    
}

@keyframes KV_people_2 {
	0%{transform:rotate(2deg);}
	100%{transform:rotate(-2deg);}
    
}



@media screen and (min-width:1920px){
	#KV{
		background-size: cover;
	}

}

@media screen and (min-width:896px) and (max-width: 1199px){

	#KV{
		width: 100%;
		height: 700px;
		padding-top: 80px;	
		background-image:url(image/KV_pc_2.png);
		background-repeat: no-repeat;
		background-position:center bottom;
		color: #FFF;		
	}
	
	.KV_content{
		width: 98%;
		margin: 0 auto;
	}
	
	
	.KV_tit {
		max-width: 460px;
		padding:100px 0 0 30px;
	}


	.KV_people{
		position: absolute;
		width: 320px;
		top: 140px;
		z-index: 1;
	}
	
	.KV_people_1{
		left: 10px;
	}
	
	.KV_people_2{
		right: 10px;
	}
	
	

}

@media screen and (max-width: 895px){
	#KV{		
		height: 680px;
		background-image:url(image/KV_mobile.png);
	}


	.KV_tit{
		width: 85%;
		max-width: 360px;
		text-align: center;
		padding: 55px 0 0 0;
		margin: 0 auto;
	}

	.KV_arrow{
		width:70px ;
	}

	.KV_people_content{
		width: 90%;
		max-width: 400px;
		position: relative;
		margin: 0 auto;
	}

	.KV_people{
		max-width: 80%;
		width:180px;
		position: absolute;
		top: 50%;
		z-index: 1;
	}

	.KV_people_1{
		left: 5px;

	}
	
	.KV_people_2{
		right:5px;

	}




}



/* --內容區共同設定------------------------------------ */

.content_section{
	width: 100%;
	padding:80px 0;
	text-align: center;
	line-height: 1.2;
}

.content_section_2{
	padding:20px 0 80px 0;
}



h2{
	width: 80%;
	font-size: 40px;
	line-height: 1.2;
	letter-spacing: 3px;
	margin: 0 auto;
}


h3{
	font-size: 26px;
	padding: 0px 0 10px 0;
}



.content_btn{
	display: inline-block;
	width: 70%;
	max-width: 280px;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 2px;
	color: #4e3027;
	background-color: #ff8a3b;
	border: 5px solid #4e3027;
	border-radius: 40px;
	padding: 20px;
	margin: 30px 10px;
	transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
}


.content_btn:hover{
	background-color: #fad11d;
}

.content_tit_img{
	width: 60%;
	max-width:280px;
	margin: 0 auto;
}


.content_text{
	width: 80%;
	max-width: 800px;
	font-size: 22px;
	text-align: center;
	line-height: 1.5;
	padding: 10px 0;
	margin: 0 auto;
}

.content_infotex{
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
	text-align: justify;
	font-size: 15px;
	letter-spacing: 1px;
	color: #8C898A;
	padding: 30px 0  ;
}

.content_infotex_all{
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
	color: #FFF ;
	padding:  80px 0;
}

.target-fix {
    position: relative;
    top: -80px; 
    display: block;
    height: 0; 
    overflow: hidden;
}


@media screen and (min-width:812px) and (max-width: 1199px){
	
	h2{
		font-size: 32px;
	}

	h3{
		font-size: 24px;
	}

	.content_btn{
		font-size: 21px;
	}
	
}

@media screen and (max-width: 811px){
	.content_section{
		padding: 40px 0;
	}

	h2{
		font-size: 24px;
		letter-spacing: 2px;
		padding: 5px 10px 0 10px;
	}

	h3{
		width: 90%;
		font-size: 21px;
		margin: 0 auto;
	}

	.content_text{
		width: 85%;
		font-size: 18px;
		padding:  15px 0;
		margin: 0 auto;
	}

	.content_btn{
		font-size: 20px;
		margin: 5px 10px 20px 10px;
	}

	.content_infotex{
		font-size: 15px;
		padding: 15px 0 20px 0;
	}

}

/* --優惠放題------------------------------------ */

#discount{
	width: 100%;
	background-image: url(image/discount_bg.png);
	background-size: cover;
}

.discount_block{
	display: inline-block;
	width: 260px;
	min-height: 280px;
	background-color: #ffffff;
	border: 5px solid #f7ca77 ;
	border-radius: 20px;
	margin: 20px;
}

.discount_tit{
	padding: 30px 0 0 0;
}
.discount_line{
	width: 80%;
	height: 6px;
	background-color: #f7ca77;
	margin: 12px auto;
}

.discount_img{
	width: 80%;
	max-width: 120px;
}

.discount_btn{
	display: inline-block;
	width: 60%;
	max-width: 240px;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 2px;
	color: #FFF;
	background-color: #473531;
	border-radius: 40px;
	padding: 15px;
	margin: 10px auto 30px auto;
	transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
}



@media screen and (min-width:812px) and (max-width: 1199px){

}

@media screen and (max-width: 811px){

	.discount_img{
		max-width: 100px;
	}


}

/* -- 無料贈禮 ------------------------------------- */

#present{
	background-color: #fffbdc;
}

.present_block{
	display: inline-block;
	width: 80%;
	max-width: 350px;
	min-height: 370px;
	background-color: #ffffff;
	border: 5px solid #f7ca77 ;
	border-radius: 20px;
	margin: 20px;
	vertical-align: top;
}

.present_tit{
	display: block;
	width: 70%;
	max-width: 220px;
	color: #FFFFFF;
	letter-spacing: 2px;
	background-color: #4e3027;
	padding: 12px 20px;
	border-radius: 50px;
	margin: 0 auto;
}

.present_img{
	width: 80%;
	max-width: 100px;
	padding: 20px 0 0 0;
}

.present_text{
	width: 80%;
	font-size: 20px;
	line-height: 1.4;
	text-align: justify;
	padding: 20px 0 0 0;
	margin: 0 auto;
}



@media screen and (min-width:812px) and (max-width: 1199px){




}

@media screen  and (max-width: 811px){

	.present_block{
		display: inline-block;
		width: 80%;
		max-width: 350px;
		min-height: auto;
		background-color: #ffffff;
		border: 5px solid #f7ca77 ;
		border-radius: 20px;
		margin: 20px;
		vertical-align: top;
	}
	
	.present_text{
		font-size: 18px;
		padding: 20px 0 40px 0;
	}
	


	
}




/* -- 定番遊戲 ------------------------------------- */

#game{
	width: 100%;
	background-image: url(image/game_bg_2.svg),url(image/game_bg_1.svg);
	background-position: center bottom;
	background-size: contain,cover;
	background-repeat: no-repeat;
}

.game_step{
	display: block;
	width: 70%;
	max-width: 220px;
	font-size: 24px;
	font-weight: bold;
	color: #FFFFFF;
	letter-spacing: 2px;
	background-color: #008ed8;
	border: 5px solid #4e3027;
	padding: 15px 20px;
	border-radius: 50px;
	margin: 15px auto 0 auto;
}

.game_text{
	width: 80%;
	font-size: 20px;
	font-weight: bold;
	padding: 20px 0 10px 0;
	margin: 0 auto;
}

.game_arrow{
	width: 25px;
}


@media screen and (min-width:812px) and (max-width: 1199px){




}

@media screen  and (max-width: 811px){
	#game{
		width: 100%;
		background-image: url(image/game_bg_1.svg);
		background-position: center bottom;
		background-size: cover;
		background-repeat: no-repeat;
	}

	.game_step{
		font-size: 21px;
	}

	.game_text{
		font-size: 19px;
	}

	
}



/* --overview------------------------------------ */
#overview{
	width: 100%;
	position: relative;
	background-color: #ffdb27;
}


.overview_texe{
	width: 75%;
	max-width: 700px;
	font-size: 24px;
	font-weight: bold;
	text-align: justify;
	line-height: 1.5;
	margin: 0 auto;
}



@media screen and (min-width:812px) and (max-width: 1199px){

	.overview_texe{
		max-width: 460px;
		font-size: 21px;
		padding: 0px 40px;
	}
		
}


@media screen and (max-width: 811px){


	.overview_texe{
		width: 85%;
		font-size: 16px;
		padding: 10px ;
	}

	.overview_texe b{
		font-size: 18px;
	}
}





/* --人氣大賞------------------------------------- */

#fund{
	background-color: #f9f6e8;
}

.content_fund_all{
	width: 90%;
	max-width: 1000px;
	font-size: 20px;
	line-height: 1.4;
	margin: 0 auto;
}

.fund_tit{
	width: 70%;
	max-width: 360px;
	margin: 0 auto;
	padding: 80px 0 20px 0;
}

.content_fund p{
	font-size: 22px;
	font-weight: bold;
	padding: 15px 0 0 0;
}

.fund_control{
	border-bottom: 1px solid #d0c4b4;
}

.fund_control_2{
	border: 1px solid #d0c4b4;
}


.fund_name {
	padding: 25px 15px;
	text-align: justify;
}

.fund_number{
	width: 8%;
}

.fund_name_green b{
	color: #6b9ca7;
}

.fund_btn{
	width: 160px;
    padding: 15px 20px;
}

.fund_btn_item {
	display: block;
	font-size:18px ;
	color: #FFF;
	padding: 10px 0;
	border-radius: 25px;
	transition: 0.3s ease-in-out;
}

.fund_btn_item:hover{
	transition: 0.3s ease-in-out;
}

.fund_name_green b{
	color: #3C814A;
}

.fund_btn_item_green{
	background-color: #4BAC48;
}

.fund_btn_item_green:hover{
	background-color: #3C814A;
}


.fund_name_blue b{
	color: #008ed8;
}

.fund_btn_item_blue{
	background-color: #008ed8;
}

.fund_btn_item_blue:hover{
	background-color: #065ea1;
}


.fund_name_orange b{
	color: #f76543;
}

.fund_btn_item_orange{
	background-color: #ee693a;
}

.fund_btn_item_orange:hover{
	background-color: #da3c19;
}

@media screen and (min-width:812px) and (max-width: 1199px){
	.content_fund_all{
		width: 80%;	
	}


}

@media screen and (max-width: 811px){

	.content_fund_all{
		width: 95%;
		max-width: 650px;
		font-size: 16px;
		line-height: 1.2;
	}

	.fund_tit{
		padding: 40px 0 20px 0;
	}
	

	.content_fund p{
		font-size: 18px;
		font-weight: bold;
		padding: 15px 15px 0 15px;
	}
	
	.fund_name {
		padding: 8px;
	}
		
	.fund_btn{
		width: 100px;
		padding: 10px ;
	}
	
	.fund_btn_item {
		display: block;
		font-size:14px ;
		color: #FFF;
		padding: 10px 0;
		border-radius: 25px;
	}
}







/* --側邊按鈕------------------------------------- */
.fixedRightBtn-area{
	position: fixed;
	top: 50%;
	right: 0%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	z-index: 999;
	display:none;
}

.fixedRightBtn a{
	display: block;
	text-align: center;
	width: 40px;
	color: #ffffff;
	padding: 14px 9px;
	box-sizing: border-box;
	font-size: 17px;
	line-height: 20px;
	transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	position: relative;
	left: 0%;
	margin-bottom: 5px;
	border-radius: 10px 0 0 10px;
}

.link{
	background: #3266a6;
}

.link_2{
	background: #FF725C;	
}

.link:hover{
	background: #1c4d8a;	
}

.link_2:hover{
	background: #df503a;	
}

@media screen and (max-width: 667px){
	.fixedRightBtn-area {
		top: auto;
		bottom: 0;
		width:100%;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		font-size: 0px;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
		display:none;
	} 

	.fixedRightBtn a {
		display:inline-block;
		width: 50%;
		font-size: 18px;
		margin-bottom: 0px;	
		border-radius: 0;
	}
}

/* --基金公司警語------------------------------------- */

#company_attention{
	width: 100%;
	font-size: 16px;
	line-height: 1.5;
	text-align: justify;
	color:  #525252;
	background-color: #e9e9e9;
	padding: 40px 0;
}

.company_attention_text{
	max-width: 1140px;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 0 30px;
}

.company_attention_item{
	display: inline-block;
	padding-right: 40px;
}


@media screen and  (max-width:811px){
#company_attention{
	font-size: 16px;
}
}



/* --注意事項優惠內容------------------------------------- */

#campaign_infotext{
	width: 100%;
	text-align: center;
	background-color:#F7F8F8;
}

.Attention{
	margin: 0 auto;
	width: auto;
	padding: 70px 0;
	text-align: left;
}

.Attention_title{
	width: 1000px;
	margin: 0 auto;
	font-size: 20px;
	font-weight: bold;
	letter-spacing:1.5px;
	color: #5e5e5e;
	padding-bottom: 10px;
	padding-top: 10px;
	text-align: left;		
}

.Attention_text li {
	width: 960px;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1.5;
	color: #595757;
	list-style-type: square;
	text-align: justify;
}		

.Attention_text p {
	width: 960px;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1.5;
	color: #595757;
	list-style-type:none;
	text-align: justify;
}	


@media screen and (min-width:668px) and (max-width: 1199px){

	.Attention{
		padding: 50px 0;
	}

	.Attention_title{
		width: 80%;
		font-size: 20px;
		padding: 8px 0;
	}

	.Attention_text li{
		width: 75%;
	}

	.Attention_text p{
		width: 75%;
	}
}

@media screen and (max-width: 667px){
	#campaign_infotext{
		padding-bottom:30px;
	}

	.Attention{
		padding: 40px 0;
	}

	.Attention_title{
		width: 85%;
		font-size: 16px;
		padding: 6px 0;		
	}

	.Attention_text li{
		width: 76%;
		font-size: 16px;
	}

	.Attention_text p{
		width: 76%;
		font-size: 16px;
	}
}



/* --footer------------------------------------- */
/*
footer {
	background: #3D3D3D;
	color: #F7F7F7;
	line-height: 1.8;
	margin:0;
	padding: 40px 0 50px;
	box-sizing: border-box;
}

footer > div {
	max-width: 1140px;
	margin: 0 auto;
	box-sizing: border-box;
	padding:0 30px;
}

footer > div > dl {
	padding: 10px 0 10px 1.5em;
	margin: 10px auto;
	border-top: 2px solid #F7F7F7;
	border-bottom: 2px solid #F7F7F7;
	display: block;
}
footer > div > dl dt,
footer > div > dl dd{
	margin: 0;
	line-height: 1.5;
	font-size: 16px;
	display: list-item;
}
footer > div > dl dt {
	list-style-type: square;
}

footer > div > dl dd:nth-of-type(even) {
	font-size: 16px;
}

footer > div > dl dd a,
footer > div > dl dt a {
	color: #F7F7F7;
	text-decoration: none;
}

footer > div > p {
	font-size: 18px;
	font-weight: 700;
	margin: 0;
	padding: 0;
	text-align: left;
	position: relative;
}
footer > div > p b{
	display: inline-block;
	padding: 0 0 0 16px;
}
footer > div > p > .socialBox{
	display: inline-block;
	text-align: right;
	position: absolute;
	right:0;
	bottom:0;
	z-index: 2;	
	letter-spacing: 5px;
	padding: 0;	
}
footer > div > p > .socialBox > a{
	display: inline-block;
}
footer > div > p > .socialBox > a i{
	font-size:30px;
	color:#c8a973;
}
footer > div > p > .socialBox > a:hover i{
	color:#b49560;
}
footer > div > p > .socialBox > a .footIcon{
	font-size:36px;
	height:36px;
	display: inline-block;
	vertical-align: 0;
	border:none;
}


footer > div > .text_scroll {
	overflow-y: scroll;
	overflow-x: hidden;
	height: 122px;
	width:100%;
	margin: 0;
	padding:0 16px 0 0;
	box-sizing: border-box;
}

footer > div > .text_scroll > p {
	margin: 0;
	font-weight:normal;
}

footer > div > .text_scroll span {
	color: #A89878;
	font-weight: bold;
}

.text_scroll{
	font-size: 15px;
}	

@media screen and (max-width: 669px){
	footer {
		padding: 20px 0;
		margin-bottom:48px;
	}
	footer > div > p {
		text-align: center;
	}
	footer > div > p b{
		display: block;
		padding: 0;
	}
	footer > div > p > .socialBox{
		display: block;
		text-align: center;
		position: relative;
		right:0;
		bottom:0;
		z-index: 1;	
		padding: 8px 0 0;
		letter-spacing: 16px;		
	}
	footer > div > p > .socialBox > a .footIcon{
		font-size:48px;
		height:48px;
		display: inline-block;
		vertical-align: 0;
		border:none;
	}

}*/



