@charset "utf-8";
/* =======================
section--information
======================== */
.title__information {
    font-family: "Times New Roman";
    text-align: center;
    font-size: 4.6rem;
    font-weight: 400;
    line-height: 1.2; 
    letter-spacing: 0.72px;
}

/* pc 769px */
@media screen and (min-width: 769px) {
    .title__information {
    font-size: 6.0rem;
    letter-spacing: 1.2px;
}
}

/* =======================
section--informationList
======================== */
.section-informationList {
    padding: 0 5.33%;
}

.information__list {
    display: flex;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.information__topic {
    width: 335px;
    margin-bottom: 64px;
    transition: opacity 0.4s ease;
}

.information__topic a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: fit-content;
}

.information__topic:hover {
    opacity: 0.5; 
}

.information__topic time {
    font-family: "Times New Roman";
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 0.34px;
    margin-top: 8px;
    color: #7F8296;
}

.information__txt {
    text-align: justify;
    font-family: "Zen Old Mincho";
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.8px;
    margin-top: 4px;
}


/* ページネーション */
.pnavi {
    display: flex;
    justify-content: center;
    gap: 0 8px;
    padding-bottom: 72px;
}

.page-numbers {
    font-family: "Times New Roman";
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.34px;

    display: block;
    width: 28px;
    height: 28px;
    text-align: center;
    padding: 6px 8px;
}

.current {
    background-color: #AAACB7;
    border-radius: 50%;
    color: #fff;
}

.information__topic img {
        aspect-ratio: 335/418.5;
        object-fit: cover;
    }


/* pc 769px */
@media screen and (min-width: 769px) {
    .information__topic {
        width: 341px;
    }

    .information__list {
        gap: 0 48px;
    }

    .information__topic img {
        aspect-ratio: 341/426;
        object-fit: cover;
    }
}