@charset "UTF-8";




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

header.php

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

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

header

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

header {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
}

header .con {
    padding: 25px 4% 0;
}


@media (min-width: 768px) {

    header .con {
        padding: 40px 4% 0;
    }

    header .flex_box {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

}


@media (min-width: 1024px) {}




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

#head_logo

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

#head_logo {
    width: 120px;
}

#head_logo a {
    display: block;
}

#head_logo a img {
    transition: all 0.3s;
}

#head_logo a:hover img {
    opacity: 0.8;
}


@media (min-width: 768px) {

    #head_logo {
        width: 160px;
    }

}


@media (min-width: 1024px) {

    #head_logo {
        width: 240px;
    }

}




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

#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: #464237;
    border-radius: 5px;
}


#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: #f6f6ee;
}

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

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: #464237;
}


@media (min-width: 768px) {

    #toggle_btn {
        display: none;
    }

}


@media (min-width: 1024px) {}




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

#head_nav_sp

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

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

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

#head_nav_sp .inner {
    width: 100%;
    height: 100%;
    padding: 40px 8% 40px;
    background: #464237;
}

#head_nav_sp .company_logo {
    width: 160px;
    margin: 0 0 40px;
}

#head_nav_sp .main_nav {
    padding: 20px 8%;
    background: #f6f6ee;
    border-radius: 10px;
}

#head_nav_sp .main_nav ul li {
    border-bottom: solid 1px #464237;
}

#head_nav_sp .main_nav ul li:last-of-type {
    border-bottom: none;
}

#head_nav_sp .main_nav ul li:last-of-type {
    border-bottom: solid 1px #fff6f3;
}

#head_nav_sp .main_nav ul li a {
    position: relative;
    display: block;
    padding: 20px 0;
    font-size: 1.1em;
    font-weight: 700;
    transition: all 0.3s;
}

#head_nav_sp .main_nav ul li a:hover {
    color: #d5db00;
}

#head_nav_sp .main_nav ul li a::after {
    display: block;
    font: var(--fa-font-solid);
    content: "\f138";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

#head_nav_sp .company_info p.name {
    font-size: 1em;
    font-weight: 700;
    color: #fff6f3;
}

#head_nav_sp .company_info p.address {
    font-size: 0.9em;
    color: #fff6f3;
}

#head_nav_sp .company_info p.tel {
    font-size: 0.9em;
    color: #fff6f3;
}

#head_nav_sp .company_info p.authorization {
    font-size: 0.9em;
    color: #fff6f3;
}


@media (min-width: 768px) {

    #head_nav_sp {
        display: none;
    }

}


@media (min-width: 1024px) {}




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

#head_nav_pc

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

#head_nav_pc {
    display: none;
}


@media (min-width: 768px) {

    #head_nav_pc {
        display: block !important;
    }

    #head_nav_pc ul {
        display: flex;
    }

    #head_nav_pc ul li {
        flex: auto;
        margin-right: 20px;
    }

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

    #head_nav_pc ul li a {
        display: block;
        text-shadow: 1px 1px 3px #000000;
        font-size: 0.9em;
        font-weight: 700;
        color: #ffffff;
        transition: all 0.3s;
    }

    #head_nav_pc ul li a:hover {
        color: #d5db00;
    }

}


@media (min-width: 1024px) {

    #head_nav_pc ul li {
        margin-right: 40px;
    }

    #head_nav_pc ul li a {
        font-size: 1.2em;
    }

}