*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.animenu__toggle {
  display: none;
  cursor: pointer;
  background-color: #111111;
  border: 0;
  padding: 8px;
  height: 43px;
  width: 38px;
}
.animenu__toggle:hover {
  background-color: #0186ba;
}

.animenu__toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: 0.15s cubic-bezier(0.75, -0.55, 0.25, 1.55);
  transition: 0.15s cubic-bezier(0.75, -0.55, 0.25, 1.55);
}
.animenu__toggle__bar + .animenu__toggle__bar {
  margin-top: 4px;
}

.animenu__toggle--active .animenu__toggle__bar {
  margin: 0;
  position: absolute;
}
.animenu__toggle--active .animenu__toggle__bar:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.animenu__toggle--active .animenu__toggle__bar:nth-child(2) {
  opacity: 0;
}
.animenu__toggle--active .animenu__toggle__bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.animenu {
  display: block;
  width: 1024px;
  margin-right: auto;
  margin-left: auto;

}
.animenu ul {
  padding: 0;
  list-style: none;
  font: 0px 'Open Sans', Arial, Helvetica;
}
.animenu li, .animenu a {
  display: inline-block;
  font-size: 16px;
}
.animenu a {
  color: #ffffff;
  text-decoration: none;
}

.animenu__nav {
  background-color: #b99a4e;

}
.animenu__nav > li {
  position: relative;
  border-right: 0px solid #b99a4e;
  
}
/*メニューの間隔*/
.animenu__nav > li > a {
  padding: 10px 20px;
  /*text-transform: uppercase;*/
}


.animenu__nav > li > a:first-child:nth-last-child(2):before {
　/*サブメニュー用の三角マーク消す
  content: "";*/
  position: absolute;
  border: 4px solid transparent;
  border-bottom: 0;
  border-top-color: currentColor;
  top: 50%;
  margin-top: -2px;
  right: 10px;
}
.animenu__nav > li:hover > ul {
  opacity: 1;
  visibility: visible;
  margin: 0;
}
.animenu__nav > li:hover > a {
  color: #fff;
}

/*プルダウンするサブメニュー*/
.animenu__nav__child {
  min-width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  margin: 20px 0 0 0;
  background-color: #213e5e;
  -webkit-transition: margin .15s, opacity .15s;
  transition: margin .15s, opacity .15s;
}

/*プルダウンするサブメニューAboutのみ幅変更*/
.w200p {
  min-width: 200%;
}
/*プルダウンするサブメニュー120%に幅変更*/
.w120p {
  min-width: 120%;
}
.animenu__nav__child a {
  font-size: 14px;
}

.animenu__nav__child > li {
  width: 100%;
  border-bottom: 1px solid #515151;
}
.animenu__nav__child > li:first-child > a:after {
  content: '';
  position: absolute;
  height: 0;
  width: 0;
  left: 1em;
  top: -6px;
  border: 6px solid transparent;
  border-top: 0;
  border-bottom-color: inherit;
}
.animenu__nav__child > li:last-child {
  border: 0;
}
.animenu__nav__child a {
  padding: 10px;
  width: 100%;
  border-color: #373737;
}
.animenu__nav__child a:hover {
  background-color: #396ca4;
  border-color: #396ca4;
  color: #fff;
}

@media screen and (max-width: 480px) {
.animenu {
  display: block;
  width: 100%;
  margin-right: auto;
  margin-left: auto;

}
	
/*プルダウンするサブメニューAboutのみ幅変更*/
.w200p {
  min-width: 100%;
}
/*プルダウンするサブメニュー120%に幅変更*/
.w120p {
  min-width: 100%;
}
	
  .animenu__toggle {
    display: inline-block;
  }

  .animenu__nav,
  .animenu__nav__child {
    display: none;
  }

  .animenu__nav {
    margin: 0px 0;
	position: relative;
	z-index: 10;
  }
  .animenu__nav > li {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid #515151;
  }
  .animenu__nav > li:last-child {
    border: 0;
  }
  .animenu__nav > li:first-child > a:after {
    content: '';
    position: absolute;
    height: 0;
    width: 0;
    left: 1em;
    top: -6px;
    border: 6px solid transparent;
    border-top: 0;
    border-bottom-color: inherit;
	
  }
  .animenu__nav > li > a {
    width: 100%;
    padding: 10px;
    border-color: #111111;
  }
	
  .animenu__nav a:hover {
    background-color: #396ca4;
    border-color: #396ca4;
    color: #fff;
  }

  .animenu__nav__child {
    position: static;
    background-color: #373737;
    margin: 0;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
    opacity: 1;
  }
  .animenu__nav__child > li:first-child > a:after {
    content: none;
  }
  .animenu__nav__child a {
    padding-left: 20px;
    width: 100%;
  }
	
}
.animenu__nav--open {
  display: block !important;
}
.animenu__nav--open .animenu__nav__child {
  display: block;
}

