@charset 'utf-8';
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&display=swap');
/*==============
    common
===============*/
:root {
    /* color */
    --font-black: #1a1a1a;
    --color1: #fabd00;
    --color2: #d0430c;
    --black: #1a1a1a;
    --link-color: #006b9e;
    /* font */
    --en: "Roboto", sans-serif;
    --jp: 'Noto Sans JP', sans-serif;
}
::selection {
    background: var(--color1);
    color: white;
}
::-moz-selection {
    background: var(--color1);
    color: white;
}
html {
    font-size: 10px;
    scroll-behavior: smooth;
}
img {
    user-drag: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    image-rendering: -webkit-optimize-contrast;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
body {
    font-size: 1.6rem;
    font-family: var(--jp);
    font-weight: 500;
    color: var(--font-black);
    animation: fadeIn 3s forwards;
    position: relative;
    background-color: #ffffff;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, rgb(208, 67, 12) 0%, rgb(250, 189, 0) 54%, rgb(208, 67, 12) 100%);
    z-index: 9999;
}
body::after {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, rgb(208, 67, 12) 0%, rgb(250, 189, 0) 54%, rgb(208, 67, 12) 100%);
    z-index: 9999;
}
a {
    text-decoration: none;
    color: initial;
    transition: 0.3s all;
}
.icon-external-link {
    padding-right: 20px;
    position: relative;
}
.icon-external-link::after {
    content: "\e901";
    color: #dfdfdf;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 100;
}
/* hover animation */
.text {
    display: inline-block;
    height: 1em;
    line-height: 1em;
    overflow: hidden;
    color: transparent;
    text-shadow: 0 -1em 0 #dfdfdf, 0 0 0 #dfdfdf;
    transition: text-shadow 0.3s;
}
.text:hover {
    text-shadow:
        0 0 0 #dfdfdf,
        0 1em 0 #dfdfdf;
}
@keyframes glitch {
    0% {
        clip-path: inset(10% 0 85% 0);
        transform: translate(-1px, -1px);
    }
    50% {
        clip-path: inset(40% 0 43% 0);
        transform: translate(1px, 1px);
    }
    100% {
        clip-path: inset(80% 0 5% 0);
        transform: translate(-1px, 1px);
    }
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.flex {
    display: flex;
}
.slider img {
    width: 100%;
    height: auto;
    display: block;
}
@media screen and (min-width: 1000px) {
    #cursor {
        position: fixed;
        background: rgba(255, 255, 255, 0.4);
        border-radius: 40px;
        width: 10px;
        height: 10px;
        margin: -10px 0 0 -10px;
        z-index: 9999;
        pointer-events: none;
        opacity: 0;
        transition: transform 0.1s;
    }
    #stalker {
        position: fixed;
        border: 1px solid #fff;
        width: 50px;
        height: 50px;
        border-radius: 120px;
        margin: -30px 0 0 -30px;
        z-index: 9999;
        pointer-events: none;
        opacity: 0;
        transition: transform 0.5s;
    }
    #cursor.active,
    #stalker.active {
        transform: scale(1.3);
    }
    #cursor.is-dark {
        background: rgba(0, 0, 0, 0.6);
    }
    #stalker.is-dark {
        border: 1px solid #000;
    }
}
#whiteBg {
    background: #fff;
    position: relative;
    z-index: 998;
}
#blackBg {
    background: #000;
    position: relative;
    z-index: 998;
    color: #fff;
}
#blackBg::before {
    content: "";
    position: absolute;
    background: url(../img/bg-logo.png) no-repeat center / contain;
    width: 720px;
    aspect-ratio: 720 / 452;
    top: 0;
    left: -53px;
    opacity: 0.18;
    z-index: -1;
}
#blackBg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 32%, rgba(198, 99, 11, 0.25) 100%);
    opacity: 0.8;
    z-index: -2;
}
h2 {
    font-size: clamp(32px, calc(32px + 32 * ((100vw - 320px) / 1120)), 64px);
    font-family: var(--en);
    font-weight: 700;
}
#blackBg h2 {
    color: #fff;
}
.ttlwrap {
    margin-bottom: clamp(16px, calc(16px + 16 * ((100vw - 320px) / 1120)), 32px);
    justify-content: space-between;
    align-items: baseline;
}
.morelink {
    font-size: clamp(14px, calc(14px + 2 * ((100vw - 320px) / 1120)), 16px);
    font-family: var(--en);
    font-weight: 700;
    padding-right: clamp(35px, calc(35px + 13 * ((100vw - 320px) / 1120)), 48px);
    position: relative;
}
.circle {
    position: absolute;
    right: 0;
    border: 1px solid;
    border-radius: 50px;
    width: clamp(23px, calc(23px + 9 * ((100vw - 320px) / 1120)), 32px);
    height: clamp(23px, calc(23px + 9 * ((100vw - 320px) / 1120)), 32px);
}
.morelink .icon-arrow-right2:before {
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    height: clamp(23px, calc(23px + 9 * ((100vw - 320px) / 1120)), 32px);
    width: clamp(23px, calc(23px + 9 * ((100vw - 320px) / 1120)), 32px);
}
.morelink:hover {
    opacity: 0.5;
}
#blackBg .morelink,
#blackBg .morelink .icon-arrow-right2:before {
    color: #fff;
}
#blackBg .circle {
    border: 1px solid #fff;
}
@media screen and (max-width: 1000px) {
    .wrap {
        width: 90%;
    }
}
@media screen and (max-width: 768px) {
    .pc {
        display: none !important;
    }
    .sp {
        display: block;
    }
    #blackBg::before {
        width: 341px;
        top: 22px;
        left: 0;
    }
    .more-sp {
        text-align: right;
        margin-top: 22px;
    }
    .morelink .icon-arrow-right2:before {
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    #luxy,
    #luxy-wrap {
        transform: none !important;
        position: initial !important;
    }
}
/* animation */
.anime {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(50px);
    transition: opacity 0.6s ease, filter 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform, filter;
}
.anime-on {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}
.ttl-animation {
    display: inline-block;
    position: relative;
    overflow: hidden;
    color: transparent;
    line-height: 1.2;
}
.ttl-animation span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    transform: translateX(-101%);
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    will-change: transform;
}
#news .ttl-animation span{
    color: var(--black);
}
.ttl-animation span:nth-child(1) {
    clip-path: inset(0 0 66% 0);
    z-index: 3;
}
.ttl-animation span:nth-child(2) {
    clip-path: inset(33% 0 33% 0);
    z-index: 2;
}
.ttl-animation span:nth-child(3) {
    clip-path: inset(66% 0 0 0);
    z-index: 1;
}
.ttl-animation.is-active span {
    transform: translateX(0);
}
.ttl-animation::after {
    content: attr(data-text);
    display: block;
    color: transparent;
}
/*==============
    header
===============*/
header {
    position: fixed;
    width: 100%;
    z-index: 999;
}
header .wrap {
    width: 95%;
    max-width: initial;
    margin: 0 auto;
    margin-top: 24px;
}
header .mainMenuWrap {
    display: flex;
    justify-content: space-between;
}
header h1 {
    max-width: clamp(100px, calc(100px + 32 * ((100vw - 320px) / 1120)), 132px);
}
header .pc-menuWrap .mainMenu {
    display: flex;
    gap: 32px;
}
header .pc-menuWrap .mainMenu li a {
    font-family: var(--en);
    font-weight: 700;
    font-size: 1.6rem;
}
header .snsAccount {
    position: absolute;
    right: 0;
    top: 7.11vh;
}
header .icon-external-link::after {
    color: transparent;
}
header .nav-wrapper.open .nav-pages__main li .icon-external-link::after {
    color: #ccc;
}
/* snsAccount */
.snsAccount {
    display: flex;
    gap: 16px;
    background: rgba(255, 255, 255, 0.2);
    padding: 16px 2.22vw;
    align-items: center;
}
.snsAccount dt {
    color: #fff;
    font-family: var(--en);
    font-size: 1.3rem;
    padding-right: 16px;
    border-right: 1px solid;
}
.snsAccount dd a {
    transition: 0.3s all;
}
.snsAccount dd a:hover {
    opacity: 0.5;
}
@media screen and (max-width: 768px) {
    header h1 {
        margin-left: 20px;
    }
    header .nav-main h1 {
        max-width: 160px;
        margin: 0 auto 52px;
    }
    header .header-logo img {
        max-width: 170px;
    }
    header .gnav-list a:hover {
        opacity: 0.5;
    }
    header .hamburger {
        width: 50px;
        height: 12px;
        position: fixed;
        top: 32px;
        right: 20px;
        z-index: 600;
        cursor: pointer;
    }
    header .hamburger:before,
    header .hamburger:after {
        content: "";
        position: absolute;
        background: #fff;
        width: 100%;
        height: 2px;
        transition: top 300ms 350ms ease, transform 300ms 50ms ease;
    }
    header .hamburger:before {
        top: 0;
    }
    header .hamburger:after {
        top: 10px;
    }
    header .nav-wrapper.open .hamburger:after,
    header .nav-wrapper.open .hamburger:before {
        transition: top 300ms 50ms ease, transform 300ms 350ms ease;
        top: 6px;
        background: #000;
    }
    header .nav-wrapper.open .hamburger:before {
        transform: rotate(20deg);
        background: #fff;
    }
    header .nav-wrapper.open .hamburger:after {
        transform: rotate(-20deg);
        background: #fff;
    }
    header .nav {
        position: fixed;
        right: 0;
        top: 0;
        width: 100%;
        z-index: 500;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s;
    }
    header .nav-wrapper.open .nav {
        height: 100dvh;
        opacity: 1.0;
        visibility: visible;
        background: linear-gradient(-90deg, rgb(1, 0, 0) 0%, rgb(50, 25, 3) 100%);
    }
    header .nav .wrap {
        padding: clamp(40px, calc(40px + 60 * ((100vw - 320px) / 1120)), 100px) 0;
        height: 100%;
        position: relative;
        overflow-y: auto;
        overscroll-behavior-y: none;
        box-sizing: border-box;
    }
    header .nav-container {
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
        column-gap: 12.5%;
        justify-content: center;
        flex-direction: column;
    }
    header .nav-main ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
        margin-top: 32px;
    }
    header .nav-main ul li a {
        display: block;
        text-align: center;
        font-size: 1.3rem;
        font-weight: 600;
        letter-spacing: 0.025em;
        text-align: center;
        border-radius: 100px;
        text-align: center;
        padding: 10px 42px;
        background: var(--color1);
        color: #fff;
    }
    header .nav-main ul li a:hover {
        opacity: 0.5;
    }
    header .nav-pages {
        flex-grow: 1;
        display: flex;
        align-items: flex-start;
        column-gap: 13%;
    }
    header .nav-pages__main li,
    header .nav-wrapper.open .nav-pages dl.snsAccount.sp {
        opacity: 0;
        transition: 1.4s all;
    }
    header .nav-wrapper.open .nav-pages__main li,
    header .nav-wrapper.open .nav-pages dl.snsAccount.sp {
        opacity: 1;
        transition: 1.4s all;
    }
    header .nav-wrapper.open .nav-pages__main li:nth-child(1) {
        transition-delay: 0.2s;
    }
    header .nav-wrapper.open .nav-pages__main li:nth-child(2) {
        transition-delay: 0.3s;
    }
    header .nav-wrapper.open .nav-pages__main li:nth-child(3) {
        transition-delay: 0.4s;
    }
    header .nav-wrapper.open .nav-pages__main li:nth-child(4) {
        transition-delay: 0.5s;
    }
    header .nav-wrapper.open .nav-pages__main li:nth-child(5) {
        transition-delay: 0.6s;
    }
    header .nav-wrapper.open .nav-pages__main.subMenu li {
        transition-delay: 0.7s;
    }
    header .nav-wrapper.open .nav-pages dl.snsAccount.sp {
        transition-delay: 0.8s;
    }
    header .nav-pages__main li a {
        color: #fff;
        font-family: var(--en);
        font-size: 2.4rem;
        letter-spacing: 0.05em;
        line-height: 1.0;
        position: relative;
    }
    header .nav-pages__main li a:hover {
        opacity: 0.5;
    }
    header .nav-pages__main li a:before {
        content: "";
        width: 100%;
        height: 2px;
        background: currentColor;
        position: absolute;
        bottom: 0;
        left: 0;
        transform: scale(0, 1);
        transform-origin: right;
        transition: transform 0.4s;
    }
    header .nav .wrap::-webkit-scrollbar {
        display: none;
    }
    header .nav-main {
        width: 100%;
    }
    header .nav-main p {
        text-align: center;
    }
    header .nav-main img {
        max-width: 160px;
    }
    header .nav-pages {
        flex-grow: 0;
        flex-wrap: wrap;
        row-gap: 0;
    }
    header .nav-pages__main {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        row-gap: clamp(16px, calc(16px + 8 * ((100vw - 320px) / 1120)), 24px);
    }
    header .nav-pages__main:nth-child(2) {
        margin-top: 40px;
        padding-top: 32px;
        border-top: 1px solid #504135;
    }
    header .nav-pages__main:nth-child(2) a {
        font-size: 14px;
    }
    header .snsAccount.sp {
        position: inherit;
        margin: 32px auto 0;
        background-color: #504135;
        padding-inline: 32px;
    }
    header .nav-pages__main li {
        width: 100%;
        text-align: center;
    }
    header .nav-pages__main li a {
        font-size: 2rem;
        color: #ccc;
    }
    .icon-external-link::after {
        color: #ccc;
    }
    header .nav-pages__main li .icon-external-link::after {
        line-height: 1.8;
    }
    header .subMenu li .icon-external-link::after {
        line-height: 1;
    }
    header .wrap {
        width: 100%;
    }
}
/*==============
    main-visual
===============*/
#main-visual {
    position: relative;
    width: 100%;
    min-height: 100svh;
    height: 100dvh;
    max-height: 100lvh;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
#main-visual .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    pointer-events: none;
}
#main-visual .mainlogo {
    position: absolute;
    top: 2.78vw;
    left: 2.78vw;
    z-index: 100;
    max-width: clamp(100px, 20vw, 288px);
}
/* video tag background */
#main-visual .video-background {
    position: relative;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
    z-index: 1;
}
#main-visual .video-background::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100vh;
    background: url(../img/dot.png);
    background-position: top left;
    background-repeat: repeat;
    background-size: 3px;
    top: 0;
    left: 0;
    opacity: 0.5;
}
#main-visual .video-background #bgndVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Video Poster */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
#video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}
#video-poster.is-hidden {
    opacity: 0;
}
.mbYTP_wrapper {
    z-index: 1 !important;
    pointer-events: none !important;
}
#main-visual .video-background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/dot.png) repeat;
    background-size: 3px;
    opacity: 0.5;
    z-index: 3;
    pointer-events: none;
}
/* buttun */
.controls {
    position: absolute;
    right: 2.5vw;
    bottom: 40px;
    z-index: 10;
}
.controls li:nth-child(2) {
    margin-top: 13px;
}
.controls li a img {
    width: 40px;
    height: auto;
    transition: 0.3s all;
}
.controls li a img:hover {
    opacity: 0.5;
}
/* Release */
.releaseWrap {
    position: absolute;
    bottom: 40px;
    left: 2.5vw;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1;
}
.releaseWrap .jkt {
    max-width: 200px;
}
.releaseWrap .detail .ttlImg img {
    max-height: 100px;
}
.releaseWrap .detail .releaseDay {
    color: #fff;
    text-align: center;
    font-family: var(--en);
    font-size: 2rem;
    margin-top: 20px;
}
@media screen and (max-width: 768px) {
    .controls {
        right: 20px;
    }
    .releaseWrap {
        display: flex;
        text-align: center;
        flex-wrap: wrap;
        max-width: 180px;
        justify-content: center;
        gap: 16px;
    }
    .releaseWrap .jkt {
        max-width: 130px;
    }
    .releaseWrap .detail .ttlImg img {
        max-height: 60px;
    }
    .releaseWrap .detail .releaseDay {
        font-size: 1.3rem;
        margin-top: 10px;
    }
}
/* animation */
@keyframes fadeInUpCustom {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slideFromTop {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.video-background {
    opacity: 0;
    animation: mvBackground 2s ease-out forwards;
}
header {
    opacity: 0;
    animation: slideFromTop 0.3s ease-out forwards;
    animation-delay: 2s;
}
.releaseWrap {
    opacity: 0;
    animation: slideFromLeft 0.3s ease-out forwards;
    animation-delay: 2s;
}
.controls {
    opacity: 0;
    animation: slideFromRight 0.3s ease-out forwards;
    animation-delay: 2s;
}
/*==============
    topics
===============*/
#topics {
    padding: clamp(40px, calc(40px + 20 * ((100vw - 320px) / 1120)), 60px) 0 clamp(32px, calc(32px + 24 * ((100vw - 320px) / 1120)), 56px);
    color: #fff;
    position: relative;
    background: #000;
}
#topics::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 32%, rgba(198, 99, 11, 0.25) 100%);
}
#topics .container {
    position: relative;
    z-index: 1;
}
#topics .slider-topics .slick-slide img {
    transition: 0.3s all;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 630 / 330;
    object-position: 50% 50%;
}
#topics .slider-nav {
    justify-content: center;
}
/*==============
    news
===============*/
#news {
    padding: clamp(64px, calc(64px + 56 * ((100vw - 320px) / 1120)), 120px) 0;
}
#news .news-list li,
.list li {
    margin-bottom: 10px;
}
#news .news-list li:last-child,
.list li:last-child {
    margin-bottom: 0;
}
#news .news-list li a,
.list li a {
    position: relative;
    padding: 24px 105px 24px 32px;
    background: #fff;
    display: block;
    overflow: hidden;
    z-index: 0;
    font-family: var(--jp);
    font-weight: 500;
    transition: 0.3s all;
}
#news .news-list li a:hover::after,
.list li a:hover::after {
    content: "\ea3c";
    background: var(--black);
    border-radius: 50%;
    color: #fff;
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
#news .news-list li a::before,
.list li a::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgb(255, 255, 255) 0%,
            rgb(254, 246, 229) 70%);
    transform: translateX(100%);
    transition: transform 0.6s ease;
    z-index: -1;
}
#news .news-list li a:hover::before,
.list li a:hover::before {
    transform: translateX(0);
}
#news .news-list li a .flex,
#news_detail .flex,
.list li a .flex {
    display: flex;
    align-items: center;
    gap: clamp(8px, calc(8px + 8 * ((100vw - 320px) / 1120)), 16px);
    margin-bottom: 8px;
}
#news .news-list li a .flex .day,
#news_detail .flex .day,
.list li a .flex .day {
    font-size: clamp(14px, calc(14px + 4 * ((100vw - 320px) / 1120)), 18px);
    font-family: var(--en);
    font-weight: 700;
}
#news .news-list li a .flex .category,
#news_detail .flex .category,
.list li a .flex .category,
#discography .list li .imgWrap .category {
    background: var(--black);
    padding: 8px 16px;
    border-radius: 50px;
    color: #fff;
    font-family: var(--en);
    font-weight: 700;
    font-size: 1.3rem;
    display: inline-block;
}
#news .news-list li a p,
.list li a p {
    font-size: 1.6rem;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    font-family: var(--jp);
}
@media screen and (max-width: 768px) {
    #news .news-list li a,
    .list li a {
        padding: 24px;
        background: #fff9eb;
    }
    #news .news-list li a .flex .category,
    .list li a .flex .category {
        padding: 6px 13px;
    }
    #news .news-list li a p,
    .list li a p {
        -webkit-line-clamp: 3;
    }
    #news .news-list li a:hover::after,
    #news .news-list li a::before,
    .list li a:hover::after,
    .list li a::before {
        display: none;
    }
    #news .news-list li a:hover::before,
    .list li a:hover::before {
        transform: initial;
    }
}
/*==============
    DISCOGRAPHY
===============*/
#discography {
    padding: 30vh 0 0;
    position: relative;
    z-index: 1;
}
#discography h2 {
    color: #fff;
}
#discography .container,
#mv .container {
    padding: 8px 0 0;
    color: #fff;
    width: 100%;
    overflow: hidden;
}
#discography .slider,
#mv .slider-mv {
    padding-left: calc((100% - 1200px) / 2);
}
#discography .slider .slick-slide,
#mv .slider-mv .slick-slide,
#topics .slider-topics .slick-slide {
    margin: 0 10px;
    transition: all 0.5s ease;
    overflow: hidden;
}
#discography .slider .slick-slide img,
#mv .slider-mv .slick-slide img {
    transition: 0.3s all;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    object-position: 50% 50%;
}
#discography .slider .slick-slide img:hover,
#mv .slider-mv .slick-slide img:hover,
#topics .slider-topics .slick-slide img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
#discography .slider .slick-slide,
#mv .slider-mv .slick-slide {
    margin: 0 10px;
    transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
    #discography {
        padding: 140px 0 0;
    }
}
/*==============
    MUSIC VIDEO
===============*/
#mv {
    padding: clamp(80px, calc(80px + 60 * ((100vw - 320px) / 1120)), 140px) 0;
    position: relative;
    z-index: 1;
}
#mv .slider-mv .slick-slide img {
    aspect-ratio: 712 / 400;
    max-width: 100%;
}
/* indicator */
.slider-nav {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.slick-dots {
    position: static;
    display: flex !important;
    list-style: none;
    padding: 0;
    margin: 0 32px;
}
.slick-dots li {
    width: clamp(32px, calc(32px + 8 * ((100vw - 320px) / 1120)), 40px);
    height: 2px;
    background: #555;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s;
}
.slick-dots li.slick-active {
    background: var(--color1);
}
.slick-dots li button {
    display: none;
}
.prev,
.next {
    font-family: var(--en);
    cursor: pointer;
    font-size: clamp(14px, calc(14px + 2 * ((100vw - 320px) / 1120)), 16px);
}
@media screen and (max-width: 768px) {
    #mv {
        padding-bottom: 60px;
    }
    .slick-dots {
        width: 85%;
        margin: 0 auto;
    }
    .slider-nav {
        justify-content: center;
    }
}
/*==============
    profile
===============*/
#profile {
    padding-bottom: clamp(40px, calc(40px + 100 * ((100vw - 320px) / 1120)), 140px);
}
#profile .img-wrap {
    display: flex;
    height: clamp(46px, calc(46px + 45 * ((100vw - 320px) / 1120)), 91px);
    overflow: hidden;
    margin-bottom: clamp(32px, calc(32px + 8 * ((100vw - 320px) / 1120)), 40px);
}
#profile .loop-img {
    width: auto;
    height: 100%;
    max-width: none;
}
#profile .loop-img:nth-child(odd) {
    animation: loop3 80s -40s linear infinite;
}
#profile .loop-img:nth-child(even) {
    animation: loop4 80s linear infinite;
}
@keyframes loop3 {
    0% {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
@keyframes loop4 {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}
#profile .member {
    display: flex;
}
#profile .member li {
    width: calc(100% / 7);
    overflow: hidden;
}
#profile .member li a {
    background: #000;
    display: block;
    position: relative;
}
#profile .member .name {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-family: var(--en);
    font-size: clamp(14px, calc(14px + 6 * ((100vw - 320px) / 1120)), 20px);
    ;
    opacity: 0;
    z-index: 1;
    transition: all 0.3s;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}
#profile .member a:hover .name {
    opacity: 1;
}
#profile .member li img {
    width: 100%;
    height: 60vh;
    min-height: 540px;
    object-fit: cover;
    object-position: center;
    transition: 0.3s all;
    filter: grayscale(100%);
    opacity: 0.7;
}
#profile .member li a:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    filter: none;
    opacity: 1;
}
@media screen and (max-width: 768px) {
    #profile {
        overflow: hidden;
    }
    #profile .member {
        display: flex;
        width: max-content;
        animation: slide 50s linear infinite;
    }
    #profile .member li {
        width: 100%;
        max-width: 206px;
        aspect-ratio: 206 / 267;
        position: relative;
    }
    @keyframes slide {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-50%);
        }
    }
    #profile .member li img {
        min-height: 100% !important;
        height: auto;
        object-position: top;
        aspect-ratio: 206 / 267;
        filter: none;
    }
    #profile .member .name {
        opacity: 1;
        bottom: 10px;
        left: 10px;
    }
}
/*==============
    footer
===============*/
footer {
    width: 100%;
    height: 100vh;
    background-image: url(../img/footer-bg_pc.jpg);
    background-size: cover;
    position: relative;
    overflow: hidden;
}
footer::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100vh;
    background: url(../img/dot.png?2);
    background-position: top left;
    background-repeat: repeat;
    background-size: 3px;
    top: 0;
    left: 0;
    opacity: 0.5;
}
footer .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 30%;
    max-width: 432px;
    z-index: 100;
}
footer .menu {
    position: absolute;
    z-index: 500;
    bottom: 56px;
    left: 56px;
}
footer .menu .mainMenu {
    display: flex;
    gap: 40px;
}
footer .menu .copy {
    font-size: 1rem;
    font-family: var(--en);
    color: #fff;
    margin-top: 16px;
}
footer .icon-external-link::after {
    color: transparent;
}
@media screen and (max-width: 768px) {
    footer {
        background-image: url(../img/footer-bg_sp.jpg);
    }
    footer .logo {
        width: 100%;
        max-width: 200px;
        top: 21%;
    }
    footer .menu {
        bottom: 10px;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }
}