@charset "UTF-8";

/*-------------------------------------------
Overview
-------------------------------------------*/
.overview {
  margin-bottom: 120px;
}
.overview .overview-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.overview .overview-list dt {
  width: 200px;
  border-top: solid 1px #1f1f1f;
  font-size: 16px;
  padding: 20px 0;
}
.overview .overview-list dt:last-of-type {
  border-bottom: solid 1px #1f1f1f;
}
.overview .overview-list dd {
  width: calc(100% - 200px);
  border-top: solid 1px #ccc;
  font-size: 15px;
  padding: 20px 0;
  line-height: 1.8;
}
.overview .overview-list dd:last-of-type {
  border-bottom: solid 1px #ccc;
}

/*-------------------------------------------
Map
-------------------------------------------*/
.overview .map a {
  width: 90px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #1f1f1f;
  font-size: 12px;
  margin: 0 0 0 auto;
}
.overview .map iframe {
  width: 100%;
  height: 400px;
}

/*-------------------------------------------
Photo
-------------------------------------------*/
.photo {
  margin-bottom: 50px;
}
.photo .photo-list {
  display: flex;
  flex-wrap: wrap;
}
.photo .photo-list li {
  width: 32%;
  margin: 0 2% 2% 0;
  margin-bottom: 40px;
}
.photo .photo-list li:nth-child(3n) {
  margin-right: 0;
}
.photo .photo-list li .img {
  margin-bottom: 10px;
}
.photo .photo-list li .text {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5px;
}
.photo .photo-list li .description {
  font-size: 15px;
  text-align: justify;
  line-height: 1.7;
}

/*-------------------------------------------
Reservation
-------------------------------------------*/
.reservation {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}
.reservation .text {
  animation: blink 1.3s ease-in-out infinite alternate;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.reservation .btn {
  max-width: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffef00;
  border-radius: 15px;
  box-shadow: 0px 4px 0px 0px #aaa;
  font-size: 20px;
  font-weight: bold;
  padding: 20px 0;
  margin: 0 auto;
}
.reservation .btn:hover {
  transform: translateY(5px);
  box-shadow: none;
}



/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {
  /*-------------------------------------------
  Overview
  -------------------------------------------*/
  .overview {
    margin-bottom: 60px;
  }
  .overview .overview-list dt {
    width: 100px;
    padding: 20px 0;
  }
  .overview .overview-list dd {
    width: calc(100% - 100px);
    padding: 20px 0;
  }

  /*-------------------------------------------
  Map
  -------------------------------------------*/
  .overview .map {
    margin-bottom: 60px;
  }

  /*-------------------------------------------
  Photo
  -------------------------------------------*/
  .photo {
    margin-bottom: 60px;
  }
  .photo .photo-list {
    flex-direction: column;
  }
  .photo .photo-list li {
    width: 100%;
    margin: 0 0 20px;
  }

  /*-------------------------------------------
  Reservation
  -------------------------------------------*/
  .reservation {
    margin-bottom: 60px;
  }
  .reservation .text {
    font-size: 18px;
  }
  .reservation .btn {
    font-size: 16px;
    max-width: 320px;
  }

}