@charset "UTF-8";

/* メイン部 */
.main {
    width: 100%;
    height: 100%;
}

/* コンテンツ1START */
.container1_main {
    margin-top: 30px;
    height: 100%;
}
.container1_area{
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction:column;
    align-items: center;
}
.access_title{
    width: 90%;
    height: auto;
    text-align: center;
    font-size: 45px;
    line-height: normal;
    color: #2C7FC3;
    font-family: "Mochiy Pop One", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-top: 100px;
}
.access_sub_title{
    font-size: 25px;
    line-height: normal;
    color: #000000;
    margin-left: 20px;
    
}
.access_area{
    width:90%;
 }

/* 所在地START */
.location_area{
    width: 100%;
    background-color: #ffffff; 
    display: flex;
    flex-direction:column;
}
.location_title{
    display:inline-block;
    font-size: 35px;
    line-height: normal;
    color: #2C7FC3;
    font-family: "Mochiy Pop One", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.location_address{
    margin-left: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 15px;
}
.location_map{
    width: 100%;
    height: 500px;
    filter: grayscale(100%);
}
/* 所在地END */
/* コンテンツ1END */

/* レスポンシブ対応 */
@media screen and (max-width: 480px) {
    .main {
        width: 100vw;
        height: auto;
    }
    /* コンテンツ1START */
    .container1_main {
        height: auto;
    }
    .container1_area{
        height: auto;
    }
    .access_title{
        width: 100%;
        font-size: 30px;
        margin-top: 0;
    }
    .access_sub_title{
        font-size: 15px;
    }
    .access_area{
        width:90%;
        margin-top: 10px;
    }
    /* 所在地START */
    .location_title{
        font-size: 20px;
    }
    .location_address{
        font-size: 10px;
    }
    .location_map{
        height: 350px;
    }
    /* 所在地END */
    /* コンテンツ1END */
}