@charset "UTF-8";


/*=======================================================*/
/*					セクション毎のCSS					  */
/*======================================================*/

/*============ 共通 =========== */

/* 親要素からはみ出して画面いっぱいに */
.full {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}

/*タイトル(共通)*/
.spot-heading01{
	font-size: clamp(35px,6vw,60px);
	font-style: italic;
	text-align: center;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝",'Noto Serif JP', serif;
	/* color:#222222; */
}
.spot-heading02{
	font-size: clamp(20px, 3vw, 30px);
	line-height: 1.4;
	font-weight: 700;
	text-align: center;
	font-family: 'YakuHanJPs','Noto Sans Japanese',sans-serif,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "MS Pゴシック", "MS PGothic", Arial,Helvetica, Verdana;
	/* color:#222222; */
}
.spot-heading02+p{
	margin-top: 0.5em;
	margin-bottom: 1em;
	font-size: 16px;
	inline-size: fit-content;
	margin-inline: auto;
	font-family: 'YakuHanJPs','Noto Sans Japanese',sans-serif,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "MS Pゴシック", "MS PGothic", Arial,Helvetica, Verdana;
}
@media only screen and (max-width: 767px) {
	.spot-heading02+p{
		text-align: left;
	}
	/*<br>のブレイクポイント*/
	.br768{
		display:none;
	}
}
.line{
	width: 1px;
	height: auto;
	padding-top: 5.8%;
	background-color: #222222;
	margin: 1.1% auto;	/*今回のみ*/
}
@media only screen and (max-width: 767px) {
	.line {
		padding-top: 10%;
	}
}
.line2{
	width: 1px;
	height: auto;
	padding-top: 5.8%;
	background-color: #FFF;
	margin: 1.9607% auto;
}
@media only screen and (max-width: 767px) {
	.line2 {
		padding-top: 10%;
	}
}
.hline {
	display: inline-block;
	width: 40px; /* 横棒の長さ（調整可） */
	height: 1px; /* 横棒の太さ（調整可） */
	background-color: var(--txt-color); /* 横棒の色 */
	vertical-align: middle;
	margin: 0 0.5em; /* 文章と横棒の間隔 */
	margin-bottom: 0.2em;
}


/*端まで写真の背景色を突き抜ける装飾*/
/* 左に写真があるとき */
.spot_photo {
	position: relative;
	z-index: 1;
}


.spot_photo::after {
	content: "";
	position: absolute;
	top: 5rem;
	bottom: -3rem;
	left: calc(-1 * (100vw - 100%)/2); /* 左端まで */
	right: -3rem; /* 常に2rem右に広げる */
	background-color: #1e88a828;
	z-index: -1;
}
@media only screen and (max-width: 567px) {
	.spot_photo::after {
		content: "";
		top: 3rem;
		bottom: -2rem;
		right: -2rem; /* 常に2rem右に広げる */
	}
}

.spot_photo img{	
	margin-left: auto;
}

@media only screen and (max-width: 1199px) {
	.spot_photo img{	
		margin: 0px auto;
	}
}


/* 右に写真があるとき */
.spot_photo02 {
	position: relative;
	z-index: 1;
}

/* .spot_photo02 img {
	position: relative;
	border-radius: 15px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
} */

.spot_photo02::after {
	content: "";
	position: absolute;
	top: 5rem;
	bottom: -3rem;
	left: -3rem; /* 左に1.5rem出す */
	right: calc(-1 * (100vw - 100%) / 2); /* 右端まで突き抜ける */
	background-color: #5C2E0028;
	/* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border-radius: 15px 0 0 15px; */
	z-index: -1;
}
@media only screen and (max-width: 567px) {
	.spot_photo02::after {
		content: "";
		top: 3rem;
		bottom: -2rem;
		left: -2rem; /* 常に2rem右に広げる */
	}
}

.spot_photo02 img{	
	margin-right: auto;
}

@media only screen and (max-width: 1199px) {
	.spot_photo02 img{	
		margin: 0px auto;
	}
}

/*パンくず*/
.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);
	color: #FFF;
	padding: 5px;
	font-size: clamp(14px, 1.3vw, 14px);
	font-family: Arial, sans-serif;
	flex-grow: 1; /* ボックスのサイズを自動調整 */
	min-width: 120px; /* ボックスの最小幅を設定 */
	box-sizing: border-box;
	text-align: center; /* 水平方向の中央揃え */
	/* border-radius: 5px; */
}
.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; /* 水平方向の中央揃え */
}



/*======= TOPページ ======*/
/*ご挨拶*/
.greeting {
	padding: clamp(40px, 6vw, 90px) 0 var(--v-space);
	background-color: var(--base-color);
	background-image: url(../img/bg_02a.png),url(../img/bg_02b.png);
	background-position: left top,right bottom;
	background-repeat: no-repeat,no-repeat;
	background-size: 400px,400px;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
@media only screen and (max-width:568px) {
	.greeting {
		background-image: url(../img/bg_02a.png),url(../img/bg_02b.png);
		background-position: left top,right bottom;
		background-repeat: no-repeat,no-repeat;
		background-size: 150px,150px;
	}
}
.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: #fdfffa;
	background-size: 6px 6px;
	background-image: repeating-linear-gradient(0deg, #e9f5d6, #e9f5d6 1px, #fdfffa 1px, #fdfffa);
}

.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;
	}
}


/*TOP 業務内容*/
.top_sec1{
	padding: var(--v-space2) 4rem;
	background-image: url(../img/bg_01.png);
}
@media only screen and (max-width: 767px) {
	.top_sec1{
		padding: var(--v-space2) 0;
	}
}

/* serviceリンク */
.service {
	padding: 8rem 2rem;
	background: url('../img/bg_03.jpg') center/cover no-repeat;
}

.service__title {
	text-align: center;
	font-size: 1.4rem;
	padding: 15px;
	margin-bottom: 2rem;
	background-color: var(--main-color);
	color: #FFF;
	font-family: 'Noto Serif JP', serif;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1rem;
	max-width: 800px;
	margin: 0 auto;
}

.service-item {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	background-color: rgba(255, 255, 255, 0.9);
	padding: 1.5rem;
	text-align: center;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service-item__title {
	font-size: 1.4rem;
	margin-bottom: 0.2rem;
	color: #333;
	font-family: 'Noto Serif JP', serif;
}

.service-item__button {
	display: inline-block;
	background-color: #0884a4;
	color: #fff;
	padding: 0.6rem 2.5rem;
	border-radius: 999px;
	text-decoration: none;
	transition: background-color 0.3s ease;
	margin: 0 auto;
}

.service-item__button:hover {
	background-color: #A4D4E2;
	color:var(--txt-color);
}

/*TOP 業務内容*/
.top_sec2{
	padding: 0 0 var(--v-space2);
}

/*======= 業務内容 ======*/
.se_sec1{
	padding: var(--v-space2) 0;
	background-color: #FFF;
	background-image: url(../img/bg_01.png);

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/* 画像とテキスト */
.se_sec1-imgtext0 {
	padding:0;
}
.se_sec1-imgtext {
	/* padding:clamp(45px, 7vw, 60px) 0; */
	padding:clamp(45px, 7vw, 60px) 0 clamp(45px, 7vw, 120px);
}
.se_sec1-imgtext_bg{
	background-color: rgba(255, 255, 255, 0.7);
}
.se_sec1-imgtext + .se_sec1-imgtext {
	padding-top: 40px;
}
@media only screen and (max-width: 1199px) {
	.se_sec1-imgtext + .se_sec1-imgtext {
		padding-top: 50px;
	}
	.se_sec1-imgtext-container {
		width: min(92%, 1228px);
		margin: auto;
	}
}


.se_sec1-imgtext-container {
	display: flex;
	flex-direction: column;
	gap: clamp(45px, 6vw, 80px);	/* テンプレ初期値 */
	/* gap: clamp(25px, 6vw, 35px); */
}



@media print, screen and (min-width: 1200px) {
	.se_sec1-imgtext-container {
		flex-direction: row;
		align-items: center;
	}

	.se_sec1-imgtext-container.reverse {
		flex-direction: row-reverse;
	}

	.se_sec1-imgtext-container > .se_sec1-text {
		flex: 1;
		min-width: 15em;
		z-index: 2;
		text-align: justify;
  	}

	.se_sec1-imgtext-container > .se_sec1-img {
		/*flex: 2;*/	/* テンプレ初期値 */
		flex: 1.4;
	}
	
	.se_sec1-pr{	
		padding-right: 5%;
	}
	.se_sec1-pl{	
		padding-left: 5%;
	}
}

@media print, screen and (min-width: 768px) {
	.se_sec1-img img {
		width: 100%;
		max-width: 800px;
		height: 600px;
		object-fit: cover;
	}
}
.se_sec1-heading {
	/* font-size: clamp(25px, 3vw, 30px); */
	font-size: clamp(23px, 2.4vw, 33px); /* 今回のみ */
	min-height: 0vw;
	font-weight: 400;
	color: #444;
}

.se_sec1-heading::after {
	display: block;
	content: '';
	width: 160px;
	height: 0px;
	border-top: solid 1px var(--main-color);
	margin-top: 0.6em;
}


.se_sec1-heading + p {
	margin-top: 0.5em;
	margin-bottom: 1em;
	color: var(--txt-color);
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
}

@media screen and (max-width: 1199px) {
	.se_sec1-heading {
		text-align:center;
	}
	.se_sec1-heading::after {
		margin-right:auto;
		margin-left:auto;
	}
	.se_sec1-heading + p {
		text-align:center;
	}
}

.se_sec2{
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_04.jpg);
	background-position: bottom;
	background-size: cover;
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.se_sec2 h2{
	text-align: center;
	color: #FFF;
	margin-bottom: 2rem;
}
.se_sec2 p{
	text-align: center;
	color: #FFF;
}
@media only screen and (max-width: 567px) {
	.se_sec2 p{
		text-align: left;
	}
}

/*======= 施工実績 ======*/
.wo_sec1 {
	padding: 30px 0 100px 0;
	background-color: #FFF;
	
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.wo_box{
	max-width: 1030px;
	margin: 0 auto;
	background-color: #1e88a827;
	outline: 1px solid #FFF;
	outline-offset: -0.8rem;
	padding: 30px 50px;
}
@media (max-width: 768px) {
	.wo_box {
		padding: 15px 25px;
	}
}

.wo_haba{
	max-width: 1130px;
	margin: 0 auto;
}

/* 写真が増えた場合に以下のグリッドデザインを使用予定(現在未使用) */
/* グリッド全体 */
.wo_sec1-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	grid-auto-rows: 250px;
	grid-auto-flow: dense;
	gap: 20px;

	/* コンテナクエリのために必要 */
	container-type: inline-size;
}

/* コンテナクエリ - 幅580px以上 */
@container (min-width:580px) {
	.wo_sec1-cards .large {
		grid-column: span 2;
		grid-row: span 2;
	}
	.wo_sec1-cards .medium {
		grid-column: span 1;
		grid-row: span 2;
	}
}

/* コンテナクエリ - 幅1180px以上 */
@container (min-width: 1180px) {
	.wo_sec1-cards .large {
		grid-column: span 3;
		grid-row: span 2;
	}
	.wo_sec1-cards .medium {
		grid-column: span 1;
		grid-row: span 2;
	}
}
@media only screen and (min-width: 580px) and (max-width: 956px) {
	.wo_sec1-cards .medium {
		grid-column: span 2;
		grid-row: span 1;
	}
}

/* カード全体（1枚） */
.card-01 {
	display: grid;
	grid-template:
		"photo photo photo photo photo" 1fr
		/ 8px auto 8px 1fr 8px;
	height: 100%;
}

/* カード内の画像（.photo） */
.card-01 > .photo {
	grid-area: photo;
	height: 0;
	min-height: 100%;
	width: 100%;
	
}

.card-01 > .photo a {
	display: block;
	height: 100%;
	width: 100%;
}

.card-01 > .photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/*======= 展示場について ======*/
.sh_sec1 {
	padding: 30px 0 100px 0;
	background-color: #FFF;
	
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.sh_haba{
	max-width: 1130px;
	margin: 0 auto;
}

.sh_box{
	max-width: 1030px;
	margin: 0 auto;
	background-color: #1e88a827;
	outline: 1px solid #FFF;
	outline-offset: -0.8rem;
	padding: 30px 50px;
}
@media (max-width: 768px) {
	.sh_box {
		padding: 15px 25px;
	}
}

/* グリッド全体 */
.sh_sec1-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	grid-auto-rows: 250px;
	grid-auto-flow: dense;
	gap: 20px;

	/* コンテナクエリのために必要 */
	container-type: inline-size;
}

/* コンテナクエリ - 幅580px以上 */
@container (min-width:580px) {
	.sh_sec1-cards .large {
		grid-column: span 2;
		grid-row: span 2;
	}
	.sh_sec1-cards .medium {
		grid-column: span 1;
		grid-row: span 2;
	}
}

/* コンテナクエリ - 幅1180px以上 */
@container (min-width: 1180px) {
	.sh_sec1-cards .large {
		grid-column: span 3;
		grid-row: span 2;
	}
	.sh_sec1-cards .medium {
		grid-column: span 1;
		grid-row: span 2;
	}
}
@media only screen and (min-width: 580px) and (max-width: 956px) {
	.sh_sec1-cards .medium {
		grid-column: span 2;
		grid-row: span 1;
	}
}

/* カード全体（1枚） */
.card-02 {
	display: grid;
	grid-template:
		"photo photo photo photo photo" 1fr
		/ 8px auto 8px 1fr 8px;
	height: 100%;
}

/* カード内の画像（.photo） */
.card-02 > .photo {
	grid-area: photo;
	height: 0;
	min-height: 100%;
	width: 100%;
}

.card-02 > .photo a {
	display: block;
	height: 100%;
	width: 100%;
}

.card-02 > .photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}



/*======= FAQ ======*/
.faq_sec1 {
	padding: 30px 0 100px 0;
	background-color: #FFF;
	
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.faq-item {
	display: grid;
	grid-template-columns: 1.5em 1fr;
	column-gap: 10px;
	row-gap: 10px;
}

.faq-label {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: bold;
	font-size: 110%;
	line-height: 1.5;
	border-radius: 3px;
	width: 1.5em;
	text-align: center;
	align-self: start;	/* lavelを上揃えに */
}

.faq-label.q {
	background-color: var(--main-color);
}

.faq-label.a {
	background-color: var(--accent-color1);
}

.faq-question,
.faq-answer {
	margin: 0;
	line-height: 1.6;
	text-align: justify;
}
.faq-question{
	font-weight: bold;
}

hr.faqHr{
	height: 0px;
	border: 1px dashed var(--accent-color2);
	margin: 20px auto;
}

/*======= 会社案内ページ ======*/
/*会社案内*/
.info_sec1{
	padding: 30px 0 var(--v-space2) 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: 180px 1fr;
	align-items: stretch;
	gap: 20px;
}

.info_sec1_container .label {
	display: flex;
	align-items: center;
	font-weight: bold;
	color: var(--txt-color);
	white-space: nowrap;
	background-color: #1e88a823;
	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_01.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%;
	}
}
