@charset "UTF-8";


/*=======================================================*/
/*      		セクション毎のCSS   			  		  */
/*======================================================*/


/*======= 共通 ======*/
/*タイトル(共通)*/
.spot-heading01 {
	font-size: clamp(30px, 4vw, 50px);
	line-height: 1;
	font-style: italic;
	text-align: center;
	font-family: "Montserrat", sans-serif;
}

.spot-heading02 {
	font-size: clamp(25px, 2.7vw, 35px);
	line-height: 1.2;
	font-style: italic;
	font-weight: 700;
	text-align: center;
	font-family: "Montserrat", sans-serif;
}

.spot-heading02+p {
	margin-top: 0.5em;
	margin-bottom: 1em;
	font-size: clamp(16px, 2vw, 20px);
	font-weight: bold;
	text-align: center;
	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;
	color: var(--accent-color2);
}

@media only screen and (max-width: 767px) {
	.spot-heading02+p {
		text-align: left;
	}

	/*<br>のブレイクポイント*/
	.br768 {
		display: none;
	}
}

.line {
	width: 1px;
	height: auto;
	padding-top: 35px;
	background-color: #fff;
	/* margin: 1.9607% auto; */
	margin: 1.1% auto;
	/*今回のみ*/
}

.line2 {
	width: 1px;
	height: auto;
	padding-top: 35px;
	background-color: #777;
	/* margin: 1.9607% auto; */
	margin: 1.1% auto;
	/*今回のみ*/
}

.hline {
	display: inline-block;
	width: 25px;
	/* 横棒の長さ（調整可） */
	height: 1px;
	/* 横棒の太さ（調整可） */
	background-color: var(--txt-color);
	/* 横棒の色 */
	vertical-align: middle;
	margin: 0 0.2em;
	/* 文章と横棒の間隔 */
}


/* タグ（左右が揃う）  */
.kakomi-tag01 {
	display: flex;
	flex-wrap: wrap; /* 子要素を折り返す */
	gap: 5px;
	width: 100%;
	justify-content: space-between; /* 左右のボックスを揃える */
}
.kakomi-tag01 p {
	background-color: #eee;
	padding: 2px 5px;
	font-size: clamp(14px, 1.3vw, 14px);
	font-family: Arial, sans-serif;
	flex-grow: 1; /* ボックスのサイズを自動調整 */
	min-width: 30px; /* ボックスの最小幅を設定 */
	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: #FFF;
	position: relative;
	/* sectionの位置を相対的にする*/
	z-index: 1;
	/* 背景画像より上に表示 */
}

.greeting-haba {
	max-width: 950px;
	margin: 0 auto;
	padding: 2% 0 0 0;
}

/*TELバナー*/
.tel_bnr {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
}

@media (max-width: 568px) {
	.tel_bnr {
		grid-template-columns: repeat(1, 1fr);
	}
}

/* pickup */
.top-card__item {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	max-width: 720px;
	margin: 0 auto;
}

@media only screen and (max-width: 767px) {
	.top-card__item {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 5px;
	}

	.top-card__item div:first-child {
		grid-column: span 2;
		/* 最後のアイテムが1つだけの場合に、2列分の幅を占める */
		justify-self: center;
		/* そのアイテムを中央に配置 */
		max-width: 50%;
	}
}

/* @media only screen and (max-width: 733px) {
	.top-card__item {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}

	.top-card__item div:first-child {
		grid-column: auto;
		/* grid-column解除 
		justify-self: auto;
		/* そのアイテムを中央に配置 
		max-width: none;
	}
} */

.top-card__item div {
	position: relative;
	aspect-ratio: 1 / 1;
	border: 1px solid var(--main-color);
	border-radius: 50%;
	overflow: hidden;
	background-color: #fff;
	display: flex;
	flex-direction: column;
}

/* 画像を上半分に配置 */
.top-card__item figure.img {
	width: 100%;
	height: 50%;
	margin: 0;
	overflow: hidden;
}

/* 上半分の画像が円のカーブに沿うように調整 */
.top-card__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* テキストは下半分に */
.top-card__item p {
	padding: 10px;
	font-size: 16px;
	font-weight: bold;
	color:#FFF;
	background-color:var(--main-color);
	line-height: 1.5;
	height: 50%;
	box-sizing: border-box;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	text-align: center;
}
@media only screen and (max-width: 478px) {
	
	.top-card__item p {
		font-size: 12px;
	}
}


/*======= 業務内容 ======*/
.sec1 {
	padding: var(--v-space) 0;
	background-color: #ebebeb;
	background-image: url(../img/bg_01.png);
	background-repeat: repeat;

	position: relative;
	/* sectionの位置を相対的にする*/
	z-index: 1;
	/* 背景画像より上に表示 */
}





/*======= Support Brand 対応メーカー ======*/
/* 共通タイトル */
.sec_heading01{
	position: relative;
	padding: 0.3em 1em 0.5em 1em;
	margin: 15px 0;
	top: 0;
	background: var(--main-color);
	color: #fff;
	font-size: clamp(19px, 2.0vw, 23px);
	font-family: 'Noto Serif JP', serif;
	line-height: 1.4;
	text-align: center;
	font-weight: 600;
}
.sec_heading01:before{ 
	position: absolute;
	top: 0;
	left: 0;
	content:'';
	width: 10px;
	height: 100%;
	display: inline-block;
	box-sizing: border-box;
	border-left: dotted 2px var(--accent-color1);
	border-top: dotted 2px var(--accent-color1);
	border-bottom: dotted 2px var(--accent-color1);
}
.sec_heading01:after{ 
	position: absolute;
	top: 0;
	right: 0;
	content:'';
	width: 10px;
	height: 100%;
	display: inline-block;
	box-sizing: border-box;
	border-right: dotted 2px var(--accent-color1);
	border-top: dotted 2px var(--accent-color1);
	border-bottom: dotted 2px var(--accent-color1);
}

/* 取扱いメーカー */
.sec2{
	padding: 0;
	position: relative;
	z-index: 1;
	background-color: #fff;
}
/*半分*/
.sec2-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 0px;
	grid-row-gap: 0px;
	align-items: center;
}

/*左カラム　画像用*/
.sec2-container-item1 {
	grid-area: 1 / 2 / 2 / 3;

	background-size: cover;
	background-repeat: no-repeat;
	height: 100%;
}
/*右カラム　文字用*/
.sec2-container-item2 {
	grid-area: 1 / 1 / 2 / 2;
	padding: 7vh 3vw;
	background-color: rgba(255, 255, 255, 0.5);
}

/*可変対応*/
@media only screen and (max-width: 1000px) {
	.sec2-container {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: repeat(1, 1fr);
		grid-column-gap: 0px;
		grid-row-gap: 0px;
	}
	.sec2-container-item1 { grid-area: 1 / 1 / 2 / 2; min-height: 350px; }
	.sec2-container-item2 { grid-area: 2 / 1 / 3 / 2; padding: 50px 30px; background-color: rgba(255, 255, 255, 0.3);}
}


/*取り扱いシリンダー*/
.sec3{
	padding: 0;
	background-color: #fff;
	position: relative;
	z-index: 1;
}
/*半分*/
.sec3-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 0px;
	grid-row-gap: 0px;
	align-items: center;
}
/*左カラム　文字用*/
.sec3-container-item3 {
	grid-area: 1 / 2 / 2 / 3;
	padding: 7vh 3vw;
	background-color: rgba(255, 255, 255, 0.5);
}
/*右カラム　画像用*/
.sec3-container-item4 {
	grid-area: 1 / 1 / 2 / 2;

	background-size: cover;
	background-repeat: no-repeat;
	height: 100%;
}

/*可変対応*/
@media only screen and (max-width: 1000px) {
	.sec3-container {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: repeat(1, 1fr);
		grid-column-gap: 0px;
		grid-row-gap: 0px;
		margin-bottom: 50px;
	}
	.sec3-container-item3 { grid-area: 2 / 1 / 3 / 2; padding: 50px 30px; background-color: rgba(255, 255, 255, 0.3);}
	.sec3-container-item4 { grid-area: 1 / 1 / 2 / 2; min-height: 350px; }
}

/*画像の選定*/
.sec2-bg01{
	background-image: url(../img/sec2-bg01.jpg);
	background-position: 100% 30%;
}
.sec3-bg01{
	background-image: url(../img/sec3-bg01.jpg);
	background-position: center bottom;
}




/*======= 施工の流れ ======*/

.sec4 {
	padding: var(--v-space) 0;
	background-color: #fcf9f6;

	position: relative;
	/* sectionの位置を相対的にする*/
	z-index: 1;
	/* 背景画像より上に表示 */
}


/*======= FAQ ======*/
.faq_sec1 {
	padding: 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 {
	height: 0px;
	border: 1px dashed var(--accent-color2);
	margin: 20px auto;
}



/*======= 会社案内ページ ======*/

/*会社案内*/
.info_sec1 {
	padding: var(--v-space) 0 ;
	background-color: #fff4f5;
	background-image: url(../img/bg_02.jpg);
	background-size: cover;
	background-position: center;

	position: relative;
	/* sectionの位置を相対的にする*/
	z-index: 1;
	/* 背景画像より上に表示 */
}

@media only screen and (max-width: 568px) {
	.info_sec1 {
		background-image: url(../img/bg_02_sp.jpg);
	}
}



/* 概要部分のテーブル */
.info1 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	color: var(--txt-color);
	padding: 5px;
	/* width: 5.25em; */
	width: 170px;
}

.info2 {
	border-bottom: 1px dashed #999;
	padding: 5px;
	/* width: 400px; */
}

@media screen and (max-width: 568px) {
	.info1 {
		display: block;
		padding: 8px 2px 2px 2px;
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0);
	}

	.info2 {
		display: block;
		padding: 2px;
		width: 99%;
	}
}



/*会社概要*/
.bg_b {
	background: rgba(255, 255, 255, 0.8);
	padding: 40px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bg_b:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 568px) {
	.bg_b {
		padding: 20px;
	}
}



.access_sec1 {
	padding: var(--v-space) 0;
	background-color: #FFF;

	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%;
	}
}