/* CSS Document */

.detailUpfile{
	cursor: pointer;
}

.detailUpfile:hover{
	opacity: 0.75;
}



#imageModal {
    display: none; /* ← 最初は非表示 */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
	overflow: scroll;
	padding: 20px;
}


#closeModal {
    position: fixed;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
	background: #000;
}

#closeModal:hover {
	border:1px solid #fff;
}

@media(max-width:800px){
	
	#closeModal {
    	top: 0px;
		right: 0px;
	}
}