/*----------------
PC用メニュー
-----------------*/
@media screen and (min-width: 561px) {
.menu-pc {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    padding: 10px 0;
}

.menu-pc .menu__box{
    display: inline-block;
    padding: 0;
    margin-bottom: 0;
   padding: 0;
}

.menu-pc .menu__item{
     color: #000;
    font-size: 1rem;
padding: 5px;
}

.menu-pc-logo{
    text-align: center
}

.menu-pc .menu__box li{
    border-bottom: 1px solid #ccc;
    margin-bottom: 2px;
}
.menu-pc .menu__box li:last-child{
    border-bottom: none;
}
}

/*----------------
スマホ用メニュー
-----------------*/


header {
    display: flex;
/*    justify-content: space-between;*/
    justify-content: flex-end;
    align-items: center;
    padding: 20px 1rem;
    background: transparent;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-image: url(../img/bg_menu.png);
    background-size: 90px 90px;
    background-repeat: no-repeat;
    background-position: right -5% top 50%;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between
}



.menu__box {
    display: flex;
    flex-direction: row;
    list-style-type: none;
}


.red {
    color: #f06c64;
}

.menu__item {
    display: flex;
    flex-direction: column;
    padding: 0 1em 0 1.9em;
    color: #ffffff;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
}

@media screen and (max-width: 48em) {
    nav nav {
        display: inline;
    }
    .menu-pc{
    display: none
}
}
@media screen and (max-width: 48em) {
    .menu__box {
        flex-direction: column;
        position: fixed;
        visibility: hidden;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        margin: -600px 0 0 0;
        padding: 0.6em 0;
        text-align: center;
        background-color: #2d303a;
        box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2);
        z-index: 1001;
        transition-duration: 0.5s;
    }
}
@media screen and (max-width: 48em) {
    .menu__item {
        display: block;
        padding: 10px 20px;
        color: #ffffff;
        font-size: 18px;
        transition-duration: 0.5s;
    }

    .menu__item:hover {
        background-color: #4f5464;
    }
}

#menu__toggle {
    opacity: 0;
}

#menu__toggle:checked ~ .menu__btn > span {
    transform: rotate(45deg);
}

#menu__toggle:checked ~ .menu__btn > span::before {
    top: 0;
    transform: rotate(0);
    background: #f06c64;
}

#menu__toggle:checked ~ .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
    background: #f06c64;
}

#menu__toggle:checked ~ .menu__box {
    visibility: visible;
    left: 0;
    margin: 0;
}

.menu__btn {
    transition-duration: 0.25s;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: relative;
    bottom: 2px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 10001;
}

.menu__btn span {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
}

.menu__btn span::before {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    content: '';
    top: -8px;
    transition-duration: 0.25s;
}

.menu__btn span::after {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    content: '';
    top: 8px;
    transition-duration: 0.25s;
}

.menu-sp-logo img {
    width: 220px
}

}

@media screen and (min-width: 561px) {
    .floating-banner {
        display: none;
    }
}
