
@media (max-width: 1100px) {
    .subMenu{
        top:0;
        left:-200px;
        height: 100%;
        width: 200px;
        z-index: 50;
        translate:0%;
        transform: translateX(0%);
        animation-timing-function: ease-in-out; /* 3. アニメーションのタイミングを指定 */
        position: fixed;
        background-color: #ffffff;
        box-shadow: 0 0 2px rgba(0, 0, 0, 1);
    }
}
@media (min-width: 1100px) {
    .subMenu{
        top:0;
        left: calc( -1 * max(200px, calc(50% - 537px)));
        height: 100%;
        width: max(200px, calc(50% - 537px));
        z-index: 50;
        translate:0%;
        transform: translateX(0%);
        animation-timing-function: ease-in-out; /* 3. アニメーションのタイミングを指定 */
        position: fixed;
        background-color: #ffffff;
        box-shadow: 0 0 2px rgba(0, 0, 0, 1);
    }
}

.subMenu .contents{
    margin-top: 80px;
    padding-left: 10px;
    padding-right: 20px;
}
.subMenu .border{
    border-bottom: 1px solid  rgb(81, 81, 81);
    margin-top: 10px;
    margin-bottom: 20px;
}

.subMenu .main{
    height: 40px;
    width: 100%;
    border: none;
    margin-top: 10px;
    padding-left: 20px;
    font-size: 14px
}
.subMenu .sub{
    height: 30px;
    width: 95%;
    border: none;
    padding-left: 20px;
    margin-left: 5%;
    font-size: 12px;
}
.subMenu button{
    text-align: left;
    border-radius: 5px;
    color:rgb(46, 46, 46) ;
    background-color: rgb(255, 255, 255);
}
.subMenu button:hover {
    color: white;
    background-color: rgb(46, 46, 46) ;
}

.subMenu .accountButton{
    height: 50px;
    width: 100%;
    border: none;
    border-radius: 5px;
    padding-left: 20px;
    margin-bottom: 10px;
    text-align: left;
    color:var(--maincolor);
    background-color: rgb(255, 255, 255);
    font-size: var(--fontSize);
}
.subMenu .accountButton:hover {
    color: white;
    background-color: var(--maincolor);
}

.subMenu .loginButton{
    height: 50px;
    width: 100%;
    border: none;
    border-radius: 5px;
    padding-left: 20px;
    margin-bottom: 30px;
    text-align: left;
    color:var(--maincolor);
    background-color: rgb(255, 255, 255);
    font-size: var(--fontSize);
}
.subMenu .loginButton:hover {
    color: white;
    background-color: var(--maincolor);
}