/* media query */
.member {
  border: 1px solid #787878;
  margin: 40px auto 60px;
  max-width: 500px;
}
.member a {
  display: block;
  padding: 10px;
}
.member a p {
  text-align: center;
  font-size: 1.1em;
}
@media screen and (max-width: 668px) {
  .member a p {
    font-size: 1em;
  }
}
.member a p:first-child {
  border-bottom: 1px solid #787878;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.member a p span {
  font-size: 90%;
}
@media screen and (max-width: 668px) {
  .member a p span {
    display: block;
  }
}
.member a:hover {
  background: #787878;
}
.member a:hover p {
  color: #fff;
}
.member a:hover p:first-child {
  border-bottom: 1px solid #fff;
}

.accessArea > div .mapimage {
  width: 100%;
  height: 700px;
  background: #fcfcfc;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 668px) {
  .accessArea > div .mapimage {
    height: 400px;
  }
}
.accessArea > div .mapimage img {
  width: 100%;
  max-width: 560px;
}
@media screen and (max-width: 668px) {
  .accessArea > div .mapimage img {
    max-width: 320px;
  }
}
