@charset "UTF-8";

/* ================================ * /
        COLOR 設定
==================================== */
:root {
    /* メインカラーの青 */
    --main-color: #113285;
    /* 背景色グレー */
    --bg-color: #f7f7f7;
}

/* ================================ * /
        BBCお知らせ一覧 BEGIN
==================================== */
.news__container {
    background-color: #f7f7f7;
    width: 100%;
    margin: 0 auto;
    color: var(--main-color);
    padding-bottom: 10rem;
}

.news__container img {
    width: 100%;
}

.news__container .insite-img {
    width: 50%;
    margin: 2rem 0;
}

.news__container .insite-img-big {
    width: 100%;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .news__container .insite-img {
        width: 100%;
        margin: 1rem 0 2rem 0;
    }
}

/* テーブル設定 */
.news__container .insite-table {
    width: 50%;
}

.news__container .insite-table {
    width: 50%;
    border-collapse: collapse;
}

.news__container .insite-table th,
.news__container .insite-table td {
    border: 1px solid black;
    padding: 8px;
    text-align: left;
}

@media (max-width: 1024px) {
    .news__container .insite-table {
        width: 70%;
    }
}

@media (max-width: 767px) {
    .news__container .insite-table {
        width: 100%;
    }
}

.news__list {
    background-color: #FFF;
    box-shadow: 0px 3px 6px #00000029;
    width: 90%;
    margin: 0 auto;
    margin-top: -3rem;
    color: var(--main-color);
    text-align: center;
    position: relative;
    z-index: 99;
    padding: 4rem 0;
    max-width: 1400px;
}

.news__subhead {
    font-family: "m-plus-1p", sans-serif;
    font-style: normal;
    font-size: 24px;
    margin-top: 1.3rem;
    letter-spacing: .1rem;
}

@media (max-width: 576px) {
    .news__subhead {
        font-size: 18px;
        margin-top: 1.2rem;
    }
}

.news__head {
    font-size: clamp(2.625rem, 2.224rem + 1.89vw, 3.875rem);
    font-weight: bold;
    transform: scaleY(1.2);
}

.news__btn {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .news__btn {
        flex-direction: column;
    }
}

.news__btn ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 992px) {
    .news__btn ul {
        justify-content: center;
        margin: 1rem 0;
    }
}

.news__btn--item {
    font-family: 'Noto Sans JP', sans-serif;
    font-style: normal;
    background-color: #F7F7F7;
    padding: 1.5rem 2rem;
    color: var(--main-color);
    font-size: 18px;
    letter-spacing: 0.05rem;
    margin: 0 0.7rem;
    border-radius: 10px;
    transition: .3s;
    cursor: pointer;
}

@media (max-width: 576px) {
    .news__btn--item {
        padding: 0.7rem 1rem;
        font-size: 14px;
        margin: 0 0.2rem;
    }
}

@media (min-width: 576px) {
    .news__btn--item:hover {
        background-color: #6DBEF0;
    }
}

.news__btn--item.active {
    background-color: var(--main-color);
    color: #FFF;
}

.news__contents {
    width: 90%;
    max-width: 840px;
    margin: 6rem auto;
}

@media (max-width: 768px) {
    .news__contents {
        width: 90%;
        margin: 3rem auto;
    }
}

.box-item {
    position: relative;
    transition: .3s;
}

@media (min-width: 576px) {
    .box-item:hover {
        opacity: .8 !important;
    }
}

@media (min-width: 576px) {
    .box-item:hover span {
        transform: translateX(10px);
    }
}

.box-item span {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--main-color);
    right: 3%;
    top: 50%;
    transition: .3s;
}

@media (max-width: 768px) {
    .box-item span {
        display: none;
    }
}

.box-item a {}

.news__contents .box-item {
    border-bottom: var(--main-color) 1px solid;
}

.news__contents .box-item p {
    font-family: 'Noto Sans JP', sans-serif;
    font-style: normal;
    color: var(--main-color);
    line-height: 1rem;
    letter-spacing: 0.03rem;
    font-size: 16px;
    text-align: start;
}

@media (max-width: 768px) {
    .news__contents .box-item p {
        font-size: 14px;
    }
}

.news__flex {
    display: flex;
    font-family: "m-plus-1p", sans-serif;
    font-style: normal;
    font-size: 12px !important;
    align-items: center;
    margin: 1.5rem 0;
}

@media (max-width: 768px) {
    .news__flex {
        align-items: start;
        margin-top: 1rem;
        flex-direction: column-reverse;
        margin: 0.6rem 0;
    }
}

.news__flex .day {
    color: var(--main-color);
    margin: 0;
}

@media (max-width: 768px) {
    .news__flex .day {
        margin-top: 0.8rem;
    }
}

.news__flex .category {
    color: #FFF !important;
    padding: 0.3rem 1rem;
    background-color: var(--main-color);
    margin: 0;
    margin-left: 1rem;
}

@media (max-width: 768px) {
    .news__flex .category {
        margin-left: unset;
    }
}

.news__contents .box-item .title {
    font-size: 18px;
    padding: 0.5rem 0;
    line-height: 1.5rem;
}

@media (min-width: 769px) {
    .news__contents .box-item .title {
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .news__contents .box-item .title {
        padding: 0 0 0.5rem 0;
        font-size: 16px;
    }
}

.box-none {
    display: none;
}

.nonetitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-style: normal;
    font-size: 18px;
    padding: 0.5rem 0;
    line-height: 1.5rem;
    text-align: center !important;
    color: var(--main-color);
}

.is-hide {
    display: none !important;
}

/* ページネーション(Jpages)class上書き */
.holder {
    margin: 15px 0;
}

.holder a {
    font-size: 18px;
    cursor: pointer;
    margin: 0 0.6rem;
    color: var(--main-color);
    padding: 0.5rem 1rem;
    background-color: #f7f7f7;
    transition: .3s;
}

@media (min-width: 576px) {
    .holder a:hover {
        background-color: var(--main-color);
        color: #fff !important;
    }
}

.holder a.jp-previous,
.holder a.jp-next {
    margin-right: 15px;
    background-color: transparent !important;
}

@media (min-width: 576px) {

    .holder a.jp-previous,
    .holder a.jp-next {
        margin-right: 0px;
        background-color: transparent !important;
    }

    .holder a.jp-previous:hover,
    .holder a.jp-next:hover {
        color: var(--main-color) !important;
    }
}

.holder a.jp-previous {
    background-image: url(../img/page_arrow_left.svg);
    background-repeat: no-repeat;
    background-size: 75%;
    background-position: center;
}

.holder a.jp-next {
    background-image: url(../img/page_arrow_right.svg) !important;
    background-repeat: no-repeat !important;
    background-size: 75% !important;
    background-position: center !important;
}

@media (min-width: 576px) {
    .holder a.jp-next.jp-disabled:hover {
        color: #BBBBBB !important;
    }
}

.holder a.jp-next {
    margin-left: 15px;
}

@media (min-width: 576px) {

    .holder a.jp-current,
    a.jp-current:hover {
        color: var(--main-color);
        font-weight: bold;
    }
}

.holder a.jp-current {
    background-color: var(--main-color) !important;
    color: #fff !important;
}

.holder a.jp-disabled,
a.jp-disabled:hover {
    color: #bbb;
}

.holder a.jp-current,
a.jp-current:hover,
.holder a.jp-disabled,
a.jp-disabled:hover {
    cursor: default;
    background: none;
}

@media (max-width: 576px) {

    .holder {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin: auto;
    }

    .holder a,
    .holder .jp-current {
        font-size: 12px;
        max-width: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0rem 0.4rem;
    }

}

.holder span {
    margin: 0 5px;
}

.news__article {
    width: 70%;
    margin: 3rem auto 2rem auto;
    font-family: 'Noto Sans JP', sans-serif;
    font-style: normal;
    text-align: left;
}

@media (max-width: 768px) {
    .news__article {
        width: 85%;
    }
}

.news__article img {
    width: 60%;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .news__article img {
        width: 100%;
        margin: 1rem 0 2rem 0;
    }
}

.news__article .category {
    padding: 0.4rem 1.5rem;
    background-color: var(--main-color);
    color: #FFF;
    font-size: 14px;
    display: inline;
}

.news__article .day {
    color: var(--main-color);
    margin-top: 1.6rem;
    margin-bottom: .8rem;
    font-size: 16px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .news__article .day {
        margin-top: .8rem;
    }
}

.news__article .title {
    color: var(--main-color);
    margin-bottom: 2rem;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.06rem;
    line-height: 2.2rem;
}

@media (max-width: 768px) {
    .news__article .title {
        font-size: 18px;
        line-height: 2.2rem;
    }
}

.news__article .text {
    color: #000;
    margin-top: 2.7rem;
    font-size: 16px;
    line-height: 1.6rem;
    letter-spacing: 0.04rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .news__article .text {
        margin-top: 0.7rem;
        font-size: 14px;
    }
}

.news__article .quote__text {
    color: #000;
    margin-top: 2.7rem;
    font-size: 16px;
    line-height: 1.7rem;
    letter-spacing: 0.1rem;
    background-color: #f7f7f7;
    padding: 30px 20px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .news__article .quote__text {
        margin-top: 0.7rem;
        padding: 20px 10px;
    }
}

/* 小見出しフォント */
.news__article .midashi {
    color: var(--main-color);
    margin-bottom: 2rem;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08rem;
    margin-top: 4rem;
    padding: 0.8em;
    background: #f5f8ff;
    border-left: solid 5px var(--main-color);
}

.news__article a {
    text-decoration: none;
    color: #113285;
    word-wrap: break-word;
}

.news__article--btn {
    font-family: "m-plus-1p", sans-serif;
    font-style: normal;
    border: var(--main-color) solid 1px;
    display: inline-block;
    padding: 0.7rem 3rem;
    font-size: clamp(0.875rem, 0.795rem + 0.38vw, 1.125rem);
    color: var(--main-color);
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    transition: .3s;
    letter-spacing: 0.1rem;
    margin-top: 2rem;
}

.news__article--btn i {
    font-size: clamp(0.875rem, 0.795rem + 0.38vw, 1.125rem);
}

.news__article--btn:hover {
    background-color: var(--main-color);
    color: #FFF;
}

/* ================================ * /
        BBCお知らせ一覧 END
==================================== */