/*---------------------------------------*/
.home-section {
	margin-top: 80px;
}
.message-visual {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 50px 0 0 0;
	flex-wrap: wrap;
}
.message-right {
	margin-right: 16%;
	margin-bottom: 2%
}
@media (min-width: 1921px) {
	.message-right {
		margin-right: 25%;
	}
}
.message-left h2 {
	margin: 0;
}
@media (min-width: 1921px) {
	.message-left h2 img {
		width: 1300px;
		height: 404px;
	}
}	
.message-right p {
	font-size: 2.3rem;
	letter-spacing: 3px;
	line-height: 1.9;
	font-weight: bold;
}
@media (min-width: 1921px) {
	.message-right p {
		font-size: 2.6rem;
	}
}
@media (max-width: 1440px) {
	.message-visual {
		display: block;
	}
	.message-left h2 img {
		width: 100%;
		height: 100%;
	}
	.message-right {
		margin: 0 auto;
		text-align: center;
		width: 100%;
	}
	.message-right p {
		margin-top: 0;
		font-size: 3.6rem;
		line-height: 1.4;
	}
}
@media (max-width: 425px) {
	.message-right p {
		font-size: 1.75rem;
		line-height: 1.3;
	}
}
/*---------------------------------------*/
.hero-video video {
	width: 100%;
	max-height: 1000px;
	object-fit: cover;
}
@media (max-width: 425px) {
	.hero-video video {
		height: 550px;
	}
}
/*---------------------------------------*/
.message-section {
	max-width: 1560px;
	width: 100%;
	margin: 70px auto 100px;
	text-align: center;
}
.message-section h2 {
	font-size: 50px;
	margin-top: 0;
	margin-bottom: 30px;
}
.message-section p {
	font-size: 24px;
	margin-top: 0;
	margin-bottom: 40px;
	line-height: 2.2;
}
@media (max-width: 1024px) {
	.message-section {
		max-width: 90%;
		text-align: left;
	}
}
@media (max-width: 425px) {
	.message-section {
		margin: 30px auto 45px;
		text-align: center;
	}
	.message-section h2 {
		font-size: 1.75rem;
		line-height: 1.4;
	}
	.message-section p {
		font-size: 18px;
		line-height: 1.6;
		text-align: left;
		margin-bottom: 20px;
	}
}
/*---------------------------------------*/
.card-section {
	max-width:  100%;
	width:1560px;
	margin: 0 auto 120px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.card-block {
	position: relative;
	display: block;
	width:  520px;
	max-width:100%;
	color: #fff;
	text-decoration: none;
	overflow: hidden;
}
.card-image {
	width: 100%;
	height: 642px;
	background-size: cover;
	background-position: center;
	filter: brightness(0.8);
	transition: filter 0.3s ease;
}
.card-block:hover .card-image {
	filter: brightness(1.2);
}
.card-content {
	position: absolute;
	top: 0;
	left: 0;
	padding: 50px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.card-labels {
	position: relative;
}
.card-labels h3 {
	font-size: 40px;
	margin: 0 0 4px;
	font-weight: bold;
}
.card-labels .card-en {
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 1px;
	margin: 0;
}
.card-button {
	display: inline-flex;
	align-items: center;
	position: relative;
	top: 330px;
	left: 195px;
	font-size: 20px;
}
.card-button > .circle-arrow {
	width: 80px;
	height: 80px;
	border: 2px solid #fff;
	margin: 20px;
	border-radius: 50%;
	text-align: center;
	line-height: 79px;
	font-size: 1.1rem;
}
@media (max-width: 1440px) {
	.card-section {
		display: block;
	}
	.card-block {
		width:  100%;
	}
	.card-image {
		height: 352px;
	}
	.card-button {
		left: 0;
		top: 0;
	}
}
@media (max-width: 1440px) {
	.card-section{
		margin-bottom: 0;
	}
	.card-labels h3 {
		font-size: 34px;
	}
		.card-button {
		top: 40px;
	}
}
@media (max-width: 425px) {
	.card-labels h3 {
		font-size: 30px;
	}
}