@charset "utf-8";
/* ===================================================================
//CSS information

// file name  :  access.css
// style info :  スタイル指定
=================================================================== */
#location {
    padding: 100px 0;
}
#location h2 {
    position: relative;
    padding-bottom: 20px;
    text-align: center;
    border: none;
    margin-bottom: 30px;
    font-size: 24px;
    color: #222;
    font-weight: normal;
}

#location h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: #7f7269;
}

#location h2 + h3 {
    margin-bottom: 50px;
    text-align: center;
    border: none;
    font-size: 24px;
    color: #523622;
    font-weight: normal;
}
#location h2 + h3 + p {
    margin-bottom: 30px;
    color: #222;
    font-weight: normal;
    line-height: 2;
}
@media screen and (max-width: 767px) {
    #location {
        margin: 50px 0 0;
        padding: 50px 0;
    }
    #location h2 + h3 {
        margin-bottom: 30px;
        font-size: 20px;
    }
} 


/* -----------------------------------------------------
 mapWrap
----------------------------------------------------- */
.mapWrap iframe {
    width: 100%;
    height: 700px;
}
.areamap a {
    display: block;
    width: 600px;
    margin: 30px auto 0;
    padding: 25px;
    font-size: 16px;
    color: #fff;
    background: #a29074;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    border-radius: 5px;
    transition: .3s all ease-in-out;
}
.areamap a:hover {
    box-shadow: 0 0 0 rgba(0,0,0,.1);
    transform: scale(.97);
}
@media screen and (max-width: 767px) {
    .mapWrap iframe {
        height: 400px;
    }
    .areamap a {
        max-width: 100%;
    }
} 
