@charset "utf-8";

/* =============================================
   下層ページ共通
============================================= */

/* 代表挨拶 署名 */
.greeting__sign {
	margin-top: 30px;
	font-size: 1.1rem;
	font-weight: 600;
	color: #235429;
	text-align: right;
}

/* SP/タブレット時のfixed header分オフセット */
@media (max-width: 1023px) {
	.content-area {
		padding-top: 70px;
	}
}
@media (max-width: 600px) {
	.content-area {
		padding-top:0;
	}
}

/* =============================================
   ページヒーロー
============================================= */
.page-hero {
	position: relative;
	width: 100%;
	height: 320px;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	padding: 0;
}

.page-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.page-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 60%;
	display: block;
}

.page-hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		rgba(20,60,25,.72) 0%,
		rgba(20,60,25,.42) 60%,
		rgba(0,0,0,.25) 100%
	);
}

/* 左のグリーン装飾 */
.page-hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 14%;
	height: 55%;
	background: rgba(55,100,50,.55);
	clip-path: polygon(0 0, 100% 0, 0 100%);
	z-index: 5;
}

.page-hero__inner {
	position: relative;
	z-index: 10;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 60px 50px;
}

.page-hero__en {
	display: block;
	font-size: clamp(3.5rem, 7vw, 6.5rem);
	font-weight: 800;
	color: rgba(255,255,255,.18);
	line-height: 1;
	letter-spacing: .04em;
}

.page-hero__title {
	margin-top: -20px;
	font-size: clamp(1.8rem, 3vw, 2.8rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
}

.page-hero__title span {
	display: inline-block;
	width: 3px;
	height: 1em;
	background: #8bc53f;
	margin-right: 14px;
	vertical-align: middle;
	position: relative;
	top: -2px;
}

/* パンくず */
.breadcrumb {
	background: #f0f4ea;
	padding: 14px 0;
	border-bottom: 1px solid rgba(35,84,41,.1);
}

.breadcrumb__inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 60px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: .85rem;
	color: #555;
}

.breadcrumb__inner a {
	color: #235429;
	text-decoration: none;
	transition: opacity .3s;
}

.breadcrumb__inner a:hover {
	opacity: .7;
}

.breadcrumb__sep {
	color: #aaa;
}

/* =============================================
   セクション共通見出し（下層用）
============================================= */
.sec-head {
	text-align: center;
	margin-bottom: 70px;
}

.sec-head__en {
	display: block;
	font-size: clamp(4rem, 7vw, 7rem);
	font-weight: 800;
	color: rgba(35,84,41,.15);
	line-height: 1;
	letter-spacing: .03em;
}

.sec-head__title {
	margin-top: -28px;
	font-size: clamp(1.6rem, 2.5vw, 2.4rem);
	color: #235429;
	font-weight: 700;
}

.sec-head__lead {
	margin-top: 20px;
	font-size: 1rem;
	color: #555;
	line-height: 1.8;
}

/* =============================================
   事業内容ページ
============================================= */
.service-detail {
	padding: clamp(60px,8vw,100px) 0;
}

.service-detail__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

.service-items {
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.service-item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.service-item.reverse {
	direction: rtl;
}

.service-item.reverse > * {
	direction: ltr;
}

.service-item__image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	border-radius: 4px;
}

.service-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .8s ease;
}

.service-item__image:hover img {
	transform: scale(1.05);
}

.service-item__image::before {
	content: "";
	position: absolute;
	top: -8px;
	left: -8px;
	width: 60%;
	height: 60%;
	border-top: 3px solid #8bc53f;
	border-left: 3px solid #8bc53f;
	z-index: 2;
	pointer-events: none;
}

.service-item.reverse .service-item__image::before {
	left: auto;
	right: -8px;
	border-left: none;
	border-right: 3px solid #8bc53f;
}

.service-item__body {
	padding: 10px 0;
}

.service-item__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	background: #235429;
	border-radius: 50%;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.service-item__title {
	font-size: clamp(1.5rem, 2vw, 2rem);
	font-weight: 700;
	color: #235429;
	margin-bottom: 20px;
	line-height: 1.3;
}

.service-item__text {
	font-size: 1rem;
	line-height: 2;
	color: #444;
	margin-bottom: 20px;
}

.service-item__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.service-item__list li {
	position: relative;
	padding-left: 20px;
	font-size: .95rem;
	line-height: 1.9;
	color: #555;
}

.service-item__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .75em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 2px solid #8bc53f;
}

/* =============================================
   施工事例ページ
============================================= */

.works-full {
	padding: clamp(60px,8vw,100px) 0;
	position: relative;
	overflow: hidden;
	background: #f8f8f6;
}

.works-full::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 70%;
	height: 50%;
	background: linear-gradient(#11ae94, #009500);
	clip-path: polygon(0 0, 0 0, 100% 100%, 0 100%);
	opacity: .1;
	z-index: 0;
}

.works-full__inner {
	position: relative;
	z-index: 2;
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 40px;
}

.works-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(16px, 2vw, 2.5rem);
}

/* =============================================
   会社概要ページ
============================================= */
.company-overview {
	padding: clamp(60px,8vw,100px) 0;
	background: #f8f8f6;
}

.company-overview__inner {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 40px;
}

.company-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 1rem;
}

.company-table th,
.company-table td {
	padding: 22px 24px;
	text-align: left;
	border-bottom: 1px solid rgba(35,84,41,.12);
	line-height: 1.8;
	vertical-align: top;
}

.company-table th {
	width: 220px;
	color: #235429;
	font-weight: 600;
	background: rgba(35,84,41,.04);
	white-space: nowrap;
}

.company-table tr:first-child th,
.company-table tr:first-child td {
	border-top: 1px solid rgba(35,84,41,.12);
}

.map{
	width: 100%;
	height: 45vh;
	margin: 20px 0;
}

/* =============================================
   採用情報ページ
============================================= */
.recruit-detail {
	padding: clamp(60px,8vw,100px) 0;
	position: relative;
	overflow: hidden;
}

.recruit-detail::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 200px;
	height: 400px;
	background: rgb(30,131,35,.4);
	clip-path: polygon(100% 0, 100% 100%, 0 0);
	z-index: 0;
}

.recruit-detail__inner {
	position: relative;
	z-index: 2;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 40px;
}

.recruit-grid {
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}
.recruit-info__title {
	font-size: clamp(1.4rem, 2vw, 1.8rem);
	font-weight: 700;
	color: #235429;
	margin-bottom: 30px;
	padding-bottom: 16px;
	border-bottom: 2px solid #8bc53f;
}
.recruit-info{
	width: 48%;
	min-width: 410px;
}
.recruit-photo{
	width: 43%;
}
.recruit-info__table {
	width: 100%;
	border-collapse: collapse;
}

.recruit-info__table th,
.recruit-info__table td {
	padding: 16px 18px;
	text-align: left;
	border-bottom: 1px solid rgba(35,84,41,.12);
	font-size: .95rem;
	line-height: 1.8;
	vertical-align: top;
}

.recruit-info__table th {
	width: 130px;
	color: #235429;
	font-weight: 600;
	background: rgba(35,84,41,.04);
	white-space: nowrap;
}

.recruit-photo {
	position: relative;
}

.recruit-photo img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	border-radius: 4px;
	display: block;
}

.recruit-photo::after {
	content: "";
	position: absolute;
	bottom: -12px;
	right: -12px;
	width: 70%;
	height: 70%;
	border: 2px solid #8bc53f;
	border-radius: 4px;
	z-index: -1;
}

.recruit-message {
	background: linear-gradient(135deg, #235429 0%, #3a7a42 100%);
	color: #fff;
	padding: 60px;
	border-radius: 4px;
	position: relative;
	overflow: hidden;
}

.recruit-message::before {
	content: "Recruit";
	position: absolute;
	right: -20px;
	bottom: -20px;
	font-size: 8rem;
	font-weight: 800;
	color: rgba(255,255,255,.07);
	line-height: 1;
}

.recruit-message__title {
	font-size: clamp(1.3rem, 2vw, 1.8rem);
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.5;
}

.recruit-message__text {
	font-size: 1rem;
	line-height: 2;
	opacity: .9;
}

.recruit-features-wrap {
	display: flex;
	gap: 20px;
	margin: 30px 0;
	flex-wrap: wrap;
}

.recruit-feature-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,.15);
	padding: 10px 20px;
	border-radius: 30px;
	font-size: .95rem;
	font-weight: 600;
}

.recruit-feature-badge i {
	width: 28px;
	height: 28px;
}

.recruit-feature-badge img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

/* =============================================
   お問い合わせページ
============================================= */
.contact-section {
	padding: clamp(60px,8vw,100px) 0;
	background: #f8f8f6;
}

.contact-section__inner {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 40px;
}

.contact-form {
	background: #fff;
	padding: 60px;
	border: 1px solid rgba(35,84,41,.12);
}

.form-group {
	margin-bottom: 30px;
}

.form-label {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	color: #235429;
	margin-bottom: 10px;
	font-size: 1rem;
}

.form-required {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: .75rem;
	padding: 2px 8px;
	background: #c0392b;
	color: #fff;
	border-radius: 3px;
	font-weight: 600;
	flex-shrink: 0;
}

.form-any {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: .75rem;
	padding: 2px 8px;
	background: #888;
	color: #fff;
	border-radius: 3px;
	font-weight: 600;
	flex-shrink: 0;
}

.form-input,
.form-select,
.form-textarea {
	width: 100%;
	padding: 14px 18px;
	border: 1px solid #ccc;
	border-radius: 3px;
	font-size: 1rem;
	font-family: inherit;
	color: #333;
	background: #fafafa;
	transition: border-color .3s, background .3s;
	box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	outline: none;
	border-color: #235429;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(35,84,41,.08);
}

.form-textarea {
	resize: vertical;
	min-height: 160px;
	line-height: 1.8;
}

.form-select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23235429' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 18px center;
	padding-right: 44px;
}

/* ハニーポット非表示 */
.form-honeypot {
	display: none !important;
	visibility: hidden;
	height: 0;
	overflow: hidden;
}

.form-note {
	font-size: .85rem;
	color: #777;
	margin-top: 6px;
}

.form-submit-wrap {
	text-align: center;
	margin-top: 50px;
}

.form-submit {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	min-width: 300px;
	height: 72px;
	background: #235429;
	border: none;
	color: #fff;
	font-size: 1rem;
	font-family: inherit;
	font-weight: 600;
	letter-spacing: .12em;
	cursor: pointer;
	transition: .4s ease;
	overflow: hidden;
}

.form-submit::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: #3a7a42;
	transition: width .4s ease;
	z-index: 0;
}

.form-submit:hover::before {
	width: 100%;
}

.form-submit span {
	position: relative;
	z-index: 1;
}

.form-submit i {
	position: relative;
	z-index: 1;
}

/* プライバシーポリシー アコーディオン */
.privacy-accordion {
	margin-top: 60px;
	border: 1px solid rgba(35,84,41,.2);
}

.privacy-accordion__trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	background: rgba(35,84,41,.05);
	border: none;
	cursor: pointer;
	font-size: 1rem;
	font-family: inherit;
	font-weight: 600;
	color: #235429;
	text-align: left;
	transition: background .3s;
}

.privacy-accordion__trigger:hover {
	background: rgba(35,84,41,.1);
}

.privacy-accordion__icon {
	width: 28px;
	height: 28px;
	border: 1px solid #235429;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform .4s;
}

.privacy-accordion__icon::after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-right: 2px solid #235429;
	border-bottom: 2px solid #235429;
	transform: rotate(45deg) translateY(-2px);
	transition: transform .4s;
}

.privacy-accordion.is-open .privacy-accordion__icon {
	transform: rotate(180deg);
}

.privacy-accordion__body {
	display: none;
	padding: 30px 24px;
	font-size: .9rem;
	line-height: 2;
	color: #444;
	border-top: 1px solid rgba(35,84,41,.1);
}

.privacy-accordion__body h3 {
	font-size: 1rem;
	color: #235429;
	margin: 20px 0 8px;
}

.privacy-accordion__body h3:first-child {
	margin-top: 0;
}

/* =============================================
   サンクスページ
============================================= */
.thanks-section {
	padding: clamp(80px,10vw,140px) 0;
	text-align: center;
	min-height: calc(100vh - 320px);
	display: flex;
	align-items: center;
	background: #f8f8f6;
}

.thanks-section__inner {
	max-width: 700px;
	margin: 0 auto;
	padding: 0 30px;
}

.thanks-section__icon {
	width: 80px;
	height: 80px;
	background: #235429;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 40px;
	font-size: 2rem;
	color: #fff;
}

.thanks-section__title {
	font-size: clamp(1.5rem, 2.5vw, 2.2rem);
	color: #235429;
	font-weight: 700;
	margin-bottom: 30px;
}

.thanks-section__text {
	font-size: 1rem;
	line-height: 2;
	color: #444;
	margin-bottom: 50px;
}

/* =============================================
   Responsive
============================================= */
@media (max-width: 1149px) {
	.recruit-info{
		width: 100%;
		min-width:auto;
	}
	.recruit-photo{
		width: 60%;
		margin: 0 auto;
	}
}
@media (max-width: 1023px) {
	.page-hero {
		height: 260px;
	}

	.page-hero__inner {
		padding: 0 30px 40px;
	}

	.breadcrumb__inner {
		padding: 0 30px;
	}

	.service-detail__inner,
	.works-full__inner,
	.company-overview__inner,
	.recruit-detail__inner,
	.contact-section__inner {
		padding: 0 30px;
	}

	.service-item {
		gap: 40px;
	}
}

@media (max-width: 767px) {

	.page-hero {
		height: 220px;
	}

	.service-item {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.service-item.reverse {
		direction: ltr;
	}

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

	.recruit-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.recruit-message {
		padding: 40px 30px;
	}

	.recruit-message::before {
		font-size: 5rem;
	}

	.contact-form {
		padding: 40px 30px;
	}

	.company-table th {
		width: 160px;
	}
}

@media (max-width: 600px) {
	.page-hero {
		height: 190px;
	}

	.page-hero__inner {
		padding: 0 20px 30px;
	}

	.breadcrumb__inner {
		padding: 0 20px;
	}

	.service-detail__inner,
	.works-full__inner,
	.company-overview__inner,
	.recruit-detail__inner,
	.contact-section__inner {
		padding: 0 20px;
	}

	.works-grid {
		grid-template-columns: 1fr;
	}

	.company-table th,
	.company-table td {
		padding: 14px 16px;
	}

	.company-table th {
		display: block;
		width: 100%;
		border-bottom: none;
	}

	.company-table td {
		display: block;
		width: 100%;
	}

	.recruit-info__table th {
		display: block;
		width: 100%;
		border-bottom: none;
	}

	.recruit-info__table td {
		display: block;
		width: 100%;
	}

	.contact-form {
		padding: 30px 20px;
	}

	.form-submit {
		min-width: 260px;
		height: 60px;
	}

	.sec-head__en {
		font-size: clamp(2.8rem, 12vw, 4rem);
	}
}

@media (max-width: 450px) {
	.recruit-photo{
		width: 90%;
	}	
}