
body {
  font-family: 'Noto Sans JP', system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  color: #1f2933;
  background-color: #ffffff;
}
.font-pattaya {
  font-family: 'Pattaya', sans-serif;
}
.font-serif {
  font-family: 'Noto Serif JP', serif;
}
h2, h3 {
  font-family: 'Noto Serif JP', serif;
}
#progressBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #b45309, #d97706);
  z-index: 9999;
  transition: width 0.1s ease-out;
}
@media (min-width: 768px) {
  * {
    cursor: none !important;
  }
}
#cursorFollower {
  position: fixed;
  width: 28px;
  height: 28px;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.05s linear;
  transform: translate(-4px, -2px);
}
#cursorFollower svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(1px 2px 3px rgba(0,0,0,0.3));
}
#cursorFollower .cursor-arrow-group {
  opacity: 1;
  transform-origin: 6px 6px;
  transition: opacity 0.15s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#cursorFollower .cursor-dot-group {
  opacity: 0;
  transform: scale(0);
  transform-origin: 12px 12px;
  transition: opacity 0.15s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#cursorFollower.hover {
  transform: translate(-14px, -14px);
}
#cursorFollower.hover .cursor-arrow-group {
  opacity: 0;
  transform: scale(0);
}
#cursorFollower.hover .cursor-dot-group {
  opacity: 1;
  transform: scale(1);
}
#cursorFollower.hover .dot-main {
  animation: dotPulse 1.2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% {
    r: 5;
  }
  50% {
    r: 7;
  }
}
@media (max-width: 767px) {
  #cursorFollower {
    display: none;
  }
}
.char-animate {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.char-animate.show {
  opacity: 1;
  transform: translateY(0);
}


.btn-ripple {
  position: relative;
  overflow: hidden;
}
.btn-ripple .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple-effect 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-effect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: #9ca3af;
}
.section-title-line::after {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  margin: 1rem auto 0;
  background-color: #b45309;
}
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
.heading-animate {
  opacity: 0;
  letter-spacing: -0.2em;
  transition:
    opacity 200ms cubic-bezier(.19, 1, .22, 1),
    letter-spacing 1.3s cubic-bezier(.19, 1, .22, 1);
}
.heading-animate.show {
  opacity: 1;
  letter-spacing: 0.18em;
}
#hero {
  background-size: cover;
  background-position: center;
  will-change: background-position;
}
#heroContent {
  will-change: transform, opacity;
}
#heroContent h1 {
  text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 4px 40px rgba(0,0,0,0.25);
}
#heroContent h1 span {
  text-shadow: 0 1px 12px rgba(0,0,0,0.6), 0 3px 24px rgba(0,0,0,0.3);
}
#heroContent p {
  text-shadow: 0 1px 12px rgba(0,0,0,0.6), 0 3px 24px rgba(0,0,0,0.3);
}
#hero .hero-logo {
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4));
}
/* Scroll Down Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  opacity: 0.85;
  transition: opacity 0.3s ease;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.scroll-indicator:hover {
  opacity: 1;
}
.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  font-weight: 500;
}
.scroll-indicator svg {
  animation: scrollBounce 2s ease-in-out infinite;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,0.3));
}
@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
/* CTA Reserve Button */
.cta-reserve-btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
  box-shadow: 0 6px 24px rgba(31, 41, 55, 0.4);
}
.cta-reserve-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}
.cta-reserve-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}
.cta-reserve-btn:hover::before {
  left: 100%;
}
#introLoader {
  position: fixed;
  inset: 0;
  background: #1f2933;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s ease, visibility 0.8s;
}
#introLoader.hidden {
  opacity: 0;
  visibility: hidden;
}
#introLoader .loader-text {
  font-family: 'Pattaya', sans-serif;
  font-size: 2.5rem;
  color: #fff;
  opacity: 0;
  animation: loaderFadeIn 1s ease 0.3s forwards;
}
#introLoader .loader-bar {
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.2);
  margin-top: 1.5rem;
  overflow: hidden;
  border-radius: 2px;
}
#introLoader .loader-bar-inner {
  width: 0%;
  height: 100%;
  background: #d97706;
  animation: loaderProgress 1.5s ease 0.5s forwards;
}
@keyframes loaderFadeIn {
  to { opacity: 1; }
}
@keyframes loaderProgress {
  to { width: 100%; }
}
.slider-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 16 / 9;
}
@media (max-width: 767px) {
  .slider-wrapper {
    aspect-ratio: 4 / 3;
  }
}
.slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}
.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-item.is-active {
  opacity: 1;
  pointer-events: auto;
}
.arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background: rgba(15, 23, 42, 0.45);
  color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background .2s ease, transform .2s ease;
}
.arrow-btn:hover {
  background: rgba(15, 23, 42, 0.7);
  transform: translateY(-50%) scale(1.03);
}
.arrow-left {
  left: 20px;
}
.arrow-right {
  right: 20px;
}
/* Section Divider Waves */
.section-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.section-divider svg {
  display: block;
  width: 100%;
  height: 48px;
}
@media (min-width: 768px) {
  .section-divider svg {
    height: 72px;
  }
}
.section-divider--flip svg {
  transform: scaleY(-1);
}
.section-divider--cream svg path {
  fill: #f6f5f0;
}
.section-divider--white svg path {
  fill: #ffffff;
}