@charset "utf-8";
/*==================================================
	【サブ】ページ固有のスタイル
==================================================*/
#container {
	position: relative;
}
#container::before, #container::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #f2f2f2;
	clip-path: polygon(55% 0, 0 0, 0 40%);
}
#container::after {
	top: auto;
	bottom: 0;
	left: auto;
	right: 0;
	clip-path: polygon(100% 80%, 100% 0%, 100% 100%, 75% 100%);
}
#service .box {
	position: relative;
	min-height: 360px;
	margin-bottom: 100px;
}
#service .box:nth-of-type(even) .in {
	padding-left: 350px;
}
#service .box h3 {
	font-size: 41px;
	color: var(--color-primary);
	display: flex;
	align-items: center;
	border-bottom: 1px solid #c9caca;
	padding-bottom: 30px;
	margin-bottom: 50px;
}
#service .box:nth-of-type(even) h3 {
	padding-left: 50px;
}
#service .box h3 span img {
	border: 1px solid var(--color-primary);
	border-radius: 50%;
	margin-right: 30px;
}
#service .box .img {
	position: absolute;
	right: 0;
	top: 0;
}
#service .box:nth-of-type(even) .img {
	right: auto;
	left: 0;
}
#service .box:nth-of-type(even) ul {
	padding-left: 50px;
}
#service .box ul li {
	position: relative;
	padding-left: 20px;
	line-height: 3;
}
#service .box ul li::before {
	content: "";
	position: absolute;
	top: 19px;
	left: 0;
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--color-primary);
}
@media print, screen and (min-width: 769px){ /* PCのみ */
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
}
@media only screen and (max-width: 768px) and (min-width: 641px){ /* タブレットのみ */
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#service .box {
		margin-bottom: 50px;
	}
	#service .box:nth-of-type(even) .in {
		padding-left: 0;
	}
	#service .box h3 {
		font-size: 30px;
		padding-bottom: 15px;
		margin-bottom: 30px;
	}
	#service .box:nth-of-type(even) h3 {
		padding-left: 0;
	}
	#service .box h3 span img {
		width: 70px;
		margin-right: 20px;
	}
	#service .box .img {
		position: relative;
		text-align: center;
		margin-bottom: 20px;
	}
	#service .box:nth-of-type(even) ul {
		padding-left: 0;
	}
	#service .box ul li {
		line-height: 2;
	}
	#service .box ul li::before {
		top: 11px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#service .box {
		margin-bottom: 30px;
	}
	#service .box h3 {
		font-size: 21px;
	}
	#service .box h3 span img {
		width: 50px;
		margin-right: 8px;
	}
}