@charset "UTF-8";

/*
******************************
    pageHeader　
*******************************
*/
.pageHeaderBg {
    background-image: url("../image/news_headerBg.jpg");
    background-size: cover;
    background-position: center;
    margin: 0 auto 128px;
}

.pageHeaderBg__titleWrapper {
    position: relative;
    z-index: 10;
}

/*
*******************************
    news
*******************************
*/
main {
    background-color: #fff;
}

.news__wrapper {
    width: 1180px;
    margin: 0 auto 128px;
    background-color: #fff;
    box-sizing: border-box;
}

.news__sectiontitle {
    margin-bottom: 48px;
}

.news__sectiontitle-main {
    font-size: 3.2rem;
    font-weight: bold;
    text-align: center;
}

.news__sectiontitle-sub {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
}

.news__item {
    font-size: 1.4rem;
    border-bottom: 0.5px solid #e3e3e3;
    padding: 24px 0;
}

.news__dateAndCategory {
    display: inline-flex;
    margin-left: 16px;
}

.news__date {
    display: inline-flex;
    padding: 2px 0;
}

.news__category {
    padding: 2px 24px;
    border: 1px solid #7c7c7c;
    margin-left: 24px;
    font-size: 1.3rem;
}

.news__title {
    display: inline-flex;
    margin-left: 24px;
}

.news__title a {
    transition: .4s;
}

.news__title a:hover {
    opacity: 0.6;
}


/*
*******************************
    article
*******************************
*/
.article__wrapper {
    width: 1180px;
    background-color: white;
    box-sizing: border-box;
    margin: 0 auto 96px;
}

.article__dateAndCategory {
    margin-bottom: 24px;
}

.article__date {
    padding: 2px 0;
    font-size: 1.4rem;
}

.article__category {
    padding: 2px 24px;
    border: 1px solid #7c7c7c;
    margin-left: 24px;
    font-size: 1.3rem;
}

.article__title {
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1.5em;
    margin-bottom: 24px;
}

.article__content {
    border-top: 2.5px solid #2b5098;
    padding: 24px 16px;
    font-size: 1.6rem;
    line-height: 2.0em;
}

.newslistBtn {
    margin-bottom: 128px;
}

.newslistBtn a {
    font-size: 1.4rem;
    background: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 220px;
    max-width: 220px;
    padding: 20px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    border: 1px solid #787878;
    margin: 0 auto;
}

.newslistBtn a:hover {
    background: #313131;
    color: #fff;
}

.article__content figure {
    text-align: center;
}

.article__content-link {
    text-decoration: underline;
}

.article__img {
    width: 100%;
}

/*====================

◆ ブレークポイント
 - 0      〜  479px：スマホ
 - 480px  〜  959px：タブレット
 - 960px  〜 1279px：タブレット(大) / モバイルPC
 - 1280px 〜       ：大型PC

====================*/

/* ------------------------------------------
  〜479px：スマホ縦
--------------------------------------------*/
@media screen and (max-width:479px) {

    /*
    ******************************
        news
    *******************************
    */
    .pageHeaderBg {
        margin-bottom: 64px;
    }

    .news__wrapper {
        width: 90%;
        margin-bottom: 64px;
    }

    .news__lists {
        width: 100%;
    }

    .news__lists .news__item:first-child {
        padding-top: 0;
    }


    .news__dateAndCategory {
        display: block;
        margin-bottom: 8px;
        margin-left: 0;
    }

    .news__date {
        margin-bottom: 4px;
        padding: 0;
    }

    .news__category {
        margin-left: 8px;
    }

    .news__title {
        display: block;
        margin-left: 0;
    }

    /*
    *******************************
        article
    *******************************
    */

    .pageHeaderBg {
        margin-bottom: 64px;
    }

    .article__wrapper {
        width: 90%;
        margin-bottom: 32px;
    }

    .article__dateAndCategory {
        margin-bottom: 8px;
    }

    .article__date {
        margin-bottom: 8px;
    }

    .article__category {
        margin-left: 8px;
    }

    .article__title {
        font-size: 2.0rem;
    }

    .article__content {
        padding: 24px 0;
        line-height: 2.0em;
    }

    .newslistBtn {
        margin-bottom: 64px;
    }

    .newslistBtn a {
        width: 70%;
    }
}

/* ------------------------------------------
  480px〜959px：タブレット
--------------------------------------------*/
@media screen and (min-width:480px) and (max-width:959px) {

    /*
    ******************************
        news
    *******************************
    */
    .pageHeaderBg {
        margin: 0 auto 72px;
    }

    .news__wrapper {
        width: 90%;
        margin-bottom: 72px;
    }

    .news__lists {
        width: 100%;
    }

    .news__item {
        padding: 24px 0;
    }

    .news__lists .news__item:first-child {
        padding-top: 0;
    }

    .news__dateAndCategory {
        margin-bottom: 8px;
        margin-left: 0;
    }

    .news__title {
        display: block;
        margin-left: 0;
    }

    /*
    *******************************
        article
    *******************************
    */
    .pageHeaderBg {
        margin-bottom: 72px;
    }

    .article__wrapper {
        width: 90%;
        margin-bottom: 72px;
    }

    .article__dateAndCategory {
        margin-bottom: 16px;
    }

    .article__title {
        display: block;
        margin-bottom: 16px;
        font-size: 2.4rem;
    }

    .article__content {
        padding: 24px 0;
        line-height: 2.0em;
    }

}


/* ------------------------------------------
  960px〜1279px：タブレット(大)/モバイルPC
--------------------------------------------*/
@media screen and (min-width:960px) and (max-width:1279px) {

    /*
    ******************************
        news
    *******************************
    */

    .news__wrapper {
        width: 90%;
    }

    .news__lists {
        width: 100%;
    }

    .news__item {
        padding: 16px 0;
    }

    .news__dateAndCategory {
        margin-bottom: 16px;
    }

    .news__title {
        display: block;
    }

    /*
    *******************************
        article
    *******************************
    */

    .article__wrapper {
        width: 90%;
    }

    .article__title {
        display: block;
    }
}

/* ------------------------------------------
  1280px〜：大型PC
--------------------------------------------*/
@media screen and (min-width:1280px) {}





/*
*******************************
    individual setting
*******************************
*/

/* 20230701 & 20231101 & 20231221 & 20240401 */

.id-20230701 .article__content,
.id-20231101 .article__content,
.id-20231221 .article__content,
.id-20240401 .article__content {
    display: flex;
    justify-content: space-around;
    column-gap: 32px;
}

.id-20230701 .article__imgWrapper,
.id-20231101 .article__imgWrapper,
.id-20231221 .article__imgWrapper,
.id-20240401 .article__imgWrapper {
    text-align: center;
}

.id-20230701 .article__img,
.id-20231101 .article__img,
.id-20231221 .article__img,
.id-20240401 .article__img {
    width: 200px;
}

/* 20250404 */
.id-20250407 .text-bold {
    font-weight: 900;
}

.id-20250407 .article__imgWrapper {
    max-width: 1000px;
    padding: 24px 0;
}


/* ------------------------------------------
  〜479px：スマホ縦
--------------------------------------------*/
@media screen and (max-width:479px) {

    .id-20210428 img {
        width: 90%;
    }

    .id-20230701 .article__img,
    .id-20231101 .article__img,
    .id-20231221 .article__img,
    .id-20240401 .article__img {
        width: 100px;
    }

    .id-20230701 .article__imgWrapper,
    .id-20231101 .article__imgWrapper,
    .id-20231221 .article__imgWrapper,
    .id-20240401 .article__imgWrapper {
        text-align: center;
    }
}

/* ------------------------------------------
  480px〜959px：タブレット
--------------------------------------------*/
@media screen and (min-width:480px) and (max-width:959px) {

    .id-20210428 img {
        width: 80%;
    }

    .id-20230701 .article__img,
    .id-20231101 .article__img,
    .id-20231221 .article__img,
    .id-20240401 .article__img {
        width: 120px;
    }

    .id-20230701 .article__imgWrapper,
    .id-20231101 .article__imgWrapper,
    .id-20231221 .article__imgWrapper,
    .id-20240401 .article__imgWrapper {
        text-align: center;
    }
}

/* ------------------------------------------
  960px〜1279px：タブレット(大)/モバイルPC
--------------------------------------------*/
@media screen and (min-width:960px) and (max-width:1279px) {

    .id-20230701 .article__img,
    .id-20231101 .article__img,
    .id-20231221 .article__img,
    .id-20240401 .article__img {
        width: 160px;
    }

}