/* 売却実績マップページ専用スタイル */

/* ヒーローセクション */
.salesmap-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.salesmap-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.salesmap-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 統計情報バー */
.salesmap-stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: -40px auto 40px;
    padding: 0 20px;
}

.salesmap-stat-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.salesmap-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.salesmap-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
    margin-bottom: 10px;
}

.salesmap-stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* メインコンテンツ */
.salesmap-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.salesmap-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.salesmap-section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* マップセクション */
.salesmap-map-section {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
}

.salesmap-map-description {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #667eea;
}

.salesmap-map-description p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.salesmap-map-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.salesmap-legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.salesmap-legend-color {
    width: 30px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid #0066cc;
    background: #3388ff;
    opacity: 0.3;
}

.salesmap-legend-color.active {
    opacity: 0.6;
    border-color: #004499;
}

.salesmap-legend-text {
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

/* 特徴セクション */
.salesmap-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.salesmap-feature-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.salesmap-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.salesmap-feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.salesmap-feature-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* CTAセクション */
.salesmap-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 60px;
}

.salesmap-cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.salesmap-cta-description {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.salesmap-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.salesmap-btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.salesmap-btn-primary {
    background: white;
    color: #667eea;
}

.salesmap-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.salesmap-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.salesmap-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* リンクセクション */
.salesmap-links-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.salesmap-link-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
}

.salesmap-link-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.salesmap-link-icon {
    width: 50px;
    height: 50px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.salesmap-link-content {
    flex: 1;
}

.salesmap-link-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.salesmap-link-description {
    font-size: 0.9rem;
    color: #666;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .salesmap-hero {
        padding: 40px 20px;
    }

    .salesmap-hero h1 {
        font-size: 1.8rem;
    }

    .salesmap-hero p {
        font-size: 1rem;
    }

    .salesmap-stats-bar {
        margin: -30px auto 30px;
    }

    .salesmap-stat-number {
        font-size: 2.5rem;
    }

    .salesmap-map-section {
        padding: 25px 20px;
    }

    .salesmap-section-title {
        font-size: 1.6rem;
    }

    .salesmap-cta-section {
        padding: 40px 25px;
    }

    .salesmap-cta-title {
        font-size: 1.6rem;
    }

    .salesmap-cta-buttons {
        flex-direction: column;
    }

    .salesmap-btn {
        width: 100%;
        max-width: 300px;
    }

    .salesmap-link-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .salesmap-hero h1 {
        font-size: 1.5rem;
    }

    .salesmap-stats-bar {
        grid-template-columns: 1fr;
    }

    .salesmap-map-legend {
        flex-direction: column;
        gap: 15px;
    }
}
