@charset "UTF-8";

#discography {
    min-height: 100vh;
}

.heading-lg {
    padding-bottom: 56px;
}

@media screen and (max-width: 768px) {
  .heading-lg {
    padding-bottom: 24px;
  }
}

.category-list-wrapper {
    container: catlist / inline-size;
    position: sticky;
    padding-block: 10px;
    top: 80px;
    z-index: 700;
    backdrop-filter: blur(5px);
}

/* category-list */
.category-list {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.category-list-item {
    width: calc(100%/4);
}

.category-list-item a {
    display: block;
    width: 100%;
    padding: 6px;
    border: 1px solid var(--powder-aqua);
    background: var(--white);
    color: var(--marine-blue);
    text-align: center;
    font-family: Figtree;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.7px;
}

.category-list-item.active a {
    background: var(--marine-blue);
    box-shadow: 3px 3px 10px 2px rgba(22, 23, 38, 0.25) inset;
    color: var(--white);
}

/* category-hover ↓*/

.category-link-text {
    position: relative;
    z-index: 2;
}

.c-category-link-btn {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    transition: background-color 1s;
}

.category-link-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background-color: var(--off-white);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.5s ease-out, opacity 0.5s ease-out;
}

@media (hover: hover) {
    .category-list-item:not(.active) .c-category-link-btn:hover .category-link-effect {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

/* category-hover ↑*/

@media screen and (max-width:960px) {

    .simplebar-track.simplebar-horizontal {
        background: var(--mint-Gray, #E4EFE3);
        border-radius: 7px;
        height: 2px;
    }

    .simplebar-track.simplebar-horizontal .simplebar-scrollbar {
        top: 0;
        height: 2px;
    }

    .simplebar-scrollbar.simplebar-visible:before {
        opacity: 1;
        background: var(--marine-blue, #006788);
        border-radius: 7px;
    }
}

@media screen and (max-width:768px) {
    .category-list {
        display: flex;
        width: 100%;
        padding-bottom: 10px;
    }

    .category-list-item {
        width: 100%;
    }

    .category-list-item a {
        min-width: 100px;
    }

    .category-list-item a:last-of-type {
        min-width: 130px;
    }
}

/* jacket-cards  */
.jacket-cards {
    margin-top: 2.1875em;
    -webkit-justify-content: space-between;
    -webkit-flex-wrap: wrap;
    display: flex;
}

.jacket-cards::after {
    display: block;
    content: "";
    width: 30%;
}

.jacket-cards__items {
    width: 32%;
    padding-bottom: 1.8rem;
}

.jacket-cards__items img {
    object-fit: contain;
    aspect-ratio: 1 / 1;
}

.jacket-cards__items a {
    padding-bottom: 1.5625em;
    font-size: 1.125em;
    margin: 0;
    padding: 0;
    font-family: "Noto Sans JP", "游ゴシック", YuGothic, "Yu Gothic", "游ゴシック体", "メイリオ", Meiryo, sans-serif;
    color: #212121;
    outline: none;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transition: opacity 0.5s ease-in-out;
}

.jacket-cards__category {
    margin-bottom: 4px;
    color: var(--ymd-color, #7F7F7F);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
}

.jacket-cards__title {
    margin-bottom: 8px;
    color: var(--petrol-blue, #0A2A34);
    font-size: 1.6rem;
    font-weight: 500;
}

.jacket-cards__date {
    margin-bottom: 4px;
    color: var(--ymd-color, #7F7F7F);
    font-weight: 400;
    font-size: 1.4rem;
    white-space: unset;
}

.no-data {
    margin-block: calc(100dvh / 4);
    font-size: 1.6rem;
    text-align: center;
    font-family: "Figtree", sans-serif;
}

@media screen and (max-width:768px) {
    .jacket-cards {
        justify-content: center;
    }

    .jacket-cards__items {
        max-width: 440px;
        width: 100%;
    }
}

@media (hover:hover) {
    .jacket-cards__items a:hover {
        opacity: 0.5;
    }
}