* {
    font-family: YuGothic,'Yu Gothic', 'メイリオ', Meiryo,'ヒラギノ角ゴシック','Hiragino Sans',sans-serif;
}
main {
    max-width: 980px;
    margin: 0 auto;
}
li{
    color: aliceblue;
    list-style: none;
}
a {
    text-decoration: none;
    color: black;
}
/* map画像 */
.mapResearch {
    width: 100%;
}
.mapResearch_image>img {
    width: 100%;
}
/* footerエリアメニューパーツ */
.mapResearch_areaList
{
  width: 100%;
  padding: 0 5%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
ul.mapResearch_areaList_inner {
    width: 50%;
    display: flex;
    justify-content: center;
    font-weight: bold;
    justify-content: space-between;
    font-size: 2vw;
}
@media screen and (max-width:360px){
    /* 画面サイズが360px以下からはここを読み込む */
    ul.mapResearch_areaList_inner>li {
        display: block;
        font-size: 10px;
        transform: scale(0.8);
        transform-origin: left top; 
    }
}
@media screen and (min-width:1200px){
    /* 画面サイズが1200px以上からはここを読み込む */
    ul.mapResearch_areaList_inner {
        font-size: 24px;
    }
}