@charset "UTF-8";
/*--------------------------------------------------
**************************************************
  メインビジュアル
**************************************************
--------------------------------------------------*/
.mv {
	background-image: url(../imgs/reason/mv.png);
}

/* SP */
@media screen and (max-width: 767px) {
	.mv {
		background-image: url(../imgs/reason/mv_sp.png);
	}
}


/*--------------------------------------------------
**************************************************
  選ばれる５つの理由
**************************************************
--------------------------------------------------*/
.reason .list {
	margin-top: 82px;
}

.reason .list > li {
	display: flex;
}

.reason .list > li:nth-child(even) {
	flex-direction: row-reverse;
}

.reason .list > li + li {
	margin-top: 64px;
}

.reason .list > li > div {
	flex: 1 1 50%;
}

.reason .list > li .text_box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 20px 80px;
	background: var(--blue-extra-light);
}

.reason .list > li:nth-child(odd) .text_box {
	border-radius: 16px 0 0 16px;
}

.reason .list > li:nth-child(even) .text_box {
	background: var(--gray-bg-light);
	border-radius: 0 16px 16px 0;
}

.reason .list > li .text_box h3 {
	font-size: 2.8rem;
	font-weight: 700;
}

.reason .list > li .text_box .text_1_1 {
	margin-top: 24px;
	font-weight: 500;
	line-height: 2;
}

.reason .list > li .image_box img {
	object-fit: cover;
	display: block;
	width: 100%;
	height: 100%;
}

/* SP */
@media screen and (max-width: 767px) {
	.reason .list {
		margin-top: 24px;
	}

	.reason .list > li,
	.reason .list > li:nth-child(even) {
		flex-direction: column;
	}

	.reason .list > li + li {
		margin-top: 24px;
	}

	.reason .list > li > div {
		flex: 1 1 100%;
		width: 100%;
	}

	.reason .list > li .text_box {
		padding: 24px;
	}

	.reason .list > li:nth-child(odd) .text_box,
	.reason .list > li:nth-child(even) .text_box {
		border-radius: 16px 16px 0 0;
	}

	.reason .list > li .text_box h3 {
		font-size: 2.0rem;
	}

	.reason .list > li .text_box .text_1_1 {
		margin-top: 16px;
		font-size: 1.5rem;
		line-height: 1.8;
	}
}


/*--------------------------------------------------
**************************************************
  売却成功ストーリー＆お客様の声
**************************************************
--------------------------------------------------*/
.story_voice {
	margin-top: 214px;
}

.story_voice .heading_01 {
	text-align: left;
}

.story_voice .list {
	margin-top: 80px;
}

.story_voice .link_box {
	margin-top: 55px;
	text-align: center;
}

/* SP */
@media screen and (max-width: 767px) {
	.story_voice {
		margin-top: 80px;
	}

	.story_voice .heading_01 {
		text-align: center;
	}

	.story_voice .list {
		margin-top: 24px;
	}

	.story_voice .link_box {
		margin-top: 40px;
	}
}

