/*-------------------*/
/*■ハンバーガーメニュー■*/
.is-active {
    animation: menuAnime_a 0.5s linear;
}

@keyframes menuAnime_a {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#menu-btn-check {
    display: none;
}

.hamburger-menu {
    position: relative;
    margin: 0 0 0 auto;
    height: 0;
    overflow: visible;
    z-index: 999;
    display: block;
}

.menu-btn {
    cursor: pointer;
    position: relative;
    height: 48px;
    width: 48px;
    top: 0;
    right: 0;
    margin: 0 0 0 auto;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.ham_4k {
    width: 100%;
    max-width: 1024px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    height: 0;
    z-index: 800;
    overflow: visible;
}

.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%;
    max-width: 1024px;
    height: 100%;
    position: fixed;
    inset: 0;
    margin: 0 auto;
    top: -100%;
    opacity: 0;
    /*leftの値を変更してメニューを画面外へ*/
    z-index: 888;
    background: linear-gradient(0deg, #e2cce1, #abcae6);
    /*メニュー背景色*/
    transition: all 0.4s;
}

#menu-btn-check:checked~.menu-content {
    top: 0%;
    opacity: 1;
    /*メニューを画面内へ*/
    overflow-y: auto !important;
}

.menu-content ul {
    padding: 80px 10px 0;
    width: 80%;
    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;
    width: auto;
    font-size: 18px;
    box-sizing: border-box;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    padding: 0;
    padding: 10px 0;
    padding-left: 15px;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.menu-content ul li a:hover {
    opacity: 0.7;
}

.c-figure>img:active,
.c-figure>img:hover {
    border: 1px solid #ccc;
}

@media screen and (max-width: 767px) {
    .menu-btn {
        width: 40px;
        height: 40px;
    }

    .menu-btn span,
    .menu-btn span:before,
    .menu-btn span:after {
        height: 3px;
        width: 19px;
    }

    .menu-btn span:before {
        bottom: 7px;
    }

    .menu-btn span:after {
        top: 7px;
    }

    .l-countainer__wrapper {
        background: none;
        background-image: none;
        background-color: #FFF;
    }

    .menu-content ul {
        padding: 60px 10px 0;
        width: 90%;
        margin: 0 auto;
    }

    .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: 540px) {
    .c-header__wrapper {
        padding: 6px 0;
    }

    .menu-btn {
        height: 36px;
        width: 36px;
        border-radius: 0 0 0 10px;
    }

    .menu-btn span,
    .menu-btn span:before,
    .menu-btn span:after {
        width: 16px;
    }

    .menu-btn span:before {
        bottom: 6px;
    }

    .menu-btn span:after {
        top: 6px;
    }

    .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) {}

@media screen and (max-width: 360px) {}