@charset "utf-8";
/*
color
rgba(102, 102, 102, 1);
link
rgba(154, 123, 94, 1);

*/
body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 175%;
	color: rgba(102, 102, 102, 1);
	box-sizing: border-box;
}

* { padding: 0; margin: 0; box-sizing: border-box; }
img { vertical-align: bottom; }
a {
	color: rgba(154, 123, 94, 1);
	transition: 0.3s;
}
	a img { border: none; }
li { list-style: none; }
p, 
h5 { padding-bottom: 1em; }
input, textarea, select {
	padding: 0.5em;
	background: rgba(255, 255, 255, 1);
	border: none;
	border: 1px solid rgba(100, 100, 100, 0.5);
	border-radius: 3px;
}
:placeholder-shown { color: rgba(100, 100, 100, 0.5); }

.pcHide { display: none; }
.spHide { display: block; }
#drawerBox { display: none; }
.pcBlock { display: block; }
.spBlock { display: inline; }

.bigText { font-size: xx-large; }
.largerText { font-size: 140%; }
.largeText { font-size: x-large; }
.smallText { font-size: small; }
.smallerText { font-size: 86%; }
.tinyText { font-size: x-small; }

.fixImgM, 
.fixImg {
	width: 100%;
	max-width: 1200px;
}
.flexBox {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.sectionBox { margin-bottom: 1em; }
.unitBox { margin-bottom: 2em; }

#mainContentsBox:after, 
.clearBox:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}
.initBox {
	width: 80vw;
	max-width: 1200px;
	margin: 0 auto;
}
#mainContentsBox {}

#footerBox {
	margin-top: 3em;
	background: rgb(242, 238, 228, 1);
	padding: 3em 0 1em 0;
	font-size: small;
	line-height: 140%;
/*	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;*/
}
	#footerBox a {
		text-decoration: none;
	}
	#footerBox h1 {
		font-size: medium;
		padding-bottom: 0.5em;
	}
	#footerBox .leftBox { width: 38%; }
	#footerBox .rightBox { width: 58%; }
		#footerBox #footerMainMenuBox li { float: left; display: inline-block; }
			#footerBox #footerMainMenuBox li a {
				margin-right: 1.5em;
			}
			#footerBox #footerMainMenuBox li a::before {
				content: '■';
				margin-right: 0.25em;
				/*
				border: 3px solid rgba(154, 123, 94, 1);
				width: 8px;
				height: 8px;
				display: inline-block;
				border-radius: 50%;
				*/
			}
			#footerBox #footerMainMenuBox li a:hover {
				opacity: 0.5;
			}
	#footerBox #footerSubMenuBox {
		margin-top: 1em;
	}
		#footerBox #footerSubMenuBox li { width: 48%; }
			#footerBox #footerSubMenuBox li a {
				display: block;
				text-align: center;
				background: rgba(255, 255, 255, 1);
				border: 3px solid rgba(154, 123, 94, 1);
				color: rgba(154, 123, 94, 1);
				border-radius: 3px;
				padding: 0.5em 0;
			}
				#footerBox #footerSubMenuBox li a:hover {
					background: rgba(154, 123, 94, 1);
					color: rgba(255, 255, 255, 1);
				}
		#footerBox #copyrightBox { text-align: center; }
		#footerBox #privacypolicyBtnBox { padding-top: 1em; }

.columnFlexBox {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-bottom: 0.5em;
}
	.column2 > div { width: 48%; }
	.column3 > div { width: 30%; }
	.columnFlexBox .textBox { width: 70%; }
	.columnFlexBox .imgBox { width: 25%; text-align: center; }
	
	.columnFlexBox:not(:last-child) { margin-bottom: 2em; }
	.alternateBox .column2 .textBox { order: 2 }
	.alternateBox .column2 .imgBox { order: 1 }

	.leftThTable, 
	.topThTable {
		border-collapse: collapse;
		width: 100%;
		border-top: 1px solid rgba(154, 123, 94, 0.5);
		border-left: 1px solid rgba(154, 123, 94, 0.5);
		margin-bottom: 0.5em;
	}
	.topThTable th, 
	.topThTable td, 
	.leftThTable th, 
	.leftThTable td {
		font-weight: normal;
		border-right: 1px solid rgba(154, 123, 94, 0.5);
		border-bottom: 1px solid rgba(154, 123, 94, 0.5);
		padding: 1em;
	}
	.topThTable th, 
	.leftThTable th {
		background: rgba(154, 123, 94, 0.1);
	}
	.topThTable td { vertical-align: top; } 
	.leftThTable th { text-align: left; }

#footerBox a#backToTopBtn::before, 
#backToTopBtn {
	display: block;
	position: fixed;
	bottom: 1em;
	right: 3vw;
	width: 50px;
	height: 50px;
	transition: 0.3s;
}
#backToTopBtn {
	text-indent: -2000em;
	background: rgb(242, 238, 228, 1);
	border-radius: 50%;
	border: 1px dotted rgba(154, 123, 94, 1);
	box-shadow: 1px 1px 2px rgba(102, 102, 102, 0.5);
	font-size: 25px;
}
#footerBox a#backToTopBtn::before {
	text-indent: 0;
	text-align: center;
	line-height: 50px;
}
#footerBox a.hideBtn { opacity: 0; }
#footerBox a.showBtn { opacity: 1; }

.backBtn, 
.submitBtn {
	padding: 1em 0;
	background: rgba(0, 149, 69, 1);
	color: rgba(255, 255, 255, 1);
	width: 45vw;
	border: none;
}
.backBtn { background: rgba(102, 102, 102, 1); }

.privacyBox {
	width: 100%;
	height: 20vh;
	overflow: scroll;
	border: 1px solid rgba(102, 102, 102, 1);
	padding: 1em;
}

#privacypolicyBody h4 { margin: 1em 0; font-weight: bold; }
#privacypolicyBody ol { margin-bottom: 1em; }
	#privacypolicyBody ol li {
		margin-left: 1em;
		list-style: decimal;
		padding-left: 0.5em;
	}

#contactBody error {
	padding-left: 1em;
	color: rgba(204, 0, 0, 1);
	font-size: bold;
}

.ggmap {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	}
	 
	.ggmap iframe,
	.ggmap object,
	.ggmap embed {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

/* [sp] ============================================ */
@media only screen and (max-width: 780px) {
	.initBox { width: 90vw; }
	.pcHide { display: block; }
	.spHide { display: none; }
	.pcBlock { display: inline; }
	.spBlock, 
	#drawerBox { display: block; }
	
	.fixImgM {
		width: 70%;
		margin: 0 auto;
	}

	.spLeftText { text-align: left !important; }
	.smallText { font-size: medium; }
	.leftBox, 
	.rightBox { float: none !important; width: 100% !important; }
	.myContentBox { margin: 0; }

	.flexBox > div, 
	.column2 > div, 
	.column3 > div, 
	.columnFlexBox .textBox, 
	.columnFlexBox .imgBox { width: 100%; margin-bottom: 1em; }

	.spTable tr, 
	.spTable th, 
	.spTable td {
		float: left;
		width: 100% !important;
		box-sizing: border-box;
	}
	.spTable thead { display: none; }
	.spTable td { padding: 0.25em 1em; }
	.spTable td:not(:last-child) { border-bottom-style: dotted; }
	.spTable tbody td::before { content: attr(data-name)' '; }


	.backBtn, 
	.submitBtn, 
	input, textarea, select, 
	.spTable { width: 100%; }
	.backBtn, 
	.submitBtn { margin-bottom: 0.5em; }
	.mwform-tel-field input { width: auto; }
	
	#footerBox #footerSubMenuBox li { width: 100%; }
}