@charset "utf-8";
.blog .site-content.clearfix,
.blog #site-footer {
    background: #F5F8FA;
}
.blog #news {
    background: transparent;
    overflow-x: clip;
}
/*カテゴリーボタン*/
.category-filter-button .translate-label {
    position:absolute; left:-9999px;
}
.category-filter-controls{
    align-items: flex-start;
}
.category-filter-link{
    flex-shrink: 0;
}
.category-filter-link a{
    padding: 11.5px 2.2em;
    margin-top: 3px;
    background: var(--base-color);
    border-radius: 100vmax;
    gap: 5em;
    color: var(--main-color);
    font-size: var(--fs-m);
    font-weight: 500;
}
.category-filter-buttons {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: var(--margin) 0;
    padding: 0 calc(var(--margin) * 7.5);
    margin-bottom: calc(var(--margin) * 7);
    width: 100%;
    line-height: 1;
}
.tab-active-bg {
    position: absolute;
    background: var(--main-color);
    border-radius: 100vmax;
    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: var(--base-color);
    border-radius: 100vmax;
    z-index: 0;
    pointer-events: none;
    top: 0;
    left: 0;
    box-shadow: var(--boxshadow-m);
}
.category-filter-button {
    position: relative;
    z-index: 2;
    display: inline-block;
    align-items: center;
    justify-content: center;
    padding: 0.6em 1.5em;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #003366;
    transition: color 0.3s;
    margin: calc(var(--margin) * 2) 0 calc(var(--margin) * 2);
    outline: none;
    -webkit-tap-highlight-color: transparent;
    font-size: var(--fs-m);
    font-weight: 500;
}
.category-filter-button.active {
    color: var(--base-color);
}
@media screen and (max-width: 768px) {
    
}
@media screen and (max-width: 767px) {
    .category-filter-controls-sp{
        
        margin-bottom: calc(var(--margin) * 2);
        
    }
    .category-filter-controls-sp .category-select{
        width: 100%;
        padding: 1em 1.5em;
        color: var(--main-color);
        position: relative;
        background: var(--base-color) var(--icon-arrow-nv-down-bg);
        background-position: right 1em center;
        border-radius: 100vmax;
        box-shadow: var(--boxshadow-m);
        box-sizing: border-box;
    }
}
/*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: var(--fs-3l);
    font-weight: 500;
    color: var(--main-color);
    transition: .3s;
    opacity: 1;
}
@media (hover: hover) {
    .pagination .page-number:hover{
        background: var(--main-color);
        color:var(--base-color);
        opacity: 0.8;
    }
}
.pagination .page-number.active{
    background: var(--main-color);
    color:var(--base-color);
}
.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") ;
}
@media (hover: hover) {
    .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 .news-latest-list,
.news .category-filter-results-wrapper{
    padding: calc(var(--margin) * 5);
    background: var(--base-color);
}
.news .post-item{
    padding-bottom: calc(var(--margin) * 3);
    margin-bottom: calc(var(--margin) * 3);
    border-bottom: solid 1px var(--line-color);
}
.news .post-item .post-wrapper{
    align-items: flex-start;
    gap:calc(var(--margin) * 3);
}
.news .post-item .post-wrapper time{
    flex-shrink: 0;
    color: #8B8B8B;
    font-size: var(--fs-m);
    font-weight: 500;
}
.column .post-item .post-wrapper .post-categories .cate,
.news .post-item .post-wrapper .post-categories .cate{
    display: inline-block;
    padding: 0.2em 1em;
    margin:0.5em;
    background: var(--sub-color);
    border-radius: 100vmax;
    color: var(--main-color);
    font-size: var(--fs-xxs);
    font-weight: 500;
}
.news .post-item .post-wrapper .post-title{
    display: -webkit-box;
     -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2; 
    padding-right: 1em;
    font-size: var(--fs-m);
}
@media screen and (max-width: 768px) {
    
}
@media screen and (max-width: 767px) {
    .news .news-latest-list,
    .news .category-filter-results-wrapper{
        padding: calc(var(--margin) * 2) 1em;
    }
    .news .post-item{
        padding-bottom: 0.5em;
        margin-bottom: 0.5em;
    }
    .news .post-item a{
        width: 100%;
    }
    .news .post-item a::after{
        display: none;
    }
    .news .post-item .post-wrapper{
        display: block;
    }
    .news .post-item .post-wrapper .post-meta{
        display: flex;
        justify-content: start;
        align-items: center;
        flex-wrap: wrap;
    }
    .news .post-item .post-wrapper .post-title{
        -webkit-line-clamp: 1;
        font-weight: 400;
    }
    .news .category-filter-link a{
        width: 60%;
        gap: 0;
        margin: calc(var(--margin) * 2) auto 0;
    }
}
/*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(--main-color);
    border-radius: 100vmax;
    text-decoration: none;
    color: var(--base-color);
    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: var(--base-color);
}

.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: var(--base-color);
}
.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(--main-color);
    background-position: right 5px top 1.6em;
}
.column-li{
    width: 92%;
    margin: 0 auto calc(var(--margin) * 5);
    gap:calc(var(--margin) * 2);
    align-items: stretch;
}
.column-li > li{
    width: calc((92% - calc(var(--margin) * 2)) / 3);
}
.column-li a{
    display: block;
    height: 100%;
    background: var(--base-color);
}
.column-li .thumb {
    overflow: hidden;
    width:100%;
    height:223px;
    position: relative;
}
.column-li .thumb img{
    transition: var(--transition);
    object-fit: cover;
    width: 100%;
    height: 100%;
}
@media (hover: hover) {
    .column-li a:hover .thumb img{
        transform: scale(1.2, 1.2);
    }
}
.column-li .medical-category{
    flex-wrap: wrap;
    position: absolute;
    bottom: calc(var(--margin) * 1);;
    left: calc(var(--margin) * 2);;
}
.column-li .medical-category .cate{
    display: inline-block;
    padding: 0 1em;
    margin:0.2em;
    background: var(--sub-color);
    border-radius: 100vmax;
    line-height: 1.8;
    color: var(--main-color);
    font-size: var(--fs-xxs);
    font-weight: 500;
}
.column-li .column-li-content{
    padding: calc(var(--margin) * 2);
}
.column-li .column-li-title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    margin-bottom: 1em;
    font-weight: 700;
    color: var(--main-color);
    font-size: var(--fs-m);
}
.column-li .column-li-txt{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    font-size: var(--fs-s);
    margin-bottom: 1em;
}
.column-li .day{
    margin-bottom: 1em;
    line-height: 1;
    font-size: var(--fs-s);
    font-weight: 500;
}
.link a{
    gap:calc(var(--margin) * 2);
    color: var(--main-color);
    font-weight: 500;
}
@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;
    }
    .column-li{
        padding-bottom: calc(var(--margin) * 4);
        margin: 0 auto calc(var(--margin) * 3);
    }
    .column-li .slick-slider {
        visibility: hidden;
    }
    .column-li .slick-initialized {
        visibility: visible;
    }
    .column-li{
        display: block !important;
        width: 100%;
        gap:0;
        overflow: hidden;
    }
    .column-li .slick-list{
        overflow: unset;
    }
    .column-li .slick-track{
        display: flex;
        align-items: center;
        align-items: stretch;
    }
    .column-li .slick-slide {
        box-sizing: border-box;
        height: auto;
        margin: 0 10px;
        padding: 0 !important;
    }
    .column-li .slick-slide > a {
        display: block;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .column-li .thumb{
        width: 100%!important;
        height: 46.1538cqw;
        position: relative;
    }
    .column-li .thumb img{
        width: 100%!important;
        height: auto;
        object-fit: cover;
        pointer-events: none;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
    }
    .column-li .column-li-content {
        box-sizing: border-box;
        width: 100%;
    }
    .column-li .slick-dots{
        bottom: 0;
    }
    .column-li .slick-dots li button{
        width: 2.0512cqw;
        height: 2.0512cqw;
    }
    .column-li .slick-dots li button:before{
        width: 2.0512cqw;
        height: 2.0512cqw;
        content:"";
        background: var(--line-color);
        border-radius: 100vmax;
        opacity: 1;
    }
    .column-li .slick-dots li.slick-active button:before{
        background: var(--main-color);
    }
    .column-li .medical-category .cate{
        margin-left: 0;
    }
}
/*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(--main-color);
    text-decoration: underline;
}
/* --- レスポンシブ --- */
@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(--main-color);
}
.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
}