/* --------------------------------------------------------------
    バナー基盤（1つ目のCSS）
----------------------------------------------------------------- */
.bnr_tit {
    font-size: min(2.8vw, 28px);
    font-weight: bold;
    text-align: center;
}
.bnrgroup {
    width: 70%;
    margin: 20px auto 0;
}
.bnrgroup_ul {
    margin-top: min(4vw, 40px);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.bnrgroup_li {
    width: 48%;
    box-sizing: border-box;
    margin-right: 1%;
}
.bnrgroup_li:nth-child(2n+2) {
    margin-right: 0;
}
.bnrgroup_li:nth-child(n+3) {
    margin-top: 3.5%;
}
.bnrgroup_a {
    transition: all .5s;
}
.bnrgroup_a:hover {
    opacity: .7;
}
.bnrgroup_txt {
    font-size: min(1.8vw, 18px);
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
    margin-top: min(.7vw, 7px);
    color: #000;
}
@media screen and (max-width: 767px) {
    .bnrgroup {
        width: 100%;
        margin: min(1.5vw, 15px) auto 0;
    }
    .bnr_tit {
        font-size: calc((30/750)*100vw);
    }
    .bnrgroup_txt {
        font-size: calc((20/750)*100vw);
        margin-top: calc((10/750)*100vw);
    }
}

/* --------------------------------------------------------------
    旅行券・宿泊券に関わるおすすめ情報
----------------------------------------------------------------- */
.ec-travelRole__recommend .article_slide ul {
    display: flex;
    overflow-x: scroll;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #F5F5F5;
}
.ec-travelRole__recommend .article_slide li {
    width: 290px;
    flex-shrink: 0;
    margin: 0;
    box-sizing: border-box;
}
.ec-travelRole__recommend .article_slide li a {
    display: block;
    padding: 10px;
    transition: opacity .4s;
    color: #000;
}
.ec-travelRole__recommend .article_slide li a .imgwrap img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.ec-travelRole__recommend .article_slide li p {
    font-size: 14px;
    font-weight: bold;
    margin: 10px 0 0;
}
@media screen and (max-width: 768px) {
    .ec-travelRole__recommend .article_slide li {
        width: 40vw;
        height: 50vw;
        margin-right: 20px;
    }
    .ec-travelRole__recommend .article_slide li a .imgwrap img {
        height: calc((200/750)*100vw);
    }
}

/* --------------------------------------------------------------
    人気のキーワードタグ
----------------------------------------------------------------- */
.ec-travelRole__keywords__ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -3px;
    padding: 0;
}
.ec-travelRole__keywords__ul__li {
    list-style: none;
}
.ec-travelRole__keywords__ul__li__a {
    font-size: 12px;
    line-height: 1.2;
    border: 1px solid #d4d4d4;
    color: #2a2a2a;
    margin: 9px 3px;
    padding: 0.35em .81em;
    border-radius: 9999px;
    display: block;
    text-align: center;
    transition: all .5s;
}
.ec-travelRole__keywords__ul__li__a:hover {
    background-color: #d4d4d4;
    color: #fff;
}
@media screen and (max-width: 768px) {
    .ec-travelRole__keywords__ul__li__a {
        font-size: calc((24/750)*100vw);
        margin: calc((15/750)*100vw) calc((10/750)*100vw);
    }
}

/* --------------------------------------------------------------
    関連特集バナー
----------------------------------------------------------------- */
.ec-travelRole__related ul {
    display: flex;
    justify-content: center;
    padding: 0;
}
.ec-travelRole__related ul li {
    list-style: none;
    width: 47.25%;
}
.ec-travelRole__related ul li+li {
    margin-left: 5.5%;
}
.ec-travelRole__related ul li a {
    display: block;
    transition: all .5s;
}
.ec-travelRole__related ul li a:hover {
    opacity: 0.7;
}
@media screen and (max-width: 768px) {
    .ec-travelRole__related ul {
        display: block;
    }
    .ec-travelRole__related ul li {
        width: 100%;
    }
    .ec-travelRole__related ul li+li {
        margin-left: 0;
        margin-top: calc((40/750)*100vw);
    }
}

/* --------------------------------------------------------------
    ec-travelRole__fourthTtl （中央寄せ）
----------------------------------------------------------------- */
.ec-travelRole__fourthTtl {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: .05em;
    text-align: center;
    margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
    .ec-travelRole__fourthTtl {
        font-size: calc((34 / 750)* 100vw);
        margin-bottom: calc((34 / 750)* 100vw);
    }
}

/* --------------------------------------------------------------
    おすすめ情報と関連特集バナーの間隔調整
----------------------------------------------------------------- */
.ec-travelRole__recommend {
    margin-bottom: 60px;
}