<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ---------- å…¨ä½“ ----------ã€€*/
.menu-content_wrapper {
    display: flex;
}
.menu-content {
    width: 85%;
    margin-left: 15%;
    justify-content: center;
}

/* ---------- ãƒ¡ãƒ‹ãƒ¥ãƒ¼ãƒŠãƒ“ ----------ã€€*/
.navigation a {
    color:#999999;
    text-decoration: none;
    padding: 10px;
}
.navigation a {
    position: relative;
    display: inline-block;
    text-decoration: none;
}
.navigation a::after {
    position: absolute;
    bottom: 5px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #333;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}
.navigation a:hover::after {
    transform: scale(1, 1);
}
.navigation {
    background-color: #e2e2e2;
    height: 100vh;
    margin-top: 80px;
    width: 15%;
    position: fixed;
    display: flex;
    justify-content: center;
    z-index: 1;
}
.navigation li {
    font-size: 2.6rem;
    color: #A0A0A0;
    text-align: left;
}
.navigation ul {
    display: flex;
    flex-flow: column;
    height: 80vh;
    justify-content: space-evenly;
}

/* ---------- ãƒ¡ãƒ‹ãƒ¥ãƒ¼å˜ä½“ ----------ã€€*/
.primary {
    font-size: 6rem;
    color: #A0A0A0;
    margin: 0 auto 80px 0;
    padding-top: 100px;
}
.menu-title {
    font-size: 2rem;
}
.menu-title span {
    font-size: 1.4rem;
}
.price {
    font-size: 1.4rem;
    margin-left: 5px;
}
.data {
    font-size: 1.2rem;
    color: #A0A0A0;
    margin-bottom: 50px;
}
.data span {
    color: black;
}
.upper {
    display: flex;
    margin-bottom: 15px;
}

/* ---------- ãƒ¡ãƒ‹ãƒ¥ãƒ¼å…¨ä½“ ----------ã€€*/
.odd {
    background-color: #F5F5F5;
    text-align: center;
}
.even {
    text-align: center;
}
.menu-container {
    display: inline-block;
}
.menu-wrapper {
    display: flex;
    margin-bottom: 50px;
}
.menu-wrapper li {
    width: 275px;
}
.menu-right {
    margin-left: 70px;
}


/* ---------- ãƒ¡ãƒ‹ãƒ¥ãƒ¼ç‰¹æ®Š ----------ã€€*/
.cut {
    margin-top: 80px;
}
.decoration-m {
    font-size: 12.5rem;
    color: #74A4FF;
    opacity: 0.1;
    transform: rotate( 90deg);
    position: absolute;
    z-index: -2;
    right: 70%;
    top: 59%;
}
.decoration-l {
    font-size: 12.5rem;
    color: #FF74A4;
    opacity: 0.1;
    transform: rotate( 90deg);
    position: absolute;
    z-index: -2;
    right: 66%;
    top: 18%;
}
.mens-color,
.ladys-color {
    position: relative;
}
.line {
    border-bottom: 1px solid #707070;
    max-width: 450px;
    margin: 100px auto;
}
.menu-footer {
    margin-left: 15%;
}
@media(max-width:1024px) {
    .navigation {
        display: none;
    }
    .menu-content {
        width: 100%;
        margin-left: 0;
    }
    .menu-footer {
        margin-left: auto;
    }
}
@media(max-width:767px) {
    .menu-wrapper {
        flex-flow: column;
    }
    .menu-right {
        margin-left: 0;
    }
    .line {
        width: 240px;
    }
    .decoration-m {
        right: auto;
        left: 10px;
        top: 300px;
    }
    .decoration-l {
        right: auto;
        left: -10px;
        top: 100px;
    }
}</pre></body></html>