/*************************************
 	business-oem.css
*************************************/

#business-oem{
	p{
		font-size: 1.6rem;
		line-height: 2.8rem;
	}

.agent{
	margin-bottom: 90px;
	
	@media screen and (max-width: 640px) {
		margin-bottom: 45px;
	}
}
.agent_txt{
	margin-bottom: 20px;
}
.agent_list{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
}

.achievement{
	margin-bottom: 90px;
	
	@media screen and (max-width: 640px) {
		margin-bottom: 45px;
	}
}
.achievement_txt{
	margin-bottom: 20px;
}
.achievement_list{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	list-style-type: disc;
	padding-left: 1em;
	background-color: #F8F8F8;
	padding: 40px 80px;

	@media screen and (max-width: 640px) {
		grid-template-columns: repeat(1, 1fr);
		gap: 10px;
		padding: 20px 40px;
	}
}
.achievement_item{
	font-weight: bold;
	font-size: 1.6rem;
}

.network {
	padding: 20px 0 35px;
	border-radius: 10px;
	background-color: rgba(70, 70, 70, 0.8);
	margin-bottom: 120px;
	@media screen and (max-width: 640px) {
		margin-bottom: 60px;
	}
}
.network_tit {
	padding-bottom: 15px;
	border-bottom: 1px dotted #fff;
	color: #fff;
	font-size: 2.0rem;
	letter-spacing: 3px;
	font-weight: bold;
	text-align: center;

	@media screen and (max-width: 640px) {
		padding: 0 10px;
	}
}
.network_list {
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 25px 60px 0;
	margin-bottom: 20px;
}
.network_list > li {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: 2px solid #fff;
	width: 150px;
	height: 150px;
	border-radius: 75px;
	color: #fff;
	font-size: 1.7rem;
	font-weight: bold;
	margin-right: 25px;
	margin-bottom: 15px;
	text-align: center;

	&::before {
		position: absolute;
		top: 50%;
		right: 0%;
		transform: translate(25px, -50%);
		content: "";
		width: 13px;
		height: 37px;
		background-image: url(/images/common/basic_flow_left.png);
		background-size: cover;
	}

	&:last-of-type{
		&::before{
			content: none;
		}
	}
}
.network_txt{
	padding: 0 60px;
	color: #FFF;
	@media screen and (max-width: 640px) {
		padding: 0 30px;
	}
}
@media screen and (max-width: 640px) {
	.network {
		padding: 20px 0;
	}

	.network_list {
		flex-direction: column;
		padding: 25px 4% 0;
		margin-bottom: 0;
	}
	.network_list li {
		position: relative;
		width: 80%;
		height: auto;
		border-radius: 25px;
		margin: 0 auto 25px;
		font-size: 1.5rem;
		line-height: 2.7rem;

		&::before {
			position: absolute;
			top: auto;
			bottom: -22px;
			left: 50%;
			transform: translate(-50%, 0);
			content: "";
			width: 37px;
			height: 13px;
			background-image: url(/images/common/basic_flow_under.png);
			background-size: cover;
		}
	}
}
}