
@charset "UTF-8";


#overlay {
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.5);
	position: fixed;
	left:0;
	z-index: 2;
	display: none;
}


img {
	width: 100%;
}

header {
	display: flex;
	background: #FFF;
	position: fixed;
	z-index: 3;
}
header > * {
	text-align: left;

}
header h1 {
	width: 33vw;
}

header .right {
	width: 67vw;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
header .right .tel,
header .right .menu {
	width: 13.3vw;
}

header .menuBox{
	width: 61vw;
	position: absolute;
	top: 13.3vw;
	left: 100vw;
	z-index: 3;
}

.main {
	padding: 13.3vw 0 0;
}

footer {
	position: fixed;
	bottom: 0;
}

