#news-page {
    padding-top: 114px;
}

#news-page img {
    width: 100%;
    height: auto;
}

#news-page .breadcrumb {
    display: block;
    overflow: hidden;
    margin: 40px auto 100px;
    max-width: 1392px;
    width: 93%;
}

#news-page .breadcrumb li {
    display: block;
    float: left;
    margin-right: 3px;
    color: #767369;
    font-size: 12px;
    font-family: 'Zen Kaku Gothic New';
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.2;
}

#news-page .breadcrumb li a::after {
    content: '>';
    color: #767369;
}

#news-page .breadcrumb a {
    color: #2D2817;
}

#news-page .l-inner {
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
}

.page-ttl {
    font-size: 68px;
    font-family: 'Albertus MT Std';
    font-weight: 400;
    color: #2d2817;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    text-align: center;
}

.page-ttl span {
    display: block;
    font-family: 'Zen Kaku Gothic New';
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.7px;
    line-height: 1.5;
}

.search-wrapper {
    margin: 50px 0 18px;
}

.search-wrapper .search-ttl {
    font-size: 14px;
    font-family: 'Zen Kaku Gothic New';
    font-weight: 500;
    color: #767369;
    letter-spacing: 0;
    line-height: 1.85;
    margin-bottom: 10px;
}

.search-wrapper .tags-blk {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.tag {
    font-family: 'Zen Kaku Gothic New';
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0;
    border: 1px solid;
    padding: 5px 10px;
    border-radius: 50px;
    margin-right: 12px;
    margin-bottom: 12px;
    width: fit-content;
    cursor: pointer;
}

.tag:last-child {
    margin-right: 0;
}

.tag svg {
    margin-right: 4px;
}

.tag.red-tag {
    color: #ea344a;
    border-color: #ea344a;
}

.tag.blue-tag {
    color: #0049bf;
    border-color: #0049bf;
}

.tag.purple-tag {
    color: #43429b;
    border-color: #43429b;
}

.tag.green-tag {
    color: #32e032;
    border-color: #32e032;
}

.tag.red-tag.active {
    color: #ffffff;
    background-color: #ea344a;
}

.tag.blue-tag.active {
    color: #ffffff;
    background-color: #0049bf;
}

.tag.purple-tag.active {
    color: #ffffff;
    background-color: #43429b;
}

.tag.green-tag.active {
    color: #ffffff;
    background-color: #32e032;
}

/* news list */
.news-list {
    display: flex;
    flex-wrap: wrap;
}

.news-list .news {
    width: calc((100% - 100px) / 3);
    margin-bottom: 50px;
    margin-right: 50px;
}

.news-list .news:nth-child(3n) {
    margin-right: 0;
}


.news-list .news a {
    display: inline-block;
}

.news-list .news-item-content {
    margin: 10px 0 30px;
}

.news-list .news-item-ttl {
    font-size: 15px;
    font-family: 'Zen Kaku Gothic New';
    font-weight: 500;
    color: #423d2e;
    letter-spacing: 0;
    line-height: 1.55;
    margin: 10px 0 15px;
}

.news-list .news-date {
    display: inline-block;
    color: #767369;
    font-size: 12px;
    font-family: 'Inter';
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
}


/* pagination */
.pagination-blk {
    margin: 50px auto;
}

.pagination-blk .pagination {
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
}

.pagination li {
    width: 48px;
    height: 48px;
    box-sizing: border-box;
    border: 1px solid #2d2817;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    margin-right: 12px;
    font-size: 19px;
    font-family: 'Inter';
    font-weight: 600;
}

.pagination li.sp-none {
    display: flex !important;
}

.pagination .dots {
    border: none;
}

.pagination li:last-child {
    margin-right: 0;
}

.pagination .arrow {
    background-color: #ececec;
    border-color: #ececec;
}

.pagination .arrow img {
    filter: brightness(0);
}

.pagination .prev-arrow img {
    transform: rotate(180deg);
    margin-top: 6px;
}

.pagination li.active {
    background: #2d2817;
    color: #ffffff;
    border-color: #2d2817;
}

.pagination a {
    color: inherit;
}


/* Ipad 1212 size */
@media screen and (max-width: 1212px) {}

/* SP size */
@media screen and (max-width: 768px) {
    #news-page {
        padding-top: 50px;
    }
    
    #news-page .breadcrumb {
        margin: 50px auto 60px;
    }
    
    .page-ttl {
        font-size: 50px;
        letter-spacing: 1px;
        text-align: left;
    }
    
    .page-ttl span {
        font-size: 16px;
        letter-spacing: 0.6px;
        line-height: 1.6;
    }
    
    .search-wrapper .search-ttl {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 10px;
    }
    
    .tag {
        margin-right: 8px;
        margin-bottom: 8px;
    }
    
    .news-list .news {
        width: calc((100% - 20px) / 2);
        margin-right: 20px;
    }

    .news-list .news:nth-child(3n) {
        margin-right: 20px;
    }

    .news-list .news:nth-child(2n) {
        margin-right: 0;
    }

    .pagination li {
        width: 41px;
        height: 41px;
        margin-right: 10px;
        font-size: 16px;
    }
    
    .pagination li.sp-none {
        display: none !important;
    }
}