@charset "UTF-8";

/* ------------------------------------------------
                    下層ページ
--------------------------------------------------- */

/*---------- 共通 ----------*/
.sec-ttl {
	width: 100%;
	margin-bottom: 40px;
	padding-bottom: 20px;
	font-size: 3.6rem;
    font-weight: 600;
	text-align: center;
	position: relative;
}
.sec-ttl::after {
	content: '';
	width: 80px;
	height: 4px;
	background: var(--color-green);
	position: absolute;
	bottom: 0;
	left: calc(50% - 40px);
}

.bg-light-green {
	background: var(--color-light-green02);
}


@media (max-width: 768px) {
	.sec-ttl {
		width: 100%;
		margin-bottom: 10vw;
		padding-bottom: 4vw;
		font-size: 5.66vw;
	}
	.sec-ttl::after {
		content: '';
		width: 14vw;
		height: 4px;
		background: var(--color-green);
		position: absolute;
		bottom: 0;
		left: calc(50% - 7vw);
	}
	
	
}


/*---------- メインエリア ----------*/
.hero-area {
	width: 100%;
	padding: 20px 20px 0;
	position: relative;
	border-bottom: 1px solid var(--color-gray);
}

@media (max-width: 768px) {
	.hero-area {
		width: 100%;
		padding: 3vw 3vw 0;
	}
}


/*---------- page ttl ----------*/
.sec-page-ttl {
	width: 100%;
	padding: 60px 0;
	position: relative;
	z-index: 2;
}
/* 個人情報保護方針ページ */
.sec-page-ttl.page-policy {
	background: url("../../img/policy/bg_ttl.jpg") center center no-repeat;
	background-size: cover;
}
/* サイトマップ */
.sec-page-ttl.page-sitemap {
	background: url("../../img/sitemap/bg_ttl.jpg") center center no-repeat;
	background-size: cover;
}
/* CSR */
.sec-page-ttl.page-csr {
	background: url("../../img/csr/bg_ttl.jpg") center center no-repeat;
	background-size: cover;
}

.page-ttl-en {
	color: var(--color-green);
	font-size: 4.8rem;
	font-weight: 700;
}
.page-ttl-ja {
	padding-left: 37px;
	font-size: 1.8rem;
	font-weight: 600;
	position: relative;
}
.page-ttl-ja::after {
	content: '';
	width: 27px;
	height: 1px;
	background: var(--color-black);
	position: absolute;
	top: calc(50% - 0.5px);
	left: 0;
}


@media (max-width: 768px) {
	.sec-page-ttl {
		width: 100%;
		padding: 12vw 0;
	}

	.page-ttl-en {
		font-size: 8.66vw;
	}
	.page-ttl-ja {
		padding-left: 8vw;
		font-size: 4.0vw;
	}
	.page-ttl-ja::after {
		content: '';
		width: 5.66vw;
	}
}



/*---------- ページリンク ----------*/
.page-link-wrap {
	width: 100%;
	margin: 50px auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.page-link-wrap.column-2 li {
	width: calc((100% - 10px) / 2);
}
.page-link-wrap.column-3 li {
	width: calc((100% - 20px) / 3);
}

.page-link {
	width: 100%;
	display: block;
	padding: 15px 10px;
	background: #fff;
	border: 1px solid var(--color-gray);
	text-align: center;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1;
    transition: 0.3s ease-in-out;
}
.page-link.is-current {
	background: var(--color-yellow-green);
	border: 1px solid var(--color-yellow-green);
	color: #fff;
}
@media (min-width: 769px) {
	.page-link:hover {
		background: var(--color-yellow-green);
		border: 1px solid var(--color-yellow-green);
		color: #fff;
	}
	
}

@media (max-width: 768px) {
	.page-link-wrap {
		width: 100%;
		margin: 8vw auto;
		flex-wrap: wrap;
	}
	.page-link-wrap.column-2 li {
		width: 100%;
	}
	.page-link-wrap.column-3 li {
		width: 100%;
	}
	.page-link-wrap li + li {
		margin-top: 2vw;
	}

	.page-link {
		width: 100%;
		display: block;
		padding: 3vw 2vw;
		font-size: 3.6vw;
	}
	
}



/*---------- コンテンツ ----------*/
.sec-general {
	width: 100%;
	margin-bottom: 100px;
	padding: 60px 0 100px;
	background: #fff;
}

/* h3 */
.heading-ttl-l {
	margin-bottom: 30px;
	padding: 12px 20px;
	font-size: 2.2rem;
	font-weight: 600;
	background: var(--color-light-gray);
	border-left: 4px solid var(--color-green);
}
/* h4 */
.heading-ttl-m {
	width: 100%;
	margin-bottom: 8px;
	padding-left: 14px;
	color: var(--color-green);
	font-size: 1.8rem;
	font-weight: 600;
	position: relative;
}
.heading-ttl-m::before {
	content: '';
	width: 4px;
	height: 20px;
	display: block;
	background: var(--color-green);
	position: absolute;
	top: 0.3em;
	left: 0;
}

.box-light-green {
	width: 100%;
	padding: 20px 50px;
	background: var(--color-light-green02);
}

.txt-sub-copy {
	margin-bottom: 25px;
	font-size: 1.8rem;
	font-weight: 600;
	text-align: center;
}
.txt-normal {
	margin-bottom: 60px;
	font-size: 1.6rem;
}
.txt-caption {
	margin-bottom: 60px;
	font-size: 1.2rem;
}

.txt-signature {
	width: 100%;
	padding: 30px 0;
	text-align: right;
	border-top: 1px solid var(--color-gray);
	border-bottom: 1px solid var(--color-gray);
}

@media (max-width: 768px) {
	.sec-general {
		width: 100%;
		margin-bottom: 16vw;
		padding: 12vw 0 16vw;
	}

	/* h3 */
	.heading-ttl-l {
		margin-bottom: 6vw;
		padding: 2.5vw 4vw;
		font-size: 4.8vw;
		background: var(--color-light-gray);
		border-left: 4px solid var(--color-green);
	}
	/* h4 */
	.heading-ttl-m {
		margin-bottom: 2vw;
		padding-left: 3vw;
		color: var(--color-green);
		font-size: 4.0vw;
	}

	.box-light-green {
		width: 100%;
		padding: 5vw;
		background: var(--color-light-green02);
	}

	.txt-sub-copy {
		margin-bottom: 5vw;
		font-size: 3.733vw;
		text-align: left;
	}
	.txt-normal {
		margin-bottom: 12vw;
		font-size: 3.6vw;
	}
	
	.txt-caption {
		margin-bottom: 12vw;
		font-size: 3.0vw;
	}

	.txt-signature {
		width: 100%;
		padding: 6vw 0;
	}

}



/*---------- テーブル ----------*/
.table-normal {
	width: 100%;
	border-collapse: collapse;
}
.table-normal th {
	width: 220px;
	padding: 20px 30px;
	border-bottom: 1px solid var(--color-green);
	color: var(--color-green);
	font-weight: 600;
	vertical-align: middle;
	text-align: left;
}
.table-normal td {
	width: calc(100% - 220px);
	padding: 20px 45px;
	vertical-align: middle;
	border-bottom: 1px solid var(--color-gray);
}

.table-normal tr:first-child th {
	border-top: 1px solid var(--color-green);
}
.table-normal tr:first-child td {
	border-top: 1px solid var(--color-gray);
}

@media (max-width: 768px) {
	.table-normal, 
	.table-normal tbody, 
	.table-normal tr, 
	.table-normal th, 
	.table-normal td {
		width: 100%;
		display: block;
		box-sizing: border-box;
	}
	.table-normal th {
		width: 100%;
		padding: 3vw 4vw;
		border-top: 1px solid var(--color-green);
		border-bottom: 1px solid var(--color-gray);
	}
	.table-normal td {
		width: 100%;
		padding: 4vw;
		border-bottom: none;
	}
	.table-normal tr:first-child td {
		border-top: none;
	}

	.table-normal tr:last-child td {
		border-bottom: 1px solid var(--color-gray);
	}

	
}


/*---------- フッター上リンク ----------*/
.sec-bottom-link {
	width: 100%;
	padding: 100px 0 70px;
}

.bottom-link-wrap {
	width: 100%;
	justify-content: flex-start;
}
.bottom-link {
	width: calc((100% - 30px) / 2);
	margin: 0 30px 30px 0;
	padding: 10px;
	justify-content: space-between;
	align-items: flex-end;
	position: relative;
}
/* 背景 */
.bottom-link.link-company { /* 会社概要 */
	background: url("../../img/company/bg_bottom_link_company.jpg") center center no-repeat;
	background-size: cover;
}
.bottom-link.link-message { /* 社長メッセージ */
	background: url("../../img/company/bg_bottom_link_message.jpg") center center no-repeat;
	background-size: cover;
}
.bottom-link.link-philosophy { /* 経営理念 */
	background: url("../../img/company/bg_bottom_link_philosophy.jpg") center center no-repeat;
	background-size: cover;
}
.bottom-link.link-license { /* 資格保有状況 */
	background: url("../../img/company/bg_bottom_link_license.jpg") center center no-repeat;
	background-size: cover;
}
.bottom-link.link-benefits { /* 福利厚生 */
	background: url("../../img/recruit/bg_bottom_link_benefits.jpg") center center no-repeat;
	background-size: 100%;
}
.bottom-link.link-training { /* 研修 */
	background: url("../../img/recruit/bg_bottom_link_training.jpg") center center no-repeat;
	background-size: cover;
}
.bottom-link.link-quality { /* 品質方針 */
	background: url("../../img/service/bg_bottom_link_quality.jpg") center center no-repeat;
	background-size: cover;
}
.bottom-link.link-property { /* 主な管理物件 */
	background: url("../../img/service/bg_bottom_link_property.jpg") center center no-repeat;
	background-size: cover;
}
.bottom-link.link-recruit { /* 採用情報 */
	width: 100%;
	background: url("../../img/service/bg_bottom_link_recruit.jpg") center center no-repeat;
	background-size: cover;
}

.bottom-link:nth-child(2n) {
	margin-right: 0;
}
.bottom-link.is-wide {
	width: 100%;
	margin-right: 0;
}
.bottom-link-txt-wrap {
	width: 190px;
	padding: 75px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	background: rgba(255, 255, 255, 0.8);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}
.bottom-link-ttl-en {
	color: var(--color-green);
	font-size: 3.0rem;
    font-weight: 600;
}
.bottom-link-ttl {
    font-weight: 600;
}

.bottom-link .btn-green {
	margin: 0 20px 20px 0;
}


@media (max-width: 1200px) {
	.bottom-link-txt-wrap {
		padding: 6vw 0;
	}

}

@media (max-width: 1020px) {
	.bottom-link .btn-green {
		width: 160px;
		margin: 0 0 20px 0;
	}

}
@media (max-width: 980px) {
	.bottom-link-txt-wrap {
		width: 100%;
		margin-bottom: 8vw;
		padding: 35px 0;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}
	.bottom-link.link-message { /* 社長メッセージ */
		background: url("../../img/company/bg_bottom_link_message_sp.jpg") center center no-repeat;
		background-size: cover;
	}
	.bottom-link.link-benefits { /* 福利厚生 */
		background: url("../../img/recruit/bg_bottom_link_benefits_sp.jpg") top center no-repeat;
		background-size: cover;
	}
	.bottom-link .btn-green {
		width: 160px;
		margin: 0 10px 20px auto;
	}

}

@media (max-width: 768px) {
	.sec-bottom-link {
		width: 100%;
		padding: 18vw 0 12vw;
	}

	.bottom-link-wrap {
		width: 100%;
		justify-content: flex-start;
	}
	.bottom-link {
		width: 100%;
		margin: 0 0 6vw 0;
		padding: 2vw 0;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		position: relative;
	}

	.bottom-link-txt-wrap {
		width: 100%;
		margin-bottom: 30vw;
		padding: 4vw;
	}
	.bottom-link-ttl-en {
		font-size: 7.66vw;
		line-height: 1.4;
	}

	.bottom-link .btn-green {
		width: 80%;
		margin: 0 4vw 0 auto;
	}
}
