@charset "utf-8";

#access .heading {
  background-image: url(../images/bg_access.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
#access .mapbox {
  text-align: center;
}
#access .mapbox p:nth-child(1) img {
  border: 1px solid #222;
}

/*-----------------------------------------------
スマホ向けスタイル（～768px）
-----------------------------------------------*/
@media only screen and (max-width: 768px) {
  #access .heading {
    background-position: center bottom;
  }
  #access #gmap {
    height: 250px;
  }
  #access .container > * + * {
    margin-top: 20px;
  }
  #access .mapbox p + p {
    margin-top: 15px;
  }
  #access .mapbox p:nth-child(1) img {
    width: 70%;
  }
  

}

/*-----------------------------------------------
PC・タブレット向けスタイル（769px～）
-----------------------------------------------*/
@media only screen and (min-width: 769px), print {
  #access .heading {
    background-position: center center;
  }
  #access #gmap {
    height: 500px;
  }
  #access .container > * + * {
    margin-top: 30px;
  }
  #access .mapbox p + p {
    margin-top: 20px;
  }
  #access .mapbox p:nth-child(1) img {
    width: 30%;
  }
  
}


