@charset "utf-8";

@import url("base.css");

/***************************************************************************
 *
 * COMMON STYLE
 *
 ***************************************************************************/
.clearfix:after{
    content: "";
    display: table;
    clear: both;
}
.fl{
    float: left;
}
.fr{
    float: right;
}
body {
    background-color: #FFFFFF;
    font-size: 14px;
    line-height: 1.5;
    color: #000000;
    font-family: 'Roboto', sans-serif;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}
ul {
    list-style: none;
}
.robotoFont{
    font-family: 'Roboto Condensed';
}
.nunito{
    font-family: 'Nunito', sans-serif;
}
.wraper {
    width: 1170px;
    margin: 0 auto;
}
#header{
    background: #a55727;
    overflow: hidden;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 0 4px 0px rgba(4, 64, 54, 0.6);
}
#header:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #fff;
    transition: all 0.3s;
    z-index: -1;
}
#header.active:after{
    height: 100%;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.05);
}

#header .logo{
    float: left;
    margin-top: 12px;
    width: 120px;
}
#header .logo a{
    display: block;
}
#header .logo img{
    transition: all 0.3s;
    display: none;
}
#header.active .logo .images,
#header .logo .images-hv{
    display: none;
}
#header .logo .images,
#header.active .logo .images-hv{
    display: block;
}
#header .mainMenu{
    display: inline-block;
    vertical-align: middle;
}
#header .mainMenu .menu li{
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px;
    position: relative;

}
#header .mainMenu .menu li:after{
    content: "";
    position: absolute;
    bottom: 20px;
    width: 0%;
    background: #fff;
    height: 1px;
    left: 0;
    transition: all 0.3s;
}
#header .mainMenu .menu li:hover:after,
#header .mainMenu .menu li.current-menu-item:after,
#header .mainMenu .menu li.current_page_item:after{
    width: 100%;
}

#header.active .mainMenu .menu > li:hover:after,
#header.active .mainMenu .menu > li.current-menu-item:after,
#header.active .mainMenu .menu > li.current_page_item:after{
    width: 100%;
    background: #a55727;
}
#header .mainMenu .menu li a{
    text-decoration: none;
    color: #fff;
    font-weight: 200;
    font-size: 16px;
    padding: 20px 0;
    letter-spacing: 1px;
    display: block;
}
#header.active .mainMenu > .menu > li > a{
    color: #a55727;
    font-weight: bold;
}
#header .mainMenu .menu li .sub-menu{
    position: fixed;
    top: 64px;
    width: 250px;
    left: 48%;
    background: rgba(74, 31, 4, 0.68);
    /*transition: all 0.5s;*/
    transform: translateX(-50%);
    display: none;
    z-index: 9999;
    padding: 0 15px;
}
/*#header .mainMenu .menu li:hover .sub-menu{
    display: block;
}*/
#header .mainMenu .menu li .sub-menu li{
    display: block;
    width: 100%;
    float: none;
    margin-left: 0;
}
#header .mainMenu .menu li .sub-menu li .sub-menu{
    left: 200px;
    transform: none;
    border-left: 1px solid #fff;
    display: none;
}
/*#header .mainMenu .menu li .sub-menu li:hover .sub-menu{
    display: block;
}*/

#header .mainSns{
    float: right;
    margin-top: 18px;
}
#header .mainSns ul li{
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px;
    width: 30px;
}
#header .mainSns ul li a{
    display: block;
}
#header .mainSns ul li a img{
    transition: all 0.5s;
}
#header .mainSns ul li a:hover img{
    transform: rotate(360deg);
    margin-top: -5px;
}

#header.active .mainSns ul li a .images,
#header .mainSns ul li a .images-hv{
    display: none;
}
#header .mainSns ul li a .images,
#header.active .mainSns ul li a .images-hv{
    display: block;
}

.breadLink{
    margin: 20px 0;
}
.breadLink li{
    display: inline-block;
    vertical-align: middle;
}
.breadLink li + li{
    margin-left: 25px;
    position: relative;
}
.breadLink li + li:before{
    content: ">";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -20px;
    width: 30px;
    height: 30px;
    font-size: 18px;
    line-height: 30px;
}
.breadLink li a{
    color: #e05a09;
    text-decoration: none;
    transition: all 0.25s;
    font-size: 16px;
}
.breadLink li a:hover{
    text-decoration: underline;
}
.areaTitle{
    color: #a55727;
    font-weight: 900;
    font-size: 30px;
    letter-spacing: 10px;
    text-align: center;
    position: relative;
}
.areaTitle span{
    position: relative;
    display: inline-block;
    vertical-align: top;
}
.areaTitle span:before,
.areaTitle span:after{
    content: "";
    position: absolute;
    top: 50%;
    height: 3px;
    width: 50px;
    background: #a55727;
}
.areaTitle span:before{
    left: -70px;
}
.areaTitle span:after{
    right: -60px;
}
#footer{
    background: url(../img/common/footer-bg.jpg) no-repeat center;
    background-size: 100%;
    padding: 30px 0;
    position: relative;
}
#footer:before{
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(74, 31, 4, 0.68);
}
#footer .logo{
    width: 200px;
}
#footer .row{
    overflow: hidden;
    color: #fff;
    position: relative;
    z-index: 1;
}
#footer .row p{
    margin-bottom: 5px;
    letter-spacing: 1px;
    font-size: 16px;
}
#footer .row .col p a{
    color: #fff;
    text-decoration: none;
    transition: all 0.25s;
}
#footer .row .col p a:hover{
    text-decoration: underline;
}
#footer .row .namePro{
    font-weight: bold;
    font-size: 20px;
    margin-top: 20px;
    letter-spacing: 2px;
}
#footer .maps{
    width: 340px;
    height: 300px;
    overflow: hidden;
}
#footer .maps iframe{
    width: 100%;
    height: 100%;
}
#copyright{
    background: #3e1b05;
    text-align: center;
    padding: 10px 0;
    color: #fff;
    letter-spacing: 2px;
}
.sp{
    display: none;
}
.scrollToTop{
    transition: all 0.3s ease-in-out;
    margin-bottom: 0;
}
.scrollToTop a{
    position: fixed;
    bottom: 28px;
    right: 2.5%;
    -webkit-animation: scroll 0.8s infinite alternate;
    -moz-animation: scroll 0.8s infinite alternate;
    animation: scroll 0.8s infinite alternate;
    width: 50px;
    cursor: pointer;
    z-index: 99999;
    display: none;
}

.boxSlider{
    position: relative;
    height: 300px;
    overflow: hidden;
}
.boxSlider .page_title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    z-index: 9;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}
.boxSlider:before{
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}
.boxSlider:before{
    left: 0;
}
.boxSlider img{
    position: relative;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}


/* Site Loading */
#siteLoading {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #FFF;
    top: 0;
    left: 0;
    z-index: 9999999;
}
#siteLoading .loadingIcon {
    display: inline-block;
    position: absolute;
    width: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

@keyframes scroll {
    from {
        transform:translateY(0px);
    }
    to {
        transform:translateY(-10px);
    }
}
@-webkit-keyframes scroll {
    from {
        transform:translateY(0px);
    }
    to {
        transform:translateY(-10px);
    }
}
@media(max-width: 768px){
    .sp{
        display: block;
    }
    .pc{
        display: none;
    }
    .wraper{
        width: 100%;
        padding: 0 3%;
    }
    #header{
        padding: 10px 0;
        overflow: initial;
    }
    #header .wraper{
        width: 100%;
    }

    #nav-icon1{
        width: 32px;
        height: 24px;
        position: relative;
        margin: 0 auto;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        cursor: pointer;
        float: right;
        margin-top: 8px;
    }

    #nav-icon1 span{
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: #fff;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }
    #header.active #nav-icon1 span{
        background: #a55727;
    }
    #nav-icon1 span:nth-child(1) {
        top: 0px;
    }

    #nav-icon1 span:nth-child(2) {
        top: 10px;
    }

    #nav-icon1 span:nth-child(3) {
        top: 20px;
    }

    #nav-icon1.open span:nth-child(1) {
        top: 10px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    #nav-icon1.open span:nth-child(2) {
        opacity: 0;
        left: 0px;
    }

    #nav-icon1.open span:nth-child(3) {
        top: 10px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    body.lock{
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    #header .logo{
        margin-top: 0;
    }
    #header .mainMenu{
        display: none;
        position: fixed;
        top: 58px;
        left: 0;
        width: 100%;
        height: 100%;
        margin-top: 0;
        overflow-y: auto;
        border-top: 1px solid #fff;
        background: #fff;
        padding: 30px 20px;
    }
    #header.active .mainMenu{
        background: #fff;
    }
    #header .mainMenu .menu li{
        width: 100%;
        text-align: left;
        margin: 0;
    }
    #header .mainMenu .menu li a{
        padding-left: 30px;
        border-bottom: 1px solid #a55727;
        padding: 16px 30px;
        text-align: center;
        font-size: 18px;
        color: #a55727;
    }
    #header .mainMenu .menu > li:last-child > a{
        border-bottom: none;
    }

    #header .mainSns{
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        left: 50%;
        margin: 0;
        margin-left: 46px;
    }
    #header .mainSns ul li{
        margin: 0 5px;
    }

    #header .mainMenu .menu li .sub-menu{
        position: static;
        opacity: 1;
        width: 100%;
        transform: none;
        display: none;
        transition: none;
        background: transparent;
    }
    #header .mainMenu .menu li .sub-menu li a{
        font-size: 16px;
    }
    #header .mainMenu .menu li:after{
        bottom: 0;
        background: #a55727;
        height: 2px;
    }
    #header .mainMenu .menu li:hover:after{
        width: 100%;
    }



    .areaTitle{
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    #footer{
        padding-bottom: 30px;
        background-size: cover;
    }
    #footer .row .col{
        width: 100%;
    }
    #footer .logo{
        text-align: center;
        width: 120px;
        margin: 0 auto;
    }
    #footer .row .namePro{
        font-size: 16px;
    }

    #footer .row p{
        margin-bottom: 10px;
    }
    #footer .maps{
       /* width: 97%;*/
        margin: 0 auto;
        padding-top: 7px;
        float: none;
    }

    .boxSlider{
        height: 300px;
    }
    .boxSlider img{
        width: auto;
        transform: translate(-50%, -50%) scale(1.4);
        max-width: inherit;
        height: 191px;
        left: 50%;
    }
    .boxSlider,
    .boxSlider .bx-wrapper{
        height: 360px;
        overflow: hidden;
        margin-bottom: 0;
    }
    .boxSlider .page_title{
        font-size: 24px;
    }


}
@media(max-width: 414px){
    #header .mainMenu .menu li a{
        padding: 14px 30px;
    }
    .boxSlider,
    .boxSlider .bx-wrapper{
        height: 210px;
        overflow: hidden;
        margin-bottom: 0;
    }

}