@charset "UTF-8";  

.pc {
	display: inline-block !important;
}

.pc2 {
	display: block !important;
}

.sp ,.sp2 {
	display: none !important;
}

#wrapper {
	width: 100%;
	min-width: 1160px;
	margin: auto;
	padding: 0;
	position: relative;
}


/*====================================
ヘッダー
=====================================*/
header {
	position: absolute;
	width: 100%;
	height: 98px;
	margin: 0 auto;
	padding: 0 0 0 50px;
	display: flex;
	justify-content: space-between;
	top: 0;
	left: 0;
	z-index: 10;
	transition: 0.2s linear;
}
header.top:before {
	position: absolute;
	content: '';
	display: block;
	width: 100%;
	height: 150px;
	margin: 0;
	padding: 0;
	background: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0) 100%);
	top: 0;
	left: 0;
	z-index: -1;
}
@media screen and (max-width:1430px) {
header {
	padding: 0 0 0 20px;
}
}
header.scroll {
	top: 0;
}
	h1 {
		width: 203px;
		height: 98px;
		margin: 0;
		padding: 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}
		h1 a {
			display: inline-block;
			margin: 0;
			padding: 0;
			transition: 0.2s linear;
		}
			h1 a:hover {
				opacity: 0.8;
			}
	nav {
		margin: 0;
		padding: 0;
		display: flex;
		justify-content: flex-end;
		align-items: flex-start;
		font-family: "Noto Serif JP", serif;
	}
		nav div.navi {
			margin: 0;
			padding: 15px 0 0;
			display: flex;
			flex-direction: column;
			justify-content: flex-start;
			/*align-items: flex-end;  blog用*/
			align-items: center;
		}
			nav div.navi .blog {
				margin: 0;
				padding: 0;
				display: flex;
				justify-content: flex-end;
			}
				nav div.navi .blog a {
					margin: 0 20px;
					padding: 0 5px;
					color: #4F3E24;
					font-size: 16px;
					line-height: 120%;
					font-weight: var(--weight-bold2);
					text-decoration: none;
					display: flex;
					align-items: center;
				}
@media screen and (max-width:1430px) {
				nav div.navi .blog a {
					margin: 0 10px;
				}
}
@media screen and (max-width:1280px) {
				nav div.navi .blog a {
					margin: 0 5px;
				}
}
					nav div.navi .blog a span {
						margin: 0 20px 0 0;
						padding: 5px 7px 4px 12px;
						font-size: 13px;
						line-height: 120%;
						color: #FFF;
						background: #EA8B4D;
						border-radius: 2px;
						position: relative;
						transition: 0.2s linear;
					}
						nav div.navi .blog a span:after {
							position: absolute;
							content: '';
							display: block;
							margin: 0;
							padding: 0;
							background: #EA8B4D;
							height: calc(tan(60deg) * 10px / 2);
							width: 10px;
							clip-path: polygon(0 0, 100% 50%, 0 100%);
							top: calc(50% - 4px);
							right: -9px;
							transition: 0.2s linear;
						}
						nav div.navi .blog a:hover span,
						nav div.navi .blog a:hover span:after {
							background: #E86066;
						}
					nav div.navi .blog a img {
						width: 23px;
						height: auto;
						margin: 0 5px 0 0;
						padding: 0;
					}
			nav div.navi ul {
				margin: 10px 0 0;
				/*padding: 0; ブログ用*/
				padding: 15px 0 0;
				list-style: none;
				display: flex;
				justify-content: flex-end;
			}
			nav div.navi ul li {
				margin: 0 20px;
				padding: 0;
				transition: 0.2s linear;
				position: relative;
			}
@media screen and (max-width:1430px) {
			nav div.navi ul li {
				margin: 0 10px;
			}
}
@media screen and (max-width:1280px) {
			nav div.navi ul li {
				margin: 0 5px;
			}
}
				nav div.navi ul li a,
				nav div.navi ul li span {
					display: inline-block;
					margin: 0;
					padding: 7px 5px;
					font-size: 16px;
					color: #4F3E24;
					line-height: 120%;
					font-weight: var(--weight-bold2);
					text-decoration: none !important;
					transition: 0.2s linear !important;
					position: relative;
					cursor: pointer;
				}
					nav div.navi ul li a:before {
						background: #4F3E24;
						content: '';
						width: 100%;
						height: 1px;
						position: absolute;
						left: 0;
						bottom: 0;
						margin: auto;
						transform-origin: right top;
						transform: scale(0, 1);
						transition: transform .3s;
					}
					nav div.navi ul li a:hover::before {
						transform-origin: left top;
						transform: scale(1, 1);
					}
					/* ドロップダウンメニュー */
					nav div.navi ul li > ul.dropdwn_menu {
						position: absolute;
						display: none;
						margin: 0;
						padding: 8px 0 !important;
						background: rgba(254,114,120,0.95);
						top: 32px;
						left: -15px;
						z-index: 10;
					}
						nav div.navi ul li > ul.dropdwn_menu li {
							margin: 0;
							padding: 5px 15px !important;
							display: flex;
						}
							nav div.navi ul li > ul.dropdwn_menu li a {
								display: block;
								margin: 0;
								padding: 7px 5px;
								color: #fff !important;
								text-align: left;
								white-space: nowrap;
							}
								nav div.navi ul li > ul.dropdwn_menu li a:before {
									background: #fff;
								}
								nav div.navi ul li > ul.dropdwn_menu li a:hover {
									background: none !important;
									color: #fff !important;
									text-decoration: underline;
									opacity: 1 !important;
								}

/* 採用サイトオープン時削除 */
				nav div.navi ul li span.no_link {
					cursor: auto;
				}
					nav div.navi ul li span.no_link:before {
						background: #4F3E24;
						content: '';
						width: 100%;
						height: 1px;
						position: absolute;
						left: 0;
						bottom: 0;
						margin: auto;
						transform-origin: right top;
						transform: scale(0, 1);
						transition: transform .3s;
					}
					nav div.navi ul li span.no_link:hover::before {
						transform-origin: left top;
						transform: scale(1, 1);
					}
					nav div.navi ul li span.no_link small {
						display: none;
					}
						nav div.navi ul li span.no_link:hover small {
							position: absolute;
							display: inline-block;
							margin: auto;
							padding: 0;
							font-size: 14px;
							line-height: 120%;
							white-space: nowrap;
							color: #EA4D4D;
							font-weight: var(--weight-bold1);
							bottom: -1.5em;
							left: 50%;
							transform: translateX(-50%);
							-webkit- transform: translateX(-50%);
						}
/* 採用サイトオープン時削除 ここまで */
		nav div.contact {
			width: 265px;
			margin: 0 0 0 20px;
			padding: 0;
			position: relative;
			transition: 0.2s linear;
		}
@media screen and (max-width:1430px) {
		nav div.contact {
			margin: 0 0 0 10px;
		}
}
@media screen and (max-width:1280px) {
		nav div.contact {
			margin: 0 0 0 5px;
		}
}
			nav div.contact div {
				position: absolute;
				width: 265px;
				height: 123px;
				margin: 0;
				padding: 0 0 15px;
				background: url(../images/common/head_contact_bg.png) center / cover no-repeat;
				display: flex;
				flex-direction: column;
				justify-content: center;
				align-items: center;
				top: 0;
				left: 0;
			}
				nav div.contact div strong {
					display: block;
					margin: 0;
					padding: 0;
					font-size: 16px;
					line-height: 120%;
					font-weight: var(--weight-bold2);
					font-family: "Noto Serif JP", serif;
				}
				nav div.contact div p {
					margin: 5px 0 0;
					padding: 0 0 0 25px;
					font-size: 28px;
					color: #EA8B4C;
					line-height: 120%;
					font-weight: var(--weight-bold2);
					font-family: "Noto Serif JP", serif;
					position: relative;
				}
					nav div.contact div p:before {
						position: absolute;
						content: '';
						display: block;
						width: 20px;
						height: 20px;
						margin: 0;
						padding: 0;
						background: url(../images/icon/head_tel.png) center / cover no-repeat;
						top: 7px;
						left: 0;
					}
				nav div.contact div small {
					display: block;
					margin: 5px 0 0;
					padding: 0 0 0 10px;
					font-size: 13px;
					line-height: 120%;
				}

header div.sp_menu,
#accordion,
#fadeLayer {
	display: none;
}

#side_btn {
	position: fixed;
	margin: auto;
	padding: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit- transform: translateY(-50%);
	right: -60px;
	z-index: 101;
	transition: 0.2s linear;
}
	#side_btn.scroll {
		right: 0;
	}
	#side_btn a {
		width: 60px;
		display: flex;
		justify-content: center;
		text-decoration: none;
		position: relative;
	}
	#side_btn a.short_stay {
		margin: 0;
		padding: 50px 8px 20px 5px;
		font-size: 16px;
		line-height: 120%;
		text-align: left;
		color: #fff;
		font-weight: var(--weight-bold2);
		border: 2px solid #EA8B4D;
		border-radius: 10px 0 0 10px;
		writing-mode: vertical-rl;
		background: #EA8B4D;
	}
		#side_btn a.short_stay:before {
			position: absolute;
			content: '';
			display: block;
			width: 20px;
			height: 23px;
			background: url(../images/icon/cal_ico_01.png) center / contain no-repeat ,url(../images/icon/cal_ico_02.png) center / contain no-repeat;
			top: 13px;
			left: 18px;
			transition: 0.2s linear;
		}
		#side_btn a.short_stay:hover {
			color: #EA8B4D;
			background: #fff;
		}
			#side_btn a.short_stay:hover:before {
				background: url(../images/icon/cal_ico_02.png) center / contain no-repeat
			}
	#side_btn a.recruit {
		margin: 80px 0 0;
		padding: 20px 18px 20px 5px;
		font-size: 16px;
		line-height: 120%;
		text-align: left;
		color: #4F3E24;
		font-weight: var(--weight-bold2);
		border: 2px solid #E6B951;
		border-radius: 10px 0 0 10px;
		writing-mode: vertical-rl;
		background: #E6B951;
	}
/*
		#side_btn a.recruit:hover {
			background: #fff;
		}
*/
		#side_btn a.recruit:before {
			position: absolute;
			content: '';
			display: block;
			width: 59px;
			height: 55px;
			background: url(../images/common/side_btn_img.png) center / contain no-repeat;
			top: -57px;
			right: 0;
		}
/* 採用サイトオープン時削除 ↑のコメントも削除 */
			#side_btn a.recruit {
				position: relative;
				pointer-events: none;
			}
				#side_btn a.recruit small {
					position: absolute;
					display: inline-block;
					margin: auto;
					padding: 0;
					font-size: 12px;
					line-height: 120%;
					white-space: nowrap;
					color: #EA4D4D;
					font-weight: var(--weight-bold1);
					top: 20px;
					left: 3px;
				}
/* 採用サイトオープン時削除 ここまで */


/*====================================
共通
=====================================*/
main {
	margin: 0 auto;
	padding: 0 0 120px;
}

#gallery_list {
	max-width: 1420px;
	margin: 0 auto;
	padding: 165px 10px;
}
	#gallery_list h3 {
		display: inline-block;
		margin: 0 auto;
		padding: 0;
		font-size: 36px;
		line-height: 160%;
		font-weight: var(--weight-nomal);
		font-family: "Noto Serif JP", serif;
		position: relative;
		z-index: 1;
	}
		#gallery_list h3:after {
			position: absolute;
			content: '';
			display: block;
			width: 80px;
			height: 78px;
			margin: 0;
			padding: 0;
			background: url(../images/common/circle_01.png) center / contain no-repeat;
			top: -15px;
			left: -35px;
			z-index: -1;
		}
	#gallery_list ul {
		margin: 0 auto;
		padding: 25px 0 0;
		list-style: none;
		display: flex;
		flex-wrap: wrap;
	}
		#gallery_list ul li {
			width: 23.55%;
			margin: 40px 0 0 1.85%;
			padding: 0;
		}
			#gallery_list ul li:nth-of-type(4n-3) {
				margin-left: 0;
			}
			#gallery_list ul li a {
				display: inline-block;
				width: 100%;
				height: 245px;
			}
			#gallery_list ul li a img {
				width: 100%;
				height: 100%;
				border-radius: 15px;
				object-fit: cover;
				outline: 4px solid transparent;
				outline-offset: -4px;
				transition: 0.2s linear;
			}
				#gallery_list ul li a:hover img {
					outline: 4px solid #EA8B4D;
				}
			#gallery_list ul li p {
				margin: 5px auto 0;
				padding: 0 3px;
				font-size: 14px;
				line-height: 180%;
			}

#faq_cont {
	width: 1000px;
	margin: 0 auto;
	padding: 145px 0 150px;
}
	#faq_cont h3 {
		display: inline-block;
		margin: 0 auto;
		padding: 0;
		font-size: 36px;
		line-height: 160%;
		font-weight: var(--weight-nomal);
		font-family: "Noto Serif JP", serif;
		position: relative;
		z-index: 1;
	}
		#faq_cont h3:after {
			position: absolute;
			content: '';
			display: block;
			width: 80px;
			height: 78px;
			margin: 0;
			padding: 0;
			background: url(../images/common/circle_01.png) center / contain no-repeat;
			top: -15px;
			left: -35px;
			z-index: -1;
		}
	#faq_cont dl {
		width: 100%;
		margin: 0 auto;
		padding: 70px 0 0;
		text-align: left;
	}
		#faq_cont dl dt {
			width: 100%;
			margin: 20px 0 0;
			padding: 15px 50px 15px 20px;
			background: #F5EDDE;
			border-radius: 10px;
			position: relative;
		}
			#faq_cont dl dt:first-of-type {
				margin-top: 0;
			}
			#faq_cont dl dt h5 {
				margin: 0;
				padding: 0;
				font-size: 16px;
				line-height: 180%;
				font-weight: var(--main-font-nomal);
				display: flex;
				align-items: flex-start;
			}
				#faq_cont dl dt h5 span {
					display: inline-block;
					margin: -3px 20px 0 0;
					padding: 0;
					font-size: 20px;
					line-height: 180%;
					font-weight: var(--weight-bold2);
					font-family: "SUSE", serif;
					color: #EA8B4D;
				}
				main.short_stay #faq_cont dl dt h5 span {
					color: #E6B951;
				}
				main.day_service #faq_cont dl dt h5 span {
					color: #AFC46A;
				}
				main.home_care #faq_cont dl dt h5 span {
					color: #B5945E;
				}
			#faq_cont dl dt:after {
				position: absolute;
				content: '';
				display: block;
				width: 10px;
				height: 16px;
				margin: auto;
				padding: 0;
				top: calc(50% - 5px);
				right: 25px;
				cursor: pointer;
				transition: 0.2s linear;
			}
			#faq_cont dl dt:after {
				background: url(../images/icon/btn_arrow06.png) center / contain no-repeat;
				transform: rotate(90deg);
			}
				#faq_cont dl dt.active:after {
					transform: rotate(-90deg);
				}
			main.short_stay #faq_cont dl dt:after {
				background: url(../images/icon/btn_arrow05.png) center / contain no-repeat;
				transform: rotate(90deg);
			}
				main.short_stay #faq_cont dl dt.active:after {
					transform: rotate(-90deg);
				}
			main.day_service #faq_cont dl dt:after {
				background: url(../images/icon/btn_arrow04.png) center / contain no-repeat;
				transform: rotate(90deg);
			}
				main.day_service #faq_cont dl dt.active:after {
					transform: rotate(-90deg);
				}
			main.home_care #faq_cont dl dt:after {
				background: url(../images/icon/btn_arrow03.png) center / contain no-repeat;
				transform: rotate(90deg);
			}
				main.home_care #faq_cont dl dt.active:after {
					transform: rotate(-90deg);
				}
		#faq_cont dl dd {
			display: none;
			width: 100%;
			margin: 15px 0 0;
			padding: 0 70px 15px;
			font-size: var(--size-nomal1);
			line-height: 180%;
		}
			#faq_cont dl dd p {
				margin: 1.0em 0 0;
				padding: 0;
				font-size: 16px;
				line-height: 180%;
			}
			#faq_cont dl dd p:first-of-type {
				margin: 0;
			}

#service_list {
	max-width: 1600px;
	margin: 0 auto;
	padding: 90px 0 0;
}
	#service_list h3 {
		display: inline-block;
		margin: 0 auto;
		padding: 0;
		font-size: 30px;
		line-height: 180%;
		font-weight: var(--weight-nomal);
		font-family: "Noto Serif JP", serif;
	}
	#service_list ul {
		margin: 25px auto 0;
		padding: 0;
		list-style: none;
		display: flex;
	}
		#service_list ul li {
			width: 25%;
			margin: 0;
			padding: 0;
			overflow: hidden;
		}
			#service_list ul li a {
				display: block;
				width: 100%;
				height: 280px;
				margin: 0;
				padding: 0;
				text-decoration: none;
				transition: none;
			}
				#service_list ul li a.box1 {
					background: #EA8B4D;
				}
				#service_list ul li a.box2 {
					background: #E6B951;
				}
				#service_list ul li a.box3 {
					background: #AFC46A;
				}
				#service_list ul li a.box4 {
					background: #B5945E;
				}
				#service_list ul li a h5 {
					width: 100%;
					height: 219px;
				}
					#service_list ul li a img {
						width: 100%;
						height: 100%;
						opacity: 0.5;
						object-fit: cover;
						transition: 0.2s linear;
					}
						#service_list ul li a:hover img {
							opacity: 1;
						}
				#service_list ul li a div {
					width: 100%;
					height: 60px;
					display: flex;
					justify-content: center;
					align-items: center;
					position: relative;
					z-index: 1;
				}
					#service_list ul li a div:before {
						position: absolute;
						content: '';
						display: block;
						width: 120%;
						height: 50px;
						top: -20px;
						left: -10%;
						z-index: -1;
						transition: none;
					}
						#service_list ul li a.box1 div:before {
							background: #EA8B4D;
							border-radius: 50%;
						}
						#service_list ul li a.box2 div:before {
							background: #E6B951;
							border-radius: 50%;
						}
						#service_list ul li a.box3 div:before {
							background: #AFC46A;
							border-radius: 50%;
						}
						#service_list ul li a.box4 div:before {
							background: #B5945E;
							border-radius: 50%;
						}
					#service_list ul li a div span {
						position: absolute;
						width: 50px;
						height: 50px;
						margin: 0 auto;
						padding: 0;
						background: #fff;
						border-radius: 50%;
						display: flex;
						justify-content: center;
						align-items: center;
						top: -40px;
						left: 50%;
						transform: translateX(-50%);
						-webkit- translateX(-50%);
						z-index: 2;
					}
						#service_list ul li a div span img {
							opacity: 1;
							width: 30%;
							height: auto;
							transform: rotate(90deg);
						}
					#service_list ul li a div h4 {
						margin: 0;
						padding: 0;
						font-size: 18px;
						line-height: 180%;
						font-weight: var(--weight-bold2);
						color: #fff;
					}

#facility_list {
	max-width: 1300px;
	margin: 0 auto;
	padding: 65px 10px 0;
}
	#facility_list h3 {
		display: inline-block;
		margin: 0 auto;
		padding: 0;
		font-size: 30px;
		line-height: 180%;
		font-weight: var(--weight-nomal);
		font-family: "Noto Serif JP", serif;
	}
	#facility_list ul {
		margin: 0 auto;
		padding: 0;
		list-style: none;
		display: flex;
		flex-wrap: wrap;
	}
		#facility_list ul li {
			width: 32%;
			max-width: 400px;
			margin: 40px 35px 0 0;
			padding: 0;
			transition: 0.2s linear;
		}
@media screen and (max-width:1320px) {
		#facility_list ul li {
			margin-right: 2%;
		}
}
			#facility_list ul li:nth-of-type(n+4) {
				margin-top: 30px;
			}
				#facility_list ul li:nth-of-type(3n) {
					margin-right: 0;
				}
			#facility_list ul li a {
				width: 100%;
				margin: 0;
				padding: 0;
				text-decoration: none;
				color: #4F3E24;
				display: flex;
			}
				#facility_list ul li a:hover {
					opacity: 0.8;
				}
				#facility_list ul li a div:nth-of-type(1) {
					width: calc(100% - 240px);
					height: 120px;
					margin: 0;
					padding: 0;
				}
					#facility_list ul li a div:nth-of-type(1) img {
						display: block;
						width: 100%;
						height: 100%;
						margin: 0;
						padding: 0;
						object-fit: cover;
						border-radius: 10px 0 0 10px;
					}
				#facility_list ul li a div:nth-of-type(2) {
					width: 240px;
					height: 120px;
					margin: 0;
					padding: 0 18px 0 20px;
					font-size: 15px;
					line-height: 160%;
					font-weight: var(--weight-nomal);
					font-family: "Noto Serif JP", serif;
					text-align: left;
					background: #fff;
					border-radius: 0 10px 10px 0;
					display: flex;
					flex-direction: column;
					justify-content: center;
					transition: 0.2s linear;
				}
					#facility_list ul li a:hover div:nth-of-type(2) {
						background: #f8f1e6;
					}
					#facility_list ul li a div:nth-of-type(2) h4 {
						margin: 0 0 10px;
						padding: 0;
						font-size: 14px;
						line-height: 160%;
						font-weight: var(--weight-bold2);
						font-family: "Noto Sans JP", serif;
						color: #E5B851;
					}
					#facility_list ul li a div:nth-of-type(2) strong {
						margin: 0;
						padding: 0;
						font-size: 18px;
						line-height: 160%;
						font-weight: var(--weight-nomal);
						font-family: "Noto Serif JP", serif;
					}
						#facility_list ul li a div:nth-of-type(2) strong small {
							display: inline-block;
							margin: 0 0.2em 0 0;
							padding: 0;
							font-size: 15px;
							line-height: 160%;
						}

#oneday_flow {
	margin: 165px auto 0;
}
	#oneday_flow p.flow_read {
		margin: 15px auto 0;
		padding: 0;
		font-size: 16px;
		line-height: 180%;
	}
	#oneday_flow div.oneday_flow_in {
		max-width: 1445px;
		margin: 45px auto 0;
		padding: 0;
	}
		#oneday_flow div.oneday_flow_in div.time {
			margin: 0 auto;
			padding: 0;
		}
			#oneday_flow div.oneday_flow_in div.time h4 {
				margin: 0 auto;
				padding: 0;
				font-size: 16px;
				line-height: 180%;
				font-weight: var(--weight-nomal);
			}
			#oneday_flow div.oneday_flow_in.time_five div.time h4 {
				color: #AEC46A;
			}
			#oneday_flow div.oneday_flow_in.time_full div.time h4,
			#oneday_flow div.oneday_flow_in.time_full_over div.time h4 {
				color: #EA8B4C;
			}
			#oneday_flow div.oneday_flow_in div.time p.arrow {
				padding: 0;
				position: relative;
			}
			#oneday_flow div.oneday_flow_in.time_five div.time p.arrow {
				margin: 10px 14.9306% 0;
				border-top: 3px dashed #AFC46A;
			}
			#oneday_flow div.oneday_flow_in.time_full div.time p.arrow {
				margin: 10px auto 0;
				max-width: 1280px;
				border-top: 3px dashed #EA8B4D;
			}
			#oneday_flow div.oneday_flow_in.time_full_over div.time p.arrow {
				margin: 10px auto 0;
				max-width: 1430px;
				border-top: 3px dashed #EA8B4D;
			}
				#oneday_flow div.oneday_flow_in div.time p.arrow:after {
					position: absolute;
					content: '';
					display: block;
					width: 15px;
					height: 25px;
					margin: auto;
					padding: 0;
				}
				#oneday_flow div.oneday_flow_in.time_five div.time p:after {
					background: url(../images/icon/btn_arrow04.png) center / contain no-repeat;
					top: -14px;
					right: 0;
				}
				#oneday_flow div.oneday_flow_in.time_full div.time p:after,
				#oneday_flow div.oneday_flow_in.time_full_over div.time p:after {
					background: url(../images/icon/btn_arrow06.png) center / contain no-repeat;
					top: -14px;
					right: 0;
				}
			#oneday_flow div.oneday_flow_in ul {
				padding: 0;
				list-style: none;
				display: flex;
				justify-content: space-between;
				position: relative;
				z-index: 1;
			}
				#oneday_flow div.oneday_flow_in.time_five ul {
					margin: 25px 14.9306% 0;
				}
				#oneday_flow div.oneday_flow_in.time_full ul,
				#oneday_flow div.oneday_flow_in.time_full_over ul{
					margin: 25px 0 0;
				}
				#oneday_flow div.oneday_flow_in.time_facility ul {
					margin: 25px 4.3319% 0;
				}
				#oneday_flow div.oneday_flow_in ul:before {
					position: absolute;
					content: '';
					display: block;
					margin: auto;
					padding: 0;
					height: 5px;
				}
					#oneday_flow div.oneday_flow_in.time_five ul:before {
						width: 96%;
						background: #AFC46A;
						top: 32%;
						left: 2%;
						z-index: -1;
					}
					#oneday_flow div.oneday_flow_in.time_full ul:before,
					#oneday_flow div.oneday_flow_in.time_full_over ul:before {
						width: 96%;
						background: linear-gradient(to right, #AFC46A 0%, #AFC46A 62%, #EA8B4D 62%, #EA8B4D 100%);
						top: 32%;
						left: 2%;
						z-index: -1;
					}
					#oneday_flow div.oneday_flow_in.time_facility ul:before {
						width: 96%;
						background: #EA8B4D;
						top: 32%;
						left: 2%;
						z-index: -1;
					}
@media screen and (max-width:1413px) {
					#oneday_flow div.oneday_flow_in.time_facility ul:before {
						top: 28%;
					}
}
					#oneday_flow div.oneday_flow_in ul li {
						width: 13%;
						margin: 0;
						padding: 0;
						display: flex;
						flex-direction: column;
					}
						#oneday_flow div.oneday_flow_in.time_five ul li {
							width: 13%;
						}
						#oneday_flow div.oneday_flow_in.time_full ul li,
						#oneday_flow div.oneday_flow_in.time_facility ul li {
							width: 10.1563%;
						}
						#oneday_flow div.oneday_flow_in.time_full_over ul li {
							width: 9.2308%;
						}
						#oneday_flow div.oneday_flow_in ul li img {
							width: 100%;
							height: auto;
						}
						#oneday_flow div.oneday_flow_in ul li p {
							margin: 5px auto 0;
							padding: 0;
						}
							#oneday_flow div.oneday_flow_in.time_five ul li p {
								color: #ADC46A;
							}
							#oneday_flow div.oneday_flow_in.time_full ul li p,
							#oneday_flow div.oneday_flow_in.time_full_over ul li p,
							#oneday_flow div.oneday_flow_in.time_facility ul li p {
								color: #EA8B4C;
							}
						#oneday_flow div.oneday_flow_in ul li h5 {
							margin: 5px auto 0;
							padding: 0;
							font-size: 16px;
							line-height: 180%;
							font-weight: var(--weight-bold2);
						}



/*====================================
フッター
=====================================*/
#footer_contact {
	height: 429px;
	margin: 0 auto;
	background: url(../images/common/foot_contact_bg.jpg) center / cover no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
	#footer_contact h3 {
		margin: 0;
		padding: 0;
		font-size: 24px;
		line-height: 200%;
		color: #fff;
		font-weight: var(--weight-bold1);
		font-family: "Noto Serif JP", serif;
	}
	#footer_contact a {
		width: 670px;
		height: 140px;
		margin: 40px 0 0;
		padding: 0;
		text-decoration: none;
		pointer-events: none;
		background: #EDE3D0;
		border-radius: 20px;
		position: relative;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
		#footer_contact a h4 {
			position: absolute;
			width: 163px;
			height: 163px;
			margin: 0;
			padding: 0;
			font-size: 16px;
			line-height: 200%;
			font-weight: var(--weight-nomal);
			font-family: "Noto Serif JP", serif;
			color: #4F3E24;
			background: url(../images/common/footer_contact_ttl.png) center / cover no-repeat;
			display: flex;
			justify-content: center;
			align-items: center;
			top: -43px;
			left: -68px;
		}
		#footer_contact a p {
			margin: 0;
			padding: 0 0 0 45px;
			font-size: 46px;
			line-height: 120%;
			color: #EA8B4C;
			font-weight: var(--weight-bold2);
			font-family: "Noto Serif JP", serif;
			position: relative;
		}
			#footer_contact a p:before {
				position: absolute;
				content: '';
				display: block;
				width: 36px;
				height: 36px;
				margin: 0;
				padding: 0;
				background: url(../images/icon/tel_ico01.png) center / cover no-repeat;
				top: 12px;
				left: 0;
			}
		#footer_contact a small {
			display: block;
			margin: 5px 0 0;
			padding: 0;
			font-size: 15px;
			line-height: 120%;
			color: #4F3E24;
			font-family: "Noto Serif JP", serif;
		}

footer {
	width: 100%;
	margin: 0 auto;
	padding: 80px 0 110px;
	background: #fff;
}
	#footer_in {
		max-width: 1400px;
		min-width: 1160px;
		margin: 0 auto;
		padding: 0 10px;
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
		#footer_in div.footer_logo {
			width: 340px;
			margin: 0;
			padding: 0;
			text-align: left;
		}
			#footer_in div.footer_logo h5 {
				width: 203px;
				margin: 0;
				padding: 0;
			}
				#footer_in div.footer_logo h5 a {
					display: inline-block;
					margin: 0;
					padding: 0;
				}
					#footer_in div.footer_logo h5 a:hover {
						opacity: 0.8;
					}
			#footer_in div.footer_logo p {
				margin: 15px 0 0;
				padding: 0;
				font-size: 15px;
				line-height: 180%;
			}
			#footer_in div.footer_logo a.tel {
				display: inline-block;
				margin: 20px 0 0;
				padding: 0;
				font-size: 15px;
				line-height: 180%;
				color: #4F3E24;
				text-decoration: none;
				pointer-events: none;
			}
				#footer_in div.footer_logo a.tel img {
					display: inline-block;
					width: 14px;
					height: auto;
					margin: 0 2px 0 0;
					padding: 0;
					vertical-align: -0.1em;
				}
		#footer_in div.foot_nav {
			margin: 0;
			padding: 0;
			text-align: left;
			display: flex;
			justify-content: flex-end;
			align-items: flex-start;
		}
			#footer_in div.foot_nav ul {
				margin: 0;
				padding: 0 75px 0 0;
				list-style: none;
				transition: 0.2s linear;
			}
@media screen and (max-width:1200px) {
			#footer_in div.foot_nav ul {
				padding: 0 55px 0 0;
			}
}
				#footer_in div.foot_nav ul li {
					margin: 20px 0 0;
					padding: 0;
					font-size: 14px;
					line-height: 160%;
					font-weight: var(--weight-bold2);
					white-space: nowrap;
				}
					#footer_in div.foot_nav ul li:first-of-type {
						margin: 0;
					}
					#footer_in div.foot_nav ul li a,
					#footer_in div.foot_nav ul li p {
						display: inline-block;
						margin: 0;
						padding: 0 0 0 10px;
						color: #EA8B4C;
						text-decoration: none;
						position: relative;
					}
						#footer_in div.foot_nav ul li a:before,
						#footer_in div.foot_nav ul li p:before {
							position: absolute;
							content: '';
							display: block;
							width: 6px;
							height: 6px;
							margin: 0;
							padding: 0;
							background: #EA8B4C;
							border-radius: 50%;
							top: 9px;
							left: 0;
						}
						#footer_in div.foot_nav ul li a span,
						#footer_in div.foot_nav ul li p span {
							display: inline-block;
							margin: 0;
							padding: 0 0 3px;
							position: relative;
						}
							#footer_in div.foot_nav ul li a span:before {
								background: #EA8B4C;
								content: '';
								width: 100%;
								height: 1px;
								position: absolute;
								left: 0;
								bottom: 0;
								margin: auto;
								transform-origin: right top;
								transform: scale(0, 1);
								transition: transform .3s;
							}
								#footer_in div.foot_nav ul li.sub a span:before {
									width: 100%;
									left: 0;
								}
							#footer_in div.foot_nav ul li a:hover span::before {
								transform-origin: left top;
								transform: scale(1, 1);
							}
				#footer_in div.foot_nav ul li.sub {
					margin: 5px 0 0 1.5em;
					padding: 0;
					font-size: 14px;
					line-height: 160%;
					font-weight: var(--weight-nomal);
				}
					#footer_in div.foot_nav ul li.sub a {
						color: #4D3E24;
					}
						#footer_in div.foot_nav ul li.sub a:before {
							background: #EDE3D0;
							border-radius: 50%;
							left: 0;
						}
							#footer_in div.foot_nav ul li.sub a span:before {
								background: #4D3E24;
							}

#footer_copy {
	margin: 0 auto;
	padding: 20px 0;
	font-size: 14px;
	line-height: 160%;
	color: #fff;
	background: #EA8B4D;
}

#page_top {
    position: fixed;
	display: none;
    bottom: 65px;
    right: 20px;
	z-index: 1000;
}
	#page_top img {
		transition: 0.2s linear;
	}
	#page_top img:hover {
		transition: 0.2s linear;
		opacity: 0.8;
	}

/* simples calendar */
.simplescalendarcontainer table {
	width: 100%;
	box-sizing: border-box;
	table-layout: fixed;
	thead {
		tr:first-child {
			width: 100%;
			margin: 0;
			padding: 8px 5px;
			background: #4C3E24;
			color: #fff;
			overflow: hidden;
			th {
				padding-block: 8px;
			}
			.datepickerMonth {
				margin: 0 auto;
				font-size: 18px;
				line-height: 160%;
				font-weight: var(--weight-nomal);
				font-family: "Noto Serif JP", serif;
				text-align: center;
			}
			.datepickerGoPrev {
				text-align: left;
				padding-left: 5px;
				a {
					display: inline-block;
					margin: 6px 0 0;
					padding: 0 10px;
					font-size: 13px;
					line-height: 24px;
					color: #4E3E24;
					font-weight: var(--weight-nomal);
					background: #EDE3D0;
					border-radius: 12px;
					cursor: pointer;
					text-decoration: none;
				}
			}
			.datepickerGoNext {
				text-align: right;
				padding-right: 5px;
				a {
					display: inline-block;
					margin: 6px 0 0;
					padding: 0 10px;
					font-size: 13px;
					line-height: 24px;
					color: #4E3E24;
					font-weight: var(--weight-nomal);
					background: #EDE3D0;
					border-radius: 12px;
					cursor: pointer;
					text-decoration: none;
				}
			}
		}
		tr:last-child {
			background: #fff;
			border-bottom: 1px solid #4C3E24;
			th {
				margin: 0;
				padding: 0;
				font-size: 16px;
				line-height: 200%;
				font-weight: var(--weight-bold2);
				text-align: center;
			}
		}
	}
	tbody {
		background: #fff;
		td {
			margin: 0;
			padding: 0;
			font-size: 16px;
			line-height: 200%;
			font-weight: var(--weight-bold2);
			text-align: center;
			position: relative;
			z-index: 1;
			a {
				color: #4F3E24;
				text-decoration: none;
			}
			&.datepickerNotInMonth a {
				color: rgba(0,0,0,0);
			}
			&.datepickerLinked a::before {
				content: '';
				position: absolute;
				display: block;
				width: 22px;
				height: 22px;
				margin: 0;
				padding: 0;
				background: url(../images/common/circle_03.png) center / contain no-repeat;
				top: 2px;
				left: 2px;
				z-index: -1;
			}
		}
	}
}