@charset "utf-8";
.inner{
	    max-width: 1250px;
	padding-top: 40px;
}
/*------------ 一覧 ------------*/
.product_list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 0 15px;
}

.product_item {
    list-style: none;
    width: calc((100% - 30px * 3) / 4);
    margin: 0 30px 30px 0;
}

.product_item:nth-child(4n) {
    margin-right: 0;
}

.product_link {
    display: block;
    color: #222;
    text-align: center;
    text-decoration: none;
}

.product_img {
    padding-top: 64.285%;
    position: relative;
    overflow: hidden;
}

.product_img img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s ease-in-out;
}

.product_txt {
    font-weight: 600;
}

.product_txt p {
    letter-spacing: 0.1em;
    margin: 0;
}

.product_txt .product_price {
    letter-spacing: 0.1em;
}

/* hover */
.product_link:hover .product_img img {
    transform: scale(1.07);
}

/*------------ 詳細 ------------*/
.single-product .inner {
    max-width: 840px;
}

/*--- 商品画像 ---*/
.thumb-item {
    background-color: #F5F5F5;
    margin-bottom: 28px;
}

.thumb_img img {
    width: 100%;
    max-width: 100%;
    /* height: 500px; */
    object-fit: cover;
    aspect-ratio: 1000/645;

}

.slide-arrow.slick-arrow {
    position: absolute;
    /* height: 30px;
    width: 30px;
    top: 38%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); */
    cursor: pointer;
    width: 84px;
    height: 100%;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: none;
    z-index: 1;
    transition: all .3s ease;
}

.slide-arrow.slick-arrow:hover {
    background: rgba(0, 0, 0, 0.4);
    transition: all .3s ease;
}

.slide-arrow.prev-arrow.slick-arrow {
    left: 0;
}

.slide-arrow.next-arrow.slick-arrow {
    right: 0;
}

.slide-arrow.next-arrow.slick-arrow::after,
.slide-arrow.prev-arrow.slick-arrow::before {
    position: absolute;
    content: "";
    width: 34px;
    height: 34px;
    top: 50%;
    /* left: 0; */
    /* bottom: 0; */
    margin: auto;
    -webkit-filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.3));
    filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.3));
    z-index: 2;
    /* border-right: 3px solid yellow; */
    /* border-top: 3px solid green; */
    transform: translateY(-50%) rotate(45deg);
}

.slide-arrow.prev-arrow.slick-arrow::before {
    border-left: 3px solid #FFF;
    border-bottom: 3px solid #FFF;
    left: 28px;
    /* background: url(../img/hotels_arrow_l.svg) no-repeat center / contain; */
}

.slide-arrow.next-arrow.slick-arrow::after {
    border-right: 3px solid #FFF;
    border-top: 3px solid #FFF;
    right: 28px;
    /* background: url(../img/hotels_arrow_r.svg) no-repeat center / contain; */

}

/* slick nav */
.carousel .slick-track {
    width: 100% !important;
    transform: none !important;
    margin-left: 0;
}

.carousel .thumb_nav_img {
    background-color: #F5F5F5;
    margin-right: 13px;
    cursor: pointer;
    width: calc((100% - 39px) / 4) !important;
}

.carousel .thumb_nav_img:nth-child(4) {
    margin-right: 0;
}

.carousel .thumb_nav_img img {
    /* height: 100px !important; */
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1000/645;

}

/*--- タイトル ---*/
.prod_head h2 {
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.65;
    margin: 40px 0 15px;
}

.prod_head .product_price {
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.65;
    /* margin: 20px 0 0; */
}

/*--- 商品概要 ---*/
table * {
    font-size: 1.8rem;
}

/*--- 商品説明 ---*/
.prod_desc {
    margin-bottom: 49px;
}

.prod_desc p {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    line-height: 1.555;
}

/*--- ボタン ---*/
.single_link_wrap {
    text-align: center;
	margin-top: 40px;
}

@media screen and (max-width: 767px) {
    /*------------ 一覧 ------------*/
    /* .product_list {
        display: flex;
        flex-wrap: wrap;
        padding: 0;
        margin: 0 0 15px;
    } */

    .product_item {
        width: calc((100% - 15px) / 2);
        margin: 0 15px 20px 0 !important;
    }

    .product_item:nth-child(2n) {
        margin-right: 0 !important;
    }

    /* .product_link {
        display: block;
        color: #222;
        text-align: center;
        text-decoration: none;
    } */

    /* .product_img {
        padding-top: 64.285%;
        position: relative;
        overflow: hidden;
    } */

    /* .product_img img {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all .5s ease-in-out;
    } */

    /* .product_txt {
        font-weight: 600;
    } */

    .product_txt p {
        letter-spacing: 0.05em;
    }

    .product_txt .product_price {
        letter-spacing: 0.05em;
    }

    /* hover */
    /* .product_link:hover .product_img img {
        transform: scale(1.07);
    } */

    /*------------ 詳細 ------------*/
    /* .single-product .inner {
        max-width: 1040px;
    } */

    /*--- 商品画像 ---*/
    .thumb-item {
        margin-bottom: 18px;
    }

    /* .thumb_img img {
        width: 100%;
        max-width: 100%;
        object-fit: cover;
        aspect-ratio: 1000/645;
    } */

    .slide-arrow.slick-arrow {
        width: 55px;
    }

    /* .slide-arrow.slick-arrow:hover {
        background: rgba(0, 0, 0, 0.4);
        transition: all .3s ease;
    } */

    /* .slide-arrow.prev-arrow.slick-arrow {
        left: 0;
    }

    .slide-arrow.next-arrow.slick-arrow {
        right: 0;
    } */

    .slide-arrow.next-arrow.slick-arrow::after,
    .slide-arrow.prev-arrow.slick-arrow::before {
        width: 22px;
        height: 22px;
        margin: auto;
    }

    .slide-arrow.prev-arrow.slick-arrow::before {
        border-left: 2px solid #FFF;
        border-bottom: 2px solid #FFF;
        left: 23px;
        /* background: url(../img/hotels_arrow_l.svg) no-repeat center / contain; */
    }

    .slide-arrow.next-arrow.slick-arrow::after {
        border-right: 2px solid #FFF;
        border-top: 2px solid #FFF;
        right: 21px;
        /* background: url(../img/hotels_arrow_r.svg) no-repeat center / contain; */

    }

    /* slick nav */
    /* .carousel .slick-track {
        width: 100% !important;
        transform: none !important;
        margin-left: 0;
    } */

    .carousel .thumb_nav_img {
        margin-right: 8px;
        width: calc((100% - 24px) / 4) !important;
    }

    /* .carousel .thumb_nav_img:nth-child(4) {
        margin-right: 0;
    } */

    /* .carousel .thumb_nav_img img {
        width: 100%;
        object-fit: cover;
        aspect-ratio: 1000/645;
    } */

    /*--- タイトル ---*/
    .prod_head h2 {
        font-size: 2rem;
        margin: 35px 0 15px;
    }

    .prod_head .product_price {
        font-size: 2rem;
        /* margin: 15px 0 0; */
    }

    /*--- 商品概要 ---*/
    table * {
        font-size: 1.5rem;
    }

    table th {
        min-width: 105px;
    }

    /* table th,
    table td {
        display: block;
        text-align: left;
        width: 100%;
    } */

    /*--- 商品説明 ---*/
    .prod_desc {
        margin-bottom: 35px;
    }

    .prod_desc p {
        font-size: 1.5rem;
    }

    /*--- ボタン ---*/
    /* .single_link_wrap {
        text-align: center;
    } */

}