.top-content-width {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

/*
lead
*/

.top-lead__lead {
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1.2;
    text-align: center;
    word-break: keep-all;
}

.top-lead__description {
    font-family: var(--font-serif);
    font-size: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .top-lead__lead {
        font-size: 2.5rem;
    }

    .top-lead__description {
        font-size: 1.5rem;
    }
}

/*
featured
*/

.top-featured {
    position: relative;
    overflow: hidden;
    width: 100%;
}

@media (min-width: 768px) {
    .top-featured {
        aspect-ratio: 120 / 75;
    }
}

.top-featured__image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.top-featured__image>img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.top-featured__name {
    display: grid;
    align-items: start;
    justify-content: left;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 6px;
}

@media (min-width: 768px) {
    .top-featured__name {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto;
    }
}

.top-featured__name-kanji {
    color: white;
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 0.9;
}

@media (min-width: 768px) {
    .top-featured__name-kanji {
        font-size: 4rem;
    }
}

.top-featured__name-romaji {
    color: white;
    font-family: var(--font-serif);
    font-size: 0.75rem;
    line-height: 1;
}

@media (min-width: 768px) {
    .top-featured__name-romaji {
        font-size: 1.25rem;
    }
}

.top-featured__catchphrase {
    color: white;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    line-height: 1.2;
    margin-left: 20px;
}

@media (min-width: 768px) {
    .top-featured__catchphrase {
        font-size: 2.25rem;
        margin-left: 40px;
    }
}

.top-featured__title {
    color: white;
    font-family: var(--font-serif);
    font-size: 1rem;
    line-height: 1;
    margin-left: 20px;
}

@media (min-width: 768px) {
    .top-featured__title {
        font-size: 1.5rem;
        margin-left: 40px;
    }
}

.top-featured__excerpt {
    margin-top: 32px;
    margin-left: auto;
    margin-right: 12px;
    margin-bottom: 12px;
    max-width: 180px;
}

@media (min-width: 768px) {
    .top-featured__excerpt {
        position: absolute;
        right: 0;
        bottom: 0;
        margin-top: auto;
        margin-left: auto;
        margin-right: 24px;
        margin-bottom: 24px;
    }
}

.top-featured__excerpt-body {
    color: white;
    font-family: var(--font-serif);
    font-size: 1rem;
    line-height: 1.75;
}

.top-featured__excerpt-more {
    color: black;
    background-color: transparent;
    filter: invert(1);
    text-align: center;
    width: 100%;
}

/*
news
*/

.top-news {
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(var(--spacing) * 6);
}

@media (min-width: 768px) {
    .top-news {
        grid-template-columns: 1fr 1fr;
        gap: calc(var(--spacing) * 24);
    }
}

.top-news__news,
.top-news__workshops {
    display: grid;
    grid-template-rows: auto 1fr;
    row-gap: calc(var(--spacing) * 2.5);
}

.top-news__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-news__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    line-height: 1;
}

.top-news__button {
    margin-right: 12px;
}

.top-news__list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 1px solid black;
}

.top-news__list-item__link {
    display: block;
    transition: all 220ms ease;
}

.top-news__list-item__link:hover {
    opacity: 0.7;
}

.top-news__list-item__link__thumbnail {
    margin-left: auto;
}

/*
items-slider
*/

.top-items-slider {
    background-color: #898888;
    padding-top: 60px;
    padding-bottom: 70px;
}

@media (min-width: 768px) {
    .top-items-slider {
        padding-top: 95px;
        padding-bottom: 135px;
    }
}

.top-items-slider__title {
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1;
    color: white;
    text-align: center;
    word-break: keep-all;
    margin-bottom: calc(var(--spacing) * 12);
}

@media (min-width: 768px) {
    .top-items-slider__title {
        font-size: 2.5rem;
        margin-bottom: calc(var(--spacing) * 24);
    }
}

.top-swiper {
    position: relative;
}

.top-swiper::before {
    content: '';
    pointer-events: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, #89888833 1%, transparent 10%, transparent 90%, #89888833 99%);
    width: 100%;
    height: 100%;
    z-index: 20;
}

.top-swiper__item {
    display: flex;
    align-items: center;
    justify-content: center;

    aspect-ratio: 30 / 54;
    background-color: white;

    max-width: 300px;
}

/*
items
*/

.top-items__title {
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1;
    text-align: center;
    word-break: keep-all;
    margin-bottom: calc(var(--spacing) * 8);
}

@media (min-width: 768px) {
    .top-items__title {
        font-size: 2.5rem;
        margin-bottom: calc(var(--spacing) * 16);
    }
}

.top-items__nav {
    display: grid;
    align-items: start;
    grid-template-columns: repeat(1, 1fr);
    gap: calc(var(--spacing) * 2);
}

@media (min-width: 640px) {
    .top-items__nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .top-items__nav {
        grid-template-columns: repeat(4, 1fr);
    }
}

.top-items__nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


@media (min-width: 768px) {
    .top-items__nav__item--bar::after {
        content: '';
        display: block;
        background-color: black;
        height: 18px;
        width: 1px;
    }
}