@charset "utf-8";
/* CSS Document */
/* header ---------------------------------------- */
/*PCナビゲーション*/
.header {
    width: 100%;
    position: relative;
    z-index: 101;
    padding: 6px 0 0;
}
.header .el_humburger p{
    display: none;
}
.block{
    width: 100%;
    max-width: 1024px;
    padding: 0 10px;
    margin: auto;
}
.header .flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .logo a{
    width: 200px;
}
.header .logo h1{
    font-size: 12px;
    font-weight: bold;
    padding: 0 0 2px;
}
.header .tel a{
    display: flex;
    justify-content: space-between;
    align-items: center;    
}
.header .tel img{
    width: 30px;
    margin: 0 10px 0 0;
}
.header .tel p{
    font-size: 24px;
    font-weight: bold;
    text-align: right;
}
.header .tel p span{
    display: block;
    font-size: 12px;
}
.header .Sp-tel{
    display: none;
}
.nav_box{
    width: 100%;
    background: #1A90CF;
    margin: 6px 0 0;
}
.ola{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.15);    
}
.nav_box .navigation_wrapper{
    display: flex;
    justify-content: space-around;
    align-items: center; 
    color: #fff;
    font-weight: bold;
    font-size: 18px;           
}
.nav_box .navigation_item a{
    padding: 0 14px;
    text-align: center;
    line-height: 70px;
    position: relative;
    display: inline-block;
    text-decoration: none;
    transition: color 1s;
}
.nav_box .navigation_item a:after {
    position: absolute;
    bottom: 1px;
    left: 0;
    content: '';
    width: 100%;
    height: 3px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: 1s;
}
.nav_box .navigation_item a:hover:after {
    bottom: 6px;
    opacity: 1;
    visibility: visible;
}
.nav_box .navigation_item.Sp{
    display: none;
}
footer{
    background: #1A90CF;
    color: #fff;
}
.footer{
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 10px 10px;
}


.footer .flex{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer .access{
    width: 30%;
}
.footer .access .logo{
    width: 200px;
}
.footer .access .logo span{
    font-size: 12px;
    font-weight: bold;
}
.footer .access .logo img{
    margin: 2px 0 0;
}
.footer .access .address{
    margin: 10px 0 0;
}
.footer .access .tel{
    margin: 10px 0 0;
}
.footer .access .time{
    margin: 10px 0 0;
}
.footer .area{
    width: 70%;
    line-height: 30px;
}
.footer .nav{
    margin: 30px 0 0;
    display: flex;
    justify-content: center;
}
.footer .nav li{
    border-right: 1px solid #fff;
}
.footer .nav li a{
    padding: 0 20px;    
}
.footer .nav li:last-child{
    border-right: none;   
}
#copy{
    text-align: center;
    padding: 30px 0 0;
}
#pagetop{
    position: fixed;
    margin-left: 0;
    right: 20px;    
    bottom: 0;
    z-index: 100;
}
#pagetop a{
    width: 40px;
    height: 40px;
    background: #333;
}
#pagetop a:after{
    content: "";
    position: absolute;
    top: 30%;
    left: 30%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 12px 8px;
    border-color: transparent transparent #fff transparent;    
}
@media screen and (max-width:899px){
    .header {
        height: 66px;
        position: fixed;
        background: #fff;
        box-shadow: 1px 1px 10px rgba(0,0,0,0.15);    
    }
    .header .logo a{
        width: 160px;
    }
    .header .tel{
        display: none;
    }
    .header .Sp-tel{
        display: inherit;
    }
    .header .Sp-tel a{
        position: absolute;
        width: 66px;
        height: 66px;        
        top: 0;
        right: 67px;
        background: #1A90CF;
    }
    .header .Sp-tel img{
        position: absolute;
        top: 18px;
        right: 18px;
        width: 30px;
    }
    /*ハンバーガーボタン*/
    .header .el_humburger {
        position: absolute;
        width: 66px;
        height: 66px;
        top: 0;
        right: 0;
        padding-top: 1px;
        box-sizing: border-box;
        z-index: 101;
        transition: all 0.2s ease-in-out;
        cursor: pointer;
        pointer-events: auto;
        background: #1A90CF;
    }
    .header .el_humburger span {
        display: block;
        width: 100%;
        margin: 0 auto 4px;
        height: 2px;
        background: #fff;
        transition: all 0.2s ease-in-out;
    }
    .header .el_humburger p{
        display: inherit;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 12px;
        font-size: 10px;
        color: #fff;
        text-align: center;
        font-weight: bold;
    }
    .js_humburgerOpen .el_humburger{
        /*background: rgba(255, 255, 255, 0);*/
    }
    .js_humburgerOpen .el_humburger span {
        background: #fff;
    }
    .js_humburgerOpen .Sp_line{
        display: none;
    }
    .spbg div{
        position: absolute;
        top: 22px;
        right: 23px;
        width: 20px;
    }
    .el_humburger span.bottom {
        margin-bottom: 2px;
    }
    .js_humburgerOpen .el_humburger span.top {
        transform: translateY(6px) rotate(-45deg);
    }
    .js_humburgerOpen .el_humburger span.middle {
        opacity: 0;
    }
    .js_humburgerOpen .el_humburger span.bottom {
        transform: translateY(-6px) rotate(45deg);
    }
    .el_humburgerButton.el_humburgerButton__close {
        top: 2%;
        right: 2%;
    }
    .el_humburgerButton__close span {
        display: block;
        width: 35px;
        margin: 0 auto;
        height: 4px;
        background: #000;
    }
    .el_humburgerButton__close > span.el_humburgerLineTop {
        transform: translateY(5px) rotate(-45deg);
    }
    .el_humburgerButton__close > span.el_humburgerLineBottom {
        transform: translateY(-6px) rotate(45deg);
    }
    /*SPナビゲーション*/
    .header .navigation.js_appear {
        position: fixed;
        top: -66px;
        left: 0;
        bottom: 0;
        right: 0;
        display: block;
        z-index: 100;
        height: inherit;
        line-height: inherit;
    }
    .header .navigation_screen {
        width: 100%;
        position: absolute;
        top: 67px;
        left: 0;
        bottom: 0;
        z-index: 1;
        margin-top: 66px;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
		max-width: inherit;
	    padding: 0;
        background: #1A90CF;
    }
    .header nav.navigation_wrapper {
        display: inherit;
        padding: 60px 0 0;
        height: 100vh;
        float: inherit;
    }
    .nav_box .navigation_item {
        position: relative;
        padding: 0;
        width: 100%;
        text-shadow: inherit;
    }
    .nav_box .navigation_item a {
        display: block;
        text-decoration: none;
        padding: 16px 8px;
        line-height: 30px;  
        text-align: center;      
    }
    .nav_box .navigation_item a:after {
        position: inherit;
    }
    .nav_box .navigation_item a:hover:after {
        bottom: 6px;
        opacity: 1;
        visibility: visible;
    }
    .js_fixed {
        position: fixed;
        width: 100%;
        height: 100%;
    }
    #pagetop{
        right: 10px;    
    }    
    .nav_box .navigation_item.Sp{
        display: inherit;
    }
    .footer .access{
        width: 100%;
    }
    .footer .access .logo{
        width: 200px;
        margin: auto;

    }
    .footer .access .logo span{
        text-align: center;
    }


    .footer .access .address,
    .footer .access .tel,
    .footer .access .time{
        text-align: center;
    }
    .footer .area{
        width: 100%;
        margin: 20px 0 0;
    }
}
@media screen and (max-width:767px){
    .header .logo h1 {
        font-size: 10px;
        padding: 0 0 4px;
    }
    .footer .nav{
        flex-wrap: wrap;
    }
    .footer .nav li{
        width: 100%;
        border-right: none;
        border-top: 1px solid #fff;
        position: relative;
    }
    .footer .nav li:last-child{
        border-bottom: 1px solid #fff;
    }
    .footer .nav li a{
        padding: 20px 10px;    
    }
    .footer .nav li a:after{
        content: "";
        width: 10px;
        height: 10px;
        position: absolute;
        top: 26px;
        right: 10px;
        margin: auto;
        box-sizing: border-box;
        border: 5px solid transparent;
        border-left: 8px solid #fff;
    }
}