@charset "UTF-8";




/*========================================

header.php

========================================*/

/*----------------------------------------

header

----------------------------------------*/

header .con {
    position: relative;
}


@media (min-width: 768px) {

    header .con {
        padding: 40px 20px 0;
    }

}


@media (min-width: 1024px) {

}




/*----------------------------------------

#head_logo

----------------------------------------*/

#head_logo {
    position: absolute;
    top: 40px;
    left: 8%;
    z-index: 100;
    width: 120px;
}


@media (min-width: 768px) {

    #head_logo {
        position: static;
        width: 80%;
        margin: 0 auto;
    }

}


@media (min-width: 1024px) {

}




/*----------------------------------------

#toggle_btn

----------------------------------------*/

#toggle_btn {
    position: fixed;
    top: 20px;
    right: 4%;
    z-index: 300;
    cursor: pointer;
    transition: all 0.5s;
}

#toggle_btn .bg {
    padding: 14px 13px;
    background: #2e2e2e;
}


#toggle_btn .wrap {
    position: relative;
    width: 34px;
    height: 32px;
}

#toggle_btn .bar {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #ffffff;
    transition: all 0.5s;
}

#toggle_btn .bar1 {
    top: 0px;
    left: 0;
}

#toggle_btn .bar2 {
    top: 10px;
    left: 0;
}

#toggle_btn .menu_txt {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    transition: all 0.5s;
}

input#menu_checkbox:checked ~ #toggle_btn .bg {
    background: #eaeaea;
}

input#menu_checkbox:checked ~ #toggle_btn .bar {
    background: #2e2e2e;
}

input#menu_checkbox:checked ~ #toggle_btn .bar1 {
    top: 5px;
    transform: rotate(20deg);
}

input#menu_checkbox:checked ~ #toggle_btn .bar2 {
    top: 5px;
    transform: rotate(-20deg);
}

input#menu_checkbox:checked ~ #toggle_btn .menu_txt {
    color: #2e2e2e;
}


@media (min-width: 768px) {

    #toggle_btn {
        display: none;
    }

}


@media (min-width: 1024px) {

}




/*----------------------------------------

#head_nav

----------------------------------------*/

#head_nav {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 100;
    width: 70%;
    height: 100%;
    transition: all 0.5s;
}

input#menu_checkbox:checked ~ #head_nav {
    left: 0;
}

#head_nav .inner {
    height: 100%;
    padding: 80px 20px 0;
    background: rgba(0,0,0,0.85);
}

#head_nav ul {
    width: 100%;
    padding: 0 0 80px;
}

#head_nav ul li {
    margin: 0 0 20px;
}

#head_nav ul li:last-of-type {
    margin: 0;
}

#head_nav ul li a.nav_link {
    position: relative;
    display: block;
    padding-left: 20px;
    font-size: 0.8em;
    color: #ffffff;
    transition: all 0.3s;
}

#head_nav ul li a.nav_link span {
    display: block;
    font-size: 1.6em;
}

#head_nav ul li a.nav_link::before {
    content:"";
    position:absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 100%;
    background: #ffffff;
    opacity: 0;
    transition: all 0.3s;
}

#head_nav ul li a.nav_link.is_active::before {
    opacity: 1;
}

#head_nav .company_info {
    border-top: solid 1px #ffffff;
    padding: 20px 0 0;
}

#head_nav .company_info p {
    font-size: 0.9em;
    line-height: 2;
    color: #ffffff;
}

#head_nav .company_info span {
    display: block;
    font-size: 0.8em;
    color: #ffffff;
}


@media (min-width: 768px) {

    #head_nav {
        position: static;
        width: 100%;
    }
    
    #head_nav .inner {
        padding: 0;
        background: none;
    }

    #head_nav ul {
        padding: 40px 0;
    }

    #head_nav ul li a.nav_link:hover {
        color: #dcdcdc;
    }

}


@media (min-width: 1024px) {


}