@charset "utf-8";

/* ==================================================
   共通
-------------------------------------------------- */
.home h2[data-sub] {
	position: relative;
	font-size: var(--fz_xl);
	text-align: center;
	line-height: 1.9;
	letter-spacing: .095em;
}
.home h2[data-sub]::before {
	content: attr(data-sub);
	display: block;
	position: absolute;
	left: 50%;
	top: -18px;
	font-weight: var(--fw_r);
	font-size: var(--fz_base);
	letter-spacing: .16em;
	line-height: 1;
	transform: translateX(-50%);
}

.home_wrapper {
	padding-top: 104px;
	padding-bottom: 104px;
}

@media only screen and (max-width: 1080px) {
	.home_wrapper {
		padding-top: 64px;
		padding-bottom: 64px;
	}
}

@media only screen and (max-width: 767px) {
	.home h2[data-sub] {
		font-size: var(--fz_lg);
		line-height: 1.8;
	}
	.home h2[data-sub]::before {
		font-size: var(--fz_xs);
	}

	.home_wrapper {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}



/* ==================================================
   初回アクセス時にロゴ表示
-------------------------------------------------- */
.loading {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	opacity: 1;
	visibility: visible;
	width: 100vw;
	height: 100vh;
	background-color: #fff;
	transition: all 1s;
}

.loading.is__active {
	opacity: 0;
	visibility: hidden;
}

.loading-animation {
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	z-index: 9999;
	width: 100vw;
	height: 100vh;
	background-color: #fff;
	transition: all 1s;
}

.loading-animation.is__active {
	opacity: 1;
	visibility: visible;
}

.loading-animation video {
	width: 70%;
}

@media only screen and (max-width: 767px) {
	.loading-animation video {
		width: 100%;
	}
}



/* ==================================================
   メインビジュアル
-------------------------------------------------- */
.home_mainvisualArea {
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 192 / 65;
	width: 100%;
	padding-top: 92px;
	background: url("../images/home_mainvisual.webp") var(--bg_cc_cover);
}

.home_mainvisualArea h2 {
	display: inline-block;
	padding: 32px 40px;
	border-radius: 6px;
	background-color: var(--c_navy);
	color: var(--c_white);
	font-weight: var(--fw_r);
	font-size: 3.6rem;
	line-height: 1.8;
	text-align: center;
	letter-spacing: .08em;
}

.home_mainvisual_catch_s {
	font-size: 3rem;
}

@media only screen and (max-width: 1360px) {
	.home_mainvisualArea {
		aspect-ratio: 34 / 13;
	}

	.home_mainvisualArea h2 {
		font-size: 3rem;
	}

	.home_mainvisual_catch_s {
		font-size: 2.4rem;
	}

	.home_mainvisual_catch_br {
		display: block;
	}
}

@media only screen and (max-width: 1024px) {
	.home_mainvisualArea {
		aspect-ratio: 512 / 241;
	}
}

@media only screen and (max-width: 767px) {
	.home_mainvisualArea {
		padding-top: 56px;
	}

	.home_mainvisualArea h2 {
		padding: 16px 24px;
		font-size: 2.4rem;
	}

	.home_mainvisual_catch_s {
		font-size: 1.9rem;
	}
}

@media only screen and (max-width: 560px) {
	.home_mainvisualArea {
		aspect-ratio: 375 / 232;
	}

	.home_mainvisualArea h2 {
		padding: 16px;
		font-size: 1.8rem;
		line-height: 1.8;
	}

	.home_mainvisual_catch_s {
		font-size: 1.4rem;
	}
}

/* ----- スライダー ----- */
.home_mainvisual_sliderArea {
	position: relative;
	overflow: hidden;
}

/* ページネーション */
.home_mainvisual_slider_pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25vw;
	position: absolute;
	left: 50%;
	bottom: 8px;
	z-index: 50;
	transform: translateX(-50%);
}
.home_mainvisual_slider_pagination .swiper-pagination-bullet {
	display: block;
	width: .625vw;
	height: .625vw;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, .7);
}
.home_mainvisual_slider_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: rgba(252, 189, 53, .9);
}

@media only screen and (max-width: 800px) {
	.home_mainvisual_slider_pagination {
		gap: 3.129vw;
		bottom: 8px;
	}
	.home_mainvisual_slider_pagination .swiper-pagination-bullet {
		width: 2.086vw;
		height: 2.086vw;
	}
}

/* ==================================================
   PICKUP
-------------------------------------------------- */
.home_pickupArea {
	padding: 12px 0;
	background-color: var(--c_blue);
}

.home_pickup {
	display: flex;
	align-items: center;
}

.home_pickup h2 {
	color: var(--c_white);
	font-size: 2.2rem;
}

.home_pickup p {
	margin-left: 40px;
	padding-left: 40px;
	position: relative;
}
.home_pickup p::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: calc(50% - 12px);
	width: 1px;
	height: 24px;
	background-color: #90a0c8;
}

.home_pickup a {
	color: var(--c_white);
}
.home_pickup a:hover {
	opacity: .5;
}

.home_pickup_title {
	padding-left: 1em;
}

@media only screen and (max-width: 1024px) {
	.home_pickup p {
		margin-left: 24px;
		padding-left: 24px;
	}
}

@media only screen and (max-width: 767px) {
	.home_pickup {
		align-items: flex-start;
	}

	.home_pickup h2 {
		font-size: 1.6rem;
		line-height: 1.5;
	}

	.home_pickup p {
		margin-left: 8px;
		padding-left: 8px;
		font-size: 1.6rem;
		line-height: 1.5;
	}
	.home_pickup p::before {
		top: 0;
		height: 100%;
	}

	.home_pickup_title {
		display: block;
		padding-left: 0;
	}
}



/* ==================================================
   提携ハウスメーカー様一覧
-------------------------------------------------- */
.home_partnership_note {
	margin-top: 38px;
	text-align: center;
}

.home_partnership {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	/* margin-top: 54px; */
	padding-bottom: 8px;
}
.home_partnership::before,
.home_partnership::after {
	content: "";
	display: block;
	position: absolute;
	left: 40px;
	z-index: -1;
	width: calc(100% - 80px);
	height: 1px;
	background-color: var(--c_text);
}
.home_partnership::before {
	top: 2.8rem;
}
.home_partnership::after {
	bottom: 0;
}

.home_partnership h2 {
	padding: 0 32px;
	background-color: #fff;
	font-size: 2.8rem;
}

.home_partnership_slider_wrapper {
	position: relative;
	width: 100%;
	margin-top: 20px;
}

.home_partnership_sliderArea:not(:has(.swiper)) .home_partnership_slider {
	transform: translate3d(0, 0, 0);
}

.home_partnership_slider_bn {
	aspect-ratio: 267 / 103;
	width: 22.71%;
	margin-right: 3.05%;
	border: 1px solid var(--c_bdc);
}

.home_partnership_slider_prev,
.home_partnership_slider_next {
	/* display: flex; */
	display: none;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: calc(50% - 26px);
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background-color: var(--c_yellow);
	transition: var(--transition);
	cursor: pointer;
}
.swiper ~ .home_partnership_slider_prev,
.swiper ~ .home_partnership_slider_next {
	display: flex;
}
.home_partnership_slider_prev:hover,
.home_partnership_slider_next:hover {
	opacity: .5;
}
.home_partnership_slider_prev {
	left: -72px;
}
.home_partnership_slider_next {
	right: -72px;
}

.home_partnership_slider_prev img,
.home_partnership_slider_next img {
	width: 21px;
}

@media only screen and (max-width: 1360px) {
	.home_partnership {
		width: calc(100% - 56px);
	}

	.home_partnership_slider_prev,
	.home_partnership_slider_next {
		top: calc(50% - 20px);
		width: 40px;
		height: 40px;
	}
	.home_partnership_slider_prev {
		left: -52px;
	}
	.home_partnership_slider_next {
		right: -52px;
	}

	.home_partnership_slider_prev img,
	.home_partnership_slider_next img {
		width: 16px;
	}
}

@media only screen and (max-width: 1024px) {
	.home_partnership {
		width: calc(100% - 128px);
		padding-right: 0;
		padding-left: 0;
	}
	.home_partnership::before,
	.home_partnership::after {
		width: 100%;
		left: 0;
	}

	.home_partnership_slider_bn {
		width: 32%;
		margin-right: 2%;
	}
}

@media only screen and (max-width: 767px) {
	.home_partnership_note {
		margin-top: 32px;
	}

	.home_partnership {
		width: calc(100% - 30px);
		margin-top: 8px;
	}
	.home_partnership::before {
		left: 0;
		top: 2.2rem;
		width: 100%;
	}
	.home_partnership::after {
		left: 0;
		bottom: 0;
		width: 100%;
	}

	.home_partnership h2 {
		padding: 0 8px;
		font-size: 2.2rem;
	}

	.home_partnership_sliderArea {
		width: calc(100% - 80px);
	}

	.home_partnership_slider_bn {
		width: 48%;
		/* margin-right: 4%; */
		margin-right: 16px !important;
		width: 100%;
		margin-right: 0;
	}

	.home_partnership_slider_prev {
		left: -8px;
	}
	.home_partnership_slider_next {
		right: -8px;
	}

	.home_partnership .notes {
		width: calc(100% - 32px);
		font-size: 1.6rem;
		line-height: 1.7;
	}
}



/* ==================================================
   リード
-------------------------------------------------- */
.home_ledeArea {
	display: grid;
	grid-template-columns: auto calc(100% - 696px);
	grid-template-rows: auto;
	/* row-gap: 32px; */
	gap: 32px;
}

.home_lede h2 {
	margin-bottom: 32px;
	font-size: 3.5rem;
	line-height: 1.8;
	letter-spacing: .095em;
}

.home_lede_pic {
	display: flex;
	justify-content: center;
	align-items: center;
	grid-column: 2 / 3;
	grid-row: 1 / 3;
}

@media only screen and (max-width: 1080px) {
	.home_ledeArea {
		grid-template-columns: 1fr;
		row-gap: 24px;
	}

	.home_lede h2 {
		margin-bottom: 24px;
	}
	.home_lede h2 .br-tb::before {
		white-space: pre;
		content: "\A";
	}

	.home_lede h2 .br:nth-of-type(1)::before,
	.home_lede p .br::before {
		content: none;
	}

	.home_lede_pic {
		grid-column: 1 / 2;
		grid-row: 2 / 3;
	}

	.home_lede_pic img {
		max-width: 486px;
	}

	.home_lede_more a {
		margin: auto;
	}
}

@media only screen and (max-width: 767px) {
	.home_ledeArea {
		row-gap: 24px;
	}

	.home_lede h2 {
		margin-bottom: 16px;
		font-size: 2.8rem;
	}

	.home_lede_more.btn {
		margin-top: 0;
	}
}



/* ==================================================
   家づくりガイド
-------------------------------------------------- */
.home_guideArea {
	width: calc(100% - 160px);
	margin: auto;
	border-radius: 12px;
	background-color: var(--c_lightblue);
}

.home_guide_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto;
	gap: 32px;
	margin-top: 40px;
}

.home_guide_list li {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--c_bdc);
	border-bottom-width: 3px;
	border-radius: 6px;
	background-color: #fff;
	transition: var(--transition);
}

.home_guide_list_thumb {
	aspect-ratio: 185 / 83;
	background: var(--bg_cc_cover);
}

.home_guide_list_title {
	padding: 12px 24px 12px 40px;
	text-align: center;
}

.home_guide_list_title a {
	position: relative;
	color: var(--c_text);
}
.home_guide_list_title a::before {
	content: "";
	display: inline-block;
	width: 19px;
	height: 19px;
	position: absolute;
	left: -35px;
	top: 2px;
	margin-right: 16px;
	background: url("../images/guide_list_icon.webp") var(--bg_cc_contain);
}

@media only screen and (max-width: 1420px) {
	.home_guideArea {
		width: calc(100% - 64px);
	}
}

@media only screen and (max-width: 1340px) {
	.home_guide {
		width: 100%;
	}

	.home_guide_list {
		gap: 2.388vw;
	}

	.home_guide_list_title a::before {
		left: calc(-19px - 1.194vw);
		margin-right: 1.194vw;
	}
}

@media only screen and (max-width: 1024px) {
	.home_guideArea {
		width: calc(100% - 30px);
	}

	.home_guide {
		padding: 0 30px;
	}

	.home_guide_list {
		gap: 1.475vw;
		margin-top: 32px;
	}

	.home_guide_list_title {
		line-height: 1.6;
	}

	.home_guide_list_title a {
		font-size: 1.5rem;
	}
	.home_guide_list_title a::before {
		top: 1px;
		width: 16px;
		height: 16px;
		left: calc(-16px - .737vw);
		margin-right: .737vw;
	}
}

@media only screen and (max-width: 880px) {
	.home_guideArea {
		width: calc(100% - 30px);
	}

	.home_guide_list {
		grid-template-columns: repeat(2, 1fr);
		margin-top: 24px;
	}
}

@media only screen and (max-width: 767px) {
	.home_guide h2 {
		margin-top: 18px;
	}
}

@media only screen and (max-width: 560px) {
	.home_guide {
		padding: 0 15px;
	}

	.home_guide_list {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.home_guide_list_title {
		padding: 12px 16px 12px 32px;
	}
	.home_guide_list_title a::before {
		left: calc(-19px - 1.194vw);
	}
}



/* ==================================================
   お知らせ
-------------------------------------------------- */
.home_informationArea {
	display: grid;
	grid-template-columns: auto calc(100% - 280px);
	grid-template-rows: 120px auto;
}

.home_informationArea h2[data-sub] {
	margin-top: 18px;
	text-align: left;
}
.home_informationArea h2[data-sub]::before {
	left: 0;
	transform: translateX(0);
}

.home_information {
	grid-column: 2 / 3;
	grid-row: 1 / 3;
	border-top: 1px solid var(--c_bdc_news);
}

.home_information li {
	border-bottom: 1px solid var(--c_bdc_news);
}

.home_information a {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 24px 0;
}

.home_information_title {
	width: calc(100% - 184px);
}

.home_information_more {
	grid-column: 1 / 2;
	grid-row: 2 / 3;
}

.home_information_more a {
	width: 216px;
	height: 58px;
}

@media only screen and (max-width: 1260px) {
	.home_informationArea {
		grid-template-columns: auto calc(100% - 216px - 5.079vw);
	}
}

@media only screen and (max-width: 1024px) {
	.home_information_title {
		width: calc(100% - 17.969vw);
	}
}

@media only screen and (max-width: 880px) {
	.home_informationArea {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}

	.home_informationArea h2[data-sub] {
		text-align: center;
	}
	.home_informationArea h2[data-sub]::before {
		left: 50%;
		transform: translateX(-50%);
	}

	.home_information {
		grid-column: 1 / 2;
		grid-row: 2 / 3;
		margin-top: 24px;
	}

	.home_information a {
		padding: 20px 0;
	}

	.home_information_title {
		width: calc(100% - 22.19vw);
	}

	.home_information_more {
		grid-row: 3 / 4;
		margin-top: 44px;
	}

	.home_information_more a {
		width: 324px;
		height: 66px;
		margin: auto;
	}
}

@media only screen and (max-width: 767px) {
	.home_information_more {
		margin-top: 24px;
	}
}

@media only screen and (max-width: 640px) {
	.home_information a {
		flex-direction: column;
	}

	.home_information_title {
		width: 100%;
	}
}



/* ==================================================
   動画
-------------------------------------------------- */
.home_movie_lede {
	text-align: center;
	margin-top: 24px;
	margin-bottom: 32px;
}

.home_movie_bg {
	margin-bottom: 104px;
	/* padding: 104px 40px 88px; */
	padding: 72px 40px 64px;
	border-radius: 12px;
	background-color: var(--c_blue_bg);
}

.home_movieArea .embed-youtube {
	max-width: 776px;
	margin: 12px auto 0;
}

.home_movieArea .embed-youtube p {
	text-align: center;
}

@media only screen and (max-width: 1080px) {
	.home_movie_bg {
		margin-bottom: 64px;
		padding: 64px 30px 40px;
	}

	.home_movieArea .embed-youtube {
		margin-top: 16px;
	}
}

@media only screen and (max-width: 767px) {
	.home_movie_lede {
		margin-bottom: 16px;
		text-align: left;
	}

	.home_movie_lede .ib {
		display: inline;
	}

	.home_movie_bg {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.home_movie_bg h2 {
		margin-top: 18px;
	}

	.home_movieArea .embed-youtube p {
		font-size: var(--fz_xs);
	}
}

@media only screen and (max-width: 560px) {
	.home_movie_bg {
		padding: 40px 15px 32px;
	}

	.home_movieArea .embed-youtube {
		margin-top: 8px;
	}

	.home_movieArea .embed-youtube p {
		text-align: left;
	}
}



/* ==================================================
   利用者の声
-------------------------------------------------- */
.home_voiceArea {
	position: relative;
}
.home_voiceArea::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 398px;
	background: url("../images/bg_border.webp") 0 0 repeat;
}

.home_voice {
	justify-content: space-between;
	align-items: flex-start;
	width: 1600px;
	margin-top: 40px;
}

.home_voice_unit {
	width: calc(50% - 36px);
}

.home_voice_eyecatch {
	overflow: hidden;
	aspect-ratio: 181 / 85;
	border-radius: 8px;
}

.home_voice_unit h3 {
	margin-top: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid #ddd;
	font-size: 2.8rem;
	line-height: 1.6;
}

.home_voice_sentence {
	margin-top: 24px;
}

.home_voice_more {
	display: flex;
	align-items: center;
}
.home_voice_more::before {
	content: "";
	display: inline-block;
	width: 19px;
	height: 19px;
	margin-right: 16px;
	background: url("../images/guide_list_icon.webp") var(--bg_cc_contain);
}

.home_voice_list a {
	margin: 60px auto 0;
}

@media only screen and (max-width: 1680px) {
	.home_voiceArea::before {
		height: 24vw;
	}

	.home_voice {
		width: 100%;
	}

	.home_voice_unit {
		width: calc(50% - 1.429vw);
	}
}

@media only screen and (max-width: 1080px) {
	.home_voice_list a {
		margin-top: 40px;
	}
}

@media only screen and (max-width: 1024px) {
	.home_voice {
		margin-top: 32px;
	}

	.home_voice_unit h3 {
		font-size: 2.4rem;
	}
}

@media only screen and (max-width: 880px) {
	.home_voiceArea::before {
		height: 38vw;
	}

	.home_voice {
		display: block;
		margin-top: 24px;
	}

	.home_voice_unit {
		width: 100%;
	}
	.home_voice_unit:nth-of-type(2) {
		margin-top: 40px;
	}

	.home_voice_unit h3 {
		padding-bottom: 12px;
	}

	.home_voice_sentence {
		margin-top: 16px;
	}
}

@media only screen and (max-width: 767px) {
	.home_voiceArea h2 {
		margin-top: 18px;
	}

	.home_voice_list a {
		margin-top: 24px;
	}
}

@media only screen and (max-width: 500px) {
	.home_voiceArea::before {
		height: 60vw;
	}

	.home_voice_sentence {
		margin-top: 12px;
	}

	.home_voice_list {
		padding: 0 15px;
	}
}