﻿* {
	margin: 0;
	padding: 0;
}
*::after, * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	font-family: 'Lato', sans-serif;
	font-size: 12px;
}
article {
	/*height: 1000px;
	margin: 100px auto;*/
	margin: 60px auto 0 auto;
	/*text-align: center;*/
	line-height: 1.7;
	z-index: 200;
}
article p {
	margin-bottom: 1em;
	color: #3f3a39;
	font-weight: 500;
}
a {
    text-decoration: none;
}
img {
	width: 100%;
}
ul, ol {
    list-style: none;
}

footer {
	height: 100%;
	padding: 10px 0 0 0;
	text-align: center;
	background-color: #2a2a2a;
}
footer a {
	/*color: #666;*/
	text-decoration: none;
}
footer p {
	margin: 2px auto;
    	color: #fff;
}
/* inner */
.inner {
	width: 980px;
	margin: 0 auto;
}
.inner:after {
	content: "";
	clear: both;
	display: block;
}
/* header */
#top-head {
	font-size: 12px;
	top: -100px;
	position: absolute;
	width: 100%;
	margin: 100px auto 0;
	padding: 30px 0 0;
	line-height: 1;
	z-index: 999;
}
#top-head a, #top-head {
	color: #fff;
	text-decoration: none;
}
#top-head .inner {
	position: relative;
}
#top-head .logo {
	float: left;
	font-size: 36px;
}
#top-head .logo img {
	width: 70%;
}
#global-nav ul {
	list-style: none;
	position: absolute;
	right: 0;
	bottom: 0;
	font-size: 14px;
}
#global-nav ul li {
	float: left;
	position: relative;
}
#global-nav ul li a {
	padding: 0 30px;
}
/* Btn Hover */
#global-nav ul li:after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 3px;
	bottom: -20px;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}
#global-nav ul li:hover:after {
	background: #fff;
	bottom: -30px;
}
/* Fixed */
#top-head.fixed {
	margin-top: 0;
	top: 0;
	position: fixed;
	padding-top: 10px;
	height: 55px;
	background: #fff;
	background: rgba(255,255,255,.7);
	transition: top 0.65s ease-in;
	-webkit-transition: top 0.65s ease-in;
	-moz-transition: top 0.65s ease-in;
}
#top-head.fixed .logo {
	font-size: 24px;
	color: #333;
}
#top-head.fixed #global-nav ul li a {
	color: #333;
	padding: 0 20px;
}
/* Fixed Btn Hover */
#top-head.fixed #global-nav ul li:after {
	bottom: -10px;
}
#top-head.fixed #global-nav ul li:hover:after {
	background: #0062B8;
	bottom: -20px;
}
/* Transition */
/*
#top-head,
#top-head .logo,
#global-nav ul li,
#global-nav ul li a {
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}
*/

/* Toggle Button */
#nav-toggle {
	display: none;
	position: absolute;
	right: 12px;
	top: 14px;
	width: 34px;
	height: 36px;
	cursor: pointer;
	z-index: 101;
}
#nav-toggle div {
	position: relative;
}
#nav-toggle span {
	display: block;
	position: absolute;
	height: 5px;
	width: 100%;
	background: #4b4b4b;
	left: 0;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
	top: 0;
}
#nav-toggle span:nth-child(2) {
	top: 11px;
}
#nav-toggle span:nth-child(3) {
	top: 22px;
}

@media screen and (max-width: 980px) {
article {
	padding: 10px 10px 30px 10px;
}
.inner {
	width: 100%;
	padding: 0 20px;
}
#global-nav ul li a {
	padding: 0 20px;
}
#top-head.fixed #global-nav ul li a {
	padding: 0 15px;
}
}

@media screen and (max-width: 640px) {
#top-head, .inner {
	width: 100%;
	padding: 0;
}
/*#top-head {
	top: 0;
	position: fixed;
	margin-top: 0;
}*/
/* Fixed reset */
#top-head.fixed {
	padding-top: 0;
	background: transparent;
}
#mobile-head {
	background: #fff;
	width: 100%;
	height: 56px;
	z-index: 999;
	position: relative;
}
#top-head.fixed .logo, #top-head .logo {
	position: absolute;
	left: 8px;
	top: 10px;
	color: #000;
	font-size: 20px;
}
#global-nav {
	position: absolute;
	top: -500px;
	background: #1262aa;
	width: 100%;
	text-align: center;
	padding: 10px 0;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}
#global-nav ul {
	list-style: none;
	position: static;
	right: 0;
	bottom: 0;
	font-size: 11px;
}
#global-nav ul li {
	float: none;
	position: static;
}
#global-nav ul li:after {
	display: none;
}
#top-head #global-nav ul li a, #top-head.fixed #global-nav ul li a {
	width: 100%;
	display: block;
	color: #fff;
	padding: 13px 0;
}
#nav-toggle {
	display: block;
}
/* #nav-toggle */
.open #nav-toggle span:nth-child(1) {
	top: 11px;
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	transform: rotate(315deg);
}
.open #nav-toggle span:nth-child(2) {
	width: 0;
	left: 50%;
}
.open #nav-toggle span:nth-child(3) {
	top: 11px;
	-webkit-transform: rotate(-315deg);
	-moz-transform: rotate(-315deg);
	transform: rotate(-315deg);
}
/* #global-nav */
.open #global-nav {
	/* #global-nav top + #mobile-head height */
	-moz-transform: translateY(556px);
	-webkit-transform: translateY(556px);
	transform: translateY(556px);
}
.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

#bnr {
	width: 100%;
	margin: 0 auto;
}

#bnr li {
	width: 50%;
	float: left;
	margin-bottom: 3px;
	list-style: none;
}
video#js-video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.toptitle {
    width: 70%;
    margin: 0 auto;
}
p.toptext1 {
    margin: -10px 0 -5px 0;
    font-size: 13px;
    text-align: center;
    font-weight: 600;
}
p.title2 {
    background-color: #f42900;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    line-height: 20px;
    padding: 5px 0 5px 0;
    width: 90%;
    margin: 10px auto;
}
span.font13 {
    font-size: 13px;
    line-height: 10px;
}
.topbutton {
    width: 55%;
    margin: 0 auto 20px auto;
}
footer p img {
    width: 60%;
}
p.footertext {
    margin: 10px 0 0 0;
    line-height: 15px;
}
p.footertel {
    font-size: 18px;
    font-weight: 600;
    margin: 6px 0 10px 0;
}
.footerbox {
    width: 60%;
    margin: 20px auto 10px auto;
}
p.footercredit {
    font-size: 12px;
    line-height: 22px;
    background-color: #eee;
    color: #434343;
}





/*----company----*/
p.underlayer_title {
    width: 100%;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #999;
    margin-bottom: 10px;
    clear: both;
}
.company {
	width: 100%;
	margin-bottom: 20px;
}
.company dt {
	width: 100%;
	background-color: #dadada;
	padding: 2px 0 2px 5px;
	text-align: left;
	font-weight: 600;
}
.company dd {
	width: 100%;
	padding: 5px;
}



/*----flow----*/
p.flowtext {
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
}
.flowtitle {
    padding: 0 0 0 15px;
    margin: 0 0 5px 0;
    font-weight: 600;
    background-color: #f4ec7a;
    font-size: 17px;
    line-height: 25px;
    height: 25px;
}
img.flowimg {
    width: 80%;
}
p.flowtext2 {
    margin: 0 0 25px 0;
}



/*----equipment----*/
img.equipmentphoto {
    margin: -6px 0 0 0;
}
.equipmentscroll {
    overflow: auto;
    white-space: nowrap;
    margin: 0 0 25px 0;
}
table.equipment {
    border-collapse: collapse;
    width: 100%;
    margin: 0 0 5px 0;
    text-align: justify;
    vertical-align: middle;
    line-height: 16px;
    border: solid 1px #999;
    font-size: 12px;
}
table.equipment th {
    border: solid 1px #999;
    background-color: #dadada;
    padding: 5px 5px 5px 5px;
}
table.equipment td {
    padding: 5px 5px 5px 5px;
    font-weight: 500;
    border: solid 1px #999;
}
table.equipment td:last-child {
    padding: 5px 5px 5px 5px;
    text-align: center;
}
table.equipment2 {
    border-collapse: collapse;
    width: 100%;
    margin: 0 0 5px 0;
    text-align: justify;
    vertical-align: middle;
    line-height: 16px;
    border: solid 1px #999;
    font-size: 12px;
}
table.equipment2 th {
    border: solid 1px #999;
    background-color: #dadada;
    padding: 5px 5px 5px 5px;
}
table.equipment2 td {
    padding: 5px 5px 5px 5px;
    font-weight: 500;
    border: solid 1px #999;
}



/*----product----*/
img.productphoto {
    margin: -6px 0 0 0;
}
ul.productlist.clearfix {
    width: 100%;
}
ul.productlist.clearfix li {
    float: left;
    width: 30%;
    margin: 0 0 3px 10px;
}



/*----contact----*/
p.contacttext1 {
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    background-color: #f4ec7a;
    padding: 10px 0 10px 30px;
    width: 80%;
    margin: 5px 0 20px 10px;
    border-radius: 15px;
}
#contact {
	width: 100%;
	margin-top: 10px;
	margin-bottom: 10px;
	border-collapse: collapse;
	font-size: 12px;
}
#contact th {
	width: 42%;
	background-color: #dadada;
	padding: 5px 5px 5px 15px;
	text-align: left;
	vertical-align: top;
	border: 1px solid #999;
}
#contact td {
	/*width: 100%;*/
	padding: 5px;
	border: 1px solid #999;
}
.w400 {
	width: 100%;
	border: 1px solid #999;
}
.form_btn3 {
	width: 100%;
	margin: 10px auto 30px auto;
}
.contact_reset {
	width: 50%;
	/*height: 50px;*/
	height: 47px;
	background-image: url(../img/contact/reset.png);
	background-repeat: no-repeat;
	background-size: 100%;
	border: none;
	/*text-indent: -9999px;*/
}
.contact_submit {
	width: 50%;
	/*height: 50px;*/
	height: 47px;
	background: url(../images/contact/submit.png);
	background-repeat: no-repeat;
	background-size: 100%;
	border: none;
	/*text-indent: -9999px;*/
}
