@charset "utf-8";
/*==================================================
	【サブ】ページ固有のスタイル
==================================================*/
#about h3.sub {
	text-align: left;
}
#about h3.sub span {
	padding-left: 25px;
	margin-bottom: 15px;
}
#about h3.sub span::before {
	transform: rotate(-90deg);
	left: 0;
	top: 20px;
}
#about .box_about {
	display: flex;
	justify-content: space-between;
}
#about .box_company {
	width: 70%;
	margin-top: 65px;
}
#about .box_company dl {
	display: flex;
	border-bottom: 1px solid #b7b7b7;;
	padding-bottom: 1.5em;
	margin-bottom: 1.5em;
}
#about .box_company dl:first-of-type {
	border-top: 1px solid #b7b7b7;;
	padding-top: 1.5em;
}
#about .box_company dl dt {
	width: 20%;
	letter-spacing: 0.05em;
	color: var(--color-primary);
	font-weight: 600;
	padding-left: 1em;
}
#about .box_company dl dd {
	width: 80%;
}
#about .box_company dl dd ul li {
	list-style: disc;
	margin-left: 1em;
}
@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) {  /* タブレット以下 */
	#about h3.sub span {
		margin-bottom: -25px;
	}
	#about .box_about {
		display: block;
	}
	#about .box_company {
		width: 100%;
		margin-top: 0px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#about h3.sub span {
		margin-bottom: -30px;
	}
	#about .box_company dl {
	display: block;
	}
	#about .box_company dl dt {
		width: 100%;
		padding-left: 0;
	}
	#about .box_company dl dd {
		width: 100%;
	}
}