@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.6;
  background: linear-gradient(135deg, rgba(166, 124, 82, 0.05), rgba(166, 124, 82, 0.02));
  min-height: 100vh;
  position: relative;
}

.grid-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.page-title {
  text-align: center;
  margin-bottom: 5rem;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}
.page-title span {
  display: inline-block;
  position: relative;
  padding: 0 1rem;
}
.page-title span:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #a67c52, transparent);
}

.pricelist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.3s forwards;
}
.pricelist section {
  margin-bottom: 4rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.pricelist section:hover {
  transform: translateY(-5px);
}
.pricelist section h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #a67c52;
  font-weight: 500;
  text-align: center;
  position: relative;
}
.pricelist section h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #a67c52, transparent);
}
.pricelist section table {
  width: 100%;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(224, 224, 224, 0.3);
  transition: all 0.3s ease;
}
.pricelist section table:hover {
  background: rgba(255, 255, 255, 0.9);
}
.pricelist section table tr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}
.pricelist section table th {
  text-align: left;
  font-weight: normal;
}
.pricelist section table th span {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
.pricelist section table th small {
  display: block;
  color: #666;
  font-size: 0.85rem;
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
}
.pricelist section table td {
  font-size: 1.2rem;
  font-weight: 500;
  color: #a67c52;
  letter-spacing: 0.05em;
}

.credit {
  margin-top: 6rem;
  text-align: center;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.6s forwards;
}
.credit img {
  max-width: 800px;
  width: 100%;
  height: auto;
  opacity: 0.9;
  transition: all 0.3s ease;
}
.credit img:hover {
  opacity: 1;
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .grid-container {
    padding: 2rem 1rem;
  }
  .page-title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }
  .pricelist {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pricelist section {
    margin-bottom: 2rem;
    padding: 1.5rem;
  }
  .pricelist section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .pricelist section table th span {
    font-size: 1rem;
  }
  .pricelist section table td {
    font-size: 1.1rem;
  }
  .credit {
    margin-top: 4rem;
  }
  .credit img {
    max-width: 300px;
  }
}

/*# sourceMappingURL=menu.css.map */
