/* 特集ページボタン */
a.detail_btn {
    background: #333;
    padding: 15px;
    text-align: center;
    color: #FFF;
    width: 70%;
    margin: 15px auto;
    line-height: 1.3em;
    display: block;
    text-decoration: none;
}

a.detail_btn:hover{
    text-decoration: underline;
}
/* ワイナリーリンクボタン */
a.winery-btn {
    display: inline-block;
    padding-left: 44px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
    background: #fbb03b;
    color: #FFF;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    font-weight: bold;
    border-bottom: solid 4px #ae7418;
    border-radius: 3px;
    position: relative;
    margin-top: 10px;
    padding-top: 3px;
    padding-bottom: 3px;
}

a.winery-btn:active {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
    border-bottom: none;
}

a.winery-btn:after {
    margin-left: 22px;
    font-size: 1.6rem;
    position: absolute;
    background-image: url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%20fill%3D%22%23ffffff%22%3E%3Cpath%20d%3D%22M256%208c137%200%20248%20111%20248%20248S393%20504%20256%20504%208%20393%208%20256%20119%208%20256%208zm113.9%20231L234.4%20103.5c-9.4-9.4-24.6-9.4-33.9%200l-17%2017c-9.4%209.4-9.4%2024.6%200%2033.9L285.1%20256%20183.5%20357.6c-9.4%209.4-9.4%2024.6%200%2033.9l17%2017c9.4%209.4%2024.6%209.4%2033.9%200L369.9%20273c9.4-9.4%209.4-24.6%200-34z%22%2F%3E%3C%2Fsvg%3E);
    content: "";
    width: 18px;
    height: 18px;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
/* for PC */
@media screen and (min-width:768px) {
    a.detail_btn {
        font-size: 22px;
    }
    a.winery-btn {
        width: 210px;
    }
}

/* for SP */
@media screen and (max-width:767px) {
    a.detail_btn {
        font-size: 18px;
    }
    a.winery-btn {
        width: 100%;
        max-width: 210px;
    }
}

/*---------------*/
/* ワインフェア受賞 */
/*---------------*/

.promo-wrap {
    padding: 0 0px 40px;
}

.promo-message {
    width: 90%;
    margin: 10px auto;
    background-color: #fbf6f3;
    padding: 20px;
    position: relative;
}

.promo-message:before {
    position: absolute;
    width: 40px;
    border-top: 3px solid #c79d55;
    top: 0;
    height: 60px;
    content: "";
    left: 0;
    border-left: 3px solid #c79d55;
}

.promo-message:after {
    position: absolute;
    width: 40px;
    border-bottom: 3px solid #c79d55;
    bottom: 0;
    height: 60px;
    content: "";
    right: 0;
    border-right: 3px solid #c79d55;
}

.promo-message p {
    margin: 0;
}

/*---------------*/
/* ワシントン説明 */
/*---------------*/
h2.headline-washington {
    color: #825719;
    font-weight: bold;
    padding-bottom: 8px;
}

/* for PC */
@media screen and (min-width:768px) {
    h2.headline-washington {
        font-size: 2.2rem;
    }
}

/* for Smartphone */
@media screen and (max-width:767px) {
    h2.headline-washington {
        font-size: 1.6rem;
    }
}

/*---------------*/
/*    開拓者      */
/*---------------*/
.img3List img {
    border: 1px solid #cecece;
}

/*---------------*/
/* おすすめワイナリー */
/*---------------*/
.bn-area a,
.bn-area img {
    border-radius: 5px;
}

.bn-area {
    margin-bottom: 40px;
}

/* for PC */
@media screen and (min-width:768px) {
    .bn-area {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .col2bn {
        width: 49%;
        margin-bottom: 10px;
    }

}