.container {
    max-width: 1100px;
    margin: auto;
    padding-bottom: 10em;
}

.bradcrumb {
    font-size: 1em;
    padding-top: 2em;
}

.bradcrumb a {
    text-decoration: none;
    color: black;
}

.heading {
    display: block;
    margin: 3em 1em 1em;
    text-align: center;
}

.heading_title {
    margin-bottom: 0em;
}

.heading_slug {
    margin: 0em 0em 1.5em;
    font-size: 1.2em;
}

.heading_description {
    max-width: 700px;
    margin: auto;
    line-height: 1.9em;
    padding: 0em 0.5em 3em;
}

.item-image {
    width: 350px;
    height: 350px;
    object-fit: cover;
}

.item-zoom-img-wrap {
    overflow: hidden;
    margin: 0.5em;
}

.item-zoom-img-wrap:hover {
    transition: all 0.3s ease-out;

}

.item-zoom-img {
    transition: all 0.3s ease-out;
    background-size: cover;
    background-position: center;

}

.item-zoom-img:hover {
    transform: scale(1.05);
    transition: all 0.3s ease-out;
    opacity: 1;
}

.item-icon {
    position: absolute;
    left: 0;
    top: 0;
    margin: 15px;
    z-index: 5;
}

.item-title {
    margin: 0em 0em 0em 0.5em;
    font-size: 1.05em;
    font-weight: 600;
    color: rgb(50, 50, 50);
}


.item-category {
    margin: 0.5em 0em 0em 0.5em;
}

.item-category a {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9em;
    color: rgb(50, 50, 50);
}

.item-price {
    margin: 0.3em 0em 0em 0.5em;
    color: rgb(50, 50, 50);
    text-align: left;
    font-weight: 600;

}

@media screen and (max-width:1050px) {
    .container {
        max-width: 650px;
    }

    .item-image {
        width: 300px;
        height: 300px;
    }
}

@media screen and (max-width:767px) {
    .container {
        max-width: 360px;
    }

    .bradcrumb {
        font-size: 0.5em;
    }

    .heading_title,
    .heading_slug,
    .heading_description {
        font-size: 1em;
    }

    .item-image {
        width: 160px;
        height: 160px;
    }

    .item-title {
        font-size: 0.5em;
    }

    .item-category {
        font-size: 0.5em
    }

    .item-price {
        font-size: 1em;
    }

}



/* その2  */
.pager .page-numbers {
    text-align: center;
}

.pager .page-numbers li {
    display: inline;
    margin: 0 2px;
    padding: 0;
    display: inline-block;
    background: rgb(200, 200, 200);
    width: 50px;
    height: 50px;
    text-align: center;
    position: relative;
    border-radius: 10px;
}

span.page-numbers.current {
    vertical-align: middle;
    position: absolute;
    padding-top: 0.8em;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    color: rgb(218, 170, 99);
    display: table;
    font-weight: 600;
    text-decoration: none;
}


.pager .page-numbers li a {
    vertical-align: middle;
    position: absolute;
    padding-top: 0.8em;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: table;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.pager .page-numbers li a span {
    display: table-cell;
    vertical-align: middle;
}

.pager .page-numbers li a:hover,
.pager .page-numbers li a.active {
    color: #000;
    background: rgb(218, 170, 99);
    border-radius: 10px;
}

@media only screen and (max-width: 767px) {
    .pager .page-numbers li {
        width: 30px;
        height: 30px;
        font-size: 0.5em;
        border-radius: 3px;
    }

    .pager .page-numbers li a:hover,
    .pager .page-numbers li a.active {
        border-radius: 3px;
    }

    .pager .page-numbers li.pre,
    .pager .page-numbers li.next {
        display: inline-block;
        width: 40%;
        height: 50px;
        text-align: center;
    }

    .pager .page-numbers li.pre a,
    .pager .page-numbers li.next a {
        width: 100%;
        text-align: center;
    }

    .pager .page-numbers li.pre span::after {
        content: "前の10件へ";
    }

    .pager .page-numbers li.next span::before {
        content: "次の10件へ";
    }

}