@charset "utf-8";
/* CSS Document */

main {
	overflow: hidden;
}
section.gall {
	text-align: center;
}

#caption {
	margin: 10px 0;
	text-align: center;
}

/* gallery */
.img_gal {
	height: 600px;
	text-align: center;
}

.img_thumb {
	height: 50px;
	border-radius: 5px;
	vertical-align: middle;
}

.new {
	border: 2px solid #ee836f;
}

@media screen and (max-width:1920px){
.new {
	border-width: 1.5px;
     }
}
@media screen and (max-width:960px){
.img_gal {
	width:100%;
	object-fit: contain;
	max-height: 50vh;
     }
.img_thumb {
	height: 100px;
	border-radius: 10px;
     }
.new {
	border-width: 4px;
     }
}

input {
	-webkit-transition: .25s ease-in-out;
	transition: .25s ease-in-out;

	&:hover {
		filter: brightness(1.3);
	}
}

/* gallery */
table img {
	height: 200px;
}

.g_oth {
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
}

@media screen and (max-width:960px){
table img {
	height: 30vh;
     }
}