@charset "utf-8";

/* -------------------------------------------------- */
/* 下層ページ共通 */
/* -------------------------------------------------- */
#pageTtl {
    background-image: url(../img/news_ttl_bg.png);
}

/* -------------------------------------------------- */
/* 一覧ページ */
/* -------------------------------------------------- */
#pageContainerInner {
    width: 1000px;
    column-gap: 80px;
}

/* サイドバー */
/* -------------------------------------------------- */
#sidebar {
    width: 100px;
}

.sidebarItem:not(:last-child) {
    margin-bottom: 14px;
}

.sidebarItem a {
    display: block;
    font-size: 1.4rem;
    letter-spacing: .1em;
    color: #7E7E7E;
    position: relative;
    transition: all .3s;
}

.sidebarItem a::after {
    display: block;
    content: "";
    width: 5px;
    height: 5px;
    border-top: 1px solid #0282C7;
    border-right: 1px solid #0282C7;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(45deg);
    transition: all .3s;
}

/* ホバーアクション */
.sidebarItem a:hover,
.sidebarItem a:active {
    color: #0282C7;
}

.sidebarItem a:hover::after,
.sidebarItem a:active::after {
    right: -5px;
}

/* 一覧 */
/* -------------------------------------------------- */
#archive {
    width: calc(100% - 80px);
}

#archiveInner {
    padding-bottom: 133px;
}

#newsList {
    margin-bottom: 54px;
}

.newsItem:first-child {
    border-top: 1px solid #e3e3e3;
}

/* -------------------------------------------------- */
/* 詳細ページ */
/* -------------------------------------------------- */
#detailContent p {
    font-size: 1.4rem;
    letter-spacing: .1em;
}

#detailContent p,
#detailContent img {
    margin-bottom: 26px;
}

/* -------------------------------------------------- */
/* IE対応 */
/* -------------------------------------------------- */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {}

/* -------------------------------------------------- */
/* TAB&SP */
/* -------------------------------------------------- */
@media screen and (max-width: 1024px) {

    /* -------------------------------------------------- */
    /* 一覧ページ */
    /* -------------------------------------------------- */
    #pageContainerInner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        /* row-gap: 30px; */
    }

    /* サイドバー */
    /* -------------------------------------------------- */
    #sidebar {
        width: 100%;
    }

    #sidebarList {
        padding-top: 25px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        column-gap: 60px;
    }

    .sidebarItem a {
        padding-right: 30px;
    }

    /* 一覧 */
    /* -------------------------------------------------- */
    #archive {
        width: 100%;
    }
}

/* -------------------------------------------------- */
/* TAB(調整) */
/* -------------------------------------------------- */
@media screen and (min-width: 768px) and (max-width: 1024px) {}

/* -------------------------------------------------- */
/* SP(調整) */
/* -------------------------------------------------- */
@media screen and (max-width: 767px) {

    /* -------------------------------------------------- */
    /* 一覧ページ */
    /* -------------------------------------------------- */
    #archiveInner {
        padding-top: 10px !important;
    }

    /* サイドバー */
    /* -------------------------------------------------- */
    #sidebar {
        width: 100%;
    }

    #sidebarList {
        column-gap: 30px;
    }

    .sidebarItem a {
        padding-right: 15px;
    }
}