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

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


/*--------------------------------------------------
**************************************************
  売却開始から契約・引き渡しまでの流れ
**************************************************
--------------------------------------------------*/
.flow .text_1 {
	margin-top: 64px;
	text-align: center;
	font-weight: 500;
}

.flow .scroll_link {
	display: flex;
	justify-content: center;
	margin: 30px auto 0;
}

.flow .scroll_link a {
	position: relative;
	display: block;
	max-width: 400px;
	width: 90%;
	padding: 15px;
	background: var(--gray-bg-light);
	border-radius: 23px;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1;
	color: #000;
}

.flow .scroll_link a::after {
	content: '';
	position: absolute;
	top: 45%;
	right: 20px;
	transform: translateY(-50%) rotate(45deg);
	display: block;
	width: 10px;
	height: 10px;
	border-right: var(--gray-darker) 1px solid;
	border-bottom: var(--gray-darker) 1px solid;
}

.flow .scroll_link a:hover {
	background: var(--gray-line);
}

.flow .flow_type {
	width: 100%;
	margin: 58px auto 0;
}

/* 各パネル共通設定 */
.flow .flow_panel {
	position: relative;
	counter-reset: step; /* 番号リセット */
	width: 100%;
}

.flow .flow_panel ol {
	position: relative;
	margin-top: 34px;
}

/* 各ステップ */
.flow .flow_panel ol li {
	position: relative;
	min-height: 186px;
	margin-bottom: 20px;
	padding-top: 10px;
}

/* 丸数字 */
.flow .flow_panel ol li::before {
	counter-increment: step;
	content: counter(step);
	position: absolute;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	background-color: var(--blue-bright);
	border-radius: 50%;
	font-size: 2.0rem;
	color: var(--white);
}

/* 縦線 */
.flow .flow_panel ol li::after {
	content: "";
	position: absolute;
	bottom: 0;
	width: 2px;
	background-color: #0072ce;

}

/* 最後の要素の線を下で止める */
.flow .flow_panel ol li:last-child::after {
	display: none;
}

.flow .flow_panel ol li h4 {
	font-size: 2.6rem;
	font-weight: 700;
}

.flow .flow_panel ol li p {
	margin-top: 24px;
}

/* PC */
@media (min-width: 769px) {
	.flow .flow_body {
		position: relative;
		display: flex;
		justify-content: space-between;
	}

	.flow .flow_panel {
		max-width: 50%;
	}

	.flow .flow_panel h3 {
		max-width: 560px;
		width: 100%;
		padding: 14px;
		border: var(--blue-dark) 1px solid;
		text-align: center;
		font-size: 2.0rem;
		font-weight: 600;
		line-height: 1;
		color: var(--blue-dark);
	}

	.flow #purchase h3 {
		margin-left: auto;
	}

	/* 左側（仲介）は右寄せ */
	.flow #broker ol li {
		padding-right: 80px;
		text-align: right;
	}

	/* 右側（買取）は左寄せ */
	.flow #purchase ol li {
		padding-left: 80px;
		text-align: left;
	}

	/* 丸番号を中央線に合わせる */
	.flow #broker ol li::before {
		right: -30px;
	}

	.flow #purchase ol li::before {
		left: -30px;
	}

	/* 縦線も中央線に配置 */
	.flow #broker ol li::after,
	.flow #purchase ol li::after {
		top: 75px;
	}

	.flow #broker ol li::after {
		right: -1px;
	}

	.flow #purchase ol li::after {
		left: -1px;
	}
}

/* SP */
@media screen and (max-width: 767px) {
	.flow .text_1 {
		margin-top: 24px;
		text-align: left;
		font-size: 1.4rem;
	}

	.flow .scroll_link {
		margin-top: 24px;
	}

	.flow .flow_type {
		margin-top: 36px;
	}

	.flow .flow_type .flow_tabs {
		display: flex;
		width: 100%;
		border-bottom: var(--blue-dark) 2px solid;
	}

	.flow .flow_type .flow_tabs .flow_tab {
		width: 50%;
		padding: 10px;
		background: var(--gray-bg-light);
		text-align: center;
		font-size: 1.5rem;
		font-weight: 600;
		color: var(--blue-dark);
	}

	.flow .flow_type .flow_tabs .flow_tab.is_active {
		background: var(--blue-dark);
		color: var(--white);
	}

	.flow .flow_panel {
		display: none;
	}

	.flow .flow_panel.is_active {
		display: block;
	}

	.flow .flow_panel ol {
		margin-top: 24px;
	}

	/* 各ステップ */
	.flow .flow_panel ol li {
		min-height: auto;
		margin-bottom: 10px;
		padding-top: 6px;
		padding-bottom: 20px;
	}

	/* 丸数字 */
	.flow .flow_panel ol li::before {
		width: 40px;
		height: 40px;
		font-size: 1.6rem;
	}

	/* 縦線 */
	.flow .flow_panel ol li::after {
		top: 45px;
		left: 19px;
	}

	.flow .flow_panel ol li h4 {
		padding-left: 50px;
		font-size: 1.8rem;
	}

	.flow .flow_panel ol li p {
		margin-top: 16px;
		padding-left: 50px;
		font-size: 1.4rem;
	}
}


/*--------------------------------------------------
**************************************************
  「仲介」と「買取」の違い
**************************************************
--------------------------------------------------*/
.difference {
	margin-top: 200px;
}

.difference .text_1 {
	margin-top: 64px;
	text-align: center;
	font-size: 3.0rem;
	font-weight: 600;
}

.difference .text_2 {
	margin-top: 56px;
	text-align: center;
	font-weight: 500;
}

.difference .diff_type {
	display: flex;
	justify-content: space-between;
	gap: 278px;
	position: relative;
	width: 100%;
	margin: 80px auto 0;
}

.difference .diff_type_1,
.difference .diff_type_2 {
	max-width: 493px;
	width: 100%;
}

.difference .diff_type_1 h3,
.difference .diff_type_2 h3 {
	width: 100%;
	padding: 14px 0;
	border: var(--blue-dark) 1px solid;
	text-align: center;
	font-size: 2.0rem;
	font-weight: 600;
	color: var(--blue-dark);
}

.difference .diff_type .image {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 182px;
	margin-top: 40px;
}

.difference .diff_type .item_list {
	margin-top: 40px;
}

.difference .diff_type .item_list li {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 68px;
}

.difference .diff_type .item_list li:not(:first-child) {
	margin-top: 8px;
}

.difference .diff_type .item_list li h4 {
	position: absolute;
	top: 0;
	max-width: 278px;
	width: 100%;
	min-height: 68px;
	padding: 24px;
	background: var(--blue-dark);
	text-align: center;
	font-weight: 600;
	color: var(--white);
}

.difference .diff_type_1 .item_list li h4 {
	right: -285px;
}

.difference .diff_type_2 .item_list li h4 {
	left: -285px;
}

.difference .diff_type .item_list li p {
	width: 100%;
	padding: 24px;
	text-align:center;
	background: var(--gray-bg-light);
	font-weight: 600;
	white-space: nowrap;
}

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

	.difference .text_1 {
		margin-top: 24px;
		font-size: 2.0rem;
	}

	.difference .text_2 {
		margin-top: 24px;
		text-align: left;
		font-size: 1.4rem;
	}

	.difference .diff_type {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		gap: 64px;
		position: relative;
		width: 100%;
		margin-top: 30px;
	}

	.difference .diff_type h3 {
		padding: 10px;
		font-size: 1.6rem;
	}

	.difference .diff_type .image {
		height: auto;
	}

	.difference .diff_type .item_list li {
		display: block;
		min-height: auto;
	}

	.difference .diff_type .item_list li h4 {
		position: static;
		min-height: auto;
		padding: 10px 11px;
		background: none;
		border-left: var(--blue-dark) 5px solid;
		text-align: left;
		font-size: 1.5rem;
		font-weight: 700;
		color: var(--blue-dark);
	}

	.difference .diff_type .item_list li p {
		padding: 16px;
		text-align: left;
		font-size: 1.5rem;
	}
}


/*--------------------------------------------------
**************************************************
  「思ったよりシンプルかも」と感じた方へ
**************************************************
--------------------------------------------------*/
.flow_cta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 160px;
	background: var(--gray-bg-light);
	border-radius: 16px;
}

.flow_cta .text_box {
	max-width: 670px;
	width: 100%;
	padding: 50px 64px;
}

.flow_cta h2 {
	font-size: 3.0rem;
	font-weight: 700;
}

.flow_cta .text_1,
.flow_cta .text_2 {
	margin-top: 24px;
	font-weight: 500;
}

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

.flow_cta .image_box img {
	border-radius: 0 16px 16px 0
}

/* SP */
@media screen and (max-width: 767px) {
	.flow_cta {
		flex-direction: column;
		justify-content: flex-start;
		align-items: stretch;
		gap: 64px;
		width: 100%;
		margin-top: 120px;
		padding: 40px 0 0;
		border-radius: 0;
	}

	.flow_cta .text_box {
		width: 90%;
		margin: auto;
		padding: 0;
	}

	.flow_cta h2 {
		font-size: 2.2rem;
	}

	.flow_cta .text_1,
	.flow_cta .text_2 {
		margin-top: 16px;
		font-size: 1.5rem;
	}

	.flow_cta .link_box {
		width: 90%;
		margin: 40px auto 0;
	}

	.flow_cta .image_box img {
		border-radius: 0
	}
}



