@charset "UTF-8";
#home .cover {
    height: calc(100vh - 65px);
}
#homeAbout{
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
    box-sizing: border-box;
}
#homeAbout li {
    margin-bottom: 20px;
    background: #f4f1ec;
}
#homeAbout .cont {
    padding: 15px;
    transition: ease-out .8s;
}
#homeAbout figure {
    width: 100%;
    height: 50vw;
    position: relative;
    overflow: hidden;
}
#homeAbout img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: ease-out .8s;
}
#homeAbout h3 {
    color: #b7a486;
    letter-spacing: 0.2em;
}
#homeAbout h2 {
    font-size: 18px;
    letter-spacing: .1em;
    margin: 10px 0;
}
#homeAbout p {
    letter-spacing: .1em;
    line-height: 1.6;
    font-weight: 300;
}
#homeAbout li a:hover .cont{
    opacity:.8;
}
#homeAbout li a:hover img{
    width: 105%;
    height:auto;
}