@charset "utf-8";

#contents .main-container >h2{
  margin-bottom: 20px;
}
.blog__wrapper{
    /*border: 1px solid #C3B5FF;*/
    border: 1px solid #003480;
    /*border-radius: 5px;*/
    margin: 0 0 10px;
}
.blog__image img{
    width: 80px;
    height: 80px;
    object-fit: cover;
}
.blog__image{
    margin-right: 10px;
}
.blog__body p,
.blog__body p span{
    font-size:12px!important;
}
.blog__wrapper dt{
    align-items: center;
    /*background: linear-gradient(to right, #FFA8F6, #BCFDFF);*/
    background: #003480;
    padding: 4px 10px;
    /*border-radius: 5px 5px 0 0;*/
    display: flex;
    justify-content: space-between;
}
.blog__wrapper h3{
    font-size: 14px;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.blog__wrapper dt span{
    font-size: 12px;
    white-space: nowrap;
    color: #fff;
}
.blog__contents__inner{
    display: flex;
}
.blog__contents{
    padding: 10px;
    background: #fff;
}
.blog__body {
    width: calc(100% - 90px);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 38px;
}
.blog__btn--more{
    text-align: right;
    margin-top: -17px;
}
.blog__btn--more a{
    font-size: 10px;
    border-bottom: 1px solid #000;
}
@media screen and (min-width: 1000px) {
    .blog__body p,
    .blog__body p span{
        font-size:14px!important;
    }
    .blog__wrapper h3{
        font-size:18px;
        margin: 0;
    }
    .blog__contents span{
        font-size:12px;
    }
    .blog__image img{
        width: 100px;
        height: 100px;
    }
    .blog__contents dt{
        align-items: center;
        padding: 2px 10px;
        border-radius: 3px 3px 0 0;
        margin-top: 0;
    }
    .blog__image{
        margin-right: 20px;
    }
    .blog__wrapper dt{
        padding: 6px 10px;
    }
    .blog__btn--more a{
        font-size: 14px;
    }
    .blog__contents{
        padding: 20px;
        margin-left: 0;
    }
    .blog__wrapper{
        margin: 0 0 20px;
    }
} 

/*ページャー*/
.c-pager{
    margin-top: 20px;
    background: none;
    padding-bottom: 0;
}

.c-pager ul{
    display: flex;
    justify-content: center;
}
.c-pager ul li{
    font-family: 'Shippori Mincho B1','Shippori Mincho','Libre Bodoni', 'Montserrat', 'Noto Sans JP', serif, sans-serif;
    font-size: 26px;
    margin: 0 2px;
}
.c-pager ul li a{
    color: #003480;
    background: #fff;
    /*border: 1px solid #C3B5FF;*/
    border: 1px solid #003480;
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 16px;
    /*border-radius: 3px;*/
    font-weight: 500;
}
.c-pager ul li.next a,
.c-pager ul li.prev a{
    position: relative;
}
.c-pager ul li.next a::after{
    position: absolute;
    content: "";
    width: 8px;
    height: 12px;
    top: 0;
    bottom: 0;
    left: 1px;
    right: 0;
    margin: auto;
    background: url(../images/icon-arrow-next.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.c-pager ul li.prev a::before{
    position: absolute;
    content: "";
    width: 8px;
    height: 12px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 1px;
    margin: auto;
    background: url(../images/icon-arrow-next.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(180deg);
}
.c-pager ul li span{
    background: #003480;
    color: #fff;
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 16px;
    /*border-radius: 3px;*/
    font-weight: 600;
    border: 1px solid #003480;
}

@media screen and (min-width: 600px) {
    .c-pager ul li span{
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
    .c-pager ul li a{
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
    .c-pager ul li{
        margin: 0 5px;
    }
    .c-pager ul li.next a::after,
    .c-pager ul li.prev a::before{
        width: 10px;
        height: 18px;
    }
}
