.page-fv._sub {
    flex-direction: column;
    padding-top: 74px;
}
.page-subTitle {
    font-family: "Zen Maru Gothic";
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-light);
}
.page-title._sub {
    padding-top: 0;
}

@media (min-width: 768px) {
    .page-fv._sub {
        flex-direction: column;
        padding-top: 104px;
    }
    .page-subTitle {
        font-size: var(--font-size-xl);
    }
}

.brand-news__category .brand-list__title {
    font-size: var(--font-size-3xl);
    margin-bottom: 30px;
}

.brand-list.brand-news__category {
    padding-bottom: 80px;
}


.brand-list.brand-news__our-brand {
    padding-top: 83px;
    padding-bottom: 76.2px;
}

.brand-list.brand-news__our-brand .brand-list__title {
    font-size: var(--font-size-3xl);
    margin-bottom: 30px;
}

.brand-news__list .section__title {
    font-size: var(--font-size-3xl);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.brand-news__list .section__title._image {
    margin-bottom: 34px;
}

.brand-news__list .section__title._image picture {
    width: 260px;
    height: 50px;
}

.brand-news__list-subtitle {
    font-size: 28px;
    font-family: "Noto Sans JP";
    font-weight: 100;
}

@media (min-width: 768px) {
    .brand-news__category .brand-list__title {
        font-size: var(--font-size-5xl);
        margin-bottom: 68px;
    }

    .brand-news__list .section__title._image {
        margin-bottom: 59px;
    }
    
    .brand-news__list .section__title._image picture {
        width: 416px;
        height: 80px;
    }

    .brand-news__category .brand-list__2 {
        margin-bottom: 50px;
    }

    .brand-list.brand-news__category {
        padding-bottom: 165px;
    }


    .brand-list.brand-news__our-brand {
        padding-top: 100px;
        padding-bottom: 142px;
    }

    .brand-list.brand-news__our-brand .brand-list__title {
        font-size: var(--font-size-5xl);
        margin-bottom: 80px;
    }

    .brand-news__list .section__title {
        font-size: var(--font-size-5xl);
        gap: 15px;
    }

    .brand-news__list-subtitle {
        font-size: var(--font-size-4xl);
    }
}

.brand-news__gallery {
    margin-top: 40px;
}

.brand-news__gallery--list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 46px;
}

.brand-news__gallery--item {
    display: flex;
    width: calc((100% - 15px) / 2);
}

.brand-news__gallery--link {
    display: flex;
    flex-direction: column;
    gap: 11px;
    width: 100%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-news__gallery--link:hover .brand-news__gallery--image img {
    transform: scale(1.1);
}

.brand-news__gallery--link:hover .brand-news__gallery--date,
.brand-news__gallery--link:hover .brand-news__gallery--text {
    color: var(--color-primary);
}

.brand-news__gallery--image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 20px;
}

.brand-news__gallery--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.5s;
}

.brand-news__gallery--body {
    gap: 10px;
    display: flex;
    flex-direction: column;
}

.brand-news__gallery--head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-news__gallery--date {
    font-size: var(--font-size-xs);
}

.brand-news__gallery--logo {
    max-width: 78px;
    max-height: 15px;
}

.brand-news__gallery--logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.brand-news__gallery--text {
    font-size: var(--font-size-sm);
    line-height: 26px;
}

.brand-news__load-more {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 46px;
}

.brand-news__load-more-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 5px;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    width: 200px;
    height: 45px;
}

/* 隠れているアイテム */
.brand-news__gallery--item.hidden {
    display: none;
}

/* アニメーション用スタイル */
.brand-news__gallery--item {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* 初期読み込み時のアニメーション */
.brand-news__gallery--item:nth-child(1) {
    animation-delay: 0.1s;
}

.brand-news__gallery--item:nth-child(2) {
    animation-delay: 0.2s;
}

.brand-news__gallery--item:nth-child(3) {
    animation-delay: 0.3s;
}

.brand-news__gallery--item:nth-child(4) {
    animation-delay: 0.4s;
}

.brand-news__gallery--item:nth-child(5) {
    animation-delay: 0.5s;
}

.brand-news__gallery--item:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.brand-news__gallery--item:not(.hidden) {
    animation: fadeInUp 0.6s ease forwards;
}

/* PC時：4カラム (768px以上) */
@media (min-width: 768px) {
    .brand-news__gallery {
        margin-top: 50px;
    }

    .brand-news__gallery--list {
        column-gap: 50px;
        row-gap: 68px;
    }

    .brand-news__gallery--item {
        width: calc((100% - 100px) / 3);
    }

    .brand-news__gallery--link {
        gap: 10px;
    }

    .brand-news__gallery--body {
        gap: 16px;
    }

    .brand-news__gallery--logo {
        max-width: none;
        max-height: none;
    }

    .brand-news__gallery--logo img {
        width: 130px;
        height: 25px;
        max-width: none;
        max-height: none;
        object-fit: contain;
    }

    .brand-news__gallery--text {
        font-size: var(--font-size-base);
    }

    .brand-news__load-more {
        margin-top: 68px;
    }

}

/* PC時：4カラム (768px以上) */
@media (min-width: 1024px) {

    .brand-news__gallery--item {
        width: calc((100% - 150px) / 4);
    }

}