@charset "utf-8";

/**====================================
 * CSS information
 * file name	: navi.css
 * author		: CPRC WORKS
====================================**/


/***pc menu***/
.gnavi__pc-style {
  margin: 0 0 0 auto;
}
.gnavi__pc-style ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gnavi__pc-style ul li:not(:last-of-type) {
  margin-right: 2em;
}

/*** humburger Menu ***/
.gnavi__sp-style {
  display: none;
}

@media screen and (max-width: 1080px) {
.gnavi__pc-style {
  display: none;    
}
.gnavi__sp-style {
  display: block;
}
	.header__inner{
		height: 90px;
		padding: 10px;
	}

	.header__inner img{
		width: 70%;
	}

/*--before--*/
.menu-btn {
  display : block;
  position: fixed;
  z-index : 3;
  right : 30px;
  top   : 20px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.menu-btn span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #ffffff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.menu-btn span:nth-of-type(1) {
  top: 10px;
}
.menu-btn span:nth-of-type(2) {
  top: 20px;
}
.menu-btn span:nth-of-type(3) {
  top: 30px;
}
  
/*--after--*/
.menu-btn.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}
.menu-btn.active span:nth-child(2),
.menu-btn.active span:nth-child(3) {
  top: 16px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

/***sp menu***/
.gnavi__sp-style {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #fff;
  background-color:#5F5955;
  text-align: center;
  width: 100%;
	height: 100vh;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
	display: flex;
	align-items: center;
  visibility: hidden;
}
.gnavi__sp-style ul {
  margin: 0 auto;
  padding: 0;
  min-width: calc(100% - 10em);
}
.gnavi__sp-style ul li {
  list-style-type: none;
  padding: 0.5em;
  width: 100%;
  transition: .4s all;
}

.gnavi__sp-style ul li:first-child{
  padding-bottom: 4em;
}
.gnavi__sp-style ul li:last-of-type {
  padding-bottom: 0;
}

.gnavi__sp-style ul li:hover{
  
}
.gnavi__sp-style ul li a {
  display: block;
  color: #fff;
  text-decoration :none;
}
.gnavi__sp-style.active {
  opacity: 1;
  visibility: visible;
}
}