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

/*---------- サービス全体像 ----------*/
.sec-overview {
	width: 100%;
	padding: 80px 0;
	position: relative;
}
.sec-lead-txt {
	width: 100%;
	margin-bottom: 40px;
	font-size: 1.8rem;
	text-align: center;
}

/* 図 */
.overview-table-wrap {
	width: 100%;
	padding: 10px 10px 0 0;
	overflow-x: auto;
	white-space: nowrap;
}

.overview-table {
	width: 1190px;
	height: 100%;
	border-collapse: separate;
	border-spacing: 5px;
}
.td-inn {
	height: 100%;
	padding-top: 5px;
}
th,
td {
	vertical-align: top;
}
td.va-m {
	vertical-align: middle;
}

.txt-vertical {
	display: inline-block;
	text-align: left;
	writing-mode: vertical-rl;
}

/* 期間 */
.period {
	width: 230px;
	position: relative;
}
.period::before {
	content: '';
	width: calc(100% + 10px);
	height: 8px;
	background: var(--color-line-gray);
	position: absolute;
	top: calc(50% - 4px);
	left: -5px;
	z-index: 1;
}
.period-first::before {
	width: calc(100% - 5px);
	left: 10px;
	z-index: 1;
}
.period-first::after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-right: 20px solid var(--color-line-gray);
	border-top: 11px solid transparent;
	border-bottom: 11px solid transparent;
	position: absolute;
	top: calc(50% - 11px);
	left: 0;
	z-index: 3;
}
.period-last::before {
	width: calc(100% - 5px);
	z-index: 1;
}
.period-last::after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-left: 20px solid var(--color-line-gray);
	border-top: 11px solid transparent;
	border-bottom: 11px solid transparent;
	position: absolute;
	top: calc(50% - 11px);
	right: 0;
	z-index: 3;
}
.period p {
	color: var(--color-dark-green);
	font-size: 2.2rem;
	font-weight: 700;
	text-align: center;
	position: relative;
	z-index: 3;
}

/* フェーズ 吹き出し */
.phase-ttl {
	width: 30px;
	height: 40px;
	color: var(--color-white);
	font-weight: 600;
	text-align: center;
	position: relative;
}
.phase-ttl p {
	width: 50px;
	color: var(--color-white);
	font-size: 1.6rem;
	font-weight: 600;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 4;
}
.phase-ttl::before {
	content: '';
	width: 60px;
	height: 60px;
	background: var(--color-dark-green);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}
.phase-ttl::after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-top: 13px solid var(--color-dark-green);
	border-right: 7.5px solid transparent;
	border-left: 7.5px solid transparent;
	position: absolute;
	bottom: -21px;
	left: calc(50% - 7.5px);
	z-index: 3;
}

.price {
	background: var(--color-light-yellowgreen);
	color: var(--color-dark-green);
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
	position: relative;
	z-index: 1;
}

/* 期間の区切りの点線 */
.period-line,
.period-line.period-line-02 span {
	position: relative;
}
.period-line.period-line-02 span {
	display: block;
	width: 100%;
	height: 100%;
}
.period-line::before,
.period-line::after,
.period-line.period-line-02 span::before {
	content: '';
	width: 2px;
	height: 100%;
	border-left: 2px dashed var(--color-dark-green);
	position: absolute;
	top: 0;
	z-index: -1;
}
.period-line.period-line-01::before {
	left: calc(50% - 1px);
}
.period-line.period-line-01::after {
	right: calc((200px + 44.5px) * -1);
}
.period-line.period-line-02::before {
	left: calc(50% - 1px);
}
.period-line.period-line-02::after {
	left: calc((200px + 36.5px) * -1);
}
.period-line.period-line-02 span::before {
	left: calc(480px * -1);
}

/* フェーズ */
.phase-line-action {
	padding-left: 5px;
}
.phase-box-wrap {
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	padding: 15px 20px;
	background: rgba(208, 237, 223, 0.86);
	border-radius: 5px;
}
.phase-box {
	height: 100%;
	display: flex;
	flex-direction: column;
}
.phase-box-ttl {
	width: 100%;
	margin-bottom: 15px;
	padding: 5px;
	background: var(--color-cream);
	border-radius: 5px;
	color: var(--color-dark-green);
	font-weight: 700;
	text-align: center;
}
.phase-line-action .phase-box {
	width: calc((100% - 55px * 2) / 3);
}

/* 背景色とテキスト */
.overview-table tr:nth-child(3) th:first-child {
	width: 50px;
}
.overview-table .bg-dark-green {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-dark-green);
	border-radius: 5px;
	color: var(--color-white);
	text-align: center;
	padding: 15px 0;
}
.overview-table .bg-light-green {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	background: rgba(208, 237, 223, 0.86) !important;
	color: var(--color-dark-green);
	text-align: center;
	padding: 15px 0;
}
.overview-table .bg-green {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #54816b;
	border-radius: 5px;
	color: var(--color-white);
	text-align: center;
	padding: 15px 0;
}
.overview-table .bg-gray {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-line-gray);
	border-radius: 5px;
	text-align: center;
	padding: 15px 0;
}
.overview-table .border-box {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color-dark-green);
	border-radius: 5px;
	color: var(--color-dark-green);
	text-align: center;
	padding: 15px 0;
}
.fs-s {
	font-size: 1.4rem;
	letter-spacing: 0;
	line-height: 1.7;
}

.service-checkup,
.service-meeting {
	width: 180px;
	margin-bottom: 15px;
	display: flex;
	justify-content: center;
	gap: 30px;
}

.service-list-item {
	text-align: center;
}
.service-list-item img {
	width: 42px;
	margin: 0 auto 3px;
}
.service-list-item-txt {
	display: inline-block;
	color: var(--color-dark-green);
	font-size: 1.3rem;
	letter-spacing: 0;
	line-height: 1.4;
	position: relative;
}
.service-list-item-txt sup {
	position: absolute;
	top: 0;
	right: -1em;
}
.service-list-item-txt .bold {
	font-size: 1.5rem;
}

.phase-box-label {
	width: 100%;
	padding: 8px 10px;
	background: var(--color-white);
	border: 2px solid var(--color-dark-green);
	border-radius: 20px;
	color: var(--color-dark-green);
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
}

.txt-caption {
	font-size: 1.3rem;
	margin-top: 15px;
}

@media (max-width: 768px) {
	.sec-overview {
		width: 100%;
		padding: 16vw 0;
		position: relative;
	}
	.sec-lead-txt {
		width: 100%;
		margin-bottom: 8vw;
		font-size: 3.4vw;
	}

	/* 図 */
	.overview-table-wrap {
		width: 100%;
		padding: 2vw 2vw 0 0;
		overflow-x: auto;
		white-space: nowrap;
	}

	.txt-caption {
		font-size: 2.8vw;
		margin-top: 3vw;
	}
}

/*---------- 各サービスの詳細 ----------*/
.sec-detail {
	width: 100%;
	padding: 80px 0;
	position: relative;
}

/* 詳細ボックス */
.detail-wrap {
	width: 100%;
	background: var(--color-white);
	border-radius: 20px;
	padding: 15px 40px 40px;
}
.detail-wrap + .detail-wrap {
	margin-top: 50px;
}

/* 詳細ボックス 見出し */
.detail-head {
	width: 100%;
	align-items: center;
	gap: 50px;
	margin-bottom: 30px;
}
.detail-ttl-wrap {
	width: calc(100% - 387px);
}
.detail-ttl {
	width: 100%;
	margin-bottom: 30px;
	padding-bottom: 10px;
	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;
}
.detail-txt {
	font-size: 1.8rem;
	font-weight: 700;
}
.detail-head img {
	width: 337px;
}

/* 詳細ボックス コンテンツ */
.detail-body-ttl {
	width: calc(100% + 40px);
	background: var(--color-light-gray);
	border-radius: 0 10px 10px 0;
	color: var(--color-dark-green);
	font-size: 2.2rem;
	font-weight: 700;
	margin: 30px 0 20px;
	padding: 5px 40px;
	position: relative;
	left: -40px;
}

.check-list {
	width: 100%;
}
.check-list li {
	width: 100%;
	margin-bottom: 10px;
	padding-left: 34px;
	line-height: 1.6;
	position: relative;
}
.check-list li:last-child {
	margin-bottom: 0;
}
.check-list li::before {
	content: '';
	width: 21px;
	height: 21px;
	background: url('../../img/common/icon_check.svg') center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: 0.2em;
	left: 0;
}

.detail-body-caption {
	margin-top: 5px;
	font-size: 1.3rem;
}

.sample-img-wrap {
	width: 100%;
	align-items: flex-start;
	justify-content: center;
	gap: 40px;
}
.sample-img {
	width: calc((100% - 40px) / 2);
}
.sample-img-caption {
	margin-bottom: 10px;
	padding-left: 20px;
	font-weight: 700;
	line-height: 1;
	position: relative;
}
.sample-img-caption::before {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-top: 8px solid var(--color-dark-green);
	border-right: 6.5px solid transparent;
	border-left: 6.5px solid transparent;
	position: absolute;
	top: calc(50% - 4px);
	left: 0;
	transition: 0.3s ease-in-out;
}
.sample-img img {
	border: 1px solid var(--color-line-gray);
}

/* ボーダー付き見出し */
.detail-body-ttl-line {
	width: 100%;
	margin: 30px auto 20px;
	padding-left: 10px;
	border-left: 3px solid var(--color-blue);
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.4;
}

.border-list-box {
	background: var(--color-cream);
	border: 1px solid var(--color-line-gray);
	border-radius: 10px;
	padding: 20px;
}
.border-list-box ul li {
	font-size: 500;
	margin-bottom: 5px;
}
.border-list-box ul li:last-child {
	margin-bottom: 0;
}

/* サイバー保険 */
.insurance-box-left {
	width: 234px;
	padding: 0 30px 0 10px;
}
.insurance-box-left img {
	width: 90%;
	max-width: 56px;
	margin: 0 auto 12px;
}
.insurance-box-label {
	width: 100%;
	padding: 8px 10px;
	background: var(--color-white);
	border: 2px solid var(--color-dark-green);
	border-radius: 20px;
	color: var(--color-dark-green);
	font-weight: 700;
	line-height: 1;
	text-align: center;
}

.insurance-box-right {
	width: calc(100% - 234px);
	padding: 0 10px 0 30px;
	border-left: 1px solid var(--color-line-gray);
}
.insurance-box-txt {
	margin-bottom: 10px;
	font-weight: 700;
}

/* table */
.detail-body-table-wrap {
	width: 100%;
	align-items: flex-start;
	gap: 40px;
}
.detail-body-table-box {
	width: calc((100% - 40px) / 2);
}
.detail-body-table {
	width: 100%;
	border-collapse: collapse;
}
.detail-body-table th,
.detail-body-table td {
	text-align: center;
	vertical-align: middle;
	border: 1px solid var(--color-white);
	font-size: 1.4rem;
	line-height: 1.4;
}
.detail-body-table thead {
}
.detail-body-table thead th {
	height: 42px;
	padding: 5px;
	background: var(--color-dark-green);
	color: var(--color-white);
	font-weight: 700;
}
.detail-body-table tbody th {
	background: var(--color-light-green);
	color: var(--color-dark-green);
	font-weight: 700;
}
.detail-body-table tbody td {
	height: 55px;
	padding: 10px 5px;
	background: var(--color-light-gray);
}
.detail-body-table tbody td.fs-s {
	font-size: 1.2rem;
}

/* アコーディオンコンテンツ */
.accordion-ttl {
	cursor: pointer;
	display: inline-block;
	margin-top: 30px;
	padding-left: 20px;
	position: relative;
}
.accordion-ttl::before {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-top: 8px solid var(--color-dark-green);
	border-right: 6.5px solid transparent;
	border-left: 6.5px solid transparent;
	position: absolute;
	top: calc(50% - 4px);
	left: 0;
	transition: 0.3s ease-in-out;
}
.accordion-ttl.is-open::before {
	transform: rotate(180deg);
}
.accordion-ttl span {
	text-decoration: underline;
	font-weight: 700;
}

.accordion-cont {
	width: 100%;
	margin-top: 15px;
	padding: 20px;
	border: 1px solid var(--color-line-gray);
	border-radius: 10px;
	display: none;
}
.accordion-cont-ttl {
	width: 100%;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--color-line-gray);
	font-weight: 700;
	line-height: 1.4;
}
.accordion-cont-txt {
	font-size: 1.4rem;
}

.accordion-cont-list {
	padding-left: 1em;
	font-size: 1.4rem;
}

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

	/* 詳細ボックス */
	.detail-wrap {
		width: 100%;
		border-radius: 4vw;
		padding: 2vw 5vw 6vw;
	}
	.detail-wrap + .detail-wrap {
		margin-top: 10vw;
	}

	/* 詳細ボックス 見出し */
	.detail-head {
		width: 100%;
		align-items: center;
		flex-direction: column-reverse;
		gap: 2vw;
		margin-bottom: 6vw;
	}
	.detail-ttl-wrap {
		width: 100%;
	}
	.detail-ttl {
		width: 100%;
		margin-bottom: 3vw;
		padding-bottom: 2vw;
		font-size: 5.8vw;
	}
	.detail-txt {
		font-size: 3.4vw;
	}
	.detail-head img {
		width: 90%;
		margin: 0 auto;
	}

	/* 詳細ボックス コンテンツ */
	.detail-body-ttl {
		width: calc(100% + 5vw);
		border-radius: 0 2vw 2vw 0;
		font-size: 4.2vw;
		margin: 8vw 0 4vw;
		padding: 1vw 5vw;
		position: relative;
		left: -5vw;
	}

	.check-list {
		width: 100%;
	}

	.check-list li {
		width: 100%;
		margin-bottom: 2.5vw;
		padding-left: 6vw;
		font-size: 3.2vw;
	}
	.check-list li::before {
		content: '';
		width: 4vw;
		height: 4vw;
	}

	.detail-body-caption {
		margin-top: 1vw;
		font-size: 2.8vw;
	}

	.sample-img-wrap {
		width: 100%;
		align-items: flex-start;
		gap: 8vw;
	}
	.sample-img {
		width: 100%;
	}
	.sample-img-caption {
		margin-bottom: 2vw;
		padding-left: 4vw;
	}
	.sample-img-caption::before {
		content: '';
		display: block;
		width: 0;
		height: 0;
		border-top: 1.6vw solid var(--color-dark-green);
		border-right: 1.2vw solid transparent;
		border-left: 1.2vw solid transparent;
		position: absolute;
		top: calc(50% - 0.8vw);
	}

	/* ボーダー付き見出し */
	.detail-body-ttl-line {
		width: 100%;
		margin: 6vw auto 4vw;
		padding-left: 2vw;
		font-size: 3.4vw;
	}

	.border-list-box {
		border-radius: 2vw;
		padding: 4vw;
	}
	.border-list-box ul li {
		margin-bottom: 1vw;
	}
	.border-list-box ul li:last-child {
		margin-bottom: 0;
	}

	/* サイバー保険 */
	.insurance-box-left {
		width: 100%;
		padding: 0 0 5vw;
	}
	.insurance-box-left img {
		width: 20%;
		max-width: 56px;
		margin: 0 auto 2vw;
	}
	.insurance-box-label {
		width: 80%;
		margin: 0 auto;
		padding: 1.2vw 2vw;
		border-radius: 4vw;
	}

	.insurance-box-right {
		width: 100%;
		padding: 5vw 0 0;
		border-left: none;
		border-top: 1px solid var(--color-line-gray);
	}
	.insurance-box-txt {
		margin-bottom: 3vw;
	}

	/* table */
	.detail-body-table-wrap {
		width: 100%;
		align-items: flex-start;
		gap: 8vw;
	}
	.detail-body-table-box {
		width: 100%;
	}
	.detail-body-table {
		width: 100%;
		border-collapse: collapse;
	}
	.detail-body-table th,
	.detail-body-table td {
		font-size: 2.8vw;
	}
	.detail-body-table thead {
	}
	.detail-body-table thead th {
		height: auto;
		padding: 2vw;
	}
	.detail-body-table tbody th {
		letter-spacing: 0;
		padding: 2vw 1vw;
	}
	.detail-body-table tbody td {
		height: auto;
		padding: 2vw 0.5vw;
	}
	.detail-body-table tbody td.fs-s {
		font-size: 2.4vw;
	}

	/* アコーディオンコンテンツ */
	.accordion-ttl {
		cursor: pointer;
		display: inline-block;
		margin-top: 6vw;
		padding-left: 4vw;
		position: relative;
	}
	.accordion-ttl::before {
		content: '';
		display: block;
		width: 0;
		height: 0;
		border-top: 1.6vw solid var(--color-dark-green);
		border-right: 1.2vw solid transparent;
		border-left: 1.2vw solid transparent;
		position: absolute;
		top: calc(50% - 0.8vw);
	}

	.accordion-cont {
		width: 100%;
		margin-top: 3vw;
		padding: 4vw;
		border-radius: 2vw;
	}
	.accordion-cont-ttl {
		width: 100%;
		margin-bottom: 2vw;
		padding-bottom: 2vw;
	}
	.accordion-cont-txt {
		font-size: 3vw;
	}

	.accordion-cont-list {
		font-size: 3vw;
	}
}

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

.sec-service-link {
	width: 100%;
	padding: 0 0 80px;
}
.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;
	line-height: 1.4;
}

@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;
	}
}
