@charset "utf-8";
body {
  margin: 0 auto;
  background: radial-gradient(circle, #fdddd1 10%, transparent 11%),
    radial-gradient(circle at bottom left, #fdddd1 5%, transparent 6%),
    radial-gradient(circle at bottom right, #fdddd1 5%, transparent 6%),
    radial-gradient(circle at top left, #fdddd1 5%, transparent 6%),
    radial-gradient(circle at top right, #fdddd1 5%, transparent 6%);
  background-size: 1em 1em;
  background-color: #fff;
}
body > #WholeWrap {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 9px rgb(183 188 196 / 23%);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1 {
  display: none;
}
a {
  text-decoration: none;
}
/* access */
.access {
  position: relative;
  margin-bottom: -13%;
  z-index: 2;
}
/* map */
.map {
  position: relative;
  z-index: 1;
}
.map {
  width: 100%;
  height: 370px;
  overflow: hidden;
}
iframe {
  width: 100%;
  height: calc(370px + 300px);
  margin-top: -150px;
}
@media only screen and (max-width: 550px) {
  .map {
    width: 100%;
    height: 250px;
    overflow: hidden;
  }
  iframe {
    width: 100%;
    height: calc(250px + 300px);
    margin-top: -150px;
  }
}
@media only screen and (max-width: 375px) {
  .map {
    width: 100%;
    height: 200px;
    overflow: hidden;
  }
  iframe {
    width: 100%;
    height: calc(200px + 300px);
    margin-top: -150px;
  }
}

/* footer */
#footer small {
  font-size: 0.8em;
}
footer > div {
  padding: 32px 12px 24px;
  box-sizing: border-box;
  text-align: center;
}
footer > div img {
  display: inline-block;
  width: 125px;
}
footer > div ul {
  margin: 0;
  display: flex;
  list-style: none;
  padding: 0 20px;
  box-sizing: border-box;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
}
footer > div ul a {
  color: #534741;
  font-weight: bold;
}
footer span {
  text-align: center;
  display: block;
}
footer small {
  color: #534741;
  font-size: 0.8em;
}
@media only screen and (max-width: 420px) {
  footer > div ul {
    gap: 0;
    justify-content: space-around;
  }
}
