@charset "UTF-8";
/*** jyan.css ***/

* {
	box-sizing: border-box;
}
	
body{
	font-family: sans-serif;
	background: #fefdfa;
	}

/* メインセクション */

.top_photo {
	text-align: center;
	background-color: rgb(255,192,203,0.4);
	margin: 0 5px;
}
.top_photo img {
	display: inline-block;
	width: 100px;
	margin: 1px 5px 1px 5px;
}
h1 {
	background-color: pink;
	border-radius: 10px;
	text-align: center;
	margin: 0 5px;
}
h3 {
	margin: 1px 5px 1px 5px;
}
.root {
	padding-left: 5px;
	font-size: 0.8rem;
}
.root ul {
	margin: 0px 5px 0px 5px;
}
li {
	list-style: none;
}
#footer_inner {
	background-color: lightgreen;
	}

/*-----写真-------*/
.photo_main {
	display: grid;
	align-items: end; /****下端にそろえる*****/
	grid-template-columns: repeat(2,1fr);/**横に2枚並べる**/
	gap: 15px;
	max-width: 450px;
	margin: auto;
	}
.photo-item {
	display: flex;
	flex-direction: column; /***主軸を縦にする****/
	justify-content: flex-end; /***写真、コメントを下端にそろえる****/
	text-align: center;
}
.photo-item img {
	width: 100%;
	height: auto;
	border-radius: 5px;
}
.caption {
	margin-top: 0;
	font-size: 14px;
	color: #333;
}

@media screen and (min-width:768px) {
.photo_main {
	grid-template-columns: repeat(4,1fr); /**横に4枚並べる**/
	max-width: 1000px;
	}
}

