/* media query */
.anchorArea .note {
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 668px) {
  .anchorArea .note {
    text-align: left;
  }
}
.anchorArea .note a {
  text-decoration: underline;
  font-weight: bold;
  color: #3E577E;
}

.restaurantArea .headline_normal .note {
  font-size: 60%;
  padding-bottom: 5px;
}
@media screen and (max-width: 668px) {
  .restaurantArea .headline_normal .note {
    font-size: 65%;
    padding: 5px 0;
    line-height: 160%;
    padding-left: 1em;
    text-indent: -1em;
  }
}
.restaurantArea .headline_normal .note a {
  text-decoration: underline;
  font-weight: bold;
  color: #3E577E;
}

.shozanArea .inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media all and (max-width: 1200px) {
  .shozanArea .inner {
    max-width: 100%;
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .shozanArea .inner {
    max-width: 100%;
    margin-left: 25px;
    margin-right: 25px;
  }
}
.shozanArea .inner .box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.shozanArea .inner .box section {
  width: calc((100% / 2) - 30px);
  margin-bottom: 60px;
  cursor: pointer;
}
.shozanArea .inner .box section:hover {
  opacity: 0.8;
  transition: 0.3s;
}
.shozanArea .inner .box section:nth-of-type(2n) {
  margin-left: 60px;
}
@media screen and (max-width: 960px) {
  .shozanArea .inner .box section {
    width: calc((100% / 2) - 15px);
    margin-bottom: 30px;
  }
  .shozanArea .inner .box section:nth-of-type(2n) {
    margin-left: 30px;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .shozanArea .inner .box section {
    width: 100%;
  }
  .shozanArea .inner .box section:nth-of-type(2n) {
    margin-left: 0;
  }
}
.shozanArea .inner .box section .col {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.shozanArea .inner .box section .col p {
  width: 58%;
}
.shozanArea .inner .box section .col h3 {
  width: 36%;
}
.shozanArea .inner .box section .col + p {
  margin-top: 20px;
}
