@import "utf-8";

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    color: #fff;
    background: #000;
    font-size: 16px;
    font-family: 'Josefin Sans', sans-serif;
}

a {
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* a:hover {
    opacity: 0.9;
} */


img {
    max-width: 100%;
}

li {
    list-style: none;
}

.width1000 {
    max-width: 1000px;
}

.width1200 {
    max-width: 1200px;
}

section {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
}

section#sound {
    margin-bottom: 80px;
}

.title01 {
    font-size: 1.25rem;
    margin: 50px;
}

h3 {
    font-size: 1rem;
}

p {
    font-size: 0.875rem;
}

.br-sp {
    display: none;
}

@media screen and (max-width:770px) {
    body {
        margin-top: 48px;
    }
}



/*---------------------
ローディング
---------------------*/

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    /* animation: fadeOut 1.5s 1ms forwards; */
}


.loading.fade-out {
    animation: fadeOut 1s forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

/*---------------------
ヘッダー
---------------------*/

header {
    display: flex;
    flex-direction: column;
    padding: 30px;
    /* border-bottom: 1px solid #F8FFA6; */
}


.site-title {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.site-title img {
    height: 25px;
}

.site-title a {
    display: block;
}

nav {
    display: flex;
    justify-content: center;
}

#header li {
    display: inline-block;
    margin-right: 40px;
}

#header li:last-child {
    margin-right: 0px;
}

@media screen and (max-width: 770px) {
    header {
        display: flex;
        flex-direction: column;
        padding: 0 0 0;
        height: 48px;
        justify-content: center;
    }

    #header {
        background-color: #000;
        color: #fff;
        padding: 0px;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
    }

    header a {
        font-size: 1rem;
    }

    .site-title {
        display: flex;
        justify-content: center;
        margin-bottom: 0;
    }

    .site-title a {
        font-size: 0;
    }

    .site-title img {
        height: 20px;
    }

    .flex.nav {
        display: none;
    }
}

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

    .site-title img {
        height: 15px;
    }
}

/*---------------------
ハンバーガーメニュー
---------------------*/

/* チェックボックスを非表示にする */
.drawer_hidden {
    display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 100;
    cursor: pointer;
    width: 60px;
    height: 47.5px;
    border-radius: 50%;
    /* border: solid 2.3px #FFFDC3; */
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
    content: '';
    display: block;
    height: 2px;
    width: 25px;
    border-radius: 3px;
    background: #FFF;
    transition: 0.5s;
    position: absolute;
}

.drawer_open span:before {
    bottom: 8px;
}

.drawer_open span:after {
    top: 8px;
}

/* クリック - 真ん中の線を透明にする */
#drawer_input:checked~.drawer_open span {
    background: rgba(255, 255, 255, 0);
}

/* クリック - ×印になように上下の線を回転 */
#drawer_input:checked~.drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg);
}

#drawer_input:checked~.drawer_open span::after {
    top: 0;
    transform: rotate(-45deg);
}

/* メニューのデザイン*/

/* ヘッダーのスタイル */

/*
#header {
    background-color: #000; 
    color: #fff; 
    position: fixed; 
    top: 0; 
    width: 100%; 
    z-index: 1000; 
    display: none;
}
*/

.nav_content {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: fixed;
    top: 0;
    /* right: 0; */
    left: 100%;
    z-index: 99;
    background: #000;
    transition: .5s;
    text-align: left;
    padding-top: 0px;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding-top: 10px;
}

.nav_content li {
    margin: 20px 0 20px;
    /* border-bottom: 1px solid #fff; */
}

/* メニュー黒ポチを消す */
.nav_list {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin: 0 0 0 30px;
}

.nav_item a {
    color: #fff;
    text-decoration: none;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked~.nav_content {
    height: 100%;
    /* right: 0; */
    left: 50%;
}

.fa-brands {
    font-weight: 400;
    font-size: 1.25rem;
    margin-right: 8px;
}

.sns-nav {
    position: absolute;
    right: 1%;
    top: 2%;
}


@media screen and (min-width: 770px) {

    .drawer_open {
        display: none;
    }

    .drawer_open span,
    .drawer_open span:before,
    .drawer_open span:after {
        display: none;
    }

}

@media screen and (max-width: 770px) {
    .sns-nav {
        display: none;
    }


}

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


    #drawer_input:checked~.nav_content {
        left: 20%;
    }
}

/*---------------------
フッター
---------------------*/

footer {
    /* margin: 10px 0 8px; */
    padding: 18px 0 20px;
}

footer p {
    text-align: center;
    font-size: 0.75rem;
}

@media screen and (max-width: 600px) {
    footer {
        /* margin: 10px; */
    }
}

/*---------------------
TOPボタン
---------------------*/

.pagetop {
    height: 40px;
    width: 40px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #000;
    border: solid 2px #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: translateY(20%) rotate(-45deg);
}

/*---------------------
MV
---------------------*/
.mainvisual {
    margin-bottom: 70px;
}

.mv-img {
    /* border-top: 1px solid #F8FFA6; */
    width: 100%;
}

.mv-img img {
    width: 84%;
    height: 84vh;
    object-fit: cover;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

@media screen and (max-width: 600px) {
    .mv-img img {
        height: 430px;
    }
}

/*---------------------
ビデオ
---------------------*/

.yt-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.yt-block {
    position: relative;
}

.videoWrapper {
    width: 800px;
    height: 450px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.videoWrapper::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("img/mv02.png");
    background-size: cover;
    background: black;
    border: 1px solid #F8FFA6;
}

.videoWrapper.pv::after {
    display: none;
}

.videoWrapper.pv::after {
    display: none;
}

.yt-wrap a {
    font-family: 'Karla', sans-serif;
    font-size: 0.875rem;
    border: 1px solid #fff;
    padding: 10px 20px;
}


#play {
    display: inline-block;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 4rem;
    height: 4rem;
    background-color: ;
    border-radius: 50%;
    cursor: pointer;
    opacity: .95;
    background: initial;
    border: solid 1px #F8FFA6;
}

#play:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 34%;
    transform: translateY(-50%);
    width: 0px;
    height: 0px;
    border: 1rem solid transparent;
    border-left: 1.8rem solid #fff;
    box-sizing: border-box;
}

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

    .videoWrapper {
        width: 90vw;
    }
}

/*テスト*/



/*---------------------
Discograpy
---------------------*/
#disc {
    border-top: 1px solid #FF9900;
    flex-direction: column;
    align-items: center;
    /* margin-bottom: 0px; */
}

#disc svg {
    display: none;
}

.disc-box img {
    width: 270px;
    margin-bottom: 20px;
    border: 1px solid #fff;
}

.disc-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2em 0;

}

.disc-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* margin-right: 50px; */
    width: 33%;
}

.disc-box:last-child {
    margin-right: 0;
}

h3.disc-type {
    font-size: 0.75rem;
    margin-bottom: 0.8em;

    display: none;
}

.disc-title {
    margin-bottom: 10px;
    font-size: 1rem;
}

@media screen and (max-width: 1000px) {
    .disc-group {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .disc-box {
        width: 100%;
        margin: 0px 0 50px;
    }

    .disc-box:last-child {
        margin: 0px 0 0px;
    }
}

/*---------------------
SOUNDCLOUD
---------------------*/
#sound {
    flex-direction: column;
    align-items: center;
}

.sound.width1200 {
    display: flex;
}

.sound-box {
    width: 400px;
}

/* SCタイトル */
.sound-box div {
    display: none;
}

.sound-box {
    width: 350px;
    margin-right: 50px;
}

.sound-box:last-child {
    margin-right: 0;
}

@media screen and (max-width: 1200px) {
    section#sound {
        margin-bottom: 40px;
    }


    .sound.width1200 {
        flex-direction: column;
        align-items: center;
    }

    .sound-box {
        width: 350px;
        margin-right: 50px;
        margin: 0 0 50px;
        width: 600px;
    }

    .sound-box:last-child {
        margin: 0 0 0px;
    }

    .sound iframe {
        /* height: 220px; */
    }
}

@media screen and (max-width: 600px) {
    .sound-box {
        width: 100vw;
    }
}

/*---------------------
Profile
---------------------*/
#profile {
    /* border-top: 1px solid #F8FFA6; */
    margin-bottom: 60px;
}

.profile-img {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
}

.profile-box {
    margin-top: 00px;
    display: flex;
    flex-direction: column;
}

.profile-text-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-box {
    padding: 30px;
    border: 1px solid #F8FFA6;
}

.text-box p {
    margin-bottom: 1rem;
}

.text-box p:last-child {
    margin-bottom: 0;
}

.profile-title .title01 {
    /* margin: 50px; */
    margin: 2em auto 1em;
}

.photo-credits {
    text-align: right;
    font-size: 0.75rem;
}

/* Slick */
.slick-slide img {
    max-height: 400px;
}

.sliderArea {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 25px;
}

.sliderArea.w300 {
    max-width: 300px;
}

.slick-slide {
    margin: 0 5px;
    position: relative;
}

.slick-slide img {
    width: auto;
    /* height: 400px !important; */
}

.slick-prev,
.slick-next {
    z-index: 1;
}

.slick-prev:before,
.slick-next:before {
    /* color: #000; */
    display: none !important;
}

.slick-slide {
    transition: all ease-in-out .3s;
    opacity: .2;
}

.slick-active {
    opacity: 1;
}

.slick-current {
    opacity: 1;
}

.thumb {
    margin: 20px 0 0;
}

.thumb .slick-slide {
    cursor: pointer;
}

.thumb .slick-slide:hover {
    opacity: .7;
}

.slick-dots {
    bottom: -35px;
}

/* dots（ナビゲーション）全体のスタイル */
.slick-dots li button:before {
    opacity: 0.5;
    /* 通常時の透明度 */
    background: #fff;
    border-radius: 100%;
    width: 12px;
    height: 12px;
}

/* 選択中のドットのスタイル */
.slick-dots li.slick-active button:before {
    opacity: 1;
    /* 選択中のドットは透明度を100%に */
}

.sp-only {
    display: none;
}

.pc-only {
    display: block;
}

@media screen and (max-width: 767px) {
    .text-box {
        padding: 15px;
        margin: 0 1em;
    }

    .slick-dots {
        text-align: left;
    }

    .slick-dots li button:before {
        width: 8px;
        height: 8px;
    }

    .sliderArea {
        width: 100vw;
    }

    /* .pc-only {
        display: none !important;
    } */

    /* .sp-only {
        display: block !important;
    }

    .photo-credits.sp-only {
        position: absolute;
        bottom: 0;
        right: 15%;
    } */
}

/*---------------------
Gallery
---------------------*/

#gallery {
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
}

#gallery img {
    width: 30%;
    margin-right: 10px;
}

#gallery img:last-child {
    margin-right: 0px;
}

.gallery-group1,
.gallery-group2,
.gallery-group3 {
    text-align: center;
}

.gallery-group1,
.gallery-group2 {
    margin-bottom: 50px;
}

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

    .gallery-group1,
    .gallery-group2 {
        margin-bottom: 30px;
    }

    #gallery img {
        width: 90%;
        margin-right: 0px;
        margin: 0 0 30px;
    }

    #gallery img:last-child {
        margin: 0;
    }

}

#gallery {
    margin-bottom: 50px;
}

/*---------------------
ディスク紹介ページ
---------------------*/

main#eclipse {
    background: #C7D0B3;
}

#eclipse p,
#eclipse a {
    color: #000;
    font-family: 'Asar', serif;
}

.page-main .videoWrapper::after {
    display: none;
}

.page-main #play {
    display: none;
}

.page-main h3 {
    font-size: 1rem
}

.page-main .yt-wrap {
    border-bottom: 1px solid #BFD163;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-main .videoWrapper {
    margin-bottom: 0;
}

.disc-title-2 {
    font-size: 1.5rem;
}

.disc-box-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0 20px;
    flex-direction: column;
}

.disc-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.disc-date-2 {
    /* margin-bottom: 0.125em; */
}

.disc-content {
    margin-bottom: 0.3em;
}

.lyrics-box p {
    font-size: 1rem;
    margin-bottom: 1em;
    line-height: 1.5em;
}

#lyrics {
    margin: 0 0 0 0;
}

.banner {
    margin: 0;
    display: flex;
    justify-content: center;
}

.banner-box {
    display: flex;
    width: 100%;
    justify-content: center;
    border-top: 1px solid #BFD163;
    max-width: 900px;
}

.music-link {
    border-right: 1px solid #FF9567;
}

.music-link,
.credits-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100px;
    background: rgb(255, 255, 255, 0.5);
}

.lyrics-icon {
    display: flex;
    justify-content: center;
    width: 30px;
    align-items: center;
    margin: 20px auto;
}

.lyrics-icon2 {
    width: 40px;
    margin: 30px auto;
}

/* ポップアップ */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popup-content {
    background: #fff;
    padding: 40px;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.popup-content p {
    margin: 0 0 20px;
}

#close-popup {
    cursor: pointer;
    margin-top: 0px;
    background: #000;
    color: #fff;
    padding: 8px 16px 6px;
    border: none;
    border-radius: 4px;
}

/* ポップアップが表示された時だけ背景を固定 */
body.popup-active {
    overflow: hidden;
}

/* ポップアップ外のクリックで閉じる */
.popup::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
    pointer-events: none;
}

.popup.active::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
    pointer-events: auto;
    /* ポップアップが表示された場合のみクリックイベントを有効にする */
}

.popup.active::before {
    animation: fadeBg 0.3s ease-out forwards;
}

@keyframes fadeBg {
    from {
        background: rgba(0, 0, 0, 0);
    }

    to {
        background: rgba(0, 0, 0, 0.5);
    }
}






/*---------------------
メディアクエリ
---------------------*/

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

    .mainvisual,
    .videoWrapper {
        margin-bottom: 50px;
    }

    .page-main .mainvisual {
        margin-bottom: 40px;
    }

    #play {
        top: 40%;
    }

    .br-pc {
        display: none;
    }

    .br-sp {
        display: block;
    }

}