@charset "UTF-8";


/*=======================================================*/
/*					セクション毎のCSS					  */
/*======================================================*/

/*============ 共通 =========== */
/*タイトル(共通)*/
.spot-heading01{
	text-align: center;
	position: relative;
	top:-60px;
	display: block;
	z-index: 3;
	margin-bottom: -60px;
}

.spot-heading01 .heading-line {
	width: 1px;
	height: 120px;
	background-color: var(--main-color);
	margin: 0 auto;
}

.spot-heading01 p {
	position: relative;
	
	font-size: clamp(35px,2.4vw,70px);
	color: var(--main-color);
	font-weight: bold;
	margin: 0;
}

.spot-heading01 h2 {
	position: relative;
	top:-15px;
	font-size: clamp(18px,2.4vw,20px);
	color: #000;
	font-weight: normal;
}

/* 小ページTOP用 */
.spot-heading02{
	text-align: center;
	position: relative;
	top:-130px;
	display: block;
	z-index: 3;
	margin-bottom: -130px;
}
@media only screen and (max-width: 567px) {
	.spot-heading02{
		top:-6em;
		margin-bottom: -6em;
	}

}

.spot-heading02 .heading-line2 {
	width: 1px;
	height: 110px;
	background-color: var(--main-color);
	margin: 0 auto;
}

.spot-heading02 p {
	position: relative;
	
	font-size: clamp(35px,2.4vw,70px);
	color: var(--main-color);
	font-weight: bold;
	margin: 0;
}

.spot-heading02 h2 {
	position: relative;
	top:-15px;
	font-size: clamp(18px,2.4vw,20px);
	color: #000;
	font-weight: normal;
}

/* 縦棒無しVer */
.spot-heading03 p {
	position: relative;
	text-align: center;
	font-size: clamp(35px,2.4vw,70px);
	color: var(--main-color);
	font-weight: bold;
	margin: 0;
}

.spot-heading03 h2 {
	position: relative;
	top:-15px;
	font-size: clamp(18px,2.4vw,20px);
	color: #000;
	font-weight: normal;
	text-align: center;
}

.entry_bk{
	padding: 0;
	background-image: url(../img/bg_02.png);
	background-repeat: repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	z-index: 1;
}
.nav_bk{
	background-color: var(--main-color);
}

/*パンくず*/
.sec_pankuzu{
	padding: 0px;
	background-color: var(--base-color);
	position: relative;
	z-index: 1;
}

/* タグ */
.kakomi01 span {
	padding: 3px 7px 2px 7px;
	margin: 0px 0px 5px;
	background-color: var(--main-color);
	border: 1px solid #eee;
	color:#FFF;
	border-radius: 5px;
	text-align: center;
	display: inline-block;
	font-size: clamp(12px, 1.3vw, 12px);
}
.kakomi02{
	padding: 3px 20px 2px 20px;
	margin: 4px 1px 10px;
	background-color: #e7838a;
	border: 1px solid #aeaeae;
	border-radius: 10px;
	text-align: center;
	display: inline-block;
	font-size: clamp(14px, 1.3vw, 14px);
}

/* タグ（左右が揃う）  */
.kakomi-tag01 {
	display: flex;
	flex-wrap: wrap; /* 子要素を折り返す */
	gap: 10px;
	width: 100%;
	justify-content: space-between; /* 左右のボックスを揃える */
}
.kakomi-tag01 p {
	background-color: var(--main-color);
	padding: 5px;
	font-size: clamp(14px, 1.3vw, 14px);
	font-family: Arial, sans-serif;
	flex-grow: 1; /* ボックスのサイズを自動調整 */
	min-width: 150px; /* ボックスの最小幅を設定 */
	box-sizing: border-box;
	text-align: center; /* 水平方向の中央揃え */
}
.kakomi-tag01 .end{		/* などを末尾につけたい場合に */
	background-color:transparent;
	padding: 5px;
	font-size: clamp(14px, 1.3vw, 14px);
	font-family: Arial, sans-serif;
	width: 20px;
	min-width: 40px; /* ボックスの最小幅を設定 */
	box-sizing: border-box;
	text-align: right; /* 水平方向の中央揃え */
}

/*画像装飾*/
.imgdeco{
	box-shadow:10px 10px 0 var(--accent-color1);
	/*margin-bottom: 20px;*/
	max-width: 200px;
}

/*======= TOPページ ======*/
/*ご挨拶*/
.greeting {
	padding: 0 0 var(--v-space);
	background-color: var(--base-color);

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
.greeting-haba{
	margin: 0 auto;
	max-width: 900px;
	padding: 2% 0 0 0;
}

/*TELバナー*/
.tel_bnr{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 10px;
}
@media only screen and (max-width: 568px) {
	.tel_bnr{
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 10px;
	}
}

/*各ページ遷移バナー*/
.topbnr_sec{
	padding: 50px 0 50px 0;
	position: relative;
	z-index: 1;
	background-color: #f1faf5;
	background-size: 6px 6px;
	background-image: repeating-linear-gradient(0deg, #cde7d7, #cde7d7 1px, #f1faf5 1px, #f1faf5);
}

.topbnr_sec-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
}

@media only screen and (max-width: 568px) {
	.topbnr_sec-container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: 2fr;
		grid-column-gap: 10px;
		grid-row-gap: 10px;
	}
}

/* 画像とテキスト */
.greeting_sec1_haba{
	max-width: 1200px;
	margin: 0 auto;
}

.greeting-imgtext {
	padding:0;
	margin-top: 50px;
	margin-bottom: 100px;
}

.greeting-imgtext + .greeting-imgtext {
	padding-top: 0;
}

.greeting-heading{
	display: flex;
	justify-content: left;
	align-items: center;
	font-size: clamp(22px, 2vw, 25px);
	color: var(--main-color);
	text-align: left;
	line-height: 1.3;
	font-weight: 600;
	margin: 10px auto;
	font-family: 'Noto Serif JP', serif;
}
.greeting-heading::before {
	content: '';
	width: 30px;
	height: 2px;
	/* background-color: #ccc79a; */
	background-color: var(--main-color);
	margin-right: 10px;
}
.greeting-imgtext-container {
	display: flex;
	flex-direction: column;
	/*gap: clamp(45px, 6vw, 80px);*/	/* テンプレ初期値 */
	gap: clamp(25px, 6vw, 35px);
}

.greeting-imgtext-container img{	
	margin: 0px auto;
}

.greeting-img,.greeting-text{
	position: relative;
	z-index: 1;
}

.bg-greeting{
	position: relative;
}
.bg-greeting::before {
	position: absolute;
	display: block;
	content: '';
	background: #9fc5c32c;
	margin: auto;
	right: 0;
	z-index: 1;
	width: 80%;
	height: 83%;
	bottom: -35px;
}
@media (max-width: 768px) {
	.bg-greeting::before {
		width: 85%;
		height: 80%;
		right: -20px;
	}
}

@media print, screen and (min-width: 1000px) {
	.greeting-imgtext-container {
		flex-direction: row;
		align-items:center;
	}

	.greeting-imgtext-container.reverse {
		flex-direction: row-reverse;
	}

	.greeting-imgtext-container > .greeting-text {
		flex: 1;
		min-width: 17em;
  	}

	.greeting-imgtext-container > .greeting-img {
		/*flex: 2;*/	/* テンプレ初期値 */
		flex: 0.5;
	}
}


.greeting_sec1-mt{
	margin-top: 120px;
}
@media only screen and (max-width: 999px) {
	.greeting_sec1-mt{
		margin-top: 0px;
	}
}

/*TOP BLOG*/
.top_sec1{
	padding: var(--v-space3) 0 var(--v-space2);
	background-color: #FFF;
	background-image: url(../img/bg_02.png);
	background-repeat:repeat;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/*TOP MESSAGE*/
.top_sec2{
	padding: var(--v-space3) 0 var(--v-space2);
	background-color: #d2e9e8;
	background-image: url(../img/bg_01.png);
	background-size: cover;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
@media only screen and (max-width: 567px) {
	.top_sec2{
		background-image: url(../img/bg_01_sp.png);
	}
}

.top_sec2_box{
	border: solid 1px var(--main-color);
	max-width: 650px;
	margin: 0 auto;	
	margin-top: 5px;
	background-color: #FFF;
	padding: 20px;
}
.top_sec2 h3{
	width: 100%;
	border-bottom: 1px solid var(--txt-color);
	margin-bottom: 10px;
	padding-left: 10px;
}

.top_sec2 ol{
	font-size: 16px;
	line-height: 1.8;
	padding-left: 1.2em;
	margin-left: 0;
}
.top_sec2 ol li{
	margin-bottom: 0;
}

/* カード */
.top_sec2-card__item{
	display: grid;
	grid-template-columns: 100px 100px 1fr;
	gap:20px;
	margin-bottom: 30px;
}
@media only screen and (max-width: 567px) {
	.top_sec2-card__item {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto;
		grid-template-areas:
			"box1 box2"
			"box3 box3";
		gap: 20px;
	}
	.top_sec2-card__item > div:nth-child(1) {
		grid-area: box1;
	}
	.top_sec2-card__item > div:nth-child(2) {
		grid-area: box2;
	}
	.top_sec2-card__item > div:nth-child(3) {
		grid-area: box3;
	}
}
.top_sec2-card__item div {
	display: flex;
	justify-content: center;
	align-items: center;
}
.top_sec2-card__item img{
	display: block;
	height: 100px;
	width: auto;
	object-position: center center;
	object-fit: contain;	
}

/* TABLE */
.top_sec2-table {
	border-collapse: collapse;
	width: 100%;
	font-size: 16px;
}
.top_sec2-table th{
	width: 90px;
}
.top_sec2-table th,
.top_sec2-table td {
	text-align: left;
	padding: 4px 8px 4px 0px;
	vertical-align: top;
	border: none;
}

/* 会社理念 */
.top_sec3-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0px;
	background-image: url(../img/bg_04.jpg);
	background-position: center right;
}

@media only screen and (max-width: 768px) {
	.top_sec3-container {
		grid-template-columns: repeat(1, 1fr);
		background-image: url(../img/bg_04_sp.jpg);
		background-position: bottom center;
		background-size: 100%;
	}
}
.top_sec3 {
	padding: var(--v-space2) 0;
	background-color: #074ca0e7;
	font-size: clamp(18px,3vw,22px);
	color:#FFF;
	font-family: 'Noto Serif JP', serif;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
.top_sec4{
	padding: var(--v-space2) 0;
	display: flex;
	align-items: center;
	justify-content: center;

	background-color: #ffffffc5;
	color:var(--main-color);
	font-family: 'Noto Serif JP', serif;
	text-align: right;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
.top_sec4 h2{
	font-size: clamp(30px,4vw,35px);
	margin-bottom: 1.5em;
}
.top_sec4 p{
	font-size: clamp(20px,4vw,25px);
	font-weight: bold;
	
}

/*======= 業務内容・施工実績 ======*/
.se_sec1{
	padding: var(--v-space3) 0 var(--v-space2);
	background-image: url(../img/bg_02.png);
	background-repeat:repeat;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

@media only screen and (max-width: 567px) {
	.se_sec1{
		padding: 20px 0 var(--v-space);
	}
}


.se_sec2{
	padding: var(--v-space3) 0 var(--v-space2);
	background-color: #FFF;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.se_sec2 .se_sec2__step {
	display: flex;
	align-items: center;
	/* justify-content: center; */
	gap: 1%;
	flex-wrap: nowrap;
	margin-left: 20px;
	margin-right: 20px;
}
.se_sec2 .step-item img {
	display: block;
	width: 100%;
	max-width: 300px;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.se_sec2 .step-item p{
	text-align: center;
}
.se_sec2 .se_sec2_arrow {
	position: relative;
	top:-10px;
	width: 0;
	height: 0;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 20px solid #ff8e1d;
}
@media screen and (max-width: 568px) {
	.se_sec2 .se_sec2__step {
		flex-direction: column;
		gap: 5px;
	}
	.se_sec2 .se_sec2_arrow {
		transform: rotate(90deg);
		top:0;
	}
}

.se_sec3{
	padding: var(--v-space3) 0 var(--v-space2);
	background-color: #FFF;
	background-image: url(../img/bg_03.jpg);

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.se_sec3_haba{
	max-width: 720px;
	margin: 0 auto;
}

.se_sec3-list {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	max-width: 720px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	counter-reset: list;
}

.se_sec3-list li {
	font-size: 17px;
	line-height: 1.8;
	padding: 5px 20px 5px 50px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
	position: relative;
	transition: background 0.3s;
	display: flex;
	align-items: flex-start;
}

.se_sec3-list li:before {
	content: "";
	position: absolute;
	top: 0.5em;
	left: 0.8em;
	width: 25px;
	height: 25px;
	background-color: var(--main-color);
	border-radius: 15px;
}

.se_sec3-list li:after {
	content: "";
	position: absolute;
	width: 7px;
	height: 14px;
	top: 0.6em;
	left: 1.2em;
	-webkit-transform: rotate(50deg);
	-ms-transform: rotate(50deg);
	transform: rotate(50deg);
	border-right: 3px solid #FFF;
	border-bottom: 3px solid #FFF;
}

.se_sec3-list li:hover {
	background-color: #e0e9f3;
}


/*======= FAQ ======*/
.faq_sec1 {
	padding: 30px 0 100px 0;
	background-color: #FFF;
	
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
div.faq2 p.b {
	font-weight: bold;
	color: #444;
}
div.faq2 p.b::first-letter {
	color: var(--main-color);
	font-size: 120%;
	padding-right: 2px;
}
div.faq2 p {
	margin-top: 5px;
	line-height: 1.4;
	text-align: left;
	text-indent: -1.45em;
	padding-left: 1.45em;
	display: block;
}
div.faq2 p::first-letter {
	color: var(--accent-color1);
	font-size: 120%;
	padding-right: 2px;
	font-weight: bold;
}
hr.faqHr{
	height: 0px;
	border: 1px dashed var(--accent-color2);
	margin: 20px auto;
}



/*======= 会社案内ページ ======*/
/*会社案内*/
.info_sec1{
	padding: 30px 0 100px 0;
	background-color: #FFF;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/* 概要部分のテーブル */

.info_sec1__haba{
	max-width: 800px;
	margin: 0 auto;
}
.info_sec1_container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	font-family: 'Arial', sans-serif;
}

.info_sec1_container .item {
	border: 1px solid #ddd;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	border-radius: 6px;
	background-color: #fff;
	padding: 12px 16px;
	display: grid;
	grid-template-columns: 160px 1fr;
	align-items: stretch;
	gap: 20px;
}

.info_sec1_container .label {
	display: flex;
	align-items: center;
	font-weight: bold;
	color: var(--main-color);
	white-space: nowrap;
	background-color: #e0e9f3;
	padding: 5px 7px;
}

.info_sec1_container .content {
	display: flex;
	align-items: center;
	color: #333;
	padding: 5px 7px;
}


/* レスポンシブ：568px以下で縦並び＋枠内レイアウトも縦に */
@media only screen and (max-width: 568px) {
	.info_sec1_container .item {
		grid-template-columns: 1fr;
		gap:0px;
		padding: 10px 14px;
	}

	.info_sec1_container .label {
		line-height: 1.6;
		font-size: 14px;
	}

	.info_sec1_container .content {
		font-size: 14px;
	}
}




.access_sec1{
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_02.png);

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
/* アクセス部分のテーブル */
.access1 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 5.25em;
}
.access2 {
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 400px;
}
@media screen and (max-width: 568px) {
	.access1 {
		display: block;
		padding: 8px 2px 2px 2px;
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,0);
	}
	.access2 {
		display: block;
		padding: 2px;
		width: 99%;
	}
}

/*======= 求人情報 ======*/

.recruit_sec1{
	padding: 0px 0 var(--v-space);
	background-color: #FFF;
	position: relative;
	z-index: 1;
}

.recruit_container {
	margin: 0 auto;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 15px;
}

.recruit_container .row {
	display: flex;
	padding: 10px 0;
	flex-wrap: wrap;
}

.recruit_container .label {
	width: 30%;
	font-weight: bold;
	background-color: var(--main-color);
	border-bottom: 2px solid var(--main-color);
	padding: 10px;
	box-sizing: border-box;
	color:#FFF;
	font-weight: 400;
	font-size: 18px;
}

.recruit_container .content {
	width: 70%;
	padding: 10px;
	box-sizing: border-box;
	border-bottom: 2px solid var(--main-color);
	background-color: #edf1f7;
	font-size: 16px;
}

@media screen and (max-width: 767px) {
	.recruit_container .label,
	.recruit_container .content {
		width: 100%;
		border-bottom: none;
	}

	.recruit_container .label {
		border-bottom: none;
		padding: 5px 10px;
		background-color: var(--main-color);
		font-size: 16px;
	}
	.recruit_container .content {
		font-size: 14px;
	}
	.recruit_container .row {
		display: flex;
		padding: 0px;
		flex-wrap: wrap;
	}
}

/* リスト */
.recruit_list {
	margin: 10px;
	padding-left: 1.2em;
	list-style-type: disc;
	color: #222;
	font-size: 15px;
	line-height: 1.6;
}

.recruit_list li {
	margin-bottom: 5px;
}

/* 年間スケジュール　コンテナー */
.recruit_schedule-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 10px;
	grid-row-gap: 0px;
}
@media only screen and (max-width: 1292px) {
	.recruit_schedule-container {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: 1fr;
		grid-column-gap: 10px;
		grid-row-gap: 0px;
	}
}

/* 写真　コンテナー */
.recruit_photo-haba{
	max-width: 900px;
	margin: 0 auto;
}
.recruit_photo-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
}
@media only screen and (max-width: 567px) {
	.recruit_photo-container {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: 1fr;
		grid-column-gap: 10px;
		grid-row-gap: 10px;
	}
}

