﻿.c-nav img {
  max-width: 100%;
}
.c-nav div::after, .c-nav dl::after, .c-nav ul::after, .c-nav ol::after {
  content: none;
}
.c-nav * {
  box-sizing: border-box;
}
.menuBox {
  position: relative;
  padding: 0px 0px 0px 0px;
}
.newmenu {
  position: absolute;
  right: 0;
  top: 0;
  width: 75px;
  height: 55px;
  background: #ffffff;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transition: .3s;
  display: none;
}
.newmenu span {
  position: absolute;
  left: 20px;
  top: 29px;
  width: 30px;
  height: 2px;
  background: #008545;
  transition: .3s;
}
.newmenu::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 20px;
  width: 30px;
  height: 2px;
  background: #008545;
  transition: .3s;
}
.newmenu::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 38px;
  width: 30px;
  height: 2px;
  background: #008545;
  transition: .3s;
}
.newmenu.is-active {
  background: #000;
}
.newmenu.is-active span {
  transform: rotate(45deg);
  opacity: 0;
  top: 29px;
}
.newmenu.is-active::before {
  transform: rotate(-135deg);
  top: 29px;
}
.newmenu.is-active::after {
  transform: rotate(135deg);
  top: 29px;
}
.c-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: rgba(255, 255, 255, .8);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
.c-nav.is-active {
  opacity: 1;
  visibility: visible;
}
.c-nav .inner {
  margin-top: 35px;
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 0;
  padding: 50px 0 30px;
  width: 100%;
  max-width: none;
  color: #ffffff;
  background: #000000;
  text-align: center;
  position: relative;
  z-index: 11;
}
.c-nav .main {
  margin: 0 auto 20px;
  width: auto;
  max-width: 1000px;
  padding-left: 15px;
  padding-right: 15px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.c-nav .main li {
  margin-bottom: 20px;
  width: 33%;
}
.c-nav .main a {
  padding: 20px 0;
  height: 100%;
  color: #ffffff;
  background: #212121;
  border-radius: 2px;
  display: block;
  text-decoration: none;
  transition: .3s;
}
.c-nav .main a span {
  display: block;
  font-size: 0.9em;
  margin-bottom: 5px;
  text-align: center;
}
.c-nav .main a .ja {
  font-size: 14px;
  color: #008545;
  letter-spacing: 0.02em;
  transition: .3s;
}
.c-nav .main a:hover {
  color: #000;
  background-color: #a5d6ab;
}
.c-nav .main a:hover .ja {
  color: #000000;
}
.c-nav .main a[target="_blank"] {
  position: relative;
}
.c-nav .main a[target="_blank"]:after {
  content: '';
  margin: 0 0.25em;
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: text-bottom;
  background: url(../images/icn_blank.svg) no-repeat 0 0;
  background-size: 100% auto;
}
.c-nav .main a[target="_blank"].noicon:after {
  content: none;
}
.c-nav .main a[target="_blank"]:after {
  background-image: url(../images/icn_blank_white.svg);
  position: absolute;
  right: 1em;
  top: 50%;
  margin: -.5em 0 0;
}
.c-nav .sns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}
.c-nav .sns li {
  margin: 0 8px;
  width: 40px;
}
.c-nav .sns a {
  transition: opacity .3s;
}
.c-nav .sns a:hover {
  opacity: 0.7;
}
@media screen and (max-width:1000px) {
  .newmenu {
    display: block;
  }
}