@charset "UTF-8";
/* CSS Document */


.nav_container {
  position: absolute;
  z-index: 10;
  width: 100%;
  heigh: 100%;
  text-align: center;
  top: 40%;
  left: 0;
  margin: 0 auto;
  font-family:"ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
}
.nav_container p {
  font-size: 1em;
}
.nav_container a {
  display: inline-block;
  position: relative;
  text-align: center;
  color: #FF5252; /* オレンジ　FF5252*/
  text-decoration: none;
  font-size: 0.84em;
  overflow: hidden;
  top: 5px;
}

.nav_container a:after {
  content: '';
  position: absolute;
  background: #FF5252;
  height: 2px;
  width: 0%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  -webkit-transition: .35s ease;
  transition: .35s ease;
}
.nav_container a:hover:after, .nav_container a:focus:after, .nav_container a:active:after {
  width: 100%;
}


.button_container {
  position: fixed;
  top: 2%;
  right: 11.2%;
  height: 27px;
  width: 35px;
  cursor: pointer;
  z-index: 100;
  -webkit-transition: opacity .25s ease;
  transition: opacity .25s ease;
}
@media all and (max-width: 768px) {
.button_container {
  right: 9%;
  top:52px; /*スマホの上のアキ*/
}
}
.button_container:hover {
  opacity: .7;
}
.button_container.active .top {
  -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
          transform: translateY(11px) translateX(0) rotate(45deg);
  background: #f0f0f0; /*  × 　*/
}
.button_container.active .middle {
  opacity: 0;
  background: #f0f0f0;
}
.button_container.active .bottom {
  -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
          transform: translateY(-11px) translateX(0) rotate(-45deg);
  background: #f0f0f0;
}
.button_container span {
	background: #737373; /* 三　 #004927  rgba(0, 73, 39, 1);　*/
	border: none;
	height: 2px;
	width: 100%;
	position: absolute;
	top: -1px;
	left: 0;
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
	cursor: pointer;
}
.button_container span:nth-of-type(2) {
  top: 11px;
}
.button_container span:nth-of-type(3) {
  top: 22px;
}

.overlay {
  position: fixed;
  z-index: 20;
  /*  background: rgba(196, 179, 167, 0.84); 　これbackground: rgba(196, 179, 167, 0.7);　 */
	background-image:url(bg_nv2.jpg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .35s, visibility .35s, height .35s;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden;
-}
.overlay.open {
  opacity: .9;
  visibility: visible;
  height: 100%;
}
.overlay.open li {
  -webkit-animation: fadeInRight .5s ease forwards;
          animation: fadeInRight .5s ease forwards;
  -webkit-animation-delay: .35s;
          animation-delay: .35s;
}
.overlay.open li:nth-of-type(2) {
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}
.overlay.open li:nth-of-type(3) {
  -webkit-animation-delay: .45s;
          animation-delay: .45s;
}
.overlay.open li:nth-of-type(4) {
  -webkit-animation-delay: .50s;
          animation-delay: .50s;
}
.overlay nav {
  position: relative;
  height: 70%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 2.42em;
  font-family: 'Fjalla One', sans-serif;
  text-align: center;
  text-transform:uppercase;
  letter-spacing:0.05em;
}
.overlay nav span {
  font-size: 0.63em; margin-right: 0.5em; letter-spacing:0;
}
@media all and (max-width: 768px) {
.overlay nav { 
font-size: 1.42em;
letter-spacing:0.07em;
line-height:1.1;}
.overlay nav span { font-size: 0.76em;}
}

.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}
.overlay ul li {
  display: block;
  height: 10%;
  height: calc(100% / 9);
  min-height: 50px;
  position: relative;
  opacity: 0;
}
.overlay ul li a {
  display: block;
  position: relative;
  color: rgba(0, 0, 0, 1.0); /*  2018_01--rgba(255, 255, 255, 1.0) #103c85 #0484b3 #00a7c4 #00a7c4 #000054 #0560b5 #000054*/
  text-decoration: none;
  overflow: hidden;
}
.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
  width: 100%;
}
.overlay ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1px;
  background: #8f8f8f;
  -webkit-transition: .35s;
  transition: .35s;
}

.overlay-menu p { font-family: 'Titillium Web', sans-serif; font-weight:700; font-size:0.72em; letter-spacing:0.27em; color: rgba(255, 255, 1255, 1.0); margin:3px; text-align:center; text-transform:none; line-height:1.0; }  /*#dbd6a4  rgba(201, 183, 145, 0.7) */

@media all and (max-width: 768px) {
.overlay ul li a { font-weight:bold; }
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
