/*animate*/
@keyframes loopScale {
	0% { transform: scale(1,1) }
	60% { transform: scale(1,1) }
	80% { transform: scale(1.5,1.5) }
	100% { transform: scale(1,1) }
}
.loopScale {
	animation-name: loopScale;
	animation-duration: 3s;
	animation-iteration-count: infinite;
}
/*html*/
html {
	background: white;
	font-family: Arial, Helvetica, sans-serif;
}
::-webkit-scrollbar {
    display: none;
}
body {
	padding-top: 80px;
}
@media(min-width: 768px) {
	body {
		padding-top: 100px;
	}
}
/*layerLoading, layerZoom*/
.layerLoading, .layerZoom {
	background: rgb(40,40,40);
	position: fixed;
	left: 0; top: 0;
	width: 100%;
	height: 100%;
	z-index: 50;
	transition: opacity 1s;
}
.titleLoading {
	color: white;
	position: absolute;
	left: 50%; top: 50%;
	transform: translate(-50%,-50%);
	font-size: 18px;
	text-align: center;
}
.layerZoom {
	display: none;
	opacity: 0;
}
.imgZoom {
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	position: fixed;
	left: 0; top: 0;
	width: 100%;
	height: 100%;
}
.btnCloseLayerZoom {
	position: absolute;
	right: 18px; top: 18px;
	width: 32px;
	transition: transform 0.5s;
	cursor: pointer;
}
.btnCloseLayerZoom:active {
	transform: scale(1.5);
}
/*header*/
header {
	background: white;
	position: fixed;
	left: 0; top: 0;
	padding: 10px 5%;
	width: 100%;
	box-shadow: 0 0 5px rgb(80,80,80);
	overflow: hidden;
	font-size: 0;
	z-index: 10;
}
@media(min-width: 414px) {
	header {
		padding: 10px 4%;
	}
}
@media(min-width: 768px) {
	header {
		padding: 10px 3%;
	}
}
/*brand*/
.brand {
	float: left;
	margin-bottom: 10px;
}
.logo {
	display: inline-block;
	height: 50px;
}
.coDescribe {
	/*color: rgb(240,120,0);*/
	color: rgb(80,80,80);
	display: inline-block;
	margin-left: 10px;
	vertical-align: bottom;
}
.company {
	font-size: 18px;
	font-weight: 700;
}
.slogan {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.1px;
}
@media(min-width: 768px) {
	.brand {
		margin-bottom: 20px;
	}
	.logo {
		height: 60px;
	}
	.company {
		margin-bottom: 3px;
		font-size: 20px;
	}
	.slogan {
		font-size: 10px;
	}
}
/*nav*/
nav {
	display: none;
	float: right;
	margin-top: 30px;
}
nav a {
	color: rgb(80,80,80);
	display: inline-block;
	font-size: 20px;
	font-weight: 400;
	margin-left: 20px;
}
nav a.selected {
	color: rgb(240,120,0);
}
.btnOpenSideMenu {
	float: right;
	height: 20px;
	margin-top: 20px;
	transition: transform 0.5s;
	cursor: pointer;
}
.btnOpenSideMenu:active {
	transform: scale(1.5);
}
@media(min-width: 768px) {
	.btnOpenSideMenu {
		margin-top: 30px;
	}
}
/*sideMenu*/
.layerCloseSideMenu {
	background: rgba(0,0,0,0.5);
	position: fixed;
	right: 0; top: 0;
	width: 100%;
	height: 100%;
	z-index: 30;
	transition: all 0.5s;
	opacity: 0;
	pointer-events: none;
}
.sideMenu {
	background: rgba(0,0,0,0.8);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	position: fixed;
	right: 0; top: 0;
	width: 300px;
	height: 100%;
	z-index: 30;
	transform: translateX(100%);
	transition: all 0.5s;
	opacity: 0;
}
.sideMenu a {
	color: white;
	font-size: 18px;
	font-weight: 400;
	cursor: pointer;
}
.sideMenu a span {
	display: inline-block;
	width: 40px;
	font-size: 20px;
	text-align: center;
}
.headerSideMenu {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 0 0 auto;
	height: 80px;
}
.btnSignOut {
	flex: 0 0 auto;
}
.stretch {
	flex: 1 1 0;
}
.btnCloseSideMenu {
	flex: 0 0 auto;
	width: 32px;
	margin-right: 20px;
	transition: transform 0.5s;
	cursor: pointer;
}
.btnCloseSideMenu:active {
	transform: scale(1.5);
}
.bodySideMenu {
	flex: 1 1 0;
	padding-bottom: 60px;
	overflow: auto;
}
.bodySideMenu a {
	display: block;
	line-height: 60px;
	border-bottom: 1px solid rgb(200,200,200);
}
/*banner*/
.banner {
	position: relative;
}
.banner img {
	display: block;
	width: 100%;
}
.announcement {
	color: white;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: 18px;
	font-weight: 700;
	text-shadow: 0 0 10px black;
}
@media(min-width: 640px) {
	.announcement {
		font-size: 20px;
	}
}
@media(min-width: 768px) {
	.announcement {
		font-size: 24px;
	}
}
@media(min-width: 960px) {
	.announcement {
		font-size: 32px;
	}
}
/*boxTitle*/
.boxTitle {
	background: white;
	color: rgb(80,80,80);
	line-height: 25px;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	overflow: hidden;
	padding: 20px 5%;
}
@media(min-width: 414px) {
	.boxTitle {
		padding: 20px 4%;
	}
}
@media(min-width: 768px) {
	.boxTitle {
		line-height: 30px;
		padding: 20px 3%;
	}
}
/*gallery*/
.galleryCompany, .galleryProduct {
	background: rgb(180,180,180);
	padding: 20px 3% 0;
	text-align: center;
}
.galleryCompany>div, .galleryProduct>div {
	display: inline-block;
	width: 100%;
	max-width: 960px;
	margin: auto;
	font-size: 0;
}
.item {
	background: white;
	display: inline-block;
	border-radius: 8px;
	vertical-align: top;
}
/*galleryCompany*/
.galleryCompany .item {
	padding: 20px;
	margin-bottom: 20px;
}
@media(min-width: 768px) {
	.galleryCompany {
		padding-top: 30px;
	}
	.galleryCompany .item {
		padding: 30px;
		margin-bottom: 30px;
	}
}
.galleryCompany img {
	width: 100%;
	max-width: 640px;
}
.galleryCompany .content {
	font-size: 18px;
	white-space: pre-wrap;
	word-wrap: break-word;
	max-width: 640px;
	margin: 20px auto 0;
}
/*galleryProduct*/
.galleryProduct .item {
	width: 44%;
	padding: 20px;
	margin: 0 2% 20px;
	transition: all 1s;
}
@media(min-width: 768px) {
	.galleryProduct {
		padding-top: 30px;
	}
	.galleryProduct .item {
		width: 31%;
		margin: 0 1% 30px;
	}
}
.galleryProduct .image {
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	height: 160px;
}
.galleryProduct h3 {
	color: rgb(80,80,80);
	font-size: 18px;
	font-weight: 700;
	margin-top: 10px;
}
/*footer*/
footer {
	background: rgb(80,80,80);
	color: white;
	font-size: 14px;
	padding: 40px 5% 80px;
}
.contact h4 {
	font-weight: 700;
	text-align: left;
	margin-bottom: 5px;
}
.contact p {
	font-weight: 400;
	line-height: 20px;
	margin: 10px 0 30px;
}
.contact a {
	display: block;
	font-weight: 400;
	margin: 10px 0;
}
@media(min-width: 414px) {
	footer {
		padding: 40px 4% 80px;
	}
}
@media(min-width: 768px) {
	footer {
		padding: 40px 3% 80px;
	}
}
/*btnSignIn, btnChat*/
.btnSignIn, .btnChat {
	background: rgb(240,140,0);
	color: white;
	display: flex; align-items: center;
	justify-content: center;
	flex-direction: column;
	position: fixed;
	right: 15px; bottom: 15px;
	width: 70px;
	height: 70px;
	border: 2px solid white;
	border-radius: 40px;
	box-shadow: 0 0 5px rgb(160,160,160);
	font-size: 12px;
	z-index: 20;
	transition: 0.2s;
	cursor: pointer;
	-webkit-user-drag: none;
}
.btnChat {
	background: rgb(0,180,200);
}
.btnSignIn:active, .btnChat:active {
	transform: scale(1.12);
}
.btnSignIn img, .btnChat img {
	width: 28px;
	margin-bottom: 2px;
}