@charset "utf-8";

/*비쥬얼 영역*/
#visiualArea {
    height: 290px;
    margin-top: 80px;
}
#visiualArea img{
    width: 100%;
    min-width: 1400px;
    height: 300px;
    object-fit: none;
    filter: brightness(75%);
}
#visiualArea h2 {
    position: relative;
    top: -290px;
    height: 290px;
    text-align: center;
    line-height: 290px;
    font-size: 2.5em;
    color: #f0f0f0;
}

 /*컨텐츠 영역*/
#imageArea{
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 80px;
}
figure{
    /*border: 1px solid #ccc;*/
    margin-bottom: 60px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1),
                -1px 1px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    border-radius: 3px;
}
figure .img{
    width: 260px;
    height: 280px;
    overflow: hidden;
    border-radius: 3px 3px 0 0;
}
figure img {
    width: 260px;
    height: 280px;
    transition: all 0.7s;
}
figure:hover img {
    transform: scale(1.1, 1.1);    
    filter: brightness(85%);
}
figure figcaption {
    width: 240px;
    margin-left: 15px;
}
figure h3 {
    font-size: 1.1em;
    font-weight: 600;
    text-align: left;
    padding: 20px 0 10px;

}
figure p {
    font-size: 0.9em;
    color: #555;
    text-align: justify;
    font-weight: 400;
    padding-bottom: 20px;
}
#moreImageArea{
    display: none;
}
#moreImageArea > figure{
    display: inline-block;
    margin: 20px 7px 0 15px;
}
#moreArea {
    text-align: center;
    height: 100px;
}
#more {
    margin-top: 30px;
    border: none;
    font-size: 1.2em;
    color: #383838;
    width: 100%;
    height: 50px;
    background-color: #fff;
    border-top: 1px solid #ccc;
}
#more::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-image: url("../images/story/story_more_down.png");
    background-position: -10px -10px;
}
#more.up::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-image: url("../images/story/story_more_up.png");
    background-position: -10px -10px;
}