@charset "utf-8";

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

.fv {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 0 5% 0;
	/* background-image: url(../img/); */
	background-size: contain;
}

.fv_top {
	position: relative;
}

.fv_text {
	position: absolute;
	top: 50%;
	left: 2.5%;
	transform: translate(0, -50%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 12px;
	margin: 0 auto 0;
	font-size: 1.2rem;
	color: #6088BB;
	z-index: 1;
}

.fv_text > * {
	width: max-content;
	padding: 5%;
	background-color: #fff;
}

.fv_img {
	position: absolute;
	bottom: -5%;
	right: 0;
	display: block;
	width: 40%;
	opacity: 0.9;
	z-index: 1;
}

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

	.fv_text {
		top: 65%;
		gap: 6px;
	}

	.fv_img {
		position: absolute;
		bottom: 25%;
		right: 2.5%;
		width: 20%;
	}
}

@media screen and (min-width: 1024px) {
	.fv_text {
		gap: 12px;
		font-size: 1.6rem;
	}

	.fv_img {
		position: absolute;
		bottom: 22.5%;
		right: 2.5%;
		width: 20%;
	}
}

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

	.fv_img {
		position: absolute;
		bottom: 20%;
		right: 2.5%;
		width: 20%;
	}
}

@media screen and (min-width: 1920px) {
	.fv_text {
		gap: 12px;
		font-size: 3rem;
	}
}

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

.section {
	padding: 5% 5%;
}

.btn {
	display: block;
	width: max-content;
	margin: 0 auto 0;
	padding: 0.5em 1em;
	border-radius: 33px;
	background-color: #12CC94;
	color: #fff;
}

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

}

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

}

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

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

}

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

.heading {
	width: max-content;
	margin: 0 auto 0;
	color: #6088BB;
}

.heading > * {
	display: block;
}

.heading_top {
	font-size: 0.6em;
}

.heading_bottom {
	font-size: 1em;
}

.heading_1 {
	text-align: left;
	font-size: 1.8rem;
}

.heading_2 {
	text-align: center;
	font-size: 1.3rem;
}

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

}

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

}

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

	.heading_2 {
		font-size: 2rem;
	}
}

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

}

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

.section_1 .section_container_inner {
	margin: 5% auto 0;
}

.section_1 .section_content_2 {
	margin: 5% auto 0;
}

.section_1 .text {
	text-align: center;
}

.section_1 .youtube {
	width: 100%;
	aspect-ratio: 16 / 9;
}

.section_1 .youtube iframe {
	width: 100%;
	height: 100%;
}

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

}

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

}

@media screen and (min-width: 1440px) {
	.section_1 .section_content_1 {
		width: 65%;
		margin: 0 auto 0;
	}

	.section_1 .section_content_2 {
		width: 80%;
		margin: 5% auto 0;
	}
}

@media screen and (min-width: 1920px) {
	.section_1 .section_content_1 {
		width: 50%;
		margin: 0 auto 0;
	}
}

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

.section_2 .section_inner {
	position: relative;
}

.section_2 .section_inner::after {
    content: "";
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 100%;
    height: 100%;
	border-radius: 17px;
    background-color: #829B96;
	opacity: 0.16;
}

.section_2 .section_container {
	position: relative;
	padding: 5%;
	border-radius: 17px;
	background-color: #FAF9F7;
	z-index: 1;
}

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

.section_2 .section_content_inner > * {
	display: block;
}

.section_2 .section_content_inner > :nth-child(n+2) {
	margin: 5% auto 0;
}

.section_2 .heading_1 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 0;
	margin: 0 auto 0 0;
	text-align: left;
}

@media screen and (min-width: 768px) {
	.section_2 .section_container_inner {
		flex-direction: row;
	}
}

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

}

@media screen and (min-width: 1440px) {
	.section_2 .section_inner {
		width: 70%;
		margin: 0 auto 0;
	}

	.section_2 .section_container_inner {
		margin: 0;
	}

	.section_2 .heading_1 {
		position: absolute;
		top: 0;
		left: -20%;
		flex-direction: row-reverse;
	}

	.section_2 .heading_top {
		writing-mode: vertical-rl;
	}

	.section_2 .heading_bottom {
		writing-mode: vertical-rl;
	}
}

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

}

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

.section_3 {
	position: relative;
	padding: 10% 0;
	background-color: #FAF9F7;
}

.section_3 .section_container_inner {
	margin: 10% auto 0;
}

.section_3 .section_content_2 {
	margin: 10% auto 0;
}

.section_3 .section_content_inner > * {
	display: block;
}

.section_3 .section_content_inner > :nth-child(n+2) {
	margin: 5% auto 0;
}

.section_3 .heading_1 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 0;
	margin: 0 auto 0 5%;
	text-align: left;
}

.section_3 .img_wave_1 {
	position: absolute;
	top: 0;
	left: 0;
	transform: scale(1, -1);
}

.section_3 .img_wave_2 {
	position: absolute;
	bottom: 0;
	left: 0;
}

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

}

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

}

@media screen and (min-width: 1440px) {
	.section_3 .section_container_inner {
		margin: 0 auto;
	}

	.section_3 .heading_1 {
		position: absolute;
		top: 12.5%;
		right: 5%;
		flex-direction: row-reverse;
		margin: 0;
	}

	.section_3 .heading_top {
		writing-mode: vertical-rl;
	}

	.section_3 .heading_bottom {
		writing-mode: vertical-rl;
	}
}

@media screen and (min-width: 1920px) {
	.section_3 .heading_1 {
		position: absolute;
		top: 15%;
		right: 5%;
		flex-direction: row-reverse;
		margin: 0;
	}
}

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



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

}

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

}

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

}

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

}