@charset "utf-8";

/*header*/

.hHamBtnIn {
    position: relative;
    box-shadow: 3px 3px 0 var(--black);
    overflow: hidden;
}

.hHamBtnIn::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    border-radius: 100vmax;
    transition: all .3s;
    transform: scale(0);
}

.hHamBtn:hover .hHamBtnIn::before {
    transform: scale(1.1);
}

.hHamBtn:hover .hHamBar {
    background: var(--white);
}


.hHamBtnBarBx {
    position: relative;
}

.hHamBar {
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    height: 2.5px;
    width: 100%;
    background: var(--black);
    transition: all .3s;
    border-radius: 100vmax;
}

.hHamBar:nth-of-type(1) {
    top: 0;
    margin: 0 auto;
}

.hHamBar:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
}

.hHamBar:nth-of-type(3) {
    bottom: 0;
    margin: 0 auto;
}

.hHamBtn.open .hHamBar:nth-of-type(1) {
    bottom: 0;
    margin: auto;
    transform: rotate(40deg);
}

.hHamBtn.open .hHamBar:nth-of-type(2) {
    opacity: 0;
}

.hHamBtn.open .hHamBar:nth-of-type(3) {
    top: 0;
    margin: auto;
    transform: rotate(-40deg);
}

/*header*/

/*スマホ時のナビ*/

.spNavBlock {
    flex: 1;
    display: flex;
}

.spNav {
    max-width: calc(100% - 70px);
    width: 100%;
    height: 70px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999999;
    border-top: 1px solid #fff;
}

.spNavArea {
    width: 100%;
    height: 100%;
    display: flex;
    background-color: var(--black);
}

.spNavConte-l {
    width: 33.33%;
    border-right: 1px solid #ccc;
}

.spNavConte-m {
    width: 33.33%;
    background: #141418;
}

.spNavLink {
    padding: 11px 5px 5px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.spNavLinkIconBx {
    display: flex;
}

.spFa {
    font-size: 23px;
    color: var(--white);
}

.spNavBtnBar {
    max-width: 36px;
    height: 26px;
    width: 100%;
    position: relative;
}

.spNavBtnTxt {
    margin: 5px auto 0;
    font-size: 12px;
    color: var(--white);
}

.spNavLinkTxt {
    margin: 5px auto 0;
    font-size: 10px;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.spHamBox {
    padding: 12px 5px 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 0;
    right: 0;
    cursor: pointer;
    z-index: 99999999;
    border-top: 1px solid #ccc;
    background: var(--black);
}


.spHamBox .spNavBtnBarItem:nth-of-type(2) {
    top: 12px;
}

.spHamBox .spNavBtnBarItem:nth-of-type(3) {
    bottom: 0;
}

.open.spHamBox .spNavBtnBarItem:nth-of-type(1) {
    transform: translateY(12px) rotate(45deg);
}

.open.spHamBox .spNavBtnBarItem:nth-of-type(2) {
    opacity: 0;
}

.open.spHamBox .spNavBtnBarItem:nth-of-type(3) {
    transform: translateY(-12px) rotate(-45deg);
}

.spNavBtnBarItem {
    width: 100%;
    height: 2px;
    right: 0;
    background: var(--white);
    border-radius: 3px;
    position: absolute;
    transition: ease .5s;
}

.spNavMainBtn {
    right: 0;
    bottom: 0;
    position: fixed;
    display: flex;
    z-index: 99999;
    background: var(--white);
    width: 70px;
    height: 70px;
}

.open .spNavBtnBarItem {
    transition: ease .5s;
}

.spMenu {
    margin: auto;
    padding: 0;
    max-width: 1920px;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    /* background: rgba(0, 0, 0, 0.1); */
    z-index: 999;
    transition: ease .5s;
}

.spMenu.open {
    right: 0;
}

.spMenuArea {
    width: 100%;
    height: 100%;
}

.spMenuConte {
    padding: 15px;
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow-y: scroll;
    -ms-overflow-style: none;
    display: flex;
    align-items: flex-start;
    margin: 0 0 0 auto;
    background: var(--white);
}

.spMenuBx {
    width: 100%;
}

.spNavBox {
    max-width: 400px;
    width: 100%;
    margin: 30px auto 80px;
}

.spMenuConte::-webkit-scrollbar {
    display: none;
}

.spMenuLink {
    padding: 10px 10px;
    text-align: center;
    display: block;
    font-size: 14px;
    color: var(--black);
    border-bottom: 1px solid #ccc;
    transition-duration: .5s;
}

.spMenuLink:hover {
    color: var(--black);
    opacity: .7;
}

.spLinkIconBx {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 5px;
    height: 40px;
    width: 100%;
}

.spLinkIconA {
    max-width: 40px;
    width: 100%;
    transition-duration: .5s;
}

.spLinkIconA:hover {
    opacity: .7;
}

.spNavList01 {
    display: block;
    font-size: 13px;
    color: #161616;
    font-weight: 400;
    letter-spacing: 0.1em;
    padding: 15px 0;
    text-align: left;
    border-bottom: 1px solid #fff;
    transition: .5s;
}

.spNavList01:hover {
    color: #141418;
    transition: .5s;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width:768px) {

    /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
    /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

    .hWrap {
        display: none;
    }

    .spNav {
        display: none;
    }

    .hPcHamBox .spNavBtnBar .spNavBtnBarItem {
        background: #fff;
    }

    .spMenuConte {
        max-width: 460px;
    }

    .hNavBx,
    .hContactBx {
        display: flex !important;
    }


    /* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

}

/* min-width: 768px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */