@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: 1024px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center; 
    align-items: center;
    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 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像を引き延ばしてトリミング */
    transform: translate(-50%, -50%); /* 中央配置 */
}
.product_list_item h4 {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: flex-start;
}
.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;
    }
}



/* ==================== single ==================== */
#product-single_sec01 {
    width: 100%;
    padding: 150px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
}
.product-single_cont {
    max-width: 768px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: flex-start;
    margin-bottom: 50px;
}

.product-single_cont_img {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: 30px;
}

.product-single_cont_img img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像を引き延ばしてトリミング */
    transform: translate(-50%, -50%); /* 中央配置 */
}
.product-single_cont_ttl {
    width: 100%;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
    margin-bottom: 45px;
}
.product-single_cont_ttl h3 {
    font-size: 28px;
}

.product-single_cont p {
    width: 100%;
    line-height: 1.5;
}

@media screen and (max-width:768px) {
    #product-single_sec01 {
        width: 100%;
        padding: 150px 24px;
    }
}