@charset "utf-8";
/* ===================================================================
//CSS information

// file name  :  access.css
// style info :  スタイル指定
=================================================================== */
#location {
    padding: 100px 0;
    background: #f1f1f1;
}
#location h2 {
    position: relative;
    padding-bottom: 20px;
    text-align: center;
    border: none;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: normal;
	color: #222;
}

#location h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: #222;
}

#location h2 + h3 {
    margin-bottom: 20px;
    text-align: center;
    border: none;
    font-size: 24px;
    color: #7d554d;
    font-weight: normal;
}
#location h2 + h3 + p {
    margin-bottom: 50px;
text-align: center;
    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;
}
@media screen and (max-width: 767px) {
    .mapWrap iframe {
        height: 400px;
    }
} 
