@charset "utf-8";
/* CSS Document */
#header {
  color: #005f99;
}
@media screen and (max-width: 1024px) {
  #header {
    position: fixed;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 99999;
    background-color: rgba(255,255,255,1.00);
		
  }
  #header.open {
    background-color: rgba(236,236,236,0.9);;
		color: #FFF;
  }
  #header .sitename {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 55px;
  }
  #header .sitename .logo {
		text-align: left;
		padding: 4px;
  }
  #header .sitename .logo img {
		height: 50px;
  }
  #header .spBtn {
    position: fixed;
    top: 0px;
    right: 0px;
    padding: 10px 10px 5px;
		background-color: #004B80; 
  }
  #header .navWrap {
    padding: 8px;
    display: none;
    overflow: auto;
    height: 100vh;
    -webkit-overflow-scrolling: touch;
  }
  #header.close .navWrap {
    background-color: #FFF;
    animation: fadeIn .8s ease 1 normal;
  }
  #header.close .sitename {
    animation: fadeIn .8s ease 1 normal;
  }
  #header.open .navWrap {
    display: block;
  }
  #header.open .sitename,
	#header.open .navWrap {
    background-color: rgba(236,236,236,0.9);;
    animation: fadeIn .8s ease 1 normal;
  }
  #header.open .gnavi {
	  background-color: rgba(55,55,55,.1);
	  border-radius: 4px;
	  overflow: hidden;
	  margin: 15px 0;
  }
  #header.open .gnavi ul li a {
	  display: block;
	  padding: 8px 0;
  }
  #header.open .gnavi > ul > li {
	  width: 100%;
	  border-bottom: 1px solid rgba(255,255,255,0.4);
  }
  #header.open .gnavi > ul > li > a {
	  padding: 15px 0;
		font-weight: 500;
  }
  #header.open .navBtn ul {
		display: flex;
		justify-content: center;
		align-items: stretch;
  }
}
@media screen and (max-width: 599px) {
}
@keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
@media screen and (max-width: 1024px) {
  .menu-trigger, .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }
  .menu-trigger {
    position: relative;
    width: 40px;
    height: 34px;
  }
  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #ECECEC;
    border-radius: 4px;
  }
  #header.open .menu-trigger span {
    background-color: #FFF;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 15px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .menu-trigger span:nth-of-type(1) {
    animation: menu-bar01 .75s forwards;
  }
  .menu-trigger span:nth-of-type(2) {
    transition: all .25s .25s;
    opacity: 1;
  }
  .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(15px) rotate(-45deg);
  }
  .menu-trigger.active span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
    animation: active-menu-bar02 .8s forwards;
  }
  .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-15px) rotate(45deg);
  }
}
@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
@media (min-width: 1025px) {
  #header {
    background-color: rgba(255,255,255, .98);
    color: #005f99;
    position: fixed;
    top: 0px;
    left: 0px;
    min-width: 1200px;
    height: 80px;
    width: 100%;
    z-index: 99999;
  }
  #header .headWrap {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    height: 80px;
  }
  #header .headWrap .sitename {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #header .headWrap .sitename > div {
    padding: 6px;
  }
  #header .headWrap .sitename .logo {
		width: 280px;
  }
  #header .headWrap .sitename .logo img {
		width: 90%;
  }
  #header .headWrap .navWrap {
		flex-grow: 2;
		background-color: rgba(236,236,236,.95);
		height: 80px;
	}
  #header .headWrap .navWrap .gnavi {
  }
  #header .headWrap .navWrap .gnavi ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
		width: 100%;
  }
  #header .headWrap .navWrap .gnavi ul li {
		flex: 1 0 23%;
		border-left: 1px solid #CDCDCD;
  }
  #header .headWrap .navWrap .gnavi ul li a {
		font-weight: 700;
		display: block;
		line-height: 80px;
	}
  #header .headFix ul {
		display: flex;
		margin-left: auto;
  }
  #header .spBtn {
	display: none;
  }
}