@charset "UTF-8";

#kv
{
	position: relative;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	background: #7AC8DE;
	padding-top: 20vh;
}

#kv::after
{
	position: absolute;
	content: '';
	top: 0;
	right: 0;
	width: 23vw;
	height: 100vh;
	background-image: url(../img/kv/ichiimatsu-right.webp);
	background-size: contain;
}

#kv::before
{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 23vw;
	height: 100vh;
	background-image: url(../img/kv/ichiimatsu-left.webp);
	background-size: contain;
}

#kv .img
{
	height: calc(100vh - 150px);
}

#kv .img .pc-none
{
	display: none;
}

#kv .img .sp-none
{
	display: block;
}

#kv .img img
{
	width: auto;
	height: 100%;
	display: block;
	margin: 0 auto;
}

@media screen and (max-width:799px)
{
	#kv
	{
		height: 550px;
		background: url(../img/kv/kv_back_sp.webp);
		background-size: auto 100%;
		padding-top: 150px;
	}

	#kv::after,
	#kv::before
	{
		display: none;
	}

	#kv .img
	{
		width: 90%;
		height: auto;
		margin: 0 auto;
	}

	#kv .img .pc-none
	{
		display: block;
		width: 100%;
		height: auto;
	}

	#kv .img .sp-none
	{
		display: none
	}
}

/*メッセージ*/
.message-area
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(255, 255, 255, 0);
	display: flex;
	overflow-y: scroll;
	z-index: 2;
}

.message-area .message
{
	padding-left: 3%;
	width: 450px;
	background: transparent;
	height: calc(100vh + 500px);
}

.message-area .message .top
{
	height: 100vh;
}

.message-area .message .bottom
{
	height: 500px;
	background: #E9F2F5;
	padding: 6rem;
}

.message-area .message .bottom .txt
{
	border-bottom: 1px solid #4DA4BF;
	margin-bottom: 2rem;
}

.message-area .message .bottom .txt p
{
	font-size: 1.5rem;
	line-height: 1.6;
	color: #4DA4BF;
	padding-bottom: 1em;
}

.message-area .message .bottom .txt a
{
	font-size: 2rem;
	font-weight: bold;
	color: #4DA4BF;
	padding-bottom: 2rem;
}

.message-area .message .bottom .insta
{
	color: #4DA4BF;
	font-weight: 400;
	display: flex;
	align-items: center;
	justify-content: center;
}

.message-area .message .bottom .insta img
{
	width: 29px;
	height: 29px;
	margin-left: 5px;
	margin-top: 5px;
}

.message-area .right
{
	width: 50%;
	background: transparent;
	height: 100vh;
	position: sticky;
}

@media screen and (max-width:799px)
{
	.message-area
	{
		height: 700px;
	}

	.message-area .message
	{
		width: 95%;
		padding-left: 5%;
		height: 1250px;
	}

	.message-area .right
	{
		width: 5%;
	}

	.message-area .message .top
	{
		height: 700px;
	}

	.message-area .message .bottom
	{
		padding: 3rem 1rem;
	}

	.message-area .message .bottom .txt
	{
		text-align: center;
		margin-bottom: 1.5rem;
	}

	.message-area .message .bottom .txt p
	{
		font-size: 1.4rem;
	}

	.message-area .message .bottom .txt a
	{
		font-size: 1.6rem;
		padding-bottom: 1.5rem;
	}

	.message-area .message .bottom
	{
		height: 550px;
	}
}