@import url('https://fonts.googleapis.com/css2?family=RocknRoll+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sedgwick+Ave&display=swap');
@font-face {
	font-family: YuGothicM;
	src: local("Yu Gothic Medium");
}

/***********************************
 reset
***********************************/
*, html, body, div, dl, dt, dd, ul, ol, li, header, footer, nav,section,
h1, h2, h3, h4, h5, h6, form, input, textarea, p{
	margin: 0;
	padding: 0;
}
html, body{
	font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",YuGothic,"游ゴシック Medium",YuGothicM,"Hiragino Kaku Gothic ProN",メイリオ,Meiryo,sans-serif;
	font-size: 16px;
	letter-spacing: 0.02em;
}
dl, ul, ol{
	list-style-type: none;
}
html{
	overflow: unset;
	height: auto;
	min-height: 100%;
}
a{
	color: #1d1d1d;
	text-decoration: none;
	cursor: pointer;
	-webkit-transition: all .8s;
	transition: all .8s;
}
a:hover{
	color: #2c9633;
}
a img{
	-webkit-transition: all .8s;
	transition: all .8s;
}
a:hover img{
	filter:alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}

/***********************************
 base
***********************************/
body{
	position: relative;
	min-width: 1200px;
	height: 100vh;
	min-height: 100%;
	line-height: 1.5em;
	color: #1d1d1d;
	text-align: center;
}
article{
	position: relative;
	margin: 0 auto;
	padding: 40px 0;
	width: 100%;
	height: auto;
	overflow: hidden;
}

#mainimage + article{
	padding-top: 0;
}

section,
div.container{
	clear: both;
	position: relative;
	margin: 0 auto;
}
section{
	padding: 60px 0;
	max-width: 1100px;
}
div.container{
	width: calc(100% - 100px);
	min-width: 1200px;
}

@media screen and (max-width: 640px) {
	body{
		min-width: 100%;
		letter-spacing: 0;
	}
	article{
		padding: 2em 0;
	}
	section{
		padding: 1.5em 0;
		max-width: calc(100% - 8vw);
	}
	div.container{
		width: 100%;
		min-width: auto;
	}
}

main{
	position: relative;
	width: 100%;
}

/***********************************
 others
***********************************/
p{
	margin: 0 0 1.2em;
}
p:last-child{
	margin: 0;
}

.txtAC{
	text-align: center;
}
.txtAL{
	text-align: left;
}
.txtAR{
	text-align: right;
}

ul.disc{
	list-style-type: disc;
	margin-left: 1.25em;
	text-align: left;
}
ul.circle{
	list-style-type: circle;
	margin-left: 1.25em;
	text-align: left;
}
ul.caution{
	margin: 0 0 0 1.25em;
	text-align: left;
}
ul.caution li{
	position: relative;
	padding: 0.13em 0 0;
}
ul.caution li::before {
	position: absolute;
	left: -1.2em;
	display: block;
	content: "※";
}
ol{
	list-style-type: decimal;
	margin-left: 1.75em;
	text-align: left;
}

.marker{
	display: inline-block;
	margin: 0 0.1em;
	padding: 0 0.1em;
	background: linear-gradient(transparent 60%, #eaab4b 60%);
	font-size: 1.05em;
}


/***********************************
 header, footer
***********************************/
header, footer{
	clear: both;
	position: relative;
	display: block;
}

header{
	position: fixed;
	top: 0;
	display: block;
	width: 100%;
	min-width: 1200px;
	height: 118px;
	z-index: 100;
	background: rgba(15, 65, 35, 0.6);
}
header a{
	display: block;
	width: 100%;
	height: 100%;
	letter-spacing: 0;
}
header div.container{
	width: 100%;
	height: 55px;
	background: rgba(0,0,0,0.4);
	box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.5);
}

header h1{
	margin: auto;
	width: 350px;
	height: 60px;
}
header h1 a{
	margin: auto;
	width: 100%;
/*
	background: url(/images/logo.png) no-repeat center #247c2a;
	text-indent: -9999px;
*/
	line-height: 65px;
	color: #ffffff;
	font-family: 'RocknRoll One', sans-serif;
	font-size: 0.7em;
}

header ul#headerReservation{
	position: absolute;
	top: 10px;
	right: 20px;
}
header ul#headerReservation li{
	display: inline-block;
	margin: 0 0.2em 0 0;
}
header ul#headerReservation li:last-child{
	margin: 0;
}
header ul#headerReservation li a{
	margin: 0;
	padding: 0 1em;
	background: url(/images/btnHeaderReservation.png) no-repeat center top 5px #1d1d1d;
	background-size: 16px;
	width: auto;
	height: 40px;
	line-height: 60px;
	color: #ffffff;
	font-size: 0.4em;
	letter-spacing: -0.2em;
}
header ul#headerReservation li a:hover{
	background-color: #2c9633;
}

@media screen and (max-width: 640px) {
	header{
		min-width: 100%;
		height: 60px;
		text-align: left;
	}
	header div.container{
		display: none;
	}

	header h1{
		display: inline-block;
		margin: 10px 4vw;
		width: auto;
		height: 40px;
	}
	header h1 a{
		background-size: contain;
		width: auto;
		line-height: 40px;
		font-size: 0.5em;
	}
	/*
	header ul#header_info{
		display: none;
	}
	*/
}

footer{
	margin: 50px 0 0;
	background-image: linear-gradient(#ffffff 80px, #f9f7f1 80px, #f9f7f1 450px, #111111 450px);
}
footer div.container{
	min-width: 1100px;
}
footer div.container:nth-child(2){
	padding-top: 35px;
	text-align: left;
	color: #ffffff;
}
footer div.container:nth-child(2) a{
	color: #ffffff;
}
footer div.container:nth-child(2) a:hover{
	color: #2c9633;
}

footer ul.btnBoxContact + p{
	margin: 30px auto;
	font-size: 0.875em;
}

footer #footerLogo{
	float: left;
	margin: 0 30px 0 20px;
	width: 280px;
	text-align: center;
}
footer #footerLogo span{
	display: block;
	padding: 30px 0 0;
	font-family: 'RocknRoll One', sans-serif;
	font-size: 1.5em;
}
footer #footerLogo img{
	display: block;
	margin: 0 0 20px;
	max-width: 100%;
}

footer nav#footerNav{
	float: left;
	display: block;
	width: calc(100% - 330px);
	font-size: 0.8em;
}
footer nav#footerNav div{
	float: left;
	display: block;
	margin: 0 0 30px 30px;
	width: calc(33% - 30px);
}
footer nav#footerNav div:last-child::after{
	clear: both;
	display: block;
	content: "";
}
footer nav#footerNav ul li{
	position: relative;
	margin: 0 0 2px 2em;
}
footer nav#footerNav ul li::before{
	position: absolute;
	top: 0;
	bottom: 0;
	left: -1em;
	display: block;
	width: 8px;
	content: "";
	background: url(/images/btnArrow.png) no-repeat center;
}
footer nav#footerNav ul li a{
	display: block;
	padding: 4px 5px;
	line-height: 1.5em;
}

footer #copyright{
	clear: both;
	margin: 20px 0 0;
	padding: 5px 0 15px;
	letter-spacing: 0;
	text-align: right;
	font-size: 0.9em;
	border-top: solid 1px #cdcdcd;
}

@media screen and (max-width: 640px) {
	footer{
		background: linear-gradient(#ffffff 50px, #f9f7f1 50px);
	}
	
	footer div.container{
		min-width: 100%;
	}
	footer div.container:nth-child(2){
		padding: 2em 0 0;
		background: #111111;
	}

	footer ul.btnBoxContact + p{
		margin: 2em auto;
	}

	footer #footerLogo{
		float: unset;
		margin: 20px auto 50px;
	}
	footer #footerLogo span{
		padding: 0;
	}

	footer nav#footerNav{
		float: unset;
		width: 100%;
	}
	footer nav#footerNav div{
		float: unset;
		margin: 0 4vw 1em;
		width: calc(100% - 8vw);
	}
	footer nav#footerNav ul li a{
		padding: 0.5em 0;
	}
	footer #copyright{
		margin: 1.5em 4vw 0;
		padding: 0.5em 0 1em;
		font-size: 0.8em;
	}
}

/***********************************
 nav
***********************************/
.dwCheck,
.dwBtn,
.drawer-menu{
	display: none;
}

nav#globalNav{
	position: absolute;
	top: 2px;
	left: 50px;
	right: 50px;
	height: 55px;
	text-align: center;
	font-size: 0.95em;
	overflow: hidden;
}
nav#globalNav ul li{
	position: relative;
	display: inline-block;
	margin: 0 0 0 30px;
	height: 100%;
	line-height: 55px;
}
nav#globalNav ul li::before{
	position: absolute;
	top: 0;
	bottom: 0;
	left: -5px;
	display: block;
	width: 8px;
	content: "";
	background: url(/images/btnArrow.png) no-repeat center;
}
nav#globalNav ul li a{
	padding: 0 5px;
	color: #ffffff;
}
nav#globalNav ul li a:hover{
	color: #2c9633;
}

@media screen and (max-width: 640px) {
	nav#addMenu,
	nav#globalNav{
		display: none;
	}
	
	.dwBtn,
	.drawer-menu{
		display: block;
	}
	/* dwWrap */
	#dwWrap{
		display: table;
		width: 100%;
		height: 100vh;
		box-shadow: 0 0 50px 0 rgba(0,0,0,.8);
		-webkit-transition-property: all;
		transition-property: all;
		-webkit-transition-delay: .3s;
		transition-delay: .3s;
		-webkit-transition-duration: .5s;
		transition-duration: .5s;
	}
	#dwWrap__inner{
		display: table-cell;
	}
	/* drawer menu */
	.drawer-menu{
		box-sizing: border-box;
		position: fixed;
		top: 0;
		right: 0;
		width: 300px;
		height: 100%;
		padding: 40px 0;
		background: #222;
		-webkit-transition-property: all;
		transition-property: all;
		-webkit-transition-duration: .5s;
		transition-duration: .5s;
		-webkit-transition-delay: 0s;
		transition-delay: 0s;
		-webkit-transform-origin: right center;
		-ms-transform-origin: right center;
		transform-origin: right center;
		-webkit-transform: perspective(500px) rotateY(-90deg);
		transform: perspective(500px) rotateY(-90deg);
		opacity: 0;
	}
	.drawer-menu li{
		text-align: center;
	}
	.drawer-menu li a{
		display: block;
		height: 50px;
		line-height: 50px;
		font-size: 14px;
		color: #fff;
		-webkit-transition: all .8s;
		transition: all .8s;
	}
	.drawer-menu li a:hover{
		color: #1a1e24;
		background: #fff;
	}
	
	/* checkbox */
	.dwCheck{
		display: none;
	}
	
	/* menu button - label tag */
	.menu-btn{
		position: fixed;
		top: 10px;
		right: 8px;
		display: block;
		width: 40px;
		height: 40px;
		font-size: 10px;
		text-align: center;
		cursor: pointer;
		z-index: 101;
	}
	.bar{
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		width: 40px;
		height: 3px;
		background: #ffffff;
		-webkit-transition: all .5s;
		transition: all .5s;
		-webkit-transform-origin: left top;
		-ms-transform-origin: left top;
		transform-origin: left top;
	}
	.bar.middle{
		top: 13px;
		opacity: 1;
	}
	.bar.bottom{
		top: 26px;
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
	}
	.menu-btn__text{
		position: absolute;
		bottom: -13px;
		left: 0;
		right: 0;
		margin: auto;
		color: #ffffff;
		-webkit-transition: all .5s;
		transition: all .5s;
		display: block;
		visibility: visible;
		opacity: 1;
	}
	.menu-btn:hover .bar{
		background: #cccccc;
	}
	.menu-btn:hover .menu-btn__text{
		color: #cccccc;
	}
	.close-menu{
		position: fixed;
		top: 0;
		right: 300px;
		width: 100%;
		height: 100vh;
		background: rgba(0,0,0,0);
		-webkit-transition-property: all;
		transition-property: all;
		-webkit-transition-duration: .3s;
		transition-duration: .3s;
		-webkit-transition-delay: 0s;
		transition-delay: 0s;
		visibility: hidden;
		opacity: 0;
	}
	
	/* checked */
	.dwCheck:checked ~ .drawer-menu{
		-webkit-transition-delay: .3s;
		transition-delay: .3s;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		opacity: 1;
		z-index: 2;
	}
	.dwCheck:checked ~ #dwWrap{
		-webkit-transition-delay: 0s;
		transition-delay: 0s;
		-webkit-transform: translateX(-300px);
		-ms-transform: translateX(-300px);
		transform: translateX(-300px);
	}
	.dwCheck:checked ~ .menu-btn .menu-btn__text{
		visibility: hidden;
		opacity: 0;
	}
	.dwCheck:checked ~ .menu-btn .bar.top{
		width: 56px;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.dwCheck:checked ~ .menu-btn .bar.middle{
		opacity: 0;
	}
	.dwCheck:checked ~ .menu-btn .bar.bottom{
		width: 56px;
		top: 40px;
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.dwCheck:checked ~ .close-menu{
		-webkit-transition-duration: 1s;
		transition-duration: 1s;
		-webkit-transition-delay: .3s;
		transition-delay: .3s;
		background: rgba(0,0,0,.5);
		visibility: visible;
		opacity: 1;
		z-index: 3;
	}
}

/***********************************
 #pnList
***********************************/
#pnList{
	background: #e1dec0;
	height: 2.5em;
	font-size: 0.9em;
}
#pnList::after{
	clear: both;
	display: block;
	content: "";
}
#pnList ul{
    margin: 0 auto;
	max-width: 1050px;
	line-height: 2.5em;
}
#pnList ul li{
	position: relative;
	float: left;
	margin: 0 3em 0 0;
}
#pnList ul li:after{
	position: absolute;
	top: 0;
	right: -2em;
	display: block;
	content: ">";
	color: #1d1d1d;
}
#pnList ul li:last-child:after{
	display: none;
}
#pnList ul li a{
	display: inline-block;
	color: #1d1d1d;
}
#pnList ul li a:hover{
	color: #2c9633;
}

@media screen and (max-width: 640px) {
	#pnList{
		padding: 0.5em 0;
		height: auto;
		font-size: 0.8em;
	}
	#pnList ul{
		max-width: calc(100% - 5vw);
		line-height: 1.8em;
	}
	#pnList ul li{
		margin: 0 2em 0 0;
	}
	#pnList ul li:after{
		right: -1.3em;
	}	
}

/***********************************
 h2, h3, h4
***********************************/
h2, h3, h4{
	font-weight: normal;
	font-family: 'RocknRoll One', sans-serif;
	line-height: 1.5em;
}

#mainimage h2{
	position: absolute;
	top: 80px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	height: 1em;
	line-height: 1.1em;
	color: #ffffff;
	text-align: center;
	text-shadow: 3px 3px 0px #3e5242;

	font-family: 'RocknRoll One', sans-serif;
	font-size: 2em;
	z-index: 1;
}
#mainimage h2 span{
	display: inline-block;
	margin: 0 0 0 1em;
	color: #edbe77;
	font-size: 0.5em;
	text-shadow: 1px 1px 0px #9b6729;
}

@media screen and (max-width: 640px) {
	#mainimage h2{
		bottom: 2em;
		line-height: 1.5em;
		font-size: 1.5em;
	}
	#mainimage h2 span{
		font-size: 0.7em;
	}
}

h3,
#home h2{
	display:inline-block;
	margin: 0 auto 30px;
	padding: 0 0 20px;
	line-height: 1.2em;
	text-align: left;
	font-size: 3em;
	transform: rotate(-4deg);
    -moz-transform: rotate(-4deg);
    -webkit-transform: rotate(-4deg);
}
h3 span.deco,
#home h2 span.deco{
	position: relative;
	display: block;
	margin: 0 0 -0.4em -0.4em;
	font-family: 'Sedgwick Ave', cursive;
	font-size: 1.4em;
	color: #eaab4b;
	line-height: 1em;
	transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -webkit-transform: rotate(-5deg);
	z-index: -1;
}
h3 span.mini,
#home h2 span.mini{
	padding: 0 0.3em;
	font-size: 0.6em;
}
h3 span.right,
#home h2 span.right{
	float: right;
	margin: 0 -0.8em 0 0;
}

h3.noDeco{
	display: block;
	transform: none;
	font-size: 2.2em;
}

h4{
	margin: 0 0 35px;
	padding: 30px 0 15px;
	background: url(/images/ttlBar.png) left bottom no-repeat;
	text-align: left;
	font-size: 1.8em;
}

h4.underbar{
	position: relative;
	background: none;
}
h4.underbar::after{
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 80px;
	height: 3px;
	background: #c8c8c8;
	content: "";
}

footer nav#footerNav h3{
	margin: 0 0 0.8em;
	padding: 0;
	font-size: 1.2em;
	transform: none;
}

footer h4{
	margin: -10px auto 0;
	padding: 0;
	text-align: center;
	background: none;
	color: #232323;
}

@media screen and (max-width: 640px) {
	h3,
	#home h2{
		margin: 0;
		padding: 0 0 1.5em;
		font-size: 1.8em;
	}
	h3 span.deco,
	#home h2 span.deco{
		font-size: 0.8em;
		transform: rotate(-6deg);
		-moz-transform: rotate(-6deg);
		-webkit-transform: rotate(-6deg);
	}

	h3.noDeco{
		font-size: 1.65em;
	}
	
	h4.underbar{
		font-size: 1.5em;
	}
	h4.underbar::after{
		position: absolute;
		bottom: 0;
		left: 0;
		display: block;
		width: 80px;
		height: 3px;
		background: #c8c8c8;
		content: "";
	}

	footer h3{
		padding: 0;
	}
	footer h4{
		margin: 0 auto;
		font-size: 1.2em;
	}
}

/***********************************
 table
***********************************/
table{
	margin: 0.5em 0;
	border-collapse: collapse;
}
table tr:first-child th{
	border-top: solid 3px #535353;
}
table tr:first-child td{
	border-top: solid 3px #eaab4b;
}
table th{
	padding: 10px 20px;
	background: #f1f1f1;
	border-bottom: solid 1px #c1c1c1;
	font-weight: normal;
}
table td{
	padding: 10px 20px;
	background: #ffffff;
	border-bottom: solid 1px #c1c1c1;
}

@media screen and (max-width: 640px) {
	table th,
	table td{
		padding: 1em 0.6em;
		font-size: 0.95em;
	}
}

/***********************************
 .row, .column
***********************************/
.row{
	position: relative;
	display: -webkit-flex;
	display: flex;
	width: calc(100% + 80px);
	margin: 0;
}
.row:after{
	clear: both;
	display: block;
	content: "";
}
.row + .row{
	margin-top: 80px;
}
.column1,
.row .column2,
.row .column3-1,
.row .column3-2,
.row .column4-1,
.row .column4-3,
.row .column5-1{
	display: block;
	float: left;
	margin: 0 80px 0 0;
}
.column1{ width: calc(100% - 80px); clear: both; }
.row .column2{ width: calc(50% - 80px); }
.row .column2.narrow{ width: calc(41% - 80px); }
.row .column2.wide{ width: calc(59% - 80px); }
.row .column3-1{ width: calc((100% /3) - 80px); }
.row .column3-2{ width: calc((100% /3) * 2 - 80px); }
.row .column4-1{ width: calc(25% - 80px); }
.row .column4-3{ width: calc(75% - 80px); }
.row .column5-1{ width: calc((100% /5) - 80px); }

@media screen and (max-width: 640px) {
	.row{
		display: block;
		width: 100%;
	}
	.row + .row{
		margin-top: 0;
	}
	.column1,
	.row .column2,
	.row .column2.narrow,
	.row .column2.wide,
	.row .column3-1,
	.row .column3-2{
		clear: both;
		float: unset;
		margin-bottom: 3em;
		width: 100%;
	}
	.row .column4-1,
	.row .column4-3,
	.row .column5-1{
		background: #ff0000;
		width: calc(50% - 40px);
	}
}

.column1 img,
.row .column2 img,
.row .column3-1 img,
.row .column3-2 img,
.row .column4-1 img,
.row .column4-3 img,
.row .column5-1 img{
	display: block;
	width: 100%;
}
column1,
.row img + img{
	margin-top: 40px;
}
@media screen and (max-width: 64px) {
	.row img + img{
		margin-top: 20px;
	}
}
.column1 img.fixity,
.row .column2 img.fixity,
.row .column3-1 img.fixity,
.row .column3-2 img.fixity,
.row .column4-1 img.fixity,
.row .column4-3 img.fixity,
.row .column5-1 img.fixity{
	display: block;
	margin: 0 auto;
	width: auto;
}

.row .boxShadow{
	width: calc(100% - 2px);
	height: calc(100% - 3px);
	box-shadow: 0px 0px 3px 0px #c4c4c4;
}
.row .boxBorder{
	width: calc(100% - 2px);
	height: calc(100% - 3px);
	border: solid 1px #97bac9;
}
.row.boxRowBorder{
	padding: 40px 0 40px 40px;
	background: #ffffff;
	width: calc(100% - 42px);
	border: solid 1px #cfceac;
}

.row.boxRowBorder + .row.boxRowBorder{
	border-top: none;
	margin-top: -20px;
	padding-top: 0;
}
/*
.row.boxColor{
	padding: 40px 0 40px 40px;
	width:calc(100% - 42px);
	border: solid 1px #ffffff;
}
.row.boxColor.color01{ 	background: #ededed; }
.row.boxColor.color02{ 	background: #f2ecc7; }
.row.boxRowBorder .row:last-child,
.row.boxColor .row:last-child{
	margin: 0;
}
*/

/***********************************
 form
***********************************/
/*
form table{
	margin: 20px 0;
}
form table th span,
span.required{
	color: red;
}
form table + p.memo{
	margin: 0 0 20px;
	text-align: left;
}
*/

form label{
	display: inline-block;
	margin: 2px 0;
	padding: 3px 30px 3px 3px;
	cursor: pointer;
}
input[type="text"],
input[type="number"],
textarea{
	margin: 0 5px;
	padding: 8px 10px;
	line-height: 1.3em;
	width: 80%;
}
input[type="number"]{
	width: 100px;
}

input[type="radio"],
input[type="checkbox"]{
	margin: 0 5px;
	vertical-align: text-top;
	width: 18px;
	height: 18px;
	font-weight: bold;
	cursor: pointer;
}

select{
	margin: 0 5px;
	padding: 8px;
	cursor: pointer;
}

input[type="button"].btn,
input[type="submit"].btn{
	display: block;
	margin: 50px auto 0;
	padding: 8px 20px;
	min-width: 300px;
	background: #e1e1e1;
	border: solid 1px #adadad;
	-webkit-transition: all .8s;
	transition: all .8s;
}
input[type="button"].btn:hover,
input[type="submit"].btn:hover{
	background: #eaab4b;
	color: #ffffff;
	border: solid 1px #eaab4b;
}

/* placeholder */
textarea[name="detail"]::placeholder,
input[type="text"]::placeholder{
	color: #b3b3b3;
	line-height: 2em;
}
/* placeholder IE */
textarea[name="detail"]:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder{
	color: #b3b3b3;
	line-height: 2em;
}
/* placeholder Edge */
@supports (-ms-ime-align: auto){
	textarea[name="detail"]::-ms-input-placeholder,
	input[type="text"]::-ms-input-placeholder{
		color: #b3b3b3;
		line-height: 2em;
		opacity: 1;
	}
}

/***********************************
 .btn, .btnBox, .btnBoxRow
***********************************/
a.btn{
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	text-indent: -9999px;
}
a.btn:hover{
	filter:alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
}
a.btn.celebration{ background-image: url(/images/btnCelebration.png); width: 250px; height: 250px; }
a.btn.marriage{ background-image: url(/images/btnMarriage.png); width: 250px; height: 250px; }
a.btn.anniversary{ background-image: url(/images/btnAnniversary.png); width: 250px; height: 250px; }

ul.btnBoxContact{
	clear: both;
	margin: auto;
	padding: 40px 0 0;
	width: 600px;
}
ul.btnBoxContact::after{
	clear: both;
	display: block;
	content: "";
}
ul.btnBoxContact li{
	float: left;
	display: block;
	margin: 0;
	width: 270px;
	height: 85px;
	line-height: 85px;
}
ul.btnBoxContact li img{
	margin: 0 10px 0 0;
	vertical-align: middle;
}
ul.btnBoxContact li:first-child{
	margin: 0 60px 0 0;
}
ul.btnBoxContact li:first-child a{
	display: block;
	width: 100%;
	height: 100%;
	background: #232323;
	color: #ffffff;
	font-size: 1.15em;
}
ul.btnBoxContact li:first-child a:hover{
	background-color: #2c9633;
}
ul.btnBoxContact li:last-child{
	display: block;
	background: #232323;
	color: #ffffff;
	font-size: 1.15em;
}

ul.sns{
	display: inline-block;
	margin: 20px auto 0;
	height: 26px;
}
ul.sns li{
	float: left;
	display: inline-block;
	margin: 0 31px 0 0;
	height: 26px;
}
ul.sns li:last-child{
	margin: 0;
}
ul.sns li a{
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	text-indent: -9999px;
	height: 100%;
}
ul.sns li a.line{ background-image: url(/images/btnSnsLine.png); width: 26px; }
ul.sns li a.facebook{ background-image: url(/images/btnSnsFacebook.png); width: 26px;}
ul.sns li a.twitter{ background-image: url(/images/btnSnsTwitter.png); width: 31px;}
ul.sns li a.instagram{ background-image: url(/images/btnSnsInstagram.png); width: 25px;}
ul.sns li a:hover.line{ background-image: url(/images/btnSnsLineOn.png);}
ul.sns li a:hover.facebook{ background-image: url(/images/btnSnsFacebookOn.png);}
ul.sns li a:hover.twitter{ background-image: url(/images/btnSnsTwitterOn.png);}
ul.sns li a:hover.instagram{ background-image: url(/images/btnSnsInstagramOn.png);}

@media screen and (max-width: 640px) {
	/*
	a.btn{
		background-size: contain;
		width: 320px;
		height: 143px;
	}
	a.btn.recruit{
		width: 320px;
		height: 135px;
	}
	*/

	ul.btnBoxContact{
		padding: 3em 0 0;
		width: 90%;
	}
	ul.btnBoxContact li{
		width: calc(50% - 0.6rem);
		height: 4rem;
		line-height: 4rem;
	}
	ul.btnBoxContact li img{
		margin: 0 0.3rem 0 0;
		width: 1.2rem;
	}
	ul.btnBoxContact li:first-child{
		margin: 0 1.2rem 0 0;
	}
	ul.btnBoxContact li:first-child a{
		font-size: 0.9rem;
	}
	ul.btnBoxContact li:last-child{
		font-size: 0.9rem;
	}

}

a.btnTxt{
	display: block;
	margin: 0 auto;
	background: #fefaf4;
	width: calc(100% - 4px);
	max-width: 240px;
	height: 60px;
	line-height: 60px;
	color: #eaab4b;
	text-align: center;
	border: solid 2px #eaab4b;
}
a.btnTxt:hover{
	background: #eaab4b;
	color: #ffffff;
}

a.btnTxt2{
	display: inline-block;
	margin: 10px; 
	padding: 0.8em 2em 0.8em 2.02em;
	background: url(/images/btnArrow.png) no-repeat 230px center #00ade6;
	width: 200px;
	height: 33px;
	line-height: 33px;
	color: #ffffff;
	text-align: left;
	text-decoration: none;
	border-radius: 8px;
}
a.btnTxt2:hover{
	background-color: #2c9633;
}

a.btnCircle-arrow{
    position: relative;
	top: calc(50% - 57px);
	left: calc(50% - 57px);
	display: flex;
	justify-content: space-around;
	align-items: center;
    padding: 10px;
    width: 90px;
	height: 90px;
    color: #1d1d1d;
    transition: 0.3s ease-in-out;
	border: solid 2px #1d1d1d;
	border-radius: 50%;
	font-family: 'RocknRoll One', sans-serif;
	font-size: 1.2em;
}
a.btnCircle-arrow:hover{
    background: #f9f7f1;
}
a.btnCircle-arrow::before,
a.btnCircle-arrow::after{
	content: "";
	position: absolute;
	display: block;
	transition: all 0.3s;
	top: 50%;
}
a.btnCircle-arrow::before{
	right: 0.9rem;
	opacity: 0;
	width: 0.3rem;
	height: 2px;
	background: #1d1d1d;
	transform: translateY(-50%);
}
a.btnCircle-arrow::after{
	right: 0.9rem;
	opacity: 0.8;
	width: 0.5rem;
	height: 0.5rem;
	border-top: solid 2px currentColor;
	border-right: solid 2px currentColor;
	transform: translateY(-50%) rotate(45deg);
}
a.btnCircle-arrow:hover::before {
	opacity: 0.8;
	width: 2.8rem;
  right: -1.5rem;
}
a.btnCircle-arrow:hover::after {
	right: -1.5rem;
	opacity: 1;
	width: 0.8rem;
	height: 0.8rem;
}

/**********************************************************************
 
 page
 
**********************************************************************/
br.spBr{
	display: none;
}
@media screen and (max-width: 640px) {
	.spReverse{
		flex-direction: column-reverse;
		display: flex;
	}
	br.spBr{
		display: block;
	}
}

/***********************************
 #mainimage
***********************************/
#mainimage{
	position: relative;
	height: 300px;
	background-position: center;
	background-size: cover;
	overflow: hidden;
}
#mainimage::after{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: block;
	background-color: rgba(0, 0, 0, 0.3);
	content: "";
}
#management #mainimage{ background-image: url(/images_hattabara/home03.jpg); }
#privacy #mainimage{ background-image: url(/images_hattabara/home02.jpg); }
#faq #mainimage{ background-image: url(/images_hattabara/home04.jpg); }
#access #mainimage{ background-image: url(/images_hattabara/home01.jpg); }
#cycling #mainimage{ background-image: url(/images_hattabara/cycling01.jpg); }

#home #mainimage{
	height: 660px;
}
#home #mainimage::after{
	display: none;
}
#home #mainimage img,
#home #mainimage video{
	position: absolute;
	top: 0;
	bottom: 0;
	left: -1000px;
	right: -1000px;
	display: block;
	margin: auto;
	width: 100%;
	height: auto;
	min-height: 600px;

}

@media screen and (max-width: 640px) {
	#mainimage{
		margin: 0;
		height: 60vw;
	}

	#home #mainimage{
		height: 120vw;
	}
	#home #mainimage img,
	#home #mainimage video{
		width: auto;
		height: 100%;
	}
}

/***********************************
 home
***********************************/
/*
#home .links img{
	height: 156px;
}
#home a.btnTxt2{
	margin-top: 40px;
}
*/
#home #news{
	margin: 0 auto;
	padding: 0;
	background-size: 8px 10px;
	background-color: #eeeeee;
	background-image: repeating-linear-gradient(45deg, #e3e3e3 0, #e3e3e3 1px, #eeeeee 0, #eeeeee 50%);

}
#home #news section{
	padding: 40px 0;
	max-width: 900px;
}
#home #news h2{
	margin: 30px auto;
}
#home #news h2 span.deco{
	margin: 30px 0 -0.6em -0.4em;
}

#home #news ul{
	margin: 0 auto;
	text-align: left;
}
#home #news ul li{
	position: relative;
	padding: 15px 0 15px 6.5em;
	border-top: solid 1px #808080;
}
#home #news ul li:last-child{
	border-bottom: solid 1px #808080;
}
#home #news ul li span{
	position: absolute;
	left: 0;
	display: block;
	width: 6.5em;
}
#home #news ul li a{
	display: block;
}

#home #message{
	background: url(/images_hattabara/bg_message.png) no-repeat right 30px bottom 20px #535353;
	background-size: 30%;
	color: #ffffff;
}
#home #message p{
	margin: 0 0 1.5em;
}

@media screen and (max-width: 640px) {
	#home #news section{
		padding: 40px 0;
		max-width: 85%;
	}
	#home #news h2{
		margin: 0 auto;
	}
	#home #news ul li{
		padding: 15px 0;
	}
	#home #news ul li span{
		position: relative;
	}

	#home #message{
		padding-bottom: 8em;
		background-size: 45%;
	}
}

#home #institution{
	padding: 0;
	background-color: #e6ecef;
	background-image: linear-gradient(45deg, #dce4e7 25%, transparent 25%), linear-gradient(315deg, #dce4e7 25%, #e6ecef 25%);
	background-position: 10px 0, 20px 0, 0 0, 0 0;
	background-size: 20px 20px;

}
#home #institution ul::after{
	clear: both;
	display: block;
	content: "";
}
#home #institution ul li{
	position: relative;
	float: left;
	display: block;
	margin: 0;
	width: 530px;
	height: 353px;
}
#home #institution ul li:nth-child(2n){
	margin: 0 0 40px 40px;
}
#home #institution ul li:last-child{
	margin-bottom: 0;
}
#home #institution ul li h4{
	position: absolute;
	bottom: 20px;
	left: 20px;
	margin: 0;
	color: #ffffff;
	text-shadow: 0 0 10px #000000, 0 0 5px #000000, 0 0 5px #000000, 0 0 2px #000000;
}
#home #institution ul li img{
	display: block;
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 640px) {
	#home #institution ul li{
		margin: 0 0 1em;
		width: 100%;
		height: auto;
	}
	#home #institution ul li:nth-child(2n){
		margin: 0 0 1em;
	}
	#home #institution ul li h4{
		right: 20px;
	}
}

#home #instaBox ul::after{
	clear: both;
	display: block;
	content: "";
}
#home #instaBox ul li{
	position: relative;
	float: left;
	display: block;
	margin: 0 40px 0 0;
	width: 245px;
	height: 245px;
	overflow: hidden;
}
#home #instaBox ul li:nth-child(4n){
	margin: 0;
}

#home #instaBox ul li img{
	position: absolute;
	left: -1000px;
	right: -1000px;
	display: block;
	margin: auto;
	width: auto;
	min-width: 100%;
	height: 100%;
}

#home #managementSpots ul::after{
	clear: both;
	display: block;
	content: "";
}
#home #managementSpots ul li{
	position: relative;
	float: left;
	display: block;
	margin: 0 0 0 40px;
	width: 245px;
	height: 220px;
}
#home #managementSpots ul li:nth-child(4n-3){
	margin: 0;
}
#home #managementSpots ul li#managementSpotsList{
	margin: 0;
	width: 100%;
	height: 120px;
}
#home #managementSpots ul li img{
	display: block;
	width: 100%;
	height: 165px;
}
#home #managementSpots ul li strong{
	display: block;
	margin: 0.5em 0 0;
	height: 1.5em;
	overflow: hidden;
}

@media screen and (max-width: 640px) {
	#home #managementSpots ul li:nth-child(4n-3),
	#home #managementSpots ul li{
		float: unset;
		margin: 0 auto 1em;
		width: 80%;
		height: auto;
	}
	#home #managementSpots ul li img{
		height: auto;
	}
	#home #managementSpots ul li strong{
		height: auto;
	}
	#home #managementSpots ul li#managementSpotsList{
		margin: 1em 0;
	}
	#home #managementSpots ul li a.btnCircle-arrow{
		left: 0;
		margin: auto;
	}
}

#home .column2.boxShadow > img{
	float: left;
	display: block;
	width: 209px;
}
#home .column2.boxShadow > a{
	position: relative;
	float: right;
	display: block;
	padding: 20px 25px 0;
	width: calc(100% - 259px);
	height: 136px;
}
#home .column2.boxShadow > a:hover{
	color: #1d1d1d;
	background: #eefbff;
}
#home .column2.boxShadow > a h3{
	display: block;
	margin: 0;
	font-size: 1.6em;
}
#home .column2.boxShadow > a p{
	text-align: left;
	font-size: 0.85em;
}
#home .column2.boxShadow > div a.btnTxt2{
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	margin: auto;
}

/***********************************
 management
***********************************/
#management #spotsList{
}
#management #spotsList h3{
	display: block;
	margin: 0.5em 0 0;
	font-size: 1.8em;
	transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
}
#management #spotsList p{
	text-align: left;
}
#management #spotsList .links li{
	float: left;
	margin: 1em 2em 0 0;
}
#management #spotsList .links li:last-child{
	margin-right: 0;
}
#management #spotsList .links li a{
	width: 200px;
}

@media screen and (max-width: 640px) {
	#management #spotsList h3{
		margin: 0;
		padding: 0.7em 0;
	}
	#management #spotsList .links{
		display: inline-block;
		width: 90%;
		
	}
	#management #spotsList .links li{
		width: calc(50% - 1em);
	}
	#management #spotsList .links li a{
		width: 100%;
		overflow: hidden;
	}

}

/***********************************
 privacy
***********************************/
#privacy section{
	text-align: left;
	max-width: 70%;
}
@media screen and (max-width: 640px) {
	#privacy section{
		max-width: calc(100% - 8vw);
	}
}

#privacy section ul{
	list-style-type: disc;
	margin-left: 1.25em;
	text-align: left;
}
#privacy section ul li,
#privacy section ol li{
	margin: 0 0 0.4em;
}

/***********************************
 faq
***********************************/
#faq section{
	text-align: left;
	max-width: 70%;
}
@media screen and (max-width: 640px) {
	#faq section{
		max-width: calc(100% - 8vw);
	}
}

#faq ul#qaCategory{
	margin: auto;
	max-width: 70%;
	text-align: center;
}
#faq ul#qaCategory li{
	display: inline-block;
	margin: 0.5em;
}
#faq ul#qaCategory li a{
	display: block;
	padding: 0.5em 1em;
	background: #ffffff;
	border: solid 2px #ffffff;
	box-shadow: 0 0 0 2px #333333;
	color: #1d1d1d;
	text-decoration: none;
	font-size: 1.05em;
	border-radius: 2em;
}
#faq ul#qaCategory li a:hover{
	background: #333333;
	color: #ffffff;
}
#faq .goTop{
	float: right;
	display: block;
	padding: 0.5em 1em;
	background: #333333;
	width: 7em;
	color: #ffffff;
	text-align: center;
	border-radius: 2em;
}
#faq .goTop::after{
	clear: both;
	display: block;
	content: "";
}
@media screen and (max-width: 640px) {
	#faq ul#qaCategory{
		margin: 0 auto 2em;
		max-width: calc(100% - 8vw);
	}
	#faq ul#qaCategory li{
		margin: 0.5em;
	}
	#faq ul#qaCategory li a{
		padding: 0.3em 0.5em;
	}
	#faq .goTop{
		margin: 0 0 2em;
	}
}

#faq dt{
	position: relative;
	margin: 10px 0;
	padding: 15px 40px 15px 50px;
	border-top: solid 1px #cdcdcd;
	border-bottom: solid 1px #cdcdcd;
	font-weight: bold;
	font-size: 1.1em;
	cursor: pointer;
	transition: all .5s ease;
}
#faq dd{
	position: relative;
	display: none;
	padding: 10px 10px 50px 50px;
}
#faq dt:before,
#faq dd:before{
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	line-height: 40px;
	color: #ffffff;
	text-align: center;
	font-family: 'RocknRoll One', sans-serif;
	font-size: 18px;
}
#faq dt:before{
	bottom: 0;
	margin: auto;
	background: #eaab4b;
	content: "Q";
	font-weight: normal;
}
#faq dd:before{
	margin: auto;
	background: #df0d52;
	content: "A";
}

#faq dt:after{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	content: '+';
	margin: auto;
	width: 1em;
	height: 1em;
	color: #1d1d1d;
	text-align: center;
	font-size: 1.5em;
}
#faq dt.close:after{
	transform: rotateZ(45deg);
}

@media screen and (max-width: 640px) {
	#faq dt{
		padding-right: 30px;
	}
	#faq dt:after{
		right: 5px;
	}
}

/***********************************
 access
***********************************/
#access section{
	text-align: left;
	max-width: 70%;
}
@media screen and (max-width: 640px) {
	#access section{
		max-width: calc(100% - 8vw);
	}
}

/***********************************
 activity/cycling
***********************************/
#cycling section{
	text-align: left;
}

#cycling table.costTbl{
	width: 100%;
	text-align: left;
	font-size: 0.9em;
}
#cycling table.costTbl th{
	min-width: 140px;
}
#cycling table.costTbl td .repletion{
	display: block;
	margin: 0.4em 0 0;
	line-height: 1.3em;
	color: #7e7e7e;
	font-size: 0.9em;
}
#cycling #mapList img{
	margin: auto;
	width: auto;
	max-width: 100%;
	border: solid 1px #535353;
}

#cycling span.kazari{
	position: relative;
	display: inline-block;
	transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -webkit-transform: rotate(-3deg);
}
#cycling span.kazari::after{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: block;
	margin: auto;
	background: #cfe1ef;
	box-shadow: 2px 2px 3px #787878;
	content: "";
	transform: rotate(6deg);
    -moz-transform: rotate(6deg);
    -webkit-transform: rotate(6deg);
	z-index: -1;
}
#cycling span.kazari img{
	display: block;
	box-shadow: 2px 2px 4px #787878;
}



@media screen and (max-width: 640px) {
	#cycling span.kazari::after{
		max-width: 80%;
	}
	#cycling span.kazari img{
		max-width: 80%;
		margin: auto;
	}
}

















/***********************************
 notation
***********************************/






/***********************************
 contact
***********************************/


#contact table th{
	width: 150px;
}

#thanksBox{
	margin: 50px 0;
	line-height: 1.8em;
}
#thanksBox + input{
	margin: 0 auto 50px;
}

@media screen and (max-width: 64px) {
	#contact table th,
	#contact table td{
		display: block;
	}
	#contact table th{
		width: auto;
		border-top: 3px double #cecece;
		border-left: none;
	}
	#contact .row .column3-2{
		margin-bottom: 25px;
	}
	
	input[type="text"],
	textarea{
		width: 95%;
	}
}

/***********************************
 privacy
***********************************/
p.law{
	padding: 0 20px 10px;
	text-align: left;
}
dl.law{
	margin: 0 20px 15px;
	text-align: left;
}
dl.law dt{
	margin: 0 0 10px 0;
	font-weight: bold;
}
dl.law dd{
	margin: 0 0 10px 20px;
}


/***********************************
 Animation
***********************************/
/* fadeUp */

.fadeUp{
	animation-name:fadeUpAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	opacity:0;
}
	
@keyframes fadeUpAnime{
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
	 
article{
//	opacity: 0;
}
	