@charset "UTF-8";
#sut,#sut_contents {
}


/*コーナー個別アーカイブ*/
#archive a {
    color: #161616;
}
#archive a img {
    transition: 0.6s;
}
#archive a:hover img {
    transform: scale(1.1);
}
#archive .section_title {
    color: #3f3f3f;
    text-align: center;
    font-size: 3rem;
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
}

#archive .section_title_en {
    font-size: 1.6rem;
    display: block;
    font-family: "Montserrat", serif;
    letter-spacing: 0.1em;
}

#archive .container {
    max-width: 1280px;
}

#archive .baner {
    width: 50%;
    margin: 0 auto 80px;
    transform: translateX(3%);
}

#archive .baner .img_wrap{
    position: relative;
}

#archive .baner .img_wrap::before{
    content: "";
    position: absolute;
    width: 120px;
    height: 109px;
    background-image: url(../../../images/flower.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    top: -10px;
    left: -80px;
    transform: rotate(40deg);
}

#archive .baner .img_wrap::after{
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background-image: url(../../../images/flower.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    bottom: 5px;
    right: -50px;
}

#archive .contents_list_wrap{
    padding: 80px 30px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    backdrop-filter: blur(10px);
}

#archive .contents_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, 295px);
    justify-content: center;
    grid-gap: 2rem;
}


#archive .contents_item {
    background-color: #fff;
    border-radius: 40px 10px 40px 10px;
    width: 295px;
    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_item a {
    padding: 2.1rem 2rem 1.9rem;
    display: block;
    height: 100%;
}

#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_m);
    margin-bottom: 20px;
}
#archive .reporter_wrap {
    display: flex;
    font-size: var(--font_ss);
    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: 80px;
}
.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;
}

.pagination li.navi-active {
    background-color: var(--sub_orange);
}

.pagination li.navi-active a{
    color: #ffffff!important;
}




