@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: 900px;
	padding: 2% 0 0 0;
}

/*======= 新着情報 ======*/
.blog_sec1 {
	padding: var(--v-space) 0 var(--v-space2);
	background-color: #FFF;
	position: relative;
	z-index: 1;
}

/*======= お問い合わせ ======*/
.contact_sec {
	padding: var(--v-space) 0 clamp(90px, 7vw, 150px) 0;
	background-color: #f2faf8;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}

@media print, screen and (min-width: 768px) {
	.conbg-01 {
		background-image: url(../img/bg_01.jpg);
		background-repeat: no-repeat;
		background-position: bottom;
		background-size: cover;
	}
}
@media only screen and (max-width: 767px) {
	.conbg-01 {
		background-image: url(../img/bg_01_sp.jpg);
		background-repeat: no-repeat;
		background-position: bottom;
		background-size: cover;
	}
}
.contact_sec h2{
	font-size: clamp(22px,3vw,30px);
	letter-spacing: 0.28em;
	font-weight: 700;
	color: var(--main-color);
	text-align: center;
	text-indent: 0.28em; /* letter-spacing分を補正 */
}
.contact_sec p {
	font-size: clamp(15px,1.5vw,16px);
	line-height: 1.5;
	color: var(--txt-color);
	/* text-shadow: 0 0 10px rgba(0, 0, 0, 0.9); */
	text-align: center;
}

.contact_bg{
	background-color: rgba(255, 255, 255, 0.9);
	padding: 40px 20px 40px 20px;
	margin: 0 auto;
}

/*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_sec1 {
	padding: 0 0 var(--v-space2);
	background-color: #FFF;
	position: relative;
	z-index: 1;
}

/* タイトル */
.top_sec1_heading {
	display: grid;
	gap: 10px;
	text-align: center;
	justify-items: center;
	margin: 0;
	font-weight: 600;
	font-size: clamp(24px, 3vw, 30px);
	letter-spacing: 0.06em;
	line-height: 1.2;
}

.top_sec1_heading::after {
	content: attr(data-en);
	display: block;
	font-size: 12px;
	letter-spacing: 0.28em;
	font-weight: 700;
	color: var(--main-color); /* アクセントカラー */
}

/* 挨拶 */
.top_sec1_greeting {
	display: grid;
	grid-template-columns: 1fr 350px;
	gap: 40px;
	align-items: start;
	/* margin-top: 28px; */
	padding-top: 28px;
	/* border-top: 1px solid #e6e6e6; */
}

/* PC：文章→プロフィール（写真右） */
.top_sec1_greeting__body {
	order: 1;
}

.top_sec1_greeting__profile {
	order: 2;
	display: grid;
	grid-template-columns: 150px 1fr;
	gap: 18px;
	align-items: center;
	position: relative;
	padding-left: 32px;
}

.top_sec1_greeting__profile::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 100%;
	background-color: #e6e6e6;
}

/* 写真 */
.top_sec1_greeting__photo {
	width: 150px;
	aspect-ratio: 1 / 1;
	border-radius: 999px;
	border: 2px solid var(--main-color);
	padding: 6px;
	background: #fff;
	box-sizing: border-box;
}

.top_sec1_greeting__photo img {
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 999px;
	object-fit: cover;
}

/* テキスト */
.top_sec1_greeting__catch {
	font-size: clamp(18px, 2.2vw, 25px);
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.02em;
	margin: 0 0 16px;
}

.top_sec1_greeting__text {
	margin: 0 0 12px;
	line-height: 1.9;
	font-size: clamp(14px,1.6vw,16px);
}

.top_sec1_greeting__role {
	margin: 0 0 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	opacity: 0.8;
}

.top_sec1_greeting__name {
	margin: 0 0 4px;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.top_sec1_greeting__name-en {
	margin: 0;
	font-size: 12px;
	letter-spacing: 0.12em;
	opacity: 0.7;
}

/* SP：プロフィール（写真）を上、文章を下 */
@media only screen and (max-width: 767px) {
	.top_sec1_greeting {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.top_sec1_greeting__profile {
		order: 1;
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
		padding-left: 0;
		padding-top: 0;
	}
	.top_sec1_greeting__profile::before {
		display: none;
	}

	.top_sec1_greeting__body {
		order: 2;
	}

	.top_sec1_greeting__photo {
		width: 150px;
	}
}

/*===============================
	top_sec2（サポートまとめ）
================================*/
.top_sec2 {
	padding: var(--v-space2) 0;
	background: #f9ffea;
}

/* 見出し */
.top_sec2_heading {
	display: grid;
	gap: 10px;
	text-align: center;
	justify-items: center;
	margin: 0;
	font-weight: 600;
	font-size: clamp(24px, 3vw, 30px);
	letter-spacing: 0.06em;
	line-height: 1.2;
}

.top_sec2_heading::after {
	content: attr(data-en);
	font-size: 12px;
	letter-spacing: 0.28em;
	font-weight: 700;
	color: var(--main-color);
}

/* リード */
.top_sec2_lead {
	max-width: 920px;
	margin: 18px auto 0;
	line-height: 1.9;
	font-size: clamp(14px, 1.6vw, 16px);
	text-align: center;
}

/* グリッド */
.top_sec2_grid {
	margin-top: 28px;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 22px;
}

/* カード共通 */
.top_sec2_card {
	background: #fff;
	border-radius: 14px;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.08);
	padding: 22px;
	display: grid;
	grid-template-rows: auto 1fr auto;
	gap: 12px;
	border: 1px solid #e8e8e8;
}

.top_sec2_card__title {
	margin: 0;
	font-weight: 600;
	letter-spacing: 0.04em;
	font-size: clamp(16px, 2vw, 18px);
	line-height: 1.35;
}

.top_sec2_card__text {
	margin: 0;
	line-height: 1.9;
	font-size: clamp(14px, 1.6vw, 16px);
}

/* 任意売却カードだけ少し強調 */
.top_sec2_card--ninbai {
	background: linear-gradient(180deg, rgba(244, 156, 20, 0.12), #fff);
	border-color: rgba(244, 156, 20, 0.5);
}

/* リスト */
.top_sec2_card__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.top_sec2_card__list li {
	font-size: 1rem;
	color: var(--txt-color);
	margin-bottom: 8px;
	display: flex;
	align-items: flex-start;
}

.top_sec2_card__list li::before {
	content: "●";
	color: var(--main-color);
	font-size: 0.6rem;
	margin-right: 8px;
	margin-top: 6px;
}

/* ボタン（カード内） */
.top_sec2__btn{
	margin: 0;
	padding: 0 18px 18px;
	display: grid;
	place-items: center;
}

.top_sec2__btn a{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: min(100%, 260px);
	padding: 12px 16px;
	border-radius: 9999px;
	background: var(--main-color);
	color: #fff;
	font-weight: 400;
	letter-spacing: 0.04em;
	text-decoration: none;
	transition: transform 0.2s, filter 0.2s;
}

.top_sec2__btn a::after{
	content: "›";
	font-size: 18px;
	line-height: 1;
	position: relative;
	top: -3px;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.top_sec2__btn a:hover{
	filter: brightness(1.02);
	box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* レスポンシブ */
@media only screen and (max-width: 1185px) {
	.top_sec2_grid {
		grid-template-columns: 1fr 1fr;
	}
	.top_sec2_card--ninbai {
		grid-column: 1 / -1;
	}
}

@media only screen and (max-width: 600px) {
	.top_sec2_grid {
		grid-template-columns: 1fr;
	}
	.top_sec2_card {
		padding: 18px;
	}
	.top_sec2_lead {
		text-align: left;
	}
}

/*================================
	ABOUT：大切にしていること
================================*/
.about_sec1{
	padding: var(--v-space) 0;
	background-color: var(--accent-color3);
	position: relative;
	z-index: 1;
}

/* 背景写真*/
@media print, screen and (min-width: 768px){
	.about_sec1{
		background-image: url(../img/about_bg01.jpg);
		background-repeat: no-repeat;
		background-position: bottom;
		background-size: cover;
	}
}
@media only screen and (max-width: 767px){
	.about_sec1{
		background-image: url(../img/about_bg01_sp.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}


/* タイトル */
.about_sec1-heading{
	font-size: clamp(24px, 2.5vw, 30px);
	line-height: 1.35;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--txt-color);
	margin-bottom: 20px;
}

/* テキスト */
.about_sec1-txt{
	font-size: clamp(14px, 1.5vw, 16px);
	line-height: 1.9;
	color: var(--txt-color);
}

/*=========================
	ABOUT：Point（フルワイド）
=========================*/
.about_sec2{
	padding: var(--v-space) 0 0;
	background: #fff;
	position: relative;
	z-index: 1;
}

.about_points{
	display: grid;
}

.about_point{
	padding: 50px 0;
	background: #f7fbf4;
}
.about_point:first-child{
	padding-top: 0;
}
.about_point:last-child{
	padding: 50px 0 var(--v-space);
}

/* odd:奇数 even：偶数*/
.about_point:nth-child(odd){
	background: #ffffff;
}

.about_point__inner{
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 26px;
	align-items: center;
}

.about_point--rev .about_point__inner{
	grid-template-columns: 1fr 1.1fr;
}

.about_point__img{
	margin: 0;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.08);
}

.about_point__img img{
	width: 100%;
	height: 100%;
	display: block;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.about-point-head{
	margin-bottom: 14px;
}

/* ミニ説明ラベル */
.about-mini-label{
	margin: 0 0 6px;
	font-size: 14px;
	font-weight: 700;
	color: var(--accent-color1);
	letter-spacing: 0.08em;
}

/* Point見出し */
.about-point-title{
	margin: 0;
	margin-bottom: 10px;
	font-size: clamp(18px, 2.4vw, 22px);
	font-weight: 600;
	line-height: 1.4;
	display: flex;
	gap: 10px;
	align-items: baseline;
}

.about-point-text{
	color: #000;
}


.point-label {
	flex-shrink: 0;
	color: var(--main-color);
}

.point-text {
	display: inline-block;
	/* 折り返し制御 */
}

.about_point__no{
	color: var(--main-color);
	margin-right: 8px;
}

.about_point__lead{
	margin: 0 0 12px;
	line-height: 1.9;
	font-size: clamp(14px, 1.6vw, 16px);
	color: var(--accent-color2);
}

.about_point__list{
	margin: 12px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 8px;
}

.about_point__list li{
	position: relative;
	padding-left: 1.4em;
	line-height: 1.7;
	font-size: 15px;
}

/* ● */
.about_point__list li::before{
	content: "";
	position: absolute;
	top: 0.65em;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--main-color); /* TOPと同じグリーン */
}

.about_point__btn{
	margin-top: 14px;
	display: grid;
	place-items: end;
}

/* ボタン（あなたのデザイン踏襲） */
.about_point__btn a{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: min(100%, 260px);
	padding: 12px 16px;
	border-radius: 9999px;
	background: var(--main-color);
	color: #fff;
	font-weight: 400;
	letter-spacing: 0.04em;
	text-decoration: none;
	transition: transform 0.2s, filter 0.2s;
}

.about_point__btn a::after{
	content: "›";
	font-size: 18px;
	line-height: 1;
	position: relative;
	top: -3px;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.about_point__btn a:hover{
	filter: brightness(1.02);
	box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

@media only screen and (max-width: 767px){
	.about_point__inner{
		grid-template-columns: 1fr;
	}
	.about_point--rev .about_point__inner{
		grid-template-columns: 1fr;
	}
	.about_point__btn{
		place-items: center;
	}
}


/* ======= about_sec3（定額制） ======= */
.about_sec3{
	padding: var(--v-space) 0;
	background: #fff;
}

.about_sec3_heading{
	display: grid;
	gap: 10px;
	text-align: center;
	justify-items: center;
	margin: 0;
	font-weight: 600;
	font-size: clamp(24px, 3vw, 32px);
	letter-spacing: 0.06em;
	line-height: 1.2;
}

.about_sec3_heading::after{
	content: attr(data-en);
	display: block;
	font-size: 12px;
	letter-spacing: 0.28em;
	font-weight: 700;
	color: var(--main-color);
}

.about_sec3_intro{
	margin-top: 18px;
	display: grid;
	gap: 12px;
}

.about_sec3_lead{
	margin: 0;
	line-height: 1.9;
	font-size: clamp(14px, 1.6vw, 16px);
}

/* 料金カード */
.about_sec3_cards{
	margin-top: 28px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.about_sec3_card{
	background: #fff;
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 14px;
	box-shadow: 0 8px 18px rgba(0,0,0,0.08);
	padding: 22px 18px;
	text-align: center;
	display: grid;
	place-items: center;
	gap: 8px;
}

.about_sec3_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:#0a74c9; }
.icon-green{ background:#2f9e44; }
.icon-lime{ background:#8bc34a; }

.about_sec3_card__title{
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.about_sec3_card__sub{
	margin: 0;
	font-size: 13px;
	opacity: 0.8;
	letter-spacing: 0.08em;
}

.about_sec3_card__price{
	margin: 6px 0 0;
	font-size: 34px;
	font-weight: 900;
	color: #1677ff; /* 青は視認性目的（必要なら変えてOK） */
	letter-spacing: 0.02em;
}

.about_sec3_card__note{
	margin: 0;
	font-weight: 700;
}

/* 計算エリア */
.about_sec3_calc{
	margin-top: 34px;
	border-top: 1px solid rgba(0,0,0,0.08);
	padding-top: 26px;
}

.about_sec3_calc__title{
	margin: 0 0 10px;
	font-size: 20px;
	font-weight: 900;
	letter-spacing: 0.04em;
}

.about_sec3_calc__text{
	margin: 0 0 14px;
	line-height: 1.9;
}

.about_sec3_calc__box{
	background: #f7fbf4;
	border-radius: 14px;
	padding: 18px;
	border: 1px solid rgba(0,0,0,0.06);
}

.about_sec3_calc__formula{
	margin: 0 0 14px;
	font-weight: 900;
	letter-spacing: 0.02em;
}

.about_sec3_calc__examples{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.about_sec3_example{
	background: #fff;
	border-radius: 12px;
	padding: 14px;
	border: 1px solid rgba(0,0,0,0.06);
}

.about_sec3_example__head{
	margin: 0 0 10px;
	font-weight: 900;
	color: var(--main-color);
}

.about_sec3_example__list{
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 8px;
}

.about_sec3_example__list li{
	position: relative;
	padding-left: 1.4em;
	line-height: 1.7;
}

/* ●（TOPと同じ系統） */
.about_sec3_example__list li::before{
	content: "";
	position: absolute;
	top: 0.6em;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--main-color);
}

.about_sec3_example__small{
	margin: 10px 0 0;
	font-size: 12px;
	opacity: 0.8;
	line-height: 1.7;
}

.about_sec3_calc__caution{
	margin: 12px 0 0;
	font-size: 12px;
	opacity: 0.75;
	line-height: 1.7;
}

/* レスポンシブ */
@media only screen and (max-width: 968px){
	.about_sec3_cards{
		grid-template-columns: repeat(2, 1fr);
	}
	.about_sec3_calc__examples{
		grid-template-columns: 1fr;
	}
}

@media only screen and (max-width: 568px){
	.about_sec3_cards{
		grid-template-columns: 1fr;
	}
	.about_sec3_card__price{
		font-size: 32px;
	}
}

/* =========================
   Service Page
   ========================= */

.service_sec1,
.service_flow,
.service_sec2,
.service_sec3{
	padding: var(--v-space2) 0;
}

/* 見出し */
.service_heading{
	font-size: clamp(24px, 2.6vw, 34px);
	font-weight: 600;
	text-align: center;
	letter-spacing: 0.04em;
	margin-bottom: 12px;
	position: relative;
}
.service_heading::after{
	content: attr(data-en);
	display: block;
	font-size: 12px;
	letter-spacing: 0.26em;
	color: var(--main-color);
	margin-top: 6px;
}

.service_heading2{
	font-size: clamp(20px, 2.2vw, 26px);
	font-weight: 600;
	text-align: center;
	margin-bottom: 12px;
}
.service_heading2::after{
	content: attr(data-en);
	display: block;
	font-size: 12px;
	letter-spacing: 0.26em;
	color: var(--main-color);
	margin-top: 6px;
}

/* ふきだし */
.service_heading2-bubble{
	display: inline-block;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	padding: 10px 14px;
	margin: 0 0 10px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	color: #fff;
	background: var(--main-color);
	border-radius: 999px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.service_heading2-bubble::after{
	content: "";
	position: absolute;
	left: 50%;
	bottom: -8px;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 8px 0 8px;
	border-color: var(--main-color) transparent transparent transparent;
}
@media (max-width: 568px){
	.service_heading2-bubble{
		font-size: 13px;
		padding: 9px 12px;
	}
}

/* リード */
.service_lead,
.service_lead2{
	max-width: 920px;
	margin: 0 auto 22px;
	text-align: center;
	line-height: 1.9;
	font-size: clamp(0.9rem, 1.6vw, 1rem);
}

/* -------------------------
   Cards（売りたい・買いたい）
   ------------------------- */
.service_sec1{
	background: #f7fbf4;
}

.service_cards{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}
@media (max-width: 860px){
	.service_cards{
		grid-template-columns: 1fr;
	}
}

.service_card{
	background: #fff;
	border-radius: 14px;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.08);
	padding: 22px 22px 18px;
	border: 1px solid rgba(0,0,0,0.05);
}

.service_card__head{
	display: grid;
	grid-template-columns: 44px 1fr;
	column-gap: 12px;
	align-items: center;
	margin-bottom: 10px;
}
.service_card__icon{
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	border-radius: 9999px;
	background: rgba(139, 195, 74, 0.50); /* main color薄め */
}
.service_card__title{
	font-size: 18px;
	font-weight: 600;
	margin: 0;
	line-height: 1.35;
}
.service_card__sub{
	margin: 2px 0 0;
	font-size: 12px;
	letter-spacing: 0.22em;
	color: #6b6b6b;
	text-align: center;
	padding-left: 0.11em; /* letter-spacing の半分 */
}

.service_card__text{
	margin: 10px 0 14px;
	line-height: 1.85;
	font-size: 14px;
}

/* bullet（TOPと同じ雰囲気） */
.service_card__list,
.service_otherList{
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 10px;
	margin-bottom: 3vh;
}

.service_card__list li,
.service_otherList li{
	position: relative;
	padding-left: 1.2em;
	line-height: 1.75;
	font-size: 1rem;
}
.service_card__list li::before,
.service_otherList li::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0.62em;
	width: 0.58em;   /* 少し大きめ● */
	height: 0.58em;
	border-radius: 50%;
	background: var(--main-color);
}

/* ボタン（TOPのボタンデザイン寄せ） */
.service_btn{
	margin-top: 14px;
	display: grid;
	place-items: center;
}
.service_btn a{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: min(100%, 260px);
	padding: 12px 16px;
	border-radius: 9999px;
	background: var(--main-color);
	color: #fff;
	font-weight: 400;
	letter-spacing: 0.04em;
	text-decoration: none;
	transition: transform 0.2s, filter 0.2s;
}
.service_btn a::after{
	content: "›";
	font-size: 18px;
	line-height: 1;
	position: relative;
	top: -3px;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
.service_btn a:hover{
	filter: brightness(1.02);
	box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* ===== 売りたい・買いたい 流れ ===== */
.service_flow__heading{
	text-align: center;
	font-size: clamp(24px, 3vw, 30px);
	font-weight: 600;
	margin-bottom: 40px;
}
.service_flow__heading::after{
	content: attr(data-en);
	display: block;
	font-size: 12px;
	letter-spacing: 0.28em;
	color: var(--main-color);
	margin-top: 6px;
}

.service_flow__grid{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

.service_flow__col{
	background: #fff;
	padding: clamp(16px, 4vw, 28px);
	border-radius: 12px;
	box-shadow: 0 4px 14px rgba(0,0,0,.15);
}

.service_flow__title{
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.service_flow__label{
	font-size: 0.75rem;
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--main-color);
	color: #fff;
	letter-spacing: 0.1em;
}

.service_flow__list{
	display: grid;
	gap: 16px;
	counter-reset: step;
	margin: 0;
	padding: 0 0 0 20px;
}

.service_flow__list li{
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px;
	align-items: start;
}

.service_flow__list .step{
	font-weight: 600;
	color: var(--accent-color1);
	font-size: 1rem;
}

.service_flow__list p{
	margin: 0;
	line-height: 1.6;
	color:var(--main-color);
	font-weight: 600;
	font-size: 1rem;
}

.service_flow__list p span{
	display: block;
	font-size: 0.9rem;
	color: #555;
	margin-top: 2px;
	font-weight: 400;
}

/* SP */
@media only screen and (max-width: 767px){
	.service_flow__grid{
		grid-template-columns: 1fr;
	}
	.service_flow__list{
		padding: 0 0 0 5px;
	}
}


/* -------------------------
   Portal grid
   ------------------------- */
.service_sec2{
	background: #f7fbf4;
}
.portal_grid{
	margin-top: 18px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}
@media only screen and (max-width: 767px){
	.portal_grid{ grid-template-columns: repeat(2, 1fr); }
}

.portal_item{
	display: block;
	background: #fff;
	border-radius: 12px;
	border: 1px solid rgba(0,0,0,0.06);
	box-shadow: 1px 1px 8px rgba(0,0,0,0.06);
	padding: 14px;
	transition: transform 0.2s, filter 0.2s;
}
.portal_item:hover{
	transform: translateY(-2px);
	filter: brightness(1.02);
}
.portal_item img{
	width: 100%;
	object-fit: contain;
	display: block;
}

/* 注釈 */
.service_note{
	margin-top: 14px;
	font-size: 13px;
	color: #555;
	line-height: 1.7;
}

/* SNSリンク */
.sns_sec1 {
	padding: 0;
}

.sns_sec1__container {
	display: grid;
	grid-template-columns: 1fr;
}

/* 3つの背景 */
.sns_sec1__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	/* SP */
	padding: clamp(16px, 4vw, 28px);
	text-decoration: none;
	color: #000;

	background-size: cover;
	background-position: center;

	position: relative;
	overflow: hidden;
}

/* 文字が写真に負けないように薄いベール */
.sns_sec1__item::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.7);
}

.sns_sec1__item>* {
	position: relative;
	z-index: 1;
}

/* 画像差し替え */
.sns_sec1__item--rent {
	background-image: url(../img/sns_bg1.jpg);
}

.sns_sec1__item--facebook {
	background-image: url(../img/sns_bg2.jpg);
}

.sns_sec1__item--blog {
	background-image: url(../img/sns_bg3.jpg);
	background-position: right;
}

/* PC：横3カラム */
@media print,
screen and (min-width: 768px) {
	.sns_sec1__container {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* タイトル */
.sns_sec1__title {
	font-weight: 600;
	font-size: clamp(18px, 1.8vw, 22px);
	margin: 0 0 14px;
}

/* ボタン */
.sns_sec1__btn {
	margin: 0;
}

.sns_sec1__btn span {
	background-color: rgba(255, 255, 255, 0.55);
	border: 1px solid #000;
	color: #000;
	padding: 7px 50px;
	font-size: 16px;
	border-radius: 30px;
	display: inline-block;
	transition: background-color .2s ease;
}

.sns_sec1__item:hover .sns_sec1__btn span {
	background-color: #8bc34abd;
}

/* テキスト */
.sns_sec1__text {
	margin: 16px 0 0;
	font-size: 14px;
	line-height: 1.7;
	max-width: 28em;
	text-align: center;
}

/* URLが長い時の保険 */
.sns_sec1__text--url {
	word-break: break-all;
}

/*================================
	SERVICE：賃貸借の仲介
================================*/
.service_sec4{
	padding: var(--v-space2) 0;
	background-color: var(--accent-color3);
	position: relative;
	z-index: 1;
}

.service_sec4_bg{
	background-color: rgba(255,255,255,0.9);
	padding: clamp(1.25rem, 4vw, 2.5rem);
}

/* 背景写真 */
@media print, screen and (min-width: 768px){
	.service_sec4{
		background-image: url(../img/service_bg04.jpg);
		background-repeat: no-repeat;
		background-position: bottom;
		background-size: cover;
	}
}
@media only screen and (max-width: 767px){
	.service_sec4{
		background-image: url(../img/service_bg04_sp.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}

/* タイトル */
.service_sec4-heading{
	font-size: clamp(20px, 2.5vw, 25px);
	line-height: 1.35;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--txt-color);
	margin-bottom: 20px;
}

/* テキスト */
.service_sec4-txt{
	font-size: clamp(14px, 1.5vw, 16px);
	line-height: 1.9;
	color: var(--txt-color);
}


/* 共通：セクション余白 */
.ninbai_sec1 {
	padding: 0 0 var(--v-space2) 0;
}

/* 見出しブロック */
.ninbai_title {
	text-align: center;
	margin-bottom: 60px;
}

.ninbai_title .sub {
	display: block;
	font-size: 0.85rem;
	color: var(--main-color);
	letter-spacing: 0.2em;
	margin-bottom: 0px;
	text-transform: uppercase;
	font-weight: 600;
}

.ninbai_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 30px;
}

/* 任意売却とは：本文ボックス */
.ninbai_aboutbox {
	background-color: var(--accent-color3);
	padding: clamp(20px,4vw,60px);
	border-radius: 4px;
	margin-bottom: 40px;
}

.ninbai_aboutbox h3 {
	color: var(--accent-color2);
	font-size: 1.5rem;
	margin: 0 0 15px;
}

/* 3つのポイント */
.ninbai_points {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-top: 40px;
}
@media only screen and (max-width: 767px) {
	.ninbai_points {
		grid-template-columns: repeat(1, 1fr);
	}
}

.ninbai_point {
	border-top: 1px solid var(--main-color);
	padding-top: 25px;
}

.ninbai_point h4 {
	color: var(--accent-color2);
	margin: 0 0 15px;
	font-size: 1.1rem;
}

.ninbai_point p {
	font-size: 0.95rem;
	color: var(--text-light);
	margin: 0;
}

/* ===== 任意売却 チェックリスト ===== */

.ninbai_sec2 {
	padding: var(--v-space2) 0;
	background-color: var(--accent-color3);
}

.ninbai_check__list {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	max-width: 900px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px 40px;
}

@media (max-width: 600px) {
	.ninbai_check__list {
		grid-template-columns: 1fr;
	}
}

/* label全体をクリック可能に */
.ninbai_check {
	display: grid;
	grid-template-columns: 22px 1fr;
	gap: 12px;
	align-items: start;
	cursor: pointer;
	font-size: 0.95rem;
	line-height: 1.6;
}

/* checkbox本体は隠す */
.ninbai_check input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

/* 見た目の□ */
.ninbai_check__box {
	width: 18px;
	height: 18px;
	border: 2px solid var(--main-color);
	border-radius: 3px;
	background: #fff;
	position: relative;
	margin-top: 0.2em;
}

/* ✔（チェック時） */
.ninbai_check input:checked+.ninbai_check__box::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 0px;
	width: 6px;
	height: 10px;
	border-right: 2px solid var(--main-color);
	border-bottom: 2px solid var(--main-color);
	transform: rotate(45deg);
}

/* hover（任意） */
.ninbai_check:hover .ninbai_check__box {
	background-color: #fffdf5;
}

.ninbai_check__note {
	max-width: 900px;
	margin: 20px auto 0;
	font-size: 0.8rem;
	color: #666;
}

/* ただ売るだけではない */
.ninbai_sec3 {
	padding: var(--v-space2) 0;

	background:
		radial-gradient(1200px 600px at 20% 20%, rgba(255, 255, 255, .12), transparent 50%),
		linear-gradient(180deg, #2f3e3b, #1f2b29);
}

.ninbai_team {
	color: #fff;
	display: grid;
	gap: 1.4rem;
}

@media (min-width: 768px) {
	.ninbai_team {
		grid-template-columns: 1.1fr .9fr;
		align-items: center;
		gap: 2rem;
	}
}

.ninbai_team__title {
	margin: 0 0 1rem;
	font-size: clamp(1.2rem, 2.1vw, 1.6rem);
	line-height: 1.45;
}

.ninbai_team__accent {
	color: var(--main-color);
	font-weight: 600;
}

.ninbai_team__text {
	margin: 0 0 1rem;
	color: rgba(255, 255, 255, .86);
	line-height: 1.9;
}

.ninbai_team__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ninbai_team__list li {
	font-size: 1rem;
	color: rgba(255, 255, 255, .86);
	margin-bottom: 8px;
	display: flex;
	align-items: flex-start;
	font-size: 1.1rem;
}

.ninbai_team__list li::before {
	content: "●";
	color: var(--main-color);
	font-size: 0.6rem;
	margin-right: 8px;
	margin-top: 6px;
}

.ninbai_team__right {
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 18px;
	padding: 1.2rem;
}

.ninbai_team__cap {
	margin: 0 0 .8rem;
	text-align: center;
	font-weight: 700;
	color: var(--main-color);
}

.ninbai_teamgrid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: .8rem;
}

.ninbai_teamgrid__item {
	background: rgba(255, 255, 255, .10);
	border: 1px solid rgba(255, 255, 255, .10);
	border-radius: 12px;
	padding: .9rem .7rem;
	text-align: center;
}

.ninbai_teamgrid__item--main {
	background: rgba(139, 195, 74, .18);
	border-color: rgba(139, 195, 74, .30);
}

.ninbai_teamgrid__ttl {
	margin: 0;
	font-weight: 600;
}

.ninbai_teamgrid__sub {
	margin: .2rem 0 0;
	font-size: .85rem;
	color: rgba(255, 255, 255, .85);
}

.ninbai_team__foot {
	margin: .9rem 0 0;
	text-align: center;
	color: var(--main-color);
	font-weight: 600;
}

/*  */
.ninbai_sec4 {
	padding: var(--v-space2) 0;
	background: var(--accent-color3);
}

.ninbai_time {
	text-align: center;
}

.ninbai_time__tag {
	display: inline-block;
	padding: .45rem 1rem;
	border-radius: 999px;
	background: var(--accent-color1);
	color: #fff;
	font-weight: 600;
	letter-spacing: .08em;
	font-size: .85rem;
	margin: 0 0 1rem;
}

.ninbai_time__title {
	margin: 0 0 1.2rem;
	font-size: clamp(1.3rem, 2.2vw, 1.8rem);
}

.ninbai_time__box {
	text-align: left;
	background: #fff;
	border-radius: 18px;
	padding: clamp(1rem, 2.8vw, 2rem);
	box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
	border: 1px solid #efefef;
}

.ninbai_time__lead {
	margin: 0 0 .8rem;
	color: var(--accent-color2);
	font-weight: 600;
	text-align: center;
	font-size: 1.1rem;
}

.ninbai_time__cols {
	display: grid;
	gap: 1rem;
}

@media (min-width: 768px) {
	.ninbai_time__cols {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.2rem;
	}
}

.ninbai_time__col {
	background: #fafafa;
	border-radius: 14px;
	padding: 1rem;
	border: 1px solid #ededed;
}

.ninbai_time__colttl {
	margin: 0 0 .6rem;
	font-weight: 600;
}

.ninbai_time__colttl--good {
	color: #dd517f;
}

.ninbai_time__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ninbai_time__list li {
	font-size: 1rem;
	color: var(--txt-color);
	margin-bottom: 8px;
	display: flex;
	align-items: flex-start;
}

.ninbai_time__list li::before {
	content: "●";
	color: var(--main-color);
	font-size: 0.6rem;
	margin-right: 8px;
	margin-top: 6px;
}

/*======= FAQ ======*/
.faq_sec1 {
	padding: clamp(70px, 6vw, 90px) 0 var(--v-space) 0;
	background-color: #fff;

	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: clamp(70px, 6vw, 90px) 0 var(--v-space2) 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: 180px 1fr;
	align-items: center;
	gap: 20px;
	align-items: stretch;
}

.info_sec1_container .label {
	display: flex;
	align-items: center;
	font-weight: 600;
	color: var(--txt-color);
	white-space: nowrap;
	background-color: #e3f0f8;
	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;
	}
}


/* =========================
	info_sec2（対応エリア）
========================= */

.info_sec2 {
	padding: var(--v-space2) 0;
	background-color: var(--accent-color3);
}

/* 見出しブロック */
.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: 0px;
	text-transform: uppercase;
	font-weight: 600;
}

.area_title h2 {
	font-size: clamp(1.5rem,4vw,2rem);
	color: var(--accent-color2);
	margin: 0;
	font-weight: 700;
}

.info_sec2__box {
	background: var(--base-color);
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 4px;
	overflow: hidden;
	position: relative;
}

/* ヘッダー */
.info_sec2__header {
	text-align: center;
	margin-bottom: 2vh;
}

.info_sec2__pin {
	color: var(--main-color);
	margin: 0 auto 10px;
	width: 40px;
	height: 40px;
}

.info_sec2__lead {
	margin: 0;
	font-weight: 500;
	color: var(--accent-color2);
}

/* 本体グリッド */
.info_sec2__grid {
	display: grid;
	grid-template-areas: "kanagawa tokyo";
	grid-template-columns: 1fr 1fr;
}

.info_sec2__area {
	padding: 40px;
	position: relative;
	isolation: isolate;
}

.info_sec2__area--kanagawa {
	grid-area: kanagawa;
	border-right: 1px solid rgba(0,0,0,0.08);
}

.info_sec2__area--tokyo {
	grid-area: tokyo;
}


.info_sec2__area--kanagawa::before,
.info_sec2__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;
}

.info_sec2__area--kanagawa::before {
	background-image: url(../img/map-kanagawa.png);
}

.info_sec2__area--tokyo::before {
	background-image: url(../img/map-tokyo23.png);
}

/* 見出し */
.info_sec2__label {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--main-color);
	letter-spacing: 0.1em;
}

.info_sec2__name {
	font-size: 1.6rem;
	color: var(--accent-color2);
	font-weight: 700;
	margin: 0 0 10px;
}

/* 市区町村 */
.info_sec2__cities {
	font-size: 0.85rem;
	color: var(--txt-color);
	display: flex;
	flex-wrap: wrap;
	gap: 6px 10px;
}

.info_sec2__city {
	display: inline-block;
	margin-right: 0px;
	color: var(--txt-color);
	background: rgba(255,255,255,0.8);
	padding: 0 2px;
}

/* 注記 */
.info_sec2__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%;
}

/* フッター */
.info_sec2__foot {
	margin-top: 2vh;
	text-align: center;
}

.info_sec2__foot-text {
	margin: 0;
	font-size: 0.85rem;
	color: var(--txt-color);
}

/* レスポンシブ */
@media only screen and (max-width: 850px) {
	.info_sec2__grid {
		grid-template-areas:
			"kanagawa"
			"tokyo";
		grid-template-columns: 1fr;
	}

	.info_sec2__area--kanagawa {
		border-right: none;
		border-bottom: 1px solid rgba(0,0,0,0.08);
	}

	.info_sec2__area {
		padding: 30px;
	}
}
@media only screen and (max-width: 467px) {
	
	.info_sec2__area--tokyo::before {
		background-size: 110%;
		opacity: 0.1;
	}
	.info_sec2__area--kanagawa::before {
		background-size: 150%;
		opacity: 0.1;
	}
}


.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%;
	}
}
