/* ハンバーガーボタン */

.p-hamburgerBtn {
    position: relative;
    width: 40px;
    height: 32px;
    cursor: pointer;
}

.p-hamburgerBtn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #1a181a;
    border-radius: 4px;
}

.p-hamburgerBtn,
.p-hamburgerBtn span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
}

.p-hamburgerBtn span:nth-of-type(1) {
    top: 0;
}

.p-hamburgerBtn span:nth-of-type(2) {
    top: 15px;
}

.p-hamburgerBtn span:nth-of-type(3) {
    bottom: 0;
}

#c-hamburgerBtn.active span:nth-of-type(1) {
    -webkit-transform: translateY(14px) rotate(-45deg);
    transform: translateY(14px) rotate(-45deg);
}

#c-hamburgerBtn.active span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
    -webkit-animation: active-c-hamburgerBtn-bar02 .8s forwards;
    animation: active-c-hamburgerBtn-bar02 .8s forwards;
}

@-webkit-keyframes active-c-hamburgerBtn-bar02 {
    100% {
        height: 0;
    }
}

@keyframes active-c-hamburgerBtn-bar02 {
    100% {
        height: 0;
    }
}

#c-hamburgerBtn.active span:nth-of-type(3) {
    -webkit-transform: translateY(-14px) rotate(45deg);
    transform: translateY(-14px) rotate(45deg);
}


/* ハンバーガーメニュー */

.p-hamburgerMenu {
    display: none;
}

.p-hamburgerMenu.active {
    display: block;
    position: absolute;
    top: 55px;
    right: 0;
    z-index: 5;
    background: #fff;
    opacity: 0.96;
    box-shadow: 0 6px 8px 0 rgba(0, 0, 0, .5);
}

.p-hamburgerMenu li {
    padding: 30px 40px;
}

.p-hamburgerMenu ul li a {
    padding: 20px 30px;
    letter-spacing: 1.4pt;
    font-size: 20px;
}

.p-pcNav ul li a {
    font-size: 13.4px;
    letter-spacing: 1.1pt;
}

@media screen and (min-width:980px) {
    .p-pcNav ul li a {
        font-size: 18px;
    }
}