body {
  font-family: "メイリオ", "Meiryo", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", sans-serif;
  font-size: 1.7em;
  width: 80%;
  margin: 0 auto;
  background-color: rgba(221, 165, 45, 0.2);
  text-align: center;
}
P {
  text-align: left;
}

ul {
  padding-left: 0;
  margin-top: -1em;
}

li {
  list-style: none;
}

h1 {
  font-size: 1.8em;
  margin-top: -0.5em;
}
h2 {
  margin: 1em;
}
h3 {
  color: crimson;
}
span {
  font-size: 1em;
  color: red;
}

#nao {
  width: 50%;
}
.content {
  width: 1280px;
  height: auto;
}
.content:nth-child(1) {
  width: 100%;
  height: 100%;
  padding: 0 0.24%;
}
.content:nth-child(2) {
  width: 100%;
  height: 100%;
  padding: 0 0.24%;
}
.content:nth-child(3) {
  width: 100%;
  height: 100%;
  padding: 0 0.24%;
}
.content:nth-child(4) {
  width: 100%;
  height: 100%;
  padding: 0 0.24%;
}
.content:nth-child(5) {
  background-color: white;
  width: 10%;
  height: auto;
}

/* スライドレールの枠 */
.wrap {
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 50%;
  margin-bottom: 5px;
}
/* content4つをまとめたスライドブロック */
.slideshow {
  display: flex;
  -webkit-animation: loop-slide 25s infinite linear 1s both;
  animation: loop-slide 25s infinite linear 1s both;
}
@-webkit-keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* ホバー時に動きを止める（パターン2・3）*/
.slide-paused:hover .slideshow {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
footer a {
  margin: 1em auto;
  font-size: 0.5em;
  padding-bottom: 2em;
}
div.center {
  text-align: center;
}
#booking {
  color: red;
}
#yoyaku {
  color: blue;
}

#legal {
  width: 60%;
}

/*@media screen and (min-width: 769px) {
  p {
    font-size: 0.7em;
  }
}
