@charset "utf-8";
@import url(reset.css);

/* directing, styling, editorial, video, design 리스트 페이지용 CSS */

#wrapper {
    width: 1200px;
/*    min-height: 437px;*/
    margin: 160px auto;
}

#wrapper .h1 {
    width: 100%;
    margin: 0 auto;
    padding: 140px 0 0px;
}

#wrapper .h1 .line {
    width: 1px;
    height: 125px;
    background-color: #54676f;
    margin: 80px auto 0;
}

#wrapper h1 {
    font: 400 53px 'Cormorant Garamond', 'Garamond', 'Adobe 명조 Std', 'Nanum Myeongjo', 'AppleMyungjo', 'serif';
    color: #273034;
    text-align: center;
    letter-spacing: 3px;
    line-height: 1;
}

.list {
    width: 100%;
/*    border-top: 1px solid #273034;  h1 아래 보더*/
    padding: 80px 0 130px;
    text-align: center;
}

figure {
    width: 20%;
    display: inline-block;
    margin: 30px 4px 0 0px; /*이미지 박스 간격*/
    border: 1px solid #273034;
        padding: 10px 10px 0;
    background-color: #fff;
}

h2 {
    width: 100%;
    font: 600 13px 'Cormorant Garamond', 'Garamond', 'Adobe 명조 Std', 'Nanum Myeongjo', 'AppleMyungjo', 'serif';
    color: #273034;
    text-align: center;
    letter-spacing: .7px;
    line-height: 1.3;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

h2 span {
    font: 700 18px 'Cormorant Garamond', 'Garamond', 'Adobe 명조 Std', 'Nanum Myeongjo', 'AppleMyungjo', 'serif';
    display: block;
}

figure .captionBoxImage img,
video {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: inline-block;
}

figure .captionBoxImage {
    margin: 0 18px;
}

.scale {
    background-color: antiquewhite;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.scale img {
    overflow: hidden;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1); //호환성을 위해서
    transform: scale(1);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s; //변화시간
}

.scale img:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); //크기지정하기
}


/*mobile menu*/

.flexpanel {
    display: none;
}

/*--------------footer--------------------*/

#wrapper::after {
    content: '';
    display: table;
    clear: both;
}

footer {
    height: 75px;
    width: 100%;
    margin: 0 auto;
    padding-top: 35px;
    border-top: 1px solid #273034;
    box-shadow: 24px 2px 24px 4px rgba(0, 0, 0, 0.14);
    background-color: #273034;
}

.innerfooter {
    width: 1200px;
    margin: 0 auto;
}

footer img {
    width: 9%;
    float: left;
}

.innerfooter .info {
/*    width: 434px;*/
    width: 36.5%;
    float: right;
    border-left: 1px solid #e0ad82;
    padding-left: 20px;
    border-right: 1px solid #e0ad82;
    padding-right: 20px;    
    text-shadow: 0px 2px 1px #000;
}

footer p {
    color: #e0ad82;
    font: lighter 12px 'Cormorant Garamond', 'Garamond', 'Adobe 명조 Std', 'Nanum Myeongjo', 'AppleMyungjo', 'serif';
/*    text-align: left;*/
    letter-spacing: .4px;
    margin: 0 auto;
}