@charset "utf-8";
/* CSS Document */
.wrap {
	width: 100%;
	background: #fff;
	font-size: 100%;
}
section {
	background: #daeee5;
	padding: 1em;
}
.contetnts {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	box-sizing: border-box;
}
p {
	margin: 1em 0;
}
h1 {
	text-align: center;
	padding: 1em 0;
	font-size: 2.4em;
	line-height: 1.4em;
}
h1 i {
	padding-left: 4px;
	color: #007B12;
	padding-bottom: 8px;
}
h2 {
	margin: 1.4em 0 .6em;
	font-size: 20px;
}
.txtC {
	text-align: center;
}
dl {
	padding: 2em;
	background: #fff;
	border-radius: 10px;
	margin: 2em auto;
}
dt {
	font-size: 1.4em;
	font-weight: bold;
	border-bottom: 2px dotted #007B12;
	padding: .4em;
	position: relative;
}
dt:hover {
	cursor: pointer;
}
dt:after {
	font-family: "Font Awesome 6 Free";
	content: "\f149";
	font-weight: 900;
	color: #007B12;
	position: absolute;
	top: 10px;
	right: 10px;
}
dt.active:after {
	font-family: "Font Awesome 6 Free";
	content: "\f148";
	font-weight: 900;
	color: #007B12;
	position: absolute;
	top: 10px;
	right: 10px;
}
dd {
	display: none;
	margin: 2em 0 0;
	box-sizing: border-box;
}
dd img {
	width: 100%;
	display: block;
}
.flex {
	display: flex;
	width: 100%;
	box-sizing: border-box;
	justify-content: space-around;
}
.flex img {
	width: 48%;
}
.wid_small img {
	width: 50%;
	margin-left: auto;
	margin-right: auto;
}
ul.flow li {
	width: 96%;
	margin: 1em auto;
	box-sizing: border-box;
	background: #F6F5E5;
	border-radius: 10px;
	padding: 1em;
	display: flex;
	align-items: center;
}
ul.flow li p {
	width: 60%;
	font-size: 16px;
}
ul.flow li div {
	text-align: center;
}
ul.flow li img {
	border: 1px solid #999;
	width: 100%;
	max-width: 280px;
	display: inline;
}
table {
	width: 100%;
	border-collapse: collapse;
	vertical-align: middle;
}
/*table線あり*/
table.def tr, table.def th, table.def td {
	border: 1px solid #999;
}
table.def th {
	background: #eee;
	padding: 0.6em 0.4em;
	text-align: center;
}
table.def td {
	text-align: center;
	padding: 0.6em 0.4em;
}
table.def td ul li {
	margin: 0 !important;
}

@media screen and (max-width:540px) {
	.wrap {
		font-size: 70% !important;
	}
	ul.flow li {
		display: block;
	}
	ul.flow li p {
		width: 100%;
	}
	.wid_small img {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		margin-bottom: -2em;
	}
}