/*************************/
/* 共通 */
/*************************/

.fs-c-productList__message.fs-c-noResultMessage {
    display: none;
}


/*************************/
/* ワインリスト */
/*************************/

.jackson-item {
    background-color: #eceae8;
}

.jackson-item-country {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.jackson-item h2 {
    font-weight: 600;
    color: #4c3232;
    border-bottom: 2px solid #c3ae8f;
    margin-top: 0px;
}

.jackson-item-country h3 {
    color: #4c3232;
    font-weight: 600;
    position: relative;
    padding: 0 45px;
}

.jackson-item-country h3:before {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 35px;
    height: 1px;
    left: 0;
    background-color: #4c3232;
}

.jackson-item h2,
.jackson-item-country h3 {
    width: 100%;
}

.card {
    height: auto;
    position: relative;
}

.card img {
    width: 100%;
    padding: 15px 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.card a {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
}

.card a:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.card__imgframe {
    width: 100%;
    height: auto;
    background-color: #fff;
    /*    padding-top: 56.25%;*/
    /*    background-size: cover;*/
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /*    position: relative;*/
    /*    box-shadow: 0px 4px 4px rgba(0, 0, 0, .4);*/
}

.card__textbox {
    width: 100%;
    height: 100%;
    /*    padding: 18px;*/
    /*    background: #ffffff;*/
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #595757;
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card__textbox > * + * {
    margin-top: 10px;
}

.card__titletext {
    font-size: 20px;
    font-weight: bold;
    line-height: 125%;
    border-top: 10px solid #a7856a;
    margin-top: 0px;
}

.card__overviewtext {
    /*    font-size: 12px;*/
    line-height: 150%;
    margin-top: auto;
}


/* for PC */

@media screen and (min-width:768px) {
    .jackson-item {
        padding: 20px;
    }

    .jackson-item h2 {
        font-size: 2.8rem;
    }

    .jackson-item-country h3 {
        font-size: 2.4rem;
        margin: 20px 10px 10px;
    }

    .jackson-item-country {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .card {
        width: 32%;
        margin: 0 4px 20px;
    }

    .card__titletext {
        padding: 10px 18px 10px;
    }

    .card__overviewtext {
        padding: 0 18px 18px;
    }

    /*
    div.card-skin:nth-of-type(4n) {
        margin-right: 0px;
    }

    .div.card-skin:nth-of-type(4n+1) {
        margin-left: 0;
    }
*/
}


/* for SP */

@media screen and (max-width:767px) {
    .jackson-item {
        padding: 10px;
    }

    .jackson-item h2 {
        font-size: 2.4rem;
    }

    .jackson-item-country h3 {
        font-size: 2.2rem;
        margin: 30px 0px 0px;
    }

    .jackson-item-country {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .card {
        width: 48%;
        margin-top: 20px;
    }

    .card__titletext {
        padding: 10px 10px 10px;
    }

    .card__overviewtext {
        padding: 0 10px 18px;
    }
}