/* CSS Document */

.page_contents{
	display: flex;
	flex-wrap:wrap;
	width: 100%;
	margin: 0 auto;
	padding: 10px 0;
	color: #fff;
	justify-content:space-around;
	flex-direction: row;
}
.page_contents div{
	display: block;
	padding: 0;
	margin: 0 0 10px;
	border-radius: 10px;
	width: 150px;
	max-width: 40%;
	clear: both;
	background:#96D2EB
}
.page_contents div.edit{
}
.page_contents div.search{
}
.page_contents div a{
	display: block;
	padding: 10px;
	border-radius: 10px;
	margin:0 10px;
	text-align: center;
	color: #fff;
	font-size: 2rem;
	letter-spacing: .5rem;
}
.page_contents div.edit a::before{
    content: "";
    display: block;
    clear: both;
    height: 70px;
    width: 100%;
    background: url(/img/edit.svg) no-repeat center center;
    background-size: contain;
	
}
.page_contents div.search a::before{
    content: "";
    display: block;
    clear: both;
    height: 70px;
    width: 100%;
    background: url(/img/search.svg) no-repeat center center;
    background-size: contain;
}
.page_contents div::after{
	content: "";
	display: block;
	clear: both;
}

.page_contents div a img{
	width: 100%;
	display: block;
	border-radius: 10px;
}

.page_contents div a p{
	color: #fff;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 900;
}
.page_contents div h2{
	color: #fff;
	text-align: left;
	font-size: 1.6rem;
	line-height: 1.4;
	margin: 0 0 10px;
	padding: 0;
}
.page_contents div h2 a{
	color: #fff;
	display: inline;
	float: none;
	margin: 0;
	padding: 0;
}



@media (min-width: 768px) {
.page_contents{
	display: flex;
	flex-wrap:wrap;
	width: 100%;
	margin: 0 auto;
	padding: 20px 0;
	color: #fff;
	justify-content:space-around;
	flex-direction: row;
}
	.page_contents >div{
		display: block;
		width: 30%;
	}
.page_contents div a{
	display: block;
	float: none;
		width: auto;
	padding: 15px 15px ;
	border-radius: 15px;
}

.page_contents div a img{
	width: 100%;
	display: block;
	border-radius: 10px;
}

.page_contents div a p{
	color: #fff;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 900;
	margin-top: 5px;
}
.page_contents div h2{
	color: #fff;
	text-align: center;
	font-size: 1.6rem;
	margin: 0;
	padding: 0;
	line-height: 3;
}
.page_contents div p{
	color: #fff;
	text-align: left;
	font-size: 1.2rem;
	margin: 0 10px 20px;
	padding: 0;
}



}


