/**
 * 有限会社京花園 - メディア・イベント装飾事業サイト
 * 花ギフトサイトのデザインシステムを継承した装飾事業向けスタイル
 */

/* ==========================================================================
   基本設定・カラーパレット（花ギフトサイトと共通）
   ========================================================================== */

:root {
    /* メインカラーパレット（継承） */
    --primary-white: #ffffff;
    --corporate-blue: #1a4d72;
    --accent-pink: #E91E63;
    --clean-gray: #f8fafc;
    --light-gray: #e0e7ff;
    --dark-gray: #64748b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    
    /* 装飾事業用追加カラー */
    --media-gold: #f59e0b;
    --stage-purple: #8b5cf6;
    --digital-cyan: #06b6d4;
    
    /* フォント設定 */
    --font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* スペーシング */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --border-radius: 15px;
    --box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* ==========================================================================
   基本レイアウト・リセット
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--primary-white);
    overflow-x: hidden;
}

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

/* ==========================================================================
   ヘッダーナビゲーション
   ========================================================================== */

.header-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--light-gray);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.company-logo .company-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--corporate-blue);
    margin: 0;
}

.company-logo .business-line {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--corporate-blue);
}

.nav-link.flower-link {
    background: linear-gradient(135deg, var(--accent-pink), #f48fb1);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.nav-link.flower-link:hover {
    color: white;
    transform: translateY(-2px);
}

/* ==========================================================================
   ヒーローセクション
   ========================================================================== */

.hero-section {
    background: linear-gradient(135deg, 
        var(--primary-white) 0%, 
        var(--clean-gray) 50%, 
        rgba(26, 77, 114, 0.05) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 77, 114, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--media-gold), #fbbf24);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.hero-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

.hero-title .highlight {
    color: var(--corporate-blue);
    position: relative;
}

.hero-title .color-accent {
    color: #06b6d4;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(6, 182, 212, 0.3);
}

.hero-title .colorful-accent {
    color: var(--accent-pink);
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(233, 30, 99, 0.3);
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--corporate-blue);
    display: block;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==========================================================================
   ボタンスタイル（花ギフトサイト継承）
   ========================================================================== */

.cta-button-primary {
    background: linear-gradient(135deg, var(--corporate-blue), #2563eb);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(26, 77, 114, 0.3);
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(26, 77, 114, 0.4);
}

.cta-button-secondary {
    background: white;
    color: var(--corporate-blue);
    border: 2px solid var(--corporate-blue);
    padding: 16px 34px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-button-secondary:hover {
    background: var(--corporate-blue);
    color: white;
    transform: translateY(-3px);
}

/* ==========================================================================
   セクション共通スタイル
   ========================================================================== */

.services-section,
.gallery-section,
.estimate-section,
.contact-section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-pink), #f48fb1);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.section-description {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==========================================================================
   サービスセクション
   ========================================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 80px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--corporate-blue), #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--accent-pink);
    font-size: 14px;
}

/* ==========================================================================
   ギャラリーセクション
   ========================================================================== */

.gallery-section {
    background: var(--clean-gray);
}

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

.gallery-item {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

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

.gallery-image {
    height: 200px;
    overflow: hidden;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--corporate-blue), var(--accent-pink));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.placeholder-image i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.gallery-info {
    padding: 25px;
}

.gallery-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.gallery-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==========================================================================
   お見積もりフォーム
   ========================================================================== */

.estimate-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-section {
    margin-bottom: 40px;
}

.form-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3 i {
    color: var(--corporate-blue);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 16px;
    font-family: var(--font-family);
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--corporate-blue);
    box-shadow: 0 0 0 3px rgba(26, 77, 114, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-actions {
    text-align: center;
    padding-top: 30px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--corporate-blue), #2563eb);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(26, 77, 114, 0.3);
    margin-bottom: 20px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(26, 77, 114, 0.4);
}

.form-note {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ==========================================================================
   お問い合わせセクション
   ========================================================================== */

.contact-section {
    background: var(--clean-gray);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.contact-method {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--corporate-blue), #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

.contact-method h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-value {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-value a {
    color: var(--corporate-blue);
    text-decoration: none;
}

.contact-value a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* 姉妹事業リンク */
.sister-business {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.business-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.business-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.business-info p {
    color: var(--text-light);
    font-size: 15px;
}

.business-cta {
    background: linear-gradient(135deg, var(--accent-pink), #f48fb1);
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.business-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}



/* ==========================================================================
   フッター
   ========================================================================== */

.site-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 20px;
}

.company-history {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ==========================================================================
   レスポンシブデザイン
   ========================================================================== */

@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .estimate-form-container {
        padding: 30px 20px;
    }
    
    .business-link {
        flex-direction: column;
        text-align: center;
    }


    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .service-card,
    .contact-method {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   ファイルアップロード機能
   ========================================================================== */

.section-note {
    background: #f0f9ff;
    border: 1px solid #e0f2fe;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 25px;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

.file-upload-area {
    border: 2px dashed var(--light-gray);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    background: #fafbfc;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 25px;
}

.file-upload-area:hover {
    border-color: var(--corporate-blue);
    background: #f0f8ff;
}

.file-upload-area.dragover {
    border-color: var(--accent-pink);
    background: linear-gradient(135deg, #fce7f3, #f0f9ff);
    transform: scale(1.02);
}

.upload-content i {
    font-size: 48px;
    color: var(--corporate-blue);
    margin-bottom: 15px;
    display: block;
}

.upload-content h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.upload-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.upload-link {
    color: var(--accent-pink);
    font-weight: 600;
    cursor: pointer;
}

.upload-info {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

.upload-info p {
    font-size: 13px;
    color: var(--text-light);
    margin: 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.upload-info i {
    color: var(--corporate-blue);
}

.uploaded-files {
    background: white;
    border: 1px solid var(--light-gray);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
}

.uploaded-files h4 {
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-list {
    margin-bottom: 20px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: #f8fafc;
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.file-item:hover {
    background: #f0f8ff;
    border-color: var(--corporate-blue);
}

.file-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.file-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--corporate-blue), #2563eb);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.file-details h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.file-meta {
    font-size: 12px;
    color: var(--text-light);
}

.file-size {
    font-weight: 500;
    color: var(--accent-pink);
}

.remove-file-btn {
    background: #fee2e2;
    color: #dc2626;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.remove-file-btn:hover {
    background: #fecaca;
    transform: translateY(-1px);
}

.upload-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.add-more-btn,
.clear-all-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.add-more-btn {
    background: linear-gradient(135deg, var(--corporate-blue), #2563eb);
    color: white;
}

.add-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 77, 114, 0.3);
}

.clear-all-btn {
    background: #f3f4f6;
    color: var(--text-light);
    border: 1px solid var(--light-gray);
}

.clear-all-btn:hover {
    background: #fee2e2;
    color: #dc2626;
    border-color: #fca5a5;
}

/* ==========================================================================
   対応エリアセクション
   ========================================================================== */

.service-area-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
}

.service-area-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* エリア情報カード */
.area-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.area-card {
    background: white;
    padding: 35px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0,0,0,0.15);
}

.area-card.primary-area {
    border-left: 4px solid var(--corporate-blue);
}

.area-card.extended-area {
    border-left: 4px solid var(--media-gold);
}

.area-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
}

.primary-area .area-icon {
    background: linear-gradient(135deg, var(--corporate-blue), #2563eb);
}

.extended-area .area-icon {
    background: linear-gradient(135deg, var(--media-gold), #fbbf24);
}

.area-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.area-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 500;
}

.area-list {
    list-style: none;
    padding: 0;
}

.area-list li {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.area-list i {
    color: #4CAF50;
    font-size: 14px;
}



/* 注意事項 */
.area-notes {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--light-gray);
}

.note-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.5;
}

.note-item:last-child {
    margin-bottom: 0;
}

.note-item i {
    color: var(--corporate-blue);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .area-info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .area-card {
        padding: 25px 20px;
    }
    
    .area-notes {
        padding: 20px;
    }
}

/* ==========================================================================
   年間スケジュール・繁忙期カレンダー
   ========================================================================== */

.schedule-section {
    padding: var(--section-padding);
    background: var(--clean-gray);
}

.schedule-calendar {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.month-card {
    background: white;
    border-radius: 10px;
    padding: 15px 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid;
    text-align: center;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.month-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* 繁忙期レベル別カラー */
.month-card.relaxed {
    border-top-color: #4CAF50;
    background: linear-gradient(to bottom, #ffffff 0%, #f1f8e9 100%);
}

.month-card.moderate {
    border-top-color: var(--media-gold);
    background: linear-gradient(to bottom, #ffffff 0%, #fff8e1 100%);
}

.month-card.busy {
    border-top-color: #FF9800;
    background: linear-gradient(to bottom, #ffffff 0%, #fff3e0 100%);
}

.month-card.super-busy {
    border-top-color: #f44336;
    background: linear-gradient(to bottom, #ffffff 0%, #ffebee 100%);
}

.month-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 10px 0;
}

.busy-level {
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 8px;
}

.busy-level.relaxed {
    background: #4CAF50;
}

.busy-level.moderate {
    background: var(--media-gold);
}

.busy-level.busy {
    background: #FF9800;
}

.busy-level.super-busy {
    background: #f44336;
}

.month-card small {
    font-size: 10px;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.2;
}

/* 凡例・注意事項 */
.schedule-legend {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.legend-items {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-item.relaxed .legend-color {
    background: #4CAF50;
}

.legend-item.moderate .legend-color {
    background: var(--media-gold);
}

.legend-item.busy .legend-color {
    background: #FF9800;
}

.legend-item.super-busy .legend-color {
    background: #f44336;
}

.schedule-note {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dark);
    background: #f0f9ff;
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 3px solid var(--corporate-blue);
    flex-shrink: 0;
}

.schedule-note i {
    color: var(--media-gold);
    font-size: 16px;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .schedule-legend {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .legend-items {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .schedule-calendar {
        grid-template-columns: repeat(6, 1fr);
        gap: 8px;
    }
    
    .month-card {
        padding: 12px 6px;
        min-height: 100px;
    }
    
    .month-card h3 {
        font-size: 14px;
    }
    
    .busy-level {
        font-size: 9px;
        padding: 3px 6px;
    }
    
    .month-card small {
        font-size: 9px;
    }
    
    .legend-items {
        gap: 15px;
    }
    
    .legend-item {
        font-size: 12px;
    }
    
    .schedule-legend {
        padding: 15px;
    }
    
    .schedule-note {
        font-size: 13px;
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .schedule-calendar {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }
    
    .month-card {
        padding: 10px 4px;
        min-height: 85px;
    }
    
    .month-card h3 {
        font-size: 12px;
    }
    
    .busy-level {
        font-size: 8px;
        padding: 2px 4px;
        margin-bottom: 4px;
    }
    
    .month-card small {
        font-size: 8px;
    }
    
    .legend-items {
        flex-direction: column;
        gap: 10px;
    }
}

/* ==========================================================================
   アニメーション・インタラクション
   ========================================================================== */

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

.hero-content > * {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.2s; }
.hero-description { animation-delay: 0.3s; }
.hero-stats { animation-delay: 0.4s; }

/* ファイル送付チェックボックス - 大きく強調表示 */
.logo-data-section,
.file-data-section {
    margin-top: 20px;
}

.checkbox-group {
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffe6f0 0%, #fff0f6 100%);
    border: 2px solid #E91E63;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.15);
    transition: all 0.3s ease;
}

.checkbox-group:hover {
    box-shadow: 0 6px 25px rgba(233, 30, 99, 0.25);
    transform: translateY(-2px);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #1a4d72;
    line-height: 1.5;
    margin: 0;
}

.checkbox-label input[type="checkbox"] {
    width: 28px;
    height: 28px;
    margin: 0;
    cursor: pointer;
    accent-color: #E91E63;
    flex-shrink: 0;
    border: 2px solid #E91E63;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked {
    background-color: #E91E63;
    box-shadow: 0 0 15px rgba(233, 30, 99, 0.5);
}

.checkbox-label input[type="checkbox"]:hover {
    box-shadow: 0 0 10px rgba(233, 30, 99, 0.3);
    transform: scale(1.1);
}

.checkbox-label strong {
    color: #E91E63;
    font-size: 19px;
}

/* チェック済み時のアニメーション効果 */
.checkbox-group:has(input:checked) {
    background: linear-gradient(135deg, #E91E63 0%, #ff4081 100%);
    border-color: #E91E63;
    color: white;
}

.checkbox-group:has(input:checked) .checkbox-label {
    color: white;
}

.checkbox-group:has(input:checked) .checkbox-label strong {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* 注意を引くアイコン */
.checkbox-group::before {
    content: "📎";
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 24px;
    background: #E91E63;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 3px 10px rgba(233, 30, 99, 0.3);
}

.logo-info,
.file-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    border-left: 4px solid #E91E63;
}

.logo-info ul,
.file-info ul {
    margin: 10px 0 0 20px;
    padding: 0;
}

.logo-info li,
.file-info li {
    margin: 8px 0;
    color: #495057;
    font-weight: 500;
}

.logo-info li strong,
.file-info li strong {
    color: #E91E63;
    font-weight: 700;
}

/* データ送付セクション全体を強調 */
.logo-data-section,
.file-data-section {
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 25px;
    margin-top: 25px;
    position: relative;
}

.logo-data-section::before,
.file-data-section::before {
    content: "重要";
    position: absolute;
    top: -12px;
    left: 20px;
    background: #E91E63;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
}

/* ==========================================================================
   準備中表示スタイル
   ========================================================================== */

.gallery-preparing {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: var(--border-radius);
    padding: 80px 40px;
    text-align: center;
    border: 2px dashed var(--light-gray);
    margin: 40px 0;
}

.preparing-content {
    max-width: 600px;
    margin: 0 auto;
}

.preparing-icon {
    margin-bottom: 30px;
}

.preparing-icon i {
    font-size: 80px;
    color: var(--media-gold);
    opacity: 0.8;
}

.preparing-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.preparing-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 40px;
}

.preparing-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.category-item {
    background: white;
    padding: 25px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--media-gold);
}

.category-item i {
    font-size: 32px;
    color: var(--media-gold);
    margin-bottom: 10px;
}

.category-item span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
    text-align: center;
}

.preparing-note {
    font-size: 16px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(var(--media-gold), 0.2);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .gallery-preparing {
        padding: 60px 20px;
    }
    
    .preparing-icon i {
        font-size: 60px;
    }
    
    .preparing-title {
        font-size: 24px;
    }
    
    .preparing-description {
        font-size: 16px;
    }
    
    .preparing-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-item {
        padding: 20px 15px;
    }
    
    .category-item i {
        font-size: 24px;
    }
    
    .category-item span {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .preparing-categories {
        grid-template-columns: 1fr;
    }
    
    .preparing-description br {
        display: none;
    }
}
.hero-actions { animation-delay: 0.5s; }

/* スクロール時のアニメーション */
.service-card,
.gallery-item,
.contact-method {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* ホバー効果の詳細調整 */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--corporate-blue);
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

.nav-link.flower-link::after {
    display: none;
}

/* 資料請求ボタンスタイル */
.resource-request-btn {
    background: linear-gradient(135deg, var(--media-gold), #fbbf24);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.resource-request-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

/* ==========================================================================
   資料請求モーダル
   ========================================================================== */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.modal-header {
    background: linear-gradient(135deg, var(--corporate-blue), #2563eb);
    color: white;
    padding: 25px 30px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 30px;
}

.modal-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: center;
    background: #f0f9ff;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--corporate-blue);
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.cancel-btn {
    background: #f3f4f6;
    color: var(--text-light);
    border: 1px solid var(--light-gray);
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-btn:hover {
    background: #e5e7eb;
    color: var(--text-dark);
}

/* モーダル内のフォーム要素のスタイル調整 */
.modal-body .form-group {
    margin-bottom: 20px;
}

.modal-body .form-input,
.modal-body .form-textarea {
    font-size: 15px;
    padding: 12px 15px;
}

.modal-body .submit-btn {
    font-size: 15px;
    padding: 12px 25px;
    margin: 0;
}

/* アニメーション */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .cancel-btn,
    .modal-body .submit-btn {
        width: 100%;
        justify-content: center;
    }
}