/*==================================================
section topNews
===================================*/
.topNews {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 2rem;
    background: #FDFCF4;
}

.topNews::after {
    content: "";
    z-index: 1;
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    background: #FDFCF4;
    height: 15%;
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;
}

.topNews .inner {
    position: relative;
    z-index: 2;
}

.topNews__items {
    display: flex;
    margin-top: 2rem;
    flex-direction: column;
    background-color: #fff;
    border: solid 1px #E4AC59;
    border-radius: 3rem;
    padding: 2rem 2rem 4rem;
    position: relative;
}

.topNews__items::before {
    content: '';
    background-image: url(../img/news_dog.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: -6.5rem;
    left: -1rem;
    display: block;
    width: 5.5rem;
    height: 14.2rem;
}

.topNews__items::after {
    content: '';
    background-image: url(../img/news_cat.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: -5.5rem;
    right: -1rem;
    display: block;
    width: 5rem;
    height: 14.2rem;
}

.topNews__item a {
    width: 100%;
    display: grid;
    border-bottom: solid 1px #EEEEEE;
    padding: 2rem 1.2rem;
}

.topNews__item_label {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.topNews__date {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.12rem;
    margin-right: 1.2rem;
}

.topNews__image {
    position: relative;
    width: 100%;
    height: 18rem;
}

.topNews__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.topNews__category {
    width: fit-content;
    line-height: 2rem;
    min-height: 2rem;
    padding: 0.2em 1.5rem;
    border-radius: 3px;
    background: #FFB61E;
    color: #FFF;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.1rem;
    font-family: "Noto Sans JP", sans-serif;
    margin-right: 2rem;
    padding: 0 0.5rem;
}

.topNews__title {
    font-weight: 500;
    font-size: 1.4rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.625;
    letter-spacing: 0.04em;
}

.topNews__text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.02em;
    padding: 0 2.5rem;
}

.topNews__link {
    color: #E4AC59;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.7142857143;
    letter-spacing: 0.14em;
    padding-right: 2.5rem;
}

.topNews__link img {
    width: 0.8rem;
    height: 1.2rem;
}

.topNews__link span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    gap: 0.9rem;
}

.topNews__link span::after {
    position: absolute;
    top: 105%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #E4AC59;
    content: "";
}

.topNews__btn {
    margin-top: 3rem;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .topNews {
        padding: 6.5rem 0 1rem;
    }

    .topNews::after {
        bottom: -10%;
        width: 110%;
        height: 15%;
        border-bottom-left-radius: 50% 100%;
        border-bottom-right-radius: 50% 100%;
    }

    .topNews__item a {
        width: 100%;
        display: flex;
        align-items: center;
        border-bottom: solid 1px #EEEEEE;
        padding: 2rem 1.2rem;
    }

    .topNews__item_label {
        margin-bottom: 0;
    }

    .topNews__date {
        margin-right: 2.2rem;
    }

    .topNews__items::before {
        bottom: -8.5rem;
        left: -12rem;
        width: 12.8rem;
        height: 14.2rem;
    }
    
    .topNews__items::after {
        bottom: -6.5rem;
        right: -8.5rem;
        width: 12.8rem;
        height: 14.2rem;
    }
}

@media (min-width: 768px) and (max-width: 1280px) {
    .topNews__items::before {
        bottom: -8.5rem;
        left: -3rem;
        width: 9.8rem;
        height: 14.2rem;
    }
    
    .topNews__items::after {
        bottom: -6.5rem;
        right: -5.5rem;
        width: 10.8rem;
        height: 14.2rem;
    }
}

/*==================================================
section topNews END
===================================*/