@charset "utf-8";
/* CSS Document */

div.title {
	margin-bottom:0;
}
button {
	display: block !important;
	background: none;
	border: none;
	color: #555;
	width: 60px;
	letter-spacing: 0;
	cursor: pointer;
	position: fixed;
	top: 15px;
	right: 40px;
	z-index: 1001;
	text-align: center;
	outline: none !important;
	font-size: 0.8rem;
	font-weight: bold;
}
/*   ハンバーガーボタン3本線   */
button span.bar {
	display: block;
	height: 4px;
	border-radius: 2px;
	background-color: #555;
	margin: 10px 0 0;
	transition: all 0.2s;
	transform-origin: 10%;
	box-shadow: 1px 1px 0 #fff,-1px 1px 0 #fff,1px -1px 0 #fff,-1px -1px 0 #fff;
}
button.active span.bar {
	box-shadow: none;
}
button .close {
	letter-spacing: 0;
	display: none;
	width:auto;
	margin-top: 5px;
}
button .menu {
	display: block;
	width:auto;
	text-shadow: 1px 1px 0 #fff,-1px 1px 0 #fff,1px -1px 0 #fff,-1px -1px 0 #fff;
	margin-top: 5px;
}
/*  メニューアクティブ時  */
button.active {
	color: #fff;
}
button.active span.bar {
	width: 50px;
	background: #fff;
	margin-left:6px;
}
button.active .bar1 {
	transform: rotate(45deg);
}
button.active .bar2 {
	opacity: 0;
}
button.active .bar3 {
	transform: rotate(-45deg);
}
button.active .menu {
	display: none;
}
button.active .close {
	display: block;
	color: #fff;
}
nav {
	width: 100%;
	height: auto;
	transition: all 0.2s;
	transform: translate(100%);
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1000;
	opacity: 0;
}
nav ul li a {
	display: none;
}
/*
nav:after {
	content: '';
	width: 100%;
	height: 8px;
	position: absolute;
	left: 0;
	top: 0;
	background: repeating-linear-gradient(-45deg,#334fad,#334fad 1px,#08348b 0,#08348b 3px);
}
*/
nav.open {
	transform: translate(0);
	opacity: 1;
	background: rgba(42,93,193,0.8);
	padding: 0 1rem;
}
nav.open ul {
	margin:100px auto 30px;
	border-top: 1px solid #fff;
}
nav.open ul li {
	display: block;
	text-align:center;
	border-bottom:1px solid #fff;
	padding:0;
}
nav.open ul li.tel2 {
	display: none;
}
nav.open ul li a {
	color:#fff;
	display:block;
	width:100%;
	padding:1.5rem;
	font-size: 16px;
}
nav.open ul li a:hover,nav.open ul li a:active {
	text-decoration:none;
	background:rgba(255,255,255,.4);
}

@media screen and (max-width: 1080px) {
	button {
		right: 1rem;
	}

}
@media screen and (max-width: 768px) {
	button {
		top: 0.8rem;
	}
	nav.open ul li.tel2 {
		display: block;
	}
	nav.open ul li.tel-pc {
		display: none;
	}
	
}
@media screen and (max-width: 479px) {
	button {
		width: 50px;
		top: 1.5rem;
	}
	button span.bar {
		margin: 4px 0;
		transform-origin: 11%;
	}
	button.active span.bar {
		width: 30px;
		margin-left: 8px;
	}
	nav.open ul {
		margin: 80px auto 30px;
	}

}