@charset "utf-8";

/* CSS Document */

/* common */
body {
    font-family: "Syncopate", "Noto Sans JP", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    background-color: #000;
    color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

h1 {
    font-size: 67.5pt;
    font-weight: 800;
}

h2 {
    font-size: 36pt;
    font-weight: 800;
}

h3 {
    font-size: 24pt;
    font-weight: 800;
}

h4 {
    font-size: 18pt;
    font-weight: 800;
}

p {
    font-size: 10.5pt;
    line-height: 1.5rem;
    font-weight: 600;
}

a {
    font-family: "Syncopate", "Noto Sans JP", serif;
    text-decoration: none;
    line-height: 0%;
    color: #fff;
}

li {
    list-style: none;
}

/* ボタン黒背景用 */
.btnarea {
    width: 100%;
    max-width: 900px;
    /* 追加 */
    border: 5px solid #ffffff;

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-decoration: none;
        text-align: center;
        outline: none;
        color: #fff;
        background-color: #000;
        position: relative;
        transition: color 0.5s ease;
        font-weight: 700;
        font-size: 18pt;

        .btntext {
            position: relative;
            padding: 30px 0;
        }

        .btnicon {
            position: relative;
            margin-left: 1rem;
            margin-top: -6px;
            width: 18pt;
            height: 18pt;
            filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(72deg) brightness(99%) contrast(99%);
            transition: filter 0.5s ease;
        }
    }

    .btn:hover {
        color: #000;
    }

    .btn:hover::before {
        transform: scaleX(1);
        transform-origin: left;
    }

    .btn::before {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        background: #fff;
        transform: scaleX(0);
        transform-origin: right;
        transition: all 0.5s ease;
        transition-property: transform;
    }

    .btn:hover .btnicon {
        filter: none;
    }

    .btnicon::before {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        transform: scaleX(0);
        transform-origin: right;
        transition-property: transform;
        transition: all 2s ease;
    }
}

/* ボタン白背景用 */
.btnarea.white {
    width: 100%;
    max-width: 900px;
    /* 追加 */
    border: 5px solid #000;

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-decoration: none;
        text-align: center;
        outline: none;
        color: #000;
        background-color: #fff;
        position: relative;
        transition: color 0.5s ease;
        font-weight: 700;
        font-size: 18pt;

        .btntext {
            position: relative;
            padding: 30px 0;
        }

        .btnicon {
            position: relative;
            margin-left: 1rem;
            margin-top: -6px;
            width: 18pt;
            height: 18pt;
            filter: none;
            transition: filter 0.5s ease;
        }
    }

    .btn:hover {
        color: #fff;
    }

    .btn:hover::before {
        transform: scaleX(1);
        transform-origin: left;
    }

    .btn::before {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        background: #000;
        transform: scaleX(0);
        transform-origin: right;
        transition: all 0.5s ease;
        transition-property: transform;
    }

    .btn:hover .btnicon {
        filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(72deg) brightness(99%) contrast(99%);
    }

    .btnicon::before {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        transform: scaleX(0);
        transform-origin: right;
        transition-property: transform;
        transition: all 2s ease;
    }

}

/* ボタン背景透明用 */
.btnarea.flame {
    .btn {
        background-color: initial;
    }
}

/* followbtn */
.sp-followbtn {
    display: none;
}

.pc-followbtn {
    position: fixed;
    bottom: 20px;
    right: 10px;
    border: 5px solid #ffffff;
    width: fit-content;
    margin-left: auto;
    /* 右寄せ */
    z-index: 100;

    .btn {
        display: inline-flex;
        align-items: last baseline;
        justify-content: center;
        width: 100%;
        height: 100%;
        text-decoration: none;
        text-align: center;
        outline: none;
        color: #fff;
        background-color: #000;
        position: relative;
        border: 3px solid #000;
        transition: color 0.5s ease;
        font-weight: 700;
        font-size: 18pt;

        .btntext {
            position: relative;
            padding: 30px 10px;
            line-height: 100%;
            text-align: left;
        }

        .btnicon {
            position: relative;
            margin: -6px 10px 0 0;
            width: 18pt;
            height: 18pt;
            filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(72deg) brightness(99%) contrast(99%);
            transition: filter 0.5s ease;
        }
    }

    .btn:hover {
        color: #000;
        background-color: #fff;
    }

    .btn::before {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        transition: all 0.5s ease;
        transition-property: transform;
    }

    .btn:hover .btnicon {
        filter: none;
    }

    .btnicon::before {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        transform: scaleX(0);
        transform-origin: right;
        transition-property: transform;
        transition: all 2s ease;
    }
}

/* snsアイコンホバーアニメーション */
.snsicon {
    transform: scale(1);
    transition: 0.3s;
}

.snsicon:hover {
    transform: scale(1.1);
}


/* 各ページのTOP背景画像 */
.top-img {
    width: 100%;
    height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin: 0 auto;
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 90px;
}

/* header */
header {
    font-family: "Archivo Black", serif;
    width: 100%;

    h2 {
        font-size: 24pt;
    }

    nav {
        display: flex;
        justify-content: space-between;

        ul {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-right: 6px;

            a {
                line-height: 100%;
                position: relative;

            }

            .nav-line {
                font-size: 24pt;
                display: block;
                margin-bottom: 8px;
                color: #fff;
            }

            .underbar::after {
                position: absolute;
                left: 0;
                content: '';
                width: 100%;
                height: 3px;
                background: #ffffff;
                bottom: -6px;
                transform: scale(0, 1);
                transform-origin: right top;
                transition: transform 0.3s;
            }

            .underbar:hover::after {
                transform: scale(1, 1);
                transform-origin: left top;
            }
        }
    }

    /* pcheader-nav */
    .pcheader {
        position: fixed;
        z-index: 1000;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #000;
        display: block;
    }

    /* hamburger切り替え時nav */
    .nav-wrapper {
        position: fixed;
        z-index: 1000;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #000;
        display: none;
    }

    .spheader {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* hamburger(ハンバーガーアイコン) */
    .hamburger {
        position: relative;
        width: 50px;
        height: 40px;
        cursor: pointer;
        z-index: 1500;
        margin-left: 24px;
    }

    .hamburger__line {
        position: absolute;
        width: 40px;
        height: 3px;
        background-color: #fff;
        transition: all 0.5s;
    }

    .hamburger:after {
        content: '';
        display: block;
        position: absolute;
        transform: translate(-50%, -50%);
        z-index: -1;
        transition: 0.3s ease;
    }

    .hamburger__line--1 {
        top: 4px;
    }

    .hamburger__line--2 {
        top: 18px;
    }

    .hamburger__line--3 {
        top: 30px;
    }

    /*ハンバーガーがクリックされたら*/
    .open .hamburger__line--1 {
        transform: rotate(-45deg);
        top: 11px;
    }

    .open .hamburger__line--2 {
        opacity: 0;
    }

    .open .hamburger__line--3 {
        transform: rotate(45deg);
        top: 11px;
    }

    /* sp-nav(ナビ) */
    .sp-nav {
        position: fixed;
        top: -120%;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #000;
        transition: all 0.5s;
        z-index: 1000;
        overflow-y: auto;

        /* メニュー内のcss */
        .wrapper {
            width: 100%;
            height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow-y: auto;
            gap: 40px;
            margin: 0 10%;

            .logo {
                max-width: 500px;
            }

            .menu {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 24px;
                margin-right: 0;

                a {
                    font-size: 18pt;
                    font-weight: 800;
                }

                .nav-sns {
                    display: flex;
                    gap: 10px;
                }
            }

            .nav-ticketbtn.btnarea {
                max-width: 600px;

                .btn {
                    .btntext {
                        padding: 24px 0;
                        margin-bottom: 0;
                    }
                }
            }
        }
    }

    /*ハンバーガーがクリックされたら上からスライド*/
    .open .sp-nav {
        top: 0;
    }

    /* メニュー内のcss */
    .menu {
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;

        a {
            font-size: 18pt;
            font-weight: 800;
        }

        .logo {
            margin: 0 40px 20px 40px;
        }

        .sns {
            display: flex;
            gap: 10px;
        }
    }
}

/* footer */
footer {
    margin: 20px 0 10px 0;
    padding: 0 3%;
    height: 40px;
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: space-between;

    .footer_sns {
        display: flex;
        gap: 20px;
    }

    p {
        padding-top: 1%;
    }
}

/* top_page */
.top-page {
    .mainvisual {
        position: relative;

        .mainlogo {
            background-size: contain;
            background-repeat: no-repeat;
            background-position: top;
            background-image: url(../img/top_main-logo2.png);
            height: 100vh;
            width: 100%;
            position: absolute;
            /* transform: translate(-50%, -50%); */
            top: 0;
            left: 0;
            z-index: 1000;
        }

        .slide1,
        .slide2,
        .slide3 {
            /* background-image: url(../img/top_main_rainbow.png); */
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            height: 100vh;
            width: auto;
        }

        .slide1 {
            background-image: url(../img/top_main-1.png);
        }

        .slide2 {
            background-image: url(../img/top_main-2.png);
        }

        .slide3 {
            background-image: url(../img/top_main-3.png);
        }
    }

    .hederfollow {

        .header,
        .pcheader,
        .nav-wrapper {
            position: -webkit-sticky;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .sectitle {
            font-size: 70pt;
            margin-bottom: 50px;
        }

        .about {
            position: relative;
            z-index: 1;
            overflow: hidden;
            background-image: url(../img/top_aboutbg.png);
            background-size: cover;
            background-position: 100%;
            background-repeat: no-repeat;

            .bgabout {
                position: absolute;
                left: -30px;
                width: 150px;
                height: 100%;
                background-image: url(../img/top_aboutbgtext.png);
                background-repeat: repeat-y;
                background-position: right;
            }

            .content {
                padding: 100px 3% 150px 3%;
                max-width: 1200px;
                margin: 0 auto;

                .caption {
                    margin-bottom: 50px;
                    font-size: 80pt;
                }

                .text {
                    margin-bottom: 50px;
                }

                .midtext {
                    margin-bottom: 120px;
                }
            }
        }

        .lineup {
            max-width: 1920px;
            margin: 0 auto;
            padding: 100px 3% 150px 3%;

            .sectitle {
                text-align: center;
                margin-bottom: 100px;
            }

            .performers {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(2, 300px);
                gap: 100px 5%;
                width: 100%;
                margin-bottom: 60px;
                /* 追加 */

                .performer {
                    position: relative;

                    .photo {
                        position: absolute;
                    }

                    .info {
                        position: absolute;

                        .name {
                            font-size: 36pt;
                            line-height: normal;
                            margin-bottom: 20px;

                            .notes {
                                font-size: 18pt;
                                font-weight: 400;
                            }
                        }

                        .icon {
                            display: flex;
                            justify-content: flex-end;

                            .insta {
                                margin-right: 20px;
                            }
                        }
                    }

                    .right {
                        right: 0;
                        bottom: 0;
                    }

                    .left {
                        left: 0;
                        bottom: 0;
                    }
                }
            }
        }

        .timetable {
            padding: 100px 3%;
            background: linear-gradient(0deg, #065F79, #2F0151);

            .wrapper {
                max-width: 1200px;
                margin: 0 auto;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 20px;

                .timetabletitle {
                    margin-bottom: 50px;
                }

                .timetablebtn {
                    font-size: 36pt;
                    font-weight: 700;
                    border: 5px solid #fff;
                    padding: 35px 130px 30px 130px;
                    margin-top: 100px;
                }
            }
        }

        .ticketinfo {
            background-color: #fff;
            background-image: url(../img/bg_grunge_white.png);
            background-size: cover;
            background-repeat: no-repeat;
            color: #000;
            padding: 100px 3%;

            .wrapper {
                max-width: 1200px;
                margin: 0 auto;

                .dateinfo {
                    margin: 30px 0 100px 50px;
                }

                .placecontent {
                    img {
                        margin-bottom: 30px;
                    }

                    .placeinfo {
                        display: flex;
                        align-items: center;
                        flex-wrap: wrap;
                        margin-left: 50px;

                        .place {
                            margin-right: 40px;
                            margin-bottom: 40px;

                            .thin {
                                font-weight: 400;
                            }
                        }

                        .maplink {
                            color: #000;
                            display: flex;
                            align-items: center;

                            .maplinktext {
                                font-size: 36pt;
                                font-weight: 800;
                                padding-bottom: 5px;
                                border-bottom: 3px solid #000;
                                margin-right: 20px;
                            }
                        }
                    }
                }
            }
        }

        .ticket {
            padding-top: 100px;
            padding-bottom: 100px;
            overflow: hidden;

            .ticketwrapper {
                max-width: 1200px;
                margin: 0 auto;
                padding: 3%;
                /* 追加 */


                .ticketcontent {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    margin-bottom: 20px;
                    /* 変更 */

                    /* 追加 */
                    .ticketimg {
                        margin-bottom: 4px;
                    }
                }

                .attention {
                    display: flex;
                    flex-direction: column;
                    align-items: end;
                    margin-bottom: 20px;

                    .attentionlist {
                        p {
                            font-weight: 400;
                        }

                        a {
                            border-bottom: 1px solid #fff;
                        }
                    }
                }
            }

            .tapeupper {
                width: 170%;
                height: 76px;
                background-image: url(../img/top_tape-slim-groove-horaizon.png);
                transform: translate(-25%, 70%) rotate(-5deg);
            }

            .tapelower {
                width: 170%;
                height: 76px;
                background-image: url(../img/top_tape-slim-torick-shot.png);
                transform: translate(-25%, -70%) rotate(5deg);
            }
        }

        .drink {
            padding-top: 50px;

            .drinkwrapper {
                max-width: 1200px;
                margin: 0 auto;
                min-height: 1000px;
                position: relative;

                .sectitle {
                    text-align: end;
                    position: absolute;
                    top: 0;
                    right: 0;
                    z-index: 3;
                }

                .drinktext {
                    position: absolute;
                    top: 200px;
                    left: 2%;
                    font-weight: 600;
                    z-index: 3;
                }

                /* 全て非表示 */
                .drinklineup {
                    padding: 0 10%;
                    display: grid;
                    grid-template-columns: repeat(3, 1fr);
                    gap: 5%;
                    position: absolute;
                    z-index: 2;
                    height: 100%;
                    width: 100%;

                    .flavor {
                        padding-top: 400px;
                        height: 100%;
                        position: relative;
                        overflow: hidden;

                        .text {
                            position: absolute;
                            z-index: 3;
                            top: 50%;
                            left: 2%;
                            overflow: hidden;

                            h3 {
                                line-height: 1.2;
                            }
                        }

                        img {
                            position: absolute;
                            right: -30%;
                            bottom: 20px;
                            clip-path: polygon(0 0, 50% 0, 50% 100%, 0% 100%);
                        }
                    }
                }
            }

            .andmore {
                width: 100%;
                height: 350px;
                background-image: url(../img/top_andmorebg.png);
                position: relative;

                .linktext {
                    transform: translate(-50%, -50%);
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    display: flex;
                    flex-direction: column;
                    align-items: center;

                    h3 {
                        font-size: 48px;
                        line-height: 1;
                        text-align: center;
                        margin-bottom: 10px;
                    }

                    .underbar::after {
                        position: absolute;
                        left: 0;
                        content: '';
                        width: 100%;
                        height: 3px;
                        background: #ffffff;
                        bottom: 30px;
                        transform: scale(0, 1);
                        transform-origin: right top;
                        transition: transform 0.3s;
                    }

                    .underbar:hover::after {
                        transform: scale(1, 1);
                        transform-origin: left top;
                    }
                }
            }

        }

        .access {
            padding: 150px 3% 100px;
            color: #000;
            background-color: #fff;
            background-image: url(../img/bg_grunge_white.png);
            background-size: cover;
            background-repeat: no-repeat;

            .accesswrapper {
                max-width: 1200px;
                margin: 0 auto;

                .sectitle {
                    margin-bottom: 30px;
                }

                .mapcontent {
                    display: flex;
                    gap: 20px;

                    .map_inner {
                        display: inline-block;
                        background: rgb(158, 157, 159, 0.3);

                        iframe {
                            /* flex-grow: 1; */
                            filter: grayscale(1);
                            opacity: 0.8;
                            vertical-align: bottom;

                        }
                    }

                    .mapinfo {
                        flex-grow: 2;
                        padding: 20px;
                        display: flex;
                        flex-direction: column;
                        align-items: center;

                        .storename,
                        .adress,
                        .tel {
                            margin-bottom: 5%;
                            display: flex;
                            gap: 20px;

                            /* 追加 */
                            a {
                                color: #000;
                                text-decoration: underline;
                                pointer-events: none;
                            }
                        }

                        .storename {
                            display: inline-block;
                            background-color: #000;
                            color: #fff;
                            padding: 5px 3%;
                        }

                        .framebtnblack {
                            border: 3px solid #000;
                            display: flex;
                            justify-content: center;
                            align-items: end;
                            padding: 5px 5%;

                            .maplinktext {
                                color: #000;
                                font-size: 18pt;
                                font-weight: 800;
                                margin-right: 20px;
                            }
                        }
                    }
                }

                /*Neon Circuitとは*/
                .about_nc {
                    padding: 50px;

                    .nc_explain {
                        margin-bottom: 30px;

                        .nc_title {
                            text-align: center;
                            margin-bottom: 30px;

                            .sp_only {
                                display: none;
                            }
                        }

                        p {
                            text-align: center;
                            font-size: 14pt;
                        }
                    }

                    .btnarea.white {
                        margin: 0 auto;

                        .btntext {

                            .sp_only {
                                display: none;
                            }
                        }
                    }
                }
            }
        }

        .eyecatch {
            .incitepc {
                display: block;
                max-width: 1920px;
                margin: 0 auto;
                padding: 60px 3%;

                h2 {
                    font-size: 80pt;
                }

                .textline {
                    font-family: "Anton", serif;
                    letter-spacing: 1em;
                    font-weight: 400;
                    display: flex;
                    align-items: center;
                    flex-wrap: wrap;
                    gap: 2.5rem;
                }

                .firstline {
                    justify-content: flex-start;
                }

                .secondline {
                    justify-content: flex-end;
                }
            }

            .incitesp {
                display: none;
                height: 71px;
                width: 100%;
                background-image: url(../img/top_wont-you_tape.png);
                background-position: center;
                margin-top: 40px;
            }

            .ticketline {
                height: 421px;
                width: 100%;
                background-image: url(../img/top_buyticket.png);
                background-position: center;
            }


        }

        /* イベント参加の注意事項 */
        .ivent_attention {
            max-width: 1200px;
            margin: 0 auto;
            padding: 150px 3%;

            .ivent_attention_inner {
                display: flex;
                flex-direction: column;
                align-items: center;

                h2 {
                    font-size: 18pt;
                    text-align: center;
                    margin-bottom: 50px;
                }

                .ivent_attentionlist {
                    p {
                        font-weight: 400;
                    }

                    a {
                        border-bottom: 1px solid #fff;
                    }
                }
            }
        }

        .eyecatchimg {
            background-image: url(../img/top_eyecatch.png);
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            width: 100%;
            height: 850px;
        }
    }
}


/* 下層ABOUT */
.lowerabout {
    .top-img {
        background-image: url(../img/about_top_bg.png);
        margin-bottom: 0;
    }

    .sp {
        display: none;
    }

    .lowerabout__about {
        h2 {
            margin: 80px 0 25px 0;
            padding: 0 5%;
            font-size: 90pt;
        }

        .wrapper {
            width: 100%;
            background-image: url(../img/low_aboutbg.png);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            padding: 100px 5% 200px 5%;

            h3 {
                margin-bottom: 20pt;
            }

            .centertext {
                margin-top: 80px;
                text-align: center;
                line-height: 5rem;
            }

            span {
                font-size: 72pt;
            }
        }
    }

    .lowerabout__ticketinfo {
        background-color: #fff;
        background-image: url(../img/bg_grunge_white.png);

        h2 {
            background-color: #000;

            img {
                width: 100%;

            }
        }

        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 50px;
            padding: 100px 3%;

            .placeinfo {
                display: flex;
                flex-direction: column;
                align-items: center;

                h3 img {
                    width: 100%;
                }

                .btnarea {
                    margin-top: 24px;

                    .btn {
                        background-color: unset;
                    }
                }



            }
        }

        .wrapper img:nth-child(odd) {
            margin-right: auto;
        }
    }

    .ticket {
        max-width: 1200px;
        margin: 0 auto 200px auto;

        h3 {
            display: flex;
            justify-content: center;
            margin: 40px 0 20px 0;
        }

        .btnarea {
            margin: 0 auto;
            max-width: 900px;
        }

        ul {
            max-width: 900px;
            margin: 14px auto 0 auto;
            display: flex;
            flex-direction: column;
            align-items: end;

            li {
                text-align: left;
                font-size: 10.5pt;
            }

            a:link,
            a:active {
                text-decoration: underline;
            }
        }

        p {
            text-align: center;
            margin-top: 50px;
            font-size: 18pt;
        }
    }

    .enjoydrinks {
        padding: 0 5%;

        h3 {
            font-size: 67.5pt;
            line-height: 100%;
        }

        .mainimg {
            display: flex;
            justify-content: flex-end;
        }

        .container {
            max-width: 1200px;
            margin: 80px auto 150px auto;
            display: flex;
            justify-content: space-between;

            .imgbox {
                margin-left: 50px;
            }

            .text {
                width: 50%;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
            }
        }
    }

    .enjoyedm {
        padding: 0 5%;

        h3 {
            font-size: 67.5pt;
            line-height: 100%;
        }

        .mainimg {
            display: flex;
            justify-content: flex-end;
        }

        .container {
            max-width: 1200px;
            margin: 80px auto 150px auto;
            display: flex;
            flex-direction: row-reverse;
            justify-content: space-between;

            .imgbox {
                margin-right: 50px;
            }

            .text {
                width: 50%;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
            }
        }
    }
}

/********** torickshot ***********/

.torickshot {

    /* 共通 */
    .flex-column {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .top-img {
        background-image: url(../img/torick-shot_topimg03.png);

        h1 {
            text-shadow: 1px 1px 2px #646363;
            letter-spacing: 0.8px;
        }
    }

    /***********/
    .torickshot_lead {
        h2 {
            margin-bottom: 100px;
        }

        h3 {
            line-height: 40px;
            text-align: center;
            font-size: 15pt;
        }

        margin-bottom: 150px;
    }

    .torickshot_poster .container {
        width: 90%;
        margin: auto;
        display: flex;
        justify-content: center;
        margin-bottom: 200px;
    }

    .scroll_up {
        transition: 0.8s ease-in-out;
        transform: translateY(30px);
        opacity: 0;
    }

    .scroll_up.on {
        transform: translateY(0);
        opacity: 1.0;
    }

    /* flaver紹介 */

    .torickshot_flavors {
        overflow: hidden;
        align-items: center;
        padding: 150px 0 250px 0;
        background: radial-gradient(#473B7B 0%, #3584A7 51%, #473B7B 100%);

        h2 {
            text-align: center;
            margin-bottom: 150px;
        }

        .flavors01 {
            position: relative;
            width: 100%;
            height: 500px;
            margin-bottom: 50px;
            background-image: url(../img/torickshot_parts_bg01_3.png);
            background-repeat: no-repeat;
            background-position: left top;
            background-size: contain;

            .flavor {
                position: relative;
                display: flex;
                position: absolute;
                align-items: center;
                top: -70px;
                left: 3%;
                z-index: 2;

                .bottleimg {

                    .bottle {
                        width: 85%;
                    }
                }

                .texts {
                    .text {
                        width: 90%;
                    }
                }

            }

        }

        /* 筆記体 */
        .cursive {
            position: absolute;
            bottom: 0;
            font-family: 'Nothing You Could Do', serif;
            color: #670404;
            font-size: 80pt;
            text-shadow: 8px 8px 0px rgb(87, 87, 87, 0.3);
            font-weight: normal;
        }

        /* flavors02 */

        .flavors02 {
            position: relative;
            width: 100%;
            height: 500px;
            background-image: url(../img/torickshot_parts_bg02_2.png);
            background-repeat: no-repeat;
            background-position: right top;
            background-size: contain;
            margin-bottom: 80px;

            .pcver {
                display: block;
            }

            .spver {
                display: none;
            }

            .flavor_2 {
                position: absolute;
                z-index: 2;
                display: flex;
                align-items: center;
                top: -70px;
                right: 3%;

                .bottle02 {
                    width: 85%;
                }

                .texts02 {
                    .text02 {
                        width: 90%;
                    }
                }

                .sp {
                    display: none;
                }

                .cursive02 {
                    font-family: 'Nothing You Could Do';
                    color: #DADF00;
                    font-size: 80pt;
                    letter-spacing: -4pt;
                    text-shadow: 8px 8px 0px rgb(87, 87, 87, 0.3);
                    font-weight: normal;
                    position: absolute;
                    bottom: 0;
                    right: 1%;
                    z-index: 3;
                }
            }

        }


        /* flavors03 */
        .flavors03 {
            position: relative;
            width: 100%;
            height: 500px;
            background-image: url(../img/torickshot_parts_bg03_2.png);
            background-repeat: no-repeat;
            background-position: left top;
            background-size: contain;

            .flavor {
                display: flex;
                position: absolute;
                align-items: center;
                top: -70px;
                left: 3%;
                z-index: 2;

                .bottleimg {
                    .bottle {
                        width: 85%;
                    }
                }

                .texts {
                    .text {
                        width: 90%;
                    }
                }

            }

            .sp {
                display: none;
            }

        }

        .cursive03 {
            position: absolute;
            bottom: 0;
            font-family: 'Nothing You Could Do', serif;
            color: #5F1885;
            font-size: 80pt;
            letter-spacing: -2pt;
            text-shadow: 8px 8px 0px rgb(87, 87, 87, 0.3);
            font-weight: normal;
            max-width: 1000px;
        }

        .slidein {
            margin: 50px auto;
            transition: 1s cubic-bezier(0.75, 0, 0.25, 1);
        }

        .slide_left {
            transform: translateX(calc(-50vw - 50%));
        }

        .slide_right {
            transform: translateX(calc(50vw + 50%));
        }

        .show {
            transform: translateX(0);
        }
    }

    /* torickshot閉じタグ */
}

/*--- how to ページ ---*/
/* how to ページ */

.howto {

    .top-img {
        background-image: url(../img/howto_top.png);
    }


    .howtos {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 100px;

        p {
            color: #000;
        }
    }

    .content {
        width: 75%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #fff;

    }

    .content-box {
        border: 15px solid #000;
        width: 95%;
        margin: 20px;
        margin-left: 20px;
        margin-right: 20px;
        padding: 15px;
    }

    .number {
        font-family: "Audiowide", serif;
        font-size: 48pt;
        font-weight: 800;
        color: #000;
        text-align: center;
    }

    .process {
        color: #000;
        text-align: center;
    }

    .detail {
        font-size: 15pt;
        font-weight: 800;
        text-align: center;
        margin: 10px 0;
    }

    .triangle {
        margin: 40px 0;
    }

    /* ------フロアマップ------ */

    .floor {
        background: linear-gradient(#2b26aa, #2F0151);
        /* background: linear-gradient(#643677, #42369F); */
        padding: 100px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .floors {
        margin-top: 80px;
        padding: 3%;
    }

    /* ----ステッカープレゼント */

    .sticker-bg {
        background-image: url(../img/howto_sticker-bg.png);
        width: 100%;
        height: auto;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        margin: 0 auto;
        padding: 100px 3% 150px 3%;
        display: flex;
        flex-direction: column;
        align-items: center;

        h2 {
            text-align: center;
        }
    }

    .sticker-img {
        margin-top: 60px;
    }

    .sns {
        width: 140px;
        display: flex;
        justify-content: space-between;
        margin-top: 70px;
    }
}

/* how to ページ 閉じ */

/* line up ページ */
.lineup {
    display: flex;
    flex-direction: column;
    align-items: center;

    .sjt_title {
        margin-top: 20%;
    }

    .sjt_text {
        line-height: normal;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .top-img {
        background-image: url(../img/lineup_top.png);
    }

    .lineups {
        overflow: hidden;
        max-width: 1200px;
        padding: 0 3%;
        display: flex;
        justify-content: space-between;
        margin-bottom: 100px;
    }

    .content-box {

        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 100px;
        gap: 2%;

        .sns {
            width: 98%;
            display: flex;
            justify-content: flex-end;
            gap: 15px;
        }
    }

    .content-box-revers {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        margin-bottom: 100px;
    }

    .content-img {
        width: 50%;
    }

    .yamamoto_title {
        word-break: break-all;
    }

    .content-textbox {
        width: 45%;
        position: relative;

        p {
            margin-top: 5%;
        }

        .yamamoto_bg {
            background-image: url(../img/lineup_yamamoto_bg.png);
            position: absolute;
            background-size: contain;
            right: 0;
            top: -40%;
            z-index: -1;
            height: 400px;
            width: 165px;
        }

        .sjt_bg {
            background-image: url(../img/lineup_sjt_bg.png);
            position: absolute;
            top: 0;
            z-index: -1;
            height: 110px;
            width: 495px;
        }

        .keter_bg {
            background-image: url(../img/lineup_keter_bg.png);
            position: absolute;
            right: 0;
            bottom: -20%;
            z-index: -1;
            height: 110px;
            width: 370px;
        }

        .echos_bg {
            background-image: url(../img/lineup_echos_bg.png);
            position: absolute;
            right: -10%;
            bottom: 0;
            z-index: -1;
            height: 390px;
            width: 105px;
        }
    }

    .djname {
        display: flex;

        h4 {
            line-height: normal;
            margin-top: 5%;
        }
    }
}

/* flavors03 */
.flavors03 {
    position: relative;
    width: 100%;
    height: 500px;
    background-image: url(../img/torickshot_parts_bg03.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;

    .flavor {
        display: flex;
        position: absolute;
        align-items: center;
        top: -70px;
        left: 3%;
        z-index: 2;

        .bottleimg {
            .bottle {
                width: 85%;
            }
        }
    }

}

.cursive03 {
    position: absolute;
    bottom: 0;
    font-family: 'Nothing You Could Do', serif;
    color: #5F1885;
    font-size: 80pt;
    letter-spacing: -2pt;
    text-shadow: 8px 8px 0px rgb(87, 87, 87, 0.3);
    font-weight: normal;
    max-width: 1000px;
}

/* 注意事項ページ */
.precautions {

    h1 {
        font-size: 37.5pt;
        font-weight: 800;
        margin-top: 12.5%;
        margin-bottom: 8.33%;
    }

    h3 {
        font-size: 17pt;
        font-weight: 800;
        text-align: center;
        margin: 0 4%;
    }

    h4 {
        font-size: 14pt;
        font-weight: 800;
        color: #000;
        margin-bottom: 10px;
    }

    footer {
        h4 {
            color: #fff;
        }
    }

    .precaution-content {
        li {
            list-style: inside;
            color: #000;


            p {
                display: inline;
            }
        }

        ul {
            margin-bottom: 4%;
        }
    }

    .precaution {
        padding-top: 100px;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .precaution-content {
        width: 83.33%;
        background-color: #EBEBEB;
        background-color: #fff;
        padding: 8% 8% 0 8%;
        padding-bottom: 5%;
        margin-top: 5%;
        margin-bottom: 16.66%;
        margin-bottom: 20%;
        margin-bottom: 200px;
    }
}