@charset "utf-8";

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

.section_1 {
	position: relative;
	background-image: url(../img/);
	background-size: cover;
	background-position: 50% 0;
	background-repeat: no-repeat;
}

.section_1 .section_inner {
	padding: 10% 0 10%;
}

.section_1 .section_container {}

.section_1 .section_container_inner {}

.section_1 .inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 36px;
	width: 100%;
	margin: 0 auto;
}

.section_1 .content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
	width: 90%;
	margin: 0 auto;
}

.section_1 .content .box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 100%;
	padding: 5%;
	background-color: rgba(255, 255, 255, 0.85);
}

.section_1 .content .box .text {
	font-size: 1rem;
}

.section_1 .content .box .text_1 {
	font-size: 1.6rem;
}

.section_1 .content .box .text_2 {}

.section_1 .content .img {
	width: 100%;
}

@media screen and (min-width: 768px) {
	.section_1 {}

	.section_1 .section_inner {}

	.section_1 .section_container {}

	.section_1 .section_container_inner {}

	.section_1 .inner {}

	.section_1 .content {}

	.section_1 .content .box {}

	.section_1 .content .box .text {}

	.section_1 .content .box .text_1 {}

	.section_1 .content .box .text_2 {}

	.section_1 .content .img {}
}

@media screen and (min-width: 1280px) {
	.section_1 {}

	.section_1 .section_inner {}

	.section_1 .section_container {}

	.section_1 .section_container_inner {}

	.section_1 .inner {}

	.section_1 .content {
		position: relative;
	}

	.section_1 .content .box {
		position: absolute;
		top: 25%;
		left: 50%;
		transform: translate(-50%, 0);
		width: 60%;
		padding: 5% 2.5%;
	}

	.section_1 .content .box .text {}

	.section_1 .content .box .text_1 {}

	.section_1 .content .box .text_2 {}

	.section_1 .content .img {}
}

@media screen and (min-width: 1440px) {
	.section_1 {}

	.section_1 .section_inner {
		padding: 10% 0 20%;
	}

	.section_1 .section_container {}

	.section_1 .section_container_inner {}

	.section_1 .inner {}

	.section_1 .content {
		position: relative;
	}

	.section_1 .content .box {
		top: 35%;
	}

	.section_1 .content .box .text {
		font-size: 1.125rem;
	}

	.section_1 .content .box .text_1 {
		font-size: 1.875rem;
	}

	.section_1 .content .box .text_2 {
		line-height: 2;
	}

	.section_1 .content .img {}
}

@media screen and (min-width: 1920px) {
	.section_1 .content .box {
		top: 45%;
	}
}

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

.section_2 {
	position: relative;
	background-image: url(../img/);
	background-size: cover;
	background-position: 50% 0;
	background-repeat: no-repeat;
}

.section_2 .section_inner {
	padding: 10% 0 10%;
}

.section_2 .section_container {}

.section_2 .section_container_inner {}

.section_2 .inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 36px;
	width: 100%;
	margin: 0 auto;
}

.section_2 .content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
	width: 90%;
	margin: 0 auto;
}

.section_2 .content .box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 100%;
	padding: 5%;
	background-color: rgba(255, 255, 255, 1);
}

.section_2 .content .box .heading_1 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
	width: 100%;
}

.section_2 .content .box .heading_1 span {
	display: block;
	width: max-content;
	max-width: 100%;
	line-height: 1;
}

.section_2 .content .box .heading_1 span:nth-of-type(2) {
	font-size: 0.7em;
}

.section_2 .content .box table {
	width: 100%;
}

.section_2 .content .box table tr th,
.section_2 .content .box table tr td {
	display: block;
	border: 0;
}

.section_2 .content .box table tr th {
	border-bottom: 1px #007cef solid;
}

.section_2 .content .box table tr td {
	border-bottom: 1px #00b9ef solid;
}

.section_2 .content .box table tr.last_line th,
.section_2 .content .box table tr.last_line td {
	border: 0;
}

.section_2 .content .box table span {
	display: block;
}

.section_2 .content .box .btn {
	display: block;
	width: 50%;
}

@media screen and (min-width: 768px) {
	.section_2 {}

	.section_2 .section_inner {}

	.section_2 .section_container {}

	.section_2 .section_container_inner {}

	.section_2 .inner {}

	.section_2 .content {}

	.section_2 .content .box {}

	.section_2 .content .box .heading_1 {
		position: relative;
		flex-direction: row;
		justify-content: flex-start;
	}

	.section_2 .content .box .heading_1::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 0;
		transform: translate(0, -50%);
		width: 40%;
		height: 2px;
		background-color: #333;
	}

	.section_2 .content .box .heading_1 span {}

	.section_2 .content .box .heading_1 span:nth-of-type(2) {}

	.section_2 .content .box table {
		width: 80%;
	}

	.section_2 .content .box table tr th,
	.section_2 .content .box table tr td {
		display: table-cell;
	}

	.section_2 .content .box table tr th {
		width: 25%;
		border-bottom: 2px #007cef solid;
	}

	.section_2 .content .box table tr td {
		width: 75%;
		border-bottom: 2px #00b9ef solid;
	}

	.section_2 .content .box table span {}

	.section_2 .content .box .btn {
		width: 35%;
	}
}

@media screen and (min-width: 1280px) {
	.section_2 .content {
		width: 80%;
	}

	.section_2 .content .box .heading_1::after {
		width: 60%;
	}

	.section_2 .content .box .btn {
		width: 20%;
	}
}

@media screen and (min-width: 1440px) {
	.section_2 .content {
		width: 70%;
	}

	.section_2 .content .box {
		gap: 60px;
	}

	.section_2 .content .box .heading_1 {
		font-size: 2.5rem;
	}

	.section_2 .content .box .heading_1::after {
		width: 50%;
	}

	.section_2 .content .box table {
		width: 65%;
	}

	.section_2 .content .box table tr th,
	.section_2 .content .box table tr td {
		font-size: 1.125rem;
	}

	.section_2 .content .box .btn {
		width: 20%;
	}
}

@media screen and (min-width: 1920px) {
	.section_2 .content .box .heading_1::after {
		width: 60%;
	}
}

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