@charset "UTF-8";


/*=======================================================*/
/*					セクション毎のCSS					  */
/*======================================================*/

/*============ 共通 =========== */

/* 親要素からはみ出して画面いっぱいに */
.full {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}
@media print {
	.full {
		margin: 0;
		width: 100%;
	}
}

.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;
}

/* タグ */
.kakomi01{
	text-align: center;
}
.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);
}

/* タグ（左右が揃う）  */
.kakomi-tag01 {
	display: flex;
	flex-wrap: wrap; /* 子要素を折り返す */
	gap: 10px;
	width: 100%;
	justify-content: space-between; /* 左右のボックスを揃える */
}
.kakomi-tag01 p {
	background-color: var(--accent-color3);
	padding: 5px 10px;
	font-size: clamp(14px, 1.6vw, 16px);
	font-family: Arial, sans-serif;
	flex-grow: 1; /* ボックスのサイズを自動調整 */
	min-width: 100px; /* ボックスの最小幅を設定 */
	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; /* 水平方向の中央揃え */
}


/*======= TOPページ ======*/
/*ご挨拶*/
.greeting {
	padding: clamp(40px, 6vw, 90px) 0 var(--v-space2);
	background-color: #FFF;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.greeting-haba{
	margin: 0 auto;
	max-width: 800px;
	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;
	}
}

/* =========================
	TOP｜よくあるご相談 (Updated Design)
========================= */
.top_sec1 {
	padding: var(--v-space2) 0;
	background-color: #f1f1f1;

	position: relative;
	z-index: 1;
}
@media print, screen and (min-width: 768px) {
	.top_sec1 {
		background-image: url(../img/bg_01.jpg);
		background-repeat: no-repeat;
		background-position: bottom;
		background-size: cover;
	}
}
@media only screen and (max-width: 767px) {
	.top_sec1 {
		background-image: url(../img/bg_01_sp.jpg);
		background-repeat: no-repeat;
		background-position: bottom;
		background-size: cover;
	}
}

.top_sec1__title {
	text-align: center;
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 60px;
	color: var(--txt-color);
	letter-spacing: 0.05em;
	position: relative;
	padding-bottom: 15px;
}
.top_sec1__title::after {
	content: '';
	width: 50px;
	height: 3px;
	background: var(--main-color);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.top_sec1__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 50px;
	list-style: none;
}

.top_sec1__item {
	background-color: #ffffffd8;
	border-radius: 15px;
	padding: 20px 15px 10px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.05);
	position: relative;
	transition: all 0.3s ease;
	border: 1px solid #eee;
	display: flex;
	align-items: center;
	justify-content: center;
}

.top_sec1__item:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0,0,0,0.1);
	border-color: var(--main-color);
}

.top_sec1__item::before {
	content: "？";
	position: absolute;
	top: -18px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	background-color: var(--main-color);
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	box-shadow: 0 4px 8px rgba(0,92,175,0.6);
}

.top_sec1__text {
	font-size: 1.05rem;
	line-height: 1.7;
	text-align: center;
	font-weight: 500;
	color: #444;
}

.top_sec1__note {
	text-align: center;
	font-size: 1.4rem;
	font-weight: bold;
	margin-top: 30px;
	color: var(--primary-dark);
	background: #fff8e6;
	padding: 15px 20px 10px;
	border-radius: 15px;
	display: inline-block;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	display: block;
}

.top_sec1__note img {
	display: inline;
	width: 35px;
	margin-right: 5px;
}

/* レスポンシブ */
@media only screen and (max-width: 968px) {
	.top_sec1__list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media only screen and (max-width: 750px) {
	.top_sec1 {
		padding: 60px 15px;
	}
	.top_sec1__list {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.top_sec1__title {
		font-size: 1.3rem;
	}
	.top_sec1__note {
		font-size: 1.1rem;
		padding: 15px;
	}
}

/* =========================
TOP｜当店が選ばれる理由
========================= */
.top_sec2{
	padding: var(--v-space) 0;
	background: linear-gradient(180deg, #fff 0%, #fff7ea 100%);

	position: relative;
	z-index: 1;
}

/* 見出し */
.top_sec2__heading{
	text-align: center;
	font-weight: bold;
	line-height: 1.3;
	margin-bottom: 30px;
	font-size: clamp(20px, 2.2vw, 28px);
	letter-spacing: 0.06em;
}
.top_sec2__heading-en{
	display: block;
	font-size: 12px;
	letter-spacing: 0.18em;
	margin-bottom: 8px;
	color: var(--main-color);
}

/* カード */
.top_sec2-card__item{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

/* subgridで高さ揃え（参考コード踏襲） */
.top_sec2-card__box{
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	gap: 10px;

	padding: 22px 18px;
	background-color: #ffffffd7;
	box-sizing: border-box;
	border: solid 1px var(--main-color);
	border-radius: 12px;
	box-shadow: 0 6px 14px rgba(0,0,0,0.08);
	position: relative;
	overflow: hidden;
}

/* 左上の薄いアクセント */
.top_sec2-card__box::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 6px;
	background-color: var(--main-color);
	opacity: 0.9;
}

/* 理由ラベル */
.top_sec2-card__no{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 28px;
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 0.06em;
	border-radius: 999px;
	background-color: var(--accent-color1);
	color: var(--main-color);
}

/* タイトル */
.top_sec2-card__title{
	padding: 0 0 8px;
	font-size: clamp(16px, 1.4vw, 20px);
	font-weight: bold;
	line-height: 1.35;
	text-align: center;
	color: var(--main-color);
	border-bottom: dotted 1px var(--main-color);
	margin: 0;
}

/* 本文 */
.top_sec2-card__text{
	font-size: 14px;
	line-height: 1.7;
	text-align: justify;
	margin: 0;
}

/* レスポンシブ */
@media only screen and (max-width: 968px){
	.top_sec2-card__item{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 568px){
	.top_sec2-card__item{
		grid-template-columns: 1fr;
	}
	.top_sec2-card__box{
		padding: 20px 16px;
	}
}


/*======= 各ページ遷移バナー ======*/
.toplink_sec {
	padding: 50px 0 50px 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: #005CAFe5;
	/* 70%白透過 */
	padding: 1rem;
	backdrop-filter: blur(2px);
	/* 少しぼかして高級感 */
}

.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;
}
@media print{
	.toplink_sec-cards {
		grid-template-columns: repeat(4, 1fr);
		gap:10px;
	}
	.toplink_sec-cards-body h3 {
		font-size: 0.9rem;
	}

	.toplink_sec-cards-body p {
		font-size: .6rem;
	}
}

/* ================================
	電気・エアコン工事
================================ */
.el_sec1 {
	padding: var(--v-space) 0;
	background-color: #f1faf7;

	position: relative;
	z-index: 1;
}

/*======= エアコン工事 ======*/

/*el_sec2*/
.el_sec2 {
	padding: 0;
	background-color: #fff;
}

.el_sec2-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}

.el_sec2-container-item1 {
	grid-area: 1 / 1 / 2 / 2;
	background-image: url(../img/bg_02.jpg);
	background-size: cover;
	background-position: top right;
	background-repeat: no-repeat;
}

.el_sec2-container-item2 {
	grid-area: 1 / 2 / 2 / 3;
	padding: 40px;
}

@media only screen and (max-width: 1000px) {
	.el_sec2-container {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: repeat(1, 600px 1fr);
		grid-column-gap: 0px;
		grid-row-gap: 0px;
	}

	.el_sec2-container-item1 { grid-area: 1 / 1 / 2 / 2; }
	.el_sec2-container-item2 {
		grid-area: 2 / 1 / 3 / 2;
		padding: 30px 15px 50px 15px;
	}
}

@media only screen and (max-width: 568px) {
	.el_sec2-container {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: repeat(1, 400px 1fr);
		grid-column-gap: 0px;
		grid-row-gap: 0px;
	}

	.el_sec2-container-item1 { grid-area: 1 / 1 / 2 / 2; }
	.el_sec2-container-item2 {
		grid-area: 2 / 1 / 3 / 2;
		padding: 30px 15px 50px 15px;
	}
}

.el_sec2-haba {
	margin: 0 11%;
	padding: 2% 0 0 0;
}

/* ===== エアコン工事 料金テーブル ===== */
.el_sec2-price {
	margin-top: 30px;
}

.el_sec2-price-table {
	overflow-x: auto;
}

.el_sec2-price table {
	width: 100%;
	border-collapse: collapse;
	background-color: #fff;
	font-size: 14px;
}

.el_sec2-price th,
.el_sec2-price td {
	padding: 12px 14px;
	border: 1px solid #ddd;
	vertical-align: middle;
}

.el_sec2-price th {
	background-color: var(--main-color);
	color: #fff;
	font-weight: bold;
	text-align: center;
}

.el_sec2-price td:nth-child(2) {
	text-align: right;
	font-weight: bold;
	color: #d54e46;
}

.el_sec2-price td:nth-child(1) {
	font-weight: 500;
}

.el_sec2-price-note {
	margin-top: 15px;
	font-size: 13px;
	line-height: 1.6;
	color: #555;
}

.el_sec3 {
	padding: var(--v-space2) 0;
	background-color: #fff;

	position: relative;
	z-index: 1;
}
@media print, screen and (min-width: 768px) {
	.el_sec3 {
		background-image: url(../img/el_bg01.jpg);
		background-repeat: no-repeat;
		background-position: bottom;
		background-size: cover;
	}
}
@media only screen and (max-width: 767px) {
	.el_sec3 {
		background-image: url(../img/el_bg01_sp.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}

.el_sec3-box{
	background: rgba(255, 255, 255, 0.8);
	padding: 40px;
}
@media screen and (max-width: 568px) {
	.el_sec3-box {
		padding: 30px 15px 15px 15px;
	}
}

/* タイトル */
.el_sec3-heading {
	font-size: clamp(22px, 2.5vw, 30px);
	line-height: 1.35;
	font-weight: normal;
	font-family:"Hiragino Mincho ProN", "游明朝", YuMincho, "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);
}

/* テキスト */
.el_sec3-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);
}



/*======= 家電販売・修理 ======*/
.ap_sec1 {
	padding: var(--v-space2) 0 var(--v-space);
	background-color: #fff;
	background-image: radial-gradient(#ffdf5f45 15%, transparent 16%),
	radial-gradient(#ffdf5f45 15%, transparent 16%);
	background-size: 60px 60px;
	background-position: 0 0, 30px 30px;

	position: relative;
	z-index: 1;
}

.ap_pcspimg {
	text-align: center;          /* 中央寄せ */
	margin: 0 auto;
}

.ap_pcspimg img {
	display: block;              /* 余計な隙間防止 */
	width: 100%;
	max-width: 400px;             /* 親幅に合わせて縮小 */
	height: auto;                /* 比率維持 */
	margin: 0 auto;
}

.ap_sec1-list {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	max-width: 720px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	counter-reset: list;
}

.ap_sec1-list li {
	font-size: 16px;
	line-height: 1.8;
	padding: 14px 20px 14px 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;
}

.ap_sec1-list li:before {
	content: "";
	position: absolute;
	top: 1em;
	left: 0.8em;
	width: 25px;
	height: 25px;
	background-color: var(--main-color);
	border-radius: 15px;
}

.ap_sec1-list li:after {
	content: "";
	position: absolute;
	width: 7px;
	height: 14px;
	top: 1.1em;
	left: 1.3em;
	transform: rotate(50deg);
	border-right: 3px solid #FFF;
	border-bottom: 3px solid #FFF;
}

.ap_sec1-list li:hover {
	background-color: #fff8d8;
}

@media only screen and (max-width: 568px) {
	.ap_sec1-list {
		gap: 10px;
	}

	.ap_sec1-list li {
		font-size: 14px;
		padding: 8px 5px 8px 30px;
	}

	.ap_sec1-list li:before {
		top: .7em;
		left: 0.4em;
		width: 20px;
		height: 20px;
		border-radius: 15px;
	}

	.ap_sec1-list li:after {
		width: 5px;
		height: 10px;
		top: .8em;
		left: .8em;
		border-right: 2px solid #FFF;
		border-bottom: 2px solid #FFF;
	}
}

/* 下矢印（既存arrow-downを流用） */
.arrow-down {
	position: absolute;
	top: calc((var(--v-space2) + 4.5em) * -1);
	left: 50%;
	width: 80px;
	height: 80px;
	transform: translateX(-50%) rotate(-45deg);
	line-height: 1.3;
}

.arrow-down::before {
	content: "";
	display: block;
	width: 80px;
	height: 80px;
	border-left: 4px solid;
	border-bottom: 4px solid;
	border-image: linear-gradient(90deg, #e6ab09, #f07619);
	border-image-slice: 1;
}

.se_btm{
	margin: 0 auto;
	margin-bottom: 0px;
}
@media only screen and (max-width: 767px) {
	.se_btm{
		margin: 0 auto;
		margin-bottom: 30px;
	}
}

.ap_sec2 {
	padding: var(--v-space2) 0 var(--v-space);
	background-color: #FFF;

	position: relative;
	z-index: 1;
}

.ap_sec2__catch01 {
	font-size: clamp(18px, 5vw, 22px);
	text-align: center;
	width: 150px;
	margin-inline: auto;
	border: 1.5px solid var(--main-color);
	font-weight: 700;
	margin-bottom: 10px;
}

.ap_sec2__catch02 {
	text-align: center;
	font-size: clamp(20px, 2vw, 23px);
	font-weight: 700;
	background: linear-gradient(to right, #005CAF, #E60012);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	margin: 0 auto 1rem auto;
	max-width: fit-content;
	line-height: 1.4;
}

/* 冒頭文章 */
.ap_sec2__tx-c {
	text-align: center;
}
@media only screen and (max-width: 568px) {
	.ap_sec2__tx-c {
		text-align: left;
	}
}

/* =========================
家電販売・修理｜対応家電（カード）
========================= */
.ap_sec3{
	padding: var(--v-space) 0;
	background-color: #e4e4e4;
	position: relative;
	z-index: 1;
}
@media print, screen and (min-width: 768px) {
	.ap_sec3 {
		background-image: url(../img/bg_03.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}
@media only screen and (max-width: 767px) {
	.ap_sec3 {
		background-image: url(../img/bg_03_sp.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}

/* カード */
.ap_sec3-card__item{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
@media only screen and (max-width: 767px) {
	.ap_sec3-card__item{
		grid-template-columns: 1fr;
	}
}

.ap_sec3-card__box{
	/* 高さ揃え（参考コード踏襲） */
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 4;
	gap: 0px;

	background-color: #ffffffe7;
	box-sizing: border-box;
	border: solid 1px var(--main-color);
}

.ap_sec3-card__box h4{
	padding: 5px 10px 0;
	font-size: clamp(18px, 2vw, 20px);
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
	color: var(--main-color);
	margin-bottom: 10px;
}
.ap_sec3-card__box h4::after{
	content: "";
	display: block;
	margin: 0 auto;
	border-bottom: dotted 1px var(--main-color);
	width: 100%;
}

.ap_sec3-txt{
	padding: 5px 10px 15px;
	font-size: clamp(14px, 1.6vw, 16px);
	line-height: 1.7;
	text-align: left;
}

/* =========================
ap_sec3 下部メッセージBOX
========================= */
.ap_sec3-note{
	margin-top: 30px;
	padding: 20px;
	background-color: #fff8d9e7;
	border: 2px solid var(--main-color);
	border-radius: 8px;
	text-align: center;
	max-width: 600px;
	margin: 30px auto;
}

.ap_sec3-note__ttl{
	font-size: clamp(16px, 2vw, 18px);
	font-weight: bold;
	color: var(--main-color);
	margin-bottom: 8px;
}

.ap_sec3-note__txt{
	font-size: clamp(14px, 1.5vw, 15px);
	line-height: 1.7;
	color: #444;
}


/*======= 温水器・給湯器 ======*/
.wa_sec1 {
	padding: var(--v-space2) 0 var(--v-space);
	background-color: #fff;
	background-image: radial-gradient(#0088ff45 15%, transparent 16%),
	radial-gradient(#0088ff45 15%, transparent 16%);
	background-size: 60px 60px;
	background-position: 0 0, 30px 30px;

	position: relative;
	z-index: 1;
}

.wa_pcspimg {
	text-align: center;
	margin: 0 auto;
}

.wa_pcspimg img {
	display: block;
	width: 100%;
	max-width: 400px;
	height: auto;
	margin: 0 auto;
}

.wa_sec1-list {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	max-width: 720px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	counter-reset: list;
}

.wa_sec1-list li {
	font-size: 16px;
	line-height: 1.8;
	padding: 14px 20px 14px 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;
}

.wa_sec1-list li:before {
	content: "";
	position: absolute;
	top: 1em;
	left: 0.8em;
	width: 25px;
	height: 25px;
	background-color: var(--main-color);
	border-radius: 15px;
}

.wa_sec1-list li:after {
	content: "";
	position: absolute;
	width: 7px;
	height: 14px;
	top: 1.1em;
	left: 1.3em;
	transform: rotate(50deg);
	border-right: 3px solid #FFF;
	border-bottom: 3px solid #FFF;
}

.wa_sec1-list li:hover {
	background-color: #d4ebff;
}

@media only screen and (max-width: 568px) {
	.wa_sec1-list {
		gap: 10px;
	}

	.wa_sec1-list li {
		font-size: 14px;
		padding: 8px 5px 8px 30px;
	}

	.wa_sec1-list li:before {
		top: .7em;
		left: 0.4em;
		width: 20px;
		height: 20px;
		border-radius: 15px;
	}

	.wa_sec1-list li:after {
		width: 5px;
		height: 10px;
		top: .8em;
		left: .8em;
		border-right: 2px solid #FFF;
		border-bottom: 2px solid #FFF;
	}
}

/* arrow-down / se_btm は既存流用 */
.wa_sec2 {
	padding: var(--v-space2) 0 var(--v-space);
	background-color: #FFF;

	position: relative;
	z-index: 1;
}

.wa_sec2__catch01 {
	font-size: clamp(18px, 5vw, 22px);
	text-align: center;
	width: 150px;
	margin-inline: auto;
	border: 1.5px solid var(--main-color);
	font-weight: 700;
	margin-bottom: 10px;
}

.wa_sec2__catch02 {
	text-align: center;
	font-size: clamp(20px, 2vw, 23px);
	font-weight: 700;
	background: linear-gradient(to right, #005CAF, #E60012);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	margin: 0 auto 1rem auto;
	max-width: fit-content;
	line-height: 1.4;
}

.wa_sec2__tx-c {
	text-align: center;
}
@media only screen and (max-width: 568px) {
	.wa_sec2__tx-c {
		text-align: left;
	}
}

/* =========================
温水器・給湯器｜対応機器（カード）
========================= */
.wa_sec3{
	padding: var(--v-space) 0;
	background-color: #e4e4e4;
	position: relative;
	z-index: 1;
}
@media print, screen and (min-width: 768px) {
	.wa_sec3 {
		background-image: url(../img/bg_03.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}
@media only screen and (max-width: 767px) {
	.wa_sec3 {
		background-image: url(../img/bg_03_sp.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}

.wa_sec3-card__item{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
@media only screen and (max-width: 767px) {
	.wa_sec3-card__item{
		grid-template-columns: 1fr;
	}
}

.wa_sec3-card__box{
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 4;
	gap: 0px;

	background-color: #ffffffe7;
	box-sizing: border-box;
	border: solid 1px var(--main-color);
}

.wa_sec3-card__box h4{
	padding: 5px 10px 0;
	font-size: clamp(18px, 2vw, 20px);
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
	color: var(--main-color);
	margin-bottom: 10px;
}
.wa_sec3-card__box h4::after{
	content: "";
	display: block;
	margin: 0 auto;
	border-bottom: dotted 1px solid var(--main-color);
	width: 100%;
}

.wa_sec3-txt{
	padding: 5px 10px 15px;
	font-size: clamp(14px, 1.6vw, 16px);
	line-height: 1.7;
	text-align: left;
}

/* =========================
wa_sec3 下部メッセージBOX（apと同構成）
========================= */
.wa_sec3-note{
	margin-top: 30px;
	padding: 20px;
	background-color: #fff8d9e7;
	border: 2px solid var(--main-color);
	border-radius: 8px;
	text-align: center;
	max-width: 650px;
	margin: 30px auto;
}

.wa_sec3-note__ttl{
	font-size: clamp(16px, 2vw, 18px);
	font-weight: bold;
	color: var(--main-color);
	margin-bottom: 8px;
}

.wa_sec3-note__txt{
	font-size: clamp(14px, 1.5vw, 15px);
	line-height: 1.7;
	color: #444;
}


/*======= FAQ ======*/
.faq_sec1 {
	padding: clamp(70px, 6vw, 90px) 0 var(--v-space) 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: 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 {
	margin-top: 15px;
	margin-bottom: 15px;
	border-top: 1px solid #e9e9e9;
}

/*======= 会社案内ページ ======*/
/*会社案内*/
.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: 850px;
	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: 280px 1fr;
	align-items: center;
	gap: 20px;
	align-items: stretch;
}

.info_sec1_container .label {
	display: flex;
	align-items: center;
	font-weight: 400;
	color: var(--txt-color);
	white-space: nowrap;
	background-color: var(--main-color);
	color:#FFF;
	padding: 5px 7px;
}

.info_sec1_container .content {
	/* display: flex; */
	align-items: center;
	color: #333;
	padding: 5px 7px;
}
.info_sec1_container .content a {
	display: inline-block;
	line-height: inherit;
}

.tel-label {
	display: inline-block;
	width: 48px;          /* ← 幅指定できる */
	margin: 0px 10px 0px 0px;
	font-size: 15px;
	font-weight: bold;
}
.mt4{
	margin-top: 4px;
}

/* レスポンシブ：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 var(--v-space2);
	background-color: #F1FAF7;

	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%;
	}
}
