@charset "utf-8";

.color--required {
	color: #D64C66;
}

.subsection-inner__body {
	margin-top: 30px;
}

.intro {

	& .section-header {
		display: flex;
		flex-direction: column;
	}

	& .section-header__txt {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}

	& .section-header__img {
		position: relative;
		width: 200px;
		margin-inline: auto;
	}
}

.intro__img {
	margin-inline: auto;

	&.img--l {
		max-width: 145px;
		margin: 0;
	}

	&.img--r {
		position: absolute;
		max-width: 85px;
		border-radius: 10px;
		overflow: hidden;
		right: 0;
		bottom: 0;
	}
}

@media all and (min-width: 1280px) {

	.intro {

		& .section-header {
			flex-direction: row-reverse;
			justify-content: space-between;
			align-items: center;
			gap: 60px;
		}

		& .section-header__txt {
			gap: 20px;
			max-width: 450px;
		}

		& .section-header__img {
			width: 50%;
			max-width: 400px;
		}

		.intro__price.-default {
			align-items: flex-end;
			margin-block: 0;

			.intro__price-item {
				text-align: right;
			}
		}

		.intro__img {

			&.img--l {
				max-width: 270px;
			}

			&.img--r {
				max-width: 165px;
			}
		}
	}
}

/* ---------------------------------------------------------------------------------------------  */

.feature {

	& .subsection-inner__body {
		display: flex;
		flex-direction: column;
	}
}

.subsection-feature {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.feature__list {
	padding: 0;
	margin: 0;
	counter-reset: number 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.feature__item {
	list-style: none;
	position: relative;
	display: flex;


	& p {
		margin: 0;
		padding-inline: 1em 0;
		position: relative;
		box-sizing: border-box;

		&:after {
			content: "";
			width: 1px;
			height: 100%;
			background-color: var(--color-txt);
			opacity: .2;
			position: absolute;
			left: 0;
			top: 0;
			bottom: 0;
		}
	}

	&:before {
		counter-increment: number 1;
		content: counter(number, decimal-leading-zero);
		font-weight: 600;
		font-size: clamp(1.3rem, 2vw, 1.5rem);
		padding-inline-end: 1.5em;
	}
}

.subsection-inner__img {
	max-width: 250px;
	border-radius: 10px;
	overflow: hidden;
	margin-inline: auto;
}

.subsection-attention {
	margin-block-start: 30px;
}

@media all and (min-width: 1280px) {

	.subsection-feature {
		flex-direction: row;
		justify-content: space-between;
		gap: 40px;
		align-items: flex-start;

		& .subsection-inner__txt {
			width: calc(100% - 300px - 40px);
		}

		& .subsection-inner__img {
			max-width: 300px;
			margin: 0;
		}
	}
}

/* ---------------------------------------------------------------------------------------------  */

.inspection__table {

	& .inspection-table__item {
		padding: 0;

		&:last-child {
			border-bottom: none;
		}
	}

	& .table-head,
	& .table-data,
	& .inspection-table__lbl,
	& .inspection-table__des {
		width: 25%;
		box-sizing: border-box;
		padding: 10px 5px;
		text-align: center;
	}

	& .table-data,
	& .inspection-table__des {
		text-align: center;
	}

	& .inspection-table__lbl {
		text-align: left !important;
		font-weight: 400;
	}

	& .table-outer-head {
		border-color: var(--color-txt);
	}

	& .inspection-table__des {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	& .inspection-table__des.txtarea {
		font-size: 1.1rem;
	}

	& .bg {
		background-color: #F9F6F4;
		font-weight: 600;

		& svg {
			stroke-width: 1.5px;
		}
	}

	& .double_circle {

		& svg {
			color: var(--color-accent);
		}
	}
}

@media all and (min-width: 1280px) {

	.inspection__table {

		& .table-head,
		& .table-data,
		& .inspection-table__lbl,
		& .inspection-table__des {
			padding: 15px;
		}

		& .inspection-table__des {
			font-size: 95%;
		}

		& .inspection-table__des.txtarea {
			font-size: 1.3rem;
		}
	}
}
