@charset "utf-8";

/* ------------------------------
背景固定画像
------------------------------ */
#topWrapper::before {
	width: 100%;
	height: 100vh;
	background: url(img/top_img.jpg) no-repeat center;
	background-size: cover;
	content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: -1;
}
/* ------------------------------
ヘッド logo & navi
------------------------------ */
.headerFixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 90px;
	background: #fff;
	z-index: 9;
}
header {
	display: flex;
	justify-content: space-between;
	padding: 0 200px;
}
header #logo {
	width: 200px;
	height: 74.82px;
	margin-top: 8px;
}
nav { z-index: 9; }
nav ul {
	display: flex;
}
nav ul li {
	font-size: 16px;
	line-height: 90px;
	height: 90px;
	margin-left: 30px;
}
nav ul li a {
	position: relative;
	display: block;
	color: #333;
	transition: .3s;
}
nav ul li a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #222;
	transform: scale(0,1);
	transform-origin: left top;
	transition: .3s;
}
nav ul li a:hover::after {
	transform: scale(1,1);
}
nav ul li a:hover {
	color: #777;
}
/* ------------------------------
キャッチコピー
------------------------------ */
.catchcopy {
	color: #333;
	font-size: 50px;
	font-weight: bold;
	font-style: italic;
	text-align: center;
	padding-top: 200px;
}
/* ------------------------------
TOP
------------------------------ */
.sec01 {
	display: flex;
	justify-content: space-between;
	width: 90%;
	margin: 0 auto;
	padding-top: 100px;
}
.sec01 div {
	text-align: left;
	width: 370px;
	border: 10px solid rgba(0,0,200,0);
	transition: 0.6s;
}
.sec01 div:nth-child(1):hover,
.sec01 div:nth-child(2):hover {
    border: 10px solid rgba(0,0,200,1);
}
.sec01 div p {
	font-size: 14px;
	line-height: 1.3;
	height: 200px;
	padding: 10px;
	background: #fff;
}
.sec01 div p span {
	display: block;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	padding-bottom: 6px;
}
.sec01 div p span:nth-child(2) {
	display: block;
	color: orange;
	text-align: left;
	padding-top: 10px;
}
/* ----------------------------------------
LED/電子ブレーカー/業務エアコン/複合機問い合わせ
---------------------------------------- */
.inquiryArea {
	width: 1012.9px;
	margin: 80px auto 0;
}
.inquiryArea a {
	display: flex;
	color: #fff;
	font-size: 28px;
	width: 100%;
	height: 100px;
	background: #6af;
	transition: 0.6s;
}
.inquiryImg {
	display: flex;
}
.inquiryImg img {
	width: 100px;
}
.inquiryText {
	font-size: 22.4px;
	padding: 32px 1em;
}
.inquiryLink {
	line-height: 100px;
	padding: 0 1em;
	background: #00a;
}
.inquiryArea a:hover {
	background: #00a;
}
/* ------------------------------
会社情報&アクセス
------------------------------ */
.sec02 {
	display: flex;
	justify-content: center;
	margin-top: 100px;
	padding: 5em 0;
	background: rgba(255,255,255,0.8);
}
.sec02 div:nth-child(2) {
	line-height: 1.6;
	width: 300px;
    padding-left: 2em;
}
.sec02 div:nth-child(2) ul li:first-child {
	font-size: 18px;
}
.sec02 div:nth-child(3) {
	width: 200px;
}
.sec02 div:nth-child(3) ul li a {
    color: #000;
    line-height: 1.6;
	transition: 0.6s;
}
.sec02 div:nth-child(3) ul li a:hover {
	color: #6af;
}
.sec02 .accessLink {
	color: #00f;
}
/* ------------------------------
フッター
------------------------------ */
footer {
	color: #fff;
	font-size: 12px;
	margin-top: 100px;
	background: #333;
}
footer .aboutus {
	font-size: 16px;
	text-align: center;
	padding: 24px 0;
}
footer .aboutus a {
	color: #fff;
}
footer span {
	display: block;
	padding: 16px 0;
	
}
footer p {
	text-align: center;
	line-height: 80px;
	height: 80px;
}

@media screen and (max-width: 1280px) {
/* ------------------------------
TOP
------------------------------ */
	.sec01 {
		width: 96%;
	}
}
@media screen and (max-width: 812px) {
/* ------------------------------
ヘッド
------------------------------ */
	.headerFixed {
		position: static;
		height: 74.82px;
	}
	header {
		justify-content: flex-start;
		flex-direction: column;
		padding: 0;
	}
	header #logo {
		height: 74.82px;
		margin: 0 auto;
	}
	nav {
		position: fixed;
		top: 0;
		left: 0;
		width: 260px;
		height: 100%;
		background: #fff;
		margin-left: -280px;
	}
	nav ul {
		flex-direction: column;
	}
	nav ul::before {
		content: "MENU";
		display: block;
		color: #fff;
		font-size: 24px;
		font-weight: bold;
		text-align: center;
		line-height: 80px;
		height: 80px;
		background: #333;
	}
	nav ul li {
		line-height: 50px;
		height: 50px;
		margin-left: 0;
		padding-left: 16px;
	}
/* ------------------------------
キャッチコピー
------------------------------ */
	.catchcopy {
		font-size: 30px;
		line-height: 1.6;
		padding-top: 30px;
	}
/* ------------------------------
TOP
------------------------------ */
	.sec01 {
		padding-top: 30px;
		flex-direction: column;
		width: 96%;
	}
	.sec01 div {
		width: 100%;
	}
	.sec01 div:nth-child(2) {
		padding: 20px 0;
	}
/* ----------------------------------------
LED/電子ブレーカー/業務エアコン/複合機問い合わせ
---------------------------------------- */
.inquiryArea {
	width: 400px;
	margin: 80px auto 300px;
}
.inquiryArea a {
	flex-direction: column;
	text-align: center;
	background: none;
}
.inquiryText {
	display: block;
	width: 100%;
	padding: 22px 1em;
	background: #6af;
}
.inquiryLink {
	display: block;
	width: 100%;
}
/* ------------------------------
会社情報&アクセス
------------------------------ */
	.sec02 {
		flex-direction: column;
		width: 96%;
		margin: 100px auto 0;
		padding: 2em 0;
	}
	.sec02 div:nth-child(1) {
		margin: 0 auto;
	}
	.sec02 .accessMap {
		width: 100%;
		padding: 0 10px;
	}
	.sec02 .accessMap iframe {
		width: 100%;
	}
	.sec02 div:nth-child(2) {
		padding-top: 20px;
	}
	.sec02 div:nth-child(3) {
		display: none;
	}
/* ------------------------------
フッター
------------------------------ */
	footer .aboutus {
		font-size: 16px;
		line-height: 1.6;
	}
	footer .aboutus span {
		font-size: 24px;
		width: 370px;
		margin: 0 auto;
	}
	footer p {
		line-height: 50px;
		height: 50px;
	}
}
@media screen and (max-width: 667px) {
/* ----------------------------------------
LED/電子ブレーカー/業務エアコン/複合機問い合わせ
---------------------------------------- */
	.inquiryArea {
		width: 360px;
	}
	.inquiryArea a {
		font-size: 24px;
	}
	.inquiryImg img {
		width: 90px;
	}
}