main {
	background-color: #F9F8F4;
}

.tophead .wrap {
	display: grid;
	grid-template-columns: 440px 1fr;
}
.tophead .inner {
	width: 440px;
	position: relative;
	background-image: url(../img/common/head-bg.png);
	background-size: cover;
}
.tophead .inner .ttl {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.tophead .inner .ttl h1 {
	font-size: 60px;
}
.tophead .inner .ttl span {
	font-size: 15px;
}
.tophead .img {
	overflow: hidden;
}
.tophead .img img {
	object-fit: cover;
	min-width: 100%;
	min-height: 100%;
}
@media (max-width: 1300px) {
	.tophead .inner .ttl h1 {
		font-size: 42px;
	}
	.tophead .wrap {
		display: grid;
		grid-template-columns: 320px 1fr;
		height: 300px;
	}
	.tophead .inner {
		width: 320px;
	}
}
@media (max-width: 800px) {
	.tophead .inner .ttl h1 {
		font-size: 28px;
	}
	.tophead .inner {
		width: 100%;
	}
	.tophead .wrap {
		grid-template-columns: 1fr 1fr;
		height: 220px;
	}
	.tophead .inner .ttl {
		width: max-content;
	}
}

.company .wrap {
	max-width: 900px;
	margin: auto;
	padding-bottom: 110px;
}
.company .wrap h2 {
	text-align: center;
	font-size: 28px;
	position: relative;
	z-index: 3;
	margin-bottom: 40px;
}
.company .wrap h2::after {
	content: 'COMPANY';
	font-size: 95px;
	color: var(--c-wh);
	position: absolute;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	z-index: -1;
	font-family: 'Ibarra Real Nova', serif;
}
.company .wrap:nth-child(2) h2::after {
	content: 'MESSAGE';
}
.company .wrap .inner {
	background-color: var(--c-wh);
	padding: 40px;
}
.company .wrap table {
	text-align: left;
	margin-bottom: 54px;
	width: 100%;
}
.company .wrap tr {
	padding: 12px 0;
	border-top: 1px solid #F9F8F4;
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 20px;
}
.company .wrap th:last-of-type {
	font-weight: 400;
}
.company .wrap iframe {
	width: 100%;
}
@media (max-width: 1300px) {
	.company .wrap {
		padding-left: 32px;
		padding-right: 32px;
	}
}
@media (max-width: 800px) {
	.company .wrap {
		padding-left: 24px;
		padding-right: 24px;
	}
	.company .wrap h2::after {
		font-size: 60px;
	}
	.company .wrap .inner {
		padding: 40px 23px;
	}
}