@charset "utf-8";

/*
		common
	 1. core
	 2. default
	 3. flex
	 4. overLay

———————————————————- */

/* core	*/

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,small, strong, sub, sup, var,b, i,dl, dt, dd, ol, ul, li,fieldset,form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary,time, mark, audio, video{
	margin:0;
	padding:0;
	border:0;
	font-size:100%;
	font:inherit;
	font-style: normal;
	vertical-align:baseline;
	font-family: -apple-system, BlinkMacSystemFont, 'arial', "Helvetica Neue", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-weight: 500;
	text-align: justify;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{
	display:block;
}
html {
	font-size: 62.5%;
}
body{
	line-height:1.5;
	font-size: 1.6em;
}
span,a,dt,dd,li,p,b {font: inherit;}


*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

ul,ol{list-style:none}
blockquote,q{quotes:none}
blockquote:before,blockquote:after,q:before,q:after{
	content:'';
	content:none
}

table {
	border-collapse:collapse;
	border-spacing:0;
}

input, select {
	vertical-align:middle;
}

.overWrap {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
.container {min-height: 0%;}
footer {margin-top: auto;}


/* default */
.disnon{display:none;}
a{outline: none; text-decoration:none;}
a:focus {outline:none;}
img {
	display:block;
	max-width: 100%;
}


#forTop {
	width: 60px;
	height: 60px;
	position: fixed;
	bottom: 3px;
	right: 3px;
	display: none;
	cursor: pointer;
}


/* flex */

.fxwb{
	display:-webkit-box;
	display:box;
	display:-webkit-flex;
	display:flex;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
	box-pack:justify;
	flex-pack:justify;
	-webkit-justify-content:space-between;
	justify-content:space-between;
}

.fxwa{
	display:-webkit-box;
	display:box;
	display:-webkit-flex;
	display:flex;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
	box-pack:distribute;
	flex-pack:distribute;
	-webkit-justify-content:space-around;
	justify-content:space-around;
}

.fxws{
	display:-webkit-box;
	display:box;
	display:-webkit-flex;
	display:flex;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
	box-pack:start;
	flex-pack:start;
	-webkit-justify-content:flex-start;
	justify-content:flex-start;
}

.fxwc{
	display:-webkit-box;
	display:box;
	display:-webkit-flex;
	display:flex;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
	box-pack:center;
	flex-pack:center;
	-webkit-justify-content:center;
	justify-content:center;
}

.overWrap{overflow:hidden;}

/* overLay */

.overLay {
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .8);
	z-index: 250;
	display: none;
}

.burgerBtn {
	display: none;
	width: 48px;
	height: 48px;
	position: fixed;
	top: 0;
	right: 0;
	font-size: 12px;
	text-align: center;
	line-height: 26px;
	color: #fff;
	background: #787f18;
	z-index: 1500;
	cursor: pointer;
}

.burgerBtn::before {
	-webkit-box-shadow: #fff 0 7px 0;
	box-shadow: #fff 0 7px 0;
	height: 2px;
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
	width: 28px;
	top: 22px;
	left: 10px;
}

.burgerBtn::after {
	bottom: 10px;
	height: 2px;
	left: 10px;
	-webkit-transform-origin: left bottom;
	-ms-transform-origin: left bottom;
	transform-origin: left bottom;
	width: 28px;
}

.burgerBtn::before,
.burgerBtn::after {
	background: #fff;
	display: block;
	content: '';
	position: absolute;
	-webkit-transition: -webkit-box-shadow 0.2s linear, -webkit-transform 0.4s 0.2s;
	transition: box-shadow 0.2s linear, transform 0.4s 0.2s;
}

.burgerBtn.active {
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}

.burgerBtn.active:before {
	-webkit-box-shadow: #fff 0 5px 0;
	box-shadow: #fff 0 5px 0;
	background: #fff;
	-webkit-box-shadow: transparent 0 0 0;
	box-shadow: transparent 0 0 0;
	-webkit-transform: rotate(45deg) translate3d(3px, -3px, 0);
	transform: rotate(45deg) translate3d(3px, -3px, 0);
}

.burgerBtn.active:after {
	background: #fff;
	-webkit-transform: rotate(-45deg) translate3d(-1px, 7px, 0);
	transform: rotate(-45deg) translate3d(-1px, 7px, 0);
}

/*
p.calenCution{
	padding: 10px 40px;
	font-size: 14px;
}

p.calenCution>span{
	font-size: 18px;
}
*/



@media screen and (min-width: 1000px) {
	
	a[href^="tel:"] {pointer-events: none;}
	a[href^="tel:"]:hover {cursor: default}
	
	.spOnly {display: none;}
	
}

@media screen and (max-width: 760px) {
	
	body{
		-webkit-text-size-adjust: 100%;
		min-width:320px;
		background:#FFF;
	}
	
	#forTop {
		bottom: 10px;
		right: 10px;
		width: 44px;
		height: 44px;
	}
	
	.pcOnly {display: none;}
	span.inline {display: inline-block;}
}