@charset "UTF-8";
header {
    position: relative;
    padding: 10px 20px;
}
header nav ul.navg {
    display: flex;
    justify-content: center;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    margin-bottom: 0rem;
        align-items: center;
}
.contact header nav ul.navg {
    display: flex;
    justify-content: center;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    margin-bottom: 4rem;
}
header .inner {
    max-width: 1000px;
    margin: auto;
}
header nav ul.navg li {
    padding: 15px 3.5%;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
        text-align: center;
    line-height: 1.2;
}

header nav ul.sns {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
}
header nav ul.sns li {
    margin-left: 15px;
}
header nav ul.sns img {
    max-width: 28px;
}
header#navArea > p {
    color: #000;
    font-size: 1.5rem;
    line-height: 1.4;
}
.headnav {
    display: flex;
    justify-content: center;
    margin-bottom: 57px;
}
.headnav h1 {}
.headnav h1 img {
    width: 187px;
}
@media screen and (max-width: 768px) {
    nav {
        right: -300px;
        width: 220px;
    }
    header .inner {
        width: 100%;
        margin: auto;
    }
    /*============
.toggle_btn
=============*/
    .togglebox {
        position: fixed;
        top: 10px;
        right: 10px;
        width: 50px;
        height: 50px;
        transition: all .5s;
        cursor: pointer;
        z-index: 3;
        display: block;
    }
    .toggle_btn {
        display: block;
        height: 70px;
    }
    .toggle_btn span {
        display: block;
        position: absolute;
        left: 0;
        width: 37px;
        height: 2px;
        background-color: #000;
        border-radius: 4px;
        transition: all .5s;
        right: 0;
        margin: auto;
        top: 0;
        bottom: 0;
    }
    .toggle_btn span:nth-child(1) {
        top: -20px;
    }
    .toggle_btn span:nth-child(2) {
        top: 0;
    }
    .toggle_btn span:nth-child(3) {
        bottom: -20px;
    }
    .open .toggle_btn span {
    }
    .open .toggle_btn span:nth-child(1) {
        -webkit-transform: translateY(10px) rotate(-315deg);
        transform: translateY(10px) rotate(-315deg);
    }
    .open .toggle_btn span:nth-child(2) {
        opacity: 0;
    }
    .open .toggle_btn span:nth-child(3) {
        -webkit-transform: translateY(-10px) rotate(315deg);
        transform: translateY(-10px) rotate(315deg);
    }
    /*============
#mask
=============*/
    #mask {
        transition: all .5s;
        opacity: 0;
    }
    .open #mask {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        opacity: 1;
        z-index: 2;
        cursor: pointer;
        transition: all .5s;
    }
    /*============
nav
=============*/
    header {
        height: auto;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        border-bottom: 0;
    }
    nav {
        display: block;
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transition: all .5s;
        z-index: 3;
        opacity: 0;
    }
    .headnav {
        display: flex;
        align-items: center;
        height: 110px;
    }
    .headnav h1, .headlogo {
        width: 136px;
        padding-left: 0;
        margin-top: -30px;
    }
    .headnav h1 img, .headlogo img {
        max-width: 100%;
    }
    .headnav ul {
        display: flex;
        margin-left: auto;
        margin-right: 90px;
    }
    .headnav ul li a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .headnav ul li {
        margin: 0 10px;
    }
    .headnav ul li span {
        display: block;
        text-align: center;
        font-size: 1.2rem;
    }
    .headnav .head_faq a span {
        margin-top: 4px;
    }
    .head_cart img {
        width: 34px;
    }
    .head_cart span {
        position: relative;
        left: 2px;
    }
    .head_faq img {
        width: 30px;
        top: 2px;
        position: relative;
    }
    .open nav {
        right: 0;
        opacity: 1;
    }
    nav .inner {
        padding: 25px;
    }
    nav .inner ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    nav .inner ul li {
        position: relative;
        text-align: right;
    }
    nav .inner ul li a {
        display: block;
        color: #000;
        font-size: 14px;
        padding: 5px 0 5px 10px;
        text-decoration: none;
        transition-duration: 0.2s;
    }
    nav .inner ul li a:hover {
        background: #e4e4e4;
        color: #000;
    }
    nav .inner ul li ul {
        padding-left: 1em;
        border-bottom: 1px solid #999;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    nav .inner ul > li:first-child {
        font-weight: bold;
    }
    nav .inner ul li ul > li:first-child, nav .inner ul li ul > li {
        font-weight: normal;
    }
    nav .inner ul li ul > li:first-child::before, nav .inner ul li ul > li::before {
        content: '';
        display: inline-block;
        position: absolute;
        top: 50%;
        left: 0;
        width: 0;
        height: 0;
        margin-top: -5px;
        border-top: 5px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 6px solid #d580a6;
    }
    /*nav on*/
    header nav ul.navg {
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin-bottom: 10px;
       align-items: end;
    }
    header nav ul.sns {
        display: flex;
        position: relative;
        right: 0;
        top: initial;
        justify-content: end;
        margin: 10px 30px;
    }
}
@media screen and (max-width: 480px) {
    .headnav {
    display: flex;
    align-items: center;
    height: 20px;
    margin-bottom: 80px;
    }
    .headnav h1, .headlogo {
        width: 100px;
        padding-left: 0;
        line-height: 0;
        margin-top: 0;
    }
    .headnav ul {
        display: flex;
        margin-left: auto;
        margin-right: 80px;
    }
    nav .inner {
        padding: 12px;
    }
    .headnav ul li span {
        display: block;
        text-align: center;
        font-size: 1rem;
    }
}