@charset "utf-8";
/*---------------------------------------------------------*/
/* TOP */
/*---------------------------------------------------------*/
.top_block{
	display: flex;
	height: calc(100vh - 11rem);
}
.top_block > div{
	width: 50%;
}
.top_block a{
	display: flex;
	font-size: 3vw;
	line-height: 1.1;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-align: center;
}
.top_block img{
	transition: 0.2s ease-out all;
	width: 60%;
}
.top_block a:hover img{
	transform: scale(1.1);
}
.top_block .aa a{
	background: #c8efe5 url(../img/aa_top.jpg) no-repeat center center;
	background-size: cover;
}
.top_block .sakkuri a{
	background: #c5e5f1 url(../img/sakkuri_top.jpg) no-repeat center center;
	background-size: cover;
}

/* 2/3より縦長 */
@media (max-aspect-ratio: 2/3) {
	.top_block{
		flex-direction: column;
		height: calc( 100vh - 11rem);
	}
	.top_block img{
		width: 55%;
	}
	.top_block .sakkuri img{
		width: 45%;
	}
	.top_block > div{
		height: 50%;
		width: 100%;
	}
	.top_block a{
		font-size: 5vw;
	}
}