@charset "utf-8";
/* =========================================================================================
PAGE HEADER
=========================================================================================*/
.page-header {
	color: #fff;
	background: url(../images/page/page_header_bg.webp) no-repeat left center;
	background-size: cover;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding-block: 80px 30px;
	margin-bottom: 20px;
	position: relative;
}
.page-header .title-block {
	width: 80%;
	max-width: 1200px;
	padding-left: 75px;
	margin: 0 auto;
	translate: 5% 0;
	position: relative;
}
.page-header .title-block .page-title {
	width: 100%;
	font-size: 3.25rem;
	line-height: 1.4;
	font-weight: var(--normal-font-weight);
	letter-spacing: 0.025em;
	writing-mode: vertical-rl;
	word-break: break-all;
	text-wrap: balance;
	display: flex;
	align-items: start;
	justify-content: left;
	position: absolute;
	top: 0;
	right: 100%;
	z-index: 10;
}
.page-header .title-block .en-title {
	position: absolute;
	top: 35%;
	left: calc(75px - 20px);
	translate: 0 -130%;
	z-index: 1;
}
.page-header .title-block .image {
	max-width: 200%;
	height: 435px;
	margin-right: calc(50% - 50vw);
	position: relative;
}
.page-header .title-block .image img.bg {
	object-fit: cover;
	aspect-ratio: 1400 / 435;
	width: 100%;
	height: 100%;
}

@media only screen and (max-width: 820px) {
	.page-header {
		padding-block: 60px 20px;
		margin-bottom: 10px;
		position: relative;
	}
	.page-header .title-block {
		width: 100%;
		min-height: 130px;
		display: flex;
		flex-direction: column;
		align-items: start;
		justify-content: center;
		padding-inline: 40px;
		margin: 0 auto;
		translate: 0;
		position: relative;
	}
	.page-header .title-block .page-title {
		font-size: clamp(2.125rem, calc(0.756rem + 5.843vw), 3.75rem); /* min: 34px, max: 60px */
		writing-mode: horizontal-tb;
		position: static;
		filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 1));
	}
	.page-header .title-block .en-title {
		width: 50%;
		max-width: 250px;
		margin-top: 10px;
		position: static;
		translate: 0;
	}
	.page-header .title-block .en-title img {
		max-height: 75px;
	}
	.page-header .title-block .image {
		width: 100%;
		max-width: 100%;
		height: 120%;
		margin: 0;
		position: absolute;
		top: 50%;
		left: 100px;
		translate: 0 -50%;
		z-index: -1;
	}
}
@media only screen and (max-width: 468px) {
	.page-header .title-block {
		padding-inline: 30px;
	}
}

/*Breadcrumbs*/
.breadcrumbs {
	color: #fff;
	text-align: left;
	line-height: 1.4;
	width: 100%;
	padding-block: 20px 10px;
}
.breadcrumbs a {
	color: #fff;
	padding-right: 1.5em;
	position: relative;
}
.breadcrumbs a.home {
	padding-left: 0;
}
.breadcrumbs a::after {
	content: "";
	width: 0.75em;
	aspect-ratio: 1 /1;
	background: url(../images/common/arrow.svg) no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0.2em;
	translate: 0 -40%;
}
@media only screen and (max-width: 820px) {
	.breadcrumbs {
		font-size: 0.9rem;
	}
}
@media only screen and (max-width: 468px) {
	.breadcrumbs {
		font-size: 0.8rem;
	}
}
/* =========================================================================================
LAYOUT
=========================================================================================*/
.entry-content section:nth-of-type(1) /*ページの一番最初のsection*/ {
	padding-top: 50px;
}
.entry-content section:nth-last-of-type(1) /*ページの一番最最後のsection*/ {
	padding-bottom: 200px;
}
@media only screen and (max-width: 820px) {
	.entry-content section:nth-last-of-type(1) {
		padding-bottom: 150px;
	}
}
@media only screen and (max-width: 468px) {
	.entry-content section:nth-last-of-type(1) {
		padding-bottom: 100px;
	}
}

/*light-blue-text*/
.light-blue-text {
	padding-top: 150px;
	position: relative;
	z-index: 10;
}
.light-blue-text::before {
	content: "";
	color: var(--smoky-color);
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(3.75rem, calc(0.057rem + 15.758vw), 11.875rem); /* min: 60px, max: 190px */
	font-weight: 400;
	font-style: normal;
	line-height: 1;
	letter-spacing: 0.05em;
	text-align: left;
	white-space: nowrap;
	width: 100vw;
	padding-left: 10%;
	position: absolute;
	left: 50%;
	bottom: -0.2em;
	translate: -50% 0;
	z-index: 1;
	opacity: 0.15;
}
@media only screen and (max-width: 820px) {
	.light-blue-text {
		padding-top: 50px;
	}
	.light-blue-text::before {
		font-size: 80px !important;
		width: 100%;
		padding-left: 0;
		bottom: 10px;
		left: -0.2em;
		translate: 0;
	}
}
@media only screen and (max-width: 468px) {
	.light-blue-text {
		padding-top: 25px;
	}
	.light-blue-text::before {
		font-size: 60px !important;
		bottom: 15px;
	}
}

/*catchphrase*/
.catchphrase {
	color: var(--dark-color);
	font-size: 1.75em;
	font-weight: var(--semibold-font-weight);
	display: block;
	margin-bottom: 1em;
}
@media only screen and (max-width: 820px) {
	.catchphrase {
		font-size: 1.5em;
	}
}
@media only screen and (max-width: 468px) {
	.catchphrase {
		font-size: 1.375em;
	}
}

/*image-area*/
.image-area {
	width: 100%;
	display: flex;
	align-items: start;
	justify-content: right;
	background: linear-gradient(180deg, #fff 0%, #fff 50%, transparent 50%, transparent 100%); /*背景重なり対策*/
	margin: 0 auto;
	position: relative;
	z-index: 50;
}
.image-area img {
	width: 80%;
	max-width: 1500px;
}

/*bg*/
.box-white {
	background: #fff;
	padding: 3.5%;
}
.box-light-blue {
	background: #e0f0fc;
	padding: 3.5%;
}
.bg-light-blue {
	display: block;
	background: url(../images/common/bg_light_blue.webp) no-repeat center;
	background-size: cover;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
	padding-right: calc(50vw - 50%);
	padding-left: calc(50vw - 50%);
	padding-block: 100px;
}
@media only screen and (max-width: 820px) {
	.box-light-blue {
		padding: 25px;
	}
	.bg-light-blue {
		padding-block: 75px;
	}
}
@media only screen and (max-width: 468px) {
	.bg-light-blue {
		width: calc(100% + 30px + 30px);
		margin-inline: -30px;
		padding-inline: 30px;
		padding-block: 50px;
	}
}

/* =========================================================================================
ABOUT
=========================================================================================*/
/*message */
body.about .message {
	/*CSRの背景重なり対策*/
	background: #fff;
	z-index: 20;
}
body.about .message .mid-l.light-blue-text::before {
	content: "MESSAGE";
}
body.about .message .box {
	grid-template-columns: 1fr minmax(225px, 27.5%);
	gap: 2em 5%;
}
body.about .message .box .text p {
	text-indent: 1em;
}
body.about .message .box .text p + p {
	margin-top: 1em;
}
body.about .message .box figure {
	text-align: center;
	position: relative;
	z-index: 1;
}
body.about .message .box figure::before {
	content: "";
	width: 80%;
	aspect-ratio: 1 / 1;
	background: url(../images/page/about_message_object.png) no-repeat center;
	background-size: cover;
	position: absolute;
	top: -20px;
	right: -20px;
	z-index: -1;
}
body.about .message .box figcaption {
	font-size: 1.375em;
	font-weight: var(--bold-font-weight);
	margin-top: 1em;
}
body.about .message .box figcaption .position {
	font-size: 1rem;
	font-weight: var(--normal-font-weight);
	display: block;
}
@media only screen and (max-width: 820px) {
	body.about .message .box {
		display: flex;
		flex-direction: column;
		gap: 50px;
	}
	body.about .message .box figure {
		width: 80%;
		max-width: 350px;
		margin: auto;
	}
}
@media only screen and (max-width: 468px) {
}

/*csr */
body.about .csr {
	position: relative;
	z-index: 5;
}
body.about .csr::after {
	content: "";
	width: 100%;
	height: 150%;
	background: url(../images/common/bg_light_blue.webp) no-repeat center;
	background-size: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	z-index: -1;
}
body.about .mid-l.light-blue-text::before {
	content: "CSR";
}
body.about .csr .inner .box {
	width: 60%;
	max-width: 600px;
	display: flex;
	flex-direction: column;
	margin-inline: auto 0;
	margin-bottom: 30px;
	position: relative;
}
body.about .csr .inner .box p {
	text-indent: 1em;
}
body.about .csr .inner .box p + p {
	margin-top: 1em;
}
body.about .csr .image {
	width: 100vw;
	height: 100%;
	max-width: 1000px;
	margin-left: calc(50% - 50vw);
	position: absolute;
	right: 110%;
	top: 0;
	z-index: 1;
}
body.about .csr .image img {
	width: 100%;
	min-height: 100%;
	max-height: 455px;
	aspect-ratio: 670 / 455;
	object-fit: cover;
}
@media only screen and (max-width: 820px) {
	body.about .csr .inner .box {
		width: 100%;
		max-width: 100%;
	}
	body.about .csr .image {
		width: 100%;
		height: auto;
		margin: 0 auto 50px;
		position: static;
	}
}
@media only screen and (max-width: 468px) {
}

/* =========================================================================================
COMPANY
=========================================================================================*/
/*profile*/
body.company .profile {
	background: linear-gradient(180deg, #fff 0%, #fff 70%, transparent 70%, transparent 100%); /*背景重なり対策*/
	z-index: 20;
}
body.company .profile .mid-l.light-blue-text::before {
	content: "PROFILE";
}
body.company .profile table {
	margin-bottom: 100px;
}
body.company .profile th {
	width: calc(3.25em + 75px);
	padding-right: 75px;
	text-align: justify;
	text-align-last: justify;
}
body.company .profile .access-block {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
}
body.company .profile .access-block .map {
	position: relative;
	width: 100%;
	padding-top: 75%; /* 4:3 アスペクト比 */
	height: 0;
	margin-bottom: 20px;
}
body.company .profile .access-block .map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
body.company .profile .access-block dt {
	color: var(--main-color);
	font-size: 1.5em;
	font-weight: var(--bold-font-weight);
	line-height: 1.4;
	letter-spacing: 0.1em;
	border-left: 7px solid var(--sub-color);
	padding-left: 13px;
	margin-bottom: 0.5em;
}
body.company .profile .access-block dd {
	padding-left: 20px;
}
@media only screen and (max-width: 820px) {
	body.company .profile th {
		width: calc(3.25em + 60px);
		padding-right: 60px;
	}
}
@media only screen and (max-width: 468px) {
	body.company .profile th {
		width: calc(3.25em + 40px);
		padding-right: 40px;
	}
}

/*history*/
body.company .history {
	padding-block: 150px 50px;
	margin-block: 50px;
	position: relative;
	z-index: 1;
}
body.company .history::before,
body.company .history::after {
	content: "HISTORY";
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(3.75rem, calc(0rem + 16vw), 10rem); /* min: 60px, max: 160px */
	font-weight: 400;
	font-style: normal;
	text-align: left;
	white-space: nowrap;
	line-height: 1;
	letter-spacing: 0;
	width: 100%;
	padding-left: 20%;
	position: absolute;
	top: calc(150px - 0.5em);
	left: 50%;
	translate: -55% 0;
}
body.company .history::before {
	color: var(--smoky-color);
	opacity: 0.15;
	z-index: 5;
}
body.company .history::after {
	color: #f4f8fc;
	opacity: 1;
	z-index: 10;
	mask-image: linear-gradient(rgba(0, 0, 0, 1));
	mask-repeat: no-repeat;
	mask-position: left center;
	mask-size: calc(100% - 67.5%) 100%;
}
body.company .history .bg {
	content: "";
	width: 100%;
	height: 175%;
	background: url(../images/common/bg_light_blue.webp) no-repeat center;
	background-size: cover;
	position: absolute;
	left: 50%;
	bottom: 0;
	translate: -50% 0;
	z-index: -1;
}
body.company .history .inner {
	position: relative;
	z-index: 1;
}
body.company .history .inner .box {
	width: 70%;
	max-width: 970px;
	margin-inline: auto 0;
}
body.company .history .inner .box dl {
	display: grid;
	grid-template-columns: 220px 1fr;
	border-bottom: 1px solid var(--gray-color);
}
body.company .history .inner .box dl:nth-of-type(1) {
	border-top: 1px solid var(--gray-color);
	margin-top: 50px;
}
body.company .history .inner .box dt,
body.company .history .inner .box dd {
	padding: 0.75em 0;
}
body.company .history .image {
	width: 27.5%;
	max-width: 860px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}
body.company .history .image img {
	width: 100%;
	min-height: 500px;
	aspect-ratio: 860 / 580;
	object-fit: cover;
}
@media only screen and (max-width: 980px) {
	body.company .history {
		margin-block: 0;
	}
	body.company .history .bg {
		height: 94%;
	}
}
@media only screen and (max-width: 820px) {
	body.company .history::after {
		mask-size: calc(100% - 30%) 100%;
	}
	body.company .history .inner .box {
		width: 100%;
		max-width: 100%;
		padding: 0 0 10%;
		margin-top: 25%;
	}
	body.company .history .inner .box dl {
		display: block;
	}
	body.company .history .inner .box dt {
		padding-bottom: 0;
	}
	body.company .history .inner .box dd {
		padding-top: 0;
	}
	body.company .history .image {
		width: 65%;
		max-width: none;
	}
	body.company .history .image img {
		min-height: auto;
		max-height: 270px;
	}
}
@media only screen and (max-width: 468px) {
	body.company .history {
		margin-block: 0;
	}
	body.company .history .image {
		top: 40px;
	}
}

/*registration*/
body.company .registration .mid-l.light-blue-text::before {
	content: "REGISTRATION";
	font-size: clamp(2.5rem, calc(0rem + 10.667vw), 10rem); /* min: 40px, max: 160px */
}
body.company .registration .inner dl {
	display: grid;
	grid-template-columns: 300px 1fr;
	border-bottom: 1px solid var(--gray-color);
}
body.company .registration .inner dl:nth-of-type(1) {
	border-top: 1px solid var(--gray-color);
	margin-top: 50px;
}
body.company .registration .inner dt,
body.company .registration .inner dd {
	padding: 0.75em 0;
}
@media only screen and (max-width: 820px) {
	body.company .registration .inner dl {
		display: block;
	}
	body.company .registration .inner dt {
		padding-bottom: 0;
	}
	body.company .registration .inner dd {
		padding-top: 0;
	}
}
@media only screen and (max-width: 468px) {
}

/*affiliation*/
body.company .affiliation {
	background: url(../images/common/bg_light_blue.webp) no-repeat center;
	background-size: cover;
}
body.company .affiliation .mid-l.light-blue-text::before {
	content: "AFFILIATION";
	font-size: clamp(2.5rem, calc(0rem + 10.667vw), 10rem); /* min: 40px, max: 160px */
}
body.company .affiliation th {
	width: 350px;
}
@media only screen and (max-width: 820px) {
	body.company .affiliation th,
	body.company .affiliation td {
		width: 100%;
		display: block;
	}
	body.company .affiliation th {
		border: none;
		padding-bottom: 0.25em;
	}
	body.company .affiliation td {
		padding-top: 0;
	}
}
@media only screen and (max-width: 468px) {
}

/*awards*/
body.company .awards .mid-l.light-blue-text::before {
	content: "AWARDS";
}
body.company .awards .post-list {
	padding-block: 50px 100px;
	margin: 0;
}
body.company .awards .post-list dl {
	font-size: 0.875em;
	width: 100%;
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 0.75em;
}
body.company .awards .post-list dl + dl {
	margin-top: 5px;
}
body.company .awards .post-list dt::before {
	content: "";
	width: 1em;
	aspect-ratio: 1 / 1;
	display: inline-block;
	background: var(--main-color);
	border-radius: 100px;
	margin-right: 0.2em;
	translate: 0 0.1em;
}
body.company .awards .post-list dd {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: start;
	justify-content: right;
	gap: 0.75em;
}
body.company .awards .post-list dd::before {
	content: "";
	width: 100%;
	min-width: 1em;
	height: 1px;
	border-bottom: 1px solid var(--gray-color);
	margin-top: 0.875em;
}
body.company .awards ul.list.icon {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 0.5em 2em;
}
body.company .awards ul.list.icon li + li {
	margin: 0;
}
@media only screen and (max-width: 820px) {
	body.company .awards .post-list {
		padding-block: 35px 75px;
	}
	body.company .awards ul.list.icon {
		display: flex;
		flex-direction: column;
	}
}
@media only screen and (max-width: 468px) {
	body.company .awards .post-list {
		padding-block: 25px 50px;
	}
}

/* =========================================================================================
Equip
=========================================================================================*/
/*message */
body.equip .equipment {
	padding-bottom: 0;
}
body.equip .equipment .mid-l.light-blue-text::before {
	content: "EQUIPMENT";
	font-size: clamp(3.125rem, calc(-2.669rem + 24.719vw), 10rem); /* min: 50px, max: 160px */
}
body.equip .equipment .box {
	padding-block: 100px;
	position: relative;
}
body.equip .equipment .box:nth-of-type(1) {
	padding-top: 50px;
}
body.equip .equipment .box:nth-last-of-type(1) {
	padding-bottom: 175px;
}
body.equip .equipment .box .post-list ul {
	gap: 30px;
	padding-bottom: 50px;
}
body.equip .equipment .box .post-list .title {
	text-align: center;
}
body.equip .equipment .box ul.list.icon {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 0.5em 2em;
}
body.equip .equipment .box ul.list.icon li + li {
	margin: 0;
}
@media only screen and (max-width: 820px) {
	body.equip .equipment .box {
		padding-block: 75px;
	}
	body.equip .equipment .box:nth-of-type(1) {
		padding-top: 35px;
	}
	body.equip .equipment .box:nth-last-of-type(1) {
		padding-bottom: 150px;
	}
	body.equip .equipment .box .post-list ul {
		padding-bottom: 35px;
	}
	body.equip .equipment .box ul.list.icon {
		display: flex;
		flex-direction: column;
	}
}
@media only screen and (max-width: 468px) {
	body.equip .equipment .box {
		padding-block: 50px;
	}
	body.equip .equipment .box:nth-last-of-type(1) {
		padding-bottom: 100px;
	}
}
body.equip .equipment .equipment_title {
	margin-top: 1.0em;
	line-height: 1.4em;
	border-bottom: 1px solid var(--gray-color);
	padding-bottom: 0.6em;
	margin-bottom: 0.8em;
}
body.equip .equipment .equipment_data {
	font-size: 0.9em;
	line-height: 1.5em;
	text-indent: -1.0em;
	margin-left: 1.0em;
}
body.equip .equipment .equipment_data+.equipment_data {
	margin-top:0.4em;
}
body.equip .equipment .equipment_data:before {
	content: "●";
	color: #a5cef5;
}

/* =========================================================================================
Business
=========================================================================================*/
/*overview*/
body.business .overview .mid-l.light-blue-text::before {
	content: "OVERVIEW";
	font-size: clamp(3.125rem, calc(-2.669rem + 24.719vw), 10rem); /* min: 50px, max: 160px */
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/*eco-analysis*/
body.business .eco-analysis {
	margin-top: 100px;
}
body.business .eco-analysis::before,
body.business .eco-analysis::after {
	content: "ECO ANALYSIS";
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(3.125rem, calc(-0.25rem + 14.4vw), 8.75rem); /* min: 50px, max: 140px */
	font-weight: 400;
	font-style: normal;
	text-align: center;
	white-space: nowrap;
	line-height: 1;
	letter-spacing: 0;
	width: 100%;
	position: absolute;
	top: calc(150px - 0.875em);
	left: 50%;
	translate: -50% 0;
}
body.business .eco-analysis::before {
	color: var(--smoky-color);
	opacity: 0.15;
	z-index: 5;
}
body.business .eco-analysis::after {
	color: #f4f8fc;
	opacity: 1;
	z-index: 10;
	mask-image: linear-gradient(rgba(0, 0, 0, 1));
	mask-repeat: no-repeat;
	mask-position: left center;
	mask-size: calc(100% - 60%) 100%;
}
body.business .eco-analysis .inner {
	padding: 0 40px 50px;
	position: relative;
	z-index: 1;
}
body.business .eco-analysis .inner::before {
	content: "";
	width: 100%;
	height: 100%;
	background: url(../images/common/bg_light_blue.webp) no-repeat center;
	background-size: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	z-index: -1;
}
body.business .eco-analysis .inner .box {
	width: 57.5%;
	max-width: 600px;
	display: flex;
	flex-direction: column;
	gap: 1.5em;
	margin-inline: auto 0;
}
body.business .eco-analysis .mid-l {
	padding-top: 40px;
	margin: 0;
}
body.business .eco-analysis .catchphrase {
	margin: 0;
}
body.business .eco-analysis .btn {
	margin-top: 1em;
}
body.business .eco-analysis .btn,
body.business .eco-analysis .btn a {
	min-width: 100%;
}
body.business .eco-analysis .image {
	width: 40%;
	position: absolute;
	right: 60%;
	top: -10%;
	z-index: 1;
}
body.business .eco-analysis .image img {
	width: 100%;
	min-height: 550px;
	object-fit: cover;
}
@media only screen and (max-width: 820px) {
	body.business .eco-analysis {
		margin-top: 75px;
	}
	body.business .eco-analysis::after {
		mask-size: calc(100% - 30%) 100%;
	}
	body.business .eco-analysis .inner {
		padding: 50px 30px;
	}
	body.business .eco-analysis .inner .box {
		width: 100%;
		max-width: 100%;
		margin-top: 20%;
	}
	body.business .eco-analysis .image {
		width: 80%;
		max-width: none;
		right: 30%;
	}
	body.business .eco-analysis .image img {
		min-height: auto;
		max-height: 300px;
	}
}
@media only screen and (max-width: 468px) {
	body.business .eco-analysis {
		margin-top: 50px;
	}
	body.business .eco-analysis .inner {
		padding: 50px 25px;
	}
	body.business .eco-analysis .image {
		top: -5%;
	}
}

/*survey-consultant*/
body.business .survey-consultant {
	margin-top: 100px;
}
body.business .survey-consultant::before,
body.business .survey-consultant::after {
	content: "SURVEY & CONSULTANT";
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(3.125rem, calc(1.067rem + 8.78vw), 8.75rem); /* min: 50px, max: 140px */
	font-weight: 400;
	font-style: normal;
	text-align: center;
	white-space: nowrap;
	line-height: 1;
	letter-spacing: 0;
	width: 100%;
	position: absolute;
	top: calc(150px - 0.875em);
	left: 50%;
	translate: -50% 0;
}
body.business .survey-consultant::before {
	color: var(--smoky-color);
	opacity: 0.15;
	z-index: 5;
}
body.business .survey-consultant::after {
	color: #f4f8fc;
	opacity: 1;
	z-index: 10;
	mask-image: linear-gradient(rgba(0, 0, 0, 1));
	mask-repeat: no-repeat;
	mask-position: right center;
	mask-size: calc(100% - 60%) 100%;
}
body.business .survey-consultant .inner {
	padding: 0 40px 50px;
	position: relative;
	z-index: 1;
}
body.business .survey-consultant .inner::before {
	content: "";
	width: 100%;
	height: 100%;
	background: url(../images/common/bg_light_blue.webp) no-repeat center;
	background-size: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	z-index: -1;
}
body.business .survey-consultant .inner .box {
	width: 57.5%;
	max-width: 600px;
	display: flex;
	flex-direction: column;
	gap: 1.5em;
	margin-inline: 0 auto;
}
body.business .survey-consultant .mid-l {
	padding-top: 40px;
	margin: 0;
}
body.business .survey-consultant .catchphrase {
	margin: 0;
}
body.business .survey-consultant .btn {
	margin-top: 1em;
}
body.business .survey-consultant .btn,
body.business .survey-consultant .btn a {
	min-width: 100%;
}
body.business .survey-consultant .image {
	width: 40%;
	position: absolute;
	left: 60%;
	top: -10%;
	z-index: 1;
}
body.business .survey-consultant .image img {
	width: 100%;
	min-height: 550px;
	object-fit: cover;
}
@media only screen and (max-width: 820px) {
	body.business .survey-consultant {
		margin-top: 75px;
	}
	body.business .survey-consultant::before,
	body.business .survey-consultant::after {
		text-align: left;
		white-space: wrap;
		padding-left: 5%;
		top: 50px;
	}
	body.business .survey-consultant::after {
		mask-size: calc(100% - 30%) 100%;
	}
	body.business .survey-consultant .inner {
		padding: 50px 30px;
	}
	body.business .survey-consultant .inner .box {
		width: 100%;
		max-width: 100%;
		margin-top: 20%;
	}
	body.business .survey-consultant .image {
		width: 80%;
		max-width: none;
		left: 30%;
	}
	body.business .survey-consultant .image img {
		min-height: auto;
		max-height: 300px;
	}
}
@media only screen and (max-width: 468px) {
	body.business .survey-consultant {
		margin-top: 50px;
	}
	body.business .survey-consultant .inner {
		padding: 50px 25px;
	}
	body.business .survey-consultant .image {
		top: -5%;
	}
}

/*rental*/
body.business .rental {
	margin-top: 100px;
}
body.business .rental::before,
body.business .rental::after {
	content: "RENTAL";
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(3.125rem, calc(-0.25rem + 14.4vw), 8.75rem); /* min: 50px, max: 140px */
	font-weight: 400;
	font-style: normal;
	text-align: center;
	white-space: nowrap;
	line-height: 1;
	letter-spacing: 0;
	width: 100%;
	position: absolute;
	top: calc(150px - 0.875em);
	left: 50%;
	translate: -50% 0;
}
body.business .rental::before {
	color: var(--smoky-color);
	opacity: 0.15;
	z-index: 5;
}
body.business .rental::after {
	color: #f4f8fc;
	opacity: 1;
	z-index: 10;
	mask-image: linear-gradient(rgba(0, 0, 0, 1));
	mask-repeat: no-repeat;
	mask-position: left center;
	mask-size: calc(100% - 60%) 100%;
}
body.business .rental .inner {
	padding: 0 40px 50px;
	position: relative;
	z-index: 1;
}
body.business .rental .inner::before {
	content: "";
	width: 100%;
	height: 100%;
	background: url(../images/common/bg_light_blue.webp) no-repeat center;
	background-size: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	z-index: -1;
}
body.business .rental .inner .box {
	width: 57.5%;
	max-width: 600px;
	display: flex;
	flex-direction: column;
	gap: 1.5em;
	margin-inline: auto 0;
}
body.business .rental .mid-l {
	padding-top: 40px;
	margin: 0;
}
body.business .rental .catchphrase {
	margin: 0;
}
body.business .rental .btn {
	margin-top: 1em;
}
body.business .rental .btn,
body.business .rental .btn a {
	min-width: 100%;
}
body.business .rental .image {
	width: 40%;
	position: absolute;
	right: 60%;
	top: -10%;
	z-index: 1;
}
body.business .rental .image img {
	width: 100%;
	min-height: 550px;
	object-fit: cover;
}
@media only screen and (max-width: 820px) {
	body.business .rental {
		margin-top: 75px;
	}
	body.business .rental::after {
		mask-size: calc(100% - 30%) 100%;
	}
	body.business .rental .inner {
		padding: 50px 30px;
	}
	body.business .rental .inner .box {
		width: 100%;
		max-width: 100%;
		margin-top: 20%;
	}
	body.business .rental .image {
		width: 80%;
		max-width: none;
		right: 30%;
	}
	body.business .rental .image img {
		min-height: auto;
		max-height: 300px;
	}
}
@media only screen and (max-width: 468px) {
	body.business .rental {
		margin-top: 50px;
	}
	body.business .rental .inner {
		padding: 50px 25px;
	}
	body.business .rental .image {
		top: -5%;
	}
}

/* =========================================================================================
Kankyo-sokutei
=========================================================================================*/
/*eco-analysis*/
body.kankyo-sokutei .eco-analysis {
	padding-bottom: 0;
}
body.kankyo-sokutei .eco-analysis .mid-l.light-blue-text::before {
	content: "ECO ANALYSIS";
	font-size: clamp(3.125rem, calc(-2.669rem + 24.719vw), 10rem); /* min: 50px, max: 160px */
}
body.kankyo-sokutei .eco-analysis .box:nth-of-type(1) {
	display: grid;
	grid-template-columns: 1fr minmax(225px, 42%);
	gap: 2em 4%;
	margin-bottom: 100px;
}
body.kankyo-sokutei .eco-analysis .box:nth-of-type(1) .text p {
	text-indent: 1em;
}
body.kankyo-sokutei .eco-analysis .box:nth-of-type(1) .text p + p {
	margin-top: 1em;
}

@media only screen and (max-width: 820px) {
	body.kankyo-sokutei .eco-analysis .box:nth-of-type(1) {
		display: flex;
		flex-direction: column;
		gap: 50px;
		margin-bottom: 75px;
	}
}
@media only screen and (max-width: 468px) {
	body.kankyo-sokutei .eco-analysis .box:nth-of-type(1) {
		margin-bottom: 50px;
	}
}

/*bg-white*/
body.kankyo-sokutei section.bg-white .box {
	display: grid;
	grid-template-columns: 1fr minmax(225px, 42%);
	gap: 2em 4%;
	margin-bottom: 50px;
}
body.kankyo-sokutei section.bg-white .box .text p {
	text-indent: 1em;
}
body.kankyo-sokutei section.bg-white .box .text p + p {
	margin-top: 1em;
}
body.kankyo-sokutei section.bg-white .btn {
	margin-bottom: 50px;
}
body.kankyo-sokutei section.bg-white .btn a.white {
	min-width: 50%;
	border: 3px solid var(--smoky-color);
}
body.kankyo-sokutei section.bg-white ul.list.icon {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 0.5em 2em;
}
body.kankyo-sokutei section.bg-white ul.list.icon li + li {
	margin: 0;
}
@media only screen and (max-width: 820px) {
	body.kankyo-sokutei section.bg-white .box {
		display: flex;
		flex-direction: column;
		gap: 50px;
	}
	body.kankyo-sokutei section.bg-white ul.list.icon {
		display: flex;
		flex-direction: column;
	}
}
@media only screen and (max-width: 468px) {
}

/*bg-light-blue*/
body.kankyo-sokutei section.bg-light-blue .box {
	display: grid;
	grid-template-columns: minmax(225px, 42%) 1fr;
	gap: 2em 4%;
	margin-bottom: 50px;
}
body.kankyo-sokutei section.bg-light-blue .box .text {
	order: 2;
}
body.kankyo-sokutei section.bg-light-blue .box .image {
	order: 1;
}
body.kankyo-sokutei section.bg-light-blue .box .text p {
	text-indent: 1em;
}
body.kankyo-sokutei section.bg-light-blue .box .text p + p {
	margin-top: 1em;
}
body.kankyo-sokutei section.bg-light-blue ul.list.icon {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 0.5em 2em;
}
body.kankyo-sokutei section.bg-light-blue ul.list.icon li + li {
	margin: 0;
}
@media only screen and (max-width: 820px) {
	body.kankyo-sokutei section.bg-light-blue .box {
		display: flex;
		flex-direction: column;
		gap: 50px;
	}
	body.kankyo-sokutei section.bg-light-blue .box .text {
		order: 1;
	}
	body.kankyo-sokutei section.bg-light-blue .box .image {
		order: 2;
	}
	body.kankyo-sokutei section.bg-light-blue ul.list.icon {
		display: flex;
		flex-direction: column;
	}
}
@media only screen and (max-width: 468px) {
}

/* =========================================================================================
Environment-consultant
=========================================================================================*/
/*survey-consultant*/
body.environment-consultant .survey-consultant {
	padding-bottom: 0;
}
body.environment-consultant .survey-consultant .mid-l.light-blue-text::before {
	content: "ECO ANALYSIS";
	font-size: clamp(3.125rem, calc(-2.669rem + 24.719vw), 10rem); /* min: 50px, max: 160px */
}
body.environment-consultant .survey-consultant .box:nth-of-type(1) {
	display: grid;
	grid-template-columns: 1fr minmax(225px, 42%);
	gap: 2em 4%;
	margin-bottom: 100px;
}
body.environment-consultant .survey-consultant .box:nth-of-type(1) .text p {
	text-indent: 1em;
}
body.environment-consultant .survey-consultant .box:nth-of-type(1) .text p + p {
	margin-top: 1em;
}

@media only screen and (max-width: 820px) {
	body.environment-consultant .survey-consultant .box:nth-of-type(1) {
		display: flex;
		flex-direction: column;
		gap: 50px;
		margin-bottom: 75px;
	}
}
@media only screen and (max-width: 468px) {
	body.environment-consultant .survey-consultant .box:nth-of-type(1) {
		margin-bottom: 50px;
	}
}

/*bg-white*/
body.environment-consultant section.bg-white .box {
	display: grid;
	grid-template-columns: 1fr minmax(225px, 42%);
	gap: 2em 4%;
	margin-bottom: 50px;
}
body.environment-consultant section.bg-white .box .text p {
	text-indent: 1em;
}
body.environment-consultant section.bg-white .box .text p + p {
	margin-top: 1em;
}
body.environment-consultant section.bg-white ul.list.icon {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 0.5em 2em;
}
body.environment-consultant section.bg-white ul.list.icon li + li {
	margin: 0;
}
@media only screen and (max-width: 820px) {
	body.environment-consultant section.bg-white .box {
		display: flex;
		flex-direction: column;
		gap: 50px;
	}
	body.environment-consultant section.bg-white ul.list.icon {
		display: flex;
		flex-direction: column;
	}
}
@media only screen and (max-width: 468px) {
}

/*bg-light-blue*/
body.environment-consultant section.bg-light-blue .box {
	display: grid;
	grid-template-columns: minmax(225px, 42%) 1fr;
	gap: 2em 4%;
	margin-bottom: 50px;
}
body.environment-consultant section.bg-light-blue .box .text {
	order: 2;
}
body.environment-consultant section.bg-light-blue .box .image {
	order: 1;
}
body.environment-consultant section.bg-light-blue .box .text p {
	text-indent: 1em;
}
body.environment-consultant section.bg-light-blue .box .text p + p {
	margin-top: 1em;
}
body.environment-consultant section.bg-light-blue ul.list.icon {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 0.5em 2em;
}
body.environment-consultant section.bg-light-blue ul.list.icon li + li {
	margin: 0;
}
@media only screen and (max-width: 820px) {
	body.environment-consultant section.bg-light-blue .box {
		display: flex;
		flex-direction: column;
		gap: 50px;
	}
	body.environment-consultant section.bg-light-blue .box .text {
		order: 1;
	}
	body.environment-consultant section.bg-light-blue .box .image {
		order: 2;
	}
	body.environment-consultant section.bg-light-blue ul.list.icon {
		display: flex;
		flex-direction: column;
	}
}
@media only screen and (max-width: 468px) {
}

/* =========================================================================================
Rental
=========================================================================================*/
/*rental*/
body.rental .machine-rental {
	padding-bottom: 0;
}
body.rental .machine-rental .mid-l.light-blue-text::before {
	content: "RENTAL";
}
body.rental .machine-rental .box:nth-of-type(1) {
	display: grid;
	grid-template-columns: 1fr minmax(225px, 42%);
	gap: 2em 4%;
	margin-bottom: 100px;
}
body.rental .machine-rental .box:nth-of-type(1) .text p {
	text-indent: 1em;
}
body.rental .machine-rental .box:nth-of-type(1) .text p + p {
	margin-top: 1em;
}
body.rental .machine-rental .post-list {
	margin-bottom: 75px;
}
body.rental .machine-rental .post-list dl {
	font-size: 0.875em;
	width: 100%;
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 0.75em;
}
body.rental .machine-rental .post-list dt::before {
	content: "";
	width: 1em;
	aspect-ratio: 1 / 1;
	display: inline-block;
	background: var(--main-color);
	border-radius: 100px;
	margin-right: 0.2em;
	translate: 0 0.1em;
}
@media only screen and (max-width: 820px) {
	body.rental .machine-rental .box:nth-of-type(1) {
		display: flex;
		flex-direction: column;
		gap: 50px;
		margin-bottom: 75px;
	}
}
@media only screen and (max-width: 468px) {
	body.rental .machine-rental .box:nth-of-type(1) {
		margin-bottom: 50px;
	}
}

/*contact*/
body.rental .contact {
	text-align: center;
}
body.rental .contact .inner {
	border: 10px solid #e0f0fc;
	padding: 50px 30px;
	position: relative;
	z-index: 1;
}
body.rental .contact h2 {
	color: #fff;
	font-size: 1.5em;
	font-weight: var(--semibold-font-weight);
	text-align: center;
	line-height: 1.4;
	width: fit-content;
	min-width: 450px;
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	justify-content: center;
	background: var(--sub-color);
	border-radius: 10px;
	padding: 0.75em 1em;
	margin: 0 auto 1em;
	position: absolute;
	top: -1.5em;
	left: 50%;
	translate: -50% 0;
	z-index: 5;
}
body.rental .contact .box {
	width: 100%;
	max-width: 1000px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	align-items: stretch;
	background: #e0f0fc;
	gap: 3px;
	margin: 3.5% auto 0;
	position: relative;
	z-index: 1;
}
body.rental .contact .box .item {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	padding: 5%;
}
body.rental .contact .box .item h3 {
	color: var(--sub-color);
	font-size: 1.25em;
	font-weight: var(--semibold-font-weight);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1em;
}
body.rental .contact .box .item h3::before {
	content: "";
	width: 30%;
	max-width: 74px;
	aspect-ratio: 1 / 1;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
body.rental .contact .box .item.tel h3::before {
	background-image: url(../images/common/icon_tel.svg);
}
body.rental .contact .box .item.mail h3::before {
	background-image: url(../images/common/icon_mail.svg);
}
body.rental .contact .box .item b {
	color: var(--main-color);
	font-size: 2.25em;
	font-weight: var(--semibold-font-weight);
}
body.rental .contact .box .item p {
	font-size: 0.9em;
}
body.rental .contact .box .item .btn {
	padding-block: 1em 0.5em;
}
@media only screen and (max-width: 820px) {
	body.rental .contact .inner {
		padding-top: 100px;
		padding-bottom: 30px;
	}
	body.rental .contact h2 {
		width: 80%;
		min-width: auto;
	}
	body.rental .contact .box {
		display: flex;
		flex-direction: column;
	}
	body.rental .contact .box .item {
		padding: 30px 0;
	}
	body.rental .contact .box .item b {
		font-size: 2em;
	}
}
@media only screen and (max-width: 468px) {
	body.rental .contact .inner {
		padding-bottom: 0;
	}
	body.rental .contact .box .item b {
		font-size: 1.75em;
	}
}

/* =========================================================================================
CONTACT
=========================================================================================*/
body.contact .entry-content .inner {
	max-width: 1000px;
}
body.contact .entry-content .mid-l.light-blue-text::before {
	content: "CONTACT";
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/* =========================================================================================
404
=========================================================================================*/
body.error404 .entry-header {
	text-align: center;
	padding: 40px 20px;
	margin: 0;
}
body.error404 .error-message {
	padding: 20px;
	margin-bottom: 30px;
	text-align: center;
}
body.error404 .error-message p img {
	margin: 0 auto 50px;
	max-width: 300px;
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/* =========================================================================================
********
=========================================================================================*/
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}
