@charset "UTF-8";
/*------------------------------火災保険適用事例*/
.section_kv #case.kv_inner {
	background-image: url("../img/case/img_kv.jpg");
	background-position: left center;
}
.case {
	overflow: hidden;
}
.case .textbox {
	margin-bottom: 2em;
}
.case .textbox .catch3 {
	color: #b41e00;
	font-weight: 700;
}
.case .textbox .list_case_box {
	padding: 2em 3em;
	border: 1px solid #b41e00;
	border-radius: 20px;
	margin-top: 1em;
}
.case .textbox .list_case {
	display: flex;
	flex-wrap: wrap;
}
.case .textbox .list_case li {
	width: 48%;
	padding-left: 1.2em;
	margin-bottom: 10px;
	position: relative;
}
.case .textbox .list_case li::before {
	content: "";
	display: block;
	width: 0.6em;
	height: 0.6em;
	border-radius: 50%;
	background-color: #f89494;
	position: absolute;
	left: 0;
	top: 0.7em;
}
.case  ul.case_img {
	display: flex;
	flex-wrap: wrap;
	margin-top: 3em;
}
.case  ul.case_img li {
	width: 32%;
	margin: 0 2% 30px 0;
}
.case  ul.case_img li:nth-child(3n) {
	margin-right: 0;
}
.case  ul.case_img li a {
	overflow: hidden;
	display: block;
	height: 0;
	padding-top: 75%;
	position: relative;
	transition: .2s;
}
.case  ul.case_img li a:hover {
	opacity: .7;
}
.case  ul.case_img li a > img {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}
.case  ul.case_img li .case_title {
	margin-top: 5px;
	padding-left: 1.2em;
	position: relative;
}
.case  ul.case_img li .case_title::before {
	content: "";
	display: block;
	width: 0.6em;
	height: 0.6em;
	border-right: 2px solid #b41e00;
	border-bottom: 2px solid #b41e00;
	position: absolute;
	left: 0;
	top: 0.7em;
	transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
	.case .textbox .list_case_box {
		padding: 2em;
	}
	.case .textbox .list_case {
		flex-direction: column;
	}
	.case .textbox .list_case li {
		width: 100%;
	}
	.case ul.case_img {
		justify-content: space-between
	}
	.case ul.case_img li, .case ul.case_img li:nth-child(3n) {
		width: 48%;
		margin: 0 0 30px 0;
	}
}



