@charset "utf-8";

/**************************************************************************************

--------------------------------------------------------------------------------------

***************************************************************************************/

#main {
	background-color: #e5f6f8;
	height: calc(100vh - 39px);
	height: calc(100dvh - 39px);
}
#main p.txtEntry {
	margin-top: 140px;
	text-align: center;
	position: relative;
}
#main p.txtEntry::before {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-color: #231815;
	position: absolute;
	top: 48%;
	left: 0;
	right: 0;
}
#main p.txtEntry span {
	display: inline-block;
	padding: 0 20px;
	font-weight: bold;
	color: #044a80;
	font-size: 26px;
	background-color: #e5f6f8;
	position: relative;
	z-index: 1;
}
#main ul {
	margin-top: 70px;
}
#main ul li {
	margin: 40px 20px 0;
	padding: 0 20px;
}
#main ul li a {
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 700px;
	background: linear-gradient(58deg, rgba(56,161,219,1) 0%, rgba(0,65,147,1) 100%);
	border-radius: 50vh;
	color: #fff;
	padding: 25px 50px;
	text-align: center;
	position: relative;
}
#main ul li a::after {
	content: "";
    width: 10px;
    height: 10px;
    border-right: 3px solid #fff;
    border-top: 3px solid #fff;
    display: block;
    transform: rotate(45deg) translateY(-50%);
	position: absolute;
	top: 50%;
	right: 50px;
}
#main ul li a em {
	display: block;
	text-align: center;
	font-weight: bold;
	font-size: 26px;
	margin-bottom: 10px;
}
@media only screen and (max-width:768px) {
	#main {
		height: calc(100vh - 60px);
		height: calc(100dvh - 60px);
	}
	#main ul li {
		padding: 0;
	}
}
@media only screen and (max-width:500px) {
	#main p.txtEntry {
		margin-top: 90px;
	}
	#main p.txtEntry span {
		font-size: 22px;
	}
	#main ul {
		margin-top: 40px;
	}
	#main ul li a {
		padding: 20px 30px;
		border-radius: 15px;
	}
	#main ul li a::after {
		right: 20px;
	}
	#main ul li a em {
		font-size: 20px;
	}
	#main ul li {
		margin: 0;
	}
	#main ul li + li {
		margin-top: 30px;
	}
}