@charset "utf-8";
/* CSS Document */

header{
 position:fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 9999;
 background-color: #fff;
}
.header--insert{
 padding: 15px 40px 20px;
}
.logo{
 background-color: #F03333;
}
.logo img{
 width: auto;
 height: 70px;
}
.globalmenu{
 width: calc(100% - 160px);
}
.globalmenu .din{
 border-bottom: 1px solid #fff;
 text-align: right;
 font-size: 2.5rem;
 padding: 0 0 15px 0;
}
.globalmenu ul{
 border-top: 1px solid #999;
 display: flex;
 justify-content: flex-end;
 align-items: center;
 padding: 18px 0 0 0;
}
.globalmenu ul li a{
 display: flex;
 align-items: center;
 font-weight: 500;
 border-right: 1px solid #000;
 padding:0 26px;
 line-height: 1;
}
.globalmenu ul li a span{
 display: inline-block;
 line-height: 1;
 margin: 0 8px 0 0;
 font-size: 1.2rem;
 font-weight: normal;
 color: #fff;
 background-color: #F03333;
 padding: 4px 10px;
 border-radius: 2px;
}
.globalmenu ul li:last-child a{
 padding-right: 0;
 border: none;
}