/*　すべてのページに適応される設定 */
@charset "UTF-8";
body{
    background-color:#fff;
    margin:0;
    padding:0;
}
html{
  font-size: 16px;
  font-family: sans-serif;
}
* {
  box-sizing: border-box;
}
p, li, id {
  line-height:  1.7;
}
a:link {
  color: black;
  text-decoration: none;
}
a:visited {
  color: black;
  text-decoration: none;
}
a:hover {
  color: black;
  text-decoration: underline;
}
a:active {
  color: black;
  text-decoration: underline;
}
img {
  max-width: 100%;
}

/* すべてのページに適応　‐　header */
.brand {
  font-weight: bold;
  font-size: 20px; }

.site-header {
  position: relative;
  background-color: #ffffff; }

.site-header__wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem; }
  @media (min-width: 400px) {
    .site-header__wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 0;
      padding-bottom: 0; } }
@media (min-width: 400px) {
  .nav__wrapper {
    display: flex; } }

@media (max-width: 400px) {
  .nav__wrapper {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: -1;
    background-color: #ffffff;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out; }
    .nav__wrapper.active {
      visibility: visible;
      opacity: 1;
      transform: translateY(0); } }

.nav__item a {
  display: block;
  padding: 1.5rem 1rem; }

.nav__toggle {
  display: none; }
  @media (max-width: 599px) {
    .nav__toggle {
      display: block;
      position: absolute;
      right: 1rem;
      top: 1rem; } }
.nav ul {
  margin: 30px 0 0 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: flex-end;
  margin-left:auto; 
}
.jokouyo {
  font-weight: bold;
  font-size: 20px; 
}

/* すべてのページに適応　‐　ヒーロー*/
.hero {
  text-align: center;
}
/* すべてのページに適応　-　メイン */
main {
  margin: 90px auto 90px auto;
  max-width: 1000px;
  text-align: center;
}
main h2 {
　　color: black;
　　font: size 1.3rem;
}
.maps p{
  display: inline-block;
  margin: auto 10px auto;
  vertical-align: top; 
}
.maps{
  text-align: center;
}
.map{
  width: 50%;
  margin: auto;
  display: inline-block;
}

/* すべてのページに適応　-　フッター*/
.gotop {
  text-align: center;
}
.copyright {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #d9f0f7;
  color: black;
  text-align: center;
}
/* 個別のスタイル */
/* index.html */
body {
  width: 960px;
  margin: auto;
}
