@import url("animation.css");

/* スマホ表示 */
@media screen and (max-width:768px){
    .show-lg{
        display: none;
    }
    .show-sm{
        display: block;
    }
}
/* PC表示 */
@media screen and (min-width:768px){
    .show-lg{
        display: block;
    }
    .show-sm{
        display: none;
    }
}

.navigation ul{
    margin: 0;
    padding: 0;
}

.navigation a{
    display:block;
    background: transparent;
}

.nav-parent a{
    padding: 10px 20px;
}

.toggle-parent a{
    padding: .7em;
}

.toggle-parent{
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
}
#nav-in-toggle{
    position: absolute;
    top: 20px;
    cursor: pointer;
}

#nav-in{
    display: block;
    position: fixed;
    top: 20px;
    padding: 20px 0;
    z-index: 100;
    height: 260px;
    width: 90%;
    background-color: #ffffff;
}

label[id~="nav-in-toggle"]{
    display: block;
    border-radius: 80px;
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 2px 30px 15px #0000003e;
}

.bar{
    height: 5px;
    width: 40px;
    border-radius: 3px;
    background-color: #76171D;
}

#nav-in-toggle > .toggle-in-bar{
    margin: 7px 0;
}

#nav-out-toggle{
    position: absolute;
    top: 30px;
    right: 50px;
    display: block;;
    cursor: pointer;
}

#nav-out-toggle > .ts1{
    position: absolute;
    transform: rotate(45deg);
}
#nav-out-toggle > .ts2{
    position: absolute;
    transform: rotate(-45deg);
}

.navigation{
    position: relative;
    top: 0;
    right: 0;
    z-index: 20;
}
.nav-parent{
    position: fixed;
    top: 20px;
    right: 10px;
    background-color: #e6e4ff;
}
.navigation li{
    display: inline-block;
}

.nav-wrap{
    position: relative;
    top: 3em;
    display: flex;
    flex-wrap: wrap;
}

#item-1, #item-2, #item-3{
    background-color: #EBF2FF;
}

#item-4{
    background-color: #ccc6dd;
}
#item-5{
    background-color: #f1db88;
}
.nav-item{
    border: solid .5px rgb(230, 230, 230);
}
ul > li{
    font-weight: bold;
    font-size: 1.1em;
}
#item-1{
    width: 100%;
}
.item{
    width: 50%;
}