:root {
    --primary-color: #9B2226; /* A rich, slightly muted red - from grape/wine */
    --secondary-color: #A98743; /* Ochre */
    --accent-color: #EE9B00; /* A vibrant gold/yellow for highlights */
    --nature-blue: #0088A3; /* Brighter lake blue - Saiko Blue */
    --text-color: #333;
    --light-bg: #f8f8f8;
    --bg-color-1: rgba(253, 236, 236, 0.85); /* Light Red */
    --bg-color-2: rgba(254, 248, 231, 0.85); /* Light Yellow */
    --bg-color-3: rgba(230, 245, 250, 0.85); /* Light Blue */
}

/* Animated Polka Dot Background */
@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -20px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 15px) scale(1.05); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-25px, 20px) scale(1.15); }
    66% { transform: translate(25px, -25px) scale(0.9); }
}

body {
    font-family: YuMincho, Yu Mincho, '游明朝', "ヒラギノ明朝 ProN W6", HiraMinProN-W6, "HG明朝E", "ＭＳ Ｐ明朝", MS PMincho, "MS 明朝", serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: var(--light-bg);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: -80px;
    left: -80px;
    right: -80px;
    bottom: -80px;
    z-index: -1;
    background: 
        radial-gradient(circle at 50% 50%, #FF6B6B 0, #FF6B6B 80px, transparent 80px),
        radial-gradient(circle at 50% 50%, #FFD93D 0, #FFD93D 100px, transparent 100px);
    background-size: 600px 600px;
    background-position: 120px 120px, 420px 420px;
    opacity: 0.25;
    animation: float1 20s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    top: -90px;
    left: -90px;
    right: -90px;
    bottom: -90px;
    z-index: -1;
    background: 
        radial-gradient(circle at 50% 50%, #4ECDC4 0, #4ECDC4 120px, transparent 120px);
    background-size: 700px 700px;
    background-position: 350px 250px;
    opacity: 0.2;
    animation: float2 25s ease-in-out infinite;
}

h1, h2, h3, h4 {
    color: var(--nature-blue);
}

.container {
    padding: 20px;
    max-width: 95%;
    margin: 0 auto;
    color: var(--secondary-color);
}

.container h1 {
    text-align: center !important;
}

/* --- Navigation --- */
.nav-container {
    background-color: var(--secondary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}


.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 95%;
    margin: 0 auto;
    position: relative;
}

.logo {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
}

.logo img {
    width: 50px;
    height: auto;
    vertical-align: middle;
    transition: all 0.3s ease;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.4));
}

.logo:hover img {
    transform: scale(1.08);
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.5));
}

@media (max-width: 768px) { 
    .logo img {
        width: 35px;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown .dropdown-toggle {
    cursor: pointer;
}

.dropdown .dropdown-toggle::after {
    content: ' ▼';
    font-size: 0.7em;
    display: inline-block;
    transition: transform 0.2s ease;
}

.dropdown.open .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--secondary-color);
    list-style: none;
    padding: 10px 0;
    margin-top: 0;
    min-width: 150px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-radius: 5px;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 8px 15px;
    display: block;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background-color: var(--primary-color);
    color: white !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1002;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 768px) {

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInDown 0.3s ease forwards;
    }

    .nav-links li:nth-child(1) { animation-delay: 0.1s; }
    .nav-links li:nth-child(2) { animation-delay: 0.2s; }
    .nav-links li:nth-child(3) { animation-delay: 0.3s; }
    .nav-links li:nth-child(4) { animation-delay: 0.4s; }
    .nav-links li:nth-child(5) { animation-delay: 0.5s; }
    .nav-links li:nth-child(6) { animation-delay: 0.6s; }
    .nav-links li:nth-child(7) { animation-delay: 0.7s; }
    .nav-links li:nth-child(8) { animation-delay: 0.8s; }
    .nav-links li:nth-child(9) { animation-delay: 0.9s; }

    .nav-links a {
        display: block;
        padding: 5px 0;
        font-size: 1.2rem;
        text-align: left;
    }

    .nav-links a:hover {
        color: #4299E1;
    }

    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 10px 0;
        margin-top: 10px;
        border-top: 1px solid rgba(255,255,255,0.2);
        width: 100%;
        text-align: center;
        display: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* --- Footer --- */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
    max-width: 90%;
    margin: 0 auto;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}


.testimonial-author-text {
    text-align: center !important;
}

.copyright p {
    text-align: center !important;
}

/* --- Common Components --- */
.page-header {
    background: linear-gradient(135deg, rgba(155, 34, 38, 0.85), rgba(0, 136, 163, 0.85)), 
                url('../../images/randoms/random_11.webp') center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 3.5em;
    color: white;
    margin-bottom: 25px;
    position: relative;
    animation: fadeInUp 0.8s ease forwards;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3em;
    max-width: 900px;
    position: relative;
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 20px;
    }

    .page-header h1 {
        font-size: 2.2em;
        margin-bottom: 20px;
    }

    .page-header p {
        font-size: 1em;
    }
}

.video-description {
    text-align: center;
    max-width: 800px;
}

.marche-description {
    text-align: center;
    max-width: 900px;
}

@media (max-width: 768px) {
    .marche-description {
        display: none;
    }
}

.map-container, .video-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-container iframe, .video-container iframe, .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
    object-fit: cover;
}

/* SNS共有ボタン */
.sns-links {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sns-links a {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 0.9rem;
    text-decoration: none;
    color: white;
}

.sns-links a:hover {
    background-color: white;
    color: var(--secondary-color);
}

.cta-button {
    display: inline-block;
    padding: 16px 38px;
    background: linear-gradient(45deg, #2C7D86, #4199A3);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    margin: 20px 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(44, 125, 134, 0.3);
    font-weight: 600;
    font-size: 1.05em;
    letter-spacing: 0.5px;
    text-transform: none;
    border: 2px solid rgba(255,255,255,0.15);
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out;
    z-index: 1;
}

.cta-button:after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.2) 50%,
        rgba(255,255,255,0) 100%
    );
    background-size: 200% 100%;
    border-radius: 12px;
    z-index: -1;
    animation: shine 3s infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(44, 125, 134, 0.4);
    background: linear-gradient(45deg, #4199A3, #55B1BB);
    border-color: rgba(255,255,255,0.25);
}

.cta-button:hover:before {
    width: 250px;
    height: 250px;
}

.cta-button:hover:after {
    opacity: 1;
}

.cta-button:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(44, 125, 134, 0.3);
}

@keyframes shine {
    0% {
        background-position: 200% 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        background-position: -200% 0;
        opacity: 0;
    }
}

/* スマートフォン向けの調整 */
@media (max-width: 768px) {
    .cta-button {
        padding: 14px 32px;
        font-size: 1em;
        letter-spacing: 0.3px;
    }
    
    .cta-button:hover {
        transform: translateY(-2px) scale(1.01);
    }
}

/* Fixed CTA Buttons */
.fixed-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 200px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fixed-cta.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.close-cta {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: var(--secondary-color);
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    line-height: 1;
}

.close-cta:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.fixed-cta a {
    display: block;
    transition: transform 0.2s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    padding: 12px 20px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.fixed-cta a:hover {
    transform: translateY(-3px);
}

.fixed-cta img {
    display: none;
}

.cta-ticket {
    background-color: #2b6cb0;
}

.cta-instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.cta-instagram svg {
    width: 20px;
    height: 20px;
}

/* Main Visual */
.main-visual {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-align: center;
    max-width: 90%;
    margin: 20px auto;
    margin-top: 20px;
    border-radius: 10px;
}

.main-visual picture {
    width: 100%;
    height: 100%;
    display: block;
}

.main-visual img,
.responsive-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1023px) {
    .main-visual {
        height: 100%;
        margin: 0 auto;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .main-visual {
        height: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        border-radius: 0;
    }
}

/* Section Styles */
.section {
    margin: 0;
}

div.container > section {
    margin: 60px 0;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    backdrop-filter: blur(5px);
}

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes borderGrow {
    0% {
        width: 0;
    }
    100% {
        width: 80px;
    }
}

/* Section Heading Animations */
@keyframes headingFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes underlineGrow {
    0% {
        width: 0;
    }
    100% {
        width: 80px;
    }
}

/* Common h2 styles for all sections */
.section h2, div.container > section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--nature-blue);
    font-size: 2.2em;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section h2::after, div.container > section h2::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 15px auto;
    border-radius: 2px;
    transition: width 0.8s ease-out;
    transition-delay: 0.3s;
}

.section h2.fade-in-section::after, div.container > section h2.fade-in-section::after {
    width: 80px;
}

.section h2:hover, div.container > section h2:hover {
    transform: translateY(-2px);
}

.section h2:hover::after, div.container > section h2:hover::after {
    width: 120px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .section h2, div.container > section h2 {
        font-size: 1.5em;
        padding: 10px 0;
    }
}

div.container > section:nth-of-type(3n+1) {
    background-color: var(--bg-color-1);
}

div.container > section:nth-of-type(3n+2) {
    background-color: var(--bg-color-2);
}

div.container > section:nth-of-type(3n) {
    background-color: var(--bg-color-3);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature-item {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

/* Ticket Section */
.ticket-section {
    background-color: transparent;
    padding: 0;
    margin: 20px 0;
    border-radius: 10px;
    text-align: center;
}

.ticket-section h3 {
    color: var(--nature-blue);
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.ticket-section .date-info {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.ticket-card {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.ticket-card-full-width {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    grid-column: 1 / -1;
    border: 1px solid rgba(0,0,0,0.05);
}

.accommodation-plans {
    color: var(--text-color);
    font-weight: bold;
    margin: 20px 0;
    text-align: left;
}

.plan-item {
    margin-bottom: 10px;
}

.plan-item p {
    margin: 0;
}

.ticket-card h4 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
}

.ticket-card .price {
    font-size: 2.2em;
    font-weight: bold;
    margin: 10px 0;
    color: var(--text-color);
    text-align: center;
}

.ticket-card .price small {
    font-size: 0.5em;
    font-weight: normal;
}

.ticket-card p {
    margin: 15px 0;
    flex-grow: 1;
    color: var(--text-color);
    text-align: center;
}

.ticket-footer-info {
    text-align: center;
    margin: 30px 0;
}

.ticket-footer-info p {
    margin: 10px 0;
    text-align: center !important;
}


#ticket-info .cta-button {
    background-color: var(--nature-blue);
    color: white;
    margin: 5px;
}

#ticket-info .cta-button:hover {
    background-color: #004c5a;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.highlight-item {
    background: white;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.highlight-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.highlight-item h3 {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.highlight-item p {
    font-size: 1em;
    line-height: 1.6;
    color: var(--text-color);
    flex-grow: 1;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 20px;
    text-align: center;
    position: relative;
    background-color: transparent;
    border-radius: 10px;
    overflow: visible;
}

.testimonials-section::before {
    display: none;
}

.testimonials-section h2 {
    font-size: 2.4em;
    color: var(--nature-blue);
    margin-bottom: 40px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonials-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 15px auto;
    border-radius: 2px;
}

.testimonials-container {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    margin: 0 -20px;
    padding: 0 20px 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0;
    border-radius: 15px;
    width: 400px;
    margin: 0;
    text-align: left;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-author {
    order: -1;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-author img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-author img {
    transform: scale(1.05);
}

.testimonial-author p {
    margin: 15px 0;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1em;
    position: relative;
}

.testimonial-text {
    font-size: 1em;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
    padding: 25px;
    position: relative;
    flex-grow: 1;
}

.testimonial-text p {
    text-align: left !important;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 15px;
    }

    .testimonials-container {
        gap: 25px;
    }

    .testimonial-card {
        width: 100%;
        max-width: 450px;
    }

    .testimonial-author img {
        width: 100%;
        height: 300px;
    }

    .testimonial-text {
        font-size: 0.95em;
        padding: 20px;
    }
}

.plan-details {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.plan-details h3 {
    font-size: 1.4em;
    color: var(--nature-blue);
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 136, 163, 0.1);
}

.plan-details > p {
    margin-bottom: 25px;
    flex-grow: 1;
}

.plan-block {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.plan-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.plan-block h2 {
    font-size: 1.8em;
    margin: 0;
    padding: 25px 30px;
    text-align: center;
    background-color: var(--nature-blue);
    color: white;
}

.plan-block:hover .plan-images img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .plan-block {
        padding: 25px;
        margin-bottom: 40px;
    }

    .plan-images {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 20px 0 30px;
    }

    .plan-images img:nth-child(2) {
        display: none;
    }

    .plan-details {
        margin-top: 30px;
    }

    .plan-info {
        margin: 30px 0;
    }

    .plan-info table {
        margin-bottom: 30px;
    }
}

.plan-card .plan-meta {
    text-align: center;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.plan-card .plan-meta p {
    margin: 5px 0;
}

.plan-card .plan-meta .target {
    font-weight: bold;
}

.timeline {
    margin-top: 30px;
    position: relative;
    border-left: 3px solid var(--accent-color);
    padding-left: 30px;
}

.timeline-item {
    margin-bottom: 30px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-bg);
    border: 3px solid var(--accent-color);
}

.timeline-item h4 {
    font-size: 1.2em;
    color: var(--secondary-color);
    margin: 0 0 10px 0;
}

.timeline-item p {
    margin: 0;
    line-height: 1.7;
}

.plan-card .plan-points {
    margin-top: 30px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 5px;
}

.plan-card .plan-points h4 {
    color: var(--primary-color);
    margin-top: 0;
}

.plan-card .plan-points ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.info-card {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid var(--nature-blue);
}

/* Schedule Table */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.schedule-table th,
.schedule-table td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: center;
}

.schedule-table th {
    background-color: var(--primary-color);
    color: white;
}

.schedule-table tr:nth-child(even) {
    background-color: var(--light-bg);
}

/* Activity Styles */
.activity-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

/* Vendor Styles */
.vendor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.vendor-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.vendor-content {
    padding: 25px;
}

.vendor-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3em;
}

.news-item {
    background: #fff;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.news-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--nature-blue);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.08);
}

.news-item:hover::before {
    opacity: 1;
}

.news-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.news-section-more {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.news-section-more .cta-button {
    display: inline-block;
    padding: 16px 38px;
    background: linear-gradient(45deg, #2C7D86, #4199A3);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    margin: 20px 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(44, 125, 134, 0.3);
    font-weight: 600;
    font-size: 1.05em;
    letter-spacing: 0.5px;
    text-transform: none;
    border: 2px solid rgba(255,255,255,0.15);
}

.news-section-more .cta-button:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out;
    z-index: 1;
}

.news-section-more .cta-button:after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.2) 50%,
        rgba(255,255,255,0) 100%
    );
    background-size: 200% 100%;
    border-radius: 12px;
    z-index: -1;
    animation: shine 3s infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.news-section-more .cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(44, 125, 134, 0.4);
    background: linear-gradient(45deg, #4199A3, #55B1BB);
    border-color: rgba(255,255,255,0.25);
}

.news-section-more .cta-button:hover:before {
    width: 250px;
    height: 250px;
}

.news-section-more .cta-button:hover:after {
    opacity: 1;
}

.news-section-more .cta-button:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(44, 125, 134, 0.3);
}

/* Terms Table */
.terms-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.terms-table th, .terms-table td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.terms-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
}



/* Winery Info */
.winery-info {
    background-color: white;
    padding: 25px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.winery-info:hover {
    transform: translateY(-5px);
}

/* Access Section Styles */
.access-info {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.notice {
    background-color: #fff3cd;
    padding: 25px;
    margin: 20px 0;
    border-radius: 10px;
    text-align: left;
}


.notice li {
    margin-bottom: 10px;
    padding: 0 20px;
}

.price-info {
    background-color: var(--secondary-color);
    background: #f7fafc;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    margin-bottom: 10px;
}

/* Activity Details Styles */
.activity-details {
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Activity Details Table Styles */
.activity-details table {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0 20px;
}

.activity-details th {
    width: 220px;
    padding: 25px 35px;
    background: var(--nature-blue);
    color: white;
    border-radius: 15px 0 0 15px;
    font-weight: 500;
    font-size: 1.1em;
    vertical-align: top;
}

.activity-details td {
    padding: 25px 35px;
    background: #f8f9fa;
    border-radius: 0 15px 15px 0;
    line-height: 1.8;
    font-size: 1.1em;
}


.activity-details td span {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.activity-details td small {
    display: block;
    color: #666;
    font-size: 0.9em;
    margin-top: 5px;
}

.activity-details strong {
    color: var(--nature-blue);
    font-weight: bold;
}


/* Language Toggle */
.language-toggle {
    display: flex;
    gap: 5px;
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    max-width: calc(100% - 40px);
}

.language-toggle button {
    background: none;
    border: 1px solid #2b6cb0;
    color: #2b6cb0;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.language-toggle button.active {
    background: #2b6cb0;
    color: white;
}

.language-toggle button:hover {
    background: #2c5282;
    color: white;
}

@media (max-width: 768px) {
    .language-toggle {
        left: 10px;
        bottom: 80px;
        padding: 6px;
    }

    .language-toggle button {
        padding: 4px 10px;
        font-size: 0.85em;
    }
}

/* 多言語テキスト */
p[data-ja],
p[data-en] {
    margin: 1em auto;
    line-height: 1.8;
    font-size: 1.1em;
}

/* 住所テキストのマージン削除 */
.access-info p[data-ja],
.access-info p[data-en] {
    margin: 0;
}

.access-info ul li {
    text-align: left;
}
/* Gallery Page Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    padding: 40px 0;
    margin: 0 auto;
}

.bg-light-red {
    background: linear-gradient(135deg, #fff5f5 0%, #fff0f0 100%);
}

.bg-light-yellow {
    background: linear-gradient(135deg, #fffff0 0%, #fefceb 100%);
}

.bg-light-blue {
    background: linear-gradient(135deg, #f0f7ff 0%, #ebf4fc 100%);
}

#accommodation-plan-description {
    font-weight: normal;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 10px;
    }

    /* プロモーションビデオセクションの見出し調整 */
    h2[data-ja], h2[data-en] {
        font-size: 1.4em;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(169, 135, 67, 0.98); /* var(--secondary-color) with opacity */
        padding: 80px 20px 20px;
        flex-direction: column;
        gap: 1em;
        z-index: 1001;
    }

    .dropdown-toggle::after {
        float: right;
        margin-right: 20px;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-section h2 {
        font-size: 1.8em;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 1em;
    }

    .testimonial-author {
        align-self: center; /* Ensure center alignment on mobile */
        margin-top: 15px;
    }

    .language-toggle {
        left: 10px;
        bottom: 10px;
        padding: 6px;
        max-width: calc(100% - 20px);
    }

    .language-toggle button {
        padding: 4px 12px;
        font-size: 0.85em;
        min-width: 70px;
    }

    .video-container {
        margin: 20px auto;
        border-radius: 0;
    }

    .video-container iframe {
        border-radius: 0;
    }

    /* Video Section */
    .bg-light-yellow {
        background-color: var(--bg-color-2);
    }

    section.section.bg-light-yellow:has(.video-container) {
        padding: 40px 20px;
        margin: 60px 0;
        min-height: auto;
        display: block;
    }

    section.section.bg-light-yellow:has(.video-container) h2 {
        font-size: 2.2em;
        margin-bottom: 30px;
    }

    section.section.bg-light-yellow:has(.video-container) p {
        max-width: 800px;
        margin: 0 auto 20px;
        line-height: 1.8;
    }

    .video-container {
        position: relative;
        overflow: hidden;
        padding-top: 56.25%; /* 16:9 Aspect Ratio */
        margin: 30px auto;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        max-width: 800px;
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
        border-radius: 10px;
    }

    @media (max-width: 768px) {
        section.section.bg-light-yellow:has(.video-container) {
            padding: 30px 15px;
            margin: 30px 0;
        }

        section.section.bg-light-yellow:has(.video-container) h2 {
            font-size: 1.8em;
            margin-bottom: 20px;
        }

        .video-container {
            margin: 20px auto;
            border-radius: 8px;
        }

        .video-container iframe {
            border-radius: 8px;
        }
    }

    .section {
        padding: 20px;
    }

    div.container > section {
        padding: 20px;
        margin: 30px 0;
    }

    /* チケットセクションのスマホ調整 */
    .ticket-section h3 {
        font-size: 1.4em;
        margin-bottom: 15px;
    }

    .ticket-section .date-info {
        font-size: 0.9em;
        margin-bottom: 20px;
    }

    .date-info p strong {
        font-size: 1em;
    }

    .ticket-card h4 {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .ticket-card .price {
        font-size: 1.8em;
    }

    .ticket-card p {
        font-size: 0.9em;
        margin: 10px 0;
    }

    #accommodation-plan-description {
        font-size: 0.9em;
        margin: 10px 0;
    }

    .ticket-footer-info {
        font-size: 0.9em;
        margin: 20px 0;
    }

    .ticket-footer-info p[style*="font-size: 1.2em"] {
        font-size: 1.1em !important;
    }

    .cta-button {
        max-width: 300px;
        padding: 12px 20px;
        font-size: 1em;
        min-width: unset;
    }

    .notice {
        font-size: 0.85em;
    }

    .notice li {
        padding: 0 10px;
        margin-bottom: 8px;
    }

    .gallery-section {
        padding: 30px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
        margin: 20px auto;
        max-width: 400px;
    }

    .gallery-item {
        aspect-ratio: 3/2;
        max-width: 100%;
    }

    .activities-grid {
        gap: 20px;
        padding: 0 10px;
        margin: 20px auto;
    }
}

@media (max-width: 1200px) {
    .gallery-grid {
        gap: 25px;
        padding: 0 25px;
    }

    .gallery-item img {
        aspect-ratio: 3/2;
    }
} 

@media (max-width: 768px) {
    .fixed-cta {
        bottom: 15px;
        right: 15px;
        max-width: 200px;
        gap: 8px;
    }

    .fixed-cta img {
        width: 200px;
    }

    .close-cta {
        width: 20px;
        height: 20px;
        font-size: 14px;
        top: -6px;
        right: -6px;
    }
} 

/* Highlights Slideshow */
#highlights-slideshow.highlights-section.section  {
    padding: 60px 0;
    text-align: center;
    background-color: transparent;
    box-shadow: none;
}

.highlights-section h2 {
    font-size: 2.4em;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.slideshow-container {
    max-width: 90%;
    position: relative;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    aspect-ratio: 16/9;
}

.slide {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.slide.fade {
    animation: fadeEffect 0.5s ease-in-out;
}

/* Ken Burns effect for active slide */
.slide.active img {
    animation: kenBurns 8s ease-out forwards;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0);
    }
    100% {
        transform: scale(1.1) translate(-2%, -2%);
    }
}

@keyframes fadeEffect {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.slide-content h3 {
    font-size: 2em;
    margin-bottom: 15px;
    color: white;
    text-align: left;
}

.slide-content p {
    font-size: 1.1em;
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
    text-align: left;
}

/* Navigation Arrows */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 12px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s ease;
    border-radius: 50%;
    user-select: none;
    background: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 2;
}

.next {
    right: 10px;
}

.prev {
    left: 10px;
}

.prev:hover, .next:hover {
    background: rgba(0, 0, 0, 0.6);
}

/* Dots */
.dots-container {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: white;
}

/* Fade Animation */
.fade {
    animation-name: fade;
    animation-duration: 1s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .slideshow-container {
        border-radius: 10px;
        margin: 10px auto;
        aspect-ratio: 3/4;
        max-width: 100%;
    }

    .slide-content {
        padding: 30px 20px;
    }

    .slide-content h3 {
        font-size: 1.6em;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .slide-content p {
        font-size: 1em;
        line-height: 1.6;
    }

    /* ナビゲーション矢印を非表示に */
    .prev, .next {
        display: none;
    }

    /* ドットインジケーターの調整 */
    .dots-container {
        bottom: 15px;
        right: 15px;
    }

    .dot {
        height: 8px;
        width: 8px;
        margin: 0 4px;
        background-color: rgba(255, 255, 255, 0.6);
    }

    .dot.active {
        background-color: white;
        transform: scale(1.2);
    }
} 

.activity-block {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-section {
    animation: fadeInUp 0.6s ease forwards;
} 

.slider-container {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 700px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.slider-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider-container img.active {
    opacity: 1;
    z-index: 1;
}

@media (max-width: 1600px) {
    .slider-container {
        height: 600px;
    }
}

@media (max-width: 1200px) {

    .slider-container {
        height: 500px;
    }
}

@media (max-width: 768px) {

    .slider-container {
        height: 300px;
    }

    .activity-slider {
        padding: 20px;
    }
}

/* Info Grid Layout */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.info-grid-2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Notes and Additional Info */
.info-note {
    font-size: 0.9em;
    color: black;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #e2e8f0;
}

.schedule-table th,
.schedule-table td {
    padding: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.schedule-table th {
    background: #f7fafc;
    color: #2c5282;
}

.schedule-table tr:last-child td {
    border-bottom: none;
}

.model-plan-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    padding: 0;
    margin-bottom: 60px;
}

.schedule {
    margin-bottom: 25px;
}

.schedule h4 {
    font-size: 1.2em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.schedule ul {
    list-style: none;
    padding: 0;
    border-left: 3px solid rgba(0, 136, 163, 0.2);
}

.schedule li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.schedule li::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 6px;
    width: 15px;
    height: 15px;
    background-color: white;
    border: 3px solid var(--nature-blue);
    border-radius: 50%;
}

.time {
    font-weight: bold;
    color: var(--nature-blue);
    margin-right: 15px;
    font-size: 1.1em;
}

.plan-info table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.plan-info th, .plan-info td {
    padding: 15px;
    vertical-align: top;
}

.plan-info th {
    background-color: var(--nature-blue);
    color: white;
    border-radius: 8px 0 0 8px;
    width: 120px;
    text-align: left;
}

.plan-info td {
    background-color: #f8f9fa;
    border-radius: 0 8px 8px 0;
}

@media (max-width: 992px) {
    .model-plan-section {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }

    .plan-images img {
        height: 180px;
    }
}

/* Food and Drink Swiper Styles */
.food-swiper, .drink-swiper {
    width: 100vw;
    padding: 40px 0;
    overflow: hidden;
    position: relative;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.food-swiper {
    background: rgba(0, 0, 0, 0.05);
}

.drink-swiper {
    background: rgba(0, 0, 0, 0.03);
}

.scroll-container {
    display: flex;
    gap: 30px;
    position: relative;
    width: max-content;
    padding: 0 20px;
}

.drink-swiper .scroll-container {
    animation: scrollRight 40s linear infinite;
}

.scroll-item {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
}

.scroll-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

@media (max-width: 768px) {
    .scroll-item {
        width: 200px;
        height: 200px;
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 8 - 30px * 8));
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(calc(-300px * 8 - 30px * 8));
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.activity-block:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.slider-nav {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    border: 2px solid var(--nature-blue);
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--nature-blue);
    transform: scale(1.2);
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 136, 163, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-button:hover {
    background: var(--nature-blue);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .activity-slider {
        padding: 20px;
    }

    .slider-button {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .slider-prev {
        left: 15px;
    }

    .slider-next {
        right: 15px;
    }

    .slider-nav {
        bottom: 30px;
    }

    .slider-dot {
        width: 12px;
        height: 12px;
    }
}

/* HOBIE Info Section */
.hobie-info {
    padding: 40px;
    background: rgba(0, 136, 163, 0.03);
    border-radius: 20px;
    margin: 0 60px;
}

.hobie-info h4 {
    color: var(--nature-blue);
    font-size: 1.4em;
    margin-bottom: 25px;
    text-align: center;
}

.hobie-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.feature-item h5 {
    color: var(--nature-blue);
    font-size: 1.2em;
    margin-bottom: 15px;
}

@media (max-width: 1200px) {
    .hobie-features {
        display: block;
    }
}

@media (max-width: 768px) {
    .hobie-info {
        padding: 0;
        margin: 0 25px;
    }

    .hobie-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hobie-description p {
        font-size: 1em;
        text-align: left;
    }

    .feature-item {
        padding: 20px;
    }

    .feature-item h5 {
        font-size: 1.1em;
    }
}

/* Wakasagi Info Section */
.wakasagi-info {
    padding: 40px;
    background: rgba(169, 135, 67, 0.03);
    border-radius: 20px;
    margin: 0 60px;
}

.wakasagi-info h4 {
    color: var(--secondary-color);
    font-size: 1.4em;
    margin-bottom: 25px;
    text-align: center;
}

.wakasagi-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 1200px) {
    .wakasagi-features {
        display: block;
    }
    .feature-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .wakasagi-info {
        padding: 25px;
        margin: 0 25px;
    }

    .wakasagi-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .wakasagi-description p {
        font-size: 1em;
        text-align: left;
    }

    .wakasagi-info .feature-item {
        padding: 20px;
    }

    .wakasagi-info .feature-item h5 {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .activities-grid {
        max-width: 95%;  /* 100% から 95% に変更 */
        padding: 0 1rem;  /* パディングを追加 */
        margin: 1rem auto;
    }
}

@media (max-width: 768px) {
    .activities-grid {
        width: 95%;
        gap: 40px;
        margin: 40px auto;
    }

    .activity-slider {
        padding: 20px;
    }
}

.schedule-table th,
.schedule-table td {
    padding: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.schedule-table th {
    background: #f7fafc;
    color: #2c5282;
}

.schedule-table tr:last-child td {
    border-bottom: none;
}

.schedule {
    margin-bottom: 25px;
}

.schedule h4 {
    font-size: 1.2em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.schedule ul {
    list-style: none;
    padding: 0;
    border-left: 3px solid rgba(0, 136, 163, 0.2);
}

.schedule li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.schedule li::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 6px;
    width: 15px;
    height: 15px;
    background-color: white;
    border: 3px solid var(--nature-blue);
    border-radius: 50%;
}

.time {
    font-weight: bold;
    color: var(--nature-blue);
    margin-right: 15px;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .plan-details {
        padding: 25px;
    }
} 

.food-swiper .scroll-container {
    animation: scrollLeft 40s linear infinite;
}


@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 8 - 30px * 8));
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(calc(-300px * 8 - 30px * 8));
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Activity Slider Styles */
.activity-slider {
    position: relative;
    overflow: hidden;
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

@media (max-width: 768px) {
    .activity-slider {
        padding: 20px;
    }

    .slider-button {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .slider-prev {
        left: 15px;
    }

    .slider-next {
        right: 15px;
    }

    .slider-nav {
        bottom: 30px;
    }

    .slider-dot {
        width: 12px;
        height: 12px;
    }
}

/* Activity Notes Styles */
.activity-notes {
    background-color: var(--bg-color-2); /* Light Yellow */
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid var(--accent-color);
    margin: 5rem;
}

.activity-notes h4 {
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 20px;
}

.activity-notes ul {
    padding-left: 20px;
    margin: 0;
}

.activity-notes ul li {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 1600px) {
    .activity-notes {
        max-width: 1200px;
        margin: 0 40px 40px;
    }
}

@media (max-width: 1200px) {
    .activity-slider {
        padding: 30px;
    }

    .slider-button {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .slider-prev {
        left: 20px;
    }

    .slider-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .activity-notes {
        margin: 0 25px 25px;
        padding: 25px;
    }

    .activity-notes h4 {
        font-size: 1.2em;
        margin-bottom: 20px;
    }

    .activity-notes ul li {
        font-size: 0.9em;
    }

    .slider-button {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .slider-prev {
        left: 15px;
    }

    .slider-next {
        right: 15px;
    }

    .slider-nav {
        bottom: 30px;
    }

    .slider-dot {
        width: 12px;
        height: 12px;
    }
}

.wakasagi-info {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .wakasagi-info {
        padding: 25px;
        margin: 0 25px;
    }

    .wakasagi-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .wakasagi-description p {
        font-size: 1em;
        text-align: left;
    }

    .wakasagi-info .feature-item {
        padding: 20px;
    }

    .wakasagi-info .feature-item h5 {
        font-size: 1.1em;
    }
}

/* Workshop and Activity page specific styles */
.activities-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0;
    max-width: 100%;  /* 1000px から 1200px に変更 */
    margin: 0 auto;
}

.activity-slider {
    padding: 40px;
    background: rgba(0, 136, 163, 0.03);
}

@media (max-width: 768px) {
    .activities-grid {
        width: 95%;
        gap: 40px;
        margin: 40px auto;
        padding: 0 15px;
    }

    .activity-block {
        padding: 0;
        width: 100%;  /* 幅を100%に設定 */
        margin-bottom: 1.5rem;
        border-radius: 8px;
    }

    .activity-slider {
        padding: 20px;
    }
}
/* Card Headers */
.info-card h3 {
    color: #2c5282;
    font-size: 1.4em;
    margin-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

/* List Styles */
.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.info-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5282;
}

.schedule-table th,
.schedule-table td {
    padding: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.schedule-table th {
    background: #f7fafc;
    color: #2c5282;
}

.schedule-table tr:last-child td {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-grid, .info-grid-2 {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }

    .info-card:nth-child(n) {
        grid-column: span 1;
    }

    .info-card:nth-child(3) {
        grid-template-columns: 1fr;
    }
}

.model-plan-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    padding: 0;
    margin-bottom: 60px;
}

.schedule {
    margin-bottom: 25px;
}

.schedule h4 {
    font-size: 1.2em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.schedule ul {
    list-style: none;
    padding: 0;
    border-left: 3px solid rgba(0, 136, 163, 0.2);
}

.schedule li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.schedule li::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 6px;
    width: 15px;
    height: 15px;
    background-color: white;
    border: 3px solid var(--nature-blue);
    border-radius: 50%;
}

.time {
    font-weight: bold;
    color: var(--nature-blue);
    margin-right: 15px;
    font-size: 1.1em;
}

@media (max-width: 768px) {

    .plan-block h2 {
        font-size: 1.5em;
    }

    .plan-images {
        grid-template-columns: 1fr;
    }
} 

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 8 - 30px * 8));
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(calc(-300px * 8 - 30px * 8));
    }
    100% {
        transform: translateX(0);
    }
}

.plan-images {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.plan-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: #1E40AF;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(30, 64, 175, 0.2);
}

.btn:hover {
    background: #1E3A8A;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(30, 64, 175, 0.3);
}

@media (max-width: 768px) {
    .btn {
        width: 100%;
        padding: 12px 20px;
    }
}

/* News Section Styles */
.section.bg-light-red {
    background: linear-gradient(135deg, rgba(155, 34, 38, 0.05), rgba(238, 155, 0, 0.05));
    padding: 80px 20px;
    position: relative;
    margin: 60px 0;
}

.section.bg-light-red h2 {
    margin-bottom: 50px;
}

.news-list {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.news-link {
    text-decoration: none;
}

.news-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px 30px;
    margin-bottom: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.news-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.news-card:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.news-card:hover::after {
    opacity: 0.03;
}

.news-header {
    align-items: flex-start;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.news-header time {
    min-width: 100px;
    font-size: 0.95em;
    color: var(--primary-color);
    font-weight: 600;
    padding-top: 2px;
    position: relative;
    letter-spacing: 0.5px;
}

.news-header time::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.news-header h3 {
    margin: 0;
    margin-top: 10px;
    font-size: 1.1em;
    line-height: 1.6;
    font-weight: 500;
    flex: 1;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .news-header h1 {
        font-size: 2.5em;
        margin-bottom: 20px;
    }

    .news-header p {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .news-section-more {
        margin-top: 35px;
    }

    .news-section-more .cta-button {
        padding: 14px 32px;
        font-size: 1em;
        letter-spacing: 0.3px;
        max-width: 300px;
    }
    
    .news-section-more .cta-button:hover {
        transform: translateY(-2px) scale(1.01);
    }
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-description {
    text-align: center;
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    padding: 40px;
    box-sizing: border-box;
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2em;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 2em;
    cursor: pointer;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
        padding: 30px 0;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
        padding: 20px 0;
    }

    .lightbox {
        padding: 20px;
    }

    .lightbox-nav {
        font-size: 1.5em;
        padding: 15px;
    }

    .lightbox-close {
        width: 35px;
        height: 35px;
        font-size: 1.5em;
    }
}

/* SNS Section Styles in Gallery */
.highlight-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 40px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-box h3 {
    color: var(--nature-blue);
    font-size: 1.8em;
    margin-bottom: 20px;
}

.highlight-box p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
}

.highlight-box .cta-button {
    font-size: 1.1em;
    margin-top: 20px;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    background-size: 200% 200%;
    animation: gradientBG 3s ease infinite;
}

.highlight-box .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@media (max-width: 768px) {
    .highlight-box {
        padding: 30px 20px;
        margin: 30px 0;
    }

    .highlight-box h3 {
        font-size: 1.1em;
    }

    .highlight-box p {
        font-size: 1em;
    }

    .highlight-box .cta-button {
        padding: 12px 30px;
        font-size: 1em;
        width: 100%;
        box-sizing: border-box;
    }
}

/* News Section Styles */
.announcement-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 25px;
    margin: 20px auto;
    max-width: 800px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.announcement-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.announcement-item h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.announcement-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.announcement-item p {
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-size: 1.1em;
}

.announcement-item.important {
    background: linear-gradient(135deg, rgba(255, 245, 245, 0.95), rgba(255, 235, 235, 0.95));
    border: 2px solid rgba(220, 53, 69, 0.1);
}

.announcement-item.important h3 {
    color: #dc3545;
}

.announcement-item.important h3::after {
    background: linear-gradient(to right, #dc3545, #e66);
}

.announcement-item.important::before {
    content: '重要';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #dc3545;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
}

/* Animation */
.announcement-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.announcement-item:nth-child(1) { animation-delay: 0.1s; }
.announcement-item:nth-child(2) { animation-delay: 0.2s; }
.announcement-item:nth-child(3) { animation-delay: 0.3s; }

@media (max-width: 768px) {
    .announcement-item {
        margin: 15px;
        padding: 20px;
    }

    .announcement-item h3 {
        font-size: 1.2em;
        margin-bottom: 12px;
    }

    .announcement-item p {
        font-size: 1em;
    }

    .announcement-item.important::before {
        font-size: 0.7em;
        padding: 3px 10px;
    }
}

/* Vendor Carousel Styles */
.vendor-carousel {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(to right, rgba(44, 125, 134, 0.05), rgba(65, 153, 163, 0.05));
}

.vendor-carousel .swiper-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    overflow: hidden;
}

.vendor-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 600px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.vendor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.vendor-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.vendor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vendor-card:hover .vendor-image {
    transform: scale(1.05);
}

.vendor-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,1) 100%);
}

.vendor-header {
    margin-bottom: 20px;
}

.vendor-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.3;
}

.vendor-category {
    display: inline-block;
    padding: 6px 15px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 25px;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.vendor-story {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-family: "Noto Serif JP", serif;
}

.vendor-details {
    background: rgba(44, 125, 134, 0.05);
    padding: 20px;
    border-radius: 15px;
    margin-top: auto;
}

.vendor-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #444;
    font-size: 0.95em;
}

.vendor-details i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.swiper-button-next,
.swiper-button-prev {
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    color: var(--primary-color);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: white;
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .vendor-card {
        height: auto;
        min-height: 550px;
    }

    .vendor-image-wrapper {
        height: 200px;
    }

    .vendor-content {
        padding: 20px;
    }

    .vendor-title {
        font-size: 1.5em;
    }

    .vendor-story {
        font-size: 1em;
        line-height: 1.6;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
} 

@media (max-width: 768px) {
    .activity-details {
        margin: 20px 0;
        background: transparent;
        box-shadow: none;
    }

    .activity-details table {
        border-spacing: 0;
    }

    .activity-details tr {
        display: block;
        margin-bottom: 20px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .activity-details th {
        display: block;
        width: 100%;
        border-radius: 0;
        padding: 15px 20px;
        box-sizing: border-box;
        text-align: center;
        background: var(--nature-blue);
        color: white;
        font-size: 1.1em;
        font-weight: 500;
        vertical-align: middle;
    }

    .activity-details td {
        display: block;
        width: 100%;
        border-radius: 0;
        padding: 20px;
        box-sizing: border-box;
        text-align: center;
        background: #f8f9fa;
        line-height: 1.0;
        font-size: 1.1em;
    }
}

.vendor-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.vendor-item {
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    font-weight: bold;
    color: var(--secondary-color);
    border: 1px solid var(--bg-color-2);
}

.vendor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    color: var(--primary-color);
}

.vendor-item.no-link {
    cursor: default;
    color: #aaa;
}

.vendor-item.no-link:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    animation: fadeIn 0.3s ease;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    text-align: center;
}

#modal-description {
    text-align: left;
    margin: 1rem 0;
    line-height: 1.7;
    color: #333;
}

.close-button {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
}

#modal-title {
    margin-top: 0;
    margin-bottom: 25px;
    color: var(--primary-color);
}

#modal-links a {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

#modal-links a:hover {
    background-color: var(--secondary-color);
}

#modal-links a + a {
    margin-left: 15px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Access Page Image Styles */
.access-info img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@media screen and (max-width: 768px) {
    .access-info h3 {
        font-size: 1.1em;
        text-align: center; 
    }
}

.access-info-address {
    text-align: left;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.facility-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
    display: flex; /* vertically align content */
    flex-direction: column; /* stack content vertically */
}

.facility-content {
    padding: 25px;
    display: flex; /* allow flexbox properties */
    flex-direction: column; /* stack content */
    flex-grow: 1; /* allow content to grow */
}

.facility-content h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3em;
}

.facility-info {
    margin-top: auto; /* push to bottom */
    padding-top: 1rem;
}

/* News Page */
.news-list-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}



.news-date {
    font-size: 0.9rem;
    color: #666;
    background-color: #f2f2f2;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    white-space: nowrap;
}


.news-title a {
    text-decoration: none;
    color: var(--nature-blue);
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: var(--vibrant-orange);
}

.read-more {
    display: inline-block;
    font-weight: bold;
    color: var(--vibrant-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--nature-green);
}

/* News Article Page */
.news-article-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.news-article-header {
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
}

.news-article-header .news-date {
    margin-bottom: 0.5rem;
    display: inline-block;
}

.news-article-body p {
    margin-bottom: 1.5rem;
}

.back-to-news {
    text-align: center;
    margin-top: 2rem;
}

.back-to-news a {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--nature-blue);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.news-title::after {
    background: none !important;
    margin: 0 !important;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .news-title {
        text-align: left !important;
    }

    .news-title a {
        font-size: 1rem;
    }
}

.ticket-notes-list {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

/* Activity Block Header */
.activity-block h3 {
    font-size: 1.5em;
    text-align: center;
    padding: 25px 20px;
    margin: 0;
    background-color: var(--nature-blue);
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

/* Activity Details Styles */
.activity-details {
    padding: 10px 70px;
    background-color: #fff;
}

.detail-item {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
}
.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    width: 120px;
    flex-shrink: 0;
}

.detail-value {
    flex-grow: 1;
    line-height: 1.6;
}

.detail-value a {
    color: #A98743;
    text-decoration: none;
}

.detail-value span {
    display: block;
    margin-bottom: 5px;
}
.detail-value span:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .activity-block h3 {
        font-size: 1em;
        padding: 20px 15px;
    }
    .activity-details, .activity-notes {
        padding: 15px 20px;
    }

    .detail-item {
        flex-direction: column;
    }
    .detail-label {
        margin-bottom: 10px;
        width: auto;
    }
}

/* Workshop Grid Styles */
.workshop-grid {
    display: grid;
    gap: 2rem;
    padding: 2rem 0;
    max-width: 1600px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .workshop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .workshop-grid {
        grid-template-columns: 1fr;
        max-width: 95%;
        padding: 0 1rem;
        margin: 1rem auto;
    }

    .workshop-grid .activity-block {
        width: 100%;
        margin-bottom: 1.5rem;
    }
}

/* Day-of Ticket Info Styles */
.advance-ticket-info {
    padding: 25px;
    background-color: var(--bg-color-2); /* Light Yellow */
    border-radius: 10px;
    border: 2px solid var(--accent-color);
    margin-bottom: 30px;
}

.day-of-ticket-info {
    padding: 25px;
    margin-top: 30px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.1);
}

.advance-ticket-info h4,
.day-of-ticket-info h4 {
    font-size: 1.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

.day-of-ticket-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: center;
}

.day-of-ticket-item .ticket-type {
    font-weight: bold;
    color: var(--text-color);
}

.day-of-ticket-item .price {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--text-color);
}

.day-of-ticket-item p {
    font-size: 1em;
    color: var(--text-color);
}

.day-of-ticket-item .price small {
    font-size: 0.5em;
    font-weight: normal;
}

.info-furusato {
    margin-top: 20px;
    font-weight: bold;
}

#modal-logo {
    display: block;
    max-width: 150px;
    max-height: 150px;
    margin: 0 auto 15px auto;
}

.email-link {
    color: var(--nature-blue);
    text-decoration: none;
}

.email-link:hover {
    color: var(--vibrant-orange);
}

.venue-map {
    width: 70%;
    height: auto;
}

@media (max-width: 1200px) {
    .venue-map {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .venue-map {
        width: 100%;
    }
}

.venue-map-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Utility classes for terms.html, inspired by Tailwind CSS */
main {
    padding: 2rem 1rem;
}

.bg-white {
    background-color: #ffffff;
}

.p-6 {
    padding: 1.5rem;
}

.md\:p-10 {
    padding: 2.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.shadow-lg {
    width: 80%;
    margin: 0 auto;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.space-y-6 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.border-b {
    border-bottom-width: 1px;
    border-color: #e5e7eb; /* Assuming gray-200 */
}

.pb-4 {
    padding-bottom: 1rem;
}

.last\:border-b-0:last-child {
    border-bottom-width: 0;
}

.last\:pb-0:last-child {
    padding-bottom: 0;
}

.w-full {
    width: 100%;
}

.text-lg {
    font-size: 1.125rem;
}

.font-semibold {
    font-weight: 600;
}

.text-gray-700 {
    color: var(--nature-blue);
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.text-gray-900 {
    color: #A98743;
}

.text-base {
    font-size: 1rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-gray-600 {
    color: #4b5563;
}

@media (min-width: 768px) {
    .md\:flex-row {
        flex-direction: row;
    }
    .md\:items-center {
        align-items: center;
    }
    .md\:w-1\/4 {
        width: 25%;
    }
    .md\:w-3\/4 {
        width: 75%;
    }
    .md\:mb-0 {
        margin-bottom: 0;
    }
}

.email-link-contact {
    color: #A98743;
    text-decoration: none;
}

.ticket-card-full-width .accommodation-plans {
    margin-bottom: 20px;
}

.plan-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.plan-table th, .plan-table td {
    border: 1px solid #ddd;
    padding: 12px 15px;
    text-align: left;
    vertical-align: middle;
}

.plan-table th {
    background-color: #f2f2f2;
    font-weight: bold;
    color: #333;
}

.ticket-card-full-width .purchase-button {
    margin-top: 20px;
    text-align: center;
}

.ticket-card-full-width .plan-details {
    margin-top: 25px;
    padding: 20px;
    background-color: rgba(0, 136, 163, 0.05); /* Light blue tint */
    border-radius: 8px;
    border-left: 4px solid var(--nature-blue);
    text-align: left;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.ticket-card-full-width .plan-details h5 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2em;
    color: var(--nature-blue);
    font-weight: bold;
}

.ticket-card-full-width .plan-details ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.ticket-card-full-width .plan-details li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1em;
}

.ticket-card-full-width .plan-details li:last-child {
    margin-bottom: 0;
}

.ticket-card-full-width .plan-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--nature-blue);
    font-weight: bold;
    font-size: 1.2em;
    top: -2px;
}

@media (max-width: 768px) {
    .plan-table, .plan-table tbody, .plan-table tr, .plan-table td, .plan-table th {
        display: block;
    }

    .plan-table thead {
        display: none;
    }

    .plan-table tr {
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    .plan-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: none;
        border-bottom: 1px solid #eee;
        padding: 12px 15px;
        position: relative;
    }
    
    .plan-table tr td:last-child {
        border-bottom: none;
    }

    .plan-table td::before {
        content: attr(data-ja-label);
        font-weight: bold;
        width: auto;
        margin-right: 1em;
        color: #555;
    }
    
    html[lang="en"] .plan-table td::before {
        content: attr(data-en-label);
    }

    .plan-table {
        font-size: 14px; /* スマートフォン表示用にフォントサイズを調整 */
    }

    .plan-table th, .plan-table td {
        padding: 10px 8px; /* パディングを調整 */
        word-break: break-all; /* 長い単語でも折り返すようにする */
    }

    .ticket-card-full-width .purchase-button {
        margin-top: 15px;
    }
}


/* プライバシーポリシー & 利用規約 */
.terms-container {
    padding: 2rem;
}

/* Responsive styles for tables in privacy/terms */
@media (max-width: 768px) {
    .terms-content .plan-table, 
    .terms-content .plan-table tbody, 
    .terms-content .plan-table tr, 
    .terms-content .plan-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .terms-content .plan-table thead {
        display: none;
    }

    .terms-content .plan-table tr {
        margin-bottom: 1rem;
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
    }

    .terms-content .plan-table td {
        border: none;
        padding: 0.75rem 1rem;
        text-align: left;
    }

    .terms-content .plan-table tr td:first-child {
        background-color: #f2f2f2;
        font-weight: bold;
        color: #333;
        border-bottom: 1px solid #ddd;
    }
}

.accommodation-plan-image {
    width: 90%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin: 15px auto 0;
    display: block;
}

/* --- Marketing-Focused Ticket Section --- */
#ticket-info {
    background-color: #fdf8f0;
    padding: 50px 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    text-align: center;
  }
  
  .ticket-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 32px;
    padding: 22px;
    background: #fff;
    border-radius: 12px;
    border: 2px solid #e7d1b3;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  }
  .ticket-intro h3 {
    font-size: 1.6rem;
    color: #c0392b;
    margin: 0 0 8px;
  }
  .ticket-intro p {
    margin: 0;
    color: #555;
  }
  
  /* Tickets */
  .promo-ticket-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 36px;
  }
  @media (min-width: 992px) {
    .promo-ticket-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .promo-ticket-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .promo-ticket-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  }
  
  .promo-ticket-card.night-theme {
    background-color: #2c3e50;
    color: #ecf0f1;
    border-color: #34495e;
  }
  .promo-ticket-card.night-theme h4,
  .promo-ticket-card.night-theme p,
  .promo-ticket-card.night-theme li {
    color: #ecf0f1;
  }
  
  .promo-ticket-content {
    padding: 26px 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  @media (max-width: 768px) {
    .promo-ticket-content {
        align-items: center;
        padding: 20px;
    }

    .promo-ticket-content h4 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .promo-ticket-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 12px 0;
        text-align: center;
    }

    .promo-ticket-content .price {
        font-size: 2rem;
        margin: 15px 0;
    }

    .promo-ticket-content .price small {
        font-size: 0.9rem;
    }

    .promo-ticket-content .price-note {
        font-size: 0.9rem;
        margin: 8px 0;
    }

    .ticket-benefits {
        padding: 12px 0 0;
        gap: 12px;
    }

    .ticket-benefits li {
        font-size: 0.8rem;
        justify-content: center;
    }

    .ticket-benefits .benefit-icon {
        width: 18px;
        height: 18px;
    }

    .promo-ticket-grid {
        gap: 30px;
        margin-bottom: 25px;
    }

    .promo-ticket-card {
        max-width: 100%;
    }
  }
  

  .promo-ticket-content h4 {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 700;
  }
  .promo-ticket-content .price {
    font-size: 2.3rem;
    font-weight: 800;
    color: #333;
  }
  .promo-ticket-card.night-theme .price {
    color: #f39c12;
  }
  .promo-ticket-content .price small {
    font-size: 1rem;
    font-weight: 400;
  }
  .promo-ticket-content .price-note {
    font-size: 0.95rem;
    font-weight: 700;
    color: #e67e22;
  }
  
  .ticket-benefits {
    list-style: none;
    padding: 16px 0 0;
    margin: 0;
    border-top: 1px solid #eee;
    display: grid;
    gap: 10px;
  }
  .promo-ticket-card.night-theme .ticket-benefits {
    border-top: 1px solid #4a637c;
  }
  .ticket-benefits li {
    display: flex;
    align-items: center;
    font-weight: 500;
  }
  .ticket-benefits .benefit-icon {
    width: 22px;
    height: 22px;
    margin-right: 10px;
    fill: #27ae60;
  }
  .promo-ticket-card.night-theme .benefit-icon {
    fill: #f1c40f;
  }
  
  /* Accommodation promo */
  #accommodation-promo {
    max-width: 1100px;
    margin: 0 auto 36px;
  }
  .accommodation-promo-container {
    display: grid;
    gap: 16px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    padding: 16px;
  }
  @media (min-width: 992px) {
    .accommodation-promo-container {
      grid-template-columns: 48% 1fr;
      align-items: center;
    }
  }
  .accommodation-promo-container img {
    width: 100%;
  }
  .accommodation-promo-image {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 16/10;
  }
  .accommodation-promo-content h5 {
    margin: 0 0 8px;
    font-size: 1.5rem;
    color: #c0392b;
  }
  .accommodation-promo-content p {
    margin: 0 0 14px;
    color: #555;
  }
  
  /* Same-day + Notes */
  .notice-section {
    max-width: 1200px;
    margin: 0 auto;
  }
  .notice-section .info-furusato {
    background-color: #e8f5e9;
    border: 1px solid #a5d6a7;
    color: #2e7d32;
    font-weight: 700;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    margin: 14px 0 20px;
  }
  .notice-section .notice {
    background: #fffbe6; /* soft yellow */
    border: 1px solid #f0e68c;
    border-radius: 10px;
    padding: 18px;
  }
  .notice-section .notice h4 {
    margin: 0 0 10px;
    font-size: 1.3rem;
  }
  .notice-section .ticket-notes-list .warning {
    color: #d32f2f;
    font-weight: 800;
  }

/* ==== Accommodation Rich UI Enhancements ==== */
/* Embedded accommodation subtitle under ticket-info */
#ticket-info .section-subtitle {
  text-align: center;
  margin: -10px auto 20px;
  max-width: 900px;
}

/* Elevate room cards with hover and light sweep */
.room-card {
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.room-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 120px at 50% 0%, rgba(255,255,255,0.12), transparent 40%);
  pointer-events: none;
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
}

/* Limited badge ribbon */
.room-ribbon {
  position: absolute;
  top: 12px;
  left: -8px;
  background: linear-gradient(45deg, #c0392b, #e67e22);
  color: #fff;
  padding: 6px 14px;
  font-size: .85rem;
  font-weight: 700;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 4px 10px rgba(0,0,0,.12);
  z-index: 1;
}

/* Feature chips */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 4px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-size: .85rem;
  border: 1px solid #e2e8f0;
}

/* Amenities box subtle decoration */
.amenities-box {
  position: relative;
  overflow: hidden;
}
.amenities-box::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(192,57,43,.12), transparent 60%);
  border-radius: 50%;
}



/* Cards */
.room-cards {
  display: grid;
  gap: 24px;
}

.room-cards article {
    padding: 30px;
}

@media screen and (max-width: 768px) {
    .room-cards article {
        padding: 20px;
        padding-top: 50px;
    }
}

.room-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  overflow: hidden;
  align-items: center;
}
.accommodation-embedded {
  max-width: 1100px;
  margin: 36px auto 0;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  text-align: left;
}

.accommodation-embedded h3 {
  text-align: center;
  margin: 0 0 10px;
  font-size: 1.6rem;
}
.room-card.reverse {
  direction: rtl;
}
.room-card.reverse > * {
  direction: ltr;
}
@media (min-width: 992px) {
  .room-card {
    grid-template-columns: 48% 1fr;
  }
}

.room-card-media {
    padding: 30px;
}

.room-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
  display: block;
}

/* media grid for multiple images per room */
.room-media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 640px) {
  .room-media-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.media-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}
.media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
  display: block;
  transition: transform .4s ease;
}
.media-item:hover img {
  transform: scale(1.03);
}
.media-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .8rem;
  letter-spacing: .02em;
  backdrop-filter: blur(2px);
}
.media-caption {
  margin: 6px 4px 0;
  padding: 6px 8px;
  background: rgba(255,255,255,0.85);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: .9rem;
  color: #374151;
}
.accommodation-embedded .room-card { position: relative; }
.accommodation-embedded .room-cards article:nth-of-type(1) {
  box-shadow: 0 12px 36px rgba(0,136,163,0.15);
}
.accommodation-embedded .room-cards article:nth-of-type(1)::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #0088A3, #55B1BB);
}
.accommodation-embedded .room-cards article:nth-of-type(1) .media-badge {
  background: rgba(0,136,163,0.8);
}
.accommodation-embedded .room-cards article:nth-of-type(2) {
  box-shadow: 0 12px 36px rgba(192,57,43,0.15);
}
.accommodation-embedded .room-cards article:nth-of-type(2)::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #c0392b, #e67e22);
}
.accommodation-embedded .room-cards article:nth-of-type(2) .media-badge {
  background: rgba(192,57,43,0.85);
}

.accommodation-embedded .room-card-media { padding: 0; }
.accommodation-embedded .room-media-grid { gap: 0; }
.accommodation-embedded .media-item { border-radius: 0; box-shadow: none; }
.accommodation-embedded .media-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.18));
  pointer-events: none;
}
.accommodation-embedded .media-caption {
  margin: 8px 10px 10px;
  background: rgba(255,255,255,0.92);
  border-color: #e6e6e6;
}

.accommodation-embedded h3 { font-weight: 800; letter-spacing: .02em; }
.accommodation-embedded .room-card-body h4 { font-size: 1.2rem; }
.accommodation-embedded .room-lead { color: #444; font-size: 1.02rem; }

.accommodation-embedded .chip { background: #fff; border: 1px solid #e5e7eb; }
.accommodation-embedded .room-cards article:nth-of-type(1) .chip { border-color: rgba(0,136,163,0.3); }
.accommodation-embedded .room-cards article:nth-of-type(2) .chip { border-color: rgba(192,57,43,0.3); }

.accommodation-embedded .room-card{ transition: transform .25s ease, box-shadow .25s ease; }
.accommodation-embedded .room-card:hover{ transform: translateY(-6px); }

/* Public Bath Section */
.public-bath-info {
  margin-top: 30px;
  padding: 25px;
  background: #f8f9fa;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  text-align: center;
}

.public-bath-info h4 {
  margin: 0 0 20px;
  font-size: 1.4em;
  color: var(--nature-blue);
}

.public-bath-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.public-bath-images img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.public-bath-images img:hover {
  transform: scale(1.02);
}

.public-bath-info p {
  margin: 0;
  font-size: 1.1em;
  color: #444;
}

@media (max-width: 768px) {
  .public-bath-images {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .public-bath-images img {
    height: 200px;
  }
  
  .public-bath-info {
    padding: 20px;
  }
  
  .public-bath-info h4 {
    font-size: 1.2em;
    margin-bottom: 15px;
  }
  
  .public-bath-info p {
    font-size: 1em;
  }
}
.room-card-body .room-lead {
  color: #555;
  margin: 6px 0 12px;
  line-height: 1.7;
}
.room-card-body {
  padding: 18px 20px;
}
.room-card-body h4 {
  margin: 0 0 10px;
  font-size: 1.6rem;
  color: #c0392b;
}

/* Specs */
.room-specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 8px;
}
@media (min-width: 640px) {
  .room-specs-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.room-spec h5 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
}
.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #444;
}
.spec-list li + li {
  margin-top: 6px;
}

/* Amenities */
.amenities-box {
  margin-top: 26px;
  padding: 18px;
  background: #f8f9fa;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
}
.amenities-box h4 {
  text-align: center;
  margin: 0 0 8px;
}
.amenities-box p {
  text-align: center;
  color: #555;
  margin: 0 0 16px;
}
.amenities-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .amenities-columns {
    grid-template-columns: 1fr 1fr;
  }
}
.amenities-columns h5 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  border-bottom: 2px solid #e5e5e5;
  padding-bottom: 6px;
}
.amenities-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 16px;
  color: #444;
}
.amenities-list li {
  break-inside: avoid;
  margin-bottom: 6px;
}

/* CTA */
.accommodation-cta {
  text-align: center;
  margin-top: 18px;
}
.accommodation-cta .cta-button {
  color: #fff !important;
  padding: 12px 18px;
  border-radius: 6px;
  display: inline-block;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.accommodation-cta .cta-button:hover {
  box-shadow: 0 8px 18px rgba(192,57,43,.25);
  transform: translateY(-1px);
}
