
/*----------------------------------------
	header
----------------------------------------*/
.header__wrapper {
	margin:0 auto;
	max-width: none;
	position: fixed;
	top: 0%;
	z-index: 1000;
	width: 100%;
	background: #fff;
	height: 80px;
	box-shadow: 0px 0px 7px 0px #909090;
	}
.header__inner {
	margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    background: #fff;
    height: 80px;
	padding: 0 10em;
}
.header__logo {
	flex-shrink: 0;
	width: 220px;
	margin-left: 8px;
	}


@media screen and (max-width: 1040px),print {
.header__wrapper {
	background: #fff;
	height: 60px;
	padding: 0;
	}
.header__inner {
	padding: 0;
	height: 60px;
}
.header__logo {
	flex-shrink: 0;
	width: 156px;
	margin-left: 10px;
	}

	}
/*----------------------------------------
	gnav
----------------------------------------*/
.gnav {
	display: block;
	position: static;
	width: auto;
	height: auto;
	padding-right:18px;
	}


.gnav__list--pc {
	display:flex;
	margin-top: 0rem;
	font-size: 1em;
	gap: 2em;
	}
.gnav__list--sp {
	display:none;
	}


.gnav__item {
	display: none;
	}

  /* PC のみ表示したい ナビ4項目 */
  .gnav__item--pconly {
	display: block;
	font-size: 1em;
	padding-left:9px;
	 }

.gnav__link {
	position: relative;
	display: block;
	padding: 5px 0;
	color: #333;
	text-decoration: none;
	opacity: 1;
	}

.gnav__link:hover {
	color:#009B73;
	}


.gnav__link._current::after {
	content: "";
	display: block;
	width: 100%;
	height: 4px;
	background: #009B73;
	}
	

  .gnav__link::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 100%;
    height: 2px;
    background: #009B73;
    transition: transform 0.3s;
    transform: scale(0,1);
  }
  .gnav__link:hover::before {
    transform: scale(1,1)
  }

.gnav__item--title {
display: none;
}

.gnav__item--child a {
display: none;
}

/*----------------------------------------*/
@media screen and (max-width: 1040px),print {
.gnav {
	display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    padding: 20px 20px 100px;
    background: #eeeeee;
    text-align: center;
    overflow-y: auto;
	-webkit-overflow-scrolling: touch; /*iOSで慣性スクロール有効化*/
	}
.gnav._open {
	display: block;/* _open がついたら表示。classのつけ外しはJSで */
	}

.gnav__list--pc {
	display:none;
	}

.gnav__list--sp {
	display:block;
	margin-top: 0;
	}



.gnav__item {
	display: block;
	border-bottom: 1px solid #cccccc;
	}
.gnav__link {
	display: block;
	padding: 15px 20px;
	}
.gnav__link._current {
	padding-left: 15px;
	border-left: 5px solid #009B73;
	}

/* スマホメニュー見出し */
.gnav__item--title {
display: block;
}

/* 子要素（リンク） */
.gnav__item--child a {
display: block;

}

}



/*----------------------------------------
	hamburger
----------------------------------------*/
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 10px;
  background: #009b73;
  border: 0;
  color: #fff;
  cursor: pointer;
}

.hamburger__line {
  position: relative;
  top: 18px;
  width: 30px;
  height: 2px;
  background: #fff;
}
.hamburger__line::before,
.hamburger__line::after {
  position: absolute;
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}
.hamburger__line::before {
  top: -13px;
}
.hamburger__line::after {
  bottom: -13px;
}

/*ボタンテキスト*/
.hamburger__txt {
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
}

/*OPEN時スタイル*/
.hamburger[aria-expanded="true"] .hamburger__line{
  background: transparent;
}
.hamburger[aria-expanded="true"] .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}
.hamburger[aria-expanded="true"] .hamburger__line::after {
  bottom: 0;
  transform: rotate(-45deg);
}
@media screen and (min-width: 1041px) {
  .hamburger {
    display: none;
  }
}

/*ハンバーガーメニューの中身*/
/* 見出し */
.gnav__item--title {
	text-align:left;
  font-weight: bold;
  padding: 30px 0 15px;
  font-size: 24px;
  font-weight: bold;
  color: #009B73;
  text-transform: uppercase;
 
}


/* 子要素（リンク） */
.gnav__item--child a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px solid #ddd;
  text-decoration:none;
}

/* → アイコン */
.gnav__arrow {
  font-size: 12px;
  display: inline-block;
  margin-right: 5px;
  color:#333333;
}

