@charset "utf-8";


.n_wrap{
    padding-top: 84px;
    width: 79vw;
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-direction: row; /* row row-reverse column */
    justify-content: space-between; /* flex-start  center  space-between */
    align-items: flex-start; /* flex-start  center  */
}

/*----------------------------------------------------
  .block_summary
--------------------------------------------------- */
.block_summary{
    position: relative;
    width: 100%;
    width: 20.3%;
    padding: 0px 0 50px;
}
.block_summary .inner{
    /* width: 79vw;
    max-width: 1080px;
    margin: 0 auto; */
    position: relative;
}
.block_summary.detail .inner{
    /* width: 62.81vw;
    max-width: 858px; */
}
.block_summary .title{
    font-size: 34px;
    line-height: 1;
    margin-bottom: 50px;
}

.block_summary ul.menu{
    width: 100%;
    padding-bottom: 20px;
}
.block_summary ul.menu li{
    margin-bottom: 27px;
}
.block_summary ul.menu li a{
    display: block;
    font-size: 16px;
    line-height: 1;
    padding-left: 0px;
    -webkit-transition: all 0.5s 0s ease;
       -moz-transition: all 0.5s 0s ease;
            transition: all 0.5s 0s ease;
}
.block_summary ul.menu li a:hover{
    opacity: 0.5;
}
.block_summary .dropdown_area.category{
    z-index: 2;
}
.block_summary .dropdown_area.sort_category{
    /* position: absolute;
    top: 0;
    right: 224px; */
}
.block_summary .dropdown_area.sort_back{
    /* position: absolute;
    top: 0;
    right: 0px; */
}
.block_summary .dropdown_area{
    position: relative;
    z-index: 1;
}
.block_summary .dropdown_area .now{
    width: 200px;
    padding-left: 20px;
    height: 40px;
    position: relative;
    line-height: 40px;
    background: #EEEEEE;
    font-size: 12px;
}
.block_summary .dropdown_area .now:after{
    content:"";
    position: absolute;
    top: 50%;
    right: 17px;
    width: 8px;
    height: 12px;
    margin-top: -6px;
    background: url(../img/contact/arrow_down.png) no-repeat center center;
    background-size: contain;
    -webkit-transition: all 0.5s 0s ease;
       -moz-transition: all 0.5s 0s ease;
            transition: all 0.5s 0s ease;
}
.block_summary .dropdown_area.open .now:after{
    -webkit-transform: scale3d(1,1,1) translate(0px,0px) rotate(180deg);
       -moz-transform: scale3d(1,1,1) translate(0px,0px) rotate(180deg);
            transform: scale3d(1,1,1) translate(0px,0px) rotate(180deg);
}
.block_summary .dropdown_area ul.list{
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    background: #EEEEEE;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s 0s ease;
       -moz-transition: all 0.5s 0s ease;
            transition: all 0.5s 0s ease;
}
.block_summary .dropdown_area.open ul.list{
    opacity: 1;
    visibility: visible;
    padding: 10px 0;
}
.block_summary .dropdown_area ul.list li{
    
}
.block_summary .dropdown_area ul.list li a{
    padding-left: 20px;
    line-height: 30px;
    font-size: 12px;
    display: block;
    -webkit-transition: all 0.5s 0s ease;
       -moz-transition: all 0.5s 0s ease;
            transition: all 0.5s 0s ease;
}
.block_summary .dropdown_area ul.list li a:hover{
    opacity: 0.5;
}

.block_summary .btn{
    position: absolute;
    top: 0;
    right: 0;
}
.block_summary .btn a{
    display: block;
    margin: 0 auto;
    width: 200px;
    height: 40px;
    border:1px #002247 solid;
    color: #002247;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    border-radius: 30px;
    -webkit-border-radius: 30px;  
    -moz-border-radius: 30px;
    -webkit-transition: all 0.5s 0s ease;
       -moz-transition: all 0.5s 0s ease;
            transition: all 0.5s 0s ease;
}
.block_summary .btn a:hover{
    background:#002247;
    color: #FFF;
}

@media only screen and (max-width: 896px) {
    
    .n_wrap{
        padding-top: 0px;
        width: auto;
        margin: 0 20px;
        display: block;
    }
    .block_summary{
        width: 100%;
        padding: 50px 0 50px;
    }
    .block_summary .inner{
        width: auto;
        max-width: auto;
        margin: 0;
    }
    .block_summary.detail .inner{
        width: auto;
        max-width: auto;
        margin: 0 10.66666vw;
    }
    .block_summary .title{
        font-size: 24px;
        line-height: 40px;
        margin-bottom: 30px;
    }
    .block_summary .dropdown_area.sort_category{
        position: relative;
        top: 0;
        right: 0px;
        width: 100%;
        z-index: 2;
    }
    .block_summary .dropdown_area.sort_back{
        position: relative;
        top: 0;
        right: 0px;
        width: 100%;
    }
    .block_summary .dropdown_area{
        margin-bottom: 10px;
    }
    .block_summary .dropdown_area .now{
        width : -webkit-calc(100% - 20px) ;
        width : calc(100% - 20px) ;
        padding-left: 20px; 
    }
    .block_summary .dropdown_area .now:after{
        background: url(../img/common/arrow_down_bl.svg) no-repeat center center;
        background-size: contain;
    }
    .block_summary .dropdown_area ul.list{
    }
    .block_summary .btn{
        top: 5px;
        right: -20px;
    }
    .block_summary .btn a{
        width: 127px;
        height: 30px;
        line-height: 30px;
    }

}


/*----------------------------------------------------
  .block_summary_detail
--------------------------------------------------- */
.block_summary_detail{
    position: relative;
    width: 100%;
    padding: 90px 0 50px;
}
.block_summary_detail .inner{
    width: 62.81vw;
    max-width: 858px;
    margin: 0 auto;
    position: relative;
}
.block_summary_detail .title{
    font-size: 34px;
    line-height: 1;
}
.block_summary_detail .btn{
    position: absolute;
    top: 0;
    right: 0;
}
.block_summary_detail .btn a{
    display: block;
    margin: 0 auto;
    width: 200px;
    height: 40px;
    border:1px #002247 solid;
    color: #002247;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    border-radius: 30px;
    -webkit-border-radius: 30px;  
    -moz-border-radius: 30px;
    -webkit-transition: all 0.5s 0s ease;
       -moz-transition: all 0.5s 0s ease;
            transition: all 0.5s 0s ease;
}
.block_summary_detail .btn a:hover{
    background:#002247;
    color: #FFF;
}

@media only screen and (max-width: 896px) {
    .block_summary_detail{
        padding: 50px 0 50px;
    }
    .block_summary_detail .inner{
        width: auto;
        max-width: auto;
        margin: 0 10.66666vw;
    }
    .block_summary_detail .inner{
        width: auto;
        max-width: auto;
        margin: 0 10.66666vw;
    }
    .block_summary_detail .title{
        font-size: 24px;
        line-height: 40px;
        margin-bottom: 30px;
    }
    .block_summary_detail .btn{
        top: 5px;
        right: -20px;
    }
    .block_summary_detail .btn a{
        width: 127px;
        height: 30px;
        line-height: 30px;
    }

}
/*----------------------------------------------------
  .block_list
--------------------------------------------------- */
.block_list{
    position: relative;
    width: 68.5%;
}
.block_list .inner{
    position: relative;
}
.block_list .inner .list{
    overflow: hidden;
    letter-spacing: -0.4em;
}
.block_list .inner .list .column{
    display: inline-block;
    letter-spacing: normal;
    vertical-align: top;
    width: 48.6%;
    margin-right:2.1%;
    margin-bottom: 80px;
}
.block_list .inner .list .column:nth-child(2n){
    margin-right: 0;
}
.block_list .inner .list .column figure{
    width: 100%;
    height: 15.222vw;
    position: relative;
    margin-bottom: 20px;
    -webkit-transition: all 0.5s 0s ease;
       -moz-transition: all 0.5s 0s ease;
            transition: all 0.5s 0s ease;
}
.block_list .inner .list .column a:hover figure{
    opacity: 0.5;
}
@media only screen and (min-width: 1366px) {
    .block_list .inner .list .column figure{
        height: 208px;
    }
}
.block_list .inner .list .column figure span{
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
}
.block_list .inner .list .column .meta{
    overflow: hidden;
    margin-bottom: 15px;
}
.block_list .inner .list .column .meta time{
    float: left;
    font-size: 14px;
    line-height: 24px;
}
.block_list .inner .list .column .meta .category{
    float: right;
}
.block_list .inner .list .column .meta .category a{
    display: block;
    /* width: 111px; */
    padding: 0 10px;
    line-height: 24px;
    background: #aaaaaa;
    text-align: center;
    font-size: 12px;
    color: #FFF;
    border-radius: 4px;
    -webkit-border-radius: 4px;  
    -moz-border-radius: 4px;
    -webkit-transition: all 0.5s 0s ease;
       -moz-transition: all 0.5s 0s ease;
            transition: all 0.5s 0s ease;
}
.block_list .inner .list .column .meta .category a:hover{
    opacity: 0.5;
}
/*お知らせ*/
.block_list .inner .list .column .meta .category a.category-information{
    background: #aaaaaa;
}
/*イベント情報*/
.block_list .inner .list .column .meta .category a.category-event{
    background: #002247;
}
/*商品情報*/
.block_list .inner .list .column .meta .category a.category-product{
    background: #0085CE;
}


/*かまわぬ*/
.block_list .inner .list .column .meta .category a.category-kamawanu{
    background: #002c57;
}
/*まめぐい*/
.block_list .inner .list .column .meta .category a.category-mamegui{
    background: #2d3c25;
}
/*SHARED TOKYO*/
.block_list .inner .list .column .meta .category a.category-sharedtokyo{
    background: #0085ce;
}
/*特集*/
.block_list .inner .list .column .meta .category a.category-feature{
    background: #AD9236;
}
/*店舗情報*/
.block_list .inner .list .column .meta .category a.category-shop{
    background: #6A7784;
}
/*CARまわぬ*/
.block_list .inner .list .column .meta .category a.category-car{
    background: #002c57;
}
/*その他*/
.block_list .inner .list .column .meta .category a.category-other{
    background: #aaaaaa;
}
/*企業情報*/
.block_list .inner .list .column .meta .category a.category-company{
    background: #A1B4C6;
}
.block_list .inner .list .column .column_title{
    font-size: 16px;
    line-height: 28px;
    -webkit-transition: all 0.5s 0s ease;
       -moz-transition: all 0.5s 0s ease;
            transition: all 0.5s 0s ease;
}
.block_list .inner .list .column a:hover .column_title{
    opacity: 0.5;
}
@media only screen and (max-width: 896px) {
    .block_list{
        width: 100%;
    }
    .block_list .inner{
        width: auto;
        max-width: auto;
        margin: 0;
    }
    .block_list .inner .list{
    }
    .block_list .inner .list .column{
        display: inline-block;
        letter-spacing: normal;
        vertical-align: top;
        width: 47.0%;
        margin-right: 5.3%;
        margin-bottom: 40px;
    }
    .block_list .inner .list .column:nth-child(3n){
        margin-right: 5.3%;
    }
    .block_list .inner .list .column:nth-child(2n){
        margin-right:0vw;
    }
    .block_list .inner .list .column figure{
        height: 25.6vw;
        margin-bottom: 10px;
    }
    .block_list .inner .list .column a:hover figure{
        opacity: 1;
    }
    .block_list .inner .list .column figure span{
    }
    .block_list .inner .list .column .meta{
        margin-bottom: 5px;
        display: flex;
        flex-direction: column-reverse; /* row row-reverse column */
    }
    .block_list .inner .list .column .meta time{
        float: none;
    }
    .block_list .inner .list .column .meta .category{
        float: none;
        margin-bottom: 5px;
    }
    .block_list .inner .list .column .meta .category a{
        width:auto;
        display: block;
        font-size: 10px;
        line-height: 20px;
    }
    .block_list .inner .list .column .meta .category a:hover{
        opacity: 1;
    }
    .block_list .inner .list .column .column_title{
        font-size: 14px;
        line-height: 20px;
    }
    .block_list .inner .list .column a:hover .column_title{
        opacity: 1;
    }
}

.block_list .inner .list .no_entry{
    letter-spacing: normal;
    text-align: center;
    padding: 100px 0;
}


/*----------------------------------------------------
  .block_entry
--------------------------------------------------- */
.block_entry{
    position: relative;
}
.block_entry .inner{
    width: 62.81vw;
    max-width: 858px;
    margin: 0 auto;
    position: relative;
}
.block_entry .inner header{
    padding-bottom: 20px;
    border-bottom: 2px #AAAAAA solid;
    margin-bottom: 50px;
}
.block_entry .inner header .meta{
    
}

.block_entry .inner header .meta{
    overflow: hidden;
    margin-bottom: 15px;
}
.block_entry .inner header .meta time{
    float: left;
    font-size: 16px;
    line-height: 24px;
    margin-right: 15px;
}
.block_entry .inner header .meta .category{
    float: left;
}
.block_entry .inner header .meta .category a{
    display: block;
    /* width: 111px; */
    padding: 0 10px;
    line-height: 24px;
    background: #002247;
    text-align: center;
    font-size: 12px;
    color: #FFF;
    border-radius: 4px;
    -webkit-border-radius: 4px;  
    -moz-border-radius: 4px;
    -webkit-transition: all 0.5s 0s ease;
       -moz-transition: all 0.5s 0s ease;
            transition: all 0.5s 0s ease;
}
.block_entry .inner header .meta .category a:hover{
    opacity: 0.5;
}

/*お知らせ*/
.block_entry .inner header .meta .category a.category-information{
    background: #aaaaaa;
}
/*イベント情報*/
.block_entry .inner header .meta .category a.category-event{
    background: #002247;
}
/*商品情報*/
.block_entry .inner header .meta .category a.category-product{
    background: #0085CE;
}
/*かまわぬ*/
.block_entry .inner header .meta .category a.category-kamawanu{
    background: #002c57;
}
/*まめぐい*/
.block_entry .inner header .meta .category a.category-mamegui{
    background: #2d3c25;
}
/*SHARED TOKYO*/
.block_entry .inner header .meta .category a.category-sharedtokyo{
    background: #0085ce;
}
/*特集*/
.block_entry .inner header .meta .category a.category-feature{
    background: #AD9236;
}
/*店舗情報*/
.block_entry .inner header .meta .category a.category-shop{
    background: #6A7784;
}
/*CARまわぬ*/
.block_entry .inner header .meta .category a.category-car{
    background: #002c57;
}
/*その他*/
.block_entry .inner header .meta .category a.category-other{
    background: #aaaaaa;
}
/*企業情報*/
.block_entry .inner header .meta .category a.category-company{
    background: #A1B4C6;
}
.block_entry .inner header .meta .share{
    float: right;
    overflow: hidden;
}
.block_entry .inner header .meta .share li{
    float: left;
    font-size: 16px;
    margin-left:15px;
}
.block_entry .inner header .meta .share li a{
    display: block;
    font-size: 27px;
    line-height: 1;
}
.block_entry .inner header .title{
    font-size: 24px;
    line-height: 40px;
}
.block_entry .inner .entry{

}
.block_entry .inner .entry .image_area{
    margin-top: 20px;
    margin-bottom: 50px;
}
.block_entry .inner .entry p{
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 28px;
}
.block_entry .inner .entry .slide_area{
    margin-top: 50px;
    margin-bottom: 50px;
}
.block_entry .inner .entry .slide_area .column{

}
.block_entry .inner .entry .slide_area .column figure span{
    display: block;
    width: 100%;
    height: 530px;
}
.block_entry .inner .entry .slide_area .column figure figcaption{
    text-align: center;
    font-size: 14px;
    padding-top: 28px;
    color: #777777;
}
.block_entry .inner .entry .slide_area .slick-prev{
    top: 253px;
    margin-left: -400px;
}
.block_entry .inner .entry .slide_area .slick-next{
    top: 253px;
    margin-left: 360px;
}
@media only screen and (max-width: 896px) {
    .block_entry{
        margin-top: -60px;
    }
    .block_entry .inner{
        width: auto;
        max-width: auto;
        margin: 0 10.66666vw;
    }
    .block_entry .inner header{
        padding-bottom: 20px;
        border-bottom: 2px #AAAAAA solid;
        margin-bottom: 50px;
    }
    .block_entry .inner header .meta{
        padding-top: 50px;
        margin-bottom: 15px;
    }
    .block_entry .inner header .meta time{
    }
    .block_entry .inner header .meta .category{
    }
    .block_entry .inner header .meta .category a{
        width: auto;
        padding: 0 10px;
    }
    .block_entry .inner header .meta .category a:hover{
    }
    .block_entry .inner header .meta .share{
        float: none;
        overflow: hidden;
        position: absolute;
        top: 0;
        right: 0;
    }
    .block_entry .inner header .meta .share li{
    }
    .block_entry .inner header .meta .share li a{
    }
    .block_entry .inner header .title{
        font-size: 20px;
        line-height: 32px;
    }
    .block_entry .inner .entry{
    }
    .block_entry .inner .entry .image_area{
    }
    .block_entry .inner .entry p{
    }
    .block_entry .inner .entry .slide_area{
        width: 100vw;
        margin-left:-10.66666vw;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .block_entry .inner .entry .slide_area .column{
    }
    .block_entry .inner .entry .slide_area .column figure span{
        height: 230px;
    }
    .block_entry .inner .entry .slide_area .column figure figcaption{
        width: 214px;
        margin: 0 auto;
        font-size: 12px;
        padding-top: 18px;
    }
    .block_entry .inner .entry .slide_area .slick-prev{
        top: 100px;
        left: 20px;
        margin-left: 0px;
        background: #002247 url(../img/common/arrow_left.svg) no-repeat center center;
        background-size: 5px auto;
    }
    .block_entry .inner .entry .slide_area .slick-next{
        top: 100px;
        left: auto;
        right: 20px;
        margin-left: 0px;
        background: #002247 url(../img/common/arrow_right.svg) no-repeat center center;
        background-size: 5px auto;
    }

}