/**** mainv ****/
.l_mainv {
	background-image: url(/assets_u/guide/img/mv.jpg);
}

.l_mainv.page_subscription {
	background-image: url(/assets_u/guide/img/subscription/mv.jpg);
}


/**** c_point_wrap ****/
.c_point_wrap {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	text-align: center;
}

.c_point_wrap .c_point {
	border-bottom: 1px solid #8f9fa2;
	padding-bottom: 20px;
}

@media only screen and (max-width: 768px) {
	.c_point_wrap {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}

	.c_point_wrap .c_point {
		padding-bottom: 15px;
	}

	.c_point_wrap .c_point img {
		width: 35px;
	}
}

/**** num_txt ****/
.num_txt {
	position: relative;
}

.num_txt span {
	display: inline-block;
	padding-right: 15px;
	position: relative;
	z-index: 99;
}

.num_txt::after {
	content: "";
	background-color: #8f9fa2;
	width: 150px;
	height: 1px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	z-index: 1;
}

/**** view table  ****/
.view table {
	table-layout: fixed;
	width: 100%;
	background-color: rgb(255, 255, 255);
	margin: 0 0 30px;
}

.view table caption {
	color: rgb(244, 119, 33);
	font-weight: bold;
	text-align: center;
}

.view table th,
.view table td {
	border: solid 1px rgb(210, 210, 210);
	padding: 10px;
	text-align: center;
}

.view table thead th {
	background-color: #8F9FA2;
	color: #Fff;
	width: 70px;
}

.view table tbody td {
	vertical-align: top;
}

.view table tbody tr:nth-child(2n+2) th,
.view table tbody tr:nth-child(2n+2) td {
	background-color: rgb(245, 245, 245);
}

.view table tbody th span,
.view table tbody td.bold {
	color: #C93030;
	font-weight: bold;
}

/**** subsc_merit_text ****/
.subsc_merit_txt {
	position: relative;
	background: #fff;
	padding: 30px;
	font-size: clamp(16px, 1.25vw, 18px);
	font-weight: bold;
	color: #8f9fa2;
	display: flex;
	justify-content: center;
}

.subsc_merit_txt:after {
	border: solid transparent;
	content: '';
	height: 0;
	width: 0;
	pointer-events: none;
	position: absolute;
	border-color: rgba(255, 255, 255, 0);
	border-top-width: 10px;
	border-bottom-width: 10px;
	border-left-width: 10px;
	border-right-width: 10px;
	margin-top: -10px;
	border-left-color: #fff;
	left: 100%;
	top: 50%;
}

@media only screen and (max-width: 768px) {
	.subsc_merit_txt:after {
		border: solid transparent;
		content: '';
		height: 0;
		width: 0;
		pointer-events: none;
		position: absolute;
		border-color: rgba(255, 255, 255, 0);
		border-top-width: 10px;
		border-bottom-width: 10px;
		border-left-width: 10px;
		border-right-width: 10px;
		margin-left: -10px;
		border-left-color: none;
		border-top-color: #fff;
		top: initial;
		bottom: -20px;
		left: 50%;
	}
}

/**** faq ****/
.question::before {
	content: "Q";
	font-size: clamp(24px, 2vw, 36px);
	margin-right: 0.5em;
	color: #667E83;
}

/**** ordered_list ****/
.ordered_list_decimal {
	list-style-type: decimal !important;
}

.ordered_list_decimal>li {
	counter-increment: cnt;
	margin-bottom: 10px;
	padding-left: 20px;
}

.ordered_list_decimal>li::before {
	content: ""counter(cnt)". ";
	margin-left: -18px;
	font-weight: bold;
	color: #667E83;
}

.ordered_list_decimal>li:last-child {
	margin-bottom: 0;
}

.ordered_list_circle_num {
	list-style: none;
	counter-reset: number;
}

.ordered_list_circle_num>li {
	position: relative;
	padding-left: 1.5em;
}

.ordered_list_circle_num>li::before {
	counter-increment: number;
	content: counter(number);
	position: absolute;
	top: 0.5em;
	left: 0;
	width: 13px;
	height: 13px;
	border: 1px solid #1f272b;
	border-radius: 50%;
	font-size: 11px;
	text-align: center;
	line-height: 1.2;
}

/**** .ttl_circle ****/
.ttl_circle {
	position: relative;
	padding-left: 20px;
	margin-bottom: 10px;
}

.ttl_circle::after {
	content: "";
	position: absolute;
	background-color: #8F9FA2;
	width: 10px;
	height: 10px;
	border-radius: 10px;
	left: 0;
	top: 5px;
}

.list_txt li:last-child {
	margin-bottom: 0;
}