@charset "utf-8";

/* ヘッダー
-------------------------------------*/
.emphasis-dots {
	white-space: nowrap;
}

.emphasis-dots > span {
	position: relative;
	display: inline-block;
}

.emphasis-dots > span::before {
	position: absolute;
	top: -0.65em;
	left: 50%;
	content: "・";
	font-size: 0.55em;
	line-height: 1;
	transform: translateX(-50%);
}

header {
	position: relative;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 10;
}

header .head-area {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	aspect-ratio: 1920 / 1500;
	margin: 0 auto;
	padding: 1rem 1.5rem;
	background-image:
		url("../images/header-deco.png"),
		url("../images/header-bg.jpg");
	background-image:
		image-set(
			url("../images/header-deco.png") 1x,
			url("../images/header-deco@2x.png") 2x
		),
		image-set(
			url("../images/header-bg.jpg") 1x,
			url("../images/header-bg@2x.jpg") 2x
		);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.head-logo {
	width: clamp(130px, 30vw, 329px);
	align-self: flex-start;
}

.catch-copy {
	position: absolute;
	top: 40%;
	left: 50%;
	width: min(53.8021vw, 1033px);
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.catch-support {
	position: absolute;
	top: 60%;
	left: 87%;
	width: min(19.4271vw, 373px);
	transform: translate(-50%, -50%);
	pointer-events: none;
}
/* オーバーレイ */
.overlay {
	display: none;
}

@media screen and (max-width: 960px) {
	header h1 {
		margin-bottom: 0;
	}

	/* オーバーレイ */
	.overlay {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 8;
		width: 100%;
		height: 100%;
		background-color: rgba(31, 41, 55, 0.5);
		backdrop-filter: blur(4px);
		-webkit-backdrop-filter: blur(4px);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
	}

	.overlay.active {
		opacity: 1;
		visibility: visible;
	}
}

/* フッター
-------------------------------------*/
footer {
	padding: 1rem 1rem;
	background-color: #538869;
	color: #FAFAE6;
}

.foot-logo {
	width: 100%;
	max-width: clamp(250px, 31.875vw, 612px);
}

.copyright {
	margin: 0;
	font-size: 14px;
	text-align: center;
}

.contact-button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: min(100%, 800px);
	margin-right: auto;
	margin-left: auto;
	padding: clamp(15px, 1.5vw, 25px);
	border: 2px solid #FAFAE6;
	background-color: #538869;
	color: #FAFAE6;
	font-size: clamp(24px, 2.604vw, 50px);
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-button:hover,
.contact-button:focus-visible {
	background-color: #FAFAE6;
	color: #538869;
}

@media screen and (min-width: 769px) {
	.footer-info {
		gap: clamp(30px, 5.208vw, 100px);
	}
}
/* トップページ
-------------------------------------*/
/* FV */
.fv {
	position: relative;
	text-align: center;
}

main {
	background-color: #FAFAE6;
}

#area-03 {
	padding-bottom: clamp(90px, 9.375vw, 180px);
}

#area-04 {
	width: 100vw;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
	padding-top: clamp(90px, 9.375vw, 180px);
	padding-bottom: clamp(90px, 9.375vw, 180px);
	background-color: #95B5A2;
	color: #FAFAE6;
}

#area-05 {
	width: 100vw;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
	background-color: #FAFAE6;
}

.service-panel-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 644px));
	justify-content: center;
	gap: clamp(30px, 9.375vw, 180px);
	padding: clamp(90px, 9.375vw, 180px) 0;
}

.service-panel {
	position: relative;
	isolation: isolate;
	min-height: clamp(280px, 25vw, 480px);
	padding: clamp(25px, 3vw, 55px) clamp(20px, 2.084vw, 40px);
	border: 2px solid #538869;
	color: #538869;
}

.service-panel__dots {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: clamp(110px, 12vw, 230px);
	height: auto;
	transform: translate(-25%, -25%);
}

.service-panel__heading {
	position: relative;
	z-index: 1;
	min-height: 160px;
	padding-right: clamp(120px, 9.532vw, 183px);
}

.service-panel__title {
	margin: 0;
	font-size: clamp(24px, 1.979vw, 38px);
	font-weight: bold;
	line-height: 1.4;
}

.service-panel-text {
	width: 100%;
	color: #926641;
	font-size: clamp(16px, 1.146vw, 22px);
	text-align: left;
}

.service-panel-points {
	color: #926641;
	font-size: clamp(20px, 1.563vw, 30px);
	font-weight: 600;
}

.service-panel-points > li::before {
	display: inline-block;
	margin-right: 0.5em;
	font-size: 0.6em;
	vertical-align: 0.15em;
	content: "●";
}

.nowrap {
	white-space: nowrap;
}

.service-panel__heading-image {
	position: absolute;
	top: 0;
	right: 0;
	max-width: 167px;
	height: auto;
}

.service-panel__heading-image--money {
	width: min(100%, 167px);
}

.service-panel__heading-image--after {
	width: min(100%, 167px);
}

.service-panel__leaf {
	position: absolute;
	z-index: 1;
	height: auto;
	pointer-events: none;
}

.service-panel__leaf--money {
	right: 0;
	bottom: 0;
	width: min(72%, 563px);
	transform: translateY(50%);
}

.service-panel__leaf--after {
	right: 0;
	bottom: 0;
	width: min(43%, 334px);
	transform: translate(25%, 45%);
}

.step-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(20px, 2.084vw, 40px);
	margin: clamp(40px, 5vw, 90px) auto 0;
}

.step-card {
	padding: 24px clamp(20px, 4vw, 60px);
	border-radius: 20px;
	background-color: #FAFAE6;
	color: #916641;
	text-align: center;
}

.step-card__number {
	display: block;
	width: min(100%, 254px);
	height: auto;
	margin: 0 auto 24px;
}

.step-card__title {
	margin: 0 0 clamp(12px, 1.5vw, 24px);
	font-size: clamp(24px, 2.084vw, 40px);
	font-weight: bold;
	line-height: 1.4;
}

.step-card__text {
	margin: 0;
	font-size: clamp(16px, 1.146vw, 22px);
	line-height: 1.8;
}

.example-ttl {
	display: flex;
	align-items: center;
	gap: clamp(15px, 2vw, 40px);
	width: 100%;
	margin-top: clamp(50px, 5.208vw, 100px);
	margin-bottom: 40px;
	font-size: clamp(20px, 1.563vw, 30px);
	font-weight: bold;
	white-space: nowrap;
}

.example-ttl::before,
.example-ttl::after {
	flex: 1 1 auto;
	height: 2px;
	background-color: currentColor;
	content: "";
}

@media screen and (max-width: 1100px) {
	.service-panel-list {
		grid-template-columns: 1fr;
	}

	.service-panel {
		width: min(100%, 644px);
		margin-right: auto;
		margin-left: auto;
	}
}

@media screen and (max-width: 800px) {
	.service-panel__leaf--money {
		right: 10px;
		width: min(58%, 360px);
		transform: translateY(30%);
	}

	.service-panel__leaf--after {
		right: 10px;
		width: min(34%, 210px);
		transform: translateY(25%);
	}
}

/* 共通リンクボタン */
a.link-btn__round-border {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: max-content;
	max-width: 100%;
	min-height: clamp(50px, 6vw, 70px);
	margin-bottom: 1rem;
	padding: .5rem clamp(.75rem, 2vw, 1.25rem) .5rem clamp(1rem, 2.5vw, 1.75rem);
	border: 2px solid #FAFAE6;
	border-radius: 0;
	background-color: #538869;
	color: #FAFAE6;
	font-size: clamp(14px, 2.5vw, 28px);
	white-space: nowrap;
	transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}

a.link-btn__round-border:hover,
a.link-btn__round-border:focus-visible {
	border-color: #538869;
	background-color: #FAFAE6;
	color: #538869;
}

a.link-btn__round-border::after {
	display: inline-block;
	flex: 0 0 auto;
	width: 8px;
	height: 10px;
	margin-left: 1rem;
	background-color: currentColor;
	clip-path: polygon(0 0, 0 100%, 100% 50%);
	content: "";
	transition: background-color .3s ease;
}

@media screen and (max-width: 560px) {
	a.link-btn__round-border::after {
		width: 7px;
		height: 9px;
		margin-left: .75rem;
	}
}

.great-value {
	font-weight: bold;
	font-size: clamp(24px, 4vw, 72px);
	color: #538869;
	text-align: center;
}

.great-value__line {
	display: inline-flex;
	align-items: center;
}

.area-number {
	width: 100%;
	max-width: 260px;
	margin: 4rem auto;
	text-align: center;
}

.font-16-20 {
	font-size: clamp(16px, 2vw, 20px);
}

.font-18-35 {
	font-size: clamp(18px, 2vw, 35px);
}

.font-18-30 {
	font-size: clamp(18px, 3vw, 30px);
}

.font-20-36 {
	font-size: clamp(20px, 3vw, 36px);
}

.font-22-60 {
	font-size: clamp(22px, 3.5vw, 60px);
}

.font-22-76 {
	font-size: clamp(22px, 6vw, 76px);
}

.font-24-50 {
	font-size: clamp(24px, 5vw, 50px);
}

.support-amount {
	display: inline-flex;
	align-items: center;
	padding: 0 20px;
	background-color: #538869;
	color: #fce864;
	font-size: 150%;
	line-height: 1;
}

.support-amount-m {
	display: inline-flex;
	align-items: center;
	padding: 0 20px;
	background-color: #538869;
	color: #fce864;
	font-size: 250%;
	line-height: 1;
}

.support-amount__middle {
	font-size: 58%;
}

.support-amount__small {
	font-size: 62%;
}

.support-total::after,
.section-divider {
	display: block;
	width: min(100%, 1050px);
	height: 1px;
	margin: clamp(30px, 5.208vw, 100px) auto 0;
	background-color: #926641;
}

.support-total::after {
	content: "";
}

.land-price-table {
	position: relative;
	z-index: 1;
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	background-color: #FAFAE6;
	color: #926641;
	font-size: clamp(12px, 2.5vw, 34px);
}

.land-price-table th,
.land-price-table td {
	width: 33.333%;
	padding: clamp(5px, 1vw, 10px);
	border: 1px solid #926641;
	text-align: center;
	vertical-align: middle;
	line-height: 1.35;
}

.land-price-table th {
	background-color: #D6EAD9;
	font-weight: bold;
}

.land-price-table__nowrap {
	white-space: nowrap;
}

.land-price-table-wrap {
	position: relative;
	isolation: isolate;
}

.land-price-leaf {
	position: absolute;
	top: 33.333%;
	left: calc(50% - 50vw);
	z-index: 0;
	width: clamp(100px, 16.667vw, 320px);
	height: auto;
	pointer-events: none;
}

.land-price-table-wrap::after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 33.333%;
	z-index: 2;
	width: 33.333%;
	box-sizing: border-box;
	border: 7px solid #CCDC46;
	content: "";
	pointer-events: none;
}

@media screen and (max-width: 560px) {
	.land-price-table th,
	.land-price-table td {
		padding: 6px 3px;
	}

	.land-price-table-wrap::after {
		border-width: 3px;
	}
}

.support-text {
	font-size: clamp(18px, 2.5vw, 35px);
	font-weight: bold;
	line-height: 1.6;
}

.support-kome {
	font-size: clamp(16px, 2vw, 20px);
	text-align: right;
}

.support-underline {
	background-image: linear-gradient(#fce864, #fce864);
	background-position: left 88%;
	background-size: 100% 0.28em;
	background-repeat: no-repeat;
}

.support-list-wrap {
	position: relative;
	isolation: isolate;
}

.support-list {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(15px, 2vw, 30px);
	width: 100%;
	max-width: 1280px;
	margin: 40px auto 80px;
}

.support-list-leaf {
	position: absolute;
	top: 50%;
	right: calc(50% - 50vw);
	z-index: 0;
	width: clamp(100px, 16.25vw, 312px);
	height: auto;
	transform: translateY(-50%);
	pointer-events: none;
}

.support-list > li {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	aspect-ratio: 290.79 / 327.12;
	padding: 15% 10% 5%;
	background-image: url("../images/support-bg.svg");
	background-position: center;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	color: #fff;
	font-size: clamp(20px, 2vw, 30px);
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
}

.support-list > li:nth-child(4) {
	padding-right: 0;
	padding-left: 0;
}

.support-list > li:nth-child(4) .support-list__text {
	white-space: nowrap;
}

.support-list__text {
	display: block;
	min-height: 4.5em;
}

.support-list__500 {
	width: min(75%, 201px);
	margin-top: 12px;
}

.support-list__100 {
	width: min(90%, 237px);
	margin-top: 12px;
}

.support-list__50 {
	width: min(75%, 191px);
	margin-top: 12px;
}

.support-sub {
	font-size: clamp(22px, 6vw, 76px);
	color: #926641;
	font-weight: bold;
	text-align: center;
}

.support-sub-amount {
	display: inline-flex;
	align-items: center;
	padding: 0 20px;
	background-color: #FCE864;
	color: #926641;
	font-size: 150%;
	line-height: 1;
	vertical-align: middle;
}

.support-sub-amount__small {
	font-size: 66.5%;
}

.vertical-equal {
	display: inline-block;
	line-height: 1;
	transform: rotate(90deg);
}

.support-sub-limited {
	overflow: visible;
}

.support-sub-limited__inner {
	position: relative;
	display: inline-block;
	white-space: nowrap;
}

.limited {
	position: absolute;
	right: calc(100% + clamp(40px, 2vw, 55px));
	bottom: clamp(-55px, -4vw, -25px);
	width: clamp(90px, 20vw, 302px);
}

.limited img {
	display: block;
	width: 100%;
	height: auto;
}

.access-text {
	display: flex;
	align-items: center;
	gap: 0.5em;
	color: #916641;
	font-weight: bold;
	text-align: left;
}

.access-title-wrap {
	position: relative;
	isolation: isolate;
}

.access-title-leaf {
	position: absolute;
	top: calc(100% + clamp(10px, 1.042vw, 20px));
	right: calc(50% - 50vw);
	z-index: -1;
	width: clamp(100px, 16.667vw, 320px);
	height: auto;
	pointer-events: none;
}

.access-icon {
	flex-shrink: 0;
	width: 1.6em;
	height: auto;
}

/* その他
-------------------------------------*/
/* ページトップへ戻るボタン */
#page-top {
	position: fixed;
	right: 15px;
	bottom: -70px;
	z-index: 4;
	transition: bottom 0.3s ease-in-out;
}

#page-top.show {
	bottom: 20px;
}

#page-top a {
	display: block;
	width: 50px;
	padding: 15px 5px;
	border-radius: 5px;
	background-color: var(--sub-color_01);
	color: var(--white);
	font-weight: bold;
	text-align: center;
	transition: background-color 0.3s;
}

@media screen and (max-width: 768px) {
	header .head-area {
		padding: 1rem;
	}

	.head-logo {
		transform: translateY(-16px);
	}

	.catch-copy {
		left: 43%;
		width: 70vw;
	}

	.catch-support {
		left: 89%;
	}

	.support-amount {
		padding: 0 5px;
		font-size: 150%;
		line-height: 1;
	}

	.support-kome {
		text-align: center;
	}

	.support-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.step-list {
		grid-template-columns: 1fr;
	}

	.service-panel-list {
		grid-template-columns: 1fr;
		gap: clamp(100px, 20vw, 150px);
	}

	.service-panel {
		min-height: 300px;
	}

	.land-price-leaf,
	.access-title-leaf {
		z-index: -1;
	}

	.land-price-leaf {
		top: auto;
		bottom: 0;
		width: clamp(70px, 12.5vw, 96px);
	}

	.support-list-leaf,
	.access-title-leaf {
		width: clamp(70px, 12.5vw, 96px);
	}

	.land-price-table,
	.access-title-wrap + p,
	.access-title-wrap ~ .flex {
		position: relative;
		z-index: 1;
	}
}

@media screen and (max-width: 560px) {
	.catch-copy {
		top: 45%;
	}

	.catch-support {
		top: 48%;
		left: 84%;
		width: min(28vw, 140px);
	}

	.area-number {
		max-width: 130px;
		margin: 2rem auto;
	}

	.support-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
		margin-bottom: 40px;
	}

	.support-list > li {
		padding: 15% 5% 5%;
		font-size: clamp(12px, 4vw, 16px);
	}

	.support-list > li:nth-child(4) .support-list__text {
		white-space: normal;
	}

	.support-list__500,
	.support-list__100,
	.support-list__50 {
		margin-top: 6px;
	}

	.limited {
		right: calc(100% - 20px);
		bottom: -50px;
	}

	.service-panel__heading {
		min-height: 90px;
		padding-right: 90px;
	}

	.service-panel__title {
		font-size: 19px;
	}

	.service-panel__heading-image--money,
	.service-panel__heading-image--after {
		width: 80px;
	}
}
