@charset "utf-8";

/*----------------------------------------------
SIEM＆MDR
/business/services/security/security-management/wideangle/siemandmdr.html
----------------------------------------------*/

/*画像*/
.pic_wrap {
	width: 100%;
	text-align: center;
}
.pic_wrap img{
	max-width: 100%;
}

/*囲み*/
.point_outer_wrap{
	box-sizing: border-box;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:15px;
}
.point_outer_wrap > li{
	box-sizing: border-box;
	width:calc((100% - 15px) / 2);
	border:3px solid #006EB6;
	background-color:#E9F0F9;
	border-radius:10px;
	padding:20px;
	margin:0;
}
@media screen and (max-width: 768px) {
	.point_outer_wrap > li{
		width:100%;
	}
}

.point_inner_wrap{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:10px;
}
.point_inner_pic{
	width:80px;
	text-align:center;
	align-content: center;
}
.point_inner_pic img{
	width:100%;
}
.point_inner_txt{
		width:calc(100% - 80px - 20px);
}
.point_inner_txt h4{
	color:#006EB6;
	font-size:18px;
	font-weight:bold;
	line-height:1.4;
	margin:0 0 10px;
}
.point_inner_txt p{
	font-size:16px;
	line-height:1.5;
	margin:0 0 0.25em;
	padding-left: 1.3em;
	text-indent: -1.3em;
}
.point_inner_txt p:last-child{
	margin:0;
}
.point_inner_mark{
	color:#006EB6;
}



/*表*/
.device_tbl_wrap{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:30px;
}
.device_tbl_wrap > div{
	width:calc((100% - 30px) / 2);
}
@media screen and (max-width: 768px) {
	.device_tbl_wrap > div{
		width:100%;
	}
}

.device_tbl{
	width:100%;
}
.device_tbl th,
.device_tbl td{
	border: 1px solid #7F7F7F;
}
.device_tbl thead th {
	width:30%;
	background-color:#5A5858;
}
.device_tbl th{
	color:#FFF;
	vertical-align:middle;
	background-color:#006DB4;
}
.device_tbl th:first-child{
	width:10%;
}
.device_tbl td{
	vertical-align:middle;
}
.device_tbl_note{
	font-size:14px;
	text-align:right;
}
@media screen and (max-width: 768px) {
	.device_tbl_note{
		text-align:left;
	}
}