@charset "utf-8";
/* CSS Document */
/*====================================
Reset
====================================*/
html,
body{
	min-width: 1100px;
	font-size: 10px;
	font-weight: 400;
	line-height: 1;
	color: #000;
	background-color: #fff;
	font-family: 'Noto Sans JP',"メイリオ","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
img,
input[type="image"],
a svg,
a path{
	transition: all 0.5s ease;
}
a{
	text-decoration: none;
	color:inherit;
	transition:0.5s all ease;
}
a:hover{
	text-decoration: none;
}
a:hover img:not(.rollover):not(.not_op){
	opacity: 0.7;
}
a,
input,
.slider_prev,
.slider_next{
	-webkit-tap-highlight-color:rgba(0,0,0,0); /* ハイライトカラー無効化 */
	 outline: 0;
}
.auto_kerning{
	font-feature-settings : "palt" 1;
}
.flex{
	display: flex;
}
.flex_spbtw{
	display: flex;
	justify-content: space-between;
}
.flex_wrap{
	display: flex;
	flex-wrap: wrap;
}
.ti{
	text-indent:-1em;
	padding-left: 1em;
}
a,
input,
.slider_prev,
.slider_next{
	-webkit-tap-highlight-color:rgba(0,0,0,0); /* ハイライトカラー無効化 */
	 outline: 0;
}
::selection {
	background:#C7EACD;
}

/*====================================
Common
====================================*/
.cmn_width{
	width: 1100px;
	margin: 0 auto;
}
.wrap{
	position: relative;
	z-index: auto;
}
.anchor{
	display: block;
	width: 0;
	height: 0;
	padding-top: 40px;
	margin-top: -40px;
}

/* 下層ページタイトル
--------------------------------------*/
#main_ttl{
	background-color: #FFFBEA;
	padding: 50px 70px 25px;
	position: relative;
}
#main_ttl::before,
#main_ttl::after{
	content: "";
	position: absolute;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 5;
}
#main_ttl::before{
	background-image: url(../img/common/main_ttl_deco1.png);
	width: 216px;
	height: 365px;
	top: 6px;
	left: 0;
}
#main_ttl::after{
	background-image: url(../img/common/main_ttl_deco2.png);
	width: 275px;
	height: 324px;
	top: 0;
	right: 0;
}
	#main_ttl .main_ttl_bg{
		width: 100%;
		height: 260px;
		margin: 0 auto;
		display: flex;
		justify-content: center;
		overflow: hidden;
		border-radius: 15px;
	}


/* 共通ボタン ホバーアクション
--------------------------------------*/
.cmn_btn1{
	position: relative;
	display: block;
	border-radius: 5px;
	border:solid 1px #1EAA38;
	width: 150px;
	height: 40px;
	line-height: 40px;
	box-sizing: border-box;
	padding-left: 50px;
	color:#1EAA38;
	font-size: 15px;
	font-weight: 500;
	overflow: hidden;
	transition:all .8s;
	z-index: 1;
}
.cmn_btn1:before{
	content:'';
	display: block;
	position: absolute;
	pointer-events: none;
	border-top: solid 1px #1EAA38;
	border-right: solid 1px #1EAA38;
	width: 5px;
	height: 5px;
	transform:rotate(45deg);
	top: 17px;
	left: 33px;
	transition:all .8s;
	z-index: 2;
}
.cmn_btn1 span{
	position: absolute;
	width: 25%;
	height: 100%;
	background-color: #1EAA38;
	border-radius: 100%;
	transform: translateY(150%);
	left: 0;
	top: 0;
	z-index: -1;
	transition:all .5s;
}
.cmn_btn1 span:nth-child(2){
	left: 25%;
	transition-delay: 0.1s;
}
.cmn_btn1 span:nth-child(3){
	left: 50%;
	transition-delay: 0.2s;
}
.cmn_btn1 span:nth-child(4){
	left: 75%;
	transition-delay: 0.3s;
}
.cmn_btn1:hover{
	color:#FFF;
}
.cmn_btn1:hover:before{
	border-top: solid 2px #FFF;
	border-right: solid 2px #FFF;
	animation:cmn_btn1_arrow 0.8s ease-in-out;
}
.cmn_btn1:hover span{
	transform: translateY(0) scale(2);
}

@keyframes cmn_btn1_arrow{
	0%{
		transform:rotate(45deg);
	}
	20%{
		transform:translateX(-2px) rotate(45deg);
	}
	60%{
		transform:translateX(4px) rotate(45deg);
	}
	100%{
		transform:rotate(45deg);
	}
}

.green_btn{
	position: relative;
	padding-left: 25px;
	font-size: 15px;
	transition: 0.1s;
}
	.green_btn::before{
		content: "";
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}
	.green_btn::before{
		width: 5px;
		height: 5px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		transform: translateY(-50%) rotate(45deg);
		left: 5px;
		z-index: 10;
	}
	.green_btn:hover{
		color: #1EAA38;
	}
		.green_btn span{
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			width: 20px;
			height: 20px;
			background-color: #1EAA38;
			border-radius: 50px;
			left: -1px;
			overflow: hidden;
		}
		.green_btn span::before{
			content: "";
			width: 2px;
			height: 2px;
			border-radius: 50px;
			background-color: #83E995;
			position: absolute;
			left: -2px;
			bottom: -2px;
			transition: 0.3s;
			z-index: 5;
		}
		.green_btn:hover span::before{
			transform: translateY(-50%) scale(12);
			transform-origin:left bottom;
		}

.green_btn2{
	display: block;
	margin: 0 auto;
	border: 1px solid #AAAAAA;
	border-radius: 5px;
	box-sizing: border-box;
	color: #B4B4B4;
	font-size: 22px;
	text-align: center;
	position: relative;
	overflow: hidden;
	-moz-transition: 0.7s;
	-o-transition: 0.7s;
	-webkit-transition: 0.7s;
	transition: 0.7s;
}
	.green_btn2:before{
		content: "";
		position: absolute;
		bottom: -40px;
		right: -40px;
		width: 10px;
		height: 10px;
		background: #1EAA38;
		border-radius: 50%;
		-moz-transition: 0.7s;
		-o-transition: 0.7s;
		-webkit-transition: 0.7s;
		transition: 0.7s;
	}
		.green_btn2 span{
			position: relative;
			z-index: 10;
		}
	.green_btn2:hover,
	.green_btn2:focus{
		position: relative;
		color: #FFF;
		border-color: #1EAA38;
	}
	.green_btn2:hover:before,
	.green_btn2:focus:before{
		width: 420px;
		height: 420px;
		opacity: 1;
	}


/* 共通MORE ホバーアクション
--------------------------------------*/
.cmn_more_img{
	position: relative;
}
.cmn_more_img:before,
.cmn_more_img:after{
	content:'';
	display: block;
	position: absolute;
	pointer-events:none;
}
.cmn_more_img:before{
	z-index: 2;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0);
	transition:0.5s all ease;
}
.cmn_more_img:after{
	z-index: 3;
	top: 50%;
	left: 50%;
	transform:translateY(calc(-50% + 10px)) translateX(-50%);
	background:url(../img/common/cmn_img_more.png) no-repeat center center;
	background-size: contain;
	width: 74px;
	height: 70px;
	opacity: 0;
	transition:0.3s all ease 0.1s;
}
.cmn_more:hover .cmn_more_img:before{
	background-color: rgba(255,255,255,.85);
}
.cmn_more:hover .cmn_more_img:after{
	opacity: 1;
	transform:translateY(-50%) translateX(-50%);
}


/*--------- 共通文字 --------- */
.c_black{
	color: #000 !important;
}
/*--------- 共通背景 --------- */
.gnav_yellow_bg{
	background-color: #FFFBEA;
	padding-bottom: 1px;
}
.cmn_bg_set{
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/*--------- 共通タイトル --------- */
.sec_ttl{
	margin-bottom: 70px;
	text-align: center;
}

.cmn_ttl1{
	width: 100%;
	border-radius: 5px;
	padding: 15px 20px;
	box-sizing: border-box;
	margin-bottom: 40px;
	background-color: #1EAA38;
	color: #FFF;
	font-size: 26px;
	font-weight: 400;
}

/*--------- 共通アイコン --------- */
.icon_check li::before{
	content: "";
	width: 20px;
	height: 19px;
	background: url(../img/common/check_icon.png) no-repeat center;
	display: inline-block;
	margin-right: 5px;
	transform: translateY(20%);
}

.icon_window::after{
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	background: url(../img/common/window_icon.png) no-repeat center;
	display: inline-block;
	margin-left: 5px;
	transform: translateY(20%);
}

/* パンクズ
--------------------------------------*/
.pankuzu{
	color: #7F7F7F;
	font-size: 10px;
	padding-top: 10px;
	padding-bottom: 70px;
}


/*====================================
header
====================================*/
header{
}


/*====================================
gnav
====================================*/
/* グレー背景
--------------------------------------*/
.side_gray{
	background:rgba(67,44,8,0);
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	pointer-events: none;
	transition:background 0.3s;
	z-index:1999;
}
.side_gray.on{
	background:rgba(67,44,8,0.4);
}

/* 共通要素
--------------------------------------*/
.gnav{
	display: flex;
	justify-content: space-between;
}
.gnav>li{
	position: relative;
	z-index: 2001;
}
.gnav .menu_ttl{
	position: relative;
	display: block;
	padding: 12px 10px;
	cursor: pointer;
	box-sizing: border-box;
}
.gnav li:not(.not_drop) .menu_ttl:after{
	content:'';
	display: block;
	position: absolute;
	pointer-events:none;
	border-bottom: solid 2px #1EAA38;
	border-right: solid 2px #1EAA38;
	width: 7px;
	height: 7px;
	top: 29px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	transition: border-color 0.4s ;
}
.gnav li.open .menu_ttl:after{
	border-bottom: solid 2px #FFF;
	border-right: solid 2px #FFF;
	transform: translateX(-50%) rotate(45deg);
}

.gnav li.open .menu_ttl{
	background-color: #1EAA38;
	transition: all .5s;
}
.gnav .menu_ttl img{
}
.gnav .menu_ttl img.w{
	position: absolute;
	opacity: 0;
	top: 12px;
	left: 10px;
	pointer-events: none;
}
.gnav li.open .menu_ttl img.w{
	opacity: 1;
	transition: all .3s;
}
.gnav li.open .menu_ttl img.b{
	opacity: 0;
	transition: all .3s;
}
.gnav .menu_drop{
	background-color: #FFF;
	border:solid 2px #1EAA38;
	border-radius: 5px;
	box-sizing: border-box;
	padding: 8px 23px;
	position: absolute;
	z-index: 100;
	top: 40px;
	left: 50%;
	transform:translateX(-50%);
	opacity: 0;
	pointer-events: none;
	display: flex;
	justify-content: space-between;
}
.gnav li.open .menu_drop{
	opacity: 1;
	pointer-events: auto;
	transition: all 0.5s;
}
.gnav .menu_drop > *{
	height: 0;
	padding-top: 0;
	padding-bottom: 0;
	margin: 0;
}
.gnav li.open .menu_drop > *{
	height: auto;
}
.gnav .menu_drop li{
	color:#1EAA38;
	font-size: 14px;
	transition: all 0.5s;
}
.gnav li.open .menu_drop li:not(:last-child){
	border-bottom: dotted 1px #3A9A46;
}
.gnav li.open .menu_drop li a{
	padding-top: 13px;
	padding-bottom: 13px;
	padding-left: 2px;
	display: block;
}
.gnav li.open .menu_drop li a:hover{
	opacity: 0.5;
}

.gnav li.li1{
	width: 103px;
}
.gnav li.li2{
	width: 159px;
}
.gnav li.li3{
	width: 89px;
}
.gnav li.li4{
	width: 76px;
}
.gnav li.li1 .menu_drop{
	width: 250px;
}
.gnav li.li2 .menu_drop{
	width: 466px;
}
.gnav li.li3 .menu_drop{
	width: 688px;
}
.gnav li.li4 .menu_drop{
	width: 197px;
}
.gnav li.li1 .menu_drop ul,
.gnav li.li4 .menu_drop ul{
	min-width: 146px;
}
.gnav li.li2 .menu_drop ul{
	min-width: 193px;
}
.gnav li.li3 .menu_drop ul{
	min-width: 193px;
}
.gnav li.li3 .menu_drop .list_ttl{
	font-size: 16px;
	padding-top: 12px;
	padding-bottom: 13px;
	color:#1EAA38;
	border-bottom: dotted 1px #3A9A46;
	font-weight: 500;
}


/* ヘッダー
--------------------------------------*/
#gnav_head{
	height: 66px;
	z-index: 2000;
}
#gnav_head .blc1{
	width: calc((100% - 129px)/2);
	padding-right: 25px;
	box-sizing: border-box;
	padding-top: 15px;
}
#gnav_head .blc2{
	width: 129px;
}
#gnav_head .blc3{
	width: calc((100% - 129px)/2);
	padding-left: 30px;
	box-sizing: border-box;
}
#gnav_head .blc3 .gnav{
	padding-top: 15px;
}
#gnav_head .blc3 .tel{
	margin-top: 25px;
	margin-left: 20px;
	margin-right: 13px;
}
#gnav_head .blc3 .contact{
	width: 30px;
	margin-top: 18px;
}
#gnav_head .blc3 .contact a{
	display: block;
	width: 30px;
	height: 30px;
	background-color: #1EAA38;
	border-radius: 100%;
	text-align: center;
	transition:all 0.5s;
}
#gnav_head .blc3 .contact svg{
	width: 16px;
	height: 11px;
	margin-top: 10px;
}
#gnav_head .blc3 .contact svg path{
	fill:#FFF;
	transition:all 0.5s;
}
#gnav_head .blc3 .contact a:hover{
	background-color: #C6EA3D;
}
#gnav_head .blc3 .junban{
	width: 146px;
	height: 40px;
	margin-top: 12px;
}
#gnav_head .blc3 .junban .btn{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: #E09414;
	border-radius: 5px;
}

#gnav_head .gnav .menu_ttl{
	border-radius: 5px 5px 0px 0;
	padding-bottom: 32px;
}
#gnav_head .gnav .menu_drop{
	top: 58px;
}
#gnav_head .gnav li.open .menu_ttl:after{
	animation:gnav_arrow 0.5s 0.1s ease-in-out;
}
@keyframes gnav_arrow{
	0%{
		transform: translateX(-50%) rotate(45deg);
	}50%{
		transform: translateY(7px) translateX(-50%) rotate(45deg);
	}100%{
		transform: translateX(-50%) rotate(45deg);
	}
}

/* 追従
--------------------------------------*/
#gnav_fix{
	width: 100%;
	height: 45px;
	background-color:rgba(255,255,255,.9);
	padding-top: 5px;
	box-sizing: border-box;
	transform:translateY(-50px);
	position: fixed;
	top: 0;
	left: 0;
	transition: all .5s;
	z-index: 2002;
}
#gnav_fix.is--active{
	animation:gnav_fix 0.5s ease-in-out;
	transform:translateY(-5px);
}
@keyframes gnav_fix{
	0%{
		transform:translateY(-50px);
	}50%{
		transform:translateY(0);
	}100%{
		transform:translateY(-5px);
	}
}

#gnav_fix .gnav_inner{
	height: 100%;
	justify-content: center;
	padding-left: 50px;
}
#gnav_fix .gnav_inner .gnav{
	padding-right: 30px;
	height: 100%;
}
#gnav_fix .gnav_inner .gnav li .menu_ttl{
	height: 40px;
}
#gnav_fix .gnav_inner .gnav li .menu_ttl:after{
	border-width: 1px;
}
#gnav_fix .gnav li:not(.not_drop) .menu_ttl:after{
	top: 26px;
}
#gnav_fix .gnav li.open .menu_ttl:after{
	animation:gnav_arrow2 0.5s 0.1s ease-in-out;
}
@keyframes gnav_arrow2{
	0%{
		transform: translateX(-50%) rotate(45deg);
	}50%{
		transform: translateY(3px) translateX(-50%) rotate(45deg);
	}100%{
		transform: translateX(-50%) rotate(45deg);
	}
}
#gnav_fix .gnav_inner .tel{
	width: 150px;
	margin-top: 11px;
}
#gnav_fix .gnav_inner .contact{
	width: 20px;
	height: 14px;
	margin-left: 20px;
	margin-top: 12px;
}
#gnav_fix .gnav_inner .contact svg{
	width: 20px;
}
#gnav_fix .gnav_inner .contact svg path{
	fill:#1EAA38;
}
#gnav_fix .gnav_inner .junban{
	width: 143px;
	height: 100%;
}
#gnav_fix .gnav_inner .junban .btn{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: #E09414;
}

/*====================================
footer
====================================*/
footer{
}
footer .area_top{
	background-color:#FFFBEA;
	padding-top: 60px;
	padding-bottom: 60px;
}
footer .blc_various .box_various{
	width: 793px;
	/* height: 440px; */
	padding-bottom: 105px;
}
footer .blc_various .item_tbl .cell_calendar{
	width: 350px;
}
footer .blc_various .item_tbl .cell_ttl{
	height: 28px;
}
footer .blc_various .item_tbl .cell_ttl img{
	padding-right: 10px;
	vertical-align: middle;
}
footer .blc_various .item_tbl .cell_ttl span{
	font-size: 22px;
	vertical-align: middle;
}
footer .blc_various .item_tbl .cell_calendar{
	width: 350px;
}
footer .seek_calendar_wrap{
	display: none;
	width: 350px;
	margin: auto;
	position: relative;
}
footer .seek_calendar_wrap.active{
	display: block;
}
footer .seek_calendar_caption{
	position: absolute;
	top: -37px;
	right: 0;
}
footer .seek_calendar_caption-year{
	display: none;
}
footer .seek_calendar_caption-month{
	font-size: 22px;
	font-weight: 500;
	width: 87px;
	text-align: center;
}
footer .seek_calendar_control{
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
}
footer .seek_calendar_control-prev,
footer .seek_calendar_control-next{
	width: 17px;
	height: 17px;
	position: absolute;
	top: 3px;
	cursor: pointer;
}
footer .seek_calendar_control-prev{
	left: 0;
}
footer .seek_calendar_control-next{
	right: 4px;
}
footer .seek_calendar_wrap:first-child .seek_calendar_control-prev,
footer .seek_calendar_wrap:last-child .seek_calendar_control-next{
	display: none;
}
footer .seek_calendar_control-prev:before,
footer .seek_calendar_control-prev:after,
footer .seek_calendar_control-next:before,
footer .seek_calendar_control-next:after{
	content:'';
	display: block;
	position: absolute;
	pointer-events: none;
	width: 0;
	height: 0;
	border-style:solid;
	top: 0;
}
footer .seek_calendar_control-prev:before,
footer .seek_calendar_control-prev:after{
	border-width: 9px 8px 9px 0;
}
footer .seek_calendar_control-prev:before{
	left: 0px;
	border-color: transparent #000 transparent transparent;
}
footer .seek_calendar_control-prev:after{
	left: 2px;
	border-color: transparent #FFFBEA transparent transparent;
}
footer .seek_calendar_control-next:before,
footer .seek_calendar_control-next:after{
	border-width: 9px 0 9px 8px;
}
footer .seek_calendar_control-next:before{
	right: 0px;
	border-color: transparent transparent transparent #000;
}
footer .seek_calendar_control-next:after{
	right: 2px;
	border-color: transparent transparent transparent #FFFBEA;
}
footer .seek_calendar{
	width: 100%;
	border:solid 1px #B3A08C;
}
footer .seek_calendar tr th,
footer .seek_calendar tr td{
	vertical-align: middle;
	text-align: center;
	font-size: 15px;
	color:#000;
	width: calc(100%/7);
	height: 38px;
	background-color: #fff;
	box-sizing: border-box;
}
footer .seek_calendar tr:not(:last-child) th,
footer .seek_calendar tr:not(:last-child) td{
	border-bottom: solid 1px #B3A08C;
}
footer .seek_calendar tr th:not(:last-child),
footer .seek_calendar tr td:not(:last-child){
	border-right: solid 1px #B3A08C;
}
footer .seek_calendar tr:first-child th{
	color:#FFF;
	background-color: #452405;
	padding-top: 6px;
	padding-bottom: 6px;
	height: 28px;
}
footer .seek_calendar tr td:last-child{
	background-color: #EEF9C6;
}
footer .seek_calendar tr td .calender_status{
	position: relative;
}
footer .seek_calendar .rest{
	color:#FFF;
}
footer .seek_calendar .rest:before{
	content:'';
	display: block;
	position: absolute;
	width: 24px;
	height: 24px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #BF9F80;
	border-radius: 100%;
}
footer .seek_calendar .calendar_date{
	position: relative;
	z-index: 1;
	line-height: 36px;
}
footer .blc_various .item_tbl .cell_calendar .note{
	font-size: 15px;
}
footer .blc_various .item_tbl .cell_calendar .note .closed span{
	width: 17px;
	height: 17px;
	background-color: #BF9F80;
	border-radius: 100%;
	margin-right: 8px;
	display: inline-block;
	vertical-align: middle;
}
footer .blc_various .item_tbl .cell_time{
	width: 413px;
}
footer .time_tbl{
	width: 100%;
	border:solid 1px #B3A08C;
}
footer .time_tbl tr th,
footer .time_tbl tr td{
	width: 48px;
	vertical-align: middle;
	text-align: center;
	padding-top: 24px;
	padding-bottom: 24px;
	font-size: 15px;
	color:#BF9F80;
	/* width: calc((100% - 69px)/7); */
	background-color: #fff;
}
footer .time_tbl tr:not(:last-child) th,
footer .time_tbl tr:not(:last-child) td{
	border-bottom: solid 1px #B3A08C;
}
footer .time_tbl tr th:not(:last-child),
footer .time_tbl tr td:not(:last-child){
	border-right: solid 1px #B3A08C;
}
footer .time_tbl tr:first-child th{
	color:#FFF;
	background-color: #452405;
	padding-top: 6px;
	padding-bottom: 6px;
}
footer .time_tbl tr th:first-child{
	width: 69px;
}
footer .time_tbl tr:not(:first-child) th:first-child{
	line-height: 1.4;
	font-weight: 500;
	color:#000
}
footer .time_tbl tr td.dash{
	color:#666666;
}
footer .blc_various .item_tbl .cell_time .note{
	font-size: 15px;
	line-height: 1.7;
}

footer .blc_various .item_time_tbl_ttl{
	height: 35px;
}
footer .blc_various .item_time_tbl_ttl img{
	vertical-align: middle;
}
footer .blc_various .item_time_tbl_ttl span{
	font-size: 22px;
	vertical-align: middle;
}
footer .blc_various .item_time_tbl table{
	box-sizing: border-box;
	width: 100%;
	border: 1px solid #B3A08C;
	color: #452405;
}
footer .blc_various .item_time_tbl th,
footer .blc_various .item_time_tbl td{
	box-sizing: border-box;
	vertical-align: middle;
	text-align: center;
	font-size: 15px;
	line-height: 1.3;
}
footer .blc_various .item_time_tbl th:not(:last-child),
footer .blc_various .item_time_tbl td:not(:last-child){
	border-right: 1px solid #B3A08C;
}
footer .blc_various .item_time_tbl thead th,
footer .blc_various .item_time_tbl tbody tr:not(:last-child) th,
footer .blc_various .item_time_tbl tr:not(:last-child) td{
	border-bottom: 1px solid #B3A08C;
}
footer .blc_various .item_time_tbl thead th{
	background-color: #DAD0BC;
	padding: 6px 0;
}
footer .blc_various .item_time_tbl thead tr:first-child th{
	background-color: #452405;
	color: #fff;
}
footer .blc_various .item_time_tbl tbody th,
footer .blc_various .item_time_tbl tbody td{
	padding: 17px 10px;
}
footer .blc_various .item_time_tbl tbody th:first-child{
	font-size: 17px;
}
footer .blc_various .item_time_tbl tbody tr:nth-child(1){
	background-color: #F5FDFE;
}
footer .blc_various .item_time_tbl tbody tr:nth-child(1) th:first-child{
	color: #0ea2c7;
}
footer .blc_various .item_time_tbl tbody tr:nth-child(2){
	background-color: #F3FAF4;
}
footer .blc_various .item_time_tbl tbody tr:nth-child(2) th:first-child{
	color: #1eaa38;
}
footer .blc_various .item_time_tbl tbody tr:nth-child(3){
	background-color: #FEF8FB;
}
footer .blc_various .item_time_tbl tbody tr:nth-child(3) th:first-child{
	color: #ff0021;
}
footer .blc_various .item_time_tbl .reserve,
footer .blc_various .item_time_tbl .closed{
	display: inline-block;
	box-sizing: border-box;
	font-size: 13px;
	line-height: 1;
	border-radius: 5px;
	padding: 4px 5px;
}
footer .blc_various .item_time_tbl .reserve{
	color: #fff;
	background-color: #0ea2c7;
	margin-left: 10px;
}
footer .blc_various .item_time_tbl .closed{
	color: #b3a08c;
	border: 1px solid #B3A08C;
}
footer .blc_various .item_time_tbl .tbl_btm_box{
	display: flex;
}
footer .blc_various .item_time_tbl .tbl_btm_box .item_tbl_btm{
	flex: 1;
	padding-right: 15px;
}
footer .blc_various .item_time_tbl .tbl_btm_box .item_sns{
	width: 171px;
}
footer .blc_various .item_time_tbl .tbl_btm_box .sns_link{
	display: block;
	background-color: #fff;;
	border: 1px solid #B3A08C;
	border-radius: 10px;
	padding: 15px;
	transition: opacity .3s ease;
}
footer .blc_various .item_time_tbl .tbl_btm_box .sns_link:hover{
	opacity: 0.8;
}
footer .blc_various .item_time_tbl .tbl_btm_box .sns_link .el_ttl{
	display: inline-block;
	background-color: #1EAA38;
	color: #fff;
	font-size: 13px;
	padding: 5px 10px;
	border-radius: 50px;
}
footer .blc_various .item_time_tbl .tbl_btm_box .sns_link img{
	width: 58px;
}
footer .blc_various .item_time_tbl .tbl_btm_txt{
	font-size: 13px;
	line-height: 1.7;
}
footer .blc_various .item_time_tbl .tbl_btm_txt a{
	text-decoration: underline;
}
footer .blc_various .item_time_tbl .tbl_btm_txt a:hover{
	text-decoration: none;
}

footer .blc_various .item_btn{
	bottom: 0;
	left: 0;
	width: 100%;
	height: 80px;
}
footer .blc_various .item_btn .btn{
	display: block;
	width: 50%;
	height: 100%;
	box-sizing: border-box;
	padding-top: 14px;
	text-align: center;
	border:solid 1px #B3A08C;
	background-color: #fff;
}
footer .blc_various .item_btn .btn:hover{
	border-color:#1EAA38;
	background-color: #1EAA38;
}
footer .blc_various .item_btn .btn.first_visit{
	border-radius: 10px 0 0 10px;
	border-right: none;
}
footer .blc_various .item_btn .btn.re_exam{
	border-radius: 0 10px 10px 0;
}
footer .blc_various .item_btn .btn.first_visit:hover +
 .btn.re_exam{
	border-left: solid 1px #1EAA38;
}
footer .blc_various .item_btn .btn .ttl{
	margin-bottom: 8px;
	height: 29px;
}
footer .blc_various .item_btn .btn.first_visit .ttl svg{
	width: 33px;
	margin-right: 7px;
	vertical-align: middle;
}
footer .blc_various .item_btn .btn.re_exam .ttl svg{
	width: 35px;
	margin-right: 4px;
	vertical-align: middle;
}
footer .blc_various .item_btn .btn .ttl svg path{
	fill:#1EAA38;
	transition: all .5s;
}
footer .blc_various .item_btn .btn:hover .ttl svg path{
	fill:#FFF;
}
footer .blc_various .item_btn .btn .ttl span{
	font-size: 25px;
	color: #452405;
	vertical-align: middle;
	transition: all .5s;
}
footer .blc_various .item_btn .btn:hover .ttl span{
	color: #FFF;
}
footer .blc_various .item_btn .btn .txt{
	font-size: 13px;
	color:#452405;
	transition: all .5s;
}
footer .blc_various .item_btn .btn:hover .txt{
	color: #FFF;
}
footer .blc_various .box_sns{
	width: 277px;
	box-sizing: border-box;
}
footer .blc_access{
	background-color: #fff;
	border-radius: 7px;
	padding: 10px 10px 10px 40px;
	box-sizing: border-box;
}
footer .blc_access .box_way{
	width: 375px;
}
footer .blc_access .box_way .item.train{
	padding-top: 18px;
	padding-bottom: 30px;
	border-bottom: solid 1px #B3A08C;
	margin-bottom: 25px;
}
footer .blc_access .box_way .item.train .item_ttl{
	margin-bottom: 10px;
	height: 43px;
}
footer .blc_access .box_way .item.car .item_ttl{
	padding-left: 5px;
	margin-bottom: 15px;
	height: 29px;
}
footer .blc_access .box_way .item .item_ttl span{
	font-size: 22px;
	font-weight: 500;
	vertical-align: middle;
}
footer .blc_access .box_way .item.train .item_ttl span{
	line-height: 43px;
	padding-left: 8px;
}
footer .blc_access .box_way .item.car .item_ttl span{
	line-height: 29px;
	padding-left:13px;
}
footer .blc_access .box_way .item .txt{
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 20px;
}
footer .blc_access .box_way .item .link a{
	display: inline-block;
	position: relative;
	padding-left: 14px;
	font-size: 15px;
	font-weight: 500;
}
footer .blc_access .box_way .item .link a:hover{
	text-decoration: underline;
}
footer .blc_access .box_way .item .link a:before{
	content:'';
	display: block;
	position: absolute;
	pointer-events: none;
	border-top: solid 1px #1EAA38;
	border-right: solid 1px #1EAA38;
	width: 6px;
	height: 6px;
	transform:rotate(45deg);
	top: 3px;
	left: 0;
	z-index: 2;
}
footer .blc_access .box_map{
	width: 650px;
}
footer .blc_access .box_map .item_map{
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 0 7px 7px 0;
}

footer .area_btm{
	padding-top: 60px;
	padding-bottom: 50px;
}
footer .area_btm .blc_list .list_ttl{
	color:#452405;
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 15px;
	margin-left: -0.5em;
}
footer .area_btm .blc_list .list_sub_ttl{
	font-size: 15px;
	margin-bottom: 13px;
}
footer .area_btm .blc_list .list li{
	color:#666666;
	font-size: 13px;
	line-height: 1.2;
}
footer .area_btm .blc_list .list li:not(:last-child){
	margin-bottom: 10px;
}
footer .area_btm .blc_list .list li:before{
	content:'>';
}
footer .area_btm .blc_list .list li a:hover,
footer .area_btm .blc_list .list_ttl a:hover,
footer .area_btm .blc_list .list_sub_ttl a:hover{
	text-decoration: underline;
}
footer .area_btm .blc_list .box1{
	flex:1;
}
footer .area_btm .blc_list .box2{
	width: 517px;
}
footer .area_btm .blc_list .btn_recruit{
	right: 0;
	bottom: 0;
}
footer .area_btm .blc_list .btn_recruit a{
	display: block;
	width: 516px;
	height: 100px;
	background:url(../img/common/foot_recruit_bnr_play.gif) no-repeat left top;
	background-size:contain;
	transition:0s;
	position: relative;
}
footer .area_btm .blc_list .btn_recruit a:after{
	content:'';
	display: block;
	position: absolute;
	pointer-events: none;
	width: 100%;
	height: 100%;
	background:url(../img/common/foot_recruit_bnr.png) no-repeat left top;
}
footer .area_btm .blc_list .btn_recruit a:hover:after{
	display: none;
}
footer .area_btm .blc_info .box_logo{
	padding-top: 5px;
}
footer .area_btm .blc_info .box_logo .address{
	padding-left: 10px;
	font-size: 13px;
	line-height: 1.3;
	padding-top: 9px;
}
footer .area_btm .blc_info .box_contact{
	justify-content: flex-end;
}
footer .area_btm .blc_info .box_contact .tel{
	padding-top: 13px;
}
footer .area_btm .blc_info .box_contact .contact{
	display: block;
	width: 250px;
	height: 50px;
	line-height: 50px;
	padding: 0;
	text-align: center;
	color:#452405;
	margin-left: 20px;
	font-size: 23px;
	border-radius: 7px;
	border:solid 1px #1EAA38;
}
footer .area_btm .blc_info .box_contact .contact:hover{
	color: #FFF;
	background-color: #1EAA38;
}
footer .area_btm .blc_info .box_contact .contact svg{
	width: 24px;
	height: 16px;
	margin-right: 5px;
	margin-bottom: 1px;
}
footer .area_btm .blc_info .box_contact .contact svg path{
	fill:#1EAA38;
	transition: all .5s;
}
footer .area_btm .blc_info .box_contact .contact:hover svg path{
	fill:#FFF;
}
footer .area_btm .blc_info .box_contact .contact div{
	display: inline-block;
}

footer .area_copy{
	background-color: #1EAA38;
	color:#FFF;
	font-size: 10px;
	text-align: center;
	padding-top: 5px;
	padding-bottom: 5px;
}

/* ページトップに戻る
--------------------------------------*/
.js-to_top{
	display: block;
	width: 1100px;
	position: fixed;
	bottom: 122px;
	left: 50%;
	transform:translateX(-50%);
	pointer-events: none;
	z-index: 999;
}
.js-to_top a{
	pointer-events: auto;
	display: block;
	position: absolute;
	top: 0;
	right: -80px;
	border:solid 1px #1EAA38;
	border-radius: 5px;
	background-color: #fff;
	width: 50px;
	height: 50px;
	text-align: center;
}
.js-to_top a:hover{
	background-color: #1EAA38;
}
.js-to_top a svg{
	width: 29px;
	height: 16px;
	margin-top: 15px;
}
.js-to_top a svg path{
	fill:#1EAA38;
	transition:all .5s;
}
.js-to_top a:hover svg path{
	fill:#FFF;
}

/*====================================
float_bnr
====================================*/
.float_bnr{
	width: 70px;
	position: absolute;
	top: 180px;
	z-index: 9999;
}
	.float_bnr li{
		width: 100%;
		padding: 10px 0px 10px 10px;
		border: 1px solid #B3A08C;
		background-color: #FFFDF4;
		transition: 0.4s ease-out;
		box-sizing: border-box;
	}
.fbnr1{
	right: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
	.fbnr1 li{
		border-right: none;
		width: 80px;
		transform: translateX(20px);
	}
	.fbnr1 li:hover{
		width: 100%;
		transform: translateX(0px);
	}
	.fbnr1 li:nth-child(1){
		border-radius: 10px 0 0 0;
	}
	.fbnr1 li:nth-child(2){
		border-radius: 0 0 0 10px;
		margin-top: -1px;
	}
	.fbnr1 li:nth-child(3){
		border-radius: 10px 0 0 10px;
	}
.fbnr2{
	left: 0;
}
	.fbnr2 li{
		border-radius: 0 10px 10px 0;
		border-left: none;
		text-align: right;
		transform: translateX(-20px);
	}
	.fbnr2 li:hover{
		padding-left: 30px;
		transform: translateX(0px);
	}



/*====================================
Form
====================================*/
.cmn_form .alert{
	color:#FF0000;
	line-height: 1.6;
	font-size: 15px;
	margin-bottom: 10px;
}
.cmn_form .form_tbl_wrap{
	background-color: #EFF9F1;
	padding: 40px;
	border-radius: 10px;
	margin-bottom: 100px;
}

.cmn_form .form_tbl{
	width: 100%;
}
	.cmn_form .form_tbl th,
	.cmn_form .form_tbl td{
		vertical-align:middle;
		background-color: #FFF;
		box-sizing: border-box;
		padding: 20px;
	}
	.cmn_form .form_tbl th{
		width: 250px;
		color: #1EAA38;
		font-size: 400;
		font-size: 18px;
		text-align: center;
		border-right: 3px solid #EFF9F1;
	}
	.cmn_form .form_tbl td{
		font-size: 15px;
	}
	.cmn_form .form_tbl tr:not(:last-child) th,
	.cmn_form .form_tbl tr:not(:last-child) td{
		border-bottom: 5px solid #EFF9F1;
	}
		.cmn_form .form_tbl td .address_zip{
			align-items: center;
		}

/* input他
--------------------------------------*/
.cmn_form .form_tbl input[type=text],
.cmn_form .form_tbl textarea,
.cmn_form .form_tbl select{
	border:solid 1px #DFDFDF;
	box-sizing:border-box;
	padding:10px 15px;
	width: 100%;
}
.cmn_form .form_tbl input[type=text],
.cmn_form .form_tbl select{
	height: 50px;
}
.cmn_form .form_tbl textarea{
	height: 165px;
}
.cmn_form .form_tbl select{
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: url(../img/contact/select_btn.jpg) right 50% no-repeat #FFF;
}
.cmn_form .form_tbl select::-ms-expand{
	display: none;
}

.cmn_form .form_tbl input::placeholder,
.cmn_form .form_tbl input::-moz-placeholder,
.cmn_form .form_tbl input::-webkit-input-placeholder,
.cmn_form .form_tbl input:-ms-input-placeholder{
	color: #BFBFBF;
}

.cmn_form .form_tbl td .address_zip label{
	width: 70px;
}
.cmn_form .form_tbl td .address_zip select{
	width: 247px;
}
.cmn_form .form_tbl td .address_zip input[type=text]{
	width: 657px;
}


/* 送信ボタン
--------------------------------------*/
.cmn_form .form_btn{
	width: 340px;
	height: 85px;
	box-sizing: border-box;
	border: #AAA 1px solid;
	border-radius: 10px;
	text-align: center;
	outline: 0;
	transition:0.5s all ease;
	font-size: 22px;
	color: #B4B4B4;
	background-color: #FFF;
	cursor: pointer;
}
.cmn_form .form_btn:hover{
	background-color: #1EAA38;
	color: #FFF;
	border-color: #1EAA38;
}


/* 確認画面
--------------------------------------*/
.cmn_form .submit_box{
	display: flex;
	justify-content: space-around;
}
.cmn_form .submit_box li{
}


/* サンキューページ
--------------------------------------*/
#contact .sec_contact .head_txt{
	font-size: 15px;
	line-height: 1.8;
}


/*====================================
 インフォメーションBG
====================================*/
#cmn_pages .main_ttl_bg{
	background-color: #FFF;
	position: relative;
	padding: 20px;
	box-sizing: border-box;
}
#cmn_pages .main_ttl_bg::before{
	content: "";
	width: calc(100% - 40px);
	height: calc(100% - 40px);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background-color: #EFF9F1;
	border-radius: 15px;
}
#cmn_pages .main_ttl_bg .title{
	position: relative;
	z-index: 10;
}
#cmn_pages .txt,
#cmn_pages .to_home{
	font-size: 15px;
	line-height: 1.8;
}
	#cmn_pages .txt p:not(:last-child){
		margin-bottom: 2em;
	}
#cmn_pages .sec_privacy{
	margin-bottom: 110px;
}

/*====================================
 Sitemap
====================================*/
#cmn_pages .sec_sitemap{
	border: 1px solid #CCC;
	border-radius: 10px;
	padding: 60px;
	margin-bottom: 110px;
	box-sizing: border-box;
}
	#cmn_pages .sec_sitemap .list_blc{
		display: flex;
	}
	#cmn_pages .sec_sitemap .list_blc:not(:last-child){
		margin-bottom: 50px;
	}
	#cmn_pages .sec_sitemap .list_box:not(:last-child){
		margin-right: 40px;
	}
		#cmn_pages .sec_sitemap .list_box .label{
			font-size: 15px;
			color: #452405;
			margin-bottom: 10px;
			margin-left: -10px;
		}
		#cmn_pages .sec_sitemap .list_box .ul_wrap{
			display: flex;
		}
			#cmn_pages .sec_sitemap .list_box .ul_wrap.line3{
				height: 80px;
			}
			#cmn_pages .sec_sitemap .list_box .box_inner{
				font-size: 13px;
				color: #666666;
				line-height: 2;
				display: flex;
				flex-direction:column;
				flex-wrap: wrap;
			}
			#cmn_pages .sec_sitemap .list_box .box_inner:not(:last-child){
				margin-right: 30px;
			}
			#cmn_pages .sec_sitemap .list_box .line3 .box_inner:not(:last-child){
				margin-right: 10px;
			}
				#cmn_pages .sec_sitemap .list_box .box_inner a:hover{
					text-decoration: underline;
				}
				#cmn_pages .sec_sitemap .list_box .beauty_box:not(:last-child){
					margin-right: 30px;
				}
				#cmn_pages .sec_sitemap .list_box .beauty_box .inner_label{
					font-size: 15px;
					margin-top: 8px;
					margin-bottom: 8px;
				}
