@charset "utf-8";
@import url('./reset.css');
body {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	min-width: 320px;
	height: auto;
	min-height: 100vh;
	background-color: #fff;
	color: #000;
	font-family: 'Helvetica','Arial','Yu Gothic Medium','游ゴシック Medium', 'YuGothic','游ゴシック体','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3',Meiryo,'メイリオ',sans-serif;
}
body::before,
body::after {
	content: "";
	flex: 1 1 auto;
}
body::before { background-image: linear-gradient(90deg, #e2f5e0, #4bb26d); }
body::after { background-image: linear-gradient(90deg, #4bb26d, #e2f5e0); }
#container {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 1240px;
	background-color: #fff;
}
#noScr {
	order: -1;
	display: flex;
	justify-content: center;
	color: #0075a9;
}
#header {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
}
@media screen and (min-width: 1100px) {
	#header {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		gap: 0 60px;
		padding-bottom: 0;
	}
	#header .hdTTL { order: 0; }
	#header .hdLogo { order: 2; }
	#header .hdNews { order: 1; }
}
#header > * { width: 100%; }
#header .hdTTL {
	max-width: 500px;
	padding: 30px 0;
}
#header .hdTTL img { width: 100%; }
#header .hdNews {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 540px;
}
#header .hdNews > dl > div {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 0px 10px;
}
#header .hdNews > dl > div > dt {
	flex: 0 0 auto;
	color: #00a062;
}
#header .hdLogo {
	position: relative;
	display: block;
	width: 100%;
	margin: 20px auto;
	z-index: 0;
}
#header .hdLogo::before,
#header .hdLogo::after {
	content: "";
	display: block;
	z-index: 1;
}
#header .hdLogo::before {
	position: absolute;
	top: 0;
	left: -50vw;
	right: -50vw;
	margin: auto;
	width: 100vw;
	height: 3px;
	background-color: #abd6a9;
}
#header .hdLogo::after {
	height: 40px;
	background: url("../img/header/bLogo.svg") no-repeat right top;
	background-size: contain;
}
@media screen and (min-width: 980px) {
	#header .hdLogo::after { height: 50px; }
}
/* main */
#main {
	flex: 1 0 auto;
	background-color: inherit;
}
/*parts*/
#goup {
	position: fixed;
	right: 10px;
	bottom: 10px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 1s, visibility 1s, transform 1s;
	z-index: 1000;
}
#goup.isIn {
	opacity: 1;
	visibility: visible;
}
#goup a {
	position: relative;
	display: block;
	width: 40px;
	height: 40px;
	background-color: rgba(255,255,255,.7);
	border: 1px solid #5a4a42;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
#goup a:hover { background-color: rgba(61,49,51,.1); }
#goup a::after{
	content: "";
	position: absolute;
	top: 6px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 12px;
	height: 12px;
	border-left: 2px solid #5a4a42;
	border-top: 2px solid #5a4a42;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#breadcrumbs {
	width: 100%;
	height: 30px;
	padding: 0 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 30px;
	font-size: 14px;
	color: #959595;
}

#breadcrumbs > *:not(:last-child) {
	position: relative;
	padding-right: 14px;
}
#breadcrumbs a { color: #f0673d; }
#breadcrumbs a:hover,#breadcrumbs a:active { color: #06bac4; }
#breadcrumbs > *:not(:last-child)::after {
	content: "";
	position:absolute;
	top: 0;
	bottom: 0;
	right: 5px;
	margin: auto;
	width: 8px;
	height: 8px;
	border-top: 1px solid #50656e;
	border-right: 1px solid #50656e;
	transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
	}
}

/*element*/
.eMA::after { content: attr(data-md); }
.eMA::before { content: attr(data-mn) "@"; }

.mInfo {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 10px;
}
.mInfo > * { width: 100%; }
@media screen and (min-width: 980px) {
	.mInfo {
		flex-direction: row;
		justify-content: center;
		align-items: stretch;
		gap: 0 60px;
	}
}
.mMap { max-width: 500px; }
.mMap > * { width: 100% }
.mMapAdd { background-color: #00a062; }
.mMapGgl {
	height: 200px;
	border: 1px solid #00a062;
}
.mMapTel {
	display: block;
	margin-top: 10px;
	background-color: #00a062;
}
.mMapMail {
	padding-bottom: 10px;
	text-align: right;
}
.mSch { max-width: 540px; }
.mSch > * { width: 100%; }
.mMapList { padding-top: 35px; }
.mMapHD { padding-top: 10px; }
.mRsv {
	padding: 20px 10px 0;
	text-align: center;
}
.mMapTxt { color: #00a062; }
.mMapTxt > li {
	display: flex;
	flex-direction: row;
	gap: .5rem;
	padding-top: 4px;
	line-height: 1.0rem;
}
.mMapTxt > li::before {
	content: '';
	width: 1.0rem;
	height: 1.0rem;
	border-radius: 100vh;
	background-image: linear-gradient(90deg, #abd6a9, #00a062);
}

.mGrt {
	margin: 50px auto;
	padding: 40px 10px;
	background-color: #caeac9;
}
.mGrt > * {
	display: block;
	max-width: 1100px;
	margin: auto;
}
.mGrtTTL { padding-bottom: 20px; }
.mGrtTxt { line-height: 1.8em; }

.mHx {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px 60px;
	padding: 0 10px;
}
.mHx > * {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.mHxPht { max-width: 640px; }
@media screen and (min-width: 980px) {
	.mHx {
		flex-direction: row;
		justify-content: center;
		align-items: stretch;
	}
	.mHxPht { max-width: 500px; }
}
.mHxList { max-width: 540px; }
.mHxName {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0 10px;
	padding-bottom: 10px;
	color: #00a062;
}
.mHxName > dt {
	font-size: 1.2em;
	font-weight: bold;
	letter-spacing: .4em;
}
.mHxName > dd {
	font-size: 1.6em;
}
.mHxTTL {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: 30px;
	padding-left: 10px;
	background-image: linear-gradient(90deg, #00a062, #abd6a9);
}
.mHxTbl {
	display: table;
	border-collapse: collapse;
	word-break: break-all;
	margin: 10px 0 2.0em;
}
.mHxTbl > div { display:table-row; }
.mHxTbl > div > dt,
.mHxTbl > div > dd {
	display: table-cell;
	padding: 2px 10px;
}
.mPht  { width: 100%; }
@media screen and (min-width: 640px) {
	.mPht  {
		display: flex;
		padding-top: 100px;
	}
}
.mLink  {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	width: 100%;
	padding: 60px 10px;
}
.mLink > a.mLinkBD { border: 1px solid #999; }
.mCmt { padding: 50px 10px; }
.mCmt > * {
	display: block;
	max-width: 1100px;
	margin: auto;
}
.mCmtTTL {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 2px 10px;
	margin-bottom: 20px;
	background-image: linear-gradient(90deg, #00a062, #abd6a9);
	color: #fff;
	font-size: 1.2em;
}
.mCmtTxt {
	padding: 0 10px;
	line-height: 1.8em;
}
