@charset "UTF-8";
@import url(../root.css);

.title {
    font-size: clamp(18px, 2vw, 28px);
    color: var(--primary-color);
    font-weight: 600;
}

.text-box {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text-box .text {
	font-size: 18px;
    line-height: 1.4;
}

.welcome_img {
	margin-bottom: 80px;
}

.welcome_img.mo {
	display: none;
}

.welcome_img.pc {
	margin-bottom: 80px;
	max-width: 1000px;
}

@media (max-width: 1025px) {
	.welcome_img.pc {
		display: none;
	}
	
	.welcome_img.mo {
		display: block;
	}
}	

.welcome-img-wrap {
	text-align: center;
}


