#contents-area,
.lyt-col-1 #contents-body{
    width: 100%;
    min-width: 990px;
}
h1.mv-img{
    text-align: center;
}

/* タブ共通 */
.tab-wrap{
    position: relative;
}
.tab-wrap:after{
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
}
.tab-wrap .tab-wrap-ul{
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    box-sizing: border-box;
}
.tab-wrap li{
    display: flex;
    text-align: center;
    width: 25%;
    margin: 0 1px;
}
.tab-wrap li span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 0;
    background: #2a94e6;
    background: padding-box linear-gradient(to bottom,#0b5bce,#0f82b8),border-box repeating-linear-gradient(to bottom,#0b5bce,#0f82b8);
    border: 2px solid transparent;
    color: #fff;
    font-size: 16px;
    line-height: 1.25;
    text-decoration: none;
    cursor: pointer;
}
.tab-wrap li span:hover{
    text-decoration: none;
    opacity: 0.7;
}
.tab-wrap li.is-active{
    position: relative;
    z-index: 2;
}
.tab-wrap li.is-active span{    
    border: 2px solid transparent;
    background: #f5f5f5;
    background: padding-box linear-gradient(#f5f5f5,#f5f5f5),border-box repeating-linear-gradient(to bottom,#0b5bce,#0f82b8);
    color: #333;
    font-weight: bold;
}
.tab-wrap li.is-active span:hover{
    cursor: default;
    opacity: 1;
}
.tab-wrap li br{
    display: none;
}
/* 上部のタブ */
.tab-wrap.tab-wrap-up{
    margin-top: 30px;
}
.tab-wrap.tab-wrap-up:after{
    border-bottom: 2px solid #0f82b8;
    bottom: 0;
}
.tab-wrap.tab-wrap-up li span,
.tab-wrap.tab-wrap-up li.is-active span{
    border-radius: 5px 5px 0 0;
    border-bottom: none;
}
/* 下部のタブ */
.tab-wrap.tab-wrap-under{
    margin-bottom: 50px !important;
}
.tab-wrap.tab-wrap-under li span{
    background: padding-box linear-gradient(to top,#0b5bce,#0f82b8),border-box repeating-linear-gradient(to top,#0b5bce,#0f82b8);
}
.tab-wrap.tab-wrap-under li.is-active span{
    background: padding-box linear-gradient(#f5f5f5,#f5f5f5),border-box repeating-linear-gradient(to top,#0b5bce,#0f82b8);
}
.tab-wrap.tab-wrap-under:after{
    border-top: 2px solid #0f82b8;
    top: 0;
}
.tab-wrap.tab-wrap-under li span,
.tab-wrap.tab-wrap-under li.is-active span{
    border-radius: 0 0 5px 5px;
    border-top: none;
    padding: 17px 0 13px;
}

/* 記事エリア */
.article-wrap{
    margin: 0;
    padding: 25px 20px 10px;
    background: #f5f5f5;
}
.article-wrap a{
    text-decoration: none;
}
.article-wrap a:hover{
    text-decoration: none;
    opacity: 0.7;
}
.article-wrap .article-ul{
    max-width: 910px;
    margin: 0 auto;
}
.article-wrap .article-ul .article-li{
    margin-bottom: 15px;
}
.article-wrap .article-ul .article-li a{
    position: relative;
    display: block;
    border: 1px solid transparent;
    background: #fff;
    background: padding-box linear-gradient(#fff,#fff),border-box repeating-linear-gradient(to bottom,#0b5bce,#0f82b8);
    border-radius: 5px;
    padding: 15px;
    border-right-width: 20px;
    color: #333;
}
.article-wrap .article-ul .article-li a:after{
    position: absolute;
    content: "";
    width: 9px;
    height: 9px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    top: 50%;
    right: -13px;
    transform: translateY(-50%) rotate(45deg);
}
.article-wrap .article-ul .article-left{
    width: 19%;
    float: left;
    padding-right: 10px;
    box-sizing: border-box;
}
.article-wrap .article-ul .article-left img{
    width: 100%;
    height: auto;
}
.article-wrap .article-ul .article-category{
    display: flex;
    flex-wrap: wrap;
    padding: 3px 0 5px;
}
.article-wrap .article-ul .article-category li{
    padding: 1px 10px 0;
    margin: 0 5px 5px 0;
    color: #0f82b8;
    background: #e7f4fc;
    border-radius: 5px;
    font-size: 12px;
}
.article-wrap .article-ul .article-title{
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 2px;
}
/* 説明テキスト2行まで */
.article-wrap .article-ul .article-li .article-txt{
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 14px;
    color: #777;
    margin-top: 0;
    margin-bottom: 0;
}
.article-wrap .article-ul .article-li .article-txt:after{
    position: absolute;
    bottom: 0;
    right: 0;
    content: "…続きを読む";
    background: #fff;
    color: #2a94e6;
    text-decoration: underline;
    padding-left: 0.5em;
}
.article-wrap .article-ul .article-li:after{
    content: "";
    display: block;
    clear: both;
}

/* ページネーション */
.pagination{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 700px;
    margin: 30px auto;
}
.pagination .page-number{
    display: flex;
    justify-content: center;
    margin: 0 auto;
}
.pagination .page-number li+li{
    margin-left: 25px;
}
.pagination .page-number li,
.pagination .page-top,
.pagination .prev,
.pagination .next,
.pagination .page-last{
    cursor: pointer;
    width: 40px;
    line-height: 38px;
    text-align: center;
    background: #fff;
    color: #2a94e6;
    border: 1px solid #2a94e6;
    border-radius: 5px;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 0;
}
.pagination .page-number li:hover,
.pagination .page-top:hover,
.pagination .prev:hover,
.pagination .next:hover,
.pagination .page-last:hover{
    opacity: 0.7;
}
.pagination .page-number li.is-active{
    cursor: default;
    background: #2a94e6;
    color: #fff;
}
.pagination .page-number li.is-active:hover{
    opacity: 1;
}
.pagination .pagination-btn{
    display: flex;
    justify-content: space-between;
    width: 105px;
}
.pagination .prev,
.pagination .page-last{
    margin-left: 6px;
}
.pagination .page-top:before,
.pagination .page-top:after,
.pagination .prev:after,
.pagination .next:after,
.pagination .page-last:before,
.pagination .page-last:after{
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    border: 1.75px solid;
    top: 14.5px;
    transform: translateX(-50%) rotate(45deg);
}
.pagination .page-top:before,
.pagination .page-top:after,
.pagination .prev:after{
    border-color: transparent transparent #2a94e6 #2a94e6;
}
.pagination .next:after,
.pagination .page-last:before,
.pagination .page-last:after{
    border-color: #2a94e6 #2a94e6 transparent transparent;
}
.pagination .page-top:before{
    left: 45%;
}
.pagination .page-top:after{
    left: 65%;
}
.pagination .prev:after{
    left: 56.5%;
}
.pagination .next:after{
    left: 43.5%;
}
.pagination .page-last:before{
    left: 33%;
}
.pagination .page-last:after{
    left: 53%;
}
.pagination .page-top.disabled,
.pagination .prev.disabled,
.pagination .next.disabled,
.pagination .page-last.disabled{
    cursor: default;
    background: #ececec;
    border: 1px solid #ececec;
}
.pagination .page-top.disabled:hover,
.pagination .prev.disabled:hover,
.pagination .next.disabled:hover,
.pagination .page-last.disabled:hover{
    opacity: 1;
}
.pagination .page-top.disabled:before,
.pagination .page-top.disabled:after,
.pagination .prev.disabled:after{
    border-color: transparent transparent #cacaca #cacaca;
}
.pagination .next.disabled:after,
.pagination .page-last.disabled:before,
.pagination .page-last.disabled:after{
    border-color: #cacaca #cacaca transparent transparent;
}
/* ・・・ */
.pagination .page-number li.three-point-leader {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    cursor: default;
    border: 0;
    background-color: transparent;
}
.pagination .page-number li.three-point-leader:hover {
    opacity: 1;
}
.pagination .page-number li.three-point-leader span,
.pagination .page-number li.three-point-leader span:before,
.pagination .page-number li.three-point-leader span:after {
    display: block;
    position: absolute;
    border-radius: 50%;
    width: 2px;
    height: 2px;
    background: #2a94e6;
}
.pagination .page-number li.three-point-leader span {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
.pagination .page-number li.three-point-leader span:before,
.pagination .page-number li.three-point-leader span:after {
    content: '';
}
.pagination .page-number li.three-point-leader span:before {
    left: -8px;
}
.pagination .page-number li.three-point-leader span:after {
    left: 8px;
}