@charset "UTF-8";


/*=======================================================*/
/*					セクション毎のCSS					  */
/*======================================================*/

/*============ 共通 =========== */

/* 親要素からはみ出して画面いっぱいに */
.full {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}
@media print {
	.full {
		margin: 0;
		width: 100%;
	}
}

.spot-heading02{
	text-align: center;
	position: relative;
	top:calc((var(--v-space2) + 3em) * -1);
	display: block;
	z-index: 3;
	margin-bottom: calc((var(--v-space2) + 1em) * -1);
}
.spot-heading02 .heading-line {
	width: 1px;
	height: 100px;
	background-color: var(--main-color);
	margin: 0 auto;
}
.spot-heading02 p {
	position: relative;
	font-size: clamp(35px,5vw,50px);
	font-family: "Corinthia", cursive;
	line-height: 1.2;
	color: var(--accent-color1);
	font-weight: 400;
}
.spot-heading02 h2 {
	position: relative;
	top:-13px;
	font-size: clamp(25px, 2.4vw, 33px);
	line-height: 1.2;
	color: #444;
	font-weight: normal;
	margin-bottom: 25px;
}

.line{
	width: 1px;
	height: auto;
	padding-top: 35px;
	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: #2d2d2d; /* 横棒の色 */
	vertical-align: middle;
	margin: 0 0.1em; /* 文章と横棒の間隔 */
}

/*パンくず*/
.sec_pankuzu{
	padding: 0px;
	background-color: var(--base-color);
	position: relative;
	z-index: 1;
}

/*タグ*/
/* タグ（左右が揃う）  */
.kakomi-tag01 {
	display: flex;
	flex-wrap: wrap; /* 子要素を折り返す */
	gap: 10px;
	width: 100%;
	justify-content: space-between; /* 左右のボックスを揃える */
	margin-bottom: 30px;
}
.kakomi-tag01 p {
	background-color: #FFF;
	color: var(--txt-color);
	padding: 5px;
	font-size: clamp(14px, 1.6vw, 16px);
	font-family: Arial, sans-serif;
	flex-grow: 1; /* ボックスのサイズを自動調整 */
	min-width: 50px; /* ボックスの最小幅を設定 */
	box-sizing: border-box;
	text-align: center; /* 水平方向の中央揃え */
	border-radius: 5px;
	border: 1px dotted var(--main-color);
}
.kakomi-tag01 p.head {
	background-color: var(--main-color);
	color: #FFF;
	padding: 5px;
	font-size: clamp(14px, 1.6vw, 16px);
	font-family: Arial, sans-serif;
	width: 150px;
	max-width: 150px;
	box-sizing: border-box;
	text-align: center; /* 水平方向の中央揃え */
	border-radius: 5px;
}
.kakomi-tag01 p.end{		/* などを末尾につけたい場合に */
	background-color:transparent;
	color:var(--txt-color);
	padding: 0px;
	font-size: clamp(14px, 1.3vw, 15px);
	font-family: Arial, sans-serif;
	width: 20px;
	min-width: 40px; /* ボックスの最小幅を設定 */
	box-sizing: border-box;
	text-align: right; /* 水平方向の中央揃え */
	border:transparent;
	display: flex;
	align-items: flex-end;
}


/*======= TOPページ ======*/
/*ご挨拶*/
.greeting {
	padding: clamp(30px, 6vw, 40px) 0 var(--v-space2);
	background-color: #FFF;

	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: 767px) {
	.tel_bnr{
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 10px;
	}
}

.tel_bnr-contact{
	display: grid;
	grid-template-columns: 1fr 0.3fr;
	grid-template-rows: 1fr;
	grid-column-gap: 50px;
	grid-row-gap: 10px;
	max-width: 700px;
	margin: 0 auto;
}
@media only screen and (max-width: 767px) {
	.tel_bnr-contact{
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 10px;
	}
}

/* ================================
   single（見た目：白い枠だけ）
================================ */
.tel_bnr-single{
	background: #ffffff4d;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	padding: 20px 40px;
	box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

/* ================================
   ボタン制御
================================ */

.tel_bnr-single .btn-call{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	justify-self: end; /* grid内で右寄せ */
}

/* ================================
   ボタンデザイン
================================ */
.btn-call{
	background: var(--main-color);
	color: #fff;
	padding: 14px 28px;
	border-radius: 8px;
	font-weight: bold;
	font-size: 15px;
	white-space: nowrap;
	text-decoration: none;
	box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
	transition: background 0.2s, transform 0.1s;
	width: auto;          /* auto列を押し広げない */
	max-width: none;
	align-self: center;
}

.btn-call:hover{
	background: var(--accent-color2);
	transform: translateY(-1px);
}

/* SP：押しやすくフル幅 */
@media only screen and (max-width: 767px) {
	.btn-call{
		width: 100%;
	}
	.tel_bnr-single .btn-call{
		justify-self: center; /* grid内で中央寄せ */
	}
}


/*======= 各ページ遷移バナー ======*/
.toplink_sec {
	padding: 50px 0 0px 0;
	position: relative;
	z-index: 1;
	background-color: #FFF;
	/* background-size: 6px 6px;
	background-image: repeating-linear-gradient(0deg, #d7e6f5, #d7e6f5 1px, #f4faff 1px, #f4faff); */
}

.toplink_sec-cards {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	padding: 2rem 0;
}

.toplink_sec-cards .card {
	position: relative;
	display: block;
	/* border-radius: 1rem; */
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	transition: transform .3s ease, box-shadow .3s ease;
}

.toplink_sec-cards .card:hover {
	/* transform: translateY(-4px); */
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.toplink_sec-cards .card img {
	width: 100%;
	aspect-ratio: 3/4;
	object-fit: cover;
	vertical-align: middle;
	transition: transform .5s ease;
}
@media only screen and (max-width: 767px) {
	.toplink_sec-cards .card img {
		aspect-ratio: 4/3;
	}
}

.toplink_sec-cards .card:hover img {
	transform: scale(1.05);
}

.toplink_sec-cards-body {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: #6074b4c5;
	/* 70%白透過 */
	padding: 1rem;
	backdrop-filter: blur(2px);
	/* 少しぼかして高級感 */
	min-height: 80px;
}

.toplink_sec-cards-body h3 {
	font-size: 1.2rem;
	margin-bottom: .4rem;
	color: #FFF;
	border-left: 4px solid var(--accent-color1);
	padding-left: .5rem;
}

.toplink_sec-cards-body p {
	font-size: .9rem;
	color: #FFF;
	line-height: 1.5;
}

.top_sec1 {
	padding: 0;
	background: #FFFFFF;
	position: relative;
	z-index: 1;
}

/*---- 各ページ遷移バナー ----*/
.top_sec2 {
	padding: clamp(20px, 2vw, 40px) 0 var(--v-space2) 0;
	background-color: #fff;
	position: relative;
	z-index: 1;
}
.btn-group {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin: 10px auto 20px auto;
}
@media only screen and (max-width: 767px) {
	.btn-group {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}
.btn-group > div {
	border-radius: 7px;
	overflow: hidden;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
	background-color: transparent;
}

/* 画像とオーバーレイとテキストを包むラッパー */
.img-wrapper {
	position: relative;
	border-radius: 7px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}
@media only screen and (max-width: 568px) {
	.img-wrapper {
		position: relative;
		border-radius: 7px;
		aspect-ratio: unset;
		overflow: hidden;
	}
}
/* 画像本体 */
.img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
/* グラデーションオーバーレイ */
.img-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg,	rgba(77, 93, 144, 0.9),rgba(96, 116, 180, 0.63),rgba(191, 199, 225, 0.63));
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}
/* ホバーでオーバーレイ表示 */
.img-wrapper:hover .img-overlay {
	opacity: 1;
}
/* 補足文字 :番号を大きく載せてもOK*/
.img-wrapper p {
	position: absolute;
	top: 0;
	/*left: 20px;*/
	padding: 10px;
	color: #354f46;
	z-index: 2;
	font-family: "Zen Kaku Gothic New", serif;
	font-weight: 500;
	font-style: normal;
	line-height: 1.2em;
	font-size: clamp(15px, 1.6vw, 17px);
	-webkit-text-stroke: 3px #fff;
	paint-order: stroke;
}
/* h3 テキスト */
.img-wrapper h3 {
	font-family: 'Noto Serif JP', serif;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #ffffffdc;
	padding: 11px 15px 13px 45px;
	font-size: clamp(14px,1.6vw,17px);
	font-weight: 600;
	line-height: 1.3;
	text-align: left;
	z-index: 2;
	transition: all 0.3s ease;
	margin: 0;
}
/* 飾り線 */
.img-wrapper h3::before {
	content: "―";
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--accent-color3);
	font-size: 1.2em;
	font-weight: 600;
	font-family: sans-serif;
}
@media (max-width: 568px) {
	.img-wrapper h3 {
		padding: 11px 15px 13px 25px;
	}
	.img-wrapper h3::before {
		left:5px;
	}
}
/* ホバー時のテキスト変化 */
.img-wrapper:hover h3 {
	background-color: transparent;
	text-align: center;
	color: #fff;
	padding-left: 0;
}
.img-wrapper:hover h3::before {
	content: "→";
	position: absolute;
	right: 25px;
	left: auto;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	font-size: 1.2em;
	font-weight: 300; /* ここで細さを調整 */
}

/* ================================
	サービス案内 se_sec1～se_sec4
================================ */

/* サービス案内 */
.se_sec1 {
	padding: var(--v-space) 0;
	background-color: #fcf7ea;
	position: relative;
	z-index: 1;
}
@media print, screen and (min-width: 768px) {
	.se_sec1 {
		background-image: url(../img/bg_01.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}
@media only screen and (max-width: 767px) {
	.se_sec1 {
		background-image: url(../img/bg_01_sp.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}

.service-list {
	list-style: none;
	padding: 0;
	margin: 0 auto 40px;
	max-width: 800px;
	counter-reset: number;
}

.service-list li {
	position: relative;
	padding: 0.7em 0.5em 0.7em 3.5em;
	margin-bottom: 1em;
	line-height: 1.6;
	background-color: #FFF;
	border-radius: 5px;
}

.service-list li span {
	position: absolute;
	left: 0.5em;
	top: 0;
	font-weight: bold;
	color: var(--main-color);
	font-size: 1.7rem;
	counter-increment: number;
}

@media only screen and (max-width: 567px) {
	.service-list li {
		padding: 0.7em 0.5em 0.7em 3em;
	}
	.service-list li span {
		position: absolute;
		left: 0.5em;
		top: 0.5em;
		font-weight: bold;
		color: var(--main-color);
		font-size: 1.2rem;
	}
}


.se_sec2 {
	padding: var(--v-space) 0;
	background-color: #ffffff;
	position: relative;
	z-index: 1;
}

/* ==============================
	se_sec3（第3層：不安解消パート）
============================== */
.se_sec3 {
	padding: var(--v-space) 0;
	background-color: #ebf9ff;
	position: relative;
	z-index: 1;
}
@media print, screen and (min-width: 768px) {
	.se_sec3 {
		background-image: url(../img/bg_02.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}
@media only screen and (max-width: 767px) {
	.se_sec3 {
		background-image: url(../img/bg_02_sp.jpg);
		background-repeat: no-repeat;
		background-position: top;
		background-size: contain;
	}
}

/* リード文 */
.se_sec3-lead {
	margin: 0 auto 25px;
	font-size: clamp(14px, 1.05vw, 16px);
	line-height: 1.9;
	text-align: justify;
}


/* ===== se_sec3 グリッド ===== */
.se-sec3-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 40vh);
	gap: 0;
	width: 100%;
}

.se-sec3-item {
	position: relative;
	overflow: hidden;
}

.se-sec3-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s ease;
}

.se-sec3-item:hover img {
	transform: scale(1.15);
}

.se-sec3-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-align: center;
	padding: 20px;
	transition: background .4s ease;
}

.se-sec3-item:hover .se-sec3-overlay {
	background: rgba(0, 0, 0, 0.25);
}

.se-sec3-overlay h3 {
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.se-sec3-overlay p {
	font-size: 1rem;
	line-height: 1.5;
	max-width: 80%;
	margin: 0 auto;
	text-align: left;
}

/* ===== スマホ対応 ===== */
@media (max-width: 768px) {
	.se-sec3-overlay {
		justify-content: end;
	}
	.se-sec3-grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}

	.se-sec3-overlay h3 {
		font-size: 1.1rem;
	}

	.se-sec3-overlay p {
		font-size: 0.8rem;
		max-width: 100%;
	}
}

/* ===== 印刷対応 ===== */
@media print {
	.se-sec3-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(2, 300px);
	}
}


/* 補足ボックス */
.se_sec3-note {
	margin: 50px auto 0;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 10px;
	padding: 16px 18px;
	border-left: 4px solid var(--accent-color1);
	border-right: 4px solid var(--accent-color1);
	max-width: 800px;
}

.se_sec3-note p {
	margin: 0;
	font-size: clamp(13px, 1vw, 15px);
	line-height: 1.85;
	text-align: justify;
}

/* hover（PCのみ軽く） */
@media (hover:hover) {
	.se_sec3-points li {
		transition: transform 0.2s ease, box-shadow 0.2s ease;
	}
	.se_sec3-points li:hover {
		transform: translateY(-2px);
		box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
	}
}

/* レスポンシブ */
@media only screen and (max-width: 768px) {
	.se_sec3-points {
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.se_sec3-points li {
		padding: 16px 16px 14px;
	}
	.se_sec3-note {
		padding: 14px 16px;
	}
}


.se_sec4 {
	padding: var(--v-space) 0;
	background-color: #fff;

	position: relative;
	z-index: 1;
}
@media print, screen and (min-width: 768px) {
	.se_sec4 {
		background-image: url(../img/se_bg01.jpg);
		background-repeat: no-repeat;
		background-position: bottom;
		background-size: cover;
	}
}
@media only screen and (max-width: 767px) {
	.se_sec4 {
		background-image: url(../img/se_bg01_sp.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}

/* タイトル */
.se_sec4-heading {
	font-size: clamp(24px, 2.5vw, 30px);
	line-height: 1.35;
	font-weight: normal;
	font-family: 'Noto Serif JP', serif;
	color: #000;
	margin-bottom: 20px;
	text-shadow:
		0 0 2px rgba(255, 255, 255, 0.85),
		0 0 4px rgba(255, 255, 255, 0.85),
		0 0 6px rgba(255, 255, 255, 0.85);
}

/* テキスト */
.se_sec4-txt {
	font-size: clamp(14px, 1.5vw, 15px);
	line-height: 1.9;
	color: #000;
	text-shadow:
		0 0 2px rgba(255, 255, 255, 0.85),
		0 0 4px rgba(255, 255, 255, 0.85),
		0 0 6px rgba(255, 255, 255, 0.85);
}

/*======= 施工事例 ======*/
.wo_sec1 {
	padding: 0px 0 var(--v-space);
	background-color: #FFF;

	position: relative;
	z-index: 1;
}

.wo_sec1 .wo_sec1__step {
	display: flex;
	align-items: center;
	gap: 1%;
	flex-wrap: nowrap;
}

.wo_sec1 .step-item img {
	display: block;
	width: 100%;
	max-width: 188px;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.wo_sec1 .step-item h4 {
	text-align: center;
	font-size: 14px;
	margin-top: 8px;
}

.wo_sec1 .arrow2 {
	width: 0;
	height: 0;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 20px solid var(--accent-color3);
	transform: translateY(-10px);
}

/* 見出し直下の説明 */
.wo_sec1_desc {
	margin: 10px 0 12px;
	font-size: 14px;
	line-height: 1.7;
	color: #333;
	background-color: #e008130a;
	padding: 2px 5px;
}

/* 2カラム */
.wo_sec1_container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 400px));
	gap: 50px;
	justify-content: center;
	justify-items: center;
	margin: 0 auto;
}

.wo_sec2 {
	padding: var(--v-space) 0;
	background-color: #f4f7fc;

	position: relative;
	z-index: 1;
}

/*======= FAQ ======*/
.faq_sec1 {
	padding: var(--v-space) 0;
	background-color: #F4F5F7;

	position: relative;
	/* sectionの位置を相対的にする*/
	z-index: 1;
	/* 背景画像より上に表示 */
}

.faq-item {
	display: grid;
	grid-template-columns: 1.5em 1fr;
	column-gap: 10px;
	row-gap: 5px;
}

.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: clamp(70px, 6vw, 90px) 0 var(--v-space) 0;
	background-color: #FFF;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/* 概要部分のテーブル */

.info_sec1__haba{
	max-width: 700px;
	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(--txt-color);
	white-space: nowrap;
	background-color: #f4f7fc;
	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: #f4f7fc;

	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%;
	}
}
