@charset "UTF-8";
#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%;
    margin-bottom: 56px;
}
#discography .list li {
    width: calc(92% / 4);
    transition: 0.8s all;
    overflow: hidden;
    position: relative;
}
#discography .list li:hover .thumbnail img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
#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;
}
#discography .list li .day,
#discography .container .title .day {
    font-size: 1.2rem;
    color: #aaa;
    font-weight: initial;
}
@media screen and (max-width: 768px) {
    #discography .category-wrap {
        justify-content: flex-start;
        margin-bottom: 16px;
    }
    #discography .list li {
        width: calc(96% / 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 #dbdbdb;
    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 #dbdbdb;
    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;
    }
    .selectList li {
        padding: 0 0 20px;
    }
}
/* html-editor */
#discography .contWrap .detail-body img {
    width: 100% !important;
    height: auto !important;
    max-width: 500px;
}
#discography .contWrap .detail-body p a {
    color: #007bff;
}
/* 0219 */
#no-message {
    font-size: 1.8rem;
    font-family: var(--jp);
    color: #ccc;
    text-align: center;
    margin-top: 10vh;
}
@media screen and (max-width: 420px) {
    #no-message {
        font-size: 1.6rem;
        margin-top: 18vw;
    }
}
/* select */
.selectList li span {
    display: block;
    font-size: 1.2rem;
    font-family: var(--en);
    color: #ccc;
    margin-bottom: 5px;
}
.selectList li {
    padding: 2.26vw 1.33vw;
    padding-top: 0 !important;
}
.selectList select {
    width: 225px;
    height: 40px;
    font-size: 13px;
    border: 1px solid #C2C2C2;
    padding: 10px;
    background-color: var(--color3);
}