@charset "UTF-8";
@import url("reset.css");
@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
* {
    font-family: 'Noto Sans TC';
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
html,body {
	margin: 0;
	padding: 0;
	width:100%;
	height: 100%;
	-webkit-text-size-adjust:none;
	color:#333;
	line-height:1.8em;
	min-width:1200px;
}
a {
	color: #CCC;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	color: #999;
}
::-moz-selection { color: #FFF; background-color: #E85E75; }
::selection { color: #FFF; background-color: #E85E75; }

/*PAGE 共用*/
.footer {
	background-color:#F7F7F7;
	padding-top:20px;
	padding-bottom:20px;
	position:relative;
	color: #999;
	font-size:14px;
	line-height:30px;
}
.footer-center {
	width:1000px;
	margin:0 auto;
	position:relative;
}
.copy {
	width:450px;
	float:left;
	padding-top:30px;
}
.contact {
	width:550px;
	float:right;
}
#top-link {
	display:none;
	position:fixed;
	right:10px;
	bottom:10px;
	width:60px;
	height:60px;
	background-image:url(../img/gotop-2021.png);
	text-indent:-9999px;
	cursor:pointer;
	z-index:9997;
	background-size:60px auto;
}
#top-link:hover { background-position:bottom; }
.page-footer-before {
	background-image:url(../img/page-footer-before.png);
	height:150px;
	background-size:100% 100%;
}

/*
------------------ #nav_switch --------------------
*/

#nav_switch{
	display: none;
	cursor: pointer;
	position:fixed;
	top: 20px;
	right: 20px;
	width: 45px;
	height: 40px;
	background-color:#FFF;
	border-radius: 5px;
}
#nav_switch .bar{
	width: 35px;
	height: 4px;
	position: absolute;
	left: 0;
	right: 0;
	margin:auto;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
#nav_switch .bar.bar01{
	top: 6px;
	-webkit-transform-origin: 0% 50%;
	-moz-transform-origin: 0% 50%;
	-o-transform-origin: 0% 50%;
	-ms-transform-origin: 0% 50%;
	transform-origin: 0% 50%;
	background-color:#E85E75;
}
#nav_switch .bar.bar02{
	top: 18px;
	background-color:#E85E75;
}
#nav_switch .bar.bar03{
	top: 30px;
	-webkit-transform-origin: 30% 50%;
	-moz-transform-origin: 30% 50%;
	-o-transform-origin: 30% 50%;
	-ms-transform-origin: 30% 50%;
	transform-origin: 30% 50%;
	background-color:#E85E75;
}

#nav_switch.active .bar.bar01{
	left: 10px;
	top: 6px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	background-color:rgba(84,81,136,1);
}
#nav_switch.active .bar.bar02{
	display: none;
}
#nav_switch.active .bar.bar03{
	left: 4px;
	top: 23px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	background-color:rgba(84,81,136,1);
}

/*FOR MOBILE*/
@media screen and (max-width: 767px) {
	#nav_switch{
		display: block;
		z-index:99999;
	}
	.footer {
		background-color:#F7F7F7;
		padding:20px;
		position:relative;
		color:#333;
		font-size:14px;
		line-height:30px;
	}
	.footer-center {
		width:100%;
		margin:0 auto;
		position:relative;
	}
	.copy {
		width:100%;
		float:none;
		margin-top:30px;
	}
	.contact {
		width:100%;
		float:none;
		margin-top:0px;
	}
	.page-footer-before {
		display:none;
	}
}

.noLink {
   cursor: default;
}