@charset "utf-8";

.tab-area {
	display: flex;
	justify-content: center;
	cursor: pointer;
	width: 100%;
	margin: 0 auto;
	gap: 4rem;
}

.tab-area .tab {
	max-width: 59rem;
	width: 100%;
	padding: 2.4rem 1.5rem 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: 3rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: var(--orange);
	background: var(--white);
	border: 0.1rem solid var(--orange);
	border-radius: 0.5rem;
	position: relative;
	transition: all .3s;
}

.tab-area .tab p {
	margin: 1.5rem;
}

.tab-area .tab-deco01::before {
	content: "";
	display: block;
	width: 6.2rem;
	height: 6.2rem;
	background: url(../../../../uploads/land_sale_btn_illust01_orange.svg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
	transition: all .3s;
}

.tab-area .tab.active.tab-deco01::before {
	background: url(../../../../uploads/land_sale_btn_illust01_white.svg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
}


.tab-area .tab-deco01:hover::before {
	background: url(../../../../uploads/land_sale_btn_illust01_white.svg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
}

.tab-area .tab-deco02::before {
	content: "";
	display: block;
	width: 6.7rem;
	height: 5.6rem;
	background: url(../../../../uploads/land_sale_btn_illust02_orange.svg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
	transition: all .3s;
}

.tab-area .tab.active.tab-deco02::before {
	background: url(../../../../uploads/land_sale_btn_illust02_white.svg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
}

.tab-area .tab-deco02:hover::before {
	background: url(../../../../uploads/land_sale_btn_illust02_white.svg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
}

.tab-area .tab::after {
	content: "";
	display: block;
	width: 3.5rem;
	height: 3.5rem;
	margin: 0.5rem 0 0 0;
	background: url(../../../../uploads/btn_icon02.svg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
	transition: all .3s;
}

.tab-area .tab.active.tab::after {
	background: url(../../../../uploads/btn_icon01.svg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
}

.tab-area .tab:hover::after {
	background: url(../../../../uploads/btn_icon01.svg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
}

.tab-area .tab:hover {
	color: var(--white);
	background: var(--orange);
}

.tab-area .tab.active {
	color: var(--white);
	background: var(--orange);
}

.content-area .content {
	display: none;
}

.content-area .content.show {
	display: block;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1920px) {

	html {
		/* 10px */
		font-size: 0.52083vw;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1550px) {

	html {
		/* 10px */
		font-size: 0.64516vw;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1024px) {

	html {
		/* 10px */
		font-size: 0.97656vw;
	}

	.tab-area .tab {
		font-size: 2.2rem;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 768px) {

	html {
		/* 10px */
		font-size: 1.30208vw;
	}

	.tab-area {
		align-items: center;
		flex-direction: column;
	}

	.tab-area .tab {
		font-size: 1.8rem;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 576px) {

	html {
		/* 12px */
		font-size: 2.08333vw;
	}


}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 414px) {

	html {
		/* 14px */
		font-size: 2.43055vw;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */