body { 
	overflow: hidden;
}

header #logo a {
	pointer-events: none;
}
header #menu #TOP a {
	color: #5b0783;
	font-size: x-large;
	pointer-events: none;
}

main {
	height: auto;
	max-height: 85%;
	min-height: 500px;
	margin-top: max(10vh, 80px);
	margin-bottom: max(5vh, 30px);
	display:flex;
	align-items: center;
	justify-content: center;
}

main #top-page{
	height: 100%;
	width: 100%;
	display:flex;
	align-items: center;
	justify-content: center;
}

.pc-only{
	display: block;
}

#main-image{
	height: 100%;
	width: 65%;
	display:flex;
	align-items: center;
	justify-content: center;

	background-image: url(../image/kv.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
}

#main-info{
	height: 100%;
	width: 35%;
	display:flex;
	align-items: center;
	justify-content: center;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
}

#main-info #top-news{
	height: auto;
	width: 35%;
	max-height: 85%;
	margin-top: 20px;

	display: flex;
	align-items: center;
	flex-direction: column;
	position: absolute;
	top: auto;
	right: 0;
	overflow: auto;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
}
#top-news::-webkit-scrollbar { 
	display: none;
}

#top-news #latest-news{
	height: auto;
	width: 25%;
	min-width: 200px;

	margin-top: 5px;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 5px;

	color: #D05292;
	font-size: x-large;
	font-weight: bolder;
	white-space: nowrap;
	text-align: center;

	border-radius: 10px;

	background-color: #E4E4E4;
}

#top-news .news {
	height: auto;
	width: auto;

	margin-top: 5px;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 5px;

	border-radius: 10px;

	background-color: #E4E4E4;

	display: flex;
	flex-direction: column;
}

#news-list .news a {
	text-decoration: none;
	color: #D05292;

	margin-top: 5px;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 5px;

	display: flex;
	flex-wrap: wrap;
	text-align: start;
}

#top-news .news a .date {
	width: 100%;
	font-weight: bolder;
	margin-left: 10px;
}
#top-news .news a .article {
	width: 100%;
	margin-left: 20px;
}
#top-news .news a .article span {
	margin-left: 10px;
	display: inline-block;
}


@media only screen and (max-width: 960px) {
	header #menu #TOP a {
		font-size: medium;
	}

	main {
		height: auto;
		max-height: 90%;
		display:flex;
		align-items: center;
		justify-content: center;
		margin-top: max(20vh, 80px);
		margin-bottom: max(5vh, 30px);
	}
	
	#main-image{
		height: 100%;
		width: 100%;
		margin: 5%;
	}

	.pc-only{
		display: none !important;
	}

	.sp-only{
		display: block;
	}
}