@charset "utf-8";


/* お知らせ 一覧
-------------------------------*/

.news_cat_nav{
    margin-bottom: 120px;
}
.news_cat_nav ul{
    width: 100%;
    background-color: #f7f8f8;
    padding: 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.news_cat_nav li.hd{
    width: 170px;
    font-size:20px;
    line-height: 1.3em;
    font-weight: 500;
    margin-right: 30px;
    border-right: solid 1px #000;
}
.news_cat_nav li.btn{
    margin-right: 15px;
    width: 130px;
    border-radius: 30px;
    background: -moz-linear-gradient(left, #7e2984, #cc68d4);
    background: -webkit-linear-gradient(left, #7e2984, #cc68d4);
    background: linear-gradient(to right, #7e2984, #cc68d4);
    overflow: hidden;
}
.news_cat_nav li.btn a{
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 20px;
    line-height: 1.2em;
    padding: 8px;
    color: #2e3235;
    font-weight: 500;
    position: relative;
}
.news_cat_nav li.btn a:hover{
    color: #fff;
}
.news_cat_nav li.btn a span{
    position: relative;
    z-index: 2;
}
.news_cat_nav li.btn a:after{
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: solid 1px  #7e2984;
    background-color: #fff;
    content: "";
    transition: 0.3s;
    opacity: 1;
}
.news_cat_nav .cat-all li.btn a.catnum-all:after,
.news_cat_nav .cat-0 li.btn a.catnum-0:after,
.news_cat_nav .cat-1 li.btn a.catnum-1:after,
.news_cat_nav .cat-2 li.btn a.catnum-2:after,
.news_cat_nav li.btn a:hover:after{
    opacity: 0;
}
.news_cat_nav .cat-all li.btn a.catnum-all,
.news_cat_nav .cat-0 li.btn a.catnum-0,
.news_cat_nav .cat-1 li.btn a.catnum-1,
.news_cat_nav .cat-2 li.btn a.catnum-2{
    color: #fff;
}



@media screen and (max-width:910px){

    .news_cat_nav{
        margin-bottom: 80px;
    }
    .news_cat_nav ul{
        justify-content: center;
    }
    .news_cat_nav li.hd{
        display: none;
    }
    .news_cat_nav li.btn{
        margin-right: 8px;
        margin-left: 8px;
    }
    
}
@media screen and (max-width:640px){
    .news_cat_nav ul{
        padding: 10px;
    }
    
    .news_cat_nav li.btn{
        margin-right: 4px;
        margin-left: 4px;
    }

    
    
}






.news_list{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.news_list li{
    width: 30%;
    margin-left: 1.5%;
    margin-right: 1.5%;
    margin-bottom: 50px;
}
.news_list li a{
    display: block;
    color: #000;
}
.news_list li a:hover{
    color: #7e2984;
}
.news_list li .date{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.news_list li .ymd{
    color: #7e2984;
}
.news_list li .cat{
    display: inline-block;
    width: 130px;
    text-align: center;
    padding: 3px;
    border-radius: 20px; 
    color: #fff;
    font-weight: 500;
    background-color: #7e2984;
}
.news_list li .cat.num-1{
    background-color: #cc68d4;
}
.news_list li .img{
    width: 100%;
    max-width: 360px;
    aspect-ratio: 36 / 26;
    margin-bottom: 20px;
    transition: 0.3s;
}
.news_list li .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_list li a:hover .img{
    filter: alpha(opacity=80);
    -moz-opacity:0.80;
    opacity:0.80;
}

.news_list li .ttl{
    line-height: 1.5em;
}
@media screen and (max-width:910px){
    .news_list li{
        width: 47%;
        margin-left: 1.5%;
        margin-right: 1.5%;
    }
    .news_list li .cat{
        width: 100px;
    }
}
@media screen and (max-width:640px){
    .news_list li{
        width: 100%;
        border-bottom: dashed 1px #ccc;
        padding-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }
    .news_list li a{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .news_list li .date{
        width: 100%;
        justify-content: flex-start;
    }
    .news_list li .ymd{
        margin-right: 1em;
    }
    .news_list li .cat{
        padding: 1px;
    }
    .news_list li .img{
        width: 35%;
        margin-bottom: 0;
    }
    .news_list li .ttl{
        width: 60%;
    }

}






/* ページャーボタン */
.pager{
    width: 100%;
    text-align:center;
    padding:30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*ページャーボタン*/
.pager a{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
/*    border: 1px solid #999;*/
    background-color: transparent;
    color: #2e3235;
    font-size: 16px;
    line-height: 1.2em;
    text-decoration: none;
    margin:0 25px;
    position: relative;
}
.pager a:before{
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color:#f7f8f8;
    content: "";
    opacity: 1;
    transition: 0.3s;
}
.pager a:after{
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: -moz-linear-gradient(left, #7e2984, #cc68d4);
    background: -webkit-linear-gradient(left, #7e2984, #cc68d4);
    background: linear-gradient(to right, #7e2984, #cc68d4);
    content: "";
    opacity: 0;
    transition: 0.3s;
}

.pager a.current{
    color: #fff;
}
.pager a:hover{
    color: #fff;
}
.pager a.current:before,
.pager a:hover:before{
    opacity: 0;
}
.pager a.current:after,
.pager a:hover:after{
    opacity: 1;
}
.overPagerPattern{
}
.pager a.btn_ya{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: transparent;
}
.pager a.btn_ya.next:before{
    background-color:transparent;
    background: url(../img/common/next_off.png) center center/contain no-repeat;
}
.pager a.btn_ya.next:after{
    background-color:transparent;
    background: url(../img/common/next_on.png) center center/contain no-repeat;
}
.pager a.btn_ya.prev:before{
    background-color:transparent;
    background: url(../img/common/prev_off.png) center center/contain no-repeat;
}
.pager a.btn_ya.prev:after{
    background-color:transparent;
    background: url(../img/common/prev_on.png) center center/contain no-repeat;
}

@media screen and (max-width:910px){
    .pager a{
        margin-left: 2px;
        margin-right: 2px;
    }
    .pager a.btn_ya{
        width: 40px;
        height: 40px;
    }
    
    
    
}
@media screen and (max-width:640px){
    
    .pager a{
        width: 30px;
        height: 30px;
        font-size: 14px;
        line-height: 1.2em;
    }
    .pager a.btn_ya{
        width: 30px;
        height: 30px;
    }

    

}






/* お知らせ 詳細ページ
-------------------------------*/
.news_cont{
    padding-top: 50px;
}
.news_cont .ttl02{
    margin-bottom: 20px;
    padding-left: 10px;
}
#up_ymd{
    text-align:right;
    margin-bottom: 20px;
}

#up_ymd .cat a{
    display: inline-block;
    width: 110px;
    text-align: center;
    padding: 2px;
    border-radius: 20px; 
    color: #fff;
    font-weight: 500;
    background-color: #7e2984;
    margin-left: 15px;
}
#up_ymd .cat.num-1 a{
    background-color: #cc68d4;
}

.news_detail{
    width: 100%;
    margin-bottom: 100px;
}

.detailUpfile{
    margin:5px 0 35px;
    text-align:center;
}
.detailUpfile img{
    max-width:100%;
    height:auto;
}

.news_detail ul{
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 1em;
}
.news_detail ul li{
    margin-left: 1em;
    list-style: disc;
}
.news_detail ol{
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 1em;
}
.news_detail ol li{
    margin-left: 1em;
    list-style: decimal;
}



.news_cont .btn_more a{
    margin-left: auto;
    margin-right: auto;
}



@media screen and (max-width:640px){
    .news_detail{
        margin-bottom: 60px;
    }

}







