body{
	margin: 0px;
	padding: 0px;
	font-family: 'Noto Sans TC', '微軟正黑體', sans-serif;
	overflow-x: hidden;
	color: #000;
	background: #fff;
}

input[type="button"]:active {
	outline: none;
	border: none;
}

* {
	box-sizing: border-box;
}
 
*:focus {
	outline: 0 !important;
}

a:hover{
	text-decoration: none !important;
}

p {
}

.lazyLoad{
	position: relative;
	top: 50px;
	opacity: 0;
	transition: .3s;
}

.lazyLoad.show{
	top: 0px;
	opacity: 1;
}		


.parallax-window {
	background: transparent;
}

#wrapper {
	width: 100%;
}

.wrapper {
	width: 100%;
	max-width: 1280px;
	padding: 0 25px;
	margin: 0 auto;
}

.button {
	position: relative;
	top: 0;
	height: 65px;
	margin: 0;
	animation-name: breath;
	animation-iteration-count: infinite;
	animation-duration: 3s;
	animation-timing-function: ease-in-out;
	cursor: pointer;
	transition: .3s;
}

.button:hover {
	top: -5px;
} 

@keyframes breath {
	0% {
		height: 65px;
		margin: 0 auto;
	}

	50% {
		height: 70px;
		margin: -2.5px auto;
	}

	100% {
		height: 65px;
		margin: 0 auto;
	}
}

.content_title {
	width: 100%;
	padding-bottom: 10px;
	margin-bottom: 25px;
	border-radius: 10px;
	overflow: hidden;
}

.content_title h2 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	line-height: 45px;
	font-size: 35px;
	padding: 25px;
	border-radius: 10px;
}

.content_title h2 img {
	height: 100px;
	margin-right: 25px;
}

.content_title h2 span {
	font-weight: 100;
}





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

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

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

	.wrapper {
		padding: 0 15px;
	}

	.content_title h2 {
		padding: 10px;
		font-size: 18px;
		line-height: 28px;
	}

	.content_title h2 img {
		height: 60px;
		margin-right: 10px;
	}

}

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

	.content_title h2 {
		padding: 10px;
		font-size: 16px;
	}

	.button {
		height: 45px;
	}

	.button:hover {
		top: -3px;
	} 

	@keyframes breath {
		0% {
			height: 45px;
			margin: 0 auto;
		}

		50% {
			height: 50px;
			margin: -2.5px auto;
		}

		100% {
			height: 45px;
			margin: 0 auto;
		}
	}
}

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







