@charset "utf-8";
header{
    width: 100%;
    position: relative;
}

#spacer{
    display: flex;
    flex-direction: row;
    height: 90px;
}

.nav_wrapper{
    display: flex;
    flex-direction: row;
    width: 1024px;
    margin-left: calc((100% - 1024px) / 2);
}

.header_right{
    width: calc((100% - 1024px) / 2);
    background-color: #025aaa;
}
/* logo */
.nav_wrapper >div{
    width: 375px;
    height: 75px;
    margin: 7.5px 0;
}

.main_logo{
    width: 375px;
}

#hamburgerNavi{
    display: none;
}
/* navi area */
#nav_area{
    background-color: #025aaa;
    border-radius: 0 0 0 10px;
    display: -webkit-box;
    display: flex;
    margin-left: 39px;
    padding: 1.5rem 0.5rem;
    width: 610px;
    border-right-style: solid;
    border-right-width: 1px;
    border-right-color: #025aaa;

}

#nav_area li a{
    color: #fff;
}

#nav_area ul{
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
}
/* global navi */
#glbnav{
    width: 170px;
}

#glbnav div{
    padding-right: 0.3rem;
}

#glbnav li{
    font-size: 0.8rem;
}

#glbnav a{
    display: block;
}

.white_tri{
    height: auto;
    width: 0.6rem;
}
/* side navi */
#subnav{
    width: 335px;
    margin-left: calc(100% - 170px - 335px);
}

#subnav li:first-child{
    border-left: none;
}

#subnav li:last-child{
    padding-right: 0;
}

#subnav li{
    border-left: 1px solid #fff;
    font-size: 0.6rem;
    padding: 0 10px;
}
/* breadcrumbs list */
.breadcrumbs_wrapper{
    margin: 0 auto 1rem auto;
    width: 1024px;
}

.breadcrumbs{
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 100%;
    padding: 15px 20px;
}

.breadcrumbs li{
    font-size: 1em;
    margin-right: 10px;
}

.breadcrumbs >li::after{
    content: " >";
}

.breadcrumbs li:last-child{
    color: #0B497C;
}

.breadcrumbs >li:last-child:after{
    content: none;
}
/* skip link */
.skiplink{
    font-size: 1.4em;
    overflow: hidden;
    width: 0;
}

.skiplink a{
    display: block;
    height: 0;
    overflow: hidden;
    padding: 0 8px;
    text-align: center;
    text-decoration: none;
}