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

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


/*--------------------------------------------------
**************************************************
  住み替えは“順番”が大切！売却と購入、ベストなタイミングとは？
**************************************************
--------------------------------------------------*/
.contents_01 h2 {
	text-align: center;
	font-size: 4.0rem;
	font-weight: 700;
}

.contents_01 p {
	margin-top: 40px;
	text-align: center;
	font-weight: 500;
	line-height: 2;
}

/* SP */
@media screen and (max-width: 767px) {
	.contents_01 h2 {
		font-size: 2.0rem;
	}

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

}


/*--------------------------------------------------
**************************************************
  住み替えの2つのパターン
**************************************************
--------------------------------------------------*/
.pattern {
	margin-top: 150px;
}

.pattern .list {
	display: flex;
	gap: 40px;
	margin-top: 80px;
}

.pattern .list > li {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 620px;
	width: 100%;
	padding: 56px 10px;
	background: var(--white);
	border-radius: 24px;
	box-shadow: 0px 0px 40px 0px #00000026;
}

.pattern .list > li .number {
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	font-family: "Poppins", sans-serif;
	font-size: 4.8rem;
	font-weight: 500;
	color: var(--blue-bright);
}

.pattern .list > li h3 {
	text-align: center;
	font-size: 4.0rem;
	font-weight: 600;
	color: var(--blue-dark);
	line-height: 1.4;
}

.pattern .list > li h3 span {
	font-size: 1.6rem;
}

.pattern .list > li .merit_demerit {
	margin-top: 24px;
}

.pattern .list > li .merit_demerit dt {
	text-align: center;
}

.pattern .list > li .merit_demerit dt span {
	position: relative;
	font-weight: 600;
	color: var(--blue-dark);
}

.pattern .list > li .merit_demerit dt span::before,
.pattern .list > li .merit_demerit dt span::after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 40px;
	height: 2px;
	background: var(--blue-dark);
}

.pattern .list > li .merit_demerit dt span::before {
	left: -50px;
}

.pattern .list > li .merit_demerit dt span::after {
	right: -50px;
}

.pattern .list > li .merit_demerit dd {
	margin: 24px auto 40px;
}

.pattern .list > li .merit_demerit .list_edit_dots li::before {
	background: var(--black-base);
}

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

	.pattern .list {
		flex-direction: column;
		margin-top: 64px;
	}

	.pattern .list > li {
		padding: 40px 20px;
	}

	.pattern .list > li h3 {
		font-size: 3.2rem;
	}

	.pattern .list > li .number {
		top: -30px;
		font-size: 4.0rem;
	}

	.pattern .list > li .image_box {
		width: 80%;
		margin-left: auto;
		margin-right: auto;
	}
}


/*--------------------------------------------------
**************************************************
  どちらが向いている？判断の目安はコレ！
**************************************************
--------------------------------------------------*/
.difference {
	margin-top: 120px;
}

.difference h3 {
	text-align: center;
	font-size: 3.0rem;
	font-weight: 700;
}

.difference table[class*="diff_table"] {
	border-collapse: separate;
	border-spacing: 8px;
	width: 100%;
}

.difference .diff_table_1 {
	margin-top: 64px;
}

.difference .diff_table_2 {
	margin-top: 24px;
}

.difference .diff_table_1 .heading_1 {
	width: 493px;
	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_table_2 .heading_2 {
	width: 278px;
	padding: 24px;
	background: var(--blue-dark);
	text-align: center;
	font-weight: 600;
	color: var(--white);
}

.difference .diff_table_2 td {
	width: 493px;
	padding: 24px;
	text-align:center;
	background: var(--blue-extra-light);
	font-weight: 600;
	white-space: nowrap;
}

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

	.difference h3 {
		font-size: 2.0rem;
	}

	.difference .diff_table {
		margin-top: 21px;
	}

	.difference .diff_table .heading_1 {
		width: 50%;
		padding: 5px;
		border: var(--blue-dark) 1px solid;
		text-align: center;
		font-size: 1.2rem;
		font-weight: 600;
		color: var(--blue-dark);
	}

	.difference .diff_table .heading_1 span {
		font-size: 1.8rem;
		font-weight: 700;
	}

	.difference .diff_table .heading_2 {
		padding: 5px;
		background: var(--blue-dark);
		text-align: center;
		font-size: 1.3rem;
		font-weight: 600;
		color: var(--white);
	}

	.difference .diff_table td {
		vertical-align: middle;
		padding: 13px;
		text-align: center;
		background: var(--blue-extra-light);
		font-size: 1.4rem;
		font-weight: 600;
		white-space: initial;
	}

	.difference .diff_table td .small {
		font-size: 1.2rem;
	}
}


/*--------------------------------------------------
**************************************************
  タイミング調整をスムーズに進める5つのコツ
**************************************************
--------------------------------------------------*/
.tips {
	margin-top: 160px;
}

.tips > p {
	margin-top: 64px;
	text-align: center;
	font-weight: 700;
	line-height: 2;
}

.tips .list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
	margin-top: 80px;
}

.tips .list > li {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 330px;
	width: 100%;
	padding: 56px 40px 28px;
	background: var(--white);
	border-radius: 24px;
	box-shadow: 0px 0px 40px 0px #00000026;
}

.tips .list > li .number {
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	font-family: "Poppins", sans-serif;
	font-size: 4.8rem;
	font-weight: 500;
	color: var(--blue-bright);
}

.tips .list > li h3 {
	text-align: center;
	font-size: 2.0rem;
	font-weight: 600;
	color: var(--blue-dark);
	line-height: 1.8;
}

.tips .list > li p:not(.number) {
	margin-top: 24px;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
}

.tips .list > li p:not(.number) .txt_blue_1 {
	font-weight: 700;
}

/* SP */
@media screen and (max-width: 767px) {
	.tips {
		width: 90%;
		margin: 120px auto 0;
	}

	.tips > p {
		margin-top: 40px;
		text-align: left;
	}

	.tips .list {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 60px;
		margin-top: 64px;
	}

	.tips .list > li {
		padding: 40px 40px 28px;
	}

	.tips .list > li .number {
		top: -30px;
		font-size: 4.0rem;
	}

	.tips .list > li p:not(.number) {
		font-size: 1.4rem;
	}
}


/*--------------------------------------------------
**************************************************
  資金計画・段取り・引渡し日までトータルサポート
**************************************************
--------------------------------------------------*/
.contents_04 {
	margin: 160px 0 380px;
	padding: 120px 0 350px;
	color: var(--white);
}

.contents_04 .inner {
	position: relative;
}

.contents_04 h2 {
	text-align: center;
	font-size: 4.0rem;
	font-weight: 700;
	line-height: 1.5;
}

.contents_04 .text_box {
	width: 100%;
	margin: 64px auto 0;
	text-align: center;
}

.contents_04 .text_box p {
	font-weight: 600;
	line-height: 2;
}

.contents_04 .inner .image_box {
	position: absolute;
	top: 260px;
}

/* SP */
@media screen and (max-width: 767px) {
	.contents_04 {
		margin: 120px 0 170px;
		padding: 80px 0 100px;
	}

	.contents_04 h2 {
		font-size: 2.2rem;
		line-height: 1.6;
	}

	.contents_04 .text_box p {
		font-size: 1.4rem;
	}

	.contents_04 .inner .image_box {
		top: 105%;
	}
}
