@charset "utf-8";
main.content_wrap{
	width:92%;
	max-width:1100px;
	margin:0 auto;
}
main section{
	width:100%;
	margin:0 auto 80px;
}
h2{
	width:100%;
	margin:0 auto 40px;
	background:#FDFAEF;
	padding:20px 10px 20px 1.2em;
	box-sizing:border-box;
	font-size:2rem;
	font-weight:bold;
	position:relative;
}
h2:before{
	display:block;
	content:"";
	width:5px;
	height:70%;
	background:#F2C84B;
	position:absolute;
	top:0;
	bottom:0;
	left:0.5em;
	margin:auto 0;
}
h3{
	width:100%;
	margin:0 auto 40px;
	font-size:1.625rem;
	border-bottom:3px solid #018838;
	padding:0 0 5px 10px;
	position:relative;
}
h3:before{
	display:block;
	content:"";
	width:25%;
	height:3px;
	background:#F2C84B;
	position:absolute;
	left:0;
	bottom:-3px;
}
h4{
	width:100%;
	margin:0 auto 20px;
	font-size:1.5rem;
	border-left:5px solid #018838;
	padding:3px 10px;
	box-sizing:border-box;
	position:relative;
}
@media screen and (max-width: 750px){
	main section{
		margin:0 auto 40px;
	}
	h2{
		margin:0 auto 30px;
		padding:12px 10px 12px 1.2em;
		font-size:1.5rem;
	}
	h3{
		font-size:1.25rem;
	}
	h4{
		font-size:1rem;
		margin:0 auto 10px;
	}
}
/*********************
.anchor_list
*********************/
.anchor_list{
	width:100%;
	margin:0 auto 40px;
}
.anchor_list li{
	display:inline-block;
	font-size:0;
	margin-right:10px;
	margin-bottom:10px;
}
.anchor_list a{
	display:block;
	width:100%;
	border:1px solid #018838;
	border-radius:10px;
	padding:10px 40px 10px 10px;
	box-sizing:border-box;
	font-size:1rem;
	color:#018838;
	position:relative;
	transition:.2s;
}
.anchor_list a:after{
	display:block;
	content:"▼";
	width:1em;
	height:1em;
	line-height:1em;
	font-size:.8em;
	position:absolute;
	top:0;
	bottom:0;
	right:10px;
	margin:auto 0;
}
.anchor_list a:hover{
	background:#018838;
	color:#fff;
}
@media screen and (max-width: 1100px){
	
}
/*********************
.block
*********************/
.block{
	width:100%;
	margin:0 auto 50px;
}
.block .txt_1{
	width:96%;
	margin:0 auto 30px;
	line-height:1.8;
}
.block .txt_1 a{
	color:#018838;
	text-decoration: underline;
	transition:.2s;
}
.block .txt_1 a:hover{
	text-decoration: none;
}
.block .txt_box_1{
	width:96%;
	margin:0 auto 30px;
}

.block .txt_box_1 li{
	width:100%;
	margin:0 auto 10px;
	padding-left:1.2em;
	box-sizing:border-box;
	position:relative;
}
.block .txt_box_1 li:before{
	display:block;
	content:"・";
	width:1em;
	height:1em;
	line-height:1em;
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	margin:auto 0;
}
.block .txt_box_1 li.no_mark{
	padding:0;
	position:static;
}
.block .txt_box_1 li.no_mark:before{
	display:none;
	width:100%;
	margin:0 auto 10px;
	padding-left:1.2em;
	box-sizing:border-box;
	position:relative;
}
.block .txt_2{
	width:96%;
	margin:0 auto 10px;
	line-height:1.8;
}
.block .txt_3{
	width:96%;
	margin:0 auto 50px;
	line-height:1.8;
}
.block .txt_4{
	width:92%;
	margin:0 auto 30px;
	line-height:1.8;
}
@media screen and (max-width: 750px){
	
}
/*********************
.block_top
*********************/
.block_top .img_box{
	width:100%;
	display:flex;
	flex-wrap:wrap;
	justify-content: space-between;
	margin:0 auto 30px;
}
.block_top .img_box li{
	width:49%;
}
@media screen and (max-width: 750px){
	.block_top .img_box li{
		width:100%;
		margin:0 auto 20px;
	}
}

/*********************
.contact_box
*********************/
.contact_box{
	width:100%;
	max-width:900px;
	margin:0 auto 50px;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	border:2px solid #018838;
	border-radius:5px;
	padding:20px;
	box-sizing:border-box;
}
.contact_box dl{
	padding:10px;
	box-sizing:border-box;
}
.contact_box dl.tel_box{
	width:40%;
	border-right:3px dotted #018838;
}
.contact_box dl.mail_box{
	width:60%;
}
.contact_box dt{
	width:100%;
	margin:0 auto 10px;
	text-align:center;
	font-weight:bold;
	color:#018838;
}
.contact_box dt p{
	display:inline-block;
	padding-left:25px;
	position:relative;
}

.contact_box dt p:before{
	display:block;
	content:"";
	width:20px;
	height:20px;
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	margin:auto 0;
}
.contact_box .tel_box dt p:before{
	background:url("../img/ico_phone.png");
	background-repeat:no-repeat;
	background-size:contain;
}
.contact_box .mail_box dt p:before{
	background:url("../img/ico_mail.png");
	background-repeat:no-repeat;
	background-size:contain;
}
.contact_box dd{
	width:100%;
	text-align:center;
	font-size:1.625rem;
	font-weight:bold;
	word-break: break-all;
}
.contact_box dd a:hover{
	color:#018838;
	transition:.2s;
}

@media screen and (max-width: 750px){
	.contact_box{
		padding:10px;
	}
	.contact_box dl{
		padding:0;
	}
	.contact_box dl.tel_box{
		width:100%;
		border-right:0;
		border-bottom:3px dotted #018838;
		padding-bottom:20px;
	}
	.contact_box dl.mail_box{
		width:100%;
		padding-top:20px;
	}
	.contact_box dd{
		font-size:1.25rem;
	}
}
/*********************
.info_area
*********************/
.info_area{
	width:100%;
	margin:0 auto 50px;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items: center;
}
.info_area .map_wrap{
	width:49%;
	height:330px;
}
.info_area .map_wrap iframe{
	width:100%;
	height:100%;
}
.info_area .info_box{
	width:49%;
}
.info_area .info_box .ttl{
	width:100%;
	margin:0 auto 10px;
	color:#018838;
	font-weight:bold;
}
.info_area .info_box .address{
	width:100%;
	margin:0 auto 20px;
	line-height:1.8;
	font-weight:bold;
}
.info_area .info_box .time_wrap{
	width:100%;
	display:flex;
	flex-wrap:wrap;
	gap:20px 40px;
}
.info_area .info_box .time_wrap dt{
	width:100%;
	margin:0 auto 10px;
	font-weight:bold;
}
@media screen and (max-width: 750px){
	.info_area .map_wrap{
		width:100%;
		margin:0 auto 30px;
	}
	.info_area .info_box{
		width:100%;
	}
	.info_area .info_box .time_wrap dl{
		width:100%;
	}
}

/*********************
.tama_wrap
*********************/
.tama_wrap{
	width:90%;
	margin:0 auto 40px;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.tama_wrap .tama_box{
	width:46%;
}
.tama_wrap .tama_box .map_wrap{
	width:100%;
	height:340px;
	margin:0 auto 20px;
}
.tama_wrap .tama_box .map_wrap iframe{
	width:100%;
	height:100%;
}
.tama_wrap .tama_box dt{
	width:100%;
	margin:0 auto 10px;
	font-weight:bold;
}
.tama_wrap .tama_box dd{
	width:100%;
	margin:0 auto;
	line-height:1.8;
}
.tama_info{
	width:100%;
	margin:0 auto 50px;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items: center;
}
.tama_info li.txt{
	width:33%;
	margin:0;
}
.tama_info li.btn{
	width:31%;
	margin:0;
}
.tama_info li.btn a{
	display:block;
	width:100%;
	padding:20px 30px 20px 10px;
	box-sizing:border-box;
	background:#FDFAEF;
	border:1px solid #333;
	border-radius:5px;
	position:relative;
	transition:.2s;
}
.tama_info li.btn a:after{
	display:block;
	content:"";
	width:25px;
	height:25px;
	background-image:url("../img/img_arrow_2_off.png");
	background-repeat:no-repeat;
	background-size:contain;
	position:absolute;
	top:0;
	bottom:0;
	right:10px;
	margin:auto 0;
	transition:.2s;
}
.tama_info li.btn a:hover{
	color:#018838;
	border:1px solid #018838;
}
.tama_info li.btn a:hover:after{
	background-image:url("../img/img_arrow_2_on.png");
}
.other_info_wrap{
	width:100%;
	margin:0 auto 50px;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items: center;
	gap:30px 30px;
}
.other_info_wrap dl{
	width:40%;
}
.other_info_wrap dt{
	width:100%;
	margin:0 auto 10px;
	text-align:center;
	font-size:1.125rem;
	font-weight:bold;
}
.other_info_wrap dd{
	width:100%;
	margin:0 auto;
}
.other_info_wrap dd{
	width:100%;
	margin:0 auto;
}
.other_info_wrap dd a{
	display:block;
	width:100%;
	padding:20px 35px 20px 10px;
	box-sizing:border-box;
	background:#FDFAEF;
	border:1px solid #333;
	border-radius:5px;
	position:relative;
	transition:.2s;
}
.other_info_wrap dd a:after{
	display:block;
	content:"";
	width:25px;
	height:25px;
	background-image:url("../img/img_arrow_1_off.png");
	background-repeat:no-repeat;
	background-size:contain;
	position:absolute;
	top:0;
	bottom:0;
	right:10px;
	margin:auto 0;
	transition:.2s;
}
.other_info_wrap dd a:hover{
	color:#018838;
	border:1px solid #018838;
}
.other_info_wrap dd a:hover:after{
	background-image:url("../img/img_arrow_1_on.png");
}
.other_info_wrap dd a.gaibu:after{
	background-image:url("../img/img_arrow_2_off.png");
}
.other_info_wrap dd a.gaibu:hover:after{
	background-image:url("../img/img_arrow_2_on.png");
}
@media screen and (max-width: 750px){
	.tama_wrap{
		width:100%;
		margin:0 auto 30px;
	}
	.tama_wrap .tama_box{
		width:100%;
		margin:0 auto 30px;
	}
	.tama_info{
		margin:0 auto 30px;
	}
	.tama_info li.txt{
		width:100%;
		margin:0 auto 20px;
	}
	.tama_info li.btn{
		width:100%;
		margin:0 auto 20px;
	}
	.other_info_wrap dl{
		width:100%;
		margin:0 auto 20px;
	}
	.other_info_wrap dt{
		font-size:1rem;
	}
}


/*********************
accordion_wrap
*********************/
.accordion_wrap{
	width:96%;
	margin:0 auto 30px;
	border:2px solid #018838;
	border-radius:5px;
}
.accordion_wrap .btn{
	width:100%;
	padding:20px;
	box-sizing:border-box;
	color:#018838;
	font-weight:bold;
	position:relative;
	cursor:pointer;
}
.accordion_wrap .btn:after{
	display:block;
	content:"";
	width:9px;
	height:9px;
	border-left:3px solid #018838;
	border-bottom:3px solid #018838;
	transform: rotate(-45deg);
	position:absolute;
	top:0;
	bottom:0;
	right:30px;
	margin:auto 0;
	transition:.2s;
}
.accordion_wrap .btn.active:after{
	transform: rotate(135deg);
}
.accordion_wrap .accordion_box{
	display:none;
	width:calc(100% - 40px);
	margin:0 auto;
	padding:30px 0;
	border-top:2px solid #018838;
	box-sizing:border-box;
}
.accordion_box  .txt_1{
	width:100%;
	margin:0 auto 30px;
	line-height:1.8;
}
.accordion_box .txt_box_1{
	width:100%;
	margin:0 auto 30px;
}
.accordion_box .img_box_1{
	width:100%;
	margin:0 auto 40px;
	display:flex;
	flex-wrap:wrap;
	justify-content: center;
	gap:30px 30px;
}
.accordion_box .img_box_1 li{
	width:48%;
	max-width:400px;
}
.accordion_box .txt_box_2{
	width:100%;
	margin:0 auto 30px;
}
.accordion_box .txt_box_2 dt{
	width:100%;
	margin:0 auto 10px;
	padding-left:1em;
	box-sizing:border-box;
	position:relative;
}
.accordion_box .txt_box_2 dt:before{
	display:block;
	content:"";
	width:0.9em;
	height:0.9em;
	background:#333;
	border-radius:50%;
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	margin:auto 0;
}
.accordion_box .txt_box_2 dd{
	width:100%;
	margin:0 auto;
	padding-left:1em;
	box-sizing:border-box;
}

.block .table_1{
	width:100%;
	margin:0 auto 30px;
	border:1px solid #018838;
}
.block .table_1 th{
	background:#018838;
	padding:5px;
	color:#fff;
	font-weight:bold;
	border:1px solid #fff;
}
.block .table_1 td{
	border:1px solid #018838;
	padding:5px;
}
.block .table_1 td.td_center{
	text-align:center;
}
.block .table_1 td.td_blank{
	background-image: linear-gradient(to right top, transparent calc(50% - 0.5px), #018838 50%, #018838 calc(50% + 0.5px), transparent calc(50% + 1px))
}

.bg_blue_wrap{
	width:100%;
	margin:0 auto 50px;
	padding:30px 0;
	background:#F0F3F5;
}
@media screen and (max-width: 750px){
	.accordion_box .img_box_1 li{
		width:100%;
	}
	.block .table_1{
		font-size:0.875rem;
	}
}





/*********************
.pdf_wrap
*********************/
.pdf_wrap{
	width:100%;
	margin:0 auto 50px;
	display:flex;
	flex-wrap:wrap;
	justify-content: space-between;
}
.pdf_wrap a{
	display:block;
	width:22%;
}
.pdf_wrap a dt{
	width:100%;
	margin:0 auto 10px;
}
.pdf_wrap a dd{
	width:100%;
}
.pdf_wrap a:hover dd{
	color:#018838;
}
.pdf_wrap a dd span{
	display:inline-block;
	width:18px;
	margin-left:5px;
}
@media screen and (max-width: 750px){
	.pdf_wrap a{
		width:46%;
		margin-bottom:40px;
	}
	
}

/