
@keyframes endroll {
    0% {
        transform: translateY(10%);
    }
    100% {
        transform: translateY(-85%);
    }
}

.endroll-container {
    width: 100%;
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: black;
    color: white;
    font-size: 1.5em;
}

.endroll-content {
    position: absolute;
    width: 100%;
    animation: endroll 15s linear infinite;
}
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #111;
    z-index: 1000;
    padding: 10px 0;
}

.menu-container {
    position: fixed;
    top: 70px;
    /* ヘッダーの高さに応じて調整 */
    width: 100%;
    background-color: #333;
    z-index: 999;
}

/* Global Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Unica One', sans-serif;
    background-color: #111;
    color: white;
    overflow: auto;
}

a {
    color: white;
    text-decoration: none;
}

/* Header Styles */
header {
    background: white;
    color: #000;
    display: flex;
    justify-content: space-between;
    padding: 0.01px 0.01px;
}

header a {
    color: #000;
    text-decoration: none;
    line-height: 2.5em;
}

/* Menu Styles */
.menu-container {
    background-color: #4d4d4d;
    padding: 20px;
    text-align: center;
}

.menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu li {
    display: inline-block;
    margin: 0 15px;
}

.menu li a {
    color: rgb(255, 255, 255);
    font-size: 0 auto;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: bold
}

.menu li a:hover {
    background-color: #000000;
    color: white;

}

/* Main Content Styles */
.main-content {
    padding: 40px;
    text-align: center;
}

.main-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #515151;
}

.main-content p {
    font-size: 1.2em;
    line-height: 1.6;
}

/* Footer Styles */
/* Footer Styles */
footer {
    background-color: #4d4d4d;
    color: white;
    padding: 20px 0;
    text-align: center;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

footer {
    background-color: #000000;
    ;
    color: rgb(255, 255, 255);
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 1em;
}

/* Typography */
h1 {
    font-size: 40px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 20px;
}

/* List Styles */
ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    padding: 0px;
    margin: 0px;
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 20px;
    }

    .slider img,
    .PRICE img {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 10px;
    }

    .slider img,
    .PRICE img {
        width: 100%;
    }
}

@media screen and (max-width: 599px) {
    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 15px;
    }

    h3 {
        font-size: 10px;
    }

    .slider img,
    .PRICE img {
        width: 100%;
    }
}

.air {
    margin: 30%;
}

.instagram-media {
    margin: 0 auto !important;
    display: block;
}

@import url('https://fonts.googleapis.com/css2?family=Unica+One&display=swap');

.mono-background {
    width: 100vw;
    background: linear-gradient(120deg, #111 0%, #333 50%, #111 100%);
    background-size: 300% 300%;
    animation: flow 8s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes flow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.fade-in-text {
    font-size: 2rem;
    letter-spacing: 0.1em;
    animation: fade 5s ease-in-out forwards;
    opacity: 0;
}

@keyframes fade {
    to {
        opacity: 1;
    }
}

.center {
    text-align: center;
}