/* 都道府県おすすめページ用スタイル */

/* 都道府県おすすめページのヘッダー */
.c-postHead.-prefecture {
    margin-bottom: 30px;
}

.c-postHead__location {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.c-location__prefecture {
    background: #007cba;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 12px;
}

.c-location__area {
    background: #f0f0f0;
    color: #333;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 12px;
}

.c-postHead__title.-prefecture {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.c-postHead__excerpt.-prefecture {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 都道府県おすすめページのコンテンツ */
.post_content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

/* 都道府県おすすめページの特別なスタイル */
.l-article.-prefecture {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.l-article.-prefecture .c-postHead.-prefecture {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.l-article.-prefecture .c-postHead__title.-prefecture {
    color: #007cba;
    font-size: 32px;
}

.l-article.-prefecture .c-location__prefecture {
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    box-shadow: 0 2px 4px rgba(0, 124, 186, 0.3);
}

.l-article.-prefecture .c-location__area {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border: 1px solid #ddd;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .c-postHead__title.-prefecture {
        font-size: 24px;
    }

    .l-article.-prefecture .c-postHead__title.-prefecture {
        font-size: 26px;
    }

    .c-postHead__location {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .l-article.-prefecture .c-postHead.-prefecture {
        padding: 20px;
        margin-bottom: 30px;
    }
}

/* 都道府県おすすめページのアーカイブ用スタイル */
.p-archiveContent.-prefecture {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 都道府県おすすめページのリストアイテム */
.c-postList__item.-prefecture {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    background: white;
    transition: box-shadow 0.3s ease;
}

.c-postList__item.-prefecture:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.c-postList__item.-prefecture .c-postList__title {
    color: #007cba;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.c-postList__item.-prefecture .c-postList__excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* エリア表示用のバッジ */
.c-area-badge {
    display: inline-block;
    background: #007cba;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    margin-right: 5px;
    margin-bottom: 5px;
}

.c-area-badge.-prefecture {
    background: #007cba;
}

.c-area-badge.-area {
    background: #6c757d;
}