.p-company-profile {
	padding: 0 20px 160px;
}

.p-company-profile__inner {
	max-width: 960px;
	margin: 0 auto;
}

.p-company-profile__info {
	overflow: hidden;
	display: grid;
	grid-template-columns: 240px 1fr;
	background-color: #fff;
	border: 1px solid var(--color-surface-dark);
	border-radius: 24px;
}

.p-company-profile__title,
.p-company-profile__description {
	padding: 20px;
	border-top: 1px solid var(--color-surface-dark);
}

.p-company-profile__title:first-of-type,
.p-company-profile__description:first-of-type {
	border-top: none;
}

.p-company-profile__title {
	font-weight: 700;
}

.p-company-profile__description {
	border-left: 1px solid var(--color-surface-dark);
}

.p-company-profile__map {
	overflow: hidden;
	margin-top: 60px;
	border: 1px solid var(--color-surface-dark);
	border-radius: 24px;
}

.p-company-profile__map iframe {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 9;
}

@media screen and (max-width: 767px) {
	.p-company-profile__info {
		grid-template-columns: 1fr;
		border-radius: 16px;
	}

	.p-company-profile__title:first-of-type,
	.p-company-profile__description:first-of-type {
		border-top: none;
	}

	.p-company-profile__title {
		padding: 20px 16px 4px;
		border-top: 1px solid var(--color-surface-dark);
	}

	.p-company-profile__description {
		padding: 4px 16px 20px;
		border-top: none;
		border-left: none;
	}

	.p-company-profile__galleries {
		grid-template-columns: repeat(2, 1fr);
	}

	.p-company-profile__map {
		border-radius: 16px;
	}

	.p-company-profile__map iframe {
		aspect-ratio: 3 / 2;
	}
}