@charset "UTF-8";

/* --- Base Typography --- */
body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    letter-spacing: 0.05em;
    font-size: 16px;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, .heading {
    letter-spacing: 0.08em;
}

/* --- Section Spacing (Updated to Padding) --- */
section {
    padding-top: 70px;
    padding-bottom: 70px;
}

/* --- Spacing Overrides --- */
.lg\:pt-32 {
    padding-top: 20px !important;
}

:root {
    --primary: #FFB300; /* Rich Yellow */
    --accent: #FF5722;  /* Vibrant Orange */
    --bg-light: #FFFBF0;
    --text-dark: #2D241E;
}

/* --- Global Utilities --- */
.container-custom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 10px;
}

@media (min-width: 768px) {
    .container-custom {
        padding: 0 20px;
    }
}

img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Disable right-click message or effect */
body {
    user-select: none;
    -webkit-user-select: none;
}

/* --- Header Sticky --- */
header {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 179, 0, 0.15); /* Soft Neon Shadow */
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 25px rgba(255, 179, 0, 0.25); /* Stronger Neon on Scroll */
}



/* --- Swiper Fade Adjustment --- */
.swiper-fade .swiper-slide {
    pointer-events: none;
}
.swiper-fade .swiper-slide-active {
    pointer-events: auto;
}

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

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* --- Buttons --- */
.btn-primary {
    background-color: var(--primary);
    color: white;
    padding: 12px 32px;
    border-radius: 9999px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 260px;
}


.btn-primary:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.2);
}

/* --- New Premium Header (Icon-based) --- */
.header-top-nav {
    border-bottom: 1px solid #f0f0f0;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    color: #666;
    transition: color 0.3s;
    padding: 15px 10px;
    min-width: 80px;
}

.nav-item:hover {
    color: var(--primary);
}

.nav-item-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

/* --- New FV Layout --- */
.fv-container {
    width: 90%;
    margin: 0 auto;
    padding: 20px 0 40px;
}



.fv-frame {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    background: #fff;
    aspect-ratio: 16 / 8;
}

@media (max-width: 1024px) {
    .fv-frame {
        aspect-ratio: 1 / 1.4;
        border-radius: 20px;
    }
}





.fv-slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    color: white;
    text-align: center;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.5) 100%);
    padding: 80px 10px;
}



@media (min-width: 1024px) {
    .fv-slide-content {
        padding: 60px 40px;
    }
}



.fv-title-en {
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 179, 0, 0.8), 0 0 20px rgba(255, 179, 0, 0.4);
}

@media (min-width: 1024px) {
    .fv-title-en {
        font-size: 3.5rem;
    }
}

.fv-title-jp {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

@media (min-width: 1024px) {
    .fv-title-jp {
        font-size: 1rem;
    }
}
.btn-accent {
    background-color: var(--accent);
    color: white;
    padding: 12px 32px;
    border-radius: 9999px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 260px;
}


.btn-accent:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 179, 0, 0.2);
}

/* --- Section Title Image Decoration --- */
/* --- Section Title Stylish Design --- */
.section-title-wrap {
    text-align: center;
    margin-bottom: 70px;
}



.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    line-height: 1.4;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-title .en {
    display: block;
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.4em;
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 99px;
}


/* --- Broken Grid Elements --- */
.about-image-layout {
    position: relative;
}

@media (min-width: 1024px) {
    .asymmetric-col-40 {
        width: 40%;
    }
    .asymmetric-col-60 {
        width: 60%;
    }
    .asymmetric-reverse {
        flex-direction: row-reverse;
    }
}

/* --- Footer Social Icons --- */
.sns-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: background 0.2s;
}

.sns-icon-btn:hover {
    background: #f8f8f8;
}

/* --- Mobile Menu Overlay Transitions --- */
#mobile-menu {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(-20px);
}

#mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Mobile Fixed CTA */
.fixed-cta {
    display: none;
}

@media (max-width: 767px) {
    .fixed-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 50;
    }
    .fixed-cta a {
        flex: 1;
        text-align: center;
        padding: 15px 0;
        font-weight: bold;
        font-size: 0.9rem;
    }
    .fixed-cta-tel {
        background: var(--primary);
        color: white;
    }
    .fixed-cta-insta {
        background: var(--accent);
        color: white;
    }
}

/* --- Cleanup & Side Socials --- */
@media (min-width: 1024px) {
    .side-sns-icons {
        background: white;
        padding: 15px 5px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        box-shadow: -2px 0 10px rgba(0,0,0,0.05);
    }
    .side-sns-icons a {
        font-size: 1.2rem;
        color: #777;
        transition: color 0.3s;
    }
    .side-sns-icons a:hover {
        color: var(--accent);
    }
}


/* --- Vertical Pagination --- */
.fv-pagination {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

@media (max-width: 767px) {
    .fv-pagination { display: none; }
}

.pag-num {
    font-size: 0.8rem;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.pag-num.active {
    color: var(--primary);
    transform: scale(1.2);
}

/* --- Floating Reservation --- */
.floating-res {
    position: absolute;
    bottom: -30px;
    left: -30px;
    z-index: 30;
    width: 140px;
    height: 140px;
    background: #e69138;
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(230, 145, 56, 0.4);
    text-align: center;
    padding: 10px;
    line-height: 1.3;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-res:hover {
    transform: scale(1.1) rotate(-5deg);
}

@media (max-width: 767px) {
    .floating-res {
        width: 100px;
        height: 100px;
        font-size: 0.8rem;
        bottom: 10px;
        left: 10px;
    }
}

/* --- Scroll Down Animation --- */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    z-index: 10;
    text-align: center;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.2em;
}

.scroll-down::after {
    content: "";
    display: block;
    width: 1px;
    height: 60px;
    background-color: white;
    margin: 10px auto 0;
    animation: scroll-down-anim 2s infinite;
}

@keyframes scroll-down-anim {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- Section-specific Image Styles (Non-template Design) --- */

/* TV - Concerns: Organic Shape */
.tv-img-wrap {
    width: 100%;
    position: relative;
}
.tv-img-wrap img {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph 8s ease-in-out infinite;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}
@keyframes morph {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

/* About Section: Double Frame */
.about-img-wrap {
    position: relative;
    padding: 20px;
}
.about-img-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 40px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    z-index: -1;
}
.about-img-wrap img {
    box-shadow: 15px 15px 30px rgba(0,0,0,0.1);
}

/* Service Points Unified Style */
.service-img-wrap img {
    border-radius: 30px;
    box-shadow: 15px 15px 40px rgba(0,0,0,0.1);
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}



/* Message Section: Image Wrap */
.message-img-wrap {
    position: relative;
}


/* --- Marquee Gallery (Infinite Loop) --- */

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 40px 0;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

/* Stop-gap for hover: User said "must never stop or pause for hover" */
.marquee-content:hover {
    animation-play-state: running !important;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    width: 450px;
    height: 300px;
    margin: 0 10px;

    flex-shrink: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}


.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.marquee-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 767px) {
    .marquee-item {
        width: 300px;
        height: 200px;
    }
}


/* --- Price Section Custom Alignment --- */
.price-content {
    text-align: center;
}

.price-item {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    margin-top: 10px;
}

/* --- Cards / Voice --- */
.voice-card {
    background: white;
    padding: 30px;
}

/* --- Neon Orbs / Blobs for Background --- */
.about-neon-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.neon-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    animation: blob-float 15s infinite alternate ease-in-out;
}

@keyframes blob-float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 40px) scale(1.15); }
}

#about {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#about > * {
    position: relative;
    z-index: 2;
}

/* --- Marker Highlight effect --- */
.marker-yellow {
    background: linear-gradient(transparent 60%, rgba(255, 179, 0, 0.4) 40%);
    display: inline;
}

/* --- Kids Space Swiper --- */
.kids-space-slider-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 10px 40px;
    position: relative;
}

.kids-space-swiper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.kids-space-swiper .swiper-slide img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

@media (max-width: 767px) {
    .kids-space-swiper .swiper-slide img {
        height: 260px;
    }
}

.kids-space-swiper .swiper-button-prev,
.kids-space-swiper .swiper-button-next {
    color: white;
    background: rgba(0,0,0,0.3);
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.kids-space-swiper .swiper-button-prev::after,
.kids-space-swiper .swiper-button-next::after {
    font-size: 1rem;
}

.kids-space-pagination.swiper-pagination {
    bottom: 12px;
}

/* --- Facility Swiper (auto slideshow inside service card) --- */
.facility-swiper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.facility-slide-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    display: block;
}

.facility-pagination.swiper-pagination {
    bottom: 8px;
}

.facility-pagination .swiper-pagination-bullet-active {
    background: var(--accent);
}

/* --- Seamless Infinite Marquee Gallery --- */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee-scroll 60s linear infinite; /* Adjust time for speed */
}

/* Ensure it never pauses */
.marquee-content:hover,
.marquee-content:active,
.marquee-content:focus {
    animation-play-state: running !important;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    flex-shrink: 0;
    width: 280px; /* Base width */
    padding: 0 10px;
    overflow: hidden;
}

.marquee-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

/* Hover effect on images only, doesn't stop the scroll */
.marquee-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .marquee-item {
        width: 180px;
    }
    .marquee-content {
        animation: marquee-scroll 40s linear infinite;
    }
}


