body {
  font-family: "Noto Sans JP", sans-serif;
}

a {
  color: #121212;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

li {
  list-style: none;
}

.wrapper {
  max-width: 800px;
  padding: 0 20px;
  margin: 0 auto;
}

main {
  background-color: #f0f0f0;
}

header {
  z-index: 2;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
}
header .content {
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .content img {
  width: 180px;
}
header .toggle_btn {
  transform: translateY(5px);
}
header .toggle_btn .hamburger {
  width: 50px;
  height: 15px;
  position: relative;
  margin-bottom: 5px;
}
header .toggle_btn .hamburger span {
  height: 3px;
  background-color: #121212;
  position: absolute;
}
header .toggle_btn .hamburger span:first-child {
  width: 50px;
  top: 0;
}
header .toggle_btn .hamburger span:last-child {
  width: 30px;
  bottom: 0;
}
header .toggle_btn p {
  font-size: 14px;
  font-weight: bold;
}

main {
  margin-top: 70px;
}

footer {
  border-top: 1px solid #121212;
}
footer .content {
  padding: 30px 20px;
  background-color: #f0f0f0;
}
footer .content p {
  margin-bottom: 15px;
}
footer .content p:last-child {
  margin-bottom: 0;
}
footer .content .name {
  font-size: 18px;
  font-weight: bold;
}
footer .copyright {
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}

#mainvisual {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
#mainvisual img {
  height: 70vh;
  -o-object-fit: cover;
     object-fit: cover;
}
#mainvisual .content {
  position: absolute;
  bottom: 40px;
  left: 10px;
  right: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 20px;
}
#mainvisual .content .subtitle {
  font-size: 20px;
}
#mainvisual .content .title {
  font-size: 42px;
}
#mainvisual .content .title span {
  font-size: 24px;
}

#reservation {
  margin: 30px 0 80px;
  padding: 20px;
  border: 2px dashed #121212;
  border-radius: 20px;
  background-color: #fff;
}
#reservation h2 {
  text-transform: uppercase;
  font-size: 32px;
  margin-bottom: 20px;
}
#reservation form ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
#reservation form ul li {
  width: 31%;
}
#reservation form ul li.checkin, #reservation form ul li.checkout {
  width: 48%;
  margin-bottom: 20px;
}
#reservation form input, #reservation form select {
  display: block;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 10px;
}
#reservation form input {
  padding: 15px 10px;
}
#reservation form select {
  padding: 20px 10px;
  position: relative;
}
#reservation form .submit {
  background-color: #121212;
  color: #fff;
}

section {
  margin-bottom: 80px;
}
section h2 {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
}

#news li {
  margin-bottom: 30px;
}
#news .title {
  font-weight: bold;
  padding: 10px 0;
}
#news .date {
  font-size: 14px;
  border-top: 2px dotted #121212;
  padding-top: 5px;
}

#pickup li {
  margin-bottom: 40px;
  position: relative;
}
#pickup li img {
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 10px;
}
#pickup li .content {
  text-align: center;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
#pickup li .content img {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-bottom: 0;
}
#pickup li .content p {
  text-transform: uppercase;
  border-bottom: 6px solid #fff;
  font-size: 20px;
  font-weight: bold;
}
#pickup li p {
  font-weight: bold;
}/*# sourceMappingURL=index.css.map */