@import url('https://fonts.googleapis.com/css?family=Varela+Round');

.header {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    background: none;
    position: fixed;
    top: 0;
    height: 60px;
    overflow: hidden;
    z-index: 10;
    background: #fbf9f7;
}
.sidebarMenuInner .alphabet{
    font-weight: 300;
}

.main {
    margin: 0 auto;
    display: block;
    height: 100%;
    margin-top: 60px;
}

#sidebarMenu {
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    width: 325px;
    transform: translateX(325px);
    transition: transform 500ms ease-in-out;
    background: #F2F2F2;
    z-index: 10;

}

.sidebarMenuInner {
    margin: 0;
    padding-left: 55px;
    padding-top: 85px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    overflow: auto;
    height: 100vh;
    position: relative;
}
ul.sidebarMenuInner img {
    height: 20px;
    width: auto;
}

.sidebarMenuInner li {
    list-style: none;
    padding-bottom: 15px;
    cursor: pointer;
}

.sidebarMenuInner li span {
    display: block;
}

.sidebarMenuInner li a {
    cursor: pointer;
    color: var(--main-color);
    text-decoration: none;
}

li.sidebar_fotter.alphabet {
    text-align: right;
    position: relative;
    bottom: 5px;
    right: 25px;
}

input[type="checkbox"]:checked~#sidebarMenu {
    transform: translateX(0);
    z-index: 10;
}

input[type=checkbox] {
    transition: all 0.3s;
    box-sizing: border-box;
    display: none;
}

.sidebarIconToggle {
    transition: all 0.3s;
    box-sizing: border-box;
    cursor: pointer;
    position: fixed;
    z-index: 99;
    height: 100%;
    width: 100%;
    top: 22px;
    right: 25px;
    height: 24.1px;
    width: 33.6px;
}

.spinner {
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    height: 0.4px;
    width: 100%;
    background-color: var(--main-color);
}
::-webkit-full-page-media, :future, :root .spinner{
    /* ここに書く */
    height: 1px;
}

.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 12px;
}

.diagonal.part-1 {
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
    float: left;
}

.diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 12px;
}

input[type=checkbox]:checked~.sidebarIconToggle>.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    opacity: 0;
}

input[type=checkbox]:checked~.sidebarIconToggle>.diagonal.part-1 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(135deg);
    margin-top: 8px;
}

input[type=checkbox]:checked~.sidebarIconToggle>.diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(-135deg);
    margin-top: -12px;
}

.side_store {
    margin-top: 40px;
}

.side_insta {
    margin-bottom: 50px;
}

.side_insta img {
    margin-top: 15px;
    margin-right: 9px;
    vertical-align: sub;
}

@media(max-width:799px) {
    #sidebarMenu {
        width: 100vw;
        transform: translateX(100vw);
        background: #F2F2F2;
        z-index: 10;
    }

    .header {
        z-index: 1;
    }

    li.sidebar_fotter.alphabet {
        font-size: 20px;
    }
}