@charset "UTF-8";
/* ----------------------------------------------------------------
interior
---------------------------------------------------------------- */
#img_area{
	max-width: 1200px;
	margin: 0 auto 40px;
}
#img_area .main_img{
	margin-bottom: 30px;
	text-align: center;
}
#img_area .main_img img{
	width: 100%;
}
.txt_area{
	text-align: center;
		max-width: 1200px;
	margin: 0 auto 40px;
}
.txt_area p{
	    font-size: 14px;
    line-height: 2;
}
.sub_img{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.sub_img .modal_box{
	width: 48%;
	margin-bottom: 40px;
}
.sub_img .modal_box img{
	width: 100%;
}
.sub_img .modal_box .clickable-image{
	cursor: pointer;
}
.sub_img .modal_box p{
	position: relative;
	padding-left: 15px;
}
.sub_img .modal_box p:before{
	content: "";
	position: absolute;
	background: #000;
	height: 90%;
	width: 3px;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
#floormap{
	background: #f2f2f2;
	padding: 50px 0;
}
#floormap > .inner{
	max-width: 1200px;
	margin: 0 auto 40px;;
}
#floormap .floor_img ul{
	display: flex;
	justify-content: center;
}
#floormap .floor_img ul li{
	width: 50%;
}
#floormap .floor_img ul li img{
	width: 100%;
}
@media screen and (max-width: 767px) {
#img_area{
	margin: 0 5% 20px;
}
#img_area .main_img{
	margin-bottom: 20px;
}
	.sub_img .modal_box{
	width: 49%;
	margin-bottom: 30px;
}
.txt_area{
        padding: 0;
	margin: 0 auto 20px;
}
.txt_area p{
        font-size: 13px;
        text-align: left;
        line-height: 1.5;
}
.sub_img .modal_box p {
    padding-left: 10px;
    font-size: 15px;
}
.sub_img .modal_box p:before{
	width: 2px;
}
#floormap{
	padding: 30px 5%;
}
#floormap .floor_img ul{
	display: block;
}
#floormap .floor_img ul li{
	width: 100%;
	max-width: 300px;
	margin: 0 auto 20px;
	text-align: center;
}
}


/* ----------------------------------------------------------------
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;
}
}