@charset "UTF-8";
* { margin: 0px; padding: 0px; box-sizing: border-box; }
a, a:link, a:visited, a:hover, a:active {text-decoration:none;}
img { border: 0px none; }

body {
	padding:0;
	margin:0;
	color:#000000;
	/*background-image: url(../images/page-background.png);*/
	font-family: '微軟正黑體', 'Microsoft JhengHei', Verdana, Helvetica, Arial, 'HeitiTC', 'Microsoft YaHei', sans-serif;
	font-size: 16px;
	background-color: #ffffff;
	background-repeat: repeat;
}

@media screen and (max-width: 768px) {
body.open { 
	width: 100%;
	height: 100vh;
	overflow: hidden;
	}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 49;
    width: 100%;
    height: 100%;
	
    opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: rgba(0,0,0,0.8);
    }
.overlay.open {
    opacity: 0.8;
    visibility: visible;
    }
}
/************************
TOTAL
************************/
.page-wrapper,
.page-container {	
	margin: 0 auto; 
	width: 100%; 
	}
.page-wrapper {	
    padding: 0px; 
	/*max-width: 1200px;*/
	}
.page-container {	
    padding: 0px; 
	max-width: 992px;
	}
@media only screen and ( max-width:1280px ){ 

}	
@media only screen and (max-width:1024px){ 
 	.page-wrapper { 
	width: 100%; 
	}   
	.page-container { 
	width: 100%; 
	padding: 0px;
	}
}
@media only screen and (max-width:992px) { 

}	
@media only screen and (max-width:768px) { 

}	
/****************************/
.toggle-button {
	position: relative;
    display: none;
	float: left;
	top: 5px;
	left: 0;
	width: 53px;
    height: 53px;
    padding: 15px 15px;
    margin: 0px;
    transition: .25s;
    z-index: 999;
    }
.toggle-button:hover { 
    cursor: pointer;
	/*background-color: #eeeeee;*/
    }
.toggle-button .menu-bar {
	position: relative;
    width: 100%;
    transition: .2s;
    }
.toggle-button .menu-bar-top {
    border: 2px solid #909090;
    border-bottom: none;
    top: 0px;
    }
.toggle-button .menu-bar-middle {
	height: 2px;
    /*background-color: #909090;*/
    margin: 2px 0px;
    top: 0px;
    }
.toggle-button .menu-bar-bottom {
    border: 2px solid #909090;
    border-top: none;
    top: 0px;
    }
.toggle-button.open .menu-bar-top {
    transform: rotate(45deg) translate(3px, 3px);
    transition: .2s;
    }
.toggle-button.open .menu-bar-middle {
    transform: translate(0px);
    transition: .1s ease-in;
    opacity: 0;
    }
.toggle-button.open .menu-bar-bottom {
    transform: rotate(-45deg) translate(3px, -3px);
    transition: .2s;
    } 

@media only screen and (max-width: 992px) {
.toggle-button { 
	display: inline-block;
	}
}
/************************
HEADER
************************/
header {
	position: fixed;
	display: inline-block;
	width: 100%;
	top: 0;
	left: 0;
	font-size: 16px;
	height: 120px;
    z-index: 50;
	background-color: rgba(255,255,255,0.99);
	box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.2);
	transition: all 0.2s ease-out;
	}
header.open { 
	height: 50px;
    border-top: 4px solid #2e2e2e;
	}
header.open,
header { transition: all 0.2s ease-out; }

@media screen and (max-width: 992px) {
header { 
	height: 50px;
    border-top: 4px solid #2e2e2e;
	}
}
/************************/
header .h_menu,
header .h_logo,
header .h_content {
    position: relative; 
	display: inline-block;
	float: left;
    }
header .h_content {
    width: 100%;
	padding-top: 40px;
    }

header .h_menu ul.menu-bottom {
	position: fixed;
	display: inline-block;
	top: 0;
    left: 0;	
	width: 100%;
	height: 40px;
	background: #2e2e2e;
    z-index: 50;
	}
header .h_menu ul.menu-bottom li {
    position: relative; 
	display: inline-block;
	float: right;
	font-size: 14px;
	line-height: 1.5em; 
	font-weight: 500;
	}
header .h_menu ul.menu-bottom a:hover,	
header .h_menu ul.menu-bottom a {
	display: inline-block;
	color: #ffffff;
	height: 40px;
    padding: 9px 18px;
	}
header .h_menu ul.menu-bottom a span {
	font-size: 12px;
	color: #82827c;
	}
header .h_menu ul.menu-bottom li:hover {
	background: #444444;
	}
	
header .h_menu ul.menu-bottom ul {
    position: absolute; 
	display: none;
	top: 100%;
	width: 280px;
	color: #b8b8b8;
	background: #444444;
    }
header .h_menu ul.menu-bottom li:hover > ul { 
    display: block;
	height: auto;
	}
header .h_menu ul.menu-bottom ul li { 
	float: left;
	width: 100%;
	padding: 5px 20px;
	min-height: 40px;
	}
header .h_menu ul.menu-bottom ul li:hover {
	background: #999999;
	} 
header .h_menu ul.menu-bottom ul li.panel-header:hover {
	background: #444444;
	}
	
header .h_menu ul.menu-bottom ul label,	
header .h_menu ul.menu-bottom ul a {
	font-weight: 400;
	}
	
header.open ul.menu-bottom { display: none; }
header.open .h_content { padding-top: 0px; }
header .h_menu ul.menu-bottom ul.last-menu {padding-left: 0;}
@media screen and (max-width: 992px) {
header .h_content { 
    padding-top: 0px; 
	}
body.open .h_content { 
	padding-left: 280px;
	}
	
header.open ul.menu-bottom,
header .h_menu ul.menu-bottom {
    position: relative; 
	display: inline-block;
	background: #ffffff;
	}
header .h_menu ul.menu-bottom li {
	float: left;
	width: 100%;
	}
header .h_menu ul.menu-bottom li:hover {
	background: #ffffff;
	}	
header .h_menu ul.menu-bottom a:hover,	
header .h_menu ul.menu-bottom a {
	width: 100%;
	color: #656565;
	}
header .h_menu ul.menu-bottom a span {
    position: absolute; 
	right: 30px;
	color: #ff3333;
	}	
header .h_menu ul.menu-bottom li.pc768 {
	display: none;
	}
header .h_menu ul.menu-bottom ul {
    position: relative; 
	display: inline-block;
	padding: 10px 0px; 
	color: #70706f;
	background: #ececec;
    }
header .h_menu ul.menu-bottom ul li { 
	padding: 5px 20px;
	min-height: 30px;
	}

header .h_menu ul.menu-bottom ul.last-menu li,
header .h_menu ul.menu-bottom ul li.panel-header:hover {
	background: #ececec;
	}
header .h_menu ul.menu-bottom ul li:hover {
	background: #e2e2e2;
	} 	
header .h_menu ul.menu-bottom ul a:hover,
header .h_menu ul.menu-bottom ul a {
	color: #000000;
	}

header .h_menu ul.menu-bottom li:hover > ul,
header .h_menu ul.menu-bottom ul { display: none; }
header .h_menu ul.menu-bottom li:hover > ul.open,
header .h_menu ul.menu-bottom ul.open { display: inline-block; }

}		
/************************/
header .h_logo {
	width: 190px;
	margin: 0px 10px;
	margin-top: 26px;
	
	transition: all 0.4s ease-out;
	}
header .h_logo img {
	display: inline-block;
	float: left;
	width: 50%;
	}
	
header .h_menu ul.menu-top li,
header .h_menu ul.menu-top,
header .h_menu,
header .h_bank {
    position: relative; 
	display: inline-block;
    }
	
header .h_bank,
header .h_menu ul.menu-top li {
	line-height: 1.5em; 
	height: 80px;
	padding: 26px 0px;
	font-weight: 600;
	color: #2e2e2e; 	
	}
header .h_bank .menu-dark {
	display: flex;
	align-items: center;
}	
/************************/
header .h_bank ul.dark-last {
    position: absolute; 
	display: none;
	top: 100%;
	right: 0px;
	width: 180px;
	color: #2e2e2e; 
	background: #ececec;
    text-align: center; 
	}
header .h_bank ul.dark-last li {
    display: inline-block;
	width: 100%;
	}
		
header .h_bank ul.dark-last a,
header .h_bank ul.dark-last a:hover {
	display: inline-block;
	width: 100%;
	padding: 15px 0px;
	font-size: 14px;
	color: #2e2e2e; 
	transition: all 0.5s ease 0s; 
	}	
header .h_bank ul.dark-last a:hover {
	background: #dedede;
	}
header .h_bank ul.dark-last.open {
	display: inline-block;
	}	
/************************/

header .h_menu ul.menu-top a,
header .h_menu ul.menu-top a:hover {
	display: inline-block;
	padding: 0px 15px;
	color: #2e2e2e; 
	}
/*
header .h_menu ul.menu-top li:last-child a {
	border-left: 1px solid #c0c0c0;
	}
*/
header .h_menu ul.menu-top li:hover {
	background: #eeeeee;
	}
header.open ul.menu-top li {
	height: 46px;
	padding: 10px 0px;
	}
/************************/	
header .h_menu ul.menu-top a,
header .h_menu ul.menu-top a:hover {
	display: inline-block;
	padding: 0px 17px;
	color: #2e2e2e; 
	}
header .h_menu ul.menu-top li:last-child a {
	border-left: 1px solid #c0c0c0;
	}
header .h_menu ul.menu-top li:hover {
	background: #eeeeee;
	}
header.open ul.menu-top li {
	height: 46px;
	padding: 10px 0px;
	}
/************************/	
header .h_bank {
	float: right;
	background: #ff3333;
	padding: 26px 17px;
	}
header.open .h_bank,
header .h_bank { transition: all 0.2s ease-out; }	
	
header .h_bank a{
	display: inline-block;
	color: #ffffff; 
	}
header .h_bank img {
	display: inline-block;
	width: 20px;
	}
header.open .h_bank {
	height: 46px;
	padding: 10px 17px;
	}

header.open .h_logo img.logo_tc { display: none; }
header.open .h_logo { 
	width: 80px;
	margin-top: 12px;
	margin-left: 10px;
	margin-right: 10px;
    }
header.open .h_logo img { width: 100%; }

@media screen and (max-width: 992px) {
header .h_content { height: 50px; }
header .h_logo img.logo_tc { display: none; }
header.open .h_logo,
header .h_logo {
	position: absolute;
	width: 80px;
	margin-top: 12px;
	margin-left: 0px;
	margin-right: 10px;
	}
header .h_logo img { width: 100%;}
header .h_bank {
	font-size: 14px;
	height: 46px;
	padding: 10px 17px;
	}

header .h_menu { 
	position: absolute;
	display: none;
    width: 280px;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 20;
	padding-bottom: 100px;
	background: #ffffff;
    }
	
body.open header .h_menu { 
	display: inline-block;
    overflow-x: hidden;
	}	
body.open .h_bank {
	display: none;
	}
	
header .h_menu ul.menu-top { 
	border-bottom: 1px solid #ececec; 
    }
header .h_menu ul.menu-top li {
	width: 100%;
	height: auto;
	font-size: 18px;
	padding: 12px 0px;
	}
header .h_menu a,
header .h_menu a:hover {
	padding: 0px 20px;
	}	
}
@media screen and (max-width: 468px) {
header .h_logo {

	}
}	
/***********************
LAYOUT 框架
***********************/
section.main-content {
	position: relative;
	display: inline-block;
	float: left;
	width: 100%;
	padding-top: 80px;
	background: #ffffff;
	}
body.open section.main-content { 
	padding-top: 50px;
	}
@media screen and (max-width: 768px) {

body.open section.main-content,
section.main-content { 
	padding-top: 50px;
	}

}
/************************
FOOTER
************************/
footer .f_link,
footer .fiscal .f_right,
footer .fiscal .f_left,
footer .fiscal,
footer { 
	position: relative;
	display: inline-block;
	float: left;
    width: 100%;
	}
 
footer { 
	padding: 10px 2%;
	background-color: rgb(72,72,72);
    }
/************************/ 
footer .fiscal {
	margin: 20px 0px;
	color: #191919;
	}
footer .fiscal .f_left { 
	width: 25%; 
	font-size: 30px;
	color: #ffffff;
	min-height: 48px; 
	text-align: center; 
	}
footer .fiscal .f_left img { 
    width: 80%; 
	}
footer .fiscal .f_right { 
	width: 75%;
	font-size: 14px; 
	line-height: 1.4em; 
	color: #ffffff;
	}
footer .fiscal .f_right a,
footer .fiscal .f_right a:hover  {
   color: #ffffff;
   line-height: 1em;
   }
/************************/ 
footer .f_link {
	margin-top: 10px;
	min-height: 40px;
	font-size: 14px;
	color: #b8b8b8;
	}
footer .f_link a,
footer .f_link a:hover  {
   display: inline-block;
   padding: 0px 10px;
   color: #b8b8b8;
   line-height: 1em;
   }
footer .f_link a + a { border-left: 1px solid #b8b8b8; }
footer .f_copy { 
   display: inline-block; 
   font-weight: 600;
   }
   
@media screen and (max-width: 1280px) {
footer .fiscal .f_left { width: 28%; }
footer .fiscal .f_right { width: 71%; }
}   
   
/* 手機直式 */
/*
@media screen and (orientation: portrait) and (max-width: 992px) {
	
}
*/
/* 手機橫式 */
/*
@media screen and (orientation: landscape) and (max-width: 992px) {
	
}
*/
@media screen and (max-width: 992px) {
footer .fiscal { width: 90%; margin: 0px 5%; }
footer .fiscal .f_left img { max-width: 300px; }
footer .fiscal .f_left,
footer .fiscal .f_right { width: 90%; margin: 0px 5%; text-align: left; }	
	
footer .f_link { font-size: 13px; }
footer .f_link { width: 96%; margin: 1em 2%; text-align: center;  }
footer .f_copy { display: inline-block; width: 90%; margin: 10px 5%; text-align: center;  }
}
/************************
KEY-VISUAL
************************/
.key-visual .kv_bk2,
.key-visual .kv_bk,
.key-visual .kv_pic,
.key-visual .kv_txt,
.key-visual { 
	position: relative;
	display: inline-block;
	float: left;
    width: 100%;
	transition: all 0.5s ease 0s; 
	}
 
.key-visual { 
/*background-image: linear-gradient(to top,#faac62, #fff4a1 );*/
background-color: #1F2B14;
/*	
	background-image: url('../images/kv_p02.jpg');
	background-repeat: repeat-x;; 
	background-position: bottom center; 

	background-size: auto 220px;
	-moz-background-size: auto 220px;
	-webkit-background-size: auto 220px;
	-o-background-size: auto 220px;
*/
	height: 550px; 
	overflow: hidden;
	}
	
.key-visual img { 
	position: relative;
	display: inline-block;
	}	
.key-visual .kv_bk2,	
.key-visual .kv_bk { 
	position: absolute;
	display: inline-block;
	bottom: 0;
	left: 0;
	text-align: center;
	height: 550px; 
	}
.key-visual .kv_bk { 
	background-image: url('../images/kv_p02.jpg');
	background-repeat: no-repeat;; 
	background-position: bottom center; 
	
	background-size: auto 100%;
	-moz-background-size: auto 100%;
	-webkit-background-size: auto 100%;
	-o-background-size: auto 100%;
	z-index: 2;
	}




@media screen and (max-width: 992px) {


.key-visual .kv_bk { 

	background-position:80% bottom ; 
	

	}
	
}	
	
.key-visual .kv_bk2 { 
	z-index: 1;
	}	
.key-visual .kv_bk2 img.pic03 { 
	width: 700px;
	top: 25px;
	right: -200px;
	z-index: 0;
	}	

.key-visual .kv_txt { 
	width: 100%;
	text-align: left;
	padding-top: 50px; 
	padding-left: 20px; 
	z-index: 5;
	}

.key-visual .kv_txt img {
	width: 100%;
	max-width: 430px;
	}
.key-visual .kv_txt1 img {
	width: 100%;
	max-width: 300px;
	}
	
.key-visual .kv_pic { 
	position: absolute;
	display: inline-block;
	width: 100%;
	top: 0;
	left: 0;
	text-align: center;
	z-index: 2;
    }
.key-visual .kv_pic img.pic01 { 
	width: 600px;
	top: 260px;
	z-index: 3;
	}	
.key-visual .kv_pic img.star {
	position: absolute;
	max-width: 220px;
	right: -50px;
	top: 100px !important;
	z-index: 999;
	}		


@media screen and (max-width: 992px) {
	
}
@media screen and (max-width: 820px) {

}
@media screen and (max-width: 480px) {
.key-visual .kv_bk2,
.key-visual .kv_bk,
.key-visual { 
	height: 800px; 
	}
	
.key-visual .kv_bk2 img.pic03 { 
	width: 90%;
	top: 235px;
	right: 0px;
	z-index: 0;
	}
.key-visual .kv_txt { 
	width: 100%;
	text-align: center;
	padding-top: 20px; 
	padding-left: 0px; 
	}	
.key-visual .kv_txt img {
	width: 80%;
	}
.key-visual .kv_pic img.pic01 { 
	width: 130%;
	top: 390px;
	left: -95px;
	}	
.key-visual .kv_pic img.star {
	max-width: 200px;
	right: -50px;
	top: 500px !important;
	}		
	
}
@media screen and (max-width: 380px) {
.key-visual .kv_bk2,
.key-visual .kv_bk,
.key-visual { 
	height: 600px; 
	}
.key-visual .kv_bk { 
	background-size: auto 100%;
	-moz-background-size: auto 100%;
	-webkit-background-size: auto 100%;
	-o-background-size: auto 100%;
	}
.key-visual .kv_bk2 img.pic03 { 
	top: 190px;
	}	
.key-visual .kv_pic img.pic01 { 
	width: 120%;
	top: 370px;
	left: -70px;
	}
}

/************************
BLOCK
************************/ 
.block ul li,
.block ul,
.block .tt,
.block .dd,
.block .ddapple,
.block .pic img,
.block .txt,
.block .pic,
.block .box,
.block { 
    position: relative;
	display: inline-block;
    width: 100%;	
	}
.block { 
	float: left;
	line-height: 1.8em; 
	}	
	
/************************/ 
.block_01 { 
	padding: 10px 2%;
	text-align: center;
	}
	
.block_01 .box_01 { 
	font-size: 18px;
	padding: 20px 0px;
	text-align: center;
	}
.block_01 .box_01 .tt01 { 
	font-size: 20px;
	font-weight: 900;
	}	
.block_01 .box_01 .tt01 span { 
	display: inline-block;
	width: 26px;
	height: 26px;
	text-align: center;
	line-height: 26px;
	padding: 0px 0px;
	color: #ffffff;
	background-color: #e9607c;
	border-radius: 50px;
	}
	
.block_01 .box_01 .tt03,	
.block_01 .box_01 .tt02 { 
	margin-top: 30px;
	font-size: 23px;
	text-align: center;
	}
.block_01 .box_01 .tt02 { 
	border-top: 1px solid #ef879d;
	}
.block_01 .box_01 .tt03 span,
.block_01 .box_01 .tt02 span { 
	position: relative;
	display: inline-block;
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;	
	color: #000000;
	background-color: #ffcfd9;
	border-radius: 50px;
	top: -18px;
	z-index: 2;
	}	
.block_01 .box_01 .tt03 span { 
	width: auto;
	height: auto;
	padding: 5px 20px;
	top: 0px;
	}
	
.block_01 .box_01 .up { 
	position: absolute;
	display: inline-block;
	width: 0;
    height: 0;
	bottom: 5px;
	left: 49%;
	border-style: solid;
	border-width: 20px 10px 0 10px;
	border-color: #ffcfd9 transparent transparent transparent; 
	z-index: 1;
	}
	.box_new{
		background-color: #fff2d9;
		box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
		border-bottom-right-radius: 20px;
		border-bottom-left-radius: 20px;
		padding: 40px 20px;
		margin: 20px auto;
	}
	.box_new .new-box{
		width: 100%;
		display: flex;
		justify-content: space-around;
    	align-items: center;
	}
	.box_new .new-item{
		max-width: 300px;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-direction: column;
		gap: 10px;
	}
	.box_new .new-item .h3{
		color: #886d40;
    	font-size: 20px;
	}

	.box_new .new-item .h3 .b1{
		display: inline-block;
		  background-color: #886d40;
  color: #fff;
  padding: 4px 10px;
  margin-bottom: 10px;
  border-radius: 10px;
  margin-bottom: 8px;
	}



	.box_new .new-item span{
		color: #d14040;
	}
	.box_new .new-item sup{
		color: #999999;
	}
	.box_new .new-item img{
		width: 200px;
	}
	.box_new a{
		font-size: 18px;
		min-width: 100px;
		padding: 5px 15px;
		border-radius: 30px;
		color: #fff;
		border: 1px solid #d14040;
		background-color: #d14040;
		font-weight: 600;
		margin-top: 20px;
		margin-inline: 4px;
	}
	.box_new .or{
		width: 5%;
	}
	.modal-body .decimal,.modal-body p{
		font-size: 16px;
		text-align: left;
	}
	.modal-body .decimal ul {
		list-style: none;
		padding-left: 0;
	}

	.modal-body .decimal ul li {
		position: relative;
		padding-left: 1.2em;
	}

	.modal-body .decimal ul li::before {
		content: "•";
		position: absolute;
		left: 0;
		color: #d14040;
		font-size: 30px;
	}

.block_01 .box_02 { 
	padding: 10px 0px;
	text-align: center;
	}
	
.block_01 .box_02 ul.fast { 
	padding: 30px;
	border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	background-color: #ffffff;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
	}	
.block_01 .box_02 ul li { 
	float: left;
	}
.block_01 .box_02 ul li.left { 
	width: 60%;
	border-right: 1px solid #e7b286;
	}
.block_01 .box_02 ul li.right { 
	width: 40%;
	}
.block_01 .box_02 ul li.right .pic { 
	padding-top: 100px;
	}

.block_02 .box_02 ul  { 
	background-image: url('../images/bk_202.png');
	background-repeat: no-repeat; 
	background-position: center; 
	
	background-size: auto 110%;
	-moz-background-size: auto 110%;
	-webkit-background-size: auto 110%;
	-o-background-size: auto 110%;
	}
	
.block_01 .box_02 ul ul li { 
	width: 50%;
	padding: 10px 20px;
	}
.block_01 .box_02 ul li img { 
	max-width: 50px;
	}
.block_01 .box_02 .tt { 
    font-size: 33px;
	line-height: 1.0em; 
	font-weight: 900; 
	color: #344964;
	padding: 10px 0px;
	}	
.icon_202s{

		max-width: 30px;
}

@media screen and (max-width: 992px) {

}

@media screen and (max-width: 768px) {
	.box_new .new-box{
		flex-direction: column;
		gap:20px ;
	}
	.box_new .or{
		width: 9%;
	}
	
}

@media screen and (max-width: 480px) {
	.block_01 .box_01 { 
		padding: 20px 20px;
	}
	.block_01 .box_01 .up { 
		left: 48%;
	}
	.box_new .new-item img{
		width: 200px;
	}
}	
	
/************************/ 	
.block_02 { 
	padding: 30px 2%;
	text-align: center;
	padding-bottom: 80px;
	}
.block_02 .box_01 { 
	padding: 10px 0px;
	margin-bottom: 30px;
	text-align: center;
	}
.block_02 .box_01 img { 
	width: 90%;
	max-width: 400px;
	}
.block_02 .box_02 .hh,	
.block_02 .box_02 .pic,
.block_02 .box_02 .tt,
.block_02 .box_02 .txt,
.block_02 .box_02 .card,
.block_02 .box_02 li,
.block_02 .box_02 ul { 
    position: relative;
	display: inline-block;
	float: left;
	width: 100%;
	}
.block_02 .box_02 li { 
	width: 31%;
	margin: 0px 1%;
	padding: 20px 20px;
	}
	
.block_02 .box_03,
.block_02 .box_02 li { 	
/*	background-color: #fff2d9; 
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
-webkit-border-bottom-right-radius: 20px;
-webkit-border-bottom-left-radius: 20px;
-moz-border-radius-bottomright: 20px;
-moz-border-radius-bottomleft: 20px;
border-bottom-right-radius: 20px;
border-bottom-left-radius: 20px;*/
	}	

.block_02 .box_02 ul {
	background-color: #fff2d9; 
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
-webkit-border-bottom-right-radius: 20px;
-webkit-border-bottom-left-radius: 20px;
-moz-border-radius-bottomright: 20px;
-moz-border-radius-bottomleft: 20px;
border-bottom-right-radius: 20px;
border-bottom-left-radius: 20px;
	}	
	
	
.block_02 .box_02 .h3 { 
    font-size: 19px;
	color: #886d40;
	padding: 10px 0px;
	}	
.block_02 .box_02 .card img { 
	width: 80%;
	max-width: 273px;
	}
.block_02 .box_02 .card1 img { 
	width: 80%;
	max-width: 273px;
	}
.block_02 .box_02 .card2 img { 
	width: 78%;
	max-width: 273px;
	}
@media screen and (max-width: 768px) {
.block_02 .box_02 .card img { 
	width: 80%;
	max-width: 203px;
	}
}	
.block_02 .box_02 .hh  { 
	height: 200px; 
	}	
.block_02 .box_02 .txt  { 
	padding: 10px 0px;
	}
.block_02 .box_02 .txt + .txt  { 
	border-top: 1px solid #eddec2;    
	}	
.block_02 .box_02 .pic { 
	width: 30%;
	}
.block_02 .box_02 .tt { 
	width: 70%;
	text-align: left;
	}
.block_02 .box_02 .txt img { 
	width: 80%;
	max-width: 115px;
	}
.block_02 .box_02 .h4 { 
    font-size: 24px;
	color: #8f7549; 
	}
.block_02 .box_02 .tt2 { 
	padding: 30px 0px;
	}
.block_02 .box_02 .cs01 { 
    font-size: 24px;
	color: #e9607c; 
	}	
.block_02 .box_02 .h8 { 
    font-size: 16px;
	}	
	
.block_02 .box_02 .block_btn { 
	bottom: -35px;
	z-index: 1;
	}


.block_02 .box_03 { 
	margin-top: 20px;
	padding: 30px 0px;
	text-align: center;
	}
	
.block_02 .box_03 .pic,
.block_02 .box_03 .txt { 
    position: relative;
	display: inline-block;
	float: left;
	width: 40%;
	}
.block_02 .box_03 .pic { 
	text-align: right;
	}
.block_02 .box_03 .pic img { 
	max-width: 150px;
	}
.block_02 .box_03 .txt { 
	width: 60%;
	padding: 10px 30px;
	text-align: left;
	}
.block_02 .box_03 .txt span { 
	color: #e9607c; 
	}	

.block_02 .box_04 { 
	padding: 0px 0px 30px 0px;
	text-align: center;
	}
	
@media screen and (max-width: 992px) {

}
@media screen and (max-width: 768px) {
.block_02 { 
	padding: 10px 20px;
	}
.block_02 .box_02 li { 
	width: 98%;
	margin: 0px 1%;
	}	
.block_02 .box_02 .hh  { 
	height: auto; 
	}	
}
@media screen and (max-width: 480px) {
.block_02 .box_02 .pic,
.block_02 .box_02 .tt { 
	width: 100%;
	text-align: center;
	}
.block_02 .box_03 .pic,
.block_02 .box_03 .txt { 
	width: 100%;
	text-align: center;
	}
	
}

/************************/ 
.block_03 { 
	padding: 30px 50px;
	text-align: center;
	background-color: #f4f5f5; 
	}
.block_03 .slick li,	
.block_03 .slick ul,
.block_03 .slick { 
    position: relative;
	display: inline-block;
	width: 100%;
	text-align: center;
	}
.block_03 .slick ul { 
	padding: 0px 50px;
	}
	
.block_03 .box_01 { 
	padding: 10px 0px;
	}
.block_03 .box_01 span { 
	font-size: 35px;
	font-weight: 900; 
	color: #202b15;
	padding: 0px 20px;
	}
.block_03 .box_01 img { 
    max-width: 30px;
	padding: 0px 0px;
	}
.block_03 .box_02 .pic,
.block_03 .box_02 .txt { 
    position: relative;
	display: inline-block;
	float: left;
	width: 60%;
	}	
.block_03 .box_02 .pic { 
	width: 40%;
	text-align: center;
	}	
.block_03 .box_02 .pic img { 
	width: 90%;
	max-width: 250px;
	}
.block_03 .box_02 .txt { 
	text-align: left;
	padding-top: 20px;
	}
.block_03 .box_02 .tt { 
	width: auto;
	font-size: 24px;
	font-weight: 900; 
	color: #ffffff;
	padding: 3px 30px;
	border-radius: 50px;
	background-color: #886d41; 
	margin: 20px 0px;
	}


.block_03 .box_03 .txt02,
.block_03 .box_03 .txt01 { 
    position: relative;
	display: inline-block;
	width: 30%;
	min-height: 150px;
	padding: 30px 5px;
	text-align: center;
	}
.block_03 .box_03 .txt02:hover,
.block_03 .box_03 .txt01:hover { 
    background-color: #ffffff;
	border-radius: 5px;
	}	
.block_03 .box_03 .txt02 { 
	width: 20%;
	}
.block_03 .box_03 .txt02 img,	
.block_03 .box_03 .txt01 img { 
	width: 90%;
	max-width: 60px;
	}
.block_03 .box_03 .tt { 
	min-height: 60px;
	font-size: 24px;
	font-weight: 900; 
	color: #886d40;
	padding: 0px 0px;
	}
.block_03 .box_03 .dd { 
	font-size: 18px;
	font-weight: 700;
	}	
.block_03 .box_03 .dd span { 
	font-weight: 900; 
	color: #e9607c;
	}
	
@media screen and (max-width: 768px) {
.block_03 .box_03 .txt02,
.block_03 .box_03 .txt01 { 
	width: 50%;
	padding: 0px 5px;
	}
}
@media screen and (max-width: 480px) {
.block_03 { 
	padding: 10px 20px;
	}
.block_03 .box_01 span { 
	font-size: 30px;
	padding: 0px 0px;
	}	
.block_03 .box_02 .pic,
.block_03 .box_02 .txt { 
	width: 100%;
	text-align: center;
	padding-top: 5px;
	}
.block_03 .box_03 .txt02,
.block_03 .box_03 .txt01 { 
	width: 100%;
	min-height: 100px;
	padding: 10px 5px;
	}
.block_03 .box_03 .tt { 
	min-height: 30px;
	}	
}
@media screen and (max-width: 380px) {

}

/************************/ 
.block_04 { 
	padding: 30px 2%;
	padding-top: 80px;
	text-align: center;
	}
.block_04 .box_01 { 
	max-width: 950px;
	min-height: 200px;
	padding: 45px 50px;
	border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	background-color: #ffc47b;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
	
	text-align: left;
	background-image: url('../images/bk_401.jpg');
	background-repeat: no-repeat; 
	background-position: bottom  right -20%; 
	
	background-size: 85% auto;
	-moz-background-size: 85% auto;
	-webkit-background-size: 85% auto;
	-o-background-size: 85% auto;
	}

.block_04 .box_05 { 
	max-width: 950px;
	min-height: 200px;
	padding: 45px 50px;
	border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	background-color: #e60911;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
	
	text-align: left;
	background-image: url('../images/bk_501.jpg');
	background-repeat: no-repeat; 
	background-position:0%  50% ;
	
	background-size: 100% auto;
	-moz-background-size: 100% auto;
	-webkit-background-size: 100% auto;
	-o-background-size: 100% auto;
	}
@media only screen and (max-width: 480px) {
.block_04 .box_05 { 

	background-color: #e60911;

	}
}

.block_04 .box_05 .ddapple { 

color: white;
font-size: 23px;
line-height: 1.5em;
font-weight: 600;
text-align: left;

}

	
.block_04 .box_01 .txt { 
	max-width: 270px;
	}	
.block_04 .box_01 .pic { 
	/*border-bottom: 1px solid #cfccca;
	margin-bottom: 20px;*/
	}	
.block_04 .block_btn {
	text-align: left;
	margin: 10px 0px;
}	




	
	
@media screen and (max-width: 820px) {
	.block_04 .box_05 { 
	max-width: 950px;
	min-height: 200px;
	padding: 45px 50px;
	border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
	
	text-align: left;
	background-image: url('../images/bk_501.jpg');
	background-repeat: no-repeat; 
	background-position: bottom  right 0%; 
	
	background-size: 86% auto;
	-moz-background-size: 86% auto;
	-webkit-background-size: 86% auto;
	-o-background-size: 86% auto;
	}

}
@media screen and (max-width: 768px) {
.block_04 .box_01 { 
	max-width: 950px;
	min-height: 200px;
	padding: 10px 50px;
	background-size: 75% auto;
	-moz-background-size: 75% auto;
	-webkit-background-size: 75% auto;
	-o-background-size: 75% auto;
	}

}
@media screen and (max-width: 480px) {
.block_04 { 
	padding: 30px 5%;
	text-align: center;
	}	
.block_04 .box_01 { 
	max-width: 950px;
	min-height: 540px;
	padding: 50px 45px;
	
	text-align: center;
	background-image: url('../images/bk_401s.jpg');
	background-position: center bottom; 
	
	background-size: 100% auto;
	-moz-background-size: 100% auto;
	-webkit-background-size: 100% auto;
	-o-background-size: 100% auto;
	}

.block_04 .box_05 { 
	max-width: 950px;
	min-height: 580px;
	padding: 50px 45px;
	
	text-align: center;
	background-image: url('../images/bk_501s.jpg');
	background-position: center bottom; 
	
	background-size: 100% auto;
	-moz-background-size: 100% auto;
	-webkit-background-size: 100% auto;
	-o-background-size: 100% auto;
	}	
.block_04 .block_btn {
	text-align: center;
	}	
}
	
/************************/ 
.block_05 { 
	padding: 30px 2%;
	text-align: center;
	}
.block_05 .box_02 ul { 
	margin-top: 20px;
	margin-bottom: 50px;
	}
.block_05 .box_02 li { 
    width: 50%;
	padding: 15px 20px;
	font-size: 24px; 
	font-weight: 700;
	}	
.block_05 .box_02 li.left { 
	color: #ffffff; 
	text-align: right;
	background: #e9607c;
-webkit-border-top-left-radius: 30px;
-webkit-border-bottom-left-radius: 30px;
-moz-border-radius-topleft: 30px;
-moz-border-radius-bottomleft: 30px;
border-top-left-radius: 30px;
border-bottom-left-radius: 3s0px;
	}	
.block_05 .box_02 li.right { 
	color: #e9607c; 
	text-align: left;	
	background: #fff2d9;
-webkit-border-top-right-radius: 30px;
-webkit-border-bottom-right-radius: 30px;
-moz-border-radius-topright: 30px;
-moz-border-radius-bottomright: 30px;
border-top-right-radius: 30px;
border-bottom-right-radius: 30px;
	}
.block_05 .box_02 .dd { 
	font-size: 20px; 
	}
.block_05 .box_04 { 
	font-size: 16px; 
	padding: 30px 10px;
	}
.block_05 .box_05 .drawer-header h1 { 
	position: relative;
	display: inline-block;	
	text-align: center;
	}
	
@media screen and (max-width: 992px) {
.block_05 .box_02 li { 
	font-size: 20px; 
	}
}
@media screen and (max-width: 768px) {

}
@media screen and (max-width: 480px) {

}
	
/************************/
.block_10 {
	padding: 0px 2%;
	}
.block_10 .drawer-header h1 { 
	position: relative;
	display: inline-block;	
	text-align: center;
	}
@media screen and (max-width: 768px) {

}
@media screen and (max-width: 480px) {

}
/************************
TOTAL
************************/
.cs01  { color:#d80012; }
.dot  { font-size: 11px; top: -2px; position: relative; }

.pc_768, .pc_480 { 
    display: block;
	}
.mo_768, .mo_480 { display: none; }

@media screen and (max-width: 992px) {

}
@media screen and (max-width: 768px) {
.pc_768 { display: none; }
.mo_768 { display: inline-block; }
}
@media screen and (max-width: 480px) {
.pc_480 { display: none; }	
.mo_480 { display: inline-block; }
}
/************************
BUTTON
************************/
.block_btn {
	position: relative;
	display: inline-block;
    width: 100%;
    text-align: center;
    z-index: 10;
	}


.block_btn1 {
	position: relative;
	display: inline-block;
    width: 100%;
    text-align: left;
    margin-left: 25px;
    z-index: 10;
	}

.btn {
	position: relative;
	display: inline-block;
	/*min-width: 120px;*/
	margin-bottom: 10px;
    min-height: 22px; 
	line-height: 22px; 
    outline: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    word-break: break-all;
    font-size: 16px;
	font-weight: 400; 
	
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	
	padding: 0px 0px;
/*	margin: 5px 0px;
	box-shadow: 2px 2px 5px #3f3537 ;*/
    }
	
a.btn_c02 {
	display: inline-block;
    min-width: 200px;
	padding: 10px 50px;

	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	
    color: #ffffff; 
    background: #d50020; 
    border: 1px solid #d50020;    
	}
a.btn_c02:hover, a.btn_c02:active { 
	color: #d50020; 
    background: #ffffff;
    border: 1px solid #d50020; 
	}

a.btn_c03 {
	display: inline-block;
    min-width: 100px;
	padding: 12px 50px;

	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	
    color: #ffffff; 
    background: #d50020; 
    border: 1px solid #d50020;    
    }
a.btn_c03:hover, a.btn_c03:active { 
	color: #d50020; 
    background: #ffffff;
    border: 1px solid #d50020; 
   }
   
@media screen and (max-width: 1280px) {

} 

@media screen and (max-width: 768px) {
.block_btn .block_btn1  {
	text-align: center;
    }
}

@media screen and (max-width: 480px) {
.block_btn1  {
	text-align: left;
	margin-left: 115px;
    }
}
/***********************
TABLE 表格選單
***********************/
table {
    font-size: 18px;
	width: 100%;
    margin: 0;
    padding: 0;
	line-height : 1.2em;
    border-collapse: collapse;
    border-spacing: 0;
    background: #fbe5e7;
	}
table tr {
    padding: 5px;
	text-align: left;
	border: 1px solid #ffffff;
    }
table tr a,table tr:hover,.table tr:active { 
	color: #222222;
	}
table tr th,
table tr td {
    padding: 3px 10px;
	min-height : 30px;
	text-align: center;
	border-left: 1px solid #ffffff;	
    }	
table tr th {
    font-size: 18px;
    letter-spacing: 1px;
	color: #000000;
	background: #f8ccd0;
    }	
tr:nth-of-type(odd) { 
    background: #fef3f4;
    }
	
table tr td span {
    display: none;
    }
	
@media only screen and (max-width: 480px) {
table {
    border: 0;
    }
table thead {
    display: none;
    }
table tr {
    margin-bottom: 10px;
	border-bottom: 2px solid #ffffff;
    }
table tr td {
	display: block;
    min-height: 30px;
	text-align: left;
    border-right: 0px solid #ffffff;
	border-bottom: 1px dotted #ffffff;
    }
table td:last-child {
    border-bottom: 0;
    }
table td:before {
    content: attr(data-label);
    float: left;
    text-transform: uppercase;
    font-weight: bold;
    }
table tr td span {
    display: inline-block;
	font-size: 14px;
	color: #cf333b;
	padding-right: 10px;
    }	
}



/************************
DRAWER-ITEM 
************************/ 
.drawer-content,
.drawer-header,
.drawer-item { 
	position: relative;
	display: inline-block;
	width: 100%;
	cursor: pointer;
	text-align: left;
	
	}
.drawer-header {
	min-height: 30px;
	padding: 6px 20px;
	overflow: hidden;
	/*width: 60%;*/
}
.drawer-header h1 {
	/*float: left;*/
    color: #b82125;
	font-size: 18px;
	line-height: 1.4em;	
	font-weight: 600;
	/*text-align: center;*/
}

.drawer-item-active .drawer-header {
	min-height: 30px;
	color: #ffffff;
}
.drawer-header-icon {
    display: inline-block; 
	content: ""; 
	/*float: left;*/ 
	width: 30px; 
	height: 30px; 

	background-image: url('../images/btn_open.svg');
	background-repeat: no-repeat; 
	background-position: center center; 
	background-attachment: scroll;
	
	background-size: 60% auto;
	-moz-background-size: 60% auto;
	-webkit-background-size: 60% auto;
	-o-background-size: 60% auto;
	
	text-align: center;
	vertical-align: middle; 
}






.drawer-header-icon.drawer-header-icon-active {
	transform: rotate(180deg);
	
}




.drawer-content,
.drawer-header,
.drawer-item-active .drawer-header,
.drawer-header-icon,
.drawer-header-icon.drawer-header-icon-active {
	transition: all 0.5s ease 0s; 
}

.drawer-item-active .drawer-header-icon {
	/*color: #ffffff;*/
}
.drawer-content {
    width: 96%; 
	margin: 0px 2%; 
	padding: 0; 
	display: block;
    color: #474747;  
	font-size: 16px;
	line-height: 1.8em;
	padding-top: 10px;
	padding-bottom: 30px;
	text-align: left;
}
.block_05 .box_05 .drawer-content {
	display: none;	
	}
.drawer-contentnoneopen {
	display: none;
}

.drawer-content ol {
	padding-left: 25px;
}

.drawer-content .ti_01 {
	margin-left : 1em;
	text-indent : -1em ;
}
.drawer-content .ti_02 {
	margin-left : 2em;
	text-indent : -1em ;
}
.drawer-content .ti_03 {
	margin-left : 3em;
	text-indent : -1em ;
}
.drawer-content .ti_04 {
	margin-left : 4em;
	text-indent : -1em ;
}
/************************
GOTOP
************************/

.go_bottom,
#go_top,
.go_link {
	position: fixed;
	display: inline-block;
	z-index: 99;
	}

#go_top { 
    width: 45px; 
	height: 45px;
	right: 10px;
	bottom: 100px;
	}
.go_link { 
    width: 170px; 
	right: 10px;
	bottom: 150px;
	}
	
#go_top img,
.go_link img { 
	position: relative;
	display: inline-block;
	width: 100%; 
	}

.go_bottom {
	left: 0px;
	bottom: 0px;
	width: 100%; 
	padding: 15px 0px;
	text-align: center;
	background: #e60013;
	color: #ffffff;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	}
.go_bottom a:hover,
.go_bottom a {
	font-size: 16px;
	color: #ffffff;
	}
	
.go_bottom img { 
	max-width: 22px;
	margin-right: 10px;
	}


@media only screen and (max-width: 768px) {
.go_link { 
    width: 80px; 
	}
}


.show_s1 { display: none; }
.show_s2 { display: block; }



@media only screen and (max-width: 480px) {

.show_s2 { display: none; }
.show_s1 { display: block; }


}


.block_02 .box_06 { 
	width: 100%; 
	margin: 20px 0%;
	padding: 30px 50px;
	padding-bottom: 0px;
	vertical-align: top;
	
background: #feebc3;
background: -moz-linear-gradient(top,  #feebc3 20%, #ffffff 40%);
background: -webkit-linear-gradient(top,  #feebc3 20%, #ffffff 40%);
background: linear-gradient(to bottom,  #feebc3 20%, #ffffff 40%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#feebc3', endColorstr='#ffffff',GradientType=0 );
	border-radius: 20px;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
	}
.block_02 .box_06 .pic { 
	width: 100%; 
	padding: 5px 5px;
	}
.block_02 .box_06 .pic img { 
	width: 50%; 
	float: left;
	padding: 5px 5px;
	}
.block_02 .box_06 .dd,	
.block_02 .box_06 .txt { 
	width: 100%; 
	padding: 10px 5px;
	text-align: left;
	}

@media screen and (max-width: 480px) {


.block_02 .box_06 .txt { 

	text-align: center;
	line-height: 1.8em;
	}


}

.block_02 .box_06 .txt .tt { 
	width: 100%; 
	min-height: 90px;
	padding: 25px 5px;
	padding-left: 80px;
/*	font-weight: 900;*/
	border-top: 1px solid #e7dfd5;
	}

.block_02 .box_06 .txt .tt .cs { 
	position: absolute;
	display: inline-block;
	left: 0;
	width: 70px;
	height: 70px;
	padding: 22px 0px;
	margin-top: -15px;
	margin-right: 10px;
	text-align: center;
	vertical-align: middle;
	border-radius: 80px;
	color: #ffffff;
	background: #feb071;
	/* }	 */
	
.block_02 .box_06 .btn_group { 
	bottom: -10px;
	height: 10px;
	z-index: 1;
	}
	
@media screen and (max-width: 960px) {

}
@media screen and (max-width: 480px) {
.block_02 .box_06 { 
	width: 90%; 
	margin: 20px 5%;
	padding: 30px 15px;
	padding-bottom: 0px;
	}
.block_02 .box_06 .pic img { 
	width: 100%; 
	padding: 5px 5px;
	}
.block_02 .box_06 .txt .tt { 
	width: 100%; 
	min-height: 90px;
	padding: 25px 5px;
	padding-left: 00px;
	font-weight: 400;
	}
.block_02 .box_06 .txt .tt .cs { 
	position: relative;
	left: 0;
	width: 100%;
	height: auto;
	padding: 5px 0px;
	margin: 5px 0px;
	font-weight: 900;
	}
.block_02 .box_06 .btn_group { 
	bottom: 0px;
	}	
}
/************************/ 

	.br{display: none;}
	.disclaimer.modal h3 { font-size: 28px; }
		.disclaimer.modal .close {
			border: none;
			background-color: transparent;
			font-size: 45px;
			color: #000;
		}
		.disclaimer .modal-body	{
			display: flex;
			flex-direction: column;
			gap: 16px;
			font-size: 16px;
		}
		.disclaimer.modal .modal-btn {
			color: #fff;
			font-weight: 600;
			padding: 6px 64px;
			border: none;
			border-radius: 6px;
			margin-bottom: 10px;
			font-size: 16px;
		}
		.disclaimer.modal .modal-btn.red {
			background-color: #ff3333;
		}
		.disclaimer.modal .modal-btn.gray {
			background-color: #999999;
		}
		.disclaimer .modal-footer {
			border-top: none;
			justify-content: center;
		}
		.btn-primary {
			background-color: inherit;
		}
		body.modal-open { padding-right: 0 !important;}
		a { color: inherit;}
		ul,ol {
			padding-left: 0;
		}
		@media screen and (max-width: 768px) {
			.disclaimer.modal .modal-btn {
				padding: 6px 56px;
			}
			.br{display: block;}
		}



