/*-------------------------導入事例 一覧*/
.case_item_wrap {
	width: 100%;
	max-width: 1100px;
	margin: 30px auto 0;
}
.case_item_wrap .case_item:not(:first-of-type) {
	margin-top: 80px;
	padding-top: 80px;
	border-top: 1px solid #dddddd;
}
.case_item_wrap .case_item > a {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	transition: .3s;
}
.case_item_wrap .case_item > a:hover {
	opacity: .7;
}
.case_item_wrap .case_item a .case_imagebox {
	width: 46%;
}
.case_item_wrap .case_item a .case_imagebox img {
		width: 100%;
}
.case_item_wrap .case_item a .case_textbox {
	width: 48%;
}
.case_item_wrap .case_item a .case_textbox .case_title_box {
	padding-left: 20px;
	border-left: 5px solid #ff7326;
	margin-bottom: 20px;
}
.case_item_wrap .case_item a .case_textbox .case_title_box .status {
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.4;
}
.case_item_wrap .case_item a .case_textbox .case_title_box .case_title {
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.4;
	margin-top: 1em;
}
.case_item_wrap .case_item a .case_textbox .catch {
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.8;
	margin-top: 2em;
}
@media screen and (max-width: 768px) {
	.case_item_wrap {
		padding: 0 5%;
	}
	.case_item_wrap .case_item:not(:first-of-type) {
		margin-top: 50px;
		padding-top: 50px;
	}
	.case_item_wrap .case_item > a {
		flex-direction: column;
	}
	.case_item_wrap .case_item a .case_imagebox {
		width: 100%;
	}
	.case_item_wrap .case_item a .case_textbox {
		width: 100%;
		margin-top: 2em;
	}
	.case_item_wrap .case_item a .case_textbox .case_title_box .case_title {
		margin-top: 0.6em;
	}
	.case_item_wrap .case_item a .case_textbox .catch {
		margin-top: 0.8em;
	}
}
@media screen and (max-width: 480px) {
	.case_item_wrap .case_item:not(:first-of-type) {
		margin-top: 40px;
		padding-top: 40px;
	}
}

/*-------------------------導入事例 各ページ*/
.case_detail_content {
	width: 100%;
	max-width: 1100px;
	margin: 68px auto 120px;
}
.case_detail_content_inner {
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
}
.case_detail_content_inner .box_l {
	width: 300px;
}
.case_detail_content_inner .box_l .case_pic {
	margin-bottom: 20px;
}
.case_detail_content_inner .box_l .c_title {
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.6;
}
.case_detail_content_inner .box_l .c_name {
	margin-top: 1em;
}
.case_detail_content_inner .box_l .c_name .position {
	display: block;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 7px;
}
.case_detail_content_inner .box_l .c_name .name {
	display: block;
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.5;
}
.case_detail_content_inner .box_l .box_l_status {
	margin-top: 1.2em;
	padding-top: 10px;
	border-top: 3px solid #ff7326;
}
.case_detail_content_inner .box_l .box_l_status .dl_s {
	padding: 0.7em 0;
	border-bottom: 1px solid #cccccc;
}
.case_detail_content_inner .box_l .box_l_status .dl_s dt {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 5px;
}
.case_detail_content_inner .box_l .box_l_status .dl_s dd {
	font-size: 1rem;
	line-height: 1.5;
}
.case_detail_content_inner .box_r {
	width: calc(100% - 300px);
	padding-left: 50px;
}
.case_detail_content_inner .box_r .case_catch {
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.5;
	padding-left: 0.8em;
	border-left: 5px solid #ff7326;
	margin-bottom: 2em;
}
.case_detail_content_inner .box_r .text {
	line-height: 2;
	margin-bottom: 20px;
}
.case_detail_content_inner .box_r .case_img {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 30px;
}
.case_detail_content_inner .box_r .case_img li {
	width: 48%;
	margin-bottom: 20px;
}
.case_detail_content_inner .box_r .case_img li.col1 {
	width: 100%;
}
.case_contactbox {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	display: flex;
}
.case_contactbox .contact_btn {
	width: 260px;
	min-width: 250px;
	transition: .2s;
	position: relative;
}
.case_contactbox .contact_btn:not(:first-of-type) {
	margin-left: 10px;
}
.case_contactbox .contact_btn::after {
	content: "";
	display: block;
	width: 12px;
	height: 20px;
	background-image: url("../img/common/icn_arw-wr.svg");
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}
.case_contactbox .contact_btn:hover {
	opacity: .7;
}
.case_contactbox .contact_btn.contact_01 {
	background-color: #ff7326;
	box-shadow: 0 4px 0 #bc5113;
}
.case_contactbox .contact_btn.contact_02 {
	background-color: #ff7326;
	box-shadow: 0 4px 0 #bc5113;
}
.case_contactbox .contact_btn.contact_03 {
	background-color: #239c3f;
	box-shadow: 0 4px 0 #127228;
}
.case_contactbox .contact_btn.contact_service {
	width: 100%;
	background-color: #545454;
	box-shadow: 0 4px 0 #383838;
	margin-bottom: 20px;
}
.case_contactbox .contact_btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	height: 80px;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
	position: relative;
}
.btn_btm {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 260px;
	height: 60px;
	background-color: #ff7326;
	box-shadow: 0 4px 0 #bc5113;
	color: #ffffff;
	font-size: 1.2rem;
	font-weight: 600;
	margin: 50px auto 0;
	position: relative;
	transition: .2s;
}
.btn_btm:hover {
	opacity: .7;
}
.btn_btm::after {
	content: "";
	display: block;
	width: 12px;
	height: 20px;
	background-image: url("../img/common/icn_arw-wl.svg");
	background-size: contain;
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
	.case_detail_content {
		margin: 68px auto 120px;
	}
	.case_detail_content_inner {
		flex-direction: column-reverse;
	}
	.case_detail_content_inner .box_l {
		width: 100%;
		margin-top: 20px;
	}
	.case_detail_content_inner .box_l .case_pic {
		max-width: 300px;
		margin: 0 auto 20px;
	}
	.case_detail_content_inner .box_l .c_title {
		font-size: 2rem;
	}
		.case_detail_content_inner .box_l .c_name .name {
		font-size: 1.6rem;
	}
	.case_detail_content_inner .box_l .box_l_status .dl_s {
		padding: 1.4em 0;
	}
	.case_detail_content_inner .box_l .box_l_status .dl_s dt {
		font-size: 1.4rem;
	}
	.case_detail_content_inner .box_l .box_l_status .dl_s dd {
		font-size: 1.4rem;
	}
	.case_detail_content_inner .box_r {
		width: 100%;
		padding-left: 0;
	}
	.case_detail_content_inner .box_r .case_catch {
		font-size: 2rem;
		padding-left: 0.8em;
		border-left: 5px solid #ff7326;
		margin-bottom: 1.5em;
	}
	.case_detail_content_inner .box_r .text {
		font-size: 1.375rem;
	}
	.case_detail_content_inner .box_r .case_img {
		flex-direction: column;
	}
	.case_detail_content_inner .box_r .case_img li {
		width: 100%;
	}
	.case_contactbox {
		flex-direction: column;
	}
	.case_contactbox .contact_btn {
		width: 100%;
		min-width: unset;
		margin-bottom: 20px;
	}
	.case_contactbox .contact_btn:not(:first-of-type) {
		margin-left: 0;
	}
	.case_contactbox .contact_btn a {
		font-size: 1.4rem;
	}
	.btn_btm {
		font-size: 1.4rem;
		margin: 40px auto 0;
	}
}


