@charset "utf-8";

/*------------------------------------------------ 
style.css
------------------------------------------------*/

/* reset
------------------------------------------------*/
html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: normal;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
    line-height: 1;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
article, aside, details, figcaption, figure, footer, header, menu, nav, section { 
	display: block;
}
nav ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
ul {
	list-style: none;
	list-style-type: none;
	padding-left: 0px;
}

/* base
------------------------------------------------*/
body {
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	background-color: #ffffff;
	color: #414141;
	margin: 0;
	padding: 0;
	font-size: 90%;
	line-height: 1.6;
}
img {
	border: 0;
}
a {
	color: #414141;
	text-decoration: none;
}
a:hover {
	color: #2ab573;
	text-decoration: none;
	-webkit-transition: 0.5s;
	transition: 0.5s;		
}
section {
	margin: 20px auto 30px auto;
	width: 100%;
	max-width: 1500px;
	overflow: hidden;
}

/*  header 
------------------------------------------------*/
header {
	width: 100%;
	height: 95px;
	margin: 0 auto 0 auto;
	position: fixed;
	top: 0;
	z-index: 9999;
	background: #ffffff;
	border-bottom: 1px solid #cfcfcf;
}
header .text {
	margin-top: 5px;
	margin-bottom: 0px;
	margin-left: 10%;
	font-size: 12px;
}
header .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 95%;
	max-width: 1500px;
}
h1 {
	margin-right: auto;
	margin-top: 0px;
	margin-bottom: 0px;
}
h1 a {
	display: block;
}
h1 img {
	margin-left: 4%;
}

/* nav 
-----------------------------------------------*/
#global ul {
	display: flex;
	max-width: 1000px;
	justify-content: center;
	align-items: center;
}
#global ul li {
	display: block;
	font-size: 16px;
	border-right: 1px solid #cccccc;
	border-left: 1px solid #cccccc;
	padding: 0px 10px 0px 10px;
}
#global ul li + li {
	border-left: 0;
	border-right:1px solid #cccccc;
}
#global ul li a {
	color: #414141;
	text-decoration: none;
	padding: 7px 10px;
	position: relative;
}
#global ul .nav_h a {
	color: #2ab573;	
}
#global ul li a::after {
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	content: "";
	width: 0%;
	height: 2px;
	background: #2ab573;
	transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
#global ul li a:hover::after {
	width: 100%;
}
#nav_toggle {
	display: none;
}

@media screen and (max-width:1100px){
#global ul li {
	font-size: 15px;
	padding: 0px 6px 0px 6px;
}
}

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

#global {
	display: none;
	position: absolute;
	top: 95px;
	width: 100%;
	background: rgba(0,74,153,0.9);
	left: 0;
}
#global ul {
	display: block;
	margin: 0 auto;
	width: 90%;
	margin-left: 3%;
}
#global ul li {
	margin: 0 auto;
	text-align: center;
	border-bottom: 1px solid #ffffff;
	border-right: 0;
	border-left: 0;
}
#global ul li + li {
	border-left: 0;
	border-right: 0;
}
#global ul li a::after {
	display: none;
}
#global ul li:last-child{
	border: none;
}
#global ul li a {
	display: block;
	color: #ffffff;
	padding: 15px;
}

/*開閉ボタン*/
#nav_toggle {
	display: block;
	width: 40px;
	height: 40px;
	position: relative;
	top: 4px;
	z-index: 100;
}
#nav_toggle div {
	position: relative;
}
#nav_toggle span {
	display: block;
	height: 3px;
	background: #333;
	position: absolute;
	width: 100%;
	left: 0;
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}
#nav_toggle span:nth-chld(1){
	top:0px;
}
#nav_toggle span:nth-child(2){
	top:12px;
}
#nav_toggle span:nth-child(3){
	top: 24px;
}

/*開閉ボタンopen時*/
.open #nav_toggle span:nth-child(1){
	top:12px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	transform: rotate(135deg);
}
.open #nav_toggle span:nth-child(2){
	width: 0;
	left: 50%;
}
.open #nav_toggle span:nth-child(3){
	top: 12px;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

	
}

/* topimage
------------------------------------------------*/
#topimage {
	width: 100%;
	height: auto;
	margin-top: 95px;
}
#topimage .bxslider {
	
}
#topimage .bxslider img {
	width: 100%;
}
#main_image {
	margin-top: 95px;
	width: 100%;
	height: auto;
}
#main_image img {
	width: 100%;
}

/* home #contents
------------------------------------------------*/

#contents {
	text-align: center;
	margin-top: 95px;
}
#home #contents {
	margin-top: 50px;
}
#contents .main_img {
	width: 100%;
}
h2 {
	text-align: center;
}
#top_business {
	background: #00cccc;
}
#top_business .list {
	margin: 10px 0px;
}
.top_link img{
	max-width: 700px;
	max-width: 90%;
}
.top_link .list img {
	max-width: 500px;
	max-width: 80%;
}
.animated {
	animation-duration: 1s;
}
#home section {
	padding-bottom: 30px;
}
.top_link .page_link {
	width: 170px;
	margin: 10px auto;
}
.top_link .link {
	width: 170px;
	background: linear-gradient(25deg, #F36, #F90);
}
.top_link .link a {
	color: #ffffff;
	display: block;
	padding: 10px;
	font-size: 18px;
}
.lead {
	font-size: 110%;
	width: 55%;
	margin: 20px auto;
	text-align: left;
}
#top_business .lead {
	background: #ffffff;
	padding: 15px 20px;
}

/* pagetop
------------------------------------------------*/

#pagetop {
    position: fixed;
    bottom: 60px;
    right: 10px;
	margin-bottom: 0px;
	z-index: 10;
}
#pagetop a {
	display: block;
    text-decoration: none;
	background-image: url(../images/pagetop.png);
	width: 80px;
	height: 111px;
}
#pagetop a:hover {
	opacity: 0.5;
}

/* footer
------------------------------------------------*/

footer {
	width: 100%;
	margin: 30px auto 0px auto;
	padding-top: 0px;
	color: #222222;
}
.logo {
	text-align: center;
	margin-top: 30px;
	margin-bottom: 50px;
}
.footer_nav ul {
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer_nav ul li {
	display: block;
	font-size: 14px;
	border-right: 1px solid #cccccc;
	border-left: 1px solid #cccccc;
	padding: 0px 10px 0px 10px;
}
.footer_nav ul li + li {
	border-left: 0;
	border-right:1px solid #cccccc;
}
.footer_content .inner {
	
	margin: 50px auto 40px auto;
	overflow: hidden;
}
address {
	clear: both;
	text-align: center;
	font-size: 90%;
	font-style: normal;
	margin-top:20px;
	margin-bottom: 20px;
	padding: 0px 60px;
}
.footer-bar {
	background: #0CC;
	height: 50px;
	margin-bottom: 0px;
}
.footer-bar-inner {
	position: relative;
	overflow: hidden;
	margin-bottom: 0px;
}
#copyright {
	height: 50px;
	line-height: 50px;
	color: #ffffff;
	text-align: center;
	vertical-align: baseline;
	margin-top: 0px;
	margin-bottom: 0px;
	font-size: 14px;
}

/* company
------------------------------------------------*/

#company table {
	width: 80%;
	margin: 50px auto;
	border: 1px solid #cccccc;
}
#company table th {
	width: 25%;
	padding: 10px;
	border: 1px solid #cccccc;
	background: #2ab573;
	color: #ffffff;
}
#company table td {
	border: 1px solid #cccccc;
	text-align: left;
	padding: 10px 10px 10px 20px;
}
#company #access iframe {
	width: 100%;
}
#company #president {
	width: 80%;
	height: auto;
	margin: 50px auto;
	overflow: hidden;
}
#company #president_img {
	width: 40%;
	float: left;
}
#company #president_img img {
	width: 100%;
}
#company #president .msg {
	float: right;
	width: 60%;
	padding: 0px 20px 0px 35px;
	text-align: left;
	font-size: 100%;
}
#company .movie {
	width: 80%;
	margin: 30px auto;
	background: linear-gradient(25deg, #00cccc, #6acc3d);
	padding-top: 30px;
	padding-bottom: 30px;
}
#company video {
	clear: both;
	max-width: 450px;
	width: 80%;
	margin: 0 auto;
	height: auto;
	text-align: center;
}

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

#company #president_img {
	width: 60% ;
	float: none ;
	margin: 0px auto;
}
#company #president .msg {
	float: none ;
	width: 100% ;
}

#business #service #lineup .scale {
	width: 44%;
	padding: 5px;
	margin-left: 4%;
	margin-bottom: 50px;
	height: auto;
}
#business #safety .declaration {
	width: 90%;
	margin: 0px auto;
}
#business #safety .declaration img {
	width: 100%;
}
#business #main_service .service {
	width: 90%;
}
}

/* business
------------------------------------------------*/
#business #contents #service {
	width: 90%;
}
#business .lead {
	width: 80%;
}
#service #lineup {
	margin: 30px auto;
	width: 100%;
	height: auto;
}
#service #lineup h3 {
	font-size: 130%;
	margin-bottom: 40px;
	background: #2ab573;
	background: linear-gradient(25deg, #00cccc, #6acc3d);
	color: #ffffff;
	width: 300px;
	margin: 10px auto 40px auto;
	padding: 7px 10px;
}
#service #lineup h4 {
	font-size: 120%;
	margin: 30px 0px 5px;
}
#service #lineup .scale {
	float: left;
	display: block;
	width: 25%;
	padding: 10px;
	margin-left: 6%;
	margin-bottom: 50px;
	height: auto;
}
#service #lineup .scale p {
	padding: 5px ;
	text-align: left;
	margin: 5px 0px ;
}
.scale img {
	width: 100%;
    -moz-transition: -moz-transform 0.2s linear;
    -webkit-transition: -webkit-transform 0.2s linear;
    -o-transition: -o-transform 0.2s linear;
    -ms-transition: -ms-transform 0.2s linear;
    transition: transform 0.2s linear;
}
.scale img:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
#business .sub_img {
	width: 100%;
}
#main_service .service {
	margin-top: -170px;
}
#safety .safety {
	width: 90%;
	margin: 30px auto;
	overflow: hidden;
}
#safety .safety .safe_img {
	width: 22%;
	margin-left: 2%;
	float: left;
}
#safety .safety .safe_img p {
	text-align: left;
	margin-left: 10px;
}
#safety .safety .safe_img img {
	width: 100%;
}

#safety .declaration {
	width: 70%;
	margin: 0px auto;
}
#safety .declaration img {
	width: 90%;
}


/* recruit
------------------------------------------------*/

#recruit .movie {
	width: 80%;
	margin: 30px auto;
	background: linear-gradient(25deg, #00cccc, #6acc3d);
	padding-top: 30px;
	padding-bottom: 30px;
}
#recruit video {
	clear: both;
	max-width: 450px;
	width: 80%;
	margin: 0 auto;
	height: auto;
	text-align: center;
}
#recruit .text {
	width: 100%;
	max-width: 500px;
}
#recruit #licence {
	border: 1px solid #2ab573;
	width: 80%;
	padding-top: 10px;
	padding-bottom: 15px;
}
#recruit #licence h3 {
	background: linear-gradient(25deg, #F36, #F90);
	color: #ffffff;
	width: 280px;
	padding: 7px 10px;
	margin: 10px auto;
}
#recruit .lead {
	width: 80%;
	margin: 20px auto;
}
#recruit table {
	width: 80%;
	margin: 50px auto;
	border: 1px solid #cccccc;
}
#recruit table th {
	width: 25%;
	padding: 10px;
	border: 1px solid #cccccc;
	background: #2ab573;
	color: #ffffff;
}
#recruit table td {
	border: 1px solid #cccccc;
	text-align: left;
	padding: 10px 10px 10px 20px;
}





/* contact mailform
------------------------------------------------*/
#contact .lead {
	width: 80%;
}
#contact #form {
	width: 90%;
	max-width:1200px;
}
#contact #form .inner {
	width: 90%;
	text-align: left;
	margin: 30px auto 20px auto;
}

#mailform {
	clear: both;
	padding: 10px;
	margin-bottom: 15px;
}
table.mailform {
	width: 100%;
}
#mailform .mf {
	font-size: 95%;
}
#contact table {
	width: 95%;
	margin: 15px auto;
	border-collapse: separate;
	border-spacing: 0;
	text-align: left;
	line-height: 1.5;
	border-top: 1px solid #cccccc;
	border-left: 1px solid #cccccc;
}
#contact th {
	width: 25%;
	padding: 10px;
	vertical-align: top;
	border-right: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
	border-top: 1px solid #ffffff;
	border-left: 1px solid #ffffff;
	background: #eeeeee;
	font-size: 100%;
}
#contact td {
	font-size: 100%;
	padding: 10px;
	vertical-align: top;
	border-right: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
}
#mailform table.mailform tr th span {
	color: #cc0000;
	font-size: 90%;
}
table.mailform tr th p {
	margin: 0px;
	padding: 0px;
	font-size: 12px;
	color: #999999;
}

/* privacy
------------------------------------------------*/
#privacy_policy .inner {
	width: 90%;
	margin: 10px auto;
	text-align: left;
}
.privacy {
	padding: 20px 40px;
	border: 1px solid #cdcdcd;
}
#privacy .lead {
	width: 80%;
}
#privacy_policy .inner .text {
	width: 150px;
	margin: 0px auto 15px auto;
}
#privacy_policy {
	margin-bottom: 50px;
}
#privacy_policy dd {
	margin-left: 20px;
}

/* thanks
------------------------------------------------*/
#complete .inner {
	width: 90%;
	margin: 20px auto 50px auto;
}
#complete .inner p{
	text-align: center;
}


