/* ------------------------------------------------
              アドバイザリーサービス
--------------------------------------------------- */

/*---------- サービス全体像 ----------*/
.sec-overview {
	width: 100%;
	padding: 80px 0;
	position: relative;
}


/* 詳細ボックス */
.overview-wrap {
	width: 100%;
	background: var(--color-white);
	border-radius: 20px;
	margin-top: 50px;
	padding: 40px;
}
/* 詳細ボックス 見出し */
.overview-head {
	width: 100%;
	margin-bottom: 30px;
	align-items: center;
	gap: 50px;
}
.overview-ttl-wrap {
	width: calc(100% - 387px);
}
.overview-ttl {
	width: 100%;
	margin-bottom: 30px;
	padding-bottom: 10px;
	align-items: center;
	border-bottom: 1px solid var(--color-line-gray);
	color: var(--color-dark-green);
	font-size: 3.2rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.6;
}
.overview-ttl img {
	width: 41px;
	margin-right: 20px;
}
.overview-txt {
	font-weight: 500;
	line-height: 1.75;
}
.overview-head .overview-ttl-img {
	width: 337px;
	border-radius: 20px;
	overflow: hidden;
}


/* オプションリスト */
.service-list {
	width: 100%;
	gap: 20px;
	justify-content: center;
}

.service-list li {
	background: var(--color-white);
	border: 1px solid var(--color-line-gray);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	padding: 20px;
}
.service-list.is-column-3 li {
	width: calc((100% - 40px) / 3);
}
.service-list.is-column-4 li {
	width: calc((100% - 60px) / 4);
}

.service-list-ttl {
	width: 100%;
	margin-bottom: 20px;
	padding-bottom: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid var(--color-line-gray);
	color: var(--color-dark-green);
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
}
.service-list.is-column-4 .service-list-ttl {
	min-height: 3.6em;
}
.service-list-txt {
	width: 100%;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 2;
	margin-bottom: 20px;
}
.service-list-price {
	width: 100%;
	margin-top: auto;
	background: var(--color-light-green);
	border-radius: 10px;
	color: var(--color-dark-green);
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
	padding: 15px;
	text-align: center;
}


@media (max-width: 960px) {
	.service-list.is-column-4 li {
		width: calc((100% - 20px) / 2);
	}
}

@media (max-width: 768px) {
	.sec-overview {
		width: 100%;
		padding: 16vw 0;
		position: relative;
	}


	/* 詳細ボックス */
	.overview-wrap {
		width: 100%;
		padding: 8vw 5vw 6vw;
		border-radius: 4vw;
		margin-top: 10vw;
	}
	/* 詳細ボックス 見出し */
	.overview-head {
		width: 100%;
		align-items: center;
		flex-direction: column-reverse;
		gap: 2vw;
	}
	.overview-ttl-wrap {
		width: 100%;
	}
	.overview-ttl {
		width: 100%;
		margin-bottom: 3vw;
		padding-bottom: 2vw;
		font-size: 5.8vw;
	}
	.overview-ttl img {
		width: 8vw;
		margin-right: 4vw;
	}
	.overview-head .overview-ttl-img {
		width: 90%;
		margin: 0 auto 2vw;
		border-radius: 4vw;
	}



	/* オプションリスト */
	.service-list {
		width: 100%;
		gap: 5vw 4vw;
		justify-content: center;
	}

	.service-list li {
		border-radius: 4vw;
		padding: 4vw;
	}
	.service-list.is-column-3 li, 
	.service-list.is-column-4 li {
		width: 100%;
	}

	.service-list-ttl {
		width: 100%;
		margin-bottom: 4vw;
		padding-bottom: 3vw;
		font-size: 3.4vw;
	}
	.service-list.is-column-4 .service-list-ttl {
		min-height: initial;
	}
	.service-list-txt {
		width: 100%;
		font-size: 3.0vw;
		margin-bottom: 4vw;
	}
	.service-list-price {
		width: 100%;
		border-radius: 2vw;
		font-size: 3.4vw;
		padding: 3vw;
	}
}



/*---------- 各サービスへのリンク ----------*/

.sec-service-link {
	width: 100%;
	padding: 50px 0;
	border-bottom: 1px solid var(--color-line-gray);
}
.sec-service-link .cont-inn {
	justify-content: center;
	gap: 50px;
}
.sec-service-link .btn-white {
	width: 290px;
	padding: 16px 20px 16px 10px;
	border: 2px solid var(--color-dark-green);
	font-size: 1.8rem;
	letter-spacing: 0;
}


@media (max-width: 768px) {

	.sec-service-link {
		width: 100%;
		padding: 8vw 0;
		border-bottom: 1px solid var(--color-line-gray);
	}
	.sec-service-link .cont-inn {
		justify-content: center;
		gap: 4vw;
	}
	.sec-service-link .btn-white {
		width: 80%;
		padding: 3vw 4.4vw;
		font-size: 3.6vw;
	}

}
