@charset "UTF-8";
#sut,#sut_contents {
}


/*コーナー個別アーカイブ*/
#archive a {
    color: #161616;
}

#archive .section_title {
    color: #3f3f3f;
    text-align: center;
    font-size: 2.5rem;
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
}

#archive .section_title_en {
    font-size: 1.4rem;
    display: block;
    font-family: "Montserrat", serif;
    letter-spacing: 0.1em;
}

#archive .baner {
    width: 90%;
    margin: 0 auto 40px;
    transform: translateX(2%);
}

#archive .baner .img_wrap{
    position: relative;
}

#archive .baner .img_wrap::before{
    content: "";
    position: absolute;
    width: 60px;
    height: 55px;
    background-image: url(../../../images/flower.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    top: -5px;
    left: -20px;
    transform: rotate(40deg);
}

#archive .baner .img_wrap::after{
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    background-image: url(../../../images/flower.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    bottom: 0px;
    right: -18px;
}

.contents_list_wrap{
    padding: 60px 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    margin: 0px auto;
}

#archive .contents_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, 320px);
    justify-content: center;
    grid-gap: 2rem;
}

#archive .contents_item {
    background-color: #fff;
    border-radius: 40px 10px 40px 10px;
    padding: 2.1rem 2rem 1.9rem;
    background: linear-gradient(338deg, rgba(248, 255, 189, 1) 0%, rgba(255, 255, 255, 1) 100%);
    box-shadow: 0 0 7px rgba(121, 129, 114, 0.3);

}

#archive .contents_image_wrap {
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid #dedede;
}

#archive .contents_item .contents_image_wrap img {
    object-fit: cover;
    height: 100%;
}

#archive .text_wrap {
    font-weight: bold;
}
#archive .oa_date {
    color: var(--sub_orange);
}

#archive .title {
    font-size: var(--font_l);
    margin-bottom: 20px;
}
#archive .reporter_wrap {
    display: flex;
    font-size: var(--font_s);
    align-items: center;
}

#archive .reporter {
    background-color: var(--main_green);
    color: var(--text_sub);
    padding: 1% 2%;
    border-radius: 10px 5px 10px 5px;
    margin-right: 10px;
}

/*ページネーション*/
.pagination-container {
    margin-top: 40px;
}
.pagination {
    display: flex;
    justify-content: center;
}

.pagination li {
    margin: 0 4px;
    background: #fff;
    padding: 0;
    border-radius: 5px;
    box-shadow: 0 0 7px rgba(121, 129, 114, 0.3);
}

.pagination li a {
    font-size: 15px;
    line-height: 1;
    font-weight: bold;
    min-width: 40px;
    padding: 0.7em 0.9em;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border-radius: 20px; */
}

.pagination li.navi-active {
    background-color: var(--sub_orange);
}

.pagination li.navi-active a{
    color: #ffffff!important;
}

#archive .container .inner{
    padding-bottom: 80px;
}