


.global-nav {
  position: fixed;
  right: -400px; /* これで隠れる */
  top: 0;
  width: 400px; /* スマホに収まるくらい */
  height: 100vh;
  padding-top: 40px;
  background-color: rgba(0, 97, 177, 0.85);
  transition: all .6s;
  z-index: 200;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}

@media screen and (max-width:767px ) {
.global-nav {
  position: fixed;
  right: -70%; /* これで隠れる */
  top: 0;
  width: 70%; /* スマホに収まるくらい */
  height: 100vh;
  padding-top: 40px;
  background-color: rgba(0, 97, 177, 0.85);
  transition: all .6s;
  z-index: 200;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}
}

.contents_menu_sp{
width: 70%;
margin:  auto;
text-align: left;
font-family: 'Noto Serif JP', serif;
font-size: 16px;
}
.contents_menu_sp a{
color: #fff;
}
.contents_menu_sp dl dd{
padding: 10% 0 10% 0;
text-align: left;
border-bottom: 1px solid #bebebe;
    background-image: url(../img/arrow.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 10px auto;
}


@media screen and (min-width: 920px){	
  .pc-nav { display:block;clear: both; }
  .sp-nav { display:none;clear: both; }
}
@media screen and (max-width: 920px){	
  .pc-nav { display:none;clear: both; }
  .sp-nav { display:block;clear: both; }
}


.hamburger {
  position: absolute;
  right: 0;
  top: 1%;
  width: 50px; /* クリックしやすいようにちゃんと幅を指定する */
  height: 50px; /* クリックしやすいようにちゃんと高さを指定する */
  cursor: pointer;
  z-index: 300;
  float: right;
}
.global-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.global-nav__item {
  text-align: center;
  padding: 0 14px;
}
.global-nav__item a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #111;
}
.global-nav__item a:hover {
  background-color: #eee;
}
.hamburger__line {
  position: absolute;
  left: 11px;
  width: 30px;
  height: 2px;
  background-color: #111;
  transition: all .6s;
}
.nav-open .hamburger__line {
  position: absolute;
  left: 11px;
  width: 30px;
  height: 2px;
  background-color: #FFF;
  transition: all .6s;
}
.hamburger__line--1 {
  top: 14px;
}
.hamburger__line--2 {
  top: 25px;
}
.hamburger__line--3 {
  top: 37px;
}
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
  cursor: pointer;
}
/* 表示された時用のCSS */
.nav-open .global-nav {
  right: 0;
}
.nav-open .black-bg {
  opacity: .8;
  visibility: visible;
}

.nav-open .hamburger__line--1 {
  transform: rotate(45deg);
  top: 20px;
}
.nav-open .hamburger__line--2 {
  width: 0;
  left: 50%;
}
.nav-open .hamburger__line--3 {
  transform: rotate(-45deg);
  top: 20px;
}