@charset "utf-8";


/* --------------------------------------------

top

---------------------------------------------- */


.top {
    position: relative;
    top: 64px;
    height: 400px;
    background-image: url(../_image/common/top.jpg);
}

.top__title {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.top__title h1 {
    text-align: center;
    font-size: 48px;
    font-size: 4.8rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
}

.top__title h1 span {
    display: block;
    text-align: center;
    font-size: 20px;
    font-size: 2rem;
}


@media only screen and (max-width:640px) {
    .top {
        background-position: center;
    }

    .top__title h1 {
        text-align: center;
        font-size: 36px;
        font-size: 3.6rem;
    }

    .top__title h1 span {
        font-size: 16px;
        font-size: 1.6rem;
    }
}


/* --------------------------------------------

news

---------------------------------------------- */

.news {
    margin: 200px 0 160px;
}

.news dl {
    display: flex;
    align-items: center;
    width: 800px;
    margin: auto;
    border-top: dotted 1px #000;
    border-bottom: dotted 1px #000;
}

.news dl dt,
.news dl dd {
    margin: 20px 40px;
    font-size: 16px;
    font-size: 1.6rem;
}

.news dl dt {
    white-space: nowrap;
}

.news dl dd {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

@media only screen and (max-width:640px) {
    .news {
        margin: 120px 0;
    }

    .news dl {
        width: 94%;
    }

    .news dl dt,
    .news dl dd {
        margin: 20px;
    }

    .news dl dt {
        font-size: 14px;
        font-size: 1.4rem;
    }

    .news dl dd {
        -webkit-line-clamp: 2;
    }
}


/* --------------------------------------------


お知らせ記事


---------------------------------------------- */

article {
    margin-top: 70px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 120px 0;
}

.article__wrap {
    width: 94%;
    max-width: 880px;
    margin: 0 auto;
        border: 1px solid #B9B9B9;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 8px 0px rgba(185, 185, 185, 0.5);

}

.article__title {
    padding: 20px 40px;
}

.title__flex {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.article__category {
    padding: 0 20px;
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
    background-color: #284685;
}

.calender {
    font-size: 16px;
    font-size: 1.6rem;
}

.article__title h2 {
    margin: 0;
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.5;
    font-style: normal;
    font-weight: bold;
    -webkit-text-fill-color: #060B1E;
}

.article__main {
    padding: 40px;
    font-size: 16px;
    font-size: 1.6rem;
}

.article__main figure {
    margin: 20px 0;
}

.article__main a {
    color: #284685;
    text-decoration: underline;
}

.article__link {
    margin: 40px auto;
    text-align: center;
}


@media only screen and (max-width:640px) {
    .article__title h2 {
        font-size: 20px;
        font-size: 2rem;
    }

    .linkBtn {
        width: 94%;
    }
}