/* アクセス情報ボックス ---------------------------------------- */
.mainSection01{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 30px 0 55px 0;
    background-color: #efefef;
}

.mainSection01__container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 95%;
    height: auto;
}

.mainSection01__accessInfoBox{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 95%;
    max-width: 600px;
    height: auto;
    padding: 20px 0;
    border-right: solid #4c4c4c 1px;
    border-left: solid #4c4c4c 1px;
    border-bottom: solid #4c4c4c 1px;
    background-color: #fefefe;
}

.mainSection01__accessInfoBox:nth-child(1){
    border-top: solid #4c4c4c 1px;
}

.mainSection01__accessInfoTitle{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100px;
    height: auto;
    padding: 0 18px;
    font-weight: 500;
    font-size: 12px;
    color: #505050;
}

.mainSection01__accessInfo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: calc(100% - 100px);
    height: auto;
    padding: 0 18px;
    border-left: #616161 solid .5px;
    font-weight: 400;
    font-size: 12px;
    color: #505050;
}

.mainSection01__accessInfo a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: .1s;
}

.mainSection01__accessInfo a:hover{
    text-decoration: underline;
    transition: .1s;
}


/* Google Mapsのセクション ---------------------------------------- */
.mainSection02{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 380px;
    background-color: #efefef;
    padding-bottom: 30px;
}

.mainSection02 iframe{
    display: block;
    width: 95%;
    max-width: 1300px;
    height: 100%;
}