.container {
	max-width: 1200px;
}
@media screen and (max-width: 768px) {}


/*------------------------------------
.mv
------------------------------------*/
.mv {
	padding-top: 120px;
}
.mv .container {
	display: flex;
	justify-content: space-between;
}
.mv h1 {
	display: flex;
	flex-direction: column;
	font-size: 36px;
	font-weight: 400;
	letter-spacing: 0;
}
.mv h1 span {
	font-size: 16px;
}
.mv p {
	width: 41.6666666667%;
	font-weight: 400;
	text-align: justify;
}
@media screen and (max-width: 768px) {
	.mv {
		padding-top: 50px;
	}
	.mv .container {
		flex-wrap: wrap;
	}
	.mv h1 {
		font-size: 5.87vw;
		margin-bottom: 30px;
	}
	.mv p {
		width: 100%;
	}
}


/*------------------------------------
.tips
------------------------------------*/
.tips {
	padding: 100px 0 150px;
}
.tips-list {
	display: flex;
	flex-direction: column;
	gap: 100px;
}
.tips-list .img {
	overflow: hidden;
	margin-bottom: 20px;
}
.tips-list img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 0.5s ease;
	transform: scale(1);
}
.tips-list a:hover img {
	transform: scale(1.1);
}
.tips-list h2 {
	font-size: 30px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1;
}
@media screen and (max-width: 768px) {
	.tips {
		padding: 50px 0 70px;
	}
	.tips-list {
		gap: 50px;
	}
	.tips-list h2 {
		font-size: 20px;
	}
}


/*------------------------------------
.custom__btn
------------------------------------*/
.custom__btn {
	margin-bottom: 150px;
}
.custom__btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	border: 1px solid #000;
	max-width: 360px;
	width: 100%;
	height: 70px;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: .03em;
	line-height: 1;
	margin: auto;
}
.custom__btn a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	background-image: url("../images/arrow.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	width: 21px;
	height: 19px;
}
@media screen and (max-width: 768px) {
	.custom__btn {
		margin-bottom: 70px;
	}
}
