@charset "UTF-8";

.main {
	position: relative;
}
.main img {
	width: 100%;
	height: 700px;
	object-fit: cover;
}
@media screen and (max-width:599px) {
.main img {
	height: 400px;
}
}
.main_message_wrap {
	text-align: center;
	margin-bottom: 80px;
}
.main_message_wrap h1 {
	font-size: 4rem;
	position: relative;
	width: auto;
	padding-top: 30px;
}
.main_message_wrap h1::after {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 100px;
	height: 4px;
	margin-left: -50px;
	content: '';
	border-radius: 3px;
	background-image: -webkit-linear-gradient(20deg, yellow, orange, green, red);
	background-image: linear-gradient(70deg, yellow, orange, green, red);

}
.messages {
	text-align: left;
	font-size: 2.3rem;
	padding: 0 30vw;
}
@media screen and (max-width:599px) {
.messages {
	padding: 0 10vw;
}
}
.concept_main01, .concept_main02 {
	font-size: 3.0rem;
	position: relative;
}
.concept_main01 {
	margin-bottom: 0;
	padding-bottom: 0;
}
.concept_main02 {
	margin-top: 0;
	padding-bottom: 0;
}
.concept_main01::after, .concept_main02::after {
	position: absolute;
	display: block;
	bottom: 0;
	left: 50%;
	content: '';
	border-radius: 3px;
	background-color: rgba(152,0,2,1.00);	
}
.concept_main01::after {
	width: 28rem;
	margin-left: -14rem;
	height: 2px;
}
.concept_main02::after {
	width: 34rem;
	margin-left: -18rem;
	height: 2px;
}
@media screen and (max-width:599px) {
.concept_main01::after {
	width: 176px;
	margin-left: -88px;
}
.concept_main02::after {
	width: 210px;
	margin-left: -112px;
}
}