/*-------------------*/
/*■ハンバーガーメニュー■*/
.is-active {
    animation: menuAnime_a 0.5s linear;
}

@keyframes menuAnime_a {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
.ham_4k{
    height: auto;
    overflow: auto;
}

#menu-btn-check {
    display: none;
}

.hamburger-menu {
    position: relative;
    height: auto;
    overflow: auto;
    z-index: 999;
    display: block;
}

.menu-btn {
    cursor: pointer;
    position: fixed;
    top: 0px;
    right: 0px;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
}

.u-lipd {
    margin-left: 1em;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #c7abe9;
    position: absolute;
}

.menu-btn span:before {
    bottom: 8px;
}

.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked~.menu-btn span {
    background-color: rgba(255, 255, 255, 0);
    /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked~.menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}

#menu-btn-check:checked~.menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    /*leftの値を変更してメニューを画面外へ*/
    z-index: 888;
    background: linear-gradient(180deg,#fdbfdf,#c4aaec);
    /*メニュー背景色*/
    transition: all 0.4s;
    /*アニメーション設定*/
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}

.menu-content ul {
    padding: 80px 10px 0;
    width: 95%;
    margin: 0 auto;
}

.menu-content ul li {
    display: block;
    border-bottom: solid 1px #fff;
    list-style: none;
    text-align: left;
}

.menu-content ul li a {
    display: block;
    font-weight: 700;
    font-family: "M PLUS Rounded 1c", sans-serif !important;
    width: auto;
    font-size: 16px;
    box-sizing: border-box;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    padding: 0;
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 15px;
    position: relative;
}
.menu-content ul li a:hover{
    opacity: 0.7;
}
.c-figure>img:active,
.c-figure>img:hover {
    border: 1px solid #ccc;
}

#menu-btn-check:checked~.menu-content {
    left: 70%;
    /*メニューを画面内へ*/
    overflow-y: auto !important;
    box-shadow: -10px 0px 5px rgba(0, 0, 0, 0.2);
}

/*4Kモニタ*/
@media screen and (min-width: 2300px) {
.ham_4k{
    width: 1024px;
    position: fixed;
    top:0;right: 0;left: 0;margin: 0 auto;
    height: 100px;
    z-index: 800;
}
.hamburger-menu,.menu-btn{
    position: relative;
    margin: 0 0 0 auto;
}
.is-active {
    animation: none;
}

}

@media screen and (max-width: 1900px) {
    .menu-content ul li a {
        font-size: 14px;
        padding-top: 2px;
        padding-bottom: 2px;
    }

    #menu-btn-check:checked~.menu-content {
        left: 70%;
    }
}

@media screen and (max-width: 1300px) {
    #menu-btn-check:checked~.menu-content {
        left: 50%;
    }
}

@media screen and (max-width: 1024px) {
    .menu-btn {
        top:1px;
        right: 1px;
    }
}

@media screen and (max-width: 767px) {
    .l-countainer__wrapper {
        background: none;
        background-image: none;
        background-color: #FFF;
    }

    .menu-btn {
        top: 2px;
        right: 2px;
        background-color: rgba(255, 255, 255, 0.9);
    }

    .menu-content ul {
        padding: 60px 10px 0;
        width: 90%;
        margin: 0 auto;
    }

    #menu-btn-check:checked~.menu-content {
        left: 0%;
        /*メニューを画面内へ*/
        box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
    }

    .menu-content ul li a {
        font-size: 16px;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .c-nav__list {
        padding-left: 1em;
        padding-right: 1em;
    }

}

@media screen and (max-width: 440px) {
    .c-header__wrapper {
        padding: 6px 0;
    }

    .menu-btn {
        height: 44px;
        width: 44px;
    }

    .menu-btn span,
    .menu-btn span:before,
    .menu-btn span:after {
        width: 20px;
    }
.menu-content ul li a:hover{
    opacity: 1;
}
}

@media screen and (max-width: 430px) {
    .c-head_02 {
        font-size: 7vw;
    }

    .c-siteto {
        font-weight: 700;
        font-size: 5vw;
        letter-spacing: 0;
        margin-bottom: 8px;
    }

    .c-footer__copy {
        padding: 5px 0;
        padding-bottom: 4px;
    }
}

@media screen and (max-width: 375px) {
    .menu-btn {
        height: 42px;
        width: 42px;
    }
}

@media screen and (max-width: 360px) {}