@charset "UTF-8";
/*====================================================*/
/* サイドメニュー */
/*====================================================*/
@media print,screen and (min-width: 1025px){
    aside > div {
        padding-left: min(2.1vw, 32px);
        padding-right: min(2.8vw, 42px);
    }
    aside > div:first-of-type {
        margin-top: 2.5rem;
        padding-top: 2.5rem;
        border-top: var(--border);
    }
    .menu-title {
        margin-bottom: 2rem;
        padding: 6px;
        padding-left: min(0.6vw, 10px);
        background: var(--right-orange);
        font-weight: 700;
    }
    aside > div li a {
        padding-left: min(0.6vw, 10px);
        font-size: 1.4rem;
        transition: var(--transition);
    }
    aside > div li a:hover {
        opacity: 0.5;
    }
    /*お知らせ一覧*/
    .aside-news li {
        padding: 2rem 0;
        line-height: 1.57;
    }
    .aside-news li:not(:last-of-type) {
        border-bottom: 1px dotted var(--orange);
    }
    .aside-news li:first-of-type {
        padding-top: 3px;
    }
    .aside-news li:last-of-type {
        padding-bottom: 2.95rem;
    }
    /*カテゴリー一覧*/
    .aside-category {
        padding-top: 5px;
        padding-bottom: 2.75rem;
    }
    .aside-category li a::before {
        content: "";
        display: inline-block;
        width: 0;
        height: 0;
        margin-right: 0.5em;
        border-style: solid;
        border-width: 5px 0 5px 8px;
        border-color: transparent transparent transparent #2F2E2E;
    }
    .aside-category li:not(:last-of-type) {
        margin-bottom: 1.5rem;
    }

    /**/
    .aside-archive {
        padding: 5px 0 2.5rem;
    }
    .aside-archive li:not(:last-of-type) {
        margin-bottom: 1.5rem;
    }
}

/*====================================================*/
/* ページネーション */
/*====================================================*/
.pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}
.pagination .page-numbers {
    display: block;
    margin-right: 1em;
    transition: var(--transition);
}
.pagination .page-numbers:hover {
    opacity: 0.5;
}
.pagination .page-numbers.current {
    text-decoration: underline;
    text-underline-offset: 3px;
}
a.prev.page-numbers {
    content: "";
    display: block;
    width: 0.8em;
    height: 0.8em;
    background-image: url(../img/pagenation.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(-1, 1);
}
a.next.page-numbers::after {
    content: "";
    display: block;
    width: 0.8em;
    height: 0.8em;
    background-image: url(../img/pagenation.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
@media print,screen and (min-width: 1025px){
    .pagination .nav-links {
        margin-top: 5.5rem;
    }
}


/*====================================================*/
/* お知らせ一覧 */
/*====================================================*/
.news-title {
    margin-bottom: 2rem;
    padding: 1rem 1.2rem 1.5rem;
    background: #E6F4D0;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
}
.news-title::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 5.7px;
}

.news-post {
    padding: 2rem 0 1rem;
    border-bottom: 1px dotted var(--green);
}
.news-post_term {
    display: flex;
    align-items: center;
}
.news-post_term time {
    display: inline-block;
    margin-right: 1rem;
    font-size: 1.2rem;
    white-space: nowrap;
}
.news-post_term .new_label {
    margin-right: 1rem;
    font-size: 1.2rem;
    white-space: nowrap;
}
.news-post_term .category-tab {
    margin-left: 1.2rem;
    position: relative;
}
.news-post_term .category-tab::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 100%;
    margin-right: 1.2rem;
    background: #707070;
    position: absolute;
    top: 50%;
    left: -1.2rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.news-post_text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 1.6rem 0;
    font-size: 1.2rem;
    line-height: 1.5;
}
.news-post > a {
    width: 6em;
    margin-left: auto;
    text-decoration: underline;
    transition: var(--transition);
}
.news-post > a:hover {
    opacity: 0.5;
}
@media print,screen and (max-width: 1024px){
    .news-title::before {
        content: "";
        display: block;
        width: 1em;
        height: 1em;
        background-image: url(../img/news-icon.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        top: 45%;
        right: 1rem;
        transform: translateY(-45%);
        -webkit-transform: translateY(-45%);
    }
    .news-post_title {
        margin-top: 1rem;
        margin-bottom: 1.6rem;
        line-height: 1.5;
    }
    .news-post > a {
        font-size: 1rem;
        letter-spacing: normal;
    }
}
@media print,screen and (min-width: 1025px){
    .news-title {
        margin-bottom: 1rem;
        padding: 1.8rem 1.1rem 2.6rem;
        font-size: 2rem;
    }
    .news-title::after {
        bottom: 1.1rem;
    }

    .news-post {
        padding-top: 2.7rem;
        padding-bottom: 1.5rem;
        padding-left: min(1vw, 15px);
    }
    .news-post > div:first-of-type {
        display: flex;
        align-items: center;
    }
    .news-post_term time {
        margin-right: 1em;
        font-size: 1.6rem;
    }
    .news-post_term .new_label {
        margin-right: 1em;
        font-size: 1.3rem;
    }
    .news-post_term .category-tab {
        margin-left: 1em;
    }
    .news-post_term .category-tab::before {
        height: 80%;
        margin-right: 1em;
        left: -1em;
    }
    .news-post_title {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        overflow: hidden;
        margin-left: 1em;
    }
    .news-post_text {
        -webkit-line-clamp: 3;
        margin: 1.5rem 0;
        font-size: 1.6rem;
        line-height: 1.87;
    }
    .news-post > a {
        width: 6em;
        font-weight: 700;
    }
}


/*====================================================*/
/* お知らせ詳細 */
/*====================================================*/
.news-single .news-title {
    margin-bottom: 2.3rem;
}
.single-title {
    padding-bottom: 1.6rem;
    border-bottom: 1px dotted var(--green);
}
.single-title > div:first-of-type {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
}
.single-title time {
    display: inline-block;
}
.single-title .new_label {
    margin-left: 1.5rem;
}
.single-title h2 {
    margin-top: 1.2rem;
    font-size: 1.6rem;
}
.single-text {
    margin: 1.6rem 0 3.4rem;
    padding-bottom: 3rem;
    border-bottom: 1px dotted var(--green);
    line-height: 1.5;
}
.bkg-btn {
    width: 6em;
    margin-left: auto;
    text-decoration: underline;
    font-weight: 700;
    transition: var(--transition);
}
.bkg-btn:hover {
    opacity: 0.5;
}
@media print,screen and (min-width: 1025px){
    .single-title {
        padding: 3.2rem 0 2.3rem;
    }
    .single-title > div:first-of-type {
        margin-bottom: 1.7rem;
    }
    .single-title > div:nth-of-type(2) {
        display: flex;
        align-items: center;
    }
    .single-title h2 {
        margin-top: 0;
        margin-left: 1.6rem;
        font-size: 1.8rem;
    }
    .single-text {
        margin: 3.2rem 0 7.5rem;
        padding-bottom: 5.5rem;
        line-height: 1.87;
    }
}