body {
    font-family: helvetica, meiryo,'Nanum Square';
    font-weight: 500;
    margin: 0;
    padding: 0;
}

address, dd, div, dl, dt, em, fieldset, form, h1, h2, h3, h4, iframe, input, li, object, ol, p, select, textarea, ul {
    margin: 0;
    padding: 0;
}

ol, ul{
    list-style: none;
}

#wrap{
    position: relative;
    min-width: 1280px;
    height: 100%;
}

#main {
    padding-top: 80px;
    background-color: #fff;
}

.content{
    width: 1280px;
    min-height: 650px;
    padding: 0 90px 100px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.content_title{
    display: inline-block;
    position: relative;
    font-size: 20px;
    margin-bottom: 40px;
    color: #999;
    font-weight: 400;
    letter-spacing: -.8px;
}

.content_title:after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    content: '';
    width: 1100px;
    height: 1px;
    background-color: #ebebeb;
}

.theme_color{
    color: #cf1a02 !important;
}

.content_main .inner{
    position: relative;
}


.gallery_img img {
    cursor: pointer;
    max-width: 100%;
    aspect-ratio: 1/1;
    transition: all 0.1s linear;
    object-fit: cover;
}

.gallery_img img:hover{
    transform:scale(1.1);            /* 이미지 확대 */
}

.gallery_img {
    overflow: hidden !important;
    padding: 10px;
}