@charset "UTF-8";
/* ===================================
共通
=================================== */
.pc{
    display: block;
}
.sp{
    display: none;
}
@media screen and (max-width: 767px) {
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
}

/* ===================================
FV
=================================== */
.fv_inner{
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: auto;
}

/* サーチフォーム */
.search_form{
    margin-top: 15px;
}
.fv_form_area{
    position: relative;
    max-width: 600px;
    width: 100%;
    padding: 50px 42px;
    padding-top: 38px;
}
.fv_ttl{
    margin-bottom: 10px;
}
.fv_ttl h1{
    text-align: center;
    padding-left: 6px;
    color: #293271;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: 0.11em;
}
.fv_ttl h1 span{
    position: relative;
    top: -6px;
    display: inline-block;
    padding: 0 21px;
    padding-right: 15px;
    margin-right: 8px;
    background-color: #293271;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.08em;
}

.fv_detail_box{
    margin-bottom: 20px;
}
.fv_d_txt{
    margin-bottom: 10px;
    text-align: center;
    color: #293271;
    font-size: 10px;
    letter-spacing: 0.12em;
}
.fv_d_list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.fv_d_list li{
    width: fit-content;
    height: 30px;
    margin-right: 10px;
    margin-bottom: 10px;
}
.fv_d_list li img{
    width: auto;
    height: 100%;
}
.fv_d_list li:nth-of-type(5), 
.fv_d_list li:last-of-type{
    margin-right: 0;
}

/* ラジオボタン */
.cat_radio{
    display: flex;
    flex-wrap: wrap;
}
.cat_radio input[type=radio] {
    font-family: 'Noto Sans JP', sans-serif;
    display: none;
}
.cat_radio input[type=radio] + label {
    position: relative;
    display: block;
    width: fit-content;
    font-family: 'Noto Sans JP', sans-serif;
    cursor: pointer;
    background-color: #f0f0f0;
    border: 1px solid #f0f0f0;
    border-radius: 50px;
    padding: 7px 20px;
    margin-right: 5px;
    margin-bottom: 10px;
    color: #999999;
    font-size: 12px;
    letter-spacing: 0.1em;
    transition: .2s;
}
.cat_radio input[type=radio] + label:last-of-type{
    margin-right: 0;
}
.cat_radio input[type=radio] + label::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 5px 0 5px;
    border-color: #f0f0f0 transparent transparent transparent;
    transition: .3s;
}
.cat_radio input[type=radio] + label::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 5px 0 5px;
    border-color: #f0f0f0 transparent transparent transparent;
    transition: .3s;
}
.cat_radio input[type=radio]:checked + label {
    position: relative;
    display: block;
    width: fit-content;
    font-family: 'Noto Sans JP', sans-serif;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 50px;
    padding: 7px 20px;
    margin-right: 5px;
    margin-bottom: 10px;
    color: #333;
    font-size: 12px;
    letter-spacing: 0.1em;
    transition: .2s;
}
.cat_radio input[type=radio]:checked + label:last-of-type{
    margin-right: 0;
}
.cat_radio input[type=radio]:checked + label::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 5px 0 5px;
    border-color: #f0f0f0 transparent transparent transparent;
    transition: .3s;
}
.cat_radio input[type=radio]:checked + label::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 5px 0 5px;
    border-color: #fff transparent transparent transparent;
    transition: .3s;
}

/* テキストフォーム */
input.s_txt_form {
    font-family: 'Noto Sans JP', sans-serif;
    width: 100%;
    border: none;
    appearance: none;
    border-bottom: 1px solid #e2e2e2;
    background-color: #fff;
    font-size: 14px;
    padding: 17px 25px 13px;
    letter-spacing: 0.12em;
    margin-bottom: 9px;
    border-radius: 0;
}
input.s_txt_form::placeholder{
    color: #bcbcbc;
    font-size: 14px;
    letter-spacing: 0.12em;
}

/* プルダウン（セレクト） */
select.top {
    font-family: 'Noto Sans JP', sans-serif;
    width: 100%;
    border: none;
    appearance: none;
    border-bottom: 1px solid #e2e2e2;
    background-color: #fff;
    font-size: 14px;
    padding: 17px 25px 13px;
    letter-spacing: 0.12em;
    margin-bottom: 9px;
    border-radius: 0;
}

/* 送信ボタン*/
button#sbtn {
    cursor: pointer;
    margin: auto;
    margin-top: 20px;
    display: block;
    max-width: 220px;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 100px;
    background: linear-gradient(225deg, rgba(189,161,105,1) 0%, rgba(219,194,145,1) 100%);
    font-family: 'Noto Sans JP', sans-serif;
    color: #fff;
    font-size: 14px;
    transition: .3s;
}
button#sbtn:hover{
    opacity: .6;
}

/* スライダー */
.img_area{
    overflow: hidden;
    max-width: 748px;
}

@media screen and (max-width: 1400px) {
    /*  タイトル */
    .fv_ttl h1{
        font-size: 3vw;
    }
    .fv_ttl h1 span{
        font-size: 1.7vw;
    }

    .cat_radio input[type=radio] + label{
        padding: 7px 18px;
        margin-right: 3px;
    }
    .cat_radio input[type=radio]:checked + label{
        padding: 7px 18px;
        margin-right: 3px;
    }

    /* スライダー */
    .img_area{
        max-width: 50%;
        height: 450px;
    }
    .fv_slider{
        height: 100%;
    }
    .swiper-fade .swiper-slide img{
        object-fit: cover;
        height: 100%;
    }
}
@media screen and (max-width: 1100px) {
    .fv_form_area{
        max-width: 55%;
        padding: 50px 20px;
        padding-top: 30px;
    }
    .img_area{
        height: 420px;
    }
}
@media screen and (max-width: 1023px) {
    .radio_wrap{
        overflow-x: auto;
        scrollbar-width: none;
        scrollbar-width: thin;
        scrollbar-color: #e2e2e2 transparent;
        width: 100%;
        padding-bottom: 0px;
        margin-bottom: 7px;
    }
    .radio_wrap::-webkit-scrollbar{
        height: 5px;
    }
    .radio_wrap::-webkit-scrollbar-track{
        background-color: transparent;
    }
    .radio_wrap::-webkit-scrollbar-thumb{
        background-color: #e2e2e2;
        border-radius: 10px;
    }
    .cat_radio{
        width: 470px;
    }
}
@media screen and (max-width: 767px) {
    .fv_inner{
        flex-direction: column-reverse;
    }
    .img_area{
        max-width: 100%;
    }
    .swiper-fade .swiper-slide img{
        width: 100%;
    }
    .fv_form_area{
        max-width: 100%;
    }
    .fv_form_area::before{
        content: "";
        position: absolute;
        top: -59px;
        left: 0;
        z-index: 10;
        display: block;
        width: 100%;
        height: 60px;
        background: linear-gradient(0deg, rgba(251,251,251,1) 0%, rgba(251,251,251,0) 100%);
    }

    .fv_ttl h1{
        font-size: 28px;
    }
    .fv_ttl h1 span{
        font-size: 14px;
    }
}
@media screen and (max-width: 599px) {
    .fv_d_list li{
        height: 7vw;
        margin-right: 5px;
    }
    .fv_d_list li:nth-of-type(5){
        margin-right: 5px;
    }
    .fv_d_list li:nth-of-type(4){
        margin-right: 0px;
    }
}
@media screen and (max-width: 450px) {
    .fv_ttl h1 span{
        padding: 3px 10px;
        font-size: 14px;
    }
    .search_form{
        margin-top: 11px;
    }
    .radio_wrap{
        margin-bottom: 7px;
    }
    input.s_txt_form{
        font-size: 16px;
        padding: 16px 19px 11px;
        margin-bottom: 4px;
    }
    input.s_txt_form::placeholder{
        font-size: 16px;
        letter-spacing: 0.01em;
    }
    button#sbtn{
        font-size: 16px;
    }
}
@media screen and (max-width: 370px) {
    .fv_ttl h1{
        padding-left: 0;
        font-size: 22px;
    }
    .fv_ttl h1 span{
        font-size: 12px;
    }
}


/* ===================================
人気のエリア
=================================== */
.area_wrap{
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.area_wrap .area_box{
    flex-shrink: 0;
    width: 380px;
    margin-right: 20px;
}
.area_box a{
    position: relative;
    display: block;
    overflow: hidden;
    height: 180px;
    padding: 11px 20px;
    transition: .3s;
}
.area_box a:hover{
    opacity: .6;
}
.area_box a .area_bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.area_detail{
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
}
.area_detail .d_ttl{
    display: inline-block;
    margin-right: 28px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.1em;
}
.area_detail .d_value{
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.13em;
}
.area_detail .d_value span{
    color: #fff;
    font-size: 12px;
}

.area_ttl{
    position: absolute;
    right: -2px;
    bottom: -13px;
    z-index: 1;
    color: rgba(255, 255, 255, 0.5);
    font-size: 70px;
    text-shadow: 2px 2px 18px rgba(71, 72, 49, 0.5);
    line-height: 1em;
    letter-spacing: 0.03em;
}

.area_box_wrap{
    width: 300px;
}
.area_box_s a{
    position: relative;
    display: block;
    overflow: hidden;
    height: 80px;
    padding: 11px 20px;
    margin-bottom: 20px;
    transition: .3s;
}
.area_box_s a:hover{
    opacity: .6;
}
.area_box_s:last-of-type a{
    margin-bottom: 0;
}
.area_box_s a .area_bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}
.area_box_s a .area_ttl{
    position: absolute;
    right: -2px;
    bottom: -9px;
    z-index: 1;
    color: rgba(255, 255, 255, 0.5);
    font-size: 50px;
    text-shadow: 2px 2px 18px rgba(71, 72, 49, 0.5);
    line-height: 1em;
    letter-spacing: 0.03em;
}

.archive_btn a{
    position: relative;
    padding-left: 24px;
    font-size: 12px;
    letter-spacing: 0.12em;
    transition: .3s;
}
.archive_btn a:hover{
    opacity: .6;
}
.archive_btn a::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: 15px;
    height: 1px;
    background-color: #333;
}

@media screen and (max-width: 1140px) {
    .area_box_s a .area_bg{
        object-fit: cover;
        height: 100%;
    }
}
@media screen and (max-width: 1100px) {
    .area_wrap .area_box{
        width: 33%;
        margin-right: 0;
    }
    .area_box a{
        height: 100%;
    }
    .area_box a .area_bg{
        object-fit: cover;
        height: 100%;
        width: auto;
    }

    .area_box_wrap{
        width: 30%;
    }
    .area_box_s a{
        height: 10vw;
        margin-bottom: 15px;
    }
    .area_box_s a .area_bg{
        object-fit: cover;
        width: auto;
        height: 100%;
    }
}
@media screen and (max-width: 1023px) {
}
@media screen and (max-width: 767px) {
    .area_wrap{
        flex-direction: column;
    }
    .area_wrap .area_box{
        width: 100%;
        margin-bottom: 5px;
    }
    .area_box a{
        height: 100px;
    }
    .area_box a .area_bg{
        object-fit: cover;
        height: auto;
        width: 100%;
    }
    .area_ttl{
        font-size: 50px;
        bottom: -9px;
    }

    .area_box_wrap{
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    .area_box_s{
        width: calc(50% - 2.5px);
    }
    .area_box_s a{
        height: 80px;
    }
    .area_box_s a .area_bg{
        width: 100%;
        height: auto;
    }
    .area_box_s a .area_ttl{
        font-size: 30px;
        bottom: -6px;
    }

    .area_detail .d_ttl{
        font-size: 12px;
    }
    .area_detail .d_value{
        font-size: 14px;
    }
    .area_detail .d_value span{
        font-size: 11px;
    }
}
@media screen and (max-width: 599px) {
}
@media screen and (max-width: 450px) {
    .area_wrap{
        margin-bottom: 5px;
    }
    .area_inner{
        padding-top: 0;
    }
    .area_detail .d_ttl{
        margin-right: 17px;
    }
}
@media screen and (max-width: 370px) {
}

/* ===================================
人気の会場
=================================== */
.sec.venue{
    padding: 0;
}
.venue_inner{
    max-width: 100%;
    overflow: hidden;
    padding: 0 20px;
    padding-top: 130px;
    padding-bottom: 140px;
}
.sec.venue .sec_ttl,
.venue_tab{
    max-width: 1100px;
    margin: auto;
}

/* タブボタン */
.venue_tab{
    display: flex;
    margin-top: 10px;
    margin-bottom: 22px;
}
.venue_tab li{
    position: relative;
    left: -20px;
    color: #999;
    font-size: 12px;
}
.venue_tab li:first-of-type{
    position: relative;
}
.venue_tab li:first-of-type::after{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background-color: #ccc;
}
.venue_tab li a{
    display: block;
    padding: 5px 20px;
    letter-spacing: 0.08em;
}

.venue_tab li.active{
    color: #c4a972;
}
.v_area{
    display: none;
}
.v_area.is-active{
    display: block;
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 1s;
}
@keyframes displayAnime{
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
}


/* スライダー */
.venue_list_wrap{
    max-width: 1220px;
    margin: auto;
}
.venue_slider,
.venue_slider02{
    position: relative;
    max-width: 1110px;
    padding: 0 60px;
}

.venue_list li{
    padding: 20px;
    background-color: #fff;
}
.venue_list li a{
    display: block;
    position: relative;
    transition: .3s;
}
.venue_list li a:hover{
    opacity: .6;
}
.swiper-slide.v_box::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 1;
    transition: .3s;
}
.swiper-slide.v_box.swiper-slide-active::after,
.swiper-slide.v_box.swiper-slide-next::after,
.swiper-slide.v_box.swiper-slide-next+.v_box::after{
    pointer-events: none;
    opacity: 0;
}
.swiper-slide.v_box:nth-of-type(1) a::before,
.swiper-slide.v_box:nth-of-type(2) a::before,
.swiper-slide.v_box:nth-of-type(3) a::before{
    content: "";
    position: absolute;
    z-index: 1;
    top: -10px;
    left: 0;
    width: 50px;
    height: 50px;
    border-radius: 0 0 100%;
    background-color: #fff;
}
.swiper-slide.v_box:nth-of-type(1)::before,
.swiper-slide.v_box:nth-of-type(2)::before,
.swiper-slide.v_box:nth-of-type(3)::before{
    content: "";
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 10px;
    width: 38px;
    height: 31px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.swiper-slide.v_box:nth-of-type(1)::before{
    background-image: url(../img/top/v_1.png);
}
.swiper-slide.v_box:nth-of-type(2)::before{
    background-image: url(../img/top/v_2.png);
}
.swiper-slide.v_box:nth-of-type(3)::before{
    background-image: url(../img/top/v_3.png);
}

.swiper-slide.v_box{
    position: relative;
    z-index: -1;
}

.v_img{
    aspect-ratio: 3/2;
}
.v_img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.v_ttl{
    margin-top: 14px;
    font-size: 14px;
    letter-spacing: 0.11em;
}
.v_detail{
    margin-top: 12px;
}
.v_detail .v_rank{
    color: #c4a972;
    font-size: 12px;
    letter-spacing: 0.08em;
}
.v_detail .v_rank::before{
    content: "";
    display: inline-block;
    width: 12px;
    height: 11px;
    margin-right: 2px;
    background-image: url(../img/top/rank_star.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.v_detail .v_price{
    font-size: 12px;
    letter-spacing: 0.12em;
}

/* スライダーボタン */
.prev-btn,
.next-btn{
    outline: none;
    cursor: pointer;
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: #293271;
}
.prev-btn{
    left: 0;
}
.next-btn{
    right: 0;
}
.prev-btn img,
.next-btn img{
    width: 8px;
}

/* スクロールバー */
.scrollbar{
    display: none;
}

@media screen and (max-width: 1100px) {
    .venue_inner{
        padding-top: 50px;
        padding-bottom: 70px;
    }
}
@media screen and (max-width: 1023px) {
    .swiper-slide.v_box.swiper-slide-next+.v_box::after{
        pointer-events: all;
        opacity: 1;
    }
}
@media screen and (max-width: 767px) {
    .venue_slider,
    .venue_slider02{
        padding: 0;
    }
    .prev-btn,
    .next-btn{
        display: none;
    }
    .scrollbar{
        display: block;
        height: 3px;
        margin-top: 20px;
    }
    .swiper-scrollbar-drag{
        background: rgba(226, 226, 226, 1);
    }
    .swiper-slide.v_box.swiper-slide-next::after{
        pointer-events: all;
        opacity: 1;
    }
}
@media screen and (max-width: 599px) {
}
@media screen and (max-width: 450px) {
    .venue_inner{
        padding-top: 44px;
        padding-bottom: 60px;
    }
    .venue_tab{
        margin-top: 2px;
        margin-bottom: 4px;
    }
    .v_ttl{
        font-size: 12px;
        margin-top: 3px;
    }
    .v_detail{
        margin-top: 1px;
    }
}
@media screen and (max-width: 400px) {
}

/* ===================================
おすすめ
=================================== */
.recommend{
    background-color: #293271;
    background-image:
        url(../img/top/reco_bg_p.svg),
        url(../img/top/reco_bg_l.png),
        url(../img/top/reco_bg_r.png);
    background-position:
        left top,
        left 1% bottom -20px,
        right 2% top -30px;
    background-size:
        11px,
        19%,
        26.5%;
    background-repeat:
        repeat,
        no-repeat,
        no-repeat;
}
.recommend .sec_ttl{
    margin-bottom: 60px;
    color: #fff;
}
.recommend_inner{
    padding-top: 70px;
    padding-bottom: 80px;
}

.reco_list{
    display: flex;
    justify-content: space-between;
    max-width: 1060px;
    margin: auto;
}
.reco_list li{
    width: calc((100% / 3) - 32px);
    background-color: #fff;
    border-radius: 500px 500px 0 0;
    background-image: url(../img/top/reco_bg.svg);
    background-repeat: no-repeat;
    background-position: center top 20px;
    background-size: 164px;
    transition: .3s;
}
.reco_list li a{
    display: block;
    padding: 20px;
    padding-top: 98px;
    padding-bottom: 33px;
    text-align: center;
}
.reco_list li:hover{
    opacity: .6;
}

.reco_list li .r_img{
    aspect-ratio: 3/2;
}
.reco_list li .r_img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.reco_list li .r_ttl{
    margin-bottom: 28px;
    color: #293271;
    font-size: 12px;
    font-weight: 600;
}
.reco_list li .r_img_txt{
    margin-top: 10px;
    font-size: 16px;
    letter-spacing: 0.12em;
}

@media screen and (max-width: 1100px) {
    .reco_list li{
        width: calc((100% / 3) - 15px);
    }
}
@media screen and (max-width: 1023px) {
    .recommend .sec_ttl{
        margin-bottom: 35px;
    }
    .reco_list li a{
        padding: 10px;
        padding-top: 80px;
        padding-bottom: 30px;
    }
    .reco_list li .r_ttl{
        margin-bottom: 14px;
    }
}
@media screen and (max-width: 767px) {
    .recommend{
        background-size:
            11px,
            70%,
            55.5%;
    }
    .reco_list{
        flex-direction: column;
    }
    .reco_list li{
        width: 100%;
        margin-bottom: 30px;
    }
    .reco_list li a{
        padding: 30px;
        padding-top: 120px;
        padding-bottom: 30px;
    }
    .reco_list li .r_ttl{
        font-size: 14px;
        margin-bottom: 55px;
    }
}
@media screen and (max-width: 599px) {
}
@media screen and (max-width: 450px) {
    .recommend_inner{
        padding-top: 50px;
        padding-bottom: 30px;
    }
    .recommend .sec_ttl{
        margin-bottom: 18px;
    }
    .recommend .sec_ttl span{
        display: block;
        margin-left: 0;
    }
    .reco_list{
        padding: 0 15px;
    }
    .reco_list li a{
        padding: 20px;
        padding-top: 86px;
        padding-bottom: 25px;
    }
    .reco_list li .r_ttl{
        margin-bottom: 25px;
        font-size: 12px;
        letter-spacing: 0.06em;
    }
    .reco_list li .r_img_txt{
        letter-spacing: 0.03em;
    }
}
@media screen and (max-width: 370px) {
    .area_box a .area_bg{
        width: auto;
        height: 100%;
    }
    .area_box_s a .area_bg {
        width: auto;
        height: 100%;
    }
}

/* ===================================
お役立ち情報
=================================== */
.info_list_wrap{
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.info_inner {
    padding-bottom: 130px;
}
.new_info{
    margin-right: 15px;
}
.new_info a{
    position: relative;
    display: block;
    width: 300px;
    height: 100%;
    padding: 18px;
    padding-bottom: 7px;
    border: 1px solid #e2e2e2;
    background-color: #fff;
    transition: .3s;
}
.new_info a:hover{
    opacity: .6;
}
.new_info a::after {
    content: "";
    position: absolute;
    right: 4px;
    bottom: 4px;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 10px 10px;
    border-color: transparent transparent #e2e2e2 transparent;
}
.new_info a .i_img{
    aspect-ratio: 3/2;
}
.new_info a .i_img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.new_info a .i_txt_box{
    padding: 13px 10px;
    padding-bottom: 0;
}

.info_list{
    display: flex;
    flex-wrap: wrap;
}
.info_list > li{
    width: calc((100% / 2) - 8px);
    margin-right: 15px;
    margin-bottom: 15px;
}
.info_list li:nth-of-type(2n){
    margin-right: 0;
}
.info_list > li:nth-last-of-type(1),
.info_list > li:nth-last-of-type(2){
    margin-bottom: 0;
}
.info_list li a{
    position: relative;
    display: flex;
    height: 100%;
    align-items: center;
    border: 1px solid #e2e2e2;
    background-color: #fff;
    padding: 18px;
    transition: .3s;
}
.info_list li a::after {
    content: "";
    position: absolute;
    right: 4px;
    bottom: 4px;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 10px 10px;
    border-color: transparent transparent #e2e2e2 transparent;
}
.info_list li a:hover{
    opacity: .6;
}
.info_list li a .i_img{
    flex-shrink: 0;
    width: 150px;
    aspect-ratio: 3/2;
    margin-right: 20px;
}
.info_list li a .i_img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.info_list li a .i_txt_box{
    height: fit-content;
}

.i_ttl{
    font-size: 14px;
    letter-spacing: 0.12em;
    line-height: 1.5em;
}
.i_tag{
    position: relative;
    top: -6px;
}
.i_tag li{
    display: inline-block;
    letter-spacing: 0.12em;
    color: #999999;
    font-size: 12px;
    margin-right: 4px;
    width: fit-content;
}

/* NEｗラベル */
.new_info.new a::before{
    content: "New";
    position: absolute;
    top: 0;
    left: 7px;
    z-index: 5;
    display: block;
    width: 51px;
    height: 64px;
    color: #fff;
    text-align: center;
    font-family: 'Shippori Mincho', serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 50px;
    letter-spacing: 0.12em;
    background-image: url(../img/top/info_new_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.info_list li.new a::before{
    content: "New";
    position: absolute;
    top: 0;
    left: 7px;
    z-index: 10;
    display: block;
    width: 33px;
    height: 41px;
    color: #fff;
    text-align: center;
    font-family: 'Shippori Mincho', serif;
    font-weight: 600;
    font-size: 10px;
    line-height: 34px;
    letter-spacing: 0.12em;
    background-image: url(../img/top/info_new_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media screen and (max-width: 1100px) {
    .info_inner{
        padding-bottom: 60px;
    }
    .new_info{
        margin-right: 15px;
    }
    .info_list > li{
        width: calc((100% / 2) - 8px);
        margin-right: 15px;
        margin-bottom: 15px;
    }
    .info_list > li:nth-last-of-type(1),
    .info_list > li:nth-last-of-type(2){
        margin-bottom: 0;
    }
    .info_list li a{

    }
}
@media screen and (max-width: 1023px) {
    .info_list_wrap{
        flex-direction: column;
    }
    .new_info{
        margin-right: 0;
        margin-bottom: 15px;
    }
    .new_info a{
        display: flex;
        width: 100%;
        padding-bottom: 10px;
    }
    .new_info a img{
        width: 100%;
    }
    .new_info a .i_txt_box{
        width: 100%;
        padding-left: 20px;
    }
}
@media screen and (max-width: 767px) {
    .new_info{
        margin-bottom: 10px;
    }
    .new_info a{
        flex-direction: column;
        padding: 8px;
    }
    .new_info a .i_txt_box{
        padding-left: 0;
    }
    .new_info.new a::before{
        left: 12px;
    }

    .info_list{
        flex-direction: column;
    }
    .info_list > li{
        width: 100%;
        margin-bottom: 15px;
    }
    .info_list > li:nth-last-of-type(1),
    .info_list > li:nth-last-of-type(2){
        margin-bottom: 15px;
    }
    .info_list li a{
        padding: 8px;
    }
    .info_list li.new a::before{
        left: 8px;
    }
}
@media screen and (max-width: 599px) {
}
@media screen and (max-width: 450px) {
    .info_inner{
        padding-bottom: 70px;
    }
    .info_list > li{
        margin-bottom: 10px;
    }
    .info_list > li:nth-last-of-type(1),
    .info_list > li:nth-last-of-type(2){
        margin-bottom: 10px;
    }
}
@media screen and (max-width: 370px) {
    .info_list li a .i_img{
        flex-shrink: 0;
        width: 90px;
        margin-right: 15px;
    }
    .info_list li a .i_img img{
        object-fit: cover;
        height: 100%;
    }
}
