@charset "utf-8";

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

.fv {
	position: relative;
	overflow: hidden;
}

.fv .section_inner {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 0;
}

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

.fv_text {
	position: absolute;
	top: 55%;
	right: 5%;
	transform: translate(0, -50%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 24px;
	width: max-content;
	margin: 0;
	font-size: 1rem;
	line-height: 1;
	/* letter-spacing: 0.1em; */
}

.fv_text > * {
	display: block;
}

.fv_text > *:nth-of-type(1) {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 24px;
	font-size: 1.5em;
}

.fv_text > *:nth-of-type(2) {
	font-size: 1em;
}

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

	.fv .section_inner {}

	.fv .section_container {}

	.fv_text {
		top: auto;
		bottom: 10%;
		transform: translate(0, 0);
		gap: 12px;
	}

	.fv_text > * {}

	.fv_text > *:nth-of-type(1) {
		flex-direction: row;
		gap: 12px;
	}

	.fv_text > *:nth-of-type(2) {}
}

@media screen and (min-width: 1280px) {
	.fv_text {
		right: 10%;
		bottom: 15%;
		gap: 12px;
	}
}

@media screen and (min-width: 1440px) {
	.fv_text {
		right: 10%;
		bottom: 15%;
		gap: 25px;
		font-size: 1.2rem;
	}
}

@media screen and (min-width: 1920px) {
	.fv_text {
		right: 15%;
		bottom: 20%;
		gap: 25px;
	}
}

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

.section {
	width: 100%;
	margin: 0;
	padding: 0;
}

.section_inner {
	width: 100%;
	padding: 20% 0;
}

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

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

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

.section_1 {}

.section_1 .section_inner {
	padding: 0;
}

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

.section_1 .content {}

.section_1 .content .img_area {}

.section_1 .content .img_area .img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.section_1 .content .text_area {
	background-color: #fff;
}

.section_1 .content .text_area .text {
	padding: 5%;
	background-color: rgba(34, 34, 34, 0.85);
	font-size: 0.8rem;
}

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

	.section_1 .section_inner {}

	.section_1 .section_container_inner {}

	.section_1 .content {
		position: relative;
	}

	.section_1 .content .img_area {}

	.section_1 .content .img_area .img {}

	.section_1 .content .text_area {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(255, 255, 255, 0);
	}

	.section_1 .content .text_area .text {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
		padding: 5%;
	}
}

@media screen and (min-width: 1280px) {
	.section_1 .content .text_area {
		position: absolute;
		top: 0;
		left: 10%;
		width: 35%;
		height: 100%;
		background-color: rgba(255, 255, 255, 0.85);
	}
}

@media screen and (min-width: 1440px) {
	.section_1 .content .text_area .text {
		padding: 5%;
		font-size: 1rem;
	}
}

@media screen and (min-width: 1920px) {
	.section_1 .content .text_area {
		left: 15%;
		width: 30%;
	}
}

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

.section_2 {}

.section_2 .section_inner {
	padding: 0;
}

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

.section_2 .content {}

.section_2 .content .img_area {}

.section_2 .content .img_area .img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.section_2 .content .text_area {
	background-color: #fff;
}

.section_2 .content .text_area .text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 24px;
	padding: 5%;
	background-color: rgba(34, 34, 34, 0.85);
	font-size: 0.8rem;
}

.section_2 .content .text_area ul {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 12px;
}

.section_2 .content .text_area ul li {
	position: relative;
	padding-left: 1.6rem;
}

.section_2 .content .text_area ul li::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
	width: auto;
	height: 0.8rem;
	aspect-ratio: 1 / 1;
	background-image: url(../img/list_dot.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

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

	.section_2 .section_inner {}

	.section_2 .section_container_inner {}

	.section_2 .content {
		position: relative;
	}

	.section_2 .content .img_area {}

	.section_2 .content .img_area .img {}

	.section_2 .content .text_area {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(255, 255, 255, 0);
	}

	.section_2 .content .text_area .text {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
		padding: 5%;
		background-color: rgba(34, 34, 34, 0.85);
	}

	.section_2 .content .text_area ul {}

	.section_2 .content .text_area ul li {}

	.section_2 .content .text_area ul li::before {}
}

@media screen and (min-width: 1280px) {
	.section_2 .content .text_area {
		position: absolute;
		top: 0;
		left: auto;
		right: 10%;
		width: 35%;
		height: 100%;
		background-color: rgba(255, 255, 255, 0.85);
	}
}

@media screen and (min-width: 1440px) {
	.section_2 .content .text_area .text {
		gap: 84px;
		padding: 5%;
		font-size: 1rem;
	}
}

@media screen and (min-width: 1920px) {
	.section_2 .content .text_area {
		right: 15%;
		width: 40%;
	}
}

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

.section_3 {
	background-image: url(../img/black_bg_sp.png);
	background-size: cover;
}

.section_3 .section_inner {
	padding: 5% 0 15%;
}

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

.section_3 .heading_area {
	background-image: none;
}

.section_3 .heading_area .heading_2 {
	margin: 0 auto 0 5%;
}

.section_3 .content {
	width: 90%;
	margin: 0 auto;
}

.section_3 .content .text_area {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 12px;
}

.section_3 .content .text_area .text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 4px;
	width: 100%;
	padding-top: 12px;
	border-top: 1px #fff solid;
	font-size: 0.8rem;
}

.section_3 .content .text_area .text:last-of-type {
	padding-bottom: 12px;
	border-bottom: 1px #fff solid;
}

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

	.section_3 .section_inner {
		padding: 0 0 5%;
	}

	.section_3 .section_container_inner {}

	.section_3 .heading_area {}

	.section_3 .heading_area .heading_2 {}

	.section_3 .content {}

	.section_3 .content .text_area {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 24px;
	}

	.section_3 .content .text_area .text {
		width: calc((100% - (24px * 2)) / 3);
	}

	.section_3 .content .text_area .text:last-of-type {
		padding-bottom: 0;
		border-bottom: 0;
	}
}

@media screen and (min-width: 1280px) {
	.section_3 .section_inner {
		padding: 0 0 2.5%;
	}

	.section_3 .heading_area {
		padding: 2.5% 0;
	}

	.section_3 .heading_area .heading_2 {
		margin: 0 auto 0 15%;
	}

	.section_3 .content {
		width: 50%;
		margin: 0 auto 0 15%;
	}
}

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

	.section_3 .content {
		width: 40%;
		margin: 0 auto 0 20%;
	}

	.section_3 .content .text_area .text {
		font-size: 1rem;
	}
}

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

}

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

.section_4 {}

.section_4 .section_inner {
	padding: 0;
}

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

.section_4 .heading_area {
	background-image: none;
}

.section_4 .heading_area .heading_2 {
	margin: 0 auto 0 5%;
}

.section_4 .content {
	width: 100%;
	margin: 0 auto;
	background-color: #fff;
}

.section_4 .content .text_area {
	background-color: rgba(34, 34, 34, 0.85);
}

.section_4 .content .text_area .text_area_inner {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 100%;
	height: 100%;
	padding: 15% 5% 10%;
}

.section_4 .content .text_area .text_area_inner .text_1 {
	/* position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1; */
	width: 100%;
	margin-top: -25%;
	padding: 5% 2.5%;
	text-align: center;
	font-size: 0.9rem;
	background-color: #fff;
	color: #5F5C61;
}

.section_4 .content .text_area .text_area_inner .text_2 {
	font-size: 0.8rem;
}

.section_4 .content .text_area .text_area_inner .btn {
	display: block;
	width: max-content;
	margin: 0 auto;
	padding: 2.5% 5%;
	border: 1px #F3F1F5 solid;
	font-size: 0.8rem;
	color: #fff;
}

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

	.section_4 .section_inner {}

	.section_4 .section_container_inner {}

	.section_4 .heading_area {}

	.section_4 .heading_area .heading_2 {}

	.section_4 .content {}

	.section_4 .content .text_area {
		position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
	}

	.section_4 .content .text_area .text_area_inner {
		gap: 4px;
		padding: 5%;
	}

	.section_4 .content .text_area .text_area_inner .text_1 {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		width: fit-content;
		margin: 0;
		padding: 2.5%;
	}

	.section_4 .content .text_area .text_area_inner .text_2 {}

	.section_4 .content .text_area .text_area_inner .btn {
		padding: 1.25% 5%;
	}
}

@media screen and (min-width: 1280px) {
	.section_4 .content .text_area {
        position: absolute;
        top: 0;
        left: 10%;
        width: 35%;
        height: 100%;
	}

	.section_4 .content .text_area .text_area_inner {
		gap: 24px;
	}

	.section_4 .content .text_area .text_area_inner .text_1 {
		margin-left: -15%;
		padding: 2.5% 5%;
		font-size: 1.35rem;
	}

	.section_4 .content .text_area .text_area_inner .text_2 {
		text-align: center;
	}

	.section_4 .content .text_area .text_area_inner .btn {
		padding: 2.5% 5%;
	}
}

@media screen and (min-width: 1440px) {
	.section_4 .content .text_area {
		left: 15%;
	}

	.section_4 .content .text_area .text_area_inner {
		gap: 36px;
	}

	.section_4 .content .text_area .text_area_inner .text_1 {
		font-size: 1.5rem;
	}

	.section_4 .content .text_area .text_area_inner .text_2 {
		font-size: 1rem;
	}

	.section_4 .content .text_area .text_area_inner .btn {
		font-size: 1rem;
	}
}

@media screen and (min-width: 1920px) {
	.section_4 .content .text_area .text_area_inner {
		gap: 60px;
	}

	.section_4 .content .text_area .text_area_inner .text_1 {
		margin-left: -45%;
	}
}

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