/* CSS Document */
body{
	font-family: 'Kosugi Maru', sans-serif;
	background-image: url("../dots.png");
	max-width:100vw;
}
div{
	font-family: 'Kosugi Maru', sans-serif;
}
.main{
	width:100vw;
	max-width:1280px;
}
li.nav-item{
	border-bottom: hsla(0,0%,100%,0.00) medium solid !important;
}
li.nav-item:hover{
	background-color:#FFFFFF !important;
	border-bottom: #FF75D7 medium solid !important;
}
.top-text{
	font-size: 3vw;
	text-align: center;
	color: #777777;
	text-shadow: 2px 2px 2px #dddddd;
}
.section{
	background: rgb(0,174,0);
	/*background: radial-gradient(circle, rgba(91,186,178,1) 0%, rgba(189,255,247,1) 50%, rgba(0,187,0,0) 100%);*/
	background: linear-gradient(90deg, rgba(207, 253, 157, 0) 0%, rgba(207, 253, 157, 1) 10%, rgba(89, 173, 241, 1) 20%, rgba(255, 255, 255, 1) 50%, rgba(89, 173, 241, 1) 80%, rgba(207, 253, 157, 1) 90%, rgba(207, 253, 157, 0) 100%);
	margin:30px 10px;
	padding:5px 0px;
	font-size:1.8rem;
	text-align: center;
	color: aliceblue;
	text-shadow: 2px 2px 10px #5bbab2 ,-2px 2px 10px #5bbab2 ,2px -2px 10px #5bbab2 ,-2px -2px 10px #5bbab2;
}
.section_btn{
	background-color: #3A3A3A;
	width: 180px;
	height: 80px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	vertical-align: middle;
}
.section_link{
	text-decoration: none;
	color:#FFFFFF;
	width: 100%;
}
.section_link:hover{
	color: #FFDDFF;
}
.arrow-right {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 10px;
  border-top: 4px solid #FFFFFF;
  border-right: 4px solid #FFFFFF;
  transform: rotate(45deg);
}
.service_btn{
	background-color: #3A3A3A;
	width: 180px;
	height: auto;
	padding-top: 5px;
	padding-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	vertical-align: middle;
}
.service_column {
	margin: 10px !important;
	padding: 10px;
	width: 90vw !important;
	max-width: 500px !important;
	border-radius: 10px;
	box-shadow: 0 0 10px 5px #aaddaa;
	transition: box-shadow 0.5s;
}
.service_column:hover{
	box-shadow: 0 0 10px 8px #88dd88;
}
.service_item {
	text-align: center;
}
.footer{
	background-color:#eee;
}
.mobiledisp {
	display: none;
}
.pcdisp {
	display: inline;
}
@media screen and (max-width: 480px) {
	.mobiledisp {
		display: inline;
	}
	.pcdisp {
		display: none;
	}
}