@charset "utf-8";
:root {
    --color-blue:#130A8F;
    --maxwidth:1220px;
}
/*カテゴリーボタン*/
.category-filter-button .translate-label {
    position:absolute; left:-9999px;
}
.category-filter-buttons {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 0;
    padding: 10px 0;
    margin-bottom: 70px;
    width: 100%;
}
.tab-active-bg {
    position: absolute;
    background: var(--color-blue);
    border-radius: 30px;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
    z-index: 1;
    pointer-events: none;
    top: 0;
    left: 0;
    opacity: 0;
}
.row-bg {
    position: absolute;
    background: #E8E8E8;
    border-radius: 30px;
    z-index: 0;
    pointer-events: none;
    top: 0;
    left: 0;
}
.category-filter-button {
    position: relative;
    z-index: 2;
    padding: 0.6em 2.2em;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #003366;
    transition: color 0.3s;
    margin: 0;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    font-size: 15px;
}
.category-filter-button.active {
    color: #fff;
}
@media screen and (max-width: 768px) {
    
}
@media screen and (max-width: 767px) {
    .category-filter-button {
        font-size: 3.73cqw;
    }
}
/*END　カテゴリーボタン*/

/*ページネーション*/
.pagination{
    display: flex;
	justify-content:center;
	align-items: center;
}
.pagination .page-number{
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    background: #E8E8E8;
    font-size: 17px;
    font-weight: 500;
    color: var(--color-blue);
    transition: .3s;
    opacity: 1;
}
.pagination .page-number:hover{
    background: var(--color-blue);
    color:#fff;
    opacity: 0.8;
}
.pagination .page-number.active{
    background: var(--color-blue);
    color:#fff;
}
.pagination .page-prev,
.pagination .page-next{
    width: 27px;
    height: 27px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 35% auto;
    transition: .3s;
    opacity: 1;
}
.pagination .page-prev{
    margin-right: 1em;
    background-image:url("../img/common/column_slider_arrow_L.svg") ;
}
.pagination .page-next{
    margin-left: 1em;
    background-image:url("../img/common/column_slider_arrow_R.svg") ;
}
.pagination .page-prev:hover,
.pagination .page-next:hover{
    opacity: 0.8;
}
@media screen and (max-width: 768px) {
    
}
@media screen and (max-width: 767px) {
    .pagination .page-number{
        width: 10.4cqw;
        height: 10.4cqw;
        font-size: 6.4cqw;
    }
    .pagination .page-prev, .pagination .page-next{
        width: 10.4cqw;
        height: 10.4cqw;
    }
}
/*END　ページネーション*/

/*お知らせ一覧*/
.news .post-item{
    display: flex;
	justify-content:space-between;
    gap: 24px;
    padding-bottom: 20px;
    margin-bottom: 26px;
    border-bottom: solid 1px #707070;
}
.news .post-item .post-thumbnail{
    flex: none;
    width: 212px;
    height: 124px;
    overflow: hidden;
    position: relative;
}
.news .post-item .post-thumbnail img{
    position: absolute;
    min-width:100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.news .post-item .post-content{
    width: calc(100% - 212px);
    position: relative;
}
.news .post-item .post-content time{
    font-size: 13px;
    font-weight: 500;
}
.column .post-item .post-content .post-categories,
.news .post-item .post-content .post-categories{
    display: inline-block;
    padding: 0.2em 1em;
    margin:0.5em;
    background: var(--color-blue);
    border-radius: 100vmax;
    color: #fff;
    font-size: 13px;
}
.news .post-item .post-content .post-categories a{
    color: #fff;
}
.news .post-item .post-content .post-title{
    display: -webkit-box;
     -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2; 
    margin-top: 0.5em;
    font-size: 18px;
}
.news .post-item .post-content .readmore {
    position: absolute;
    bottom: 0;
    right: 0;
}
@media screen and (max-width: 768px) {
    
}
@media screen and (max-width: 767px) {
    .news .post-item{
        flex-wrap: wrap;
        gap: 1em;
    }
    .news .post-item .post-thumbnail{
        height: 53.33cqw;
        width: 100%;
    }
    .news .post-item .post-content{
        width: 100%;
        padding-bottom: 2.5em;
    }
    .news .post-item .post-content time{
        font-size: 2.66cqw;
    }
    .news .post-item .post-content .category-btn{
        font-size:2.66cqw;
    }
}
/*END　お知らせ一覧*/

/*お知らせ　コラム　詳細ページ*/
.container.column{
    max-width: 1100px;
}
.pretag .entry-meta time{
    font-size: 12px;
    font-weight: 500;
}
.pretag .entry-meta .category-btn{
    display: inline-block;
    padding: 0.2em 1em;
    margin: 0.5em;
    background: var(--color-blue);
    border-radius: 100vmax;
    text-decoration: none;
    color: #fff;
    font-size: 12px;
}
.container.pretag h1.entry-title{
    font-size: 3.2rem;
    font-weight: 500;
}
@media screen and (max-width: 768px) {
    
}
@media screen and (max-width: 767px) {
    .container.pretag h1.entry-title{
        font-size: 2.2rem;
    }
}
/*END　お知らせ　コラム　詳細ページ*/

/*コラム一覧*/
.column .category-filter-results{
    display: flex;
	justify-content:flex-start;
    flex-wrap: wrap;
    gap: 75px 9.29%;
    margin-bottom: 85px;
}
.column .post-item{
    max-width: 299px;
    width: 27.14%;
    padding-bottom: 1.5em;
    position: relative;
}
.column .post-item .post-thumbnail{
    width: 100%;
    height: 406px;
    overflow: hidden;
    position: relative;
}
.column .post-item .post-thumbnail img{
    position: absolute;
    min-width:100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.column .post-item .post-content{
    position: absolute;
    top: 1em;
    left: 5%;
    width: 90%;
    color: #fff;
}

.column .post-item .post-content time{
    font-size: 16px;
    font-weight: 500;
}
.column .post-item .post-content .post-title a{
    display: -webkit-box;
     -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2; 
    font-size: 20px;
    color: #fff;
}
.column .post-item .post-content .readmore {
    margin-top: 1em;
    text-align: right;
}
.column .post-item .readmore{
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 1em 2em 1em 1em;
    background-color: var(--color-blue);
    background-position: right 5px top 1.6em;
}
@media screen and (max-width: 1160px) {
    .column .post-item .post-thumbnail{
        height: 36.909cqw;
    }
}
@media screen and (max-width: 768px) {
    
}
@media screen and (max-width: 767px) {
    .column .category-filter-results{
        justify-content: center;
        gap:18.66gqw 0;
    }
    .column .post-item{
        flex-wrap: wrap;
        gap: 1em;
    }
    .column .post-item{
        max-width: 100%;
        width: 60.8cqw;
    }
    .column .post-item .post-thumbnail{
        height: 82.66cqw;
    }
    .column .post-item .post-content time{
        font-size: 2.66cqw;
    }
    .column .post-item .post-content .category-btn{
        font-size:2.66cqw;
    }
}
/*END　コラム一覧*/

/*入力タグスタイルシート*/
.container.pretag{
    max-width: 675px;
    font-size: 62.5%;
}
.container.pretag h1, .container.pretag h2, .container.pretag h3, .container.pretag h4 {
    font-weight: 700;
    line-height: 1.4;
    margin: 2.2rem 0 1rem;
}
.container.pretag h1 {
    font-size: 3.2rem;
}
.container.pretag h2 {
    font-size: 2.4rem;
}
.container.pretag h3 {
    font-size: 1.8rem;
}
.container.pretag h4 {
    font-size: 1.6rem;
}
.container.pretag p {
    font-size: 1.4rem;
    margin: 1.4rem 0;
}
.container.pretag ul, .container.pretag ol {
    margin: 1.2rem 0 1.2rem 1.5rem;
    padding: 0;
}
.container.pretag li {
    margin-bottom: .5rem;
}
.container.pretag figure{
    max-width: 100%;
    height: auto;
}
.container.pretag img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem auto;
}
.container.pretag blockquote {
    border-left: 4px solid #ccc;
    padding: .8rem 1rem;
    margin: 1.5rem 0;
    background: #f9f9f9;
    font-style: italic;
}
.container.pretag table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}
.container.pretag th, .container.pretag td {
    border: 1px solid #ddd;
    padding: .6rem;
}
.container.pretag th {
    background: #f0f0f0;
}
.container.pretag a {
    color: var(--color-blue);
    text-decoration: underline;
}
.container.pretag a:hover {
    opacity: .7;
}

/* --- レスポンシブ --- */
@media screen and (max-width: 767px) {
    .container.pretag h1 { font-size: 2.2rem; }
    .container.pretag h2 { font-size: 2rem; }
    .container.pretag h3 { font-size: 1.6rem; }
    .container.pretag h4 { font-size: 1.4rem; }
}

/*END　入力タグスタイルシート*/

/*関連記事*/
.related-post-wrap{
    background: #E8E8E8;
}
.related-post-wrap .ti{
    margin-bottom: 1em;
    text-align: center;
    font-size: 33px;
    font-weight: 500;
    color: var(--color-blue);
}
.related-post-wrap .btn_area{
    margin-top: 80px;
    text-align: center;
}
.related-post-wrap .btn_nv{
    margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
    .related-post-wrap .container{
        width: 80cqw;
    }
    .related-post-wrap .ti{
        font-size: 7.46cqw;
    }
}

.news_img {
    margin: 5% auto;
    width: 70%
}
.news_box_area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}
.news_box_area img {
    margin-top: 3%
}
.news_box {
    margin: 0 auto !important;
    width: 40%
}
.news_link {
    text-align: center
}