* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  color: #324370;
  font-family: "Shippori Mincho", serif;
  background-image: url(images/webp/back.webp);
}

.firstview {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url("images/webp/background.webp");
  height: 800px;
  background-position: center;
  background-size: cover;
  color: #f9f7f2;
  margin-bottom: 100px;
  font-family: "Playfair Display", serif;
}

/*
.firstview::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -230px;
  width: 100%;
  height: 5px;
  background-color: rgba(243, 229, 220, 0.8);
}
  */

.firstview img {
  padding-top: 20px;
  width: 30%;
  height: auto;
}

.firstview h1 {
  font-size: 72px;
  font-weight: bold;
}

.firstview p {
  font-size: 25px;
  font-weight: bold;
  position: relative;
}

.text {
  position: relative;
  /*overflow: hidden;*/
}

.back-img {
  opacity: 0.3;
  z-index: -1;
}

.hibiscus img {
  position: absolute;
  width: 300px;
  height: auto;
}

.hibiscus1 {
  top: 0px;
  left: 50px;
}

.hibiscus2 {
  bottom: 0px;
  right: 50px;
}

nav {
  top: 0;
  width: 100%;
  background-color: rgba(77, 66, 54, 0.8);
  padding: 5px 0;
  font-family: "Playfair Display", serif;
  z-index: 9999;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links li {
  margin: 0 40px;
}

nav a {
  color: #f9f7f2;
  font-size: 20px;
  text-decoration: none;
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding-bottom: 5px;
}

.wave-line {
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  height: 10px;
  transition: opacity 0.5s ease;
}

.wave-line svg {
  display: block;
  width: 200%;
  height: 100%;
  transform: scaleY(0.5);
  transform-origin: bottom;
  animation: wave-slide 1s linear infinite;
  animation-play-state: paused;
}

.wave-line svg path {
  fill: #f9f7f2;
}

nav a:hover .wave-line svg {
  animation-play-state: running;
}

/*
.each-section {
  position: fixed;
  display: flex;
  align-items: center;
  margin-left: auto;
}

.each-section-trigger {
  display: block;
  padding: 10px;
}

.wave-icon {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 60px;
  overflow: hidden;
}

.wave-icon svg {
  width: 200%;
  height: 10px;
  display: block;
  animation: wave-slide 1s linear infinite;
  animation-play-state: paused;
  filter: drop-shadow(0 2px 3px rgba(77, 66, 54, 2));
}

.wave-icon .line-2 {
  animation-delay: -0.5s;
}

.each-section-trigger:hover .wave-icon svg {
  animation-play-state: running;
  opacity: 0.7;
}*/

@keyframes wave-slide {
  0% {
    transform: translateX(0) scaleY(0.5);
  }
  100% {
    transform: translateX(-50%) scaleY(0.5);
  }
}

@media (max-width: 768px) {
  .firstview {
    margin-bottom: 40px;
  }

  .firstview h1 {
    font-size: 56px;
  }

  .firstview p {
    font-size: 18px;
  }
}

@media (max-width: 450px) {
  .firstview {
    height: 400px;
    width: 100%;
  }

  nav {
    display: none;
  }
}

.section-title {
  display: inline-block;
  font-size: 64px;
  margin: 50px 0;
  font-family: "Playfair Display", serif;
}

#top {
  padding: 80px 0;
}

.images {
  display: flex;
  gap: 5%;
  justify-content: center;
}

.images img {
  height: 400px;
  width: 300px;
  object-fit: cover;
}

.text {
  width: 100%;
  padding: 70px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
}

.text p {
  font-size: 20px;
}

@media (max-width: 768px) {
  .images {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
  }

  .images img {
    margin: 0 auto;
  }

  .text p {
    font-size: 13px;
  }
  .hibiscus img {
    width: 200px;
  }

  .hibiscus1 {
    top: 50px;
    left: 30px;
  }

  .hibiscus2 {
    bottom: -20px;
    right: 30px;
  }
}

@media (max-width: 450px) {
  .section-title {
    font-size: 44px;
  }

  .hibiscus img {
    width: 150px;
  }
}

#menu {
  text-align: center;
}

.food {
  display: flex;
  justify-content: center;
  gap: 40px 2%;
  margin: 50px auto;
  max-width: 900px;
  flex-wrap: wrap;
  position: relative;
  /*overflow: hidden;*/
  width: 100%;
}

.leaf img {
  position: absolute;
  width: 600px;
  height: auto;
  opacity: 0.5;
}

.leave1 {
  top: -200px;
  left: -180px;
}

.leave2 {
  bottom: -300px;
  right: -180px;
}

.food-box {
  width: 30%;
  text-align: left;
  font-weight: bold;
}

.food-box-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  gap: 10px;
}

.food-title {
  display: flex;
  align-items: baseline;
}

.food-box-name {
  font-size: 20px;
}

.food-box-price {
  font-size: 0.9rem;
  font-weight: medium;
}

.food-box-ranking {
  margin-left: auto;
  color: rgba(50, 67, 112, 0.3);
  font-size: 30px;
  font-weight: bold;
}

.food-box-text {
  font-size: 0.85rem;
  margin-top: 10px;
}

.combo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 900px;
  margin: 100px auto;
  text-align: left;
  font-weight: bold;
}

.combo-container img {
  width: auto;
}

.combo-contents {
  font-size: 12px;
}

.combo-box-price {
  padding-left: 30px;
}

.combo-box-text {
  padding-top: 30px;
}

@media (max-width: 768px) {
  .food-box {
    width: 40%;
  }

  .combo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .combo-container img {
    width: 40%;
  }

  .leaf img {
    width: 400px;
  }

  .leave1 {
    top: -250px;
    left: 0px;
  }

  .leave2 {
    bottom: -500px;
    right: 0px;
  }
}

@media (max-width: 450px) {
  .food-box {
    width: 80%;
  }
  .combo-container img {
    width: 80%;
  }

  .leaf img {
    width: 300px;
  }

  .leave1 {
    top: -200px;
  }

  .leave2 {
    bottom: -500px;
  }
}

#access {
  padding: 50px 0;
  text-align: center;
  max-width: 900px;
  font-weight: bold;
  margin: 0 auto;
}

.container {
  position: relative;
  width: 100%;
  z-index: 0;
}

.access-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 40px 20px;
  gap: 20px;
  z-index: 1;
}

.decoration {
  transform: rotate(-90deg);
  font-size: 64px;
  opacity: 0.5;
  position: absolute;
  top: 80px;
  left: -50px;
  z-index: 1;
}

.decoration.decoration2 {
  font-size: 55px;
  top: 140px;
  left: -110px;
}

.access-title {
  margin: 0;
}

.section-title span {
  font-size: 40px;
  padding-bottom: -50px;
}

.access-content {
  display: flex;
  padding: 20px;
  margin-top: 40px;
  column-gap: 32px;
}

.access-content img {
  display: flex;
  position: relative;
  width: 45%;
  height: auto;
  object-fit: cover;
}

.access-text {
  width: 45%;
  text-align: left;
  font-weight: medium;
}

.access-text h4 {
  font-size: 28px;
  font-weight: bolder;
}

.access-text p {
  font-size: 16px;
  margin: 16px 0;
}

.access-text span {
  font-size: 13px;
}

.access-content a {
  display: inline-block;
  margin: 20px auto;
  padding: 10px 24px;
  border: 1px solid #324370;
  text-decoration: none;
  font-weight: bold;
  color: #324370;
  transition: all 0.3s ease;
}

.access-content a:hover {
  color: #f9f7f2;
  background-color: #324370;
}

.container {
  position: relative;
  /* overflow: hidden;*/
  width: 100%;
}

.tree img {
  position: absolute;
  width: 600px;
  height: auto;
  opacity: 0.5;
  top: -200px;
  right: -180px;
}

@media (max-width: 768px) {
  .container {
    overflow: hidden;
  }

  .access-content {
    flex-direction: column;
    row-gap: 24px;
  }

  .access-content img {
    max-width: 400px;
    width: 100%;
  }

  .access-text {
    width: 100%;
  }

  .decoration {
    left: 50px;
  }

  .decoration.decoration2 {
    left: 0px;
  }

  .tree img {
    top: 300px;
    right: 0px;
    overflow: hidden;
  }
}

@media (max-width: 450px) {
  #access {
    padding: 50px 0 0 0;
  }

  .decoration {
    left: -50px;
    font-size: 50px;
  }

  .decoration.decoration2 {
    left: -90px;
    top: 100px;
    font-size: 40px;
  }

  .tree img {
    width: 500px;
    top: 300px;
    right: -80px;
  }
}

.bg-combined {
  background: url("images/webp/footer-background.webp") no-repeat center
    center / cover;
  padding-bottom: 0;
  position: relative;
  margin-top: 200px;
}

#hours {
  padding-top: 100px;
  margin-top: -100px;
}

.hours-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 100px 0 300px auto;
  background-color: #f9f7f2;
  padding: 60px;
  z-index: 10;
  max-width: 1000px;
  width: 90%;
  box-sizing: border-box;
}

.hours-box {
  margin-right: 50px;
  text-align: left;
}

.hours-box span {
  display: inline-block;
  width: 100px;
  font-size: 20px;
}

.hours-box p {
  margin-bottom: 10px;
  font-size: 30px;
}

.hours-detail-caution {
  display: flex;
}

.hours-detail p {
  font-size: 13px;
  margin-left: 10px;
}

.hours-detail img {
  width: 30px;
  height: auto;
  object-fit: contain;
}

.hours-insta {
  display: flex;
}

.hours-insta p {
  font-size: 17px;
  margin-top: 50px;
}

.hours-insta img {
  width: 70px;
  height: cover;
  margin: 30px 0px;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.hours-insta img:hover {
  opacity: 0.5;
  transform: scale(1.1);
}

iframe {
  width: 100%;
  max-width: 400px;
  height: 300px;
  border: 0;
}

footer {
  position: relative;
  margin-top: -150px;
  color: #f9f7f2;
}

.address {
  padding: 100px 100px 200px 200px;
  text-align: left;
  width: 100%;
  margin: 0 auto;
  background-color: rgba(77, 66, 54, 0.8);
}

.address-detail {
  display: flex;
}

.address h5 {
  font-size: 24px;
  margin-bottom: 15px;
}

.address-detail p {
  text-align: left;
  margin: 2px 0px 5px 5px;
  font-size: 14px;
}

.footer-bottom {
  background-color: #4d4236;
  padding: 20px 0;
  text-align: center;
  position: relative;
  z-index: 10;
}

.footer-bottom p {
  font-size: 13px;
}

@media (max-width: 768px) {
  .hours-wrap {
    margin: 100px 0 200px auto;
    padding: 30px;
  }

  .hours-box span {
    font-size: 17px;
  }

  .hours-box p {
    font-size: 23px;
  }

  .hours-detail p {
    font-size: 15px;
  }

  .hours-insta p {
    font-size: 15px;
  }

  iframe {
    max-width: 300px;
    height: 250px;
    flex-shrink: 1;
  }

  .address {
    padding: 80px 40px;
  }
}

@media (max-width: 450px) {
  .hours-wrap {
    width: 90%;
    margin: 60px auto 200px;
    padding: 30px 50px;
    flex-direction: column;
  }

  iframe {
    height: 200px;
  }

  .address {
    padding: 80px 20px;
  }

  .address h5 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
