@charset "utf-8";
a.hamburger {
  display: block;
  width: 64px;
  height: 60px;
  position: fixed;
  top: 0;
  right: 0;
  margin-left: 300px;
  z-index: 10000;
  text-align: center;
  /* padding: 12px; */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  text-decoration: none;
  color: #FFF;
}
.hamburger .hamburger__icon {
  position: relative;
  margin-top: 20px;
  margin-bottom: 10px;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
}
.hamburger span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.hamburger__icon,
.hamburger__icon:before,
.hamburger__icon:after {
  display: block;
  width: 40px;
  height: 4px;
  margin: auto;
  background-color: #FFF;
  -moz-transition-property: background-color, -moz-transform;
  -o-transition-property: background-color, -o-transform;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.hamburger__icon:before,
.hamburger__icon:after {
  position: absolute;
  content: "";
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
}
.hamburger__icon:before {
  top: -11px;
}
.hamburger__icon:after {
  top: 11px;
}
.hamburger.active .hamburger__icon {
  background-color: transparent;
  box-shadow: none;
}
.hamburger.active .hamburger__icon:before,
.hamburger.active .hamburger__icon:after {
  background-color: #fff;
  box-shadow: none;
}
.hamburger.active .hamburger__icon:before {
  -moz-transform: translateY(11px) rotate(45deg);
  -ms-transform: translateY(11px) rotate(45deg);
  -webkit-transform: translateY(11px) rotate(45deg);
  transform: translateY(11px) rotate(45deg);
}
.hamburger.active .hamburger__icon:after {
  -moz-transform: translateY(-11px) rotate(-45deg);
  -ms-transform: translateY(-11px) rotate(-45deg);
  -webkit-transform: translateY(-11px) rotate(-45deg);
  transform: translateY(-11px) rotate(-45deg);
}
.fat-nav {
  bottom: 0;
  right: 0;
  z-index: 9999;
  position: fixed;
  display: none;
  width: 300px;
  height: calc(100% - 55px);
  background: rgba(11, 9, 9, 0.85);
  -moz-transform: scale(1.4);
  -ms-transform: scale(1.4);
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.fat-nav__wrapper {
  /* width: 71%; */
  /* height: 100%; */
  margin: auto;
  position: relative;
  /* right: -15px; */
  /* display: table; */
  table-layout: fixed;
}
.fat-nav.active {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.fat-nav .center_box {
  /* display: table-cell; */
  /* vertical-align: middle; */
  margin: 0;
  padding: 0;
}
.fat-nav ul {
  /* width:100%; */
  /* display:flex; */
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  padding: 20px 15px;
}
.fat-nav li {
  font-size: 14px;
  width: 100%;
  /* float:left; */
  /* margin-right:2%; */
  /* margin-bottom: 15px; */
}
.fat-nav li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (min-width:1600px) {
  .fat-nav li {
    font-size: 14px;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
  }
}
.fat-nav li dl dt {
  cursor: pointer;
}
.fat-nav li dl dt,
.fat-nav li a.btn {
  display: table;
  width: 100%;
  table-layout: fixed;
  margin-right: 0;
  margin-bottom: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border-bottom: 1px solid #fff;
  text-align: center;
  padding: 0px 10px;
  line-height: 1.2;
  height: 40px;
  text-align: left;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: border-color 0.5s, color .5s;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.fat-nav li a.btn span:after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  transform: rotate(45deg);
}
.fat-nav li dl dt span,
.fat-nav li a.btn span {
  display: table-cell;
  vertical-align: middle;
}
.fat-nav li a.btn br {
  display: none;
}
.fat-nav li dl dt::before,
.fat-nav li a.btn span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #666666;
  z-index: -1;
  opacity: 0;
  -webkit-transform: scale3d(0.7, 1, 1);
  transform: scale3d(0.7, 1, 1);
  -webkit-transition: -webkit-transform 0.5s, opacity .5s;
  transition: transform 0.5s, opacity .5s;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  border-radius: 2px;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.fat-nav li a.btn:hover {
  color: #fff !important;
  border-color: #666666;
  background: none;
}
.fat-nav li dl dt:hover,
.fat-nav li a.btn span:hover {
  color: #fff !important;
  border-color: #666666;
}
.fat-nav li dl dt:hover::before,
.fat-nav li a.btn span:hover::before {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/**矢印***/
.fat-nav li dl dt span {
  position: relative;
}
.fat-nav li dl dt span::before {
  content: '';
  width: 7px;
  height: 7px;
  border: 0px;
  border-top: solid 3px #666666;
  border-right: solid 3px #666666;
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  right: 7%;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transition: all 0.3s ease;
}
.fat-nav li dl dt:hover span::before {
  border-top: solid 3px #FFF;
  border-right: solid 3px #FFF;
}
/*********************************************/
/***　オープン ****/
.fat-nav li dl dt.opened span::before {
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/************************************************/
.fat-nav li dl {
  position: relative;
}
.fat-nav li dl dd {
  position: absolute;
  width: 170px;
  background-color: #666666;
  padding: 10px;
  text-align: left;
  z-index: 99999;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  top: 50px;
  color: #FFF;
}
.fat-nav li dl dd p:last-child a {
  margin-bottom: 0;
}
.fat-nav li dl dd a {
  display: block;
  color: #FFF;
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 1px solid #FFF;
  margin-bottom: 17px;
  transition: all ease 0.4s;
}
.fat-nav li dl dd a:hover {
  color: #63f168;
  border-bottom: 1px solid #63f168;
}
/**************************************   pageslide pageslide pageslide **********************************************/
#pageslide {
  /* These styles MUST be included. Do not change. */
  display: none;
  position: absolute;
  position: fixed;
  top: 70px;
  height: 100%;
  z-index: 9998;
  -moz-box-shadow: 0px 0px 27px 7px rgba(0, 0, 0, 0.22);
  -webkit-box-shadow: 0px 0px 27px 7px rgba(0, 0, 0, 0.22);
  -ms-box-shadow: 0px 0px 27px 7px rgba(0, 0, 0, 0.22);
  box-shadow: 0px 0px 27px 7px rgba(0, 0, 0, 0.22);
  /* Specify the width of your pageslide here */
  /*width: 260px;*/
  /*padding: 20px;*/
  /* These styles are optional, and describe how the pageslide will look */
  /* background-color: #333;
    color: #FFF;
    -webkit-box-shadow: inset 0 0 5px 5px #222;
    -moz-shadow: inset 0 0 5px 5px #222;
    box-shadow: inset 0 0 5px 5px #222;*/
}
.menuimg {
  width: 70%;
  height: auto;
}
#side_menu_btn {
  width: 40px;
  height: 40px;
  position: fixed;
  top: 70px;
  left: 0;
  z-index: 9998;
  text-align: center;
  /* padding: 12px; */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background-color: #396116;
  text-decoration: none;
  color: #FFF;
}
#side_menu_btn a {
  display: block;
  width: 40px;
  height: 40px;
}
#side_menu_btn a::before {
  content: '';
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 3px #FFFFFF;
  border-right: solid 3px #FFFFFF;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s ease;
}
#modal {
  background-color: rgba(255, 255, 255, 1);
  height: 100%;
  width: 235px;
  position: relative;
  padding: 0px;
  /* opacity: 0.9; */
  overflow: auto;
  direction: rtl;
}
#modal .innre {
  direction: ltr;
}
#modal .close a {
  display: block;
  height: 40px;
  background-color: #528820;
  color: #FFF;
  line-height: 40px;
  padding-left: 5px;
  text-decoration: none;
  position: relative;
  font-size: 16px;
}
#modal .close a span {
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #396116;
  right: 0;
  top: 0;
}
#modal .close a span::before {
  content: '';
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 3px #FFFFFF;
  border-right: solid 3px #FFFFFF;
  -ms-transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s ease;
}
#modal ul {
  padding: 5px;
  padding-top: 10px;
  overflow: hidden;
}
#modal ul li a {
  display: table;
  font-size: 14px;
  color: #528820;
  text-decoration: none;
  height: 40px;
  padding-left: 20px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  transition: all ease 0.3s;
}
#modal ul li a span {
  display: table-cell;
  vertical-align: middle;
}
#modal ul li a::before {
  content: '';
  width: 5px;
  height: 5px;
  border: 0px;
  border-top: solid 2px #52871F;
  border-right: solid 2px #52871F;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transition: all 0.3s ease;
}
#modal ul li a:hover {
  background-color: #528820;
  color: #FFF;
}
#modal ul li a:hover::before {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}
@media screen and (max-width:768px) {
  a.hamburger {
    display: block;
    width: 65px;
    height: 65px;
    top: 0;
    left: auto;
    right: 0;
    margin-left: 0;
    z-index: 10000;
  }
  .hamburger__icon,
  .hamburger__icon:before,
  .hamburger__icon:after {
    width: 30px;
    height: 3px;
  }
  .hamburger__icon:before {
    top: -10px;
  }
  .hamburger__icon:after {
    top: 10px;
  }
  .hamburger span {
    font-size: 12px;
  }
  .hamburger.active .hamburger__icon:before {
    -moz-transform: translateY(10px) rotate(45deg);
    -ms-transform: translateY(10px) rotate(45deg);
    -webkit-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg);
  }
  .hamburger.active .hamburger__icon:after {
    -moz-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    -webkit-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
  }
  .fat-nav {
    width: 100%;
    top: 60px;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .fat-nav__wrapper {
    width: 100%;
    right: 0;
  }
  .fat-nav ul {
    padding: 0;
  }
  .fat-nav li,
  .fat-nav li:nth-child(3n) {
    width: 100%;
    float: left;
    margin-right: 2%;
    margin-bottom: 5px;
    font-size: 14px;
  }
  .fat-nav li:nth-child(2n) {
    margin-right: 0;
  }
}