@charset "UTF-8";


#wrap{
    width: 80%;
    margin: 50px auto;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
}

input{
    padding: 0 15px;
    height: 40px;
    border: 1px solid #e0e0e0;
    text-indent: 10px;
}

#wrap>div{
    border-top: 1px solid #e0e0e0;
}

.txt span, #flex-wrap span{
    width: 150px;
    height: 100%;
    padding: 16px 15px;
    text-align: center;
    font-weight: 400;
    background-color: #f4f6f9;
    border-right: 1px solid #e0e0e0;
    vertical-align: middle;
    display: inline-block;
}

.txt, #flex-wrap>div{
    display: flex;
    align-items: center;
}

.txt input,  #flex-wrap>div input{
   flex: auto;
   margin: 0 5px;
}

.txt p{
    padding: 0 10px;
    margin: 0;
}

#flex-wrap{
    display: flex;
    border-bottom: 1px solid #e0e0e0;

}

#flex-wrap>div{
    flex: 1 1 0;
}

#flex-wrap>div p{
    display: inline-block;
    min-width: max-content;
    padding :0 10px;
    margin: 0;
}



#content div:nth-child(1){
    
    padding: 16px 0;
    text-align: center;
    background-color: #f4f6f9;
    border-bottom: 1px solid #e0e0e0;
}

#content div:nth-child(2)
{
    padding: 20px;
    text-align: left;
}

#content div:nth-child(2)>img{
    width: 80%;
}

#content div:nth-child(2)>p{
    margin-top: 20px;
    text-align: left;
}

/*---------------비디오---------------*/
#iframe{
    display: flex;
    justify-content: center;
    padding: 30px;
}

.btn_box {
    text-align: right;
    width: 80%;
    margin: 50px auto;
   
}

.btn_box button{
    padding: 5px 10px;
    background-color: #fff;
    border: 1px solid #ddd;
   
}

.btn_box button:hover{
    background-color: #e0e0e0;
}

/*--------------- 기타 ---------------*/
#etc #flex-wrap{
    border-bottom: none;
}

.txt a{
    margin: 0 10px;
}

.txt img{
    width: 12px;
    height: 12px;
    margin-right: 5px;
}

/*--------------- 이미지 ---------------*/

.swiper{
    width: 60%;
    aspect-ratio: 16 / 9;
    margin: 20px auto;
    text-align: center;
}

.swiper img{
    width: 100%;
    height: 100%;
    object-fit:cover;
}

.swiper-slide{
    position: relative;
}

.swiper-button-next:after, .swiper-button-prev:after{
    font-size: 30px;
}


.modal {
	display: none;
	z-index: 500;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.7);
}

.modal button {
	position: absolute;
	top: 3rem;
	right: 3rem;
	background: transparent;
	border: 0;
	color: #ffffff;
	font-size: 3rem;
}

.modalBox {
	position: relative;
	top: 20%;
	left: 50%;
	transform: translate(-50%, -20%);
	background-color: #ffffff;
	width: 60%;
	text-align: center;
}

.modalBox > img {
	width: 40%;
    height: 100%;
    object-fit:cover;
}


.imgC{
    position: absolute;
    top: 5%;
    right: 2%;
    cursor: pointer;
    
}



/*--------------------반응형-------------------*/

@media (max-width:800px) {
    .txt span, #flex-wrap span{
        width: 100px;
    }
}

@media (max-width:600px) {
    
    #wrap{
        width: 100%;
        font-size: 14px;
        margin: 20px auto;
    }
    .txt span, #flex-wrap span{
        width: 80px;
    }

    input{
        padding: 0;
    }

    #con p{
        padding: 4px;
    }

    .btn_box{
        width: 100%;
        font-size: 12px;
    }

    /*------------- 기타 --------------*/
    .file{
        flex-direction: column;
        margin-bottom: 10px;
    }

    .file>span{
        width: 100%;
        border-right: none;
    }
    
    .file a{
        width: 100%;
        text-align: center;
        margin-top: 10px;
        padding: 0 10px ;
    }



    /*-----------------이미지---------------*/
    .swiper{
        width: 85%;
    }
    
    .swiper-button-next:after, .swiper-button-prev:after{
        font-size: 20px;
    }

    .modalBox {
        width: 85%;
    }

    .modalBox > img {
        width: 100%;
        height: 100%;
        object-fit:cover;
    }
}


