@charset "UTF-8";

/* ===========================
   Landing Page Styles
   だるまや呉服店 - 下層ページ共通CSS
   =========================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Shippori+Mincho:wght@400;500;600;700&display=swap');

/* CSS Variables (inherit from main) */
:root {
    --color-base: #FDFBF7;
    --color-accent: #8E2323;
    --color-accent-light: #B84444;
    --color-navy: #1A2F4A;
    --color-navy-light: #2A4A6A;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-gold: #C9A227;
    --color-gold-light: #E5C55A;
    --font-heading: 'Shippori Mincho', serif;
    --font-body: 'Noto Sans JP', sans-serif;
    --transition-base: all 0.3s ease;
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.8;
    color: var(--color-text);
    background-color: var(--color-base);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--color-accent-light);
}

/* ===========================
   LP Top Bar
   =========================== */
.lp-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 12px 0;
    transition: var(--transition-base);
}

.lp-topbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lp-topbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-navy);
}

.lp-topbar-logo img {
    height: 40px;
    width: auto;
}

.lp-topbar-logo span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
}

.lp-topbar-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-text);
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid #ddd;
    transition: var(--transition-base);
}

.lp-topbar-back:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
    background: rgba(142, 35, 35, 0.05);
}

.lp-topbar-back::before {
    content: '←';
}

/* ===========================
   LP Hero Section
   =========================== */
.lp-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.lp-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.lp-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.lp-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(26, 47, 74, 0.3) 0%,
            rgba(26, 47, 74, 0.5) 50%,
            rgba(26, 47, 74, 0.7) 100%);
}

.lp-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.lp-hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.lp-hero-badge.campaign {
    background: rgba(142, 35, 35, 0.8);
    backdrop-filter: blur(10px);
}

.lp-hero-badge.info {
    background: rgba(201, 162, 39, 0.8);
    backdrop-filter: blur(10px);
}

.lp-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    line-height: 1.4;
}

.lp-hero-content .lp-hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.3rem);
    opacity: 0.95;
    line-height: 1.9;
    max-width: 700px;
    margin: 0 auto 35px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.lp-hero-period {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lp-hero-period::before {
    content: '📅';
}

/* ===========================
   LP Content Sections
   =========================== */
.lp-section {
    padding: 80px 0;
}

.lp-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lp-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.lp-section-title h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--color-navy);
    display: inline-block;
    padding-bottom: 18px;
    position: relative;
    line-height: 1.4;
}

.lp-section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
}

.lp-section-title p {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-top: 15px;
}

.lp-section.alt-bg {
    background: linear-gradient(180deg, #f8f6f2 0%, var(--color-base) 100%);
}

/* Feature Grid */
.lp-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lp-feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.lp-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
}

.lp-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.lp-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-base), white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.lp-feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-navy);
    margin-bottom: 12px;
    line-height: 1.4;
}

.lp-feature-card p {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* Detail Block (image + text) */
.lp-detail-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.lp-detail-block:last-child {
    margin-bottom: 0;
}

.lp-detail-block.reverse {
    direction: rtl;
}

.lp-detail-block.reverse>* {
    direction: ltr;
}

.lp-detail-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.lp-detail-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.lp-detail-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-navy);
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    line-height: 1.4;
}

.lp-detail-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--color-accent);
    border-radius: 2px;
}

.lp-detail-text p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.9;
    margin-bottom: 20px;
}

/* Price / Plan Table */
.lp-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.lp-plan-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: var(--transition-base);
}

.lp-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.lp-plan-header {
    background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
    color: white;
    padding: 25px;
    text-align: center;
}

.lp-plan-header.accent {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
}

.lp-plan-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: white;
    margin-bottom: 8px;
}

.lp-plan-header .lp-plan-price {
    font-size: 0.95rem;
    opacity: 0.9;
}

.lp-plan-body {
    padding: 30px 25px;
}

.lp-plan-body ul {
    list-style: none;
}

.lp-plan-body li {
    padding: 10px 0;
    font-size: 0.92rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f0ede8;
}

.lp-plan-body li:last-child {
    border-bottom: none;
}

.lp-plan-body li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--color-gold-light);
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ===========================
   LP CTA Section
   =========================== */
.lp-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-accent), var(--color-navy));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

.lp-cta .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.lp-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: white;
    margin-bottom: 20px;
    line-height: 1.5;
}

.lp-cta p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 35px;
    line-height: 1.8;
}

.lp-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    text-decoration: none;
}

.lp-btn-white {
    background: white;
    color: var(--color-accent);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.lp-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    color: var(--color-accent);
}

.lp-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.lp-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
}

/* ===========================
   LP Footer (simple)
   =========================== */
.lp-footer {
    background: var(--color-navy);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.lp-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lp-footer p {
    font-size: 0.85rem;
    opacity: 0.6;
}

.lp-footer a {
    color: rgba(255, 255, 255, 0.8);
}

.lp-footer a:hover {
    color: white;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
    .lp-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-detail-block {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .lp-hero {
        min-height: 60vh;
        padding-top: 60px;
    }

    .lp-hero-content {
        padding: 40px 16px;
    }

    .lp-hero-content h1 {
        font-size: 1.5rem;
    }

    .lp-hero-content .lp-hero-subtitle {
        font-size: 0.95rem;
    }

    .lp-hero-period {
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    .lp-topbar .container {
        padding: 0 16px;
    }

    .lp-topbar-logo img {
        height: 32px;
    }

    .lp-topbar-logo span {
        font-size: 0.95rem;
    }

    .lp-topbar-back {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .lp-section {
        padding: 50px 0;
    }

    .lp-section .container {
        padding: 0 16px;
    }

    .lp-section-title {
        margin-bottom: 30px;
    }

    .lp-feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lp-feature-card {
        padding: 30px 24px;
    }

    .lp-feature-card:hover {
        transform: none;
    }

    .lp-feature-icon {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }

    .lp-detail-block {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .lp-detail-block.reverse {
        direction: ltr;
    }

    .lp-detail-image img {
        height: 220px;
    }

    .lp-detail-text h3 {
        font-size: 1.25rem;
    }

    .lp-plan-grid {
        grid-template-columns: 1fr;
    }

    .lp-cta {
        padding: 50px 0;
    }

    .lp-cta h2 {
        font-size: 1.3rem;
    }

    .lp-cta p {
        font-size: 0.92rem;
    }

    .lp-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .lp-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 14px 30px;
    }
}

/* ===========================
   Summer Campaign Specific Styles
   =========================== */
.summer-theme {
    --color-summer-blue: #2A4A6A;
    --color-summer-aqua: #E0F2F1;
    --color-summer-ice: #F0FBFF;
}

.lp-hero.summer {
    background-color: #f0f8ff; /* 念のための背景色（画像が読み込まれるまでの待機色） */
}

.lp-hero.summer .lp-hero-bg {
    z-index: 0; /* 画像コンテナを前面へ */
}

.lp-hero.summer .lp-hero-content {
    z-index: 1; /* コンテンツはさらに前面へ */
}

.lp-hero.summer .lp-hero-bg img {
    filter: brightness(0.8) saturate(1.1); /* 少し暗くして白い文字を際立たせる */
    display: block;
}

.lp-hero.summer .lp-hero-badge.campaign {
    background: rgba(42, 74, 106, 0.85); /* Navy blue for summer contrast */
}

.lp-hero.summer .lp-hero-content h1,
.lp-hero.summer .lp-hero-content .lp-hero-subtitle {
    color: #ffffff; /* 純白に変更 */
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6), 0 2px 10px rgba(0, 0, 0, 0.4); /* 影を強くして視認性を確保 */
}

.lp-hero.summer .lp-hero-period {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}


/* Gift Card Style */
.lp-gift-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 20px 50px rgba(42, 74, 106, 0.1);
    margin: 40px 0;
    border: 1px solid var(--color-summer-aqua);
}

.lp-gift-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.lp-gift-text h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-navy);
    margin-bottom: 15px;
}

.lp-gift-text .gift-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--color-gold);
    color: white;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.lp-gift-text p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.lp-highlight-box {
    background: var(--color-summer-aqua);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 30px 0;
}

.lp-highlight-box h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.lp-highlight-box p {
    font-weight: 600;
    color: var(--color-navy);
}

@media (max-width: 768px) {
    .lp-gift-card {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 24px;
    }
}

/* ===========================
   Fabric Festival Specific Styles
   =========================== */
.festival-theme {
    --color-festival-red: #D32F2F;
    --color-festival-gold: #FFC107;
    --color-festival-bg: #FFF8E1;
    --color-festival-navy: #1A2F4A;
}

.lp-hero.festival {
    background-color: var(--color-festival-navy);
}

.lp-hero.festival .lp-hero-bg {
    z-index: 0;
}

.lp-hero.festival .lp-hero-content {
    z-index: 1;
}

.lp-hero.festival .lp-hero-bg img {
    filter: brightness(0.85) saturate(1.2);
    display: block;
}

.lp-hero.festival .lp-hero-badge.campaign {
    background: var(--color-festival-red);
    color: white;
    border: 2px solid var(--color-festival-gold);
}

.lp-hero.festival .lp-hero-content h1,
.lp-hero.festival .lp-hero-content .lp-hero-subtitle {
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 5px rgba(0, 0, 0, 0.5);
}

.lp-hero.festival .lp-hero-period {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-festival-red);
    border: 2px solid var(--color-festival-gold);
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Category Cards for Festival */
.festival-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.festival-category-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-base);
    border-top: 5px solid var(--color-festival-red);
}

.festival-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.festival-category-image {
    height: 240px;
    width: 100%;
}

.festival-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.festival-category-content {
    padding: 25px;
    text-align: center;
}

.festival-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--color-festival-gold);
    color: var(--color-festival-navy);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.festival-category-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-festival-red);
    margin-bottom: 12px;
}

.festival-category-content p {
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===========================
   Yukata Sale Specific Styles
   =========================== */
.yukata-theme {
    --color-yukata-navy: #0F2027;
    --color-yukata-blue: #203A43;
    --color-yukata-cyan: #2C5364;
    --color-yukata-gold: #D4AF37;
    --color-yukata-bg: #F4F7F6;
    background-color: var(--color-yukata-bg);
}

.lp-hero.yukata {
    background-color: var(--color-yukata-navy);
}

.lp-hero.yukata .lp-hero-bg img {
    filter: brightness(0.7) contrast(1.05) saturate(1.1);
}

.lp-hero.yukata .lp-hero-badge.campaign {
    background: linear-gradient(135deg, #E94E77, #D4AF37);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(233, 78, 119, 0.4);
}

.lp-hero.yukata .lp-hero-content h1,
.lp-hero.yukata .lp-hero-content .lp-hero-subtitle {
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7), 0 2px 5px rgba(0, 0, 0, 0.5);
}

.lp-hero.yukata .lp-hero-period {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

/* Instagram Special Promo Box */
.yukata-instagram-box {
    background: linear-gradient(135deg, #FFEBEB 0%, #FFF5E6 100%);
    border: 2px dashed #E94E77;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(233, 78, 119, 0.08);
}

.yukata-instagram-box::before {
    content: '🎉 SPECIAL OFFER 🎉';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 6px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 30px;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 10px rgba(220, 39, 67, 0.3);
}

.yukata-instagram-box h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: #bc1888;
    margin-top: 15px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.yukata-instagram-box .highlight-discount {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: #dc2743;
    display: inline-block;
    margin: 10px 0;
    text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff;
}

.yukata-instagram-box p {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
}

.yukata-instagram-box .ig-action-hint {
    background: white;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: bold;
    color: #bc1888;
    border: 1px solid rgba(188, 24, 136, 0.2);
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Yukata Gallery Styles */
.yukata-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.yukata-gallery-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
    border: 1px solid #f0ede8;
}

.yukata-gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.yukata-gallery-img {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.yukata-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.yukata-gallery-card:hover .yukata-gallery-img img {
    transform: scale(1.05);
}

.yukata-gallery-desc {
    padding: 20px;
    text-align: center;
    background: #fff;
    border-top: 1px solid #f0ede8;
}

.yukata-gallery-desc p {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-navy);
    margin: 0;
}

/* Schedule Section Styles */
.yukata-schedule-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.yukata-schedule-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 10px;
    border: 1px solid #e0f2f1;
}

.yukata-schedule-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.yukata-schedule-list {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid #f0ede8;
}

.yukata-schedule-list ul {
    list-style: none;
}

.yukata-schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed #e0e0e0;
}

.yukata-schedule-item:last-child {
    border-bottom: none;
}

.yukata-event-name {
    font-weight: 700;
    color: var(--color-navy);
    display: flex;
    align-items: center;
    gap: 10px;
}

.yukata-event-name::before {
    content: '🏮';
}

.yukata-event-date {
    font-size: 0.95rem;
    color: #e53935;
    background: #ffebee;
    padding: 4px 12px;
    border-radius: 30px;
    font-weight: 600;
}

/* Specific Event Highlighting for Gion, Tenjin, etc. */
.yukata-event-name.major::before {
    content: '✨';
}
.yukata-event-date.major {
    color: #fff;
    background: linear-gradient(135deg, #ff9800, #f44336);
    box-shadow: 0 4px 10px rgba(244, 67, 54, 0.2);
}

@media (max-width: 1024px) {
    .yukata-gallery-img {
        height: 380px;
    }
    .yukata-schedule-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .yukata-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .yukata-gallery-img {
        height: 400px;
    }
    .yukata-instagram-box {
        padding: 30px 20px;
    }
    .yukata-schedule-list {
        padding: 20px;
    }
}
