@charset "UTF-8";
select {
    size: initial !important;
    width: 100%;
    padding: .8em;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
    max-width: 200px;
}
.selectList li {
    text-align: end;
    margin-bottom: 2.26vw;
}
#discography .category-wrap {
    display: flex;
    gap: 40px;
    justify-content: end;
    margin-bottom: 2.26vw;
}
#discography .category-wrap li {
    border-bottom: 0;
    padding: 0;
}
#discography .category-wrap li a {
    font-family: var(--en);
}
#discography .category-wrap li.on a {
    color: var(--color1);
}
#discography .list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 2.6%;
}
#discography .list li {
    width: calc(92% / 4);
    transition: 0.8s all;
    overflow: hidden;
    position: relative;
}
#discography .list li .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 1 / 1;
    background: #fff;
}
#discography .list li .category {
    font-family: var(--en);
    font-size: 1.2rem;
    background: var(--color1);
    padding: 2px 20px;
    color: #fff;
    display: table;
    transition: 0.4s all;
    position: absolute;
    top: 0;
    left: 0;
}
#discography .list li .ttl {
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
}
#discography .list li .day,
#discography .container .title .day {
    font-size: 1.2rem;
    color: #aaa;
    font-weight: initial;
    text-align: center;
}
@media screen and (max-width: 768px) {
    #discography .category-wrap {
        justify-content: flex-start;
        margin-bottom: 16px;
    }
    #discography .list li {
        width: calc(94% / 3);
    }
}
@media screen and (max-width: 500px) {
    #discography .list {
        gap: 24px 2%;
    }
    #discography .list li {
        width: calc(98% / 2);
    }
    #discography .list li .ttl {
        font-size: 1.4rem;
    }
}
/* detail */
#discography .contWrap {
    display: flex;
    justify-content: space-between;
    line-height: 1.8;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--color1);
    margin-bottom: 62px;
}
#discography .contWrap .title {
    width: 40%;
}
#discography .contWrap .title img {
    width: 100%;
}
#discography .contWrap .title .category {
    font-family: var(--en);
    font-size: 1.2rem;
    background: var(--color1);
    padding: 2px 20px;
    color: #fff;
    display: table;
    transition: 0.4s all;
    margin-top: 10px;
    width: calc(100% - 40px);
    text-align: center;
}
#discography .contWrap .title .day {
    margin-top: 5px;
}
#discography .contWrap .detail-body {
    width: 55%;
}
#discography .contWrap .detail-body .headWrap {
    padding-bottom: 17px;
    border-bottom: 1px solid var(--color1);
    margin-bottom: 19px;
}
#discography .contWrap .detail-body .headWrap .ttl {
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 1.8;
}
#discography .contWrap .detail-body .headWrap .category {
    font-family: var(--en);
    font-size: 1.2rem;
    background: var(--color1);
    padding: 2px 20px;
    color: #fff;
    display: table;
    margin-bottom: 8px;
}
#discography .contWrap .detail-body .headWrap .day {
    text-align: right;
    font-size: 1.2rem;
    line-height: 1;
    color: #aaa;
}
@media screen and (max-width: 768px) {
    #discography .contWrap {
        display: block;
        margin-bottom: 56px;
        padding-bottom: 40px;
    }
    #discography .contWrap .title,
    #discography .contWrap .detail-body {
        width: 100%;
    }
    #discography .contWrap .title {
        margin-bottom: 24px;
    }
    #discography .contWrap .detail-body .headWrap {
        margin-bottom: calc(56px - 19px);
    }
    #discography .contWrap .detail-body .headWrap .ttl {
        font-size: 1.6rem;
    }
}
/* add */
.link {
    display: flex;
    flex-wrap: wrap;
    gap: 3%;
    margin-top: 10px;
    justify-content: center;
}
.link li {
    width: 12% !important;
    transition: 0.4s all;
}
.link li a img {
    width: 100%;
}
.link li:hover {
    opacity: 0.5;
}
.hover:hover {
    opacity: 1;
}
@media screen and (max-width: 768px) {
    .link li {
        width: 16% !important;
    }
    .selectList li {
        margin-bottom: 20px;
    }
}