@charset "UTF-8";

body {
    font-family: "Yu Mincho", YuMincho, "游明朝体", "Yu Mincho", "YuMincho", serif;
    margin: 0;
}

a {
    text-decoration: none;
}

.product-title {
    background-color: rgb(240, 240, 240);
    text-align: center;
    padding: 35px 0;
}

.product-title-sub-text {
    color: #b4a272;
}

.product-title-text {
    font-size: 23px;
    /* font-weight: bold; */
}

.product-title-line {
    background-image: url(seitai_img/seitai_img/231206_pc_img/pc_img_line.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 51px;
    height: 5px;
    background-color: gray;
    opacity: 0.3;
    margin: auto;
}

.product-text {
    text-align: center;
    padding: 30px 0;
}

.product-text-1 {
    font-size: 23px;
    /* font-weight: bold; */
}

.product-text-2 {
    font-size: 18px;
    margin: 10px auto;
    width: 70%;
    padding: 10px 0;
    border-top: 3px solid #b4a272;
}

.product-list {
    background-color: rgb(240, 240, 240);
    margin: auto;
    width: 80%;
    padding: 1px 0;
}

.product-list-item {
    border: 1px solid gray;
    background-color: white;
    margin: 30px 60px;
    display: flex;
    justify-content: space-between;
    padding: 25px;

}

.product-list-item-img-all {

    width: 300px;
    height: auto;
    padding-left: 80px;
}

.product-list-item-img {
    background-image: url(seitai_img/product_sample_0.png);
    width: 630px;
    height: auto;
    background-repeat: no-repeat;
    background-size: contain;
}

.product-list-item-text {
    margin: 0 0 0 3vw;
    max-width: 50%;
}

.product-list-item-name {
    text-align: center;
    font-size: 23px;
    font-weight: bold;
    margin: 20px 0;
}

.product-list-item-price {
    font-size: 21px;
    padding: 30px 0;
    text-align: right;
    font-weight: bold;
}

.product-list-item-price::after {
    content: "(税込)";
    font-size: 15px;
}

.product-list-item-button-detail {
    display: flex;
    align-items: center;
    color: white;
    font-size: 20px;
    justify-content: center;
    background-color: #b4a272;
    height: 45px;
    margin: 15px 0;
}

.product-list-item-button-buy {
    display: flex;
    align-items: center;
    color: white;
    font-size: 20px;
    justify-content: center;
    background-color: orange;
    height: 45px;
    margin-top: 15px;
}

.product-link-area {
    display: flex;
    justify-content: space-evenly;
    margin-top: 40px;
    padding: 20px 0;
    background-color: rgb(240, 240, 240);
}

.product-link {
    text-decoration: none;
    color: black;
    background-color: white;
    border-bottom: 2px solid gray;
    width: 20vw;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 1024px) {
    .product-list {
        width: 95%;
    }

    .product-list-item {
        margin: 3vw 6vw;
    }

    .product-list-item-button-buy,
    .product-list-item-button-detail {
        font-size: 2vw;
    }
}

@media screen and (max-width:480px) {
    .product-title {
        padding: 20px 0;
    }

    .product-title-line {
        background-image: url(seitai_img/seitai_img/231206_sp_img/sp_img_line.png);
    }

    .product-text-2 {
        width: 90%;
    }

    .product-list {
        width: 100%;
    }

    .product-list-item {
        flex-direction: column;
    }

    .product-list-item-img {
        width: auto;
        /* height: 40vh; */
    }

    .product-list-item-text {
        max-width: 100%;
    }

    .product-list-item-button-buy,
    .product-list-item-button-detail {
        font-size: 16px;
    }

    .product-link-area {
        margin: 0;
        flex-direction: column;
        align-items: center;
    }

    .product-link {
        width: 80vw;
        margin: 10px 0;
    }

    .product-list-item-img-all {
        width: 250px;
        height: auto;
        padding-left: 40px;
    }
}