@charset "UTF-8";
/*-----------------------会社概要*/
.company .company_container {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 4em;
	background-color: #ffffff;
	border-radius: 30px;
}
.company .company_container .dl_com {
	display: flex;
	padding: 1em 0;
	border-bottom: 1px dashed #bc9c80;
}
.company .company_container .dl_com dt {
	width: 180px;
	line-height: 1.8;
	font-weight: 600;
}
.company .company_container .dl_com dd {
	width: calc(100% - 180px);
	padding-left: 1em;
	line-height: 1.8;
}
.company .company_container .dl_com dd .list_circle li {
	line-height: 1.8;
	margin-bottom: 0.6em;
	padding-left: 1em;
	position: relative;
}
.company .company_container .dl_com dd .list_circle li::before {
	content: "";
	display: block;
	width: 0.6em;
	height: 0.6em;
	border-radius: 50%;
	background-color: #20b9e6;
	position: absolute;
	left: 0;
	top: 0.6em;
}
.company .company_container .mascot {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 3em;
}
.company .company_container .mascot .mascot_text {
	margin-right: 40px;
	padding: 1em 2em;
	background-color: #fff0d2;
	border-radius: 20px;
	position: relative;
}
.company .company_container .mascot .mascot_text .name {
	font-size: clamp(1rem, 0.868rem + 0.563vw, 1.375rem);
	line-height: 1.6;
}
.company .company_container .mascot .mascot_text .name span {
	font-size: 70%;
}
.company .company_container .mascot .mascot_text::after {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	border-left: 20px solid #fff0d2;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	position: absolute;
	right: -20px;
	top: 50%;
	transform: translateY(-50%);
}
.company .company_container .mascot .mascot_img {
	max-width: calc(200px + 2em);
	padding: 1em;
	position: relative;
}
.company .company_container .mascot .mascot_img::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-image: url("../img/common/dot_b2.png");
	background-size: 8px 8px;
	position: absolute;
	left: 0;
	top: 0;
}
.company .company_container .mascot .mascot_img img {
	position: relative;
}
@media screen and (max-width: 768px) {
	.company .company_container {
		padding: 3em 2em;
		border-radius: 20px;
	}
	.company .company_container .dl_com {
		flex-direction: column;
	}
	.company .company_container .dl_com dt {
		width: 100%;
		margin-bottom: 0.5em;
	}
	.company .company_container .dl_com dd {
		width: 100%;
		padding-left: 0;
	}
	.company .company_container .mascot {
		flex-direction: column-reverse;
	}
	.company .company_container .mascot .mascot_text {
		margin-right: 0;
		margin-top: 30px;
		padding: 1em 2em;
	}
	.company .company_container .mascot .mascot_text::after {
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		border-left: 15px solid transparent;
		border-right: 15px solid transparent;
		border-top: none;
		border-bottom: 20px solid #fff0d2;
		position: absolute;
		right: unset;
		left: 50%;
		top: -20px;
		transform: translate(-50%, 0);
	}
	.company .company_container .mascot .mascot_img {
		max-width: calc(180px + 2em);
		margin: 0 auto;
	}
	.company .company_container .mascot .mascot_img::before {
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		border-radius: 50%;
		background-image: url("../img/common/dot_b2.png");
		background-size: 8px 8px;
		position: absolute;
		left: 0;
		top: 0;
	}
	.company .company_container .mascot .mascot_img img {
		position: relative;
	}
}



