@charset "UTF-8";
/* ----------------------------------------------------------------
props
---------------------------------------------------------------- */
#img_box{
	max-width: 1200px;
	margin: 0 auto 40px;
}
.img_area{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.img_area .modal_box{
	width: 49%;
	margin-bottom: 20px;
}
.img_area .modal_box img{
	width: 100%;
}
.img_area .modal_box .clickable-image{
	cursor: pointer;
	margin-bottom: 10px;
}
.txt_area p {
    font-size: 14px;
    line-height: 2;
	text-align: center;
	margin-bottom: 30px;
}
.txt_under p {
    font-size: 14px;
    line-height: 2;
	text-align: center;
	margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
#img_box{
	margin: 0 5% 20px;
}
	.img_area .modal_box{
	width: 49%;
	margin-bottom: 30px;
}
}


/* ----------------------------------------------------------------
modal
---------------------------------------------------------------- */
.image-container {
    position: relative;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
@media screen and (max-width: 767px) {
	.close {
    top: 0px;
}
}