@charset "UTF-8";
/*--------------------------------------------------
**************************************************
  汎用
**************************************************
--------------------------------------------------*/
.heading_box {
	text-align: center;
}

.heading_box .sub {
	font-family: "Roboto", sans-serif;
	font-size: 16.0rem;
	font-weight: 800;
	font-style: italic;
	line-height: 1;
	color: var(--green-1);
}

.heading_box .main {
	font-size: 5.6rem;
	font-weight: 800;
	line-height: 1.78;
}

/* SP */
@media screen and (max-width: 767px) {
	.heading_box .sub {
		font-size: 5.0rem;
	}

	.heading_box .main {
		font-size: 2.4rem;
	}
}


/*--------------------------------------------------
**************************************************
  .land-survey-banner
**************************************************
--------------------------------------------------*/
.land-survey-banner {
	display: flex;
	/*
	justify-content: space-between;
	align-items: center;
	*/
	overflow: hidden;
	width: 100%;
	min-height: 500px;
	aspect-ratio: 1920 / 797;
	background: var(--gray-2);
}

.land-survey-banner__image-side {
	flex: 0 0 25%; /* 画面の25%を占有（調整可） */
	min-width: 150px;
}

.land-survey-banner__image-side picture,
.land-survey-banner__image-side img {
	object-fit: cover;
	display: block;
	width: 100%;
	height: 100%;
}

.land-survey-banner__content {
	flex: 1; /* 残りの幅をすべて使う */
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 0;
	padding: 2% 3%;
	text-align: center;
}

.land-survey-banner__inner {
	width: min(100%, 800px);
}

.land-survey-banner__title {
	text-align: center;
	font-size: clamp(5.5rem, 3.82vw, 7.0rem);
	font-weight: 800;
	line-height: 1.4;
}

.land-survey-banner__subtitle {
	margin-top: 32px;
	text-align: center;
	font-size: clamp(3.0rem, 2.08vw, 4.0rem);
	font-weight: 700;
	line-height: 1.15;
	color: var(--green-1);
}

.land-survey-banner__lead {
	text-align: center;
	font-size: clamp(1.8rem, 1.25vw, 2.4rem);
	font-weight: 700;
	line-height: 1.9;
}

.land-survey-banner__features {
	margin-top: 32px;
}

.land-survey-banner__feature-item {
	width: 100%;
	padding: 8px 16px;
	background: var(--white-1);
	text-align: center;
	font-size: clamp(1.6rem, 1.1vw, 2.4rem);
	font-weight: 800;
}

.land-survey-banner__feature-item + .land-survey-banner__feature-item {
	margin-top: 16px;
}

.land-survey-banner__feature-item .u-text-accent {
	color: var(--green-1);
}

/* PC - SP */
@media screen and (max-width: 1310px) {
	.land-survey-banner {
		flex-direction: column;
		min-height: auto;
		aspect-ratio: auto;
	}

	.land-survey-banner__image-side {
		flex: none;
		min-width: initial;
		aspect-ratio: 375 / 160;
	}

	.land-survey-banner__content {
		flex: none;
		padding: 40px 5%;
	}
}

/* SP */
@media screen and (max-width: 767px) {
	.land-survey-banner__title {
		font-size: 2.8rem;
		line-height: 1.6;
	}

	.land-survey-banner__subtitle {
		margin-top: 16px;
		font-size: 2.2rem;
		line-height: 1.6;
	}

	.land-survey-banner__lead {
		margin-top: 16px;
		font-size: 1.6rem;
		font-weight: 600;
		line-height: 1.6;
	}

	.land-survey-banner__features {
		margin-top: 24px;
	}

	.land-survey-banner__feature-item {
		padding: 8px 5%;
		font-size: 1.5rem;
		line-height: 1.4;
	}
}


/*--------------------------------------------------
**************************************************
  .reason_box（5つの選ばれる理由）
**************************************************
--------------------------------------------------*/
.reason_box {
	width: min(var(--content-pc-width-2), var(--content-sp-width-1));
	margin-inline: auto;
	padding-top: 134px;
}

.reason_box > ol {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 45px;
	width: 100%;
	margin-top: 64px;
}

.reason_box > ol li {
	position: relative;
	width: min(100%, 540px);
}

.reason_box > ol .count {
	display: inline-block;
	text-align: center;
	font-size: 2.0rem;
	font-weight: 800;
	font-style: italic;
	line-height: 1;
	color: rgba(29, 29, 29, 0.4);
}

.reason_box > ol .count .num {
	font-size: 9.6rem;
}

.reason_box > ol .catch {
	position: absolute;
	top: 20px;
	right: 32px;
	z-index: 1;
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-start;
	gap: 8px;
}

.reason_box > ol .catch .tategaki {
	background: var(--white-1);
	font-size: 3.8rem;
	font-weight: 800;
	line-height: 1.3;
}

.reason_box > ol .catch .tategaki:nth-child(1),
.reason_box > ol > li:nth-child(1) .catch .tategaki:nth-child(2),
.reason_box > ol > li:nth-child(2) .catch .tategaki:nth-child(2),
.reason_box > ol > li:nth-child(4) .catch .tategaki:nth-child(2){
	padding-bottom: 5px;
}

.reason_box > ol .catch .tategaki .accent {
	display: inline-block;
	padding-inline: 5px;
	background: var(--black-1);
	color: var(--green-2);
}

.reason_box > ol .catch .tategaki:nth-child(1) .accent {
	margin-bottom: 5px;
}

.reason_box > ol > li:nth-child(3) .catch .tategaki:nth-child(2) .accent {
	margin-top: 5px
}

.reason_box > ol .image {
	aspect-ratio: 540 / 600;
}

.reason_box > ol .lead {
	margin-top: 32px;
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1.5;
}

/* SP */
@media screen and (max-width: 767px) {
	.reason_box {
		padding-block: 64px 0;
	}

	.reason_box > ol {
		gap: 40px;
		margin-top: 32px;
	}

	.reason_box > ol .count {
		font-size: 1.4rem;
	}

	.reason_box > ol .count .num {
		font-size: 6.0rem;
	}

	.reason_box > ol .catch {
		position: absolute;
		top: 20px;
		right: 16px;
	}

	.reason_box > ol .catch .tategaki {
		font-size: 2.8rem;
		line-height: 1.3;
	}

	.reason_box > ol .lead {
		margin-top: 16px;
		font-size: 1.6rem;
		line-height: 2;
	}
}


/*--------------------------------------------------
**************************************************
  .price_box（料金体系）
**************************************************
--------------------------------------------------*/
.price_box {
	margin-top: 160px;
}

.price_base {
	width: min(800px, 100%);
	margin: 64px auto 0;
	padding: 32px 5%;
	background: var(--green-3);
}

.price_base_item {
	display: flex;
	justify-content: space-between;
	gap: 10px;
}

.price_base_item + .price_base_item {
	margin-top: 8px;
}

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

.price_base_item_name .poppins {
	font-size: 2.4rem;
	font-weight: 600;
}

.price_base_item_value {
	font-size: 2.0rem;
	font-weight: 600;
}

.price_base_item_value .poppins {
	font-size: 3.0rem;
	font-weight: 600;
}

.price_base_note {
	margin-top: 16px;
	text-align: center;
	font-size: 2.0rem;
	font-weight: 700;
	line-height: 2;
}

.price_list {
	border-collapse: collapse;
	width: 100%;
	margin-top: 40px;
}

.price_list th {
	position: relative;
	padding-bottom: 50px;
}

.price_list th:nth-child(1) {
	width: 30%;
}

.price_list th:nth-child(2) {
	width: 70%;
	padding-left: 8px;
}

.price_list th span {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background: var(--black-1);
	text-align: center;
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--white-1);
}

.price_list td {
	padding-block: 8px;
	border-bottom: var(--black-1) 1px solid;
	vertical-align: middle;
	font-size: 1.8rem;
	font-weight: 500;
}

.price_list td:nth-child(1) span {
	display: block;
	padding: 12px 5px;
	background: var(--green-3);
	text-align: center;
	font-size: 2.0rem;
	font-weight: 700;
	color: var(--green-1);
}

.price_list td:nth-child(2) {
	padding-inline: 25px;
}

.price_delivery_format {
	margin-top: 80px;
}

.price_delivery_format h3 {
	font-size: 4.8rem;
	font-weight: 800;
	line-height: 1.5;
}

.price_delivery_format ul {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 24px;
}

.price_delivery_format li {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 15px;
	width: min(410px, 100%);
	padding-block: 32px;
	background: var(--gray-2);
}

.price_delivery_format li p:nth-child(1) {
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1;
}

.price_delivery_format li p:nth-child(2) {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1;
}

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

	.price_base {
		margin-top: 40px;
		padding: 16px;
	}

	.price_base_item_name {
		font-size: 1.6rem;
	}

	.price_base_item_name .poppins {
		font-size: 1.4rem;
	}

	.price_base_item_value {
		font-size: 1.6rem;
	}

	.price_base_item_value .poppins {
		font-size: 1.6rem;
	}

	.price_base_note {
		margin-top: 24px;
		font-size: 1.4rem;
		line-height: 1.57;
	}

	.price_list {
		margin-top: 22px;
	}

	.price_list th {
		padding-bottom: 50px;
	}

	.price_list th span {
		font-size: 1.3rem;
	}

	.price_list td {
		font-size: 1.4rem;
	}

	.price_list td:nth-child(1) span {
		font-size: 1.4rem;
	}

	.price_list td:nth-child(2) {
		padding-inline: 8px 0;
	}

	.price_delivery_format {
		margin-top: 40px;
	}

	.price_delivery_format h3 {
		font-size: 2.2rem;
		line-height: 1;
	}

	.price_delivery_format ul {
		gap: 8px;
	}

	.price_delivery_format li {
		gap: 10px;
		padding-block: 24px;
	}

	.price_delivery_format li p:nth-child(1) {
		font-size: 1.8rem;
	}

	.price_delivery_format li p:nth-child(2) {
		font-size: 1.4rem;
	}
}


/*--------------------------------------------------
**************************************************
  .conversion_support_box
**************************************************
--------------------------------------------------*/
.conversion_support_box {
	width: 100%;
	margin-top: 100px;
	padding: 80px 5%;
	background: var(--green-3);
}

.conversion_support_sub_heading {
	text-align: center;
}

.conversion_support_sub_heading span {
	padding: 16px 24px;
	background: var(--white-1);
	font-size: 4.0rem;
	font-weight: 700;
	line-height: 1.15;
	color: var(--green-1);
}

.conversion_support_heading {
	margin-top: 24px;
	text-align: center;
	font-size: 7.0rem;
	font-weight: 700;
	color: var(--green-1);
}

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

.conversion_support_lead span {
	color: var(--green-1);
}

.conversion_support_option_heading {
	margin-top: 40px;
	text-align: center;
	font-size: 4.8rem;
	font-weight: 800;
	line-height: 1.5;
}

.conversion_support_option_price {
	width: min(800px, 100%);
	margin: 8px auto 0;
	padding: 32px 3%;
	background: var(--white-1);
	border: var(--black-1) 1px solid;
}

.conversion_support_option_price_item {
	display: flex;
	justify-content: space-between;
	gap: 10px;
}

.conversion_support_option_price_item + .conversion_support_option_price_item {
	margin-top: 8px;
}

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

.conversion_support_option_price_item_name .poppins {
	font-size: 2.4rem;
	font-weight: 600;
}

.conversion_support_option_price_item_value {
	font-size: 2.0rem;
	font-weight: 600;
}

.conversion_support_option_price_item_value .poppins {
	font-size: 3.0rem;
	font-weight: 600;
}

/* SP */
@media screen and (max-width: 767px) {
	.conversion_support_box {
		margin-top: 40px;
		padding-block: 40px;
	}

	.conversion_support_sub_heading span {
		padding: 8px 16px;
		font-size: 1.8rem;
		line-height: 1;
	}

	.conversion_support_heading {
		font-size: 2.8rem;
	}

	.conversion_support_lead {
		font-size: 1.6rem;
	}

	.conversion_support_option_heading {
		font-size: 2.0rem;
		line-height: 1;
	}

	.conversion_support_option_price {
		margin-top: 16px;
		padding: 16px;
	}

	.conversion_support_option_price_item_name,
	.conversion_support_option_price_item_name .poppins {
		font-size: 1.5rem;
	}

	.conversion_support_option_price_item_value,
	.conversion_support_option_price_item_value .poppins {
		font-size: 1.5rem;
	}
}


/*--------------------------------------------------
**************************************************
  .case_box
**************************************************
--------------------------------------------------*/
.case_box {
	position: relative;
	width: 100%;
	margin-top: 172px;
	padding: 268px 5% 160px;
	background: var(--gray-2);
}

.case_box .heading_box {
	position: absolute;
	top: -110px;
	left: 50%;
	transform: translateX(-50%);
}

.case_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 27px;
}

.case_list_group {
	width: min(408px, 100%);
	padding: 64px 24px;
	background: var(--white-1);
}

.case_list_group_heading {
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--green-1);
}

.case_list_group_item {
	margin-top: 40px;
}

.case_list_group_item h4 {
	display: inline-block;
	padding: 8px 16px;
	background: var(--green-3);
	border-radius: 8px;
	font-family: "Roboto", sans-serif;
	font-style: italic;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1;
	color: var(--green-1);
}

.case_list_group_item p {
	margin-top: 8px;
	font-weight: 500;
	line-height: 2;
}

/* SP */
@media screen and (max-width: 767px) {
	.case_box {
		margin-top: 149px;
		padding-block: 56px 24px;
	}

	.case_box .heading_box {
		top: -75px;
	}

	.case_list {
		gap: 16px;
	}

	.case_list_group {
		padding: 24px 16px;
	}

	.case_list_group_heading {
		font-size: 1.8rem;
	}

	.case_list_group_item {
		margin-top: 16px;
	}

	.case_list_group_item h4 {
		font-size: 1.4rem;
	}

	.case_list_group_item p {
		font-size: 1.4rem;
		line-height: 1.71;
	}
}