/*
common_header.css
共通ヘッダーのCSS
----------------------------------------------------------------------
Project Name : スマートSMEサポーターサイト
Package Name : スタイルシート
----------------------------------------------------------------------
Author       :
Created Date :
Updated Date : 2025/06/12 NDD髙橋 #23378 FBJNDD-40 ステップ追加対応
----------------------------------------------------------------------
/*

/*------------------------------------------------
header
------------------------------------------------*/
#header {
  background-color: #fff !important;
}

#header .btn {
  opacity: 1;
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

#header .btn:hover {
  opacity: .8;
}

#header > .top {
  margin: 0 auto;
  height: 100px;
  width: 1000px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#header > .top .logo a, #header > .top .logo span {
  color: #000;
  text-decoration: none;
  display: block;
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

#header > .top .logo a:hover {
  opacity: 0.9;
}

#header > .top .logo .txt {
  font-size: 17px;
  line-height: 1.5;
  font-weight: bold;
  text-indent: .5em;
  margin-left: -.5em;
}

#header > .top .right {
  text-align: right;
}

#header > .top .right .txt {
  line-height: 1;
  text-align: left;
}

@media all and (-ms-high-contrast: none) {
  #header > .top .right .txt {
    padding-top: .4em;
  }
}

#header > .top .right .userno {
  font-weight: bold;
  margin-bottom: 5px;
}

#header > .top .right .btns li {
  margin: 0;
  width: auto;
}

#header > .top .right .btns li + li {
  margin-left: 10px;
}

#header > .top .right .btns li button span {
  font-size: 18px;
  padding: 12px 15px;
}

#header > .bottom {
  background-color: #4293df;
}

#header > .bottom .nav {
  border-right: 1px solid #fff;
  margin: 0 auto;
  height: 60px;
  width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: strech;
  -ms-flex-align: strech;
  align-items: strech;
}

#header > .bottom .nav li {
  border-left: 1px solid #fff;
  width: 25%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

#header > .bottom .nav li a, #header > .bottom .nav li span {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background-color .2s linear;
  -o-transition: background-color .2s linear;
  transition: background-color .2s linear;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media all and (-ms-high-contrast: none) {
  #header > .bottom .nav li a, #header > .bottom .nav li span {
    padding-top: .4em;
  }
}

#header > .bottom .nav li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

#header > .bottom .nav li span {
  cursor: default;
}

#header > .bottom .nav li .disabled {
  color: rgba(255, 255, 255, 0.6);
}

#header > .bottom .nav li .l2 {
  width: 100%;
  position: absolute;
  left: 0;
  top: 60px;
/* 20250612 NDD髙橋 #23378 FBJNDD-40 ステップ追加対応に伴い位置調整 index1→2に変更 Mod Start*/
  /* z-index: 1; */
  z-index: 2;
/* 20250612 NDD髙橋 #23378 FBJNDD-40 ステップ追加対応に伴い位置調整 index1→2に変更 Mod End*/
}

#header > .bottom .nav li .l2 li {
  border-left-width: 0 !important;
  width: auto;
  height: 0;
  overflow: hidden;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

#header > .bottom .nav li .l2 li a, #header > .bottom .nav li .l2 li span {
  color: #4293df;
  background-color: #fff;
  padding: 0 15px;
}

#header > .bottom .nav li .l2 li a:hover {
  background-color: #ecf4fc;
}

#header > .bottom .nav li .l2 li .disabled {
  color: #ccc;
  background-color: #fff !important;
  cursor: default;
}

#header > .bottom .nav li:hover .l2 {
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
}

#header > .bottom .nav li:hover .l2 li {
  height: 60px;
  overflow: visible;
}

#header > .bottom .nav li:hover .l2 li + li {
  border-top: 1px solid #4293df;
}

#header > .bottom .nav li:hover .no-submenu + .l2 li {
  height: 0 !important;
  overflow: hidden !important;
}

#header > .bottom .nav li:hover .no-submenu + .l2 li + li {
  border-top: 0 !important;
}

/*------------------------------------------------
 end header
------------------------------------------------*/
/*------------------------------------------------
footer
------------------------------------------------*/
#footer {
  background-color: #115fad;
  text-align: center;
  width: 100%;
}

#footer .copyright {
  color: #fff;
  font-size: 10px;
  padding: 20px 0;
}

/*------------------------------------------------
 end footer
------------------------------------------------*/
