@charset "utf-8";

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

アーカイブ

===================*/
/* fv section */
.fv__content {
    position: static;
    width: 100%;
    height: 30vw;
    background-image: url(../imgs/archive/fv_bg.jpg);
    background-size: cover;
    background-position: center;
}

.fv__title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: fit-content;
    color: #fff;
    font-size: 45px;
    font-weight: 500;
}


/* archives section */
#archive {
    padding-top : 80px;
    padding-bottom: 116px;
}

.archive__text {
    margin-bottom: 75px;
    text-align: center;
    font-family: "Noto Serif JP";
    font-size: 16px;
    line-height: 1.9;
}

.ilblk {
    display: inline-block;
}

.inner-1320 {
    width: 95.7%;
    max-width: 1320px;
    margin: 0 auto;
}

.archive__list {
    display: flex;
    flex-wrap: wrap;
    justify-content:flex-start;
    gap: 30px 2.6%;
    margin-bottom: 91px;
}

.archive__item {
    width: calc((100% - 5.2%) / 3);
    max-width: 417px;
}

.archive__item a {
    display: block;
    cursor: pointer;
}

/* btn */
.archive__btn {
    position: relative;
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.archive__btn a {
    display: block;
    width: 265px;
    height: 37px;
    align-items: center;
    border-radius: 19px;
    background-color: #FFFFFF;
    border: 1px solid #707070;

    cursor: pointer;
}

.archive__btn a:hover {
    opacity: 0.7;
}

.triangle {
    position: absolute;
    top: 50%;
    left: 6%;
    transform: translate(-50%, -50%);

    display: block;
    width: 6px;
    height: 6px;
    border-style: solid;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-right: 6px solid #777777;
    border-left: 0;
}

.archive__btnText {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    text-align: center;
    font-family: "Noto Serif JP";
    font-size: 16px;
}



@media screen and (max-width: 1100px) {
    /* fv section */
    .fv__title {
        font-size: 35px;
    }
}

@media screen and (max-width: 768px) {
    /* fv section */
    .fv__content {
        height: 230px;
    }
    .fv__title {
        font-size: 25px;
    }

    /* archives section */
    .inner-1320 {
        width: 94%;
    }

    #archive{
        padding-top: 50px;
        padding-bottom: 80px;
    }
    .archive__text {
        margin-bottom: 55px;
        font-size: 14px;
    }
    .archive__list{
        margin-bottom: 60px;
    }
    .archive__item {
        width: calc((100% - 2.6%) / 2);
    }

    .remodal{
        padding: 20px;
    }
    .remodal-close{
        width: 20px;
        height: 20px;
    }
    .remodal-close:before{
        width: 23px;
        top: -4px;
    }
}