@charset "UTF-8";

/*========== 商品カード ==========*/

.archive-section .box .entry-card {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 40px 30px;
    margin-bottom: 30px;
    background-color: #D9D9D9;
    float: none;
}

/* 左側（画像） */
.archive-section .box .entry-card-thumb {
    width: 300px;
    margin-right: 30px;
    position: relative;
    flex-shrink: 0;
}

.archive-section .box .entry-card-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.archive-section .box .acf-catchphrase {
    color: #FC0D0D;
    padding: 4px 0;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: bold;
    z-index: 2;
    width: fit-content;
}

/* 右側（テキスト） */
.archive-section .box .entry-card-content {
    width: calc(100% - 330px);
    text-align: left;
    background-color: #fff;
}

.archive-section .box .entry-card-title {
    font-size: 20px;
    margin-bottom: 16px;
}

.archive-section .box .entry-card-content .acf-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.archive-section .box .entry-card-content .acf-info {
    width: 230px;
    background: #f9f9f9;
    padding: 10px;
    margin-right: 20px;
}

.archive-section .box .entry-card-content .acf-info p {
    margin-bottom: 5px;
}

.archive-section .box .entry-card-snippet {
    width: calc(100% - 250px);
    text-align: left;
}


/*========== レスポンシブ ==========*/

@media screen and (max-width: 767px) {

    .archive-section .box .entry-card {
        padding: 20px;
    }

    /* 左側（画像） */
    .archive-section .box .entry-card-thumb {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    /* 右側（テキスト） */
    .archive-section .box .entry-card-content {
        width: 100%;
    }

    .entry-card-title a {
        font-size: 20px;
    }

    .archive-section .box .entry-card-content .acf-info {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .archive-section .box .entry-card-snippet {
        width: 100%;
        text-align: left;
    }

    .archive-section .box .entry-card-snippet p {
        margin-bottom: 10px;
    }
}