@charset "UTF-8";

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #433835;
  text-align: justify;
}

.logo {
  height: 40px;
  width: auto;
}

@media (min-width: 768px) {
  .logo {
    height: 52px;
  }
}

/* カスタムスクロールバー */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #fff7ed;
}

::-webkit-scrollbar-thumb {
  background: #fdba74;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ef9900;
}

.glass-nav {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 237, 213, 0.5);
}

/* 背景のドットパターン */
.bg-dot-pattern {
  background-image: radial-gradient(#fed7aa 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Scroll Animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}
