.gallery-folder-h3 {
	border-bottom: 1px solid;
	margin-bottom: 16px;
	display: flex;
}
.image-item, 
.movie-item {
	border: 0.5px solid #ccc;
}

.movie-item {
	width: 12.5%;
}

.gallery-folder-cnt {
}

.gallery-folder-item {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.gallery-folder {
	display: inline-block;
	width: 12.5%;
	padding: 2px;
}

.gallery-folder a {
	text-decoration: none;
}
.gallery-folder-item span {
	display: inline-block;
	font-size: 90%;
	text-align: center;
	max-height: 3em;
	overflow: hidden;
}

@media 
	only screen and (max-width:480px),
	only screen and (max-device-width:480px) { 
	/* phones */

	.image-item, .movie-item {
		width: 50%
	}
	.gallery-folder {
		display: inline-block;
		width: 50%;
		padding: 2px;
	}
}

@media 
	only screen and (min-width:480px),
	only screen and (min-device-width:480px) { 
	/* phones */

	.image-item {
		width: 12.5%;
	}
}

.modal-area {
	position: fixed;
    height: 100%;
    width: 100%;
    bottom: 0;
    left: 0;
	
    z-index: 99;

	padding: 100px 100px;
	display: flex;
    align-items: center;
    justify-content: center;
	background-color: rgba(0, 0, 0, .8);
    
}
.modal-area img {
	height: 100%;
	width: auto;
}

.modal-area iframe {
	height: 100%;
	aspect-ratio: 16 / 9;
}

@media 
	only screen and (max-width:800px),
	only screen and (max-device-width:800px) { 
	/* phones */

	.modal-area {
	
		padding: 0;
	}

	.modal-area img {
		height: auto;
		width: 100%;
	}

	.modal-area iframe {
		height: 100%;
		width: 100%;
	}
}

