@charset "utf-8";
/* CSS Document */
 .global-nav {
  position: fixed;
  right: -320px; /* これで隠れる */
  top: 0;
  width: 320px; /* スマホに収まるくらい */
  height: 100vh;
  padding-top: 80px;
  background-color: #fff;
  transition: all .6s;
  z-index: 10000;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  -webkit-overflow-scrolling: touch;
}
.hamburger {
  position: fixed;
  right: 0;
  top: 0;
  width: 80px; /* クリックしやすいようにちゃんと幅を指定する */
  height: 80px; /* クリックしやすいようにちゃんと高さを指定する */
  cursor: pointer;
  z-index: 10001;
  background-color: #238C55;
}
.global-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  letter-spacing: -0.4em;
  font-size: 16px;
}
.global-nav__item {
  text-align: center;
  padding: 0 14px;
  letter-spacing: normal;
}
.global-nav__item.pdf {
	padding-right: 0;
	padding-left: 0;
}
.global-nav__item.nl {
	padding: 8px 15px;
  border-bottom: 1px solid #eee;
  position: relative;
  font-weight: 500;
}
.global-nav__item a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #111;
  font-weight: 500;
  position: relative;
}
.global-nav__item a:hover {
  background-color: #eee;
}
.hamburger__line {
  position: absolute;
  left: 21px;
  width: 38px;
  height: 5px;
  background-color: #FFF;
  transition: all .6s;
}
.hamburger__line--1 {
  top: 20px;
}
.hamburger__line--2 {
  top: 31px;
}
.hamburger__line--3 {
  top: 42px;
}
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background-color: rgba(0,0,0,0.5);
  filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#99ffffff,EndColorStr=#99ffffff); /* IE8以下*/
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
  cursor: pointer;
}
.m-tx {
  width: 100%;
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: #FFF;
}
.close-tx {
	display: none;
}
.gnav.fixed .hamburger {
	position: fixed;
}
/* 表示された時用のCSS */
.nav-open .global-nav {
  right: 0;
}
.nav-open .black-bg {
  opacity: .8;
  visibility: visible;
}
.nav-open .hamburger__line--1 {
  transform: rotate(45deg);
  top: 32px;
}
.nav-open .hamburger__line--2 {
  width: 0;
  left: 50%;
}
.nav-open .hamburger__line--3 {
  transform: rotate(-45deg);
  top: 32px;
}
.nav-open .open-tx {
	display: none;
}
.nav-open .close-tx {
	display: block;
}
@media screen and (min-width:1081px){
	.hamburger {
		display: none;
	}
	.global-nav {
		position: static;
		right: 0;
		width: auto;
		height: inherit;
		padding-top: 0;
		background-color: transparent;
	}
	.global-nav__list {
		max-width: 962px;
		margin: auto;
		font-size: 18px;
	}
	.global-nav__item {
		letter-spacing: normal;
		padding: 0;
		vertical-align: middle;
		overflow: hidden;
		text-align: left;
		display: block;
		width: auto;
		margin: 0;
	}
	.global-nav__item .txbr {
		display: inline-block;
		width: 100%;
	}
	.global-nav__item a,.global-nav__item.nl {
		box-sizing: border-box;
		padding: 20px 0 20px 32px;
		color: #000;
		font-size: 16px;
		line-height: 1;
		background-color: #FFF;
		border-bottom: 1px solid #CCC;
		position: relative;
	}
	.global-nav__item a.ac {
		background-color: #16A0C1;
		color: #FFF;
	}
	.global-nav__item a:hover,.global-nav__item.nl:hover {
		opacity: 1;
		filter: alpha(opacity=80);
		-ms-filter: "alpha(opacity=80)"; /* IE 8 */
		-khtml-opacity: 0.8; /* Safari 1.x */
		background-color: #16A0C1;
		color: #FFF;
	}
	.global-nav__item a::before,.global-nav__item.nl::before {
		position: absolute;
		content: '';
		width: 0;
		height: 0;
		border: solid 4px transparent;
		border-left: solid 5px #2AB2D1;
		top: 50%;
		left: 17px;
		margin-top: -3px;
	}
	.global-nav__item a::after,.global-nav__item.nl::after {
		position: absolute;
		content: '';
		width: 6px;
		height: 46px;
		top: 5px;
		left: 5px;
		background-color: #2AB2D1;
	}
	.global-nav__item.guide a::after {
		height: 64px;
	}
	.global-nav__item a:hover::before {
		border-left-color: #FFF;
	}
	.global-nav__item a:hover::after {
		background-color: #FFF;
	}
	.global-nav__item a .link {
		background-position: right 0px top 2px;
	}
	.global-nav__item:last-child {
		border-bottom: none;
	}
}
@media screen and (max-width:640px){
	 .global-nav {
		right: -100%;
		width: 100%;
	}
	.hamburger {
		width: 64px;
		height: 64px;
	}
	.hamburger__line {
		left: 16px;
		width: 32px;
		height: 4px;
	}
	.hamburger__line--1 {
	  top: 16px;
	}
	.hamburger__line--2 {
	  top: 25px;
	}
	.hamburger__line--3 {
	  top: 34px;
	}
	.nav-open .hamburger__line--1,.nav-open .hamburger__line--3 {
		top: 25px;
	}
	.m-tx {
		bottom: 5px;
	}
	.global-nav__list {
		width: 92%;
		margin: auto;
	}
	.global-nav__item img {
		max-width: 80%;
		width: 100%;
		height: auto;
	}
	.global-nav__item:last-child {
		margin-bottom: 100px;
	}
}
@media screen and (max-width:480px){
	.global-nav__list {
		font-size: 14px;
	}
	.global-nav__item {
		padding: 0;
	}
}
@media screen and (max-width:380px){
	.global-nav__item {
		display: block;
		margin: 0;
		width: auto;
	}
	.global-nav {
		padding-top: 65px;
	}
	.global-nav__item a,.global-nav__item.nl {
		padding: 6px 0;
	}
}