@charset "utf-8";

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

.fv {
	width: 100%;
	height: 240px;
	background-image: url(../img/fv_5.png);
	background-size: cover;
	background-position: center;
}

.fv .section_inner {
	width: 100%;
	height: 100%;
}

.fv .section_container {
	position: relative;
	width: 100%;
	height: 100%;
}

.fv_text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: max-content;
	font-size: 2rem;
}

.fv_text * {
	display: block;
	margin: 0 auto;
	line-height: 1;
}

.fv_text span {
	font-size: 2rem;
}

.fv_text span:nth-of-type(1) {
	width: fit-content;
	font-size: 0.8em;
	color: #04B111;
}

.fv_text span:nth-of-type(2) {
	width: fit-content;
	margin-top: 0.25em;
	font-size: 1em;
	color: #fff;
}

@media screen and (min-width: 768px) {
	.fv {
		width: 100%;
		height: auto;
	}
}

@media screen and (min-width: 1024px) {
	
}

@media screen and (min-width: 1440px) {
	.fv_text {
		font-size: 2.8rem;
	}
}

@media screen and (min-width: 1920px) {
	
}

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

.section {
	padding: 20% 0;
}

@media screen and (min-width: 768px) {
	.section {
		padding: 10% 0;
	}
}

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

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

.section {
	position: relative;
}

.section_dot_1 {
	position: relative;
}

.section_dot_1::before {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 50%;
	height: auto;
	aspect-ratio: 1 / 1;
	background-image: radial-gradient(circle, #E3E3E3 5px, transparent 5px);
	background-position: 0 0;
	background-size: 17px 30px;
	z-index: 0;
}

.section_dot_2 {
	position: relative;
	background-color: #EEEEEE;
}

.section_dot_2::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50%;
	height: auto;
	aspect-ratio: 1 / 1;
	background-image: radial-gradient(circle, #E3E3E3 5px, transparent 5px);
	background-position: 0 0;
	background-size: 17px 30px;
	z-index: 0;
}

.section .section_inner {
	position: relative;
	z-index: 1;
}

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

.section .section_content_inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	margin: 0 auto 0;
}

.section .text {
	width: 100%;
}

@media screen and (min-width: 768px) {
	.section_dot_1::before,
	.section_dot_2::before {
		width: 25%;
	}

	.section .section_content {
		flex-direction: row;
		align-items: stretch;
		width: 90%;
		max-width: 1280px;
		margin: 0 auto;
	}

	.section_dot_2 .section_content {
		flex-direction: row-reverse;
	}

	.section .section_content_inner_1 {
		flex: 5.5;
		justify-content: stretch;
		padding-top: 2.5%;
	}

	.section .section_content_inner_2 {
		flex: 4.5;
	}
}

@media screen and (min-width: 1024px) {
	
}

@media screen and (min-width: 1440px) {
	.section .section_content {
		gap: 60px;
	}

	.section .text {
		font-size: 1.2rem;
	}
}

@media screen and (min-width: 1920px) {
	
}

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

