@charset "utf-8";
/* ==================== section ==================== */
#product_sec01 {
    padding: 150px 40px;
    width: 100%;
}
.product_inner {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    gap: 80px;
}
.product_cont {
    max-width: 768px;
    width: 100%;
    margin-bottom: 100px;    
}

.product_cont p {
    line-height: 32px;
    letter-spacing: 0.08rem;
    text-align: center;
}

.product_list {
    max-width: 1027px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center; 
    align-items: center;
    object-fit: cover;
    flex-wrap: wrap;
    gap: 50px;
}
.product_list:after {
    content: "";
    display: block;
    width: 308px;  /* .boxに指定したwidthと同じ幅を指定する */
    height: 0;
}
.product_list_item {
    width: 308px;
    height: auto;
}
.product_list_item_img {
    position: relative;
    width: 308px;
    height: 216px;
    overflow: hidden;
    margin-bottom: 5px;
}

.product_list_item_img img {
    width: 308px;
    height: 216px;
    overflow: hidden;
    margin-bottom: 5px;
}
.product_list_item time {
    font-size: 12px;
    margin-bottom: 5px;
}

@media screen and (max-width:768px) {
    .product_inner {
        display: flex;
        flex-direction: column;
        justify-content: center; 
        align-items: center;
        gap: 80px;
    }
    .product_cont {
        max-width: 768px;
        width: 100%;
        margin-bottom: 100px;    
    }
    
    .product_cont p {
        line-height: 32px;
        letter-spacing: 0.08rem;
        text-align: center;
    }
    
    .product_list {
        max-width: 1027px;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center; 
        align-items: center;
        object-fit: cover;
        flex-wrap: wrap;
        gap: 50px;
    }
    .product_list:after {
        content: "";
        display: block;
        width: 308px;  /* .boxに指定したwidthと同じ幅を指定する */
        height: 0;
    }
    .product_list_item {
        width: 308px;
        height: auto;
    }
    .product_list_item_img {
        position: relative;
        width: 308px;
        height: 216px;
        overflow: hidden;
        margin-bottom: 5px;
    }
    
    .product_list_item_img img {
        width: 308px;
        height: 216px;
        overflow: hidden;
        margin-bottom: 5px;
    }
    .product_list_item time {
        font-size: 12px;
        margin-bottom: 5px;
    }
}