

/***********https://cly7796.net/blog/javascript/corresponding-to-the-responsive-side-by-side-of-the-navigation/**********************************************************/
/***********display: inline-block;***************************メニューバー全体の装飾 ********************************/




/* -------------------------
    PC
------------------------- */
#nav-switch {
    display: none;
}
.head-nav {
    position: relative;
    width: 100%;
    background: #1a1a1a;
     font-size: 13px;
}
.head-nav-lv1 {
    max-width: 1000px;
    margin: 0 auto;
}
.head-nav-lv1:before,
.head-nav-lv1:after {
    content: "";
    display: table;
}
.head-nav-lv1:after {
    clear: both;
}
.head-nav-lv1_item {
    position: relative;
    float: left;
    width: 200px;
    box-sizing: border-box;
    border-left: #cccccc 1px solid;
}
.head-nav-lv1_item:first-child {
    border-left: none;
}
.head-nav-lv1_item > a {
    display: block;
    height: 25px;
    padding: 25px 5px 0;
    color: #ffffff;
    text-align: center;
}
.head-nav-lv1_item.is-active > a {
    background: #666666;
}
.head-nav-lv1_itemInner {
    display: inline-block;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.head-nav-lv1_break {
    display: inline-block;
    white-space: nowrap;
}
.head-nav-lv2_wrap {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background: #666666;
}
.head-nav-lv2 {
}
.head-nav-lv2_item {
    border-bottom: #999999 1px solid;
}
.head-nav-lv2_item > a {
    display: block;
    padding: 10px 5px;
    color: #ffffff;
}
 
/* -------------------------
    SP
------------------------- */
@media screen and (max-width:768px) {
#nav-switch {
    display: block;
    position: absolute;
    top: 18px;
    right: 15px;
    width: 35px;
    height: 15px;
    cursor: pointer;

}
#nav-switch:before,
#nav-switch:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: #ff0000;/*三本線*/
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
#nav-switch:before {
    top: 0;
    box-shadow: 0 7px 0 #ff0000;/*三本線*/
}
#nav-switch:after {
    top: 14px;/*三本目　位置*/
}
#nav-switch.is-open:before {
    top: 5px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    box-shadow: none;
}
#nav-switch.is-open:after {
    top: 5px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.head-nav {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
        width: 50%;
}
.head-nav-lv1_item {
    float: none;
    width: 100%;
}
.head-nav-lv1_item > a {
    height: auto;
    padding: 10px 5px;
    border-bottom: #333333 1px solid;
    text-align: left;
}
.head-nav-lv1_itemInner {
    position: relative;
    display: block;
    -webkit-transform: none;
    transform: none;
        width: 30px;
}
.head-nav-lv2_wrap {
    display: none;
    position: static;
    background: #666666;
}
} /* max-width:768px */



