@charset "UTF-8";
body{
	text-align: center;
	background-color: #061f05;
}
.fadegallery img{
	width: 100%;
}
.fadegallery{
    position: relative;
    width: 90%;
	margin: auto;
}
.fadein {
	opacity: 0;
	transition: 2s;/*ゆっくり表示*/
}
.show {
	opacity: 1;
}

.photo-text{
	display: inline-flex;
 justify-content: center; /* 中央寄せ */
}
.photo-text p{
	font-size: 28px;
	color: white;
	margin: 0 100px;
}

@media (max-width: 599px) {
	/* 小さい画面用の設定 */
.photo-text p{
	font-size: 18px;
	color: white;
	margin: 0 50px;
}