@charset "utf-8";
/*==================================================
	【サブ】ページ固有のスタイル
==================================================*/
#service.bg::before {
	background: #ebeff2;
}
#service h3.sub {
	text-align: left;
}
#service .list {
	margin-top: 70px;
}
#service .box {
	background: #fff;
	padding: 50px;
	margin-bottom: 80px;
}
#service .box:last-of-type {
	margin-bottom: 0;
}
#service .box ul {
	display: grid;
	justify-content: space-between;
	grid-template-columns: repeat(3, 320px);
	margin-bottom: 30px;
}
#service .box dl dt {
	font-size: 38px;
	font-weight: bold;
	color: var(--color-primary);
	margin-bottom: 15px;
}
#service .box dl dd {
	font-size: 110%;
}
@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 {
		padding: 15px;
	}
	#service .box ul {
		grid-template-columns: repeat(3, 32%);
		margin-bottom: 15px;
	}
	#service .box dl dt {
		font-size: 25px;
		margin-bottom: 10px;
	}
	#service .box dl dd {
		font-size: 105%;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#service h3.sub::before {
		min-width: 250px;
		height: 220px;
	}
	#service .list {
		margin-top: 30px;
	}
	#service .box {
		margin-bottom: 20px;
	}
	#service .box ul {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		margin-bottom: 15px;
		gap: 10px 0;
	}
	#service .box ul li {
		width: 48.5%;
	}
	#service .box ul li:last-of-type {
		margin: 0 auto;
	}
	#service .box dl dt {
		font-size: 18px;
		line-height: 1.5;
	}
	#service .box dl dd {
		font-size: 100%;
	}
}