
/* ヘッダー */


.header {
    background:rgba(0,50,160,0.8);
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
}

.header__inner {
	width: 960px;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: inherit;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (max-width: 960px) {
.header__inner {
	width: 90%;
	padding-right: 5%;
	padding-left: 5%;
}
}


/* ヘッダーのロゴ部分 */
.header__title {
    width: 280px;
    padding-bottom: 4px;
}
.header__title img {
    display: block;
    width: 100%;
    height: 100%;
}

/* ヘッダーのナビ部分 */
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 70%;
}

/* ナビ部分 */
.nav__items {
	width: 100%;
	display: flex;
	position: inherit;
	top: 0;
	left: 0;
	align-items: center;
	height: initial;
	justify-content: space-between;
	transform: translate(0, 0);
	list-style: none;
}
.nav__items a {
	font-weight: 700;
}


.head_news {
    font-weight: 700;
    background-color: rgba(255,255,255,0.90);
    height: 100px;
    padding: 10px 0px 26px 0px;
    color: #FF7700;
	font-size: 1.1rem;
	line-height: 2.0rem;
	letter-spacing: 0.2rem;
}

@media screen and (max-width: 960px) {
.header__nav {
	position: absolute;
	right: 0;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	transform: translateX(100%);
	transition: ease .4s;
	background:rgba(0,33,66,0.9);
}
.nav__items {
	width: 100%;
	display: block;
	position: relative;
	text-align: center;
  }
.head_news {
    font-weight: 700;
    background-color: rgba(241,240,228,0.90);
    height: auto;
    padding: 2% 10% 1% 10%;
	font-size: 0.6rem;
	line-height: 1.6rem;
}
}


/* ハンバーガーメニュー */

.header__hamburger {
  width: 48px;
  height: 100%;

}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}

@media screen and (min-width: 960px) {
  .hamburger {
    display: none;
  }
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: relative;
  transition: ease .4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;

}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}





/*==================================================
共通　横並びのための設定
===================================*/

.hover-action{

}

.hover-action li a{
    display: block;
    padding: 20px 10px;
    text-decoration: none;
    color: #FFFEEE;
    font-size: 0.8rem;
    font-weight: 500;
}


/*==================================================
　5-3-1 中心から外に線が伸びる（下部）
===================================*/

.hover-action li a{
    /*線の基点とするためrelativeを指定*/
  position: relative;
}

.hover-action li.current a,
.hover-action li a:hover{
  color: #FCFBDB;
}

.hover-action li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 2px;
    background-color: #FCFBDB;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*上部中央基点*/
}

/*現在地とhoverの設定*/
.hover-action li.current a::after,
.hover-action li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}