@charset "utf-8";

/* ---------- fv ---------- */

.fv {
    position: relative;
	width: 100%;
	height: auto;
	aspect-ratio: 1.25 / 1;
	background-image: url(../img/fv_5.png);
	background-size: cover;
	background-position: center;
}

.fv_text {
    position: absolute;
    top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
    line-height: 2;
    letter-spacing: 0.1em;
    color: #fff;
    z-index: 1;
}

.fv_text * {
	display: block;
	text-align: center;
	line-height: 1.5;
}

.fv_text span:nth-of-type(1) {
	font-family: "Lato", sans-serif;
	font-size: 2.4rem;
	font-weight: 900;
}

.fv_text span:nth-of-type(2) {
	font-size: 1.2rem;
	font-weight: 900;
}

@media screen and (min-width: 768px) {
	.fv {
		aspect-ratio: initial;
		background-image: none;
	}
}

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

}

@media screen and (min-width: 1440px) {
	.fv_text span:nth-of-type(1) {
		font-size: 3.6rem;
	}
	
	.fv_text span:nth-of-type(2) {
		font-size: 1.8rem;
	}
}

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

}

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

.container {
	padding: 10% 5%;
}

.container_2 {
	width: 90%;
	margin: 0 auto 0;
	padding: 10% 0;
}

.container_2 .container_inner {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.container_2 .content {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.bg {
	background-image: url(../img/bg_sp.png);
	background-size: contain;
	background-position: top;
}

.bg_2 {
	background-color: #F3F3F3;
}

.headline_2 {
	position: absolute;
	top: -24px;
	left: 50%;
	transform: translate(-50%, 0);
}

@media screen and (min-width: 768px) {
	.container_2 .container_inner {
		position: relative;
	}

	.container_2 .content {
		display: flex;
		flex-direction: column;
		gap: 12px;
		width: 70%;
	}

	.container_2 .img {
		position: absolute;
		top: 0;
		right: 0;
		z-index: -1;
		width: 50%;
		margin: 0;
	}

	.bg {
		background-image: url(../img/bg_pc.png);
		background-size: cover;
		background-position: top;
	}

	.headline_2 {
		position: absolute;
		top: -24px;
		left: 5%;
		transform: none;
	}

	.headline_2_bottom {
		margin: 0 auto 0 0;
		text-align: left;
	}
}

@media screen and (min-width: 1024px) {
	.container_2 .content {
		gap: 24px;
	}
}

@media screen and (min-width: 1440px) {
	.container {
		padding: 10%;
	}

	.container_2 {
		width: 80%;
	}

	.container_2 .content {
		gap: 36px;
		width: 70%;
	}

	.container_2 .img {
		width: 40%;
	}

	.headline_2 {
		top: -7.5%;
		left: 2.5%;
	}
}

@media screen and (min-width: 1920px) {
	.container_2 .content {
		width: 65%;
	}

	.container_2 .img {
		width: 40%;
	}
}


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

.box {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 12px;
	width: 100%;
	padding: 25% 5% 5%;
	background-color: rgba(255, 255, 255, 0.89);
}

.box_2 {
	padding: 10% 5% 5%;
}

.textArea {
	display: flex;
	flex-direction: column;
	gap: 12px;
	line-height: 1.5;
}

.img {
	display: block;
}

@media screen and (min-width: 768px) {
	.box {
		width: 65%;
		margin: 0 auto 0 5%;
		padding: 7.5% 2.5% 5% 2.5%;
	}

	.box_2 {
		padding: inherit;
	}

	.box_reverse {
		margin: 0 5% 0 auto;
	}

	.img {
		position: absolute;
		top: 5%;
		right: 5%;
		width: 40%;
		z-index: -1;
	}

	.box_reverse ~ .img {
		position: absolute;
		top: 5%;
		left: 5%;
	}
}

@media screen and (min-width: 1024px) {
	.textArea {
		gap: 24px;
	}
}

@media screen and (min-width: 1440px) {
	.box {
		width: 70%;
		margin: 0 auto 0 10%;
		padding: 5% 2.5% 2.5% 2.5%;
	}

	.box_reverse {
		margin: 0 10% 0 auto;
	}

	.img {
		top: 10%;
		right: 5%;
		width: 35%;
	}

	.box_reverse ~ .img {
		top: 10%;
		left: 5%;
	}

	.textArea {
		gap: 36px;
		font-size: 1.2rem;
		line-height: 2;
	}
}

@media screen and (min-width: 1920px) {
	.img {
		right: 7.5%;
		width: 27.5%;
	}

	.textArea {
		/* gap: 48px; */
	}
}


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

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

.merit,
.demerit {
	width: 100%;
}

.merit_headline,
.demerit_headline {
	width: 100%;
	margin: 0 auto 0;
	padding: 0.5em;
	border-radius: 5px;
	text-align: center;
	font-family: "Lato", sans-serif;
	font-size: 1.2rem;
	font-weight: 900;
	color: #fff;
}

.merit_headline {
	background-color: #DC143C;
}

.demerit_headline {
	background-color: #404040;
}

.merit_listArea,
.demerit_listArea {
	width: 100%;
	margin: 5% auto 0;
}

.merit_list,
.demerit_list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: fit-content;
	margin: 0 auto 0;
}

.merit_list li,
.demerit_list li {
	position: relative;
	padding-left: 1.5rem;
	text-align: left;
}

.merit_list li::before,
.demerit_list li::before {
	content: "";
	position: absolute;
	top: 0.125em;
	left: 0;
	width: 16px;
	height: 16px;
	background-image: url(../img/check_w.png);
	background-size: contain;
	line-height: 1.5;
}

.merit_list li::before {
	background-image: url(../img/check_r.png);
}

.demerit_list li::before {
	background-image: url(../img/check_g.png);
}

@media screen and (min-width: 768px) {
	.flexbox  {
		flex-direction: row;
		align-items: flex-start;
		gap: 12px;
	}
}

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

}

@media screen and (min-width: 1440px) {
	.flexbox  {
		gap: 48px;
	}

	.merit_headline,
	.demerit_headline {
		font-size: 2rem;
	}

	.merit_list,
	.demerit_list {
		gap: 24px;
	}

	.merit_list li,
	.demerit_list li {
		font-size: 1.2rem;
	}
}

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

}

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

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

}

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

}

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

}

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

}
