@charset "utf-8";

/* ↓ベース↓ */

* {
    box-sizing: border-box;
    margin: 0;
    max-width: 768px;
    text-align: left;
    /* margin: auto; */
    vertical-align: middle;
}

h1,
header {
    text-align: center;
}

ul.jump {
    /* display: flex; */
    margin-bottom: 60px;
}

.music {
    /* background-color: #bffaff; */
    background-color: black;
    color: white;
    margin-bottom: 150px;
    text-align: center;
}

.music p {
    color: white;
}

.music2 {
    margin-bottom: 150px;
    /* margin: auto; */
}

.border-white {
    border: 1px white solid;
    border-radius: 10px;
}

.border-black {
    border: 1px black solid;
    border-radius: 10px;
}

h2 {
    padding-bottom: 15px;
}

h2,
.Zekk,
.LITE,
.yomawari,
.te,
.Restart,
.LUV4-3VER,
.LiftOff,
.Innocent,
.Cyaegha,
.BreakOver {
    /* background-color: #bffaff; */
    text-align: center;
    margin-right: 20px;
    margin-left: 20px;
}

li {
    list-style-type: none;
    padding-bottom: 20px;
}

a {
    text-decoration: none;
    color: rgb(58, 14, 255);
}

a:hover {
    /* color: rgb(159, 212, 255); */
    opacity: 40%;
}

p {
    font-size: 30px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin: 0 0 80px;
    color: rgb(40, 40, 40);
    text-align: center;
    margin-right: 20px;
    margin-left: 20px;
}

.info {
    font-size: 20px;
    margin: 0;
    padding-top: 5px;
    color: black;
}

img {
    width: 384px;
}

footer {
    text-align: center;
    border-top: 1px black solid;
    padding-top: 80px;
    padding-bottom: 80px;
}

.footer-p {
    padding-bottom: 40px;
}

.Backtotop,
.Backtopage {
    font-size: 15px;
    padding: 20px;
    background-color: rgb(0, 0, 0);
    color: white;
    border-radius: 10px;
}

.Backtotop {
    margin-right: 10px;
}

.Backtopage {
    margin-left: 10px;
}

div .LUV4-3VER {}

/* ↑ベース↑ */

/* テスト */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.Zekk,
.LITE,
.yomawari,
.te,
.Restart,
.LUV4-3VER,
.LiftOff,
.Innocent,
.Cyaegha,
.BreakOver,
.music,
.music2 {
    padding: 40px 0 0;

    /* 個別の view timeline を設定 */
    view-timeline-name: --fadeTimeline;
    view-timeline-axis: block;

    /* アニメーションを timeline にバインド */
    animation: fadeIn linear both;
    animation-timeline: --fadeTimeline;
    animation-range: entry 0% cover 40%;
}

/* テスト2 */

body {
    --scroll-gap: 30px;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-537.1% - var(--scroll-gap) / 2));
    }
}

.scroll_wrap {
    /* margin-block-start: 20vh; */
    width: 100%;
    overflow: hidden;
}

.scroll_track {
    width: max-content;
    animation: infiniteScroll 30s linear infinite;
}

.scroll_inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 0 var(--scroll-gap);
}

.scroll_cont {
    display: grid;
    place-content: center;
    flex-shrink: 0;
    min-width: 22vw;
    aspect-ratio: 1 / 1;
    color: white;
    font-size: 1.375rem;
    font-weight: bold;
}

/* ↓レスポンシブ↓ */

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

    * {
        max-width: 1680px;
    }

    h1 {
        font-size: 40px;
    }

    .music img,
    .music2 img {
        max-width: 768px;
        /* width: 768px; */
        width: 100%;
    }

    ul.music,
    .music2 {
        display: flex;
    }

    h2 {
        font-size: 40px;
    }

    p {
        font-size: 30px;
        /* font-size: 300%; */
        margin: 0 0 0 30px;
    }

    header .header-p {
        font-size: 30px;
        margin: 30px auto;
        width: 50%;
    }

    .info {
        font-size: 120%;
    }

    .music,
    .music2 {
        padding: 0;
        margin-bottom: 200px;
        margin-top: 40px;
    }

    .music2 li,
    .music li {
        width: 50%;
    }

    .LUV4-3VER h2 {
        word-break: break-all;
    }

    @keyframes infiniteScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-245.7% - var(--scroll-gap) / 2));
        }
    }

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

        .music img,
        .music2 img {
            width: 768px;
        }

        p {
            font-size: 50px;
        }

        .info {
            font-size: 30px;
        }
    }
}

/* ↑レスポンシブ↑ */