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

:root{
	--main-color-blue: #00478b;
}
*{
    box-sizing: border-box;
}

/* ----- header ----- */

#header2026{
    padding-top: 40px;
    padding-bottom: 28px;
    background: #013B84 url(../img/common/2026/header-bg.png) no-repeat center center;
    background-size: cover;
}
#header2026 .inner{
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    min-height: 140px;

    max-width: 1180px;
    min-width: 980px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
}
#header2026 .inner .leftArea{
    width: calc(100% - 300px);
    padding-right: 40px;
}
#header2026 .inner .rightArea{
    width: 300px;
    position: relative;
}
#header2026 .inner .leftArea>*:last-child,
#header2026 .inner .rightArea>*:last-child{
    margin-bottom: 0 !important;
}
#header2026 h1{
    width: 624px;
    margin-bottom: 0.5em;
}
#header2026 p.co-related{
}
#header2026 .date{
}
#header-langage-select{
    padding: 8px 0;
    background: #121212;
}
#header-langage-select .inner{
    max-width: 1180px;
    min-width: 980px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}
#header-langage-select ul{
    display: flex;
    flex-wrap: wrap;
    gap: 0.8em;
    align-items: center;
    justify-content: end;
}
#header-langage-select ul li{
    font-size: 75%;
}
#header-langage-select ul li:not(:last-child):after{
    content: "";
    display: inline-block;
    width: 1px;
    height: 1em;
    margin-left: 0.8em;
    background: #ffffff;
}
#header-langage-select ul li a{
    color: #ffffff;
    font-weight: normal;
}
#header-langage-select ul li.active a{
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    pointer-events: none;
}

/* ----- globalnav ----- */

#globalnav.nav2026{
    color: #ffffff;
    min-height: 48px;
    margin-bottom: 40px;
    background: var(--main-color-blue);
}
#globalnav.nav2026 .inner{
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}
#globalnav.nav2026 .inner>ul{
    display: flex;
    flex-wrap: wrap;
}
#globalnav.nav2026 .inner>ul>li{
    width: calc(100% / 5);
    display: block;
    position: relative;

}
#globalnav.nav2026 .inner>ul>li:before,
#globalnav.nav2026 .inner>ul>li:last-child:after{
    content: "";
    display: block;
    position: absolute;
    top: 25%;
    width: 1px;
    height: 50%;
    background: #ffffff;
}
#globalnav.nav2026 .inner>ul>li:before{
    left: 0;
}
#globalnav.nav2026 .inner>ul>li:last-child:after{
    right: 0;
}
#globalnav.nav2026 .inner>ul>li>a{
    color: #ffffff;
    display: block;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.02em;
    padding: 1.25em 0;
    text-align: center;
    text-decoration: none;
}
#globalnav.nav2026 .inner>ul>li>a:hover{
    color: inherit;
    background: inherit;
    opacity: 0.5;
}
#globalnav.nav2026 ul li ul{
    display: none;
    width: 260px;
    position: absolute;
    top: 100%;
    left: -1px;
    z-index: 500;
}
#globalnav.nav2026 ul li:hover ul{
    display: block;
}
#globalnav.nav2026 ul li ul li{
    padding-top: 1px;
}
#globalnav.nav2026 ul li ul li a{
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.3;
    text-align: left;
    text-decoration: none;
    padding: 1.25em 1em;
    background: rgba(0,0,0,0.9);
}
#globalnav.nav2026 ul li ul li a:hover{
    background: rgba(51,51,51,0.9);
}
