/* --- ガイドアーカイブ：ヘッダー --- */
.p-guideArchive__header {
    background: #fff;
    padding: 50px 0;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 40px;
}

.c-guide-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #bfa57d; /* ガイドは少し落ち着いたベージュ系 */
    margin-bottom: 10px;
}

.p-guideArchive__title {
    font-size: 28px;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
}

/* --- ガイドグリッド --- */
.p-guideGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 25px;
    margin-bottom: 50px;
}

.p-guideCard__link {
    text-decoration: none !important;
    color: inherit !important;
}

.p-guideCard__img {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 12px;
}

.p-guideCard__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.p-guideCard:hover .p-guideCard__img img {
    transform: scale(1.05);
}

.p-guideCard__title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    color: #222 !important;
    margin-bottom: 8px !important;
    border: none !important;
    padding-bottom: 0 !important;
}

.p-guideCard__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #999;
}

.p-guideCard__area {
    color: #bfa57d !important;
    font-weight: 700;
}

/* --- スマホ：横並びリスト --- */
@media screen and (max-width: 768px) {
    .p-guideGrid {
        display: block;
    }
    .p-guideCard {
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #f5f5f5;
    }
    .p-guideCard__link {
        display: flex;
        gap: 15px;
    }
    .p-guideCard__img {
        width: 35%;
        margin-bottom: 0;
    }
    .p-guideCard__body {
        width: 65%;
    }
    .p-guideCard__title {
        font-size: 14px;
    }
}