@charset "UTF-8";




/* CSS STYLE */
body {
	padding: 13.32vw 0 0 0;
	font-size: 3.2vw;
}

html.scroll-h,
html.scroll-h body {
	height: 100%;
	overflow: hidden;
}

img {
	max-width: 100%;
	height: auto;
}
video {
	width: 100%;
}

.spnone {
	display: none;
}

/* HEADER */

header {
	position: fixed;
	top: 0;
	left: 0;
	background: #eae3cc;
	width: 100%;
	height: 13.32vw;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	-webkit-transition: 0.1s linear;
	-ms-transition: 0.1s linear;
	transition: 0.1s linear;
	z-index: 20000;
}

header.active {
	margin-top: -6.66vw;
}

.header-top {
	position: relative;
	background: #eae3cc;
	width: 100%;
	height: 6.66vw;
	z-index: 1;
}

.header-top .dvergr {
	width: 30.38vw;
	height: 4vw;
	margin: 0 auto;
	padding: 3.83vw 0 1.33vw 0;
	font-size: 0;
}

.header-btm {
	position: relative;
	z-index: 2;
}

.sp-area {
	position: relative;
	width: 100%;
	height: 10.66vw;
}

/*メニューボタン*/
.header-btm #menu-open {
	position: absolute;
	top: -4vw;
	right: 4vw;
	border-radius: 1.33vw;
	background: #28180e;
	width: 8vw;
	height: 8vw;
}

/*メニューボタン　上棒*/
.header-btm #menu-open:before {
	content: "";
	display: block;
	position: absolute;
	top: 22%;
	left: 50%;
	background: #fff;
	width: 5.33vw;
	height: 0.8vw;
	margin: -0.4vw 0 0 -2.66vw;
	-webkit-transition: 0.1s linear;
	-ms-transition: 0.1s linear;
	transition: 0.1s linear;
}

/*メニューボタン　下棒*/
.header-btm #menu-open:after {
	content: "";
	display: block;
	position: absolute;
	top: 78%;
	left: 50%;
	background: #fff;
	width: 5.33vw;
	height: 0.8vw;
	margin: -0.4vw 0 0 -2.66vw;
	-webkit-transition: 0.1s linear;
	-ms-transition: 0.1s linear;
	transition: 0.1s linear;
}
/*メニューボタン　中棒*/
.header-btm #menu-open span {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	background: #fff;
	width: 5.33vw;
	height: 0.8vw;
	margin: -0.4vw 0 0 -2.66vw;
}

.header-btm #menu-open.active:before {
	top: 50%;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.header-btm #menu-open.active:after {
	top: 50%;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.header-btm #menu-open.active span {
	display: none;
}


#menu-area {
	display: none;
	position: absolute;
	top: 6.66vw;
	left: 0;
	background: #f7f5ed;
	width: 100%;
	height: 100%;
	height: 100vh;
	height: calc(100vh - 17.32vw);
	-webkit-overflow-scrolling: touch;
	overflow-y: scroll;
}



.header-btm .menu-list {
	position: relative;
	width: 100%;
	margin: 0 0 26.66vw 0;
}

.header-btm .menu-list a {
	text-decoration: none;
	color: #000;
}

.header-btm .menu-list > li {
	border-bottom: 1px solid #ccc;
}

.header-btm .menu-list > li > a {
	position: relative;
	display: block;
	padding: 0 0 0 5.33vw;
	font-size: 4.26vw;
	line-height: 13.33vw;
}

.header-btm .menu-list > li > a:before {
	content: "";
	position: absolute;
	top: 50%;
	right: 2.66vw;
	width: 0;
	height: 0;
	margin: -1.33vw 0 0 0;
	border-style: solid;
	border-width: 1.33vw 0 1.33vw 1.33vw;
	border-color: transparent transparent transparent #9e5812;
	z-index: 1;
}

.header-btm .menu-list .menu-sub {
	border-top: 1px solid #ccc;
	padding: 2.66vw 0;
}

.header-btm .menu-list .menu-sub li a {
	display: block;
	padding: 0 0 0 8vw;
	font-size: 3.73vw;
	line-height: 9.33vw;
}

/* FOOTER */

footer {
	position: relative;
	background: #eae3cc;
	width: 100%;
	margin: 6.66vw 0 0 0;
	z-index: 3;
}

footer a {
	text-decoration: none;
	color: #000;
}

footer a:hover {
	color: #00b5f0;
}


footer .copyright {
	margin: 0 auto;
	font-size: 2.4vw;
	line-height: 1;
	text-align: center;
	padding: 2.66vw 0 2.66vw 0;
	color: #000;
}




/* SITEPARTS */
#wrap {
	position: relative;
	width: 100%;
	padding: 2vw;
	overflow-x: hidden;
	z-index: 2;
}

.outside,
.inside {
	position: relative;
	padding-left: 0vw;
	padding-right: 0vw;
}


