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

html { overflow-y: scroll; }
body {
	width: 100%;
	height: 100%;
	background-image: url(../images/bg.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	background-color: #f1d083;
	background-attachment: fixed;
	color: #736357;
	font: 16px/100% "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
*, *:before, *:after {
	padding: 0px;
	margin: 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
a img {
	border: none;
	outline: none;
}
ul li { list-style: none; }
/*
---------------------------------------------------ヘッダー
*/
header {
	width: 100%;
	height: auto;
	margin: 20px 0;
}
header h1 {
	text-align: center;
	margin: 0 auto 10px;
}
/*
---------------------------------------------------ナビ
*/
#navBox {
	background: rgba(252,207,46,0.3);
	width: 100%;
	height: auto;
	display: block;
	border-top: 2px solid #998675;
	border-bottom: 2px solid #998675;
	padding: 1em 0;
	background-image: url("../images/navi_bg1.png"), url("../images/navi_bg2.png");
	background-repeat: no-repeat;
	background-position: center right, center left;
}
nav ul {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
}
nav ul li {
	border-right: 1px dotted #998675;
	padding: 0 1em;
}
nav ul li:last-child { border: none; }
nav ul li a {
	display: block;
	text-decoration: none;
	font-weight: bold;
	color: #736357;
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}
nav ul li a:hover {
	color: #F7931E;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
/*
---------------------------------------------------メインカラム
*/
main {
	display: block;
	line-height: 1.8em;
}
main a { text-decoration: none; }
main a:hover { }
/*
---------------------------------------------------フッター
*/
footer {
	width: 100%;
	height: auto;
	margin-top: 50px;
	display: block;
}
#footereAdd {
	line-height: 1.8em;
	text-align: center;
	padding: 20px 0;
	color: #fff;
	background-color: rgba(115,99,87,0.5)
}
#footereAdd .enName {
	font-weight: bold;
	font-size: 1.5em;
}
#footereAdd .telBtn { margin: 1em; }
#footereAdd .telBtn a {
	display: inline-block;
	background-color: #736357;
	padding: 0.5em 1em;
	font-size: 1.2em;
	font-weight: bold;
	text-decoration: none;
	color: #fff;
	border-radius: 4px;
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}
#footereAdd .telBtn a:hover {
	background-color: #FCCF2E;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.pagetop {
	border-bottom: 2px solid #736357;
	text-align: center;
}
.pagetop span {
	display: inline-block;
	background-color: #736357;
	padding: 0 10px;
	border-radius: 4px 4px 0 0;
}
.copyright {
	font-size: 0.8em;
	text-align: center;
	padding: 10px 0;
	color: #e3d9cc;
	background-color: #736357;
}

/*
---------------------------------------------------レスポンシブ768
*/
@media screen and (max-width:768px) {
nav ul { flex-wrap: wrap; }
/*
---------------------------------------------------768ここまで
*/
}

/*
---------------------------------------------------レスポンシブ480
*/
@media screen and (max-width:480px) {
.lf::after {
	content: "\A";
	white-space: pre;
}
nav ul { line-height: 2em; }
/*
---------------------------------------------------480ここまで
*/
}
