@charset "utf-8";

/*■ハンバーガーメニュー■*/
.hamburger-menu {
    display: none;
}

@media screen and (max-width: 767px) {

    /*767pxからハンバーガーメニュー*/
    .hamburger-menu {
        display: block;
        position: fixed;
        z-index: 200;
    }
}

.menu-btn {
    cursor: pointer;
    display: block;
    position: fixed;
    top: 0px;
    left: 0px;
    display: flex;
    height: 54px;
    width: 54px;
    justify-content: center;
    align-items: center;
    z-index: 201;
    background-color: #FFF;
}

.nav_sp a {
    text-decoration: none;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 23px;
    background-color: #E75297;
    /*≡の色*/
    position: absolute;
}

.menu-btn span:before {
    bottom: 8px;
}

.menu-btn span:after {
    top: 8px;
}

#menu-btn-check {
    display: none;
}

#menu-btn-check:checked~.menu-btn {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

#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 {
    margin-top: 54px;
    position: fixed;
    overscroll-behavior: contain;
    width: 100%;
    min-height: 424px;
    height: 70vh;
    display: flex;
    top: 0;
    left: 0;
    z-index: 202;
    opacity: 0;
    transition: all 0.5s;
    /*アニメーション設定*/
    pointer-events: none;
    overflow: hidden;
}

#menu-btn-check:checked~.menu-content {
    opacity: 1;
    pointer-events: auto;
}

/*ハンバーガーメニュー内用*/
#close_div {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: auto;
}

.nav_div {
    width: 180px;
    height: auto;
    background-color: #E75297;
    /*メニュー背景色*/
}

.nav_div ul {
    margin-top: 40px;
}

.nav_div ul li {
    text-align: left;
    margin: 0;
    padding: 0;
    line-height: 1em;
    font-size: 16px;
    color: #FFF;
    font-weight: 700;
    white-space: nowrap;
    width: 100%;
    border-bottom: 1px solid #fff;
    padding: 24px;

}

.nav_div ul li a {
    color: #FFF;
}

@media screen and (max-width: 430px) {}

@media screen and (max-width: 320px) {}