/* ==========================================================================
   Visit Page Styles
   ========================================================================== */

/* CSS Variables */
:root {
    --color-primary: #333333;
    --color-accent: #f9f8f6; 
    --color-beige: #f4f1ed;  
    --color-line: #06C755;
    --color-point: #c5a059;  
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

body {
    padding-top: 110px;
}

@media (max-width: 767px) {
    body {
        padding-top: 0;
    }
}

.header {
    top: 0;
}

.font-serif {
    font-family: 'Noto Serif JP', serif;
}

p.foot-top__logo img {
    margin: 0 auto;
}

/* ==========================================================================
   Swiper Slider
   ========================================================================== */

.swiper {
    width: 100%;
    padding-top: 30px;
    overflow: visible;
}

.swiper-slide {
    width: 65%;
    opacity: 0.5;
    transform: scale(0.95);
}

.swiper-slide-active {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

@media (max-width: 1024px) {
    .swiper-slide {
        width: 85%;
    }
}

@media (min-width: 768px) {
    .swiper-slide img {
        aspect-ratio: 16 / 9;
    }
}

/* Swiper Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
    background: rgba(255,255,255,0.9);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    color: #333;
}

.swiper-button-prev {
    left: 1rem;
}

.swiper-button-next {
    right: 1rem;
}

@media (min-width: 768px) {
    .swiper-button-prev {
        left: 2rem;
    }
    .swiper-button-next {
        right: 2rem;
    }
}

/* ==========================================================================
   Section Title
   ========================================================================== */

.title-underline {
    width: 0; /* JSで伸ばす */
    height: 1px;
    background-color: #333;
    margin: 2rem auto;
}

/* ==========================================================================
   GSAP Reveal Animations
   ========================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
}

.reveal-img-wrap {
    overflow: hidden;
}

.reveal-img-wrap img {
    transform: scale(1.1);
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Event Block
   ========================================================================== */

.event-block {
    display: block;
    background-color: var(--color-beige);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.event-block:hover {
    background-color: #ede9e4;
    transform: translateY(-2px);
    text-decoration: none;
}

/* ==========================================================================
   Feature Number
   ========================================================================== */

.feature-number {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: rgba(197, 160, 89, 0.1); 
    font-weight: 700;
    line-height: 1;
    z-index: 0;
    font-family: 'Noto Serif JP', serif;
}

/* ==========================================================================
   Map Frame
   ========================================================================== */

.map-frame {
    filter: grayscale(100%) contrast(1.2) opacity(0.8);
    transition: 0.5s;
}

.map-frame:hover {
    filter: grayscale(0%) contrast(1) opacity(1);
}

/* ==========================================================================
   Footer Override
   ========================================================================== */

.footer .foot-top__logo a img {
    margin: 0 auto;
}

