@charset "UTF-8";


/*=======================================================*/
/*					セクション毎のCSS					  */
/*======================================================*/

/*============ 共通 =========== */

/* 親要素からはみ出して画面いっぱいに */
.full {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}
@media print {
	.full {
		margin: 0;
		width: 100%;
	}
}


/*タイトル(共通)*/
.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: #2d2d2d; /* 横棒の色 */
	vertical-align: middle;
	margin: 0 0.1em; /* 文章と横棒の間隔 */
}


/* 写真枠 */
/*端まで写真の背景色を突き抜ける装飾*/
/* 左に写真があるとき */
.spot_photo {
	position: relative;
	z-index: 1;
}
.spot_photo::after {
	content: "";
	position: absolute;
	top: 2rem;
	bottom: -1.5rem;
	left: calc(-1 * (100vw - 100%)/2); /* 左端まで */
	right: -1.5rem; /* 常に2rem右に広げる */
	background-color: #007bac20;
	/*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border-radius: 0 15px 15px 0;*/
	z-index: -1;
}
.spot_photo img{
	outline: 1px solid #fff;
	outline-offset: -0.6rem;
}

@media only screen and (max-width: 767px) {
	.spot_photo {
		margin-bottom: 10px;
	}
	.spot_photo::after {
		content: "";
		top: 1rem;
		bottom: -1rem;
		right: -1rem; /* 常に2rem右に広げる */
	}
}
/* 右に写真があるとき */
.spot_photo02 {
	position: relative;
	z-index: 1;
}
.spot_photo02::after {
	content: "";
	position: absolute;
	top: 2rem;
	bottom: -1.5rem;
	left: -1.5rem; /* 左に1.5rem出す */
	right: calc(-1 * (100vw - 100%) / 2); /* 右端まで突き抜ける */
	background-color: #ed930e20;
	/*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border-radius: 0 15px 15px 0;*/
	z-index: -1;
}
.spot_photo02 img{
	outline: 1px solid #fff;
	outline-offset: -0.6rem;
}

@media only screen and (max-width: 767px) {
	.spot_photo02 {
		margin-bottom: 10px;
	}
	.spot_photo02::after {
		content: "";
		top: 1rem;
		bottom: -1rem;
		left: -1rem; /* 常に2rem左に広げる */
	}
}

/*パンくず*/
.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: 50px; /* ボックスの最小幅を設定 */
	box-sizing: border-box;
	text-align: center; /* 水平方向の中央揃え */
	border-radius: 5px;
}
.kakomi-tag01 .end{		/* などを末尾につけたい場合に */
	background-color:transparent;
	color:var(--txt-color);
	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;
	background-color: #FFF;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
.greeting-haba{
	margin: 0 auto;
	max-width: 900px;
	padding: 2% 0 0 0;
}

/* ====== 理想の暮らし ====== */
.greeting-layout{
	display:grid;
	grid-row-gap: clamp(20px,2.5vw,50px);
	max-width: 700px;
	margin: 2rem auto;
}


/* 4分割グリッド（SPは2列） */
.greeting-photo{
	display:grid;
	grid-template-columns: repeat(4,1fr);
	gap: clamp(8px,1.5vw,22px);
	align-items: start;
}

/* 2番目と4番目の写真だけ下げる */
.greeting-photo .photo-card:nth-child(2),
.greeting-photo .photo-card:nth-child(4) {
	margin-top: 50px; /* 好きな値に調整 */
}

/* カード本体 */
.photo-card{
	display:grid;
	grid-template-rows: 1fr auto;
	row-gap: 8px;
}

/* 角丸“対角”のシェイプ、縦長トリミング */
.photo-thumb{
	aspect-ratio: 3 / 5;	/* タテ長比率 */
	width:100%;
	object-fit: cover;
	border-radius: 20px 0 20px 0; /* 左上・右下を大きく丸める */
	overflow:hidden;
	box-shadow: 0 6px 12px rgba(0,0,0,.2);
	/* border: 1px solid var(--main-color); */
}

@media only screen and (max-width: 767px) {
	.photo-thumb{
		border-radius: 10px 0 10px 0;
	}

}

/* タイトル（下） */
.photo-title{
	text-align:center;
	font-size: clamp(13px,1.2vw,15px);
	letter-spacing:.08em;
	color:#222;
}

/* ちょい演出 */
.photo-card:hover .photo-thumb{
	transform: translateY(-2px);
	transition: transform .25s ease, box-shadow .25s ease;
	box-shadow: 0 10px 18px rgba(0,0,0,.16);
}


/*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);
	}
}

.sns_bnr {
	width: 70%;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 568px) {
	.sns_bnr {
		width: 80%;
	}
}


/*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;
	}
}


/*======= サービス内容 ======*/
.se_sec1 {
	padding: var(--v-space2) 0 var(--v-space);
	background-color: #f5faf4;
	background-image: url(../img/bg_stripe.png);

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.se_sec1-list {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	max-width: 720px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	counter-reset: list;
}

.se_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;
}

.se_sec1-list li:before {
	content: "";
	position: absolute;
	top: 1em;
	left: 0.8em;
	width: 25px;
	height: 25px;
	background-color: var(--main-color);
	/* border: 1px solid #9c9c9c; */
	border-radius: 15px;
}

.se_sec1-list li:after {
	content: "";
	position: absolute;
	width: 7px;
	height: 14px;
	top: 1.1em;
	left: 1.3em;
	-webkit-transform: rotate(50deg);
	-ms-transform: rotate(50deg);
	transform: rotate(50deg);
	border-right: 3px solid #FFF;
	border-bottom: 3px solid #FFF;
}

.se_sec1-list li:hover {
	background-color: #d9f1d5;
}
@media only screen and (max-width: 568px) {

	.se_sec1-list {
		gap:10px;
	}

	.se_sec1-list li {
		font-size: 14px;
		padding: 8px 5px 8px 30px;
	}
	
	.se_sec1-list li:before {
		content: "";
		position: absolute;
		top: .7em;
		left: 0.4em;
		width: 20px;
		height: 20px;
		background-color: var(--main-color);
		/* border: 1px solid #9c9c9c; */
		border-radius: 15px;
	}
	
	.se_sec1-list li:after {
		content: "";
		position: absolute;
		width: 5px;
		height: 10px;
		top: .8em;
		left: .8em;
		-webkit-transform: rotate(50deg);
		-ms-transform: rotate(50deg);
		transform: rotate(50deg);
		border-right: 2px solid #FFF;
		border-bottom: 2px solid #FFF;
	}

}

/*下矢印*/
.arrow-down {
	position: absolute;
	top: calc((var(--v-space2) + 4em) * -1);
	left:50%;
	width: 80px;
	height: 80px;
	transform: translateX(-50%) rotate(-45deg);
}

.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;
	}
}
.se_sec2 {
	padding: var(--v-space2) 0 var(--v-space);
	background-color: #FFF;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.se_sec2__catch01 {
	font-size: clamp(18px,5vw,22px);
	text-align: center;
	width: 220px;
	margin-inline: auto;
	border: 1.5px solid var(--main-color);
	font-weight: 700;
	margin-bottom: 10px;
}

.se_sec2__catch02 {
	text-align: center;
	font-size: clamp(20px, 2vw, 23px);
	font-weight: 700;
	background: linear-gradient(to right, #3da53f, #9fb828);
	background-clip: text;
	-webkit-background-clip: text; /* WebKit用 */
	-webkit-text-fill-color: transparent; /* Safari, Chrome対策 */
	color: transparent; /* 保険として明示 */
	margin: 0 auto 1rem auto;
	max-width: fit-content;
	line-height: 1.4;
}

/*冒頭文章*/
.se_sec2__tx-c {
	text-align: center;
}
@media only screen and (max-width:568px) {
	.se_sec2__tx-c {
		text-align: left;
	}
}

.se_sec3 {
	padding: var(--v-space) 0;
	background-color: #f1f1f1;
	
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/* リフォーム */
.se_sec4 {
	padding: var(--v-space) 0;
	background-color: #FFF;
	
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.se_sec4__heading01 {
	position: relative;		/* 親要素を相対位置に設定 */
}

.se_sec4__heading01 h3 {
	width: fit-content;
	font-size: clamp(20px, 5vw, 35px);
	font-family: 'Noto Serif JP', serif;
	text-align: left;
	padding-left: clamp(10px, 7vw, 80px);
	margin-left: 0;
	margin-right: 0;
	position: relative;
	z-index: 1;
	opacity: 0.9;
	margin-bottom: 2vw;
}

.se_sec4__heading01 span {
	position: absolute;
	font-family: "WindSong", serif;
	margin: 0;
	font-size: clamp(50px, 10vw, 80px);
	text-align: left;
	top: -30px;
	/* 調整が必要かもしれません */
	left: 0;
	transform-origin: left top;
	pointer-events: none;
	white-space: nowrap;
	text-transform: lowercase;
	font-weight: normal;
	color: #e1511d;
	opacity: 0.3;
	transform: rotate(-10deg);
}

/*======= 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-space) 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: #007bac25;
	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: #f0f8fc;

	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%;
	}
}
