@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");




#top {
    /* border-top: 0.00005px #fff0 solid; */
    width: 100%;
    position: relative;
    top: 0px;
    left: 0px;
    z-index: 5;
    opacity: 0;
}








/*/////////////////////////////////////////////////////////*/
/* 頭版 */
/*/////////////////////////////////////////////////////////*/

.header {
	position: fixed;
	top: 0;
	z-index: 999;
	width: 100%;
	transition: 0.3s ease all;
	/* background-color: #ffffff; */
	/* background-color: var(--primary_color); */
	/* border-bottom: 0.3125rem solid var(--primary_color); */
}

.header:before {
	display: none;
	position:absolute;
	content:'';
	top: 0;
	width: 100%;
	height:3px;
	/* background-color:#f9d7d7; */
	transition: 0.3s ease all;
}





	
	.header > .wrap {
		position: relative;
		/* width: 100%; */
		/* max-width: unset; */
		display: flex;
		align-items: center;
		justify-content: space-between;
	}



@media (max-width: 1280px) {
	.header.fixed > .wrap {
		/* width: 90%; */
	}


}




@media (max-width: 990px){



	.indexBody .header ,
	.inBody    .header.fixed{
		/* background-color: rgba(255 255 255 / 90%); */
		background-color: rgba(255 255 255 / 80%);
	}

	.inBody .header:not(.fixed){
		background-color: rgba(255 255 255 / 100%);
	}
	



	
	.header.fixed{
		/*padding: 5px 0px 0px;*/
		/* background-color: rgba(255,255,255,0.95); */
	}
	

	
	.header > .wrap {
		/* width: 90%; */
		width: 95%;
		/* background-color: #ddd; */
		width: 100%;
	}	
	
	
	
}










/*================*/
/* 漢堡選單 */
/*================*/
.menu_btn {
	position: absolute;
	width: 3.5rem;
	height: 2.8125rem;
	top: 26px;
	left: 2.5dvw;
	-webkit-transform: translateX(0%) translateY(0%);
	transform: translateX(0%) translateY(0%);
	cursor: pointer;
	display: none;
	z-index: 99;
	text-align: left;
}

.header.fixed .menu_btn {
}

	.menu_btn span {
		display: inline-block;
		background-color: #fff;
		height:2px;
		/*height:4px;*/
		margin: 5px 0px;
		transition:0.3s ease all;
		border-radius:3px;
		width: 100%;
	}
	.header.fixed .menu_btn span{
		/* background-color: #fff; */
	} 


	.menu_btn span:nth-of-type(2){
		width: 41px;
	}
	.menu_btn span:nth-of-type(3){
		width: 21px;
	}
	
	
	
		/*當前*/
		.menu_btn.active  {
			/* width: 30px; */
			/* top: 35px; */
			top: 31px;
			left: calc(2.5dvw + 5px);
			left: calc(35px + -20px);
			/* height: 2px; */
			-webkit-transform: unset;
			transform: unset;
			/* position: fixed; */
		}
		.header.fixed .menu_btn.active{
		}

			.menu_btn.active span {
				background:#ffffff;
				margin: 6px 0px;
			}
			/*.menu_btn.active span:nth-of-type(1) {
				transform: rotate(45deg);
				transform-origin: top left;
			}
			.menu_btn.active span:nth-of-type(2) {
				opacity: 0;
			}
			.menu_btn.active span:nth-of-type(3) {
				transform: rotate(-45deg);
				transform-origin: bottom left;
			}*/

			.menu_btn.active span:nth-of-type(1) {
				/*transform: rotate(39deg);
				transform-origin: top left;*/
				width: 100%;
				transform: translateY(1px) rotate(45deg);
			}
			.menu_btn.active span:nth-of-type(2) {
				opacity: 0;
			}
			.menu_btn.active span:nth-of-type(3) {
				/*transform: rotate(-39deg);
				transform-origin: bottom left;*/
				transform: translateY(-27px) rotate(-45deg);
				width: 100%;
			}



/* 在螢幕寬度大於991時，套用這裡的特定樣式 */
@media screen and (min-width: 990.1px) {



	.header.fixed.is-light ,
	.inBody .header.fixed{
		background-color: rgba(255 255 255 / 80%);
	}
	.inBody .header:not(.fixed).is-light{
		background-color: rgba(255 255 255 / 100%);
	}
	
		.header.fixed.is-light .nav > a,
		.inBody .header.is-light .nav > a{
			color: var(--dark_color);
		}





	/*滾動變色*/
	.header.is-dark .menu_btn:not(.active) span {
		background-color: #fff;
		/* outline: 4px #00000062 solid; */
	}
	/*滾動變色*/
	.header.is-light .menu_btn:not(.active) span{
		background-color: #000;
	}
	.indexBody .header.is-light .menu_btn:not(.active) span {
		outline: 0.8px rgba(255 255 255 / 40%) solid;
		/* box-shadow: rgb(255 255 255 / 50%) 0px 2px 4px 0px,
					rgb(255 255 255 / 70%) 0px 2px 16px 0px,
					rgb(255 255 255 / 70%) 0px -2px 16px 0px,
					rgb(255 255 255 / 50%) 0px -2px 4px 0px; */
	}
	.inBody .header.is-light .menu_btn:not(.active) span{
		outline: 0.8px rgba(255 255 255 / 40%) solid;
		/* box-shadow: rgb(255 255 255 / 50%) 0px 2px 4px 0px,
					rgb(255 255 255 / 70%) 0px 2px 16px 0px,
					rgb(255 255 255 / 70%) 0px -2px 16px 0px,
					rgb(255 255 255 / 50%) 0px -2px 4px 0px; */
	}

}

@media (max-width: 990px){
	
	
	.menu_btn {
		display:block;
		/* right: 20px; */
		left: 35px;
		width: 1.875rem;
	}
	.menu_btn.active{
		/* left: 0px; */
	}
	
	.header.fixed .menu_btn span{
		/* background-color: var(--primary_color); */
	}


	/*滾動變色*/
	.header.is-dark .menu_btn:not(.active) span  {
		/* background-color: #fff; */
	}

	/* .indexBod .header.is-dark .menu_btn:not(.active) span  {
		outline: 3px rgba(0 0 0 / 10%) solid;
		box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
	} */




	/*滾動變色*/
	.header.is-light .menu_btn:not(.active) span ,
	.header.is-dark  .menu_btn:not(.active) span{
		background-color: #000;
	}

	.menu_btn span {
		margin: 3px 0px;
	}
	.menu_btn span:nth-of-type(2){
		width: 70%;
	}
	.menu_btn span:nth-of-type(3){
		width: 35%;
	}
	

}

@media (max-width: 768px){
	
	
	.menu_btn {
		/* -webkit-transform: translateX(0%) translateY(50%);
    	transform: translateX(0%) translateY(50%); */
	}
	.menu_btn.active {
		/* right: 5vw; */
	}

	.header.fixed .menu_btn {
	}
	.header.fixed .menu_btn.active {
	}


}

















/*================*/
/*----- logo -----*/
/*================*/
.logo{
	padding: 0;
	margin: 0;
	 /* 160 320 */
	 /* 221.94px , 22.3958vw , 430.00px */
	width: clamp(3.226rem, -0.001rem + 5.21vw, 6.25rem); /* 355px , 22.3958vw , 430.00px */
	min-width: clamp(3.226rem, -0.001rem + 5.21vw, 6.25rem); /* 355px , 22.3958vw , 430.00px */
	transition: 0.3s ease all;
	box-sizing: border-box;
	animation-name: bounceIn;
	animation-duration: 1.2s;
	animation-fill-mode: both;
	visibility: visible;
	padding: clamp(0.6452rem, 1.0417vw, 1.2500rem) 0; /* 10.32px , 1.0417vw , 20.00px */
	padding: 10px 0;
}

/*æµ®å‹•*/
.header.fixed .logo{
	/* transition: 0.3s ease all; */
	/* width: 200px;
	padding: 20px 0px; */
	/* padding: 0; */
}


	.logo a{
		display: block;
		transition:0.3s ease all;
	}
	
		.logo img{
			width: 100%;
			height: auto;
		} 
	
	/*hover*/
	.logo a:hover{
		transform: scale(0.9);
		animation: bounceIn;	
	}
	


	

@media (max-width: 990px){


.logo {
    padding: 1.25rem 0px;
    float: none;
    /* width: 14.375rem; */
    margin-right: auto;
    position: relative;
    left: calc(2.5dvw + 50px);
    left: calc(35px + 50px);
    width: 3.1250rem;
    padding: 0.6250rem 0;
}
	
	/*æµ®å‹•*/
	.header.fixed .logo{
		transition: 0.3s ease all;
		width: 3.1250rem;
		padding: 0.6250rem 0;
	}
}

@media (max-width: 550px){

	
	/* .logo {
		width: 220px;
		padding: 5px 0px 10px;
	}	 */
	
	
}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
					
/*================*/
/*----- ç‰ˆé ­å³å´ -----*/
/*================*/	
	
		
		
.headerRightT{
	/* position: absolute; */
	/* right: 2.5dvw; */
	/* top: 0; */
	box-sizing: border-box;
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	 /* 11.36px , 1.1458vw , 22.00px */
	padding: 0 0;
	 /* 12.90px , 1.3021vw , 25.00px */
	 /* 12.90px , 1.3021vw , 25.00px */
}		
/*æµ®å‹•*/		
.header.fixed  .headerRightT{
	/* display: none; */
}


	
	
@media (max-width: 990px){
	
	.headerRightT {
		top: 0;
		/* float: none; */
		/* display: flex; */
		/* flex-wrap: wrap; */
		/* flex-direction: row-reverse; */
		/* align-items: center; */
		/* padding: 10px 0px; */
		/* margin-left: auto; */
		/* display: none; */
		position: unset;
	}	
		
}
	
	
	
	
@media (max-width: 550px){	
		
	.headerRightT {
		/* border-bottom: 1px #e0e0e0 solid; */
		/* margin: 0 0 5px; */
		/* width: 100%; */
	}		

}	
	

	
	
	
	
	
/*================*/
/*----- 頭版右側 -----*/
/*================*/			
        
  	
	
/* 頭版右側 */
ul.headerLinkArea{
	list-style-type:
	none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	font-size: clamp(1.0000rem, 0.9375vw, 1.1250rem); /* 16.00px , 0.9375vw , 18.00px */
	font-weight: normal;
	/* margin-right: 15px; */
	gap: clamp(0.869rem, -0.005rem + 1.41vw, 1.688rem); /* 13.94px , 1.4063vw , 27.00px */
}
	.headerLinkArea > li{
		list-style-type:none;
		/* padding-left: clamp(0.4839rem, 0.7813vw, 0.9375rem); */ /* 7.74px , 0.7813vw , 15.00px */
		margin: 0;
	}

	.headerLinkArea > li.logo_right{
		display: none;
	}


		.headerLinkArea > li > a{
			color: #fff;
			color: var(--dark_color);
			/*display: block;*/
			text-decoration: none;
			display: flex;
			flex-wrap: wrap;
			flex-direction: row;
			align-items: center;
			justify-content: center;
			width: clamp(1.25rem, 0.383rem + 1.4vw, 2.063rem);
		}


		.headerLinkArea .logo_right a{
			width: clamp(3.125rem, 1.125rem + 3.23vw, 5rem);
			/* background-color: #fff;
			border-radius: 0 0 6px 6px; 
			padding: 6px; */
		}

		.headerLinkArea li.fb a{
			/* width: 50px; */
			/* background-color: #1974ec;
			border-radius: .3125rem;
			width: 1.75rem;
			aspect-ratio: 1; */
		}
		.headerLinkArea li.ig a{
			/* width: 50px; */
			/* background: linear-gradient(45deg, #ffcd6c 0%,#ef5f4a 25%,#a335b4 50%,#505cd1 75%,#505cd1 75%,#9a37bb 100%);
			border-radius: 50%; */
		}
		.headerLinkArea li.member{
			position: relative;
		}
			.headerLinkArea li.member > a{
				/* width: 50px; */
				/* background: linear-gradient(45deg, #ffcd6c 0%,#ef5f4a 25%,#a335b4 50%,#505cd1 75%,#505cd1 75%,#9a37bb 100%);
				border-radius: 50%; */
			}


		.headerLinkArea li.fb > a, 
		.headerLinkArea li.ig > a, 
		.headerLinkArea li.yt > a, 
		.headerLinkArea li.member > a{
			/* filter: brightness(0) invert(1); */
		}

		/*滾動變色*/
		.header.is-dark .headerLinkArea li.fb > a img, 
		.header.is-dark .headerLinkArea li.ig > a img, 
		.header.is-dark .headerLinkArea li.member > a img{
			filter: brightness(0) invert(1); /* 白色 icon */
		}
		/*滾動變色*/
		.header.is-light .headerLinkArea li.fb > a ,
		.header.is-light .headerLinkArea li.ig > a,
		.header.is-light .headerLinkArea li.member > a {
			filter: none; /* 黑色 / 原色 icon */
		}

		.headerLinkArea li.fb img ,
		.headerLinkArea li.ig img ,
		.headerLinkArea li.yt img ,
		.headerLinkArea li.member img{
			width: 100%;
			padding: 0;
		}

		.headerLinkArea img{
			width: 100%;
			height: auto;
		}
			.headerLinkArea span{
				display: inline-block;
				/* padding-left: 10px; */
			}







		.headerLinkArea .language svg{
			width: 22px;
			height: 22px;
			fill: #ce9c69;
		}
		.headerLinkArea .university img{
			width: 22px;
			height: auto;
		}















/* 版頭上方下拉------------------- */
.header_icon_down{
	left: 50%;
	transform: translateX(-50%);
	transform-origin: top center;
	font-size: clamp(.625rem, 0.9375vw, .75rem);  /*字體 最小值 10px、大小約 0.9375vw、最大值 12px*/
	line-height: 1.1;
	/* z-index: -999999;
	opacity: 0; */
	transition: 0.1s ease all;

	 /*預設關閉*/
	letter-spacing: normal;
	padding: 10px 0 0px;
	margin: 0;
	list-style-type: none;
	display: block;
	/* background-color: var(--primary_color); */
	width: clamp(6.875rem, 3.541rem + 5.38vw, 10rem);
	text-align: center;
	top: clamp(1.375rem, 1.242rem + 0.22vw, 1.5rem); /**/
	display: none;
	position: absolute;
	z-index: 99;
	/* box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px; */
}
.header_icon_downBg{
	background-color: inherit;
	margin: 0;
	padding: 0;
	list-style-type : none;
	display: block;
	background-color: var(--primary_color);
}

.header_icon_down:before {
	position: absolute;
	content: '';
	border-bottom: solid 8px var(--primary_color);
	border-left: solid 12px rgba(255, 255, 255, 0);
	border-right: solid 12px rgba(255, 255, 255, 0);
	top: 2px;
	left: 50%;
	transform: translateX(-50%);
}


	/*.headerRight .login:hover .header_icon_down{
		display: block;
	}

	 .firefox_body .header_icon_down{
		top: 24px;
	} */




		ul.header_icon_downBg li{	
			padding: 0;
			margin: 0;
			list-style-type: none;
			display: block;
			font-size: clamp(.75rem, 0.7292vw, .875rem); /* 字體 最小值 11.67px、大小約 0.7292vw、最大值 14.00px */
		}
		ul.header_icon_downBg li:not(:last-of-type){
			border-bottom: 1px  solid #fff;
		}


			ul.header_icon_downBg li a{
				display: flex;
				padding: 10px 0;
				/* border-bottom: 1px var(--fourth_color) solid; */
				justify-content: center;
				color: var(--dark_color);
				text-decoration: none;
				font-size: inherit;
			}
			ul.header_icon_downBg li a:hover{
				/* opacity: 0.7; */
			}
			ul.header_icon_downBg li:last-of-type a{
				border-bottom: none;
			}
			ul.header_icon_downBg li a span.line ,
			ul.header_icon_downBg li span.line{
				background-color: #fff;
				width: 1px;
				height: 15px;
				margin: 0 10px;
				padding: 0;
				display: inline-block;
			}

			.header_icon_down a:hover{
				/* opacity: 0.5; */
				color: #fff;
				background-color: var(--third_color);
				transition: 0.3s ease all;
			}


			/* .header_icon.cart_icon ul.header_icon_downBg .quantity {
				color: var(--fifth_color);
			} */



			.headerLinkArea .member ul.header_icon_downBg li.fir{ 
				display: grid;
				align-items: center;
				grid-template-columns: repeat(2,1fr);
				position: relative;
			}
			.headerLinkArea .member ul.header_icon_downBg .line{ 
				position: absolute;
				top: 50%;
				left: 50%;
				transform: translate(-50% , -50%);
				margin: 0 0px;
			}


			













@media (max-width: 1100px){	

	.headerLinkArea .fb,
	.headerLinkArea .ig{
		display: none;
	}
	/* .header.is-dark .headerLinkArea li.fb a, .header.is-dark .headerLinkArea li.ig a,  */
	/* .header.is-dark  .headerLinkArea li.member a*/
	.headerLinkArea li.member > a {
		filter: unset !important;
		border: 0.0938rem solid var(--dark_color);
		border-radius: 50%;
		padding: 0.25rem;
		background-color: rgba(255 255 255 / 90%);
		aspect-ratio: 1;
	}
		.headerLinkArea li.member > a img{
			width: 70%;
		}

}




/* 在螢幕寬度大於991時，套用這裡的特定樣式 */
@media screen and (min-width: 990.1px) {


.headerLinkArea .member:hover .header_icon_down{
	display: block;
}

	/* 版頭上方下拉------------------- */
	.header.fixed .header_icon_down{
		top: 31px;
	}

}





@media (max-width: 990px){	

	
	ul.headerLinkArea {
		margin: 0;
		position: absolute;
		right: 2.5dvw;
		right: 35px;
	}
		.headerLinkArea img {
			/* width: 20px; */
		}

		.headerLinkArea .logo_right a{
			width: 50px;
			padding: 5px 0;
		}

		/*滾動變色*/
		.indexBody .header.is-dark .headerLinkArea li.fb > a img, 
		.indexBody .header.is-dark .headerLinkArea li.ig > a img, 
		.indexBody .header.is-dark .headerLinkArea li.member > a img{
			filter: brightness(0) invert(1); /* 白色 icon */
			filter:unset;
		}

		/* .header_mobile{
			display: block;
		}
		.headerRight .login > a{
			display: none;
		}
		
		.headerRight .login > a::before{
			content: unset;
		} */

		.headerLinkArea .member .header_icon_down {
			top: 2.3125rem;
			width: 6.25rem;
		}
		.header_icon_down.active {
			display: block;
		}




}
@media (max-width: 768px){
	ul.headerLinkArea {
		/* font-size: .75rem; */
		/* margin: 0 auto; */
		/* justify-content: unset; */
		/* text-align: center; */
	}

	
}
	
@media (max-width: 550px){	

	ul.headerLinkArea {
		/* font-size: .75rem; */
		/* margin: 0 auto; */
		/* justify-content: unset; */
		/* text-align: center; */
	}	
		.headerLinkArea li {
			padding: 0px 5px;
		}
		.headerLinkArea a {
			color: #a7a7a7;
			letter-spacing: 0px;
		}	
			.headerLinkArea img{
				/* display: none; */
			}
			.headerLinkArea span{
				padding: 0;
			}
}













/*================================================*/
/*----- PCç‰ˆ_æœå°‹ -----*/
/*================================================*/			




/*PCæœå°‹å€å¡Š------------------------------------------------*/

.search_areaPC{
	/* position: absolute; */
	/* right: 110px; */
	/* top: 21px; */
	position: relative;
	margin-left: 20px;
}
	/*æœå°‹icon*/
	.search_iconPC{
		transition: 0.3s ease all;
	}
		.search_iconPC label{
			position: relative;
			display: block;
			/* background-color: #ce9c69; */
			padding: 7px;
			border-radius: 50%;
		}
			/*.search_iconPC i{
				font-size: 35px;
				line-height: 35px;
				color: #3e3a39;
				display: block;
			}*/
			
			.search_iconPC label div{
				position:relative;
				display:block;
			}
			.search_iconPC  label#search_btnPC svg{
				width: 20px;
				height: 20px;
				display: block;
				fill: #fff;
				fill: #333;
				/* background-color: var(--primary_color); */
				/* padding: 10px; */
				/* border-radius: 50%; */
			}
			/* .search_iconPC label div img{
				width: 16px;
				height: 16px;
				display: block;
			} */
			.search_iconPC label div:before{
				position: absolute;
				content: '';
				background-color: #3e3a39;
				width: 0%;
				height: 1px;
				bottom: -12px;
				left: 0px;
				opacity: 0;
				transition: 0.2s ease all;
			}
			
			
		/*hover*/
		.search_iconPC:hover label{
			/*opacity:0.5;*/
			transition: 0.3s ease all;
		}	
		.search_iconPC:hover label div:before{
			background-color:var(--primary_color);
			width: 120%;
			opacity:1;
			transition: 0.2s ease all;
		}		
		
		
		


.search_inAreaPC{
	-webkit-transition: top .2s;
	transition: top .2s;
	position: absolute;
	overflow: hidden;
	width: 300px;
	display: none;
	top: 145px;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	box-sizing: border-box;
	padding: 15px 15px;
	z-index: 2;
	box-shadow: 0 18px 40px rgb(51 51 51 / 20%);
}
.header3.fixed .search_inAreaPC{
	top: 77px;
}
	
	/*æœå°‹é¡žåˆ¥*/
	.search_categoryAreaPC3{
		position: absolute;			
		left: 15px;
		width: 59px;
		z-index: 2;
	}
		.search_categoryAreaPC3 select{
			color: #fff;
			background: #000 url(../images/select_arrow_white.png) no-repeat;
			background-size: 13px;
			background-position: right;
			padding-right: 18px !important;
		}

	.search_inBoxPC{
		position: relative;
		width: 100%;
		padding: 0px 50px 0px 0px;
		box-sizing: border-box;
	}
		.search_inBoxPC input{
			background: transparent;
			border: 0px;
			/*color: #fff;*/
			color: #333;
			font-size: 1rem;
			font-weight: bold;
			line-height: 22px;
			height: 40px;
			padding: 0px;
			border-radius: 0;
			width: 100%;
			border-bottom: 1px solid #3e3a39;
		}
		.search_inBoxPC input[type="text"]:focus{
			border: 0px;
		}
		
	.search_inBoxPC a{
		z-index: 2002;
		color: #3e3a39;
		position: absolute;
		right: 0px;
		top: 10px;
		text-decoration: none;
	}
		.search_inBoxPC span{
			display:inline-block;
			vertical-align:middle;
		}
		.search_closePC{
			font-size:22px;
			font-weight:lighter;
		}	
		
	
	
	
	
	

/*================================================================*/
/*----- ç‰ˆé ­æ‰‹æ©Ÿæœå°‹ -----*/
/*================================================================*/			
       
               

	/*ç‰ˆé ­å•†å“æœå°‹*/
	.header_search_area {
		/* position: absolute; */
		/* right: 7.5%; */
		/* top: 50%; */
		/* -webkit-transform: translateX(0%) translateY(-50%); */
		/* transform: translateX(0%) translateY(-50%); */
		/* z-index: 1; */
		display:none;
	}
		#search{
			/*color:#ccc;*/
			color:#777; /*ä¿®æ”¹by pekey 20170725*/
		}
		@-moz-document url-prefix() { 
			#search{
				color:#ccc;
			}
		}
		.header_search{
			position: relative;
			font-size: 0px;
			background: #fff;
			/* border: solid 1px #b0645b; */
			box-shadow: 0 18px 40px #3333331a;
			/* width: 350px; */
			/* padding-right: 45px; */
			/* border-radius: 5px; */
		}
			.header_search input {
				height: 41px;
				line-height: 41px;
			}
				.header_search input[type='text']  {
					width: 100%;
					border: none;
					/*padding:5px;*//*åœ¨IEé¡¯ç¤ºæœƒæ“ å£“åˆ°*/
					font-size: 13px;
					background: #ffffff00;
					padding: 0px 50px 0px 15px;
				}
				.header_search input[type='submit'] {
					position:absolute;
					float:left;
					padding: 0px 0px 6px ;
					display:none;
				}
						
						.header_search label  {
							position: absolute;
							right: 0px;
							top: 0px;
							background: var(--primary_color);
							width: 43px;
							height: 41px;
							display: flex;
						}
						
							/* .header_search  i{
								font-size: 20px;
								color:#fff;
								margin: 12px 9px;
							} */
							.header_search  svg{
								width: 20px;
								height: 20px;
								fill: #fff;
								margin: auto;
							}
									
									
				
	
	
	
	
	
	
	
	
	
	
	
@media (max-width: 990px){	

	.search_areaPC{
		display:none;
	}
	
	/*ç‰ˆé ­å•†å“æœå°‹*/
	.header_search_area {
		display:block;
	}
	
}
























/*================*/
/*----- èªžç³» -----*/
/*================*/			
        
  	
	/*èªžç³»å€å¡Š*/
	.Lang_area {
		/* font-family: 'Noto Sans TC', sans-serif; */
		font-weight: bold;
		/*position: absolute;
		top: 50%;
		right: 0px;
		margin: -17px 0px;*/
		/* position: relative; */
		/* z-index:4; */
		/* box-sizing: border-box; */
		/* margin-right: 8%; */
	}
	.Lang_area.Pc {
		/* display: none; */
	}	
	.Lang_area.Mob {
		display: none;
		background-color: #fff;
		padding: 9px 0px;
		border-bottom: 1px #c5c5c5 solid;
	}
		/* .Lang{
			padding: 0 16px 0 0;
			text-align: center;
		}
			.Lang img{
				width: 20px;
				height:auto;
			}
		
			.Lang > a {
				font-size: 12px;
				line-height: 34px;
				color: #58595b;
				display: block;
				text-decoration:none;
				padding: 0px 0px 0px 0px;
			}
			
			.Lang > a:before {
				position: absolute;
				content: "";
				border-top: solid 7px #898989;
				border-left: solid 4px rgba(255,255,255,0);
				border-right: solid 4px rgba(255,255,255,0);
				top: 8px;
				right: 0px;
			} */		
			
		
		.nL_in_area{
			/* position: absolute;
			width: 75px;
			top: 24px;
			left: 50%;
			-webkit-transform: translateX(-50%);
			transform: translateX(-50%);
			background-color: #fff;
			border-radius:3px;
			display:none;
			margin: 1px 0px 0px;
			box-shadow: 1px 2px 3px 1px rgba(0, 0, 0, 0.2); */
			display: flex;
			flex-wrap: wrap;
			flex-direction: row;
			align-items: center;
			justify-content: flex-end;
			margin: 0 -12px;
		}
		.Lang_area.Mob .nL_in_area {
			justify-content: center;
		}		
		

			.nL_in{
				text-align: center;
				padding: 0px 12px;
				box-sizing: border-box;
				position: relative;
			}
			.nL_in:before{
				position: absolute;
				content: '';
				background-color: #989594;
				width: 1px;
				height: 12px;
				top: 50%;
				left: 0;
				-webkit-transform: translateX(0%) translateY(-50%) rotate(28deg);
				transform: translateX(0%) translateY(-50%) rotate(28deg);
			}
			.nL_in_area .nL_in:first-of-type:before{
				display: none;
			}

				.nL_in > a{
					color: #989594;
					display: inline-block;
					font-size: 1rem;
					line-height: 24px;
					text-decoration:none;
				}
				/* activeç•¶å‰æ¨¡å¼ */
				.nL_in.active > a{
					color: var(--primary_color);
				}
				


			.Lang > a:hover ,
			.nL_in > a:hover {
				opacity:0.5;
			}			
	
			
				
	
	
@media (max-width: 990px){	

	.Lang_area.Pc {
		display: none;
	}	
	.Lang_area.Mob {
		display:block;
	}
}
	
	
	
	
	
	
	


	
	
	
					
/*================*/
/*----- ä¸»æŒ‰éµ -----*/
/*================*/

/* .header_rightArea{
    float: right;
	box-sizing: border-box;
} */

	.navbar{
		/* text-align: center; */
		/* box-sizing: border-box; */
		/* transition: all 0.3s ease; */
		display: flex;
	}

	
	/*.indexBody */
	.header .navbar{
		/* display: none; */
	}

	
	.navbar {
		/* background-color: var(--primary_color); */
		/* float: left; */
		/* width: 100%; */
		/* text-align: center; */
		font-size: clamp(1.0000rem, 0.9375vw, 1.1250rem); /* 16.00px , 0.9375vw , 18.00px */
	}
	.navbar .wrap{
		display: block;
        width: 100%;
        padding: 0;
		/* display: flex; */
		column-gap:clamp(0.9678rem, 1.5625vw, 1.8750rem); /* 15.48px , 1.5625vw , 30.00px */
		/* justify-content: space-between; */
	}
		/*.inbody .header.fixed .navbar{
			padding: 0px 0px;
			float: right;
			width: auto;
		}
			
			.inbody .nav{
				width:12.5%;
			}
			.inbody .header.fixed .nav {
				width:auto;
			}
					.inbody .nav a {
						font-weight: bolder;
					}*/
					.inbody .header.fixed .nav a {
						/*color: #888888;
						font-weight:normal;*/
					}			
						/* .nav > a:before {
							position: absolute;
							width: 1px;
							height: 20px;
							top: 50%;
							left: 0;
							-webkit-transform: translateX(0%) translateY(-50%);
							transform: translateX(0%) translateY(-50%);
						}		
						.nav:nth-of-type(3) > a:before ,
						.header.fixed .nav > a:before {
							display: none;
						}	 */
							
						/*hover*/
						.inbody .nav:hover > a {
							/*background:var(--primary_color)00;
							color: var(--primary_color);*/
						}
	




						


		.nav{
			box-sizing: border-box;
			position: relative;
			font-size: inherit;
		}
			.nav > a{
				text-decoration: none;
				font-size: inherit;
				transition: 0.3s ease all;
				position: relative;
				/* padding: 15px 30px; */
				padding: clamp(0.4839rem, 0.7813vw, 0.9375rem) 0; /* 7.74px , 0.7813vw , 15.00px */
				display: flex;
				border: none;
				border-radius: 0px;
				text-align: left;
				padding: clamp(0.806rem, 1.3vw, 1.563rem) 2.81rem;
				/* padding-left: clamp(calc(0.806rem + 0.5dvw), calc(1.3vw + 0.5dvw), calc(1.563rem + 0.5dvw)); */
				/* padding-right: 2.81rem; */
				padding-left: clamp(1.419rem, 2.29vw, 2.75rem);
				padding-right: clamp(1.419rem, 2.29vw, 2.75rem);
				color: #ffffff;
				/* border-bottom: 1px solid var(--primary_color); */
				font-size: inherit;
			}
			/* .nav > a span{
				margin-bottom: 0.3125rem;
				font-size: inherit;
			} */


			.nav2 > a{
				position: relative;
			}
			 .nav2 > a:before {
				position: absolute;
				top: 50%;
				transform: translateY(-50%) translateX(0%);
				display: inline-block;
				font-family: bootstrap-icons;
				font-style: normal;
				color: #fff;
				margin-right: 0px;
				content: "\F285";
				right: 10px;
				display: none;
			}
			
			/*hover*/
			.nav:hover > a {
				opacity: 0.5;
				transition: 0.3s ease all;
			}
			
								
			.navOpen {
			}
			.navOpen.pc {
				position:absolute;
				width:clamp(7.5809rem, 12.2396vw, 14.6875rem); /* 121.29px , 12.2396vw , 235.00px */
				display:none;
				z-index: 2;
				/* top: calc(100% + 0.25rem); */
				top:calc(100% - 0.0625rem);
				left:50%;
				-webkit-transform: translateX(-50%) translateY(0%);
				transform: translateX(-50%) translateY(0%);
				/*font-size: clamp(0.7656rem, 0.7292vw, 0.8750rem); *//* 12.25px , 0.7292vw , 14.00px */
				font-size: calc(clamp(1.0000rem, 0.9375vw, 1.1250rem) * 0.9);
			}							
			
			
			.nav:hover .navOpen.pc {
				display:block;
			}
			
			
			.nav_mobile{
				display: none;
			}				
							
				
			
			.navOpen.mobile {
				display:none;
				opacity:0;
				z-index:-999999;
				position: absolute;
			}	
			
			/*hover*/
			.nav:hover .navOpen.pc {
				display: block;
				
				transition: 0.3s ease all;
			}	
								
				.navOpenBg {
					position:relative;
					/* background-color: rgba(255 255 255 / 90%); */
					background-color: var(--primary_color);
				}
			
					.navOpenList a {
						text-align:center;
						font-size: inherit;
						color: #fff;
						line-height:1.5;
						padding: 0.625rem 0.3125rem;
						transition:0.3s ease all;
						text-decoration:none;
						letter-spacing: 0px;
						display: block;
						font-size: inherit;
					}
					.navOpenList a span{
						display: block;
					}
						.navOpenList > a:hover {
							background-color: var(--third_color);/*20221114_Abby_ä¿®æ”¹*/
							/* color: #fff; */
						}

			
			
					
					.navOpen.pc  .navOpenList a {
					}	
						/*hover*/
						.navOpen.pc  .navOpenList a:hover {
						}
	
	
	

	
	
	@media (max-width: 990px) {
	

	.navbar {
		flex-direction: column;
		position: absolute;
		width: 400px;
		top: 0px;
		left: -400px;
		height: 100%;
		box-sizing: border-box;
		background: rgb(20 16 9 / 70%);
		transition: 0.3s ease all;
		padding: 77.4px 0px 0px;
		margin:0;
		overflow-y: auto;
		z-index: 4;
		float: none;
		min-height: 100dvh;
		font-size: clamp(1rem, 0.467rem + 0.86vw, 1.5rem);
	}
	.navbar .wrap{
		display:block;
	}
	    .header.fixed > .wrap {
		/* width: 95%; */
		}
		/*.inbody .header.fixed .navbar,*/
		.header.fixed .navbar {
			/* padding: 72px 0px 0px; */
			/* float: none; */
			/* width: 400px; */
			/* margin:0 !important; */
			/* background: rgba(0, 0, 0, 0.7); */
		}
		.navbar.active {
			/* display: block; */
			left: 0px;
			/* right: 0px; */
			box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
		}
		/*.indexBody */
		.header .navbar {
			/* display: unset; */
		}				
			/*.indexBody */
			.header .navbar .wrap{
				width: auto;
			}		
		
		
		.navbar.navbarBottom ,
		.navbar.navbarBottom.fixed{
			display: none;
		}


	
	/*.inbody */
	/* .nav , */
	/*.inbody */
	/* .header.fixed .nav {
		width:100%;
	} */
	/*.inbody */
	/* .nav > a:before {
		display:none;
	} */



			
			.nav_mobile{
				display: block;
			}

			.nav {
				float:none;
				width: 100%;
				padding: 0px;
				position: relative;
			}
				.nav.geneinfo:after {
					position: absolute;
					content: '';
					border-top: solid 5px #999;
					border-left: solid 3px rgba(255,255,255,0);
					border-right: solid 3px rgba(255,255,255,0);
					top: 19px;
					right: 15px;
				}
				

				
					
					.nav.active > a{
						background: transparent;
					}
									

					
						
						.navOpen {
							position:relative;
							top:0px;
							left:0px;
							margin:0px;
							width:auto;
							border-radius:0px;
							background:#444;
						}
							.navOpen:before, .navOpen:after {
								border-bottom: solid 8px #444;
								left: 23px;
							}
								.nO_list a {
									text-align:left;
									padding: 15px 15px;
								}
								
						
						/*hover*/
						.nav:hover .navOpen.pc {
							display:none;
						}	
						.fixed_nav:hover .navOpen.pc {
							display:none;
						}
							
							.navOpen.mobile {
								display: none;
								opacity: 1;
								z-index: 1;
								position: relative;
							}
								.navOpenBg {
									box-shadow: none;
								}
									.navOpen.mobile  .navOpenList {
										font-size: calc(clamp(1rem, 0.467rem + 0.86vw, 1.5rem) * 0.9);
									}
									.navOpen.mobile  .navOpenList > a {
										text-align:left;
										font-size: inherit;
										color: #ffffff;/*20221012_Abby_ä¿®æ”¹*/
										line-height:22px;
										/*padding: 12px 15px;*/
										padding: 12px 15px 12px 59px;
										background-color: #bca184c9;
										transition: 0.3s ease all;
										text-decoration:none;
										display:block;
										border-bottom: 1px solid var(--primary_color);
									}
										.navOpenList > a:hover {
											opacity: 0.7;
										}

	
	
	
	
	
}






@media screen and (min-width: 1201px) {

	

.header.fixed{
	/* box-shadow: 0px 0px 20px -1px rgba(0,0,0,0.3); */
	/* transition: 0.3s ease all; */
	/* padding: 0px 5vw; */
	/* background-color: var(--primary_color); */
	/* display: flex; */
	/* justify-content: space-between; */
	/* align-items: center; */
	/* border-bottom: none; */
}
.header.fixed:before {
	display:none;
}

	.header:not(.fixed) > .wrap ,
	.header:not(.fixed) .navbar .wrap{
		/* width: 95%; */
		/* transition: all 0.3s ease; */
	}


	.header.fixed > .wrap ,
	.header.fixed .navbar > .wrap{
		/* display: inline-flex; */
		/* justify-content: space-between; */
		/* width: auto; */
		/* margin: 0; */
		/* max-width: unset; */
	}

	.header.fixed > .wrap {
		/* padding-left: 5vw; */
		/* width: 95%; */
	}
	

	/*.indexBody */
	.header.fixed .navbar{
		/* padding: 72px 0px 0px; */
		/* width: auto; */
		/* margin: 0; */
		/* background-color: #fff; */
		/* background-color: transparent; */
		/* padding-right: 5vw; */
		/* margin-right: 7.5%; */
		/* margin-top: -85px; */
	}
	
	/*.indexBody */
	.header.fixed .navbar .wrap{
		/* width: 95%; */
		/* margin: 0; */
		/* max-width: unset; */
	}

	.header.fixed .navOpen.pc {
		/* top: calc(100% + -0.125rem); */
	}	


}










@media (max-width: 990px){

	.navOpen.mobile .navOpenList > a {
		padding: 12px 15px 12px 33px;
		line-height: 1.5;
	}
	
}


@media (max-width: 550px){
	
	
	/* .inbody .navbar ,*/
	.navbar{
		width: 100%;
		left: -100%;
		/* padding: 87px 0 0; */
	}	
		/*.inbody .header.fixed .navbar,*/
		.header.fixed .navbar{
			/* width: 100%; */
			/* padding: 46px 0px 0; */
		}
		
		/*.inbody .navbar.active ,*/
		.navbar.active{
			right: 0px;
		}
	
}



















