
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');

* {
    margin: 0;
    padding: 0;
}

html, body {
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-style: normal;
    overflow-x: clip;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.site-title {
    font-size: 36px;
}

.sub-title {
    font-size: 34px;
}

.section-title {
    display: flex;
    align-items: center;
    font-size: 32px;
    margin: 30px 0;
}

.section-title span {
    width: 38px;
    display: block;
    line-height: 0;
    margin-right: 10px;
}

.section-title span img {
    width: 100%;
}

.text {
    font-size: 20px;
}

.menu-btn {
    font-size: 28px;
    color: #FFF;
}


/* トップページ メインコンテンツ
======================================================== */

.top-contents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.top-contents.pc {
    display: block;
}

.top-contents.sp {
    display: none;
}


/* 右下案内部分
========================================================== */

.top-contents.pc .guidance-contents {
    position: absolute;
    bottom: 45px;
    right: 60px;
    padding: 20px 14px;
}

.top-contents.pc .guidance-contents.bg-white {
    background-color: rgba(255, 255, 255, 0.9);
}

.top-contents.pc .guidance-contents.bg-perple {
    background-color: rgba(92, 80, 185, 0.8);
}

/* 右下案内部分 タイトル群
========================================================== */

.top-contents.pc .guidance-contents .site-title {
    display: flex;
    flex-direction: column;
    color: #88CC97;
    padding-right: 1rem;
}

.top-contents.pc .guidance-contents .artist-title {
    display: block;
    font-size: 28px;
    align-self: flex-start;
}

.top-contents.pc .guidance-contents .member-title {
    display: block;
    font-size: 48px;
    align-self: center;
    text-indent: 1rem;
}

.top-contents.pc .guidance-contents .detail-title {
    display: block;
    font-size: 28px;
    align-self: flex-end;
    margin-right: -1rem;
}


/* openボタン TOP・SP共通
========================================================== */

.top-contents .guidance-contents .open-btn {
    animation: moveLoop 2s infinite ease-in-out;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.top-contents .guidance-contents .open-btn:hover {
    animation: none;
    transform: scale(1.075);
    opacity: 0.8;
}

.top-contents .guidance-contents .open-btn:active {
    animation: none;
    transform: scale(1.075);
    opacity: 0.7;
}

/* openボタン
========================================================== */

.top-contents.pc .guidance-contents .open-btn {
    width: 100px;
    margin: 5px 0;
}

.top-contents.pc .guidance-contents .open-btn img {
    width: 100%;
}


/* openメニュー TOP・SP共通
========================================================== */

.open-menu {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 500px;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 4;
    transition: transform 0.5s ease-in-out;
}

.open-menu #open_nav .open-list {
    position: relative;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #746d6d;
    padding: 0;
    margin: 0;
}


/* closeボタン TOP・SP共通
========================================================== */

.open-menu .close-btn {
    position: relative;
    top: 10px;
    left: 95%;
    transform: translateX(-100%);
    width: 100px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.open-menu .close-btn:hover {
    opacity: 0.8;
}

.open-menu .close-btn:active {
    opacity: 0.7;
}

.open-menu .close-btn img {
    width: 100%;
}

/* sub title 共通
========================================================== */

.sub-title {
    position: absolute;
    top: 325px;
    left: 100px;
    font-size: 200px;
    font-weight: bold;
    opacity: 0.7;
    z-index: 3;
}

.sub-title .end {
    display: block;
    text-indent: 5rem;
}

.sub-title.per-whi {
    color: rgb(223, 173, 224);
}

.sub-title.perple {
    color: rgba(92, 80, 185);
}


/* 背景画像 引用url
========================================================== */

.top-contents.pc .img-from {
    position: absolute;
    top: 100px;
    right: 200px;
}

.top-contents.pc .img-from p {
    font-size: 15px;
    color: #746d6d;
    opacity: 0.5;
}


/* アニメーション一覧
======================================================== */

@keyframes moveLoop {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.075);
    }
    100% {
        transform: scale(1);
    }
}


/* メティアクエリ
======================================================== */

@media screen and (max-width: 1024px) {

    .top-contents.pc {
        display: none;
    }

    .top-contents.sp {
        display: block;
    }

    /* 右下案内部分
    ========================================================== */

    .top-contents.sp .guidance-contents {
        position: absolute;
        bottom: 10px;
        right: 16px;
        padding: 16px 10px;
    }

    .top-contents.sp .guidance-contents.bg-white {
        background-color: rgba(255, 255, 255, 0.9);
    }

    .top-contents.sp .guidance-contents.bg-perple {
        background-color: rgba(92, 80, 185, 0.8);
    }

    /* 右下案内部分 タイトル群
    ========================================================== */

    .top-contents.sp .guidance-contents .site-title {
        display: flex;
        flex-direction: column;
        color: #88CC97;
        padding-right: 1rem;
    }

    .top-contents.sp .guidance-contents .artist-title {
        display: block;
        font-size: 18px;
        align-self: flex-start;
    }

    .top-contents.sp .guidance-contents .member-title {
        display: block;
        font-size: 28px;
        align-self: center;
        text-indent: 1rem;
    }

    .top-contents.sp .guidance-contents .detail-title {
        display: block;
        font-size: 18px;
        align-self: flex-end;
        margin-right: -1rem;
    }


    /* openボタン
    ========================================================== */

    .top-contents.sp .guidance-contents .open-btn {
        width: 70px;
        margin: 3px 0;
    }

    .top-contents.sp .guidance-contents .open-btn img {
        width: 100%;
    }


    /* openメニュー
    ========================================================== */

    .open-menu {
        width: 100%;
    }


    /* closeボタン
    ========================================================== */

    .open-menu .close-btn {
        width: 70px;
    }

    .open-menu .close-btn img {
        width: 100%;
    }

    /* sub title SP共通
    ========================================================== */

    .sub-title {
        top: 375px;
        left: 50px;
        font-size: 75px;
    }

    .sub-title .end {
        text-indent: 3rem;
    }


    /* 背景画像 引用url
    ========================================================== */

    .top-contents.sp .img-from {
        position: absolute;
        top: 70px;
        right: 45px;
    }

    .top-contents.sp .img-from p {
        font-size: 13px;
        color: #746d6d;
        opacity: 0.5;
    }

    /* .sub-title {
        display: none;
    } */
    

}

