@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Outfit:wght@400;600;700&family=Zen+Old+Mincho:wght@400;700&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    letter-spacing: 0.03em;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Smoothing and Transitions (Disabled by default to avoid unwanted CSS animations) */
/* (Transitions for specific components are enabled elsewhere) */



/* Section Spacing */
section {
    margin-bottom: 80px;
}

@media (min-width: 768px) {
    section {
        margin-bottom: 120px;
    }
}

/* Section Title with Image Background */
.section-title-img {
    max-width: 50%;
    margin: 0 auto;
    position: relative;
}

.section-title-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    font-family: 'Zen Old Mincho', serif;
    font-weight: bold;
    color: #333;
    pointer-events: none;
}

/* Swiper FV Styling */
.swiper-fv {
    width: 100%;
    height: auto;
}

.swiper-fv img {
    width: 100%;
    height: auto;
    display: block;
}




/* Parallax Effect */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Hamburger Menu Overlay (SP) */
#menu-overlay {
    clip-path: circle(0% at 100% 0%);
    transition: clip-path 0.5s ease-in-out;
}

#menu-overlay.open {
    clip-path: circle(150% at 100% 0%);
}

/* Hover Effects */
.btn-hover:hover {
    opacity: 0.8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 127, 127, 0.4);
}

/* Accordion */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-icon {
    transform: rotate(0deg);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

/* Premium Enhancements */
.shadow-premium {
    box-shadow: 0 20px 50px rgba(255, 127, 127, 0.15);
}

.shadow-hover:hover {
    transform: translateY(-8px);
    box-shadow: 30px 60px rgba(255, 127, 127, 0.25);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bg-gradient-coral {
    background: #FF7F7F;
}

.transition-premium {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Mobile Only Utility */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
}

/* Scroll Animations (Removed) */
