/* ===== Dress ブランド一覧（交互配置） ===== */
.brandList {
    list-style: none;
    padding: 0;
    margin: 80px auto 120px;
    max-width: 1200px;
}
.brandList__item {
    margin-bottom: 100px;
}
.brandList__item a {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    text-decoration: none;
}
.brandList__item:nth-child(even) a {
    flex-direction: row-reverse;
}
.brandList__photo {
    width: 50%;
    aspect-ratio: 2 / 3;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: transform 0.6s, filter 0.6s;
    flex-shrink: 0;
}
.brandList__item a:hover .brandList__photo {
    transform: scale(1.03);
    filter: grayscale(0%);
}
.brandList__body {
    flex: 1;
    position: relative;
    z-index: 2;
    margin-top: 500px;
}
.brandList__name {
    font-size: 8rem;
    letter-spacing: 0.05em;
    line-height: 1.15;
    color: #333;
    margin: 0 0 0 -80px;
}
.brandList__item:nth-child(even) .brandList__name {
    text-align: right;
    margin: 0 -80px 0 0;
}
.brandList__text {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 2;
    color: #707070;
    margin: 30px 0 0 50px;
    max-width: 480px;
}
.brandList__item:nth-child(even) .brandList__text {
    text-align: right;
    margin: 30px 50px 0 auto;
}
@media (max-width: 768px) {
    .brandList {
        margin: 40px auto 60px;
    }
    .brandList__item {
        margin-bottom: 50px;
    }
    .brandList__item a,
    .brandList__item:nth-child(even) a {
        flex-direction: column;
        gap: 20px;
    }
    .brandList__photo {
        width: 100%;
        filter: grayscale(0%);
    }
    .brandList__body {
        margin-top: 0;
    }
    .brandList__name,
    .brandList__item:nth-child(even) .brandList__name {
        font-size: 2rem;
        text-align: center;
        margin: 0;
    }
    .brandList__text,
    .brandList__item:nth-child(even) .brandList__text {
        font-size: 1.3rem;
        max-width: 100%;
        text-align: center;
        margin: 15px 0 0;
    }
}
/* ブランド名タブ */
.brandCategory {
    margin-top: 15px;
}
.brandCategory li a {
    font-size: 2rem;
}
/* ブランドページのタイトル位置 */
.brandPage .headline01 {
    margin-top: 0px !important;
    margin-bottom: 100px !important;
}