@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-space);
	background-color: #fff;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.greeting-haba{
	margin: 0 auto;
	max-width: 900px;
	padding: 2% 0 0 0;
}


.cards{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	max-width: 1000px;
	margin: var(--space-lg) auto;

	/* ここが肝：カード内の ①アイコン ②見出し ③本文 の行を親で定義 */
	grid-template-rows: auto auto 1fr;
	align-items: stretch;
}

.card-item{
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 4;           /* 親の 3行分をこのカードが使う */
	align-content: start;
	gap:0px;

	background: #ffffff;
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 14px;
	padding: 34px 26px;
	text-align: center;
	text-decoration: none;
	color: var(--txt-color);
}
.card-icon{
	display: grid;
	place-items: center;
}

.card-title{
	margin: 18px 0 12px;
	font-size: 20px;
	font-weight: 600;
	color: var(--accent-color2); /* ネイビー(#036EB8)想定 */
	text-align: center;
}

.card-text{
	font-size: clamp(0.875rem, 1.2vw, 1rem);
	line-height: 1.85;
	margin: 0;
	text-align: left;
	text-align: justify;/*文字両端ぞろえ*/
}


/* レスポンシブ：1列でも自然に */
@media (max-width: 900px){
	.cards{
		grid-template-columns: 1fr;
		/* 1列でもこの行設計はそのまま効きます */
	}
}

/* ボタン */
.card-btn{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 1rem auto;
	

	min-width: 220px;
	max-width: 250px;
	padding: 14px 18px;
	border-radius: 999px;

	background: var(--main-color);
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;

	transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
	position: relative;
}

/* 矢印（疑似要素） */
.card-btn::after{
	content: "›";
	font-size: 18px;
	line-height: 1;
	margin-left: 6px;
	position: relative;
	top: -2px; /* 微調整 */
	transition: transform .2s ease;
}

.card-btn:hover{
	box-shadow: 0 10px 22px rgba(0,0,0,0.14);
	filter: brightness(0.98) contrast(1.05);
}

/* ホバーでスッと動かす */
.card-btn:hover::after{
	transform: translateX(4px);
}


/* レスポンシブ */
@media (max-width: 900px){
	.cards{
		grid-template-columns: 1fr;
	}
	.card-item{
		text-align: left;
	}
	.card-actions{
		justify-content: flex-start;
	}
}

/*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;
	}
}

/* =========================================
   sec1（定額制）
========================================= */

.sec1{
	padding: var(--v-space2) 0;
	background-color: #fff;
	position: relative;
	z-index: 1;
}

/* 見出し */
.sec1_heading{
	display: grid;
	gap: 10px;
	text-align: center;
	justify-items: center;
	margin: 0;
	font-weight: 600;
	font-size: clamp(1.5rem, 3vw, 2rem); /* 24px〜32px */
	letter-spacing: 0.06em;
	line-height: 1.2;
}

.sec1_heading::after{
	content: attr(data-en);
	display: block;
	font-size: 0.75rem; /* 12px */
	letter-spacing: 0.28em;
	font-weight: 700;
	color: var(--accent-color2); /* 東京はネイビー */
}

/* 導入 */
.sec1_intro{
	margin-top: 18px;
	display: grid;
	gap: 12px;
}

.sec1_lead{
	margin: 0;
	line-height: 1.9;
	font-size: clamp(0.875rem, 1.6vw, 1rem); /* 14px〜16px */
}

/* 料金カード */
.sec1_cards{
	margin-top: 28px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.sec1_card{
	background: #fff;
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 14px;
	box-shadow: 0 6px 14px rgba(0,0,0,0.06); /* 都会的に軽め */
	padding: 22px 18px;
	text-align: center;

	display: grid;
	place-items: center;
	gap: 8px;
}

.sec1_card__icon{
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 28px;
}

/* アイコン背景 */
.icon-blue{ background: var(--accent-color2); } /* #036EB8 */
.icon-green{ background:#2f9e44; }
.icon-lime{ background: var(--main-color); }    /* #8BC34A */

.sec1_card__title{
	margin: 0;
	font-size: 1.125rem; /* 18px */
	font-weight: 600;
	letter-spacing: 0.04em;
}

.sec1_card__sub{
	margin: 0;
	font-size: 0.8125rem; /* 13px */
	opacity: 0.8;
	letter-spacing: 0.08em;
}

.sec1_card__price{
	margin: 6px 0 0;
	font-size: 2.125rem; /* 34px */
	font-weight: 900;
	color: var(--accent-color2); /* 価格はネイビー */
	letter-spacing: 0.02em;
}

.sec1_card__note{
	margin: 0;
	font-weight: 700;
}

/* 計算エリア */
.sec1_calc{
	margin-top: 34px;
	border-top: 1px solid rgba(0,0,0,0.08);
	padding-top: 26px;
}

.sec1_calc__title{
	margin: 0 0 10px;
	font-size: 1.25rem; /* 20px */
	font-weight: 900;
	letter-spacing: 0.04em;
}

.sec1_calc__text{
	margin: 0 0 14px;
	line-height: 1.9;
	font-size: clamp(0.875rem, 1.3vw, 1rem); /* 14px〜16px */
}

.sec1_calc__box{
	background: var(--accent-color3); /* 東京はライトグレー */
	border-radius: 14px;
	padding: 18px;
	border: 1px solid rgba(0,0,0,0.06);
}

.sec1_calc__formula{
	margin: 0 0 14px;
	font-weight: 900;
	letter-spacing: 0.02em;
}

.sec1_calc__examples{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.sec1_example{
	background: #fff;
	border-radius: 12px;
	padding: 14px;
	border: 1px solid rgba(0,0,0,0.06);
}

.sec1_example__head{
	margin: 0 0 10px;
	font-weight: 900;
	color: var(--main-color);
}

.sec1_example__list{
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 8px;
}

.sec1_example__list li{
	position: relative;
	padding-left: 1.4em;
	line-height: 1.7;
}

/* ● */
.sec1_example__list li::before{
	content: "";
	position: absolute;
	top: 0.6em;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--main-color);
}

.sec1_example__small{
	margin: 10px 0 0;
	font-size: 0.75rem; /* 12px */
	opacity: 0.8;
	line-height: 1.7;
}

.sec1_calc__caution{
	margin: 12px 0 0;
	font-size: 0.75rem; /* 12px */
	opacity: 0.75;
	line-height: 1.7;
}

/* レスポンシブ */
@media only screen and (max-width: 968px){
	.sec1_cards{
		grid-template-columns: repeat(2, 1fr);
	}
	.sec1_calc__examples{
		grid-template-columns: 1fr;
	}
}

@media only screen and (max-width: 568px){
	.sec1_cards{
		grid-template-columns: 1fr;
	}
	.sec1_card__price{
		font-size: 2rem; /* 32px */
	}
}

/* =========================================
   sec2（サービス案内）
========================================= */

.sec2{
	padding: clamp(20px, 3vw, 45px) 0 0;
	background-color: #fff;
	position: relative;
	z-index: 1;
}

.sec2::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: clamp(5px,1vw,8px);
	background-image: linear-gradient(
		135deg,
		#704308 0%,
		#bb9f2c 40%,
		#b7ab2d 60%,
		#704308 100%
	);
}

.sec2_heading{
	text-align: center;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 600;
	letter-spacing: 0.06em;
	margin: 0 0 clamp(20px, 3vw, 45px);
	position: relative;
}

.sec2_heading::after{
	content: attr(data-en);
	display: block;
	margin-top: 8px;
	font-size: 0.75rem;
	letter-spacing: 0.3em;
	font-weight: 700;
	color: var(--accent-color2);
}


.sec2_title{
	font-size: clamp(1.1rem, 2.5vw, 1.5rem);
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--accent-color2);
}



/* =========================================
   sec3（SERVICE：カード）
========================================= */

.sec3{
	padding: var(--v-space2) 0;
	background-color: #fff;
	position: relative;
	z-index: 1;
}

.sec3_heading{
	text-align: center;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 600;
	letter-spacing: 0.06em;
	margin: 0 0 18px;
}

.sec3_heading::after{
	content: attr(data-en);
	display: block;
	margin-top: 8px;
	font-size: 0.75rem;
	letter-spacing: 0.3em;
	font-weight: 700;
	color: var(--accent-color2);
}

.sec3_lead{
	max-width: 980px;
	margin: 0 auto 40px;
	text-align: center;
	line-height: 1.9;
	font-size: clamp(0.875rem, 1.4vw, 1rem);
	color: rgba(0,0,0,0.78);
}

/* cards */
.sec3_cards{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.sec3_card{
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 4;           /* 親の 3行分をこのカードが使う */
	align-content: start;
	gap:0px;

	background: #fff;
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 14px;
	padding: 22px 18px;
	box-shadow: 0 8px 18px rgba(0,0,0,0.06);
	gap: 12px;
}

.sec3_card__head{
	display: grid;
	gap: 10px;
}

.sec3_card__icon{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	padding: 6px 10px;
	border-radius: 20px;
	font-weight: 800;
	letter-spacing: 0.14em;
	font-size: 0.75rem;
	color: #fff;
}

.icon-sale{ background: var(--accent-color2); } /* ネイビー */
.icon-buy{ background: #2f9e44; }              /* グリーン */
.icon-rent{ background: #A89F91; }             /* グレージュ */
.icon-help{ background: var(--main-color); }   /* ブランドグリーン */

.sec3_card__title{
	margin: 0;
	font-size: 1.1rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	color: var(--accent-color2);
}

.sec3_card__text{
	margin: 0;
	line-height: 1.85;
	font-size: clamp(0.875rem, 1.2vw, 0.95rem);
	color: rgba(0,0,0,0.78);
}

.sec3_card__list{
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 8px;
}

.sec3_card__list li{
	position: relative;
	padding-left: 1.2em;
	line-height: 1.7;
	font-size: 0.875rem;
	color: rgba(0,0,0,0.75);
}

.sec3_card__list li::before{
	content: "";
	position: absolute;
	top: 0.58em;
	left: 0;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--main-color);
}

/* カード高さを揃える */
.sec3_cards{
	align-items: stretch;
}

.sec3_card{
	display: flex;
	flex-direction: column;
}


/* responsive */
@media (max-width: 1100px){
	.sec3_cards{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 568px){
	.sec3_cards{
		grid-template-columns: 1fr;
	}
	.sec3_lead{
		text-align: left;
	}
}

/* =========================
  ninbai_lp（1P用：任意売却 1セクション）
========================= */

.ninbai_lp{
	padding: 0 0 var(--v-space2);
	background: #fff;
	position: relative;
	z-index: 1;
}
@media print, screen and (min-width: 768px) {
	.ninbai_lp {
		background-image: url(../img/bg_03.jpg);
		background-repeat: no-repeat;
		background-position: bottom;
		background-size: 100%;
	}
}
@media only screen and (max-width: 767px) {
	.ninbai_lp {
		background-image: url(../img/bg_03_sp.jpg);
		background-repeat: no-repeat;
		background-position: bottom;
		background-size: 100%;
	}
}

/* head */
.ninbai_lp__head{
	text-align: center;
	margin-bottom: 34px;
}

.ninbai_lp__title .sub{
	display: block;
	font-size: 0.85rem;
	color: var(--main-color);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 600;
	margin: 0 0 2px;
}

.ninbai_lp__title h2{
	font-size: clamp(1.5rem, 4vw, 2rem);
	color: var(--accent-color2);
	margin: 0;
	font-weight: 700;
}

/* 縦ライン装飾（既存と合わせ） */
.line-deco{
	width: 1px;
	height: 50px;
	background-color: var(--main-color);
	margin: 0 auto 18px;
}

.ninbai_lp__lead{
	margin: 14px 0 0;
	line-height: 1.9;
	color: rgba(0,0,0,0.75);
	font-size: clamp(0.95rem, 1.2vw, 1rem);
}

/* =========================
定義＋比較
========================= */

.ninbai_lp__info-box{
	max-width: 1000px;
	margin: 28px auto 0;
}

.ninbai_lp__desc{
	text-align: center;
	margin-bottom: 18px;
}

.ninbai_lp__desc h3{
	display: inline-block;
	margin: 0 0 2rem;
	font-size: clamp(1.2rem, 2.4vw, 1.5rem);
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--txt-color);
	padding-bottom: 10px;
	border-bottom: 2px solid var(--accent-color2);
}

.ninbai_lp__desc p{
	margin: 0 0 5rem;
	text-align: left;
	line-height: 1.9;
	color: rgba(0,0,0,0.72);
	background: #fff;
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: 14px;
	padding: clamp(16px, 2.2vw, 22px);
	box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

/* 比較カード */
.ninbai_lp__comparison{
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 14px;
	margin-top: 18px;
	margin-bottom: 5rem;
}

.comp-card{
	flex: 1;
	border-radius: 14px;
	padding: clamp(16px, 2.2vw, 22px);
	border: 1px solid rgba(0,0,0,0.08);
	background: #fff;
}

.comp-card__label{
	text-align: center;
	font-weight: 900;
	letter-spacing: 0.06em;
	margin: 0 0 12px;
	font-size: 1.2rem;
	color: var(--accent-color2);
}

.comp-card__list{
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}

.comp-card__list li{
	position: relative;
	padding-left: 1.4em;
	line-height: 1.6;
	color: rgba(0,0,0,0.72);
	font-size: clamp(0.875rem, 1.2vw, 0.95rem);
}

.comp-card__list li::before{
	content: "";
	position: absolute;
	top: 0.55em;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent-color2);
}

/* 任意売却カード：主役感 */
.comp-card.ninbai{
	border: 2px solid var(--accent-color2);
	box-shadow: 0 14px 34px rgba(3,110,184,0.12);
}

/* 競売カード：少し控えめ */
.comp-card.keibai{
	background: #f5f5f5;
	border-color: rgba(0,0,0,0.10);
}

.comp-card.keibai .comp-card__label{
	color: rgba(0,0,0,0.55);
}

.comp-card.keibai .comp-card__list li{
	color: rgba(0,0,0,0.55);
}

.comp-card.keibai .comp-card__list li::before{
	background: rgba(0,0,0,0.25);
}

/* VS */
.vs-icon{
	flex: 0 0 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-style: italic;
	color: #ff0101a1;
	font-size: 2rem;
	letter-spacing: 0.06em;
	user-select: none;
}

/* =========================
3ポイント
========================= */

.ninbai_lp__grid{
	margin-top: 26px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.ninbai_lp__point{
	background: #fff;
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: 12px;
	padding: 18px 18px 16px;
	text-align: left;
	position: relative;
}

.ninbai_lp__point::before{
	content:"";
	position:absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	border-radius: 14px 14px 0 0;
	background: linear-gradient(90deg, var(--main-color), rgba(3,110,184,0.9));
}

.ninbai_lp__point h3{
	margin: 8px 0 8px;
	color: var(--accent-color2);
	font-size: clamp(1.05rem, 1.8vw, 1.15rem);
	font-weight: 700;
	letter-spacing: 0.02em;
}

.ninbai_lp__point p{
	margin: 0;
	line-height: 1.85;
	color: rgba(0,0,0,0.72);
	font-size: clamp(0.875rem, 1.2vw, 0.95rem);
}

/* =========================
専門家連携
========================= */

.ninbai_lp__support{
	margin-top: 3rem;
	margin-bottom: 3rem;
	background: #ffffffb0;
	border: 1px solid rgba(0,0,0,0.06);
	padding: clamp(18px, 3.5vw, 34px);
}

.support-inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	max-width: 980px;
	margin: 0 auto;
}

.support-content{
	flex: 1;
	min-width: 240px;
}

.support-content h3{
	margin: 0 0 10px;
	font-size: clamp(1.1rem, 2.2vw, 1.35rem);
	color: var(--accent-color2);
	font-weight: 900;
	letter-spacing: 0.04em;
}

.support-content p{
	margin: 0;
	line-height: 1.9;
	color: rgba(0,0,0,0.65);
	font-size: clamp(0.9rem, 1.2vw, 0.98rem);
}

.support-tags{
	flex: 0 0 320px;
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}

.support-tags li{
	background: #fff;
	border-left: 4px solid var(--main-color, #036eb8);
	border-radius: 10px;
	padding: 12px 14px;
	font-size: clamp(0.9rem, 1.1vw, 0.95rem);
	font-weight: 700;
	color: rgba(0,0,0,0.75);
	box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

/* =========================
  既存：CTA
========================= */

.ninbai_lp__cta{
	margin-top: 26px;
	text-align: center;
}

.ninbai_lp__btn{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 260px;
	padding: 14px 18px;
	border-radius: 999px;
	background: var(--main-color);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: 0.02em;
	transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.ninbai_lp__btn:hover{
	box-shadow: 0 10px 22px rgba(0,0,0,0.14);
	filter: brightness(0.98) contrast(1.05);
	transform: translateY(-1px);
}

.ninbai_lp__btn::after{
	content: "›";
	font-size: 18px;
	line-height: 1;
	margin-left: 8px;
	position: relative;
	top: -1px;
	transition: transform .2s ease;
}

.ninbai_lp__btn:hover::after{
	transform: translateX(4px);
}

.ninbai_lp__note{
	margin-top: 10px;
	font-size: 0.85rem;
	color: rgba(0,0,0,0.62);
}

/* responsive */
@media (max-width: 900px){
	/* 比較：縦積み */
	.ninbai_lp__comparison{
		flex-direction: column;
	}
	.vs-icon{
		flex: none;
		height: 40px;
	}

	/* 3ポイント：縦積み */
	.ninbai_lp__grid{
		grid-template-columns: 1fr;
	}

	/* 連携：縦積み */
	.support-inner{
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}
	.support-tags{
		flex: none;
		width: 100%;
	}
}


/* =========================
   sec4（対応エリア）
========================= */

.sec4 {
	padding: var(--v-space2) 0;
}
/* 印刷時は固定背景を出力する */
@media print{
	.sec4{
		background-image: url(../img/bg_01.jpg);
	}
}

/* 見出し */
.area_title {
	text-align: center;
	margin-bottom: 5vh;
}

.area_title .sub {
	display: block;
	font-size: 0.85rem;
	color: var(--main-color);
	letter-spacing: 0.2em;
	margin-bottom: 0;
	text-transform: uppercase;
	font-weight: 600;
}

.area_title h2 {
	font-size: clamp(1.5rem,4vw,2rem);
	color: #fff;
	margin: 0;
	font-weight: 700;
}

/* ヘッダー */
.sec4__header {
	text-align: center;
	margin-bottom: 2vh;
}

.sec4__pin {
	color: var(--main-color);
	margin: 0 auto 10px;
	width: 40px;
	height: 40px;
}

.sec4__lead {
	margin: 0;
	font-weight: 500;
	color: #fff;
}

/* ボックス */
.sec4__box {
	background: var(--base-color);
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 4px;
	overflow: hidden;
	position: relative;
}

/* グリッド */
.sec4__grid {
	display: grid;
	grid-template-areas: "tokyo kanagawa";
	grid-template-columns: 1fr 1fr;
}

.sec4__area {
	padding: 40px;
	position: relative;
	isolation: isolate;
}

.sec4__area--kanagawa {
	grid-area: kanagawa;
}

.sec4__area--tokyo {
	grid-area: tokyo;
	border-right: 1px solid rgba(0,0,0,0.08);
}

/* 背景地図 */
.sec4__area--kanagawa::before,
.sec4__area--tokyo::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 0.1;
	pointer-events: none;
}

.sec4__area--kanagawa::before {
	background-image: url(../img/map-kanagawa.png);
}

.sec4__area--tokyo::before {
	background-image: url(../img/map-tokyo23.png);
}

/* 見出し */
.sec4__label {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--main-color);
	letter-spacing: 0.1em;
}

.sec4__name {
	font-size: 1.6rem;
	color: var(--accent-color2);
	font-weight: 700;
	margin: 0 0 10px;
}

/* 市区町村 */
.sec4__cities {
	font-size: 0.85rem;
	color: var(--txt-color);
	display: flex;
	flex-wrap: wrap;
	gap: 6px 10px;
}

.sec4__city {
	display: inline-block;
	background: rgba(255,255,255,0.8);
	padding: 0 2px;
}

/* 注記 */
.sec4__note {
	margin: 15px 0 0;
	font-size: 0.8rem;
	color: var(--accent-color2);
	border-top: 1px dashed rgba(0,0,0,0.2);
	padding-top: 10px;
	width: 100%;
}

/* フッター */
.sec4__foot {
	margin-top: 2vh;
	text-align: center;
}

.sec4__foot-text {
	margin: 0;
	font-size: 0.85rem;
	color: var(--txt-color);
}

/* レスポンシブ */
@media only screen and (max-width: 850px) {
	.sec4__grid {
		grid-template-areas:
			"tokyo"
			"kanagawa";
		grid-template-columns: 1fr;
	}

	.sec4__area--tokyo {
		border-right: none;
		border-bottom: 1px solid rgba(0,0,0,0.08);
	}

	.sec4__area {
		padding: 30px;
	}
}

@media only screen and (max-width: 467px) {
	.sec4__area--tokyo::before {
		background-size: 110%;
	}
	.sec4__area--kanagawa::before {
		background-size: 150%;
	}
}


/*======= FAQ ======*/
.faq_sec1 {
	padding: var(--v-space) 0;
	background-image: repeating-linear-gradient(45deg,
				#f7f7f7,
				#f7f7f7 8px,
				#ffffff 8px,
				#ffffff 16px);

	position: relative;
	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: var(--v-space) 0 ;
	position: relative;
	z-index: 1;
}
@media print, screen and (min-width: 768px) {
	.info_sec1 {
		background-image: url(../img/bg_02.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}
@media only screen and (max-width: 767px) {
	.info_sec1 {
		background-image: url(../img/bg_02_sp.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}



/* 概要部分のテーブル */
.info1 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	color: var(--txt-color);
	padding: 5px;
	/* width: 5.25em; */
	width: 170px;
	text-align: left;
}

.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.9);
	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%;
	}
}