@charset "utf-8";

	
	#top_com{
		font-weight:500;
		font-size: 1.3em;
	}
	
	#catch{
		display:grid;
		grid-template-columns: repeat(auto-fill,minmax(min(400px,100%),1fr));
		gap:20px;
		margin-top:20px;
		> div{
			figure,p{
			}
			figure{
				img{
					border-radius: 10px;
				}
			}
			p{
				margin:10px auto 0 auto;
				text-align: left;
			}
		}
		@media (max-width: 768px) {
			display:block;
			> div{
				&:nth-of-type(2){
					margin:30px auto 0 auto;
				}
			}
		}
	}

	.utiwake{
		> div{
			display:grid;
			grid-template-columns: repeat(auto-fill,minmax(min(400px,100%),1fr));
			gap:20px;
			> section{
				h4{
					margin-top:0;
				}
			}
		}
	}