@charset "utf-8";
/*
============================================================
ヘッダー用
============================================================
*/


/* ハンバーガーボタン実装用
============================================================ */
section.header-top {
	background-color: #000;
	color: #fff;
	height:30px;
	display: none;
}
@media screen and (min-width: 769px) {
	section.header-top {
		display: block;
	}
}

div.header-top {
	background-color: #000;
	padding: 5px 0 0 30px;
}
div.header-top h1 {
	font-size: 13px;
	font-weight: 300;
}
header {
	background: #fff;
	position: static;
	width:100%;
	top: 30px;
	left: 0;
	z-index: 10;
}
.is-fixed { /* ヘッダー固定用 */
	position: fixed;
	top:0;
	left:0;
	z-index: 10;
	width: 100%;
}
.is-shadow { /* ドロップシャドウ */
	filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.3));
}

.header {
	display: flex;
	justify-content: space-between;
	padding: 7px 0 0 5%;
	/*width:94% !important;*/
	height:80px;
	position: relative; /**/
}
@media screen and (min-width: 769px) {
	.header {
		height:100px;
		width:1200px !important;
		padding: 26px 480px 20px 24px;
	}
}
@media screen and (min-width:992px) {
	.header {
		/*width:960px !important;*/
	}
}

.header	.logo {
	/*font-size: 18px;*/
	padding-top: 5px;
}

.logo img {
	width: 272px;
}

.nav-button {
	display: none;
}

.headerNav {
	margin: 18px 0 0;
	padding: 0;
}
.headerNav a {
	font-size: 14px;
	color: #333;
}
.headerNav li {
	display: inline-block;
	margin: 0 0 0 10px;
}
.headerNav li:first-child {
	margin-left:0;
}

.nav-wrap.open {
	display: block;
}
.nav-wrap.close {
	display: none;
}

@media screen and (min-width: 769px) {
	.nav-wrap {
		display: block !important;
	}
}

/* 問い合わせボタン */

@media screen and (min-width: 769px) {
.contact {
		display: block;
		position: absolute;
		top:15px; right: 15px;
		width:440px;
	}
	.contact img{
		width:200px;
		height:auto;
	}
}

@media screen and (max-width: 768px) { /* 768pxまでの幅の場合 */

	header {
		background-color: #000;
	}
	.header	.logo {
		padding-top: 16px;
	}
	.logo img {
		width:75%;
	}
	.nav-button {
		display: block;
		cursor: pointer;
	}
	.nav-wrap { /*SPメニュー背景*/
		position: fixed;
		left: 0;
		top: 0;
		display: none;
		z-index: 10;
		background-color: rgba(0, 0, 0, 0.8);
		width: 100%;
		height: 100%;
	}
	.nav-wrap .headerNav {
		height: 100%;
		position: relative;
		overflow-x: hidden;
		overflow-y: auto;
		padding: 50px 0 0;/**/
		margin: 0;/**/
	}
	.nav-wrap li {
		display: block;
		margin: 0;
		border-bottom: 1px #a0a0a0 dotted;
	}
	.nav-wrap li a {
		color: #fff;
		font-size: 1.2rem;
		padding: 4% 5%;
		display:block;
	}

	/*メニューボタンのエフェクト*/
	.nav-button,
	.nav-button span {
		display: inline-block;
		transition: all 0.4s;
		box-sizing: border-box;
	}
	.nav-button {
		z-index: 20;
		position: fixed;
		top: 20px;
		right: 5%;
		width: 40px;
		height: 36px;
	}
	.nav-button span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 4px;
		background-color: #fff;
		border-radius: 4px;
	}
	.nav-button span:nth-of-type(1) {
		top: 0;
	}
	.nav-button span:nth-of-type(2) {
		top: 16px;
	}
	.nav-button span:nth-of-type(3) {
		bottom: 0;
	}
	.nav-button.active span:nth-of-type(1) {
		-webkit-transform: translateY(16px) rotate(-45deg);
		transform: translateY(16px) rotate(-45deg);
		background-color: #fff;
	}
	.nav-button.active span:nth-of-type(2) {
		opacity: 0;
	}
	.nav-button.active span:nth-of-type(3) {
		-webkit-transform: translateY(-16px) rotate(45deg);
		transform: translateY(-16px) rotate(45deg);
		background-color: #fff;
	}
  }





/* その他
============================================================ */
