@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

/*ナビボタン---ここから---*/
.menu-btn{
  position: fixed;
  top: 0;
  right: 0;
  text-align: center;
  width: 60px;
  height: 60px;
  border-radius: 0;
  z-index: 9999;
  cursor: pointer;
}

#menu-trigger,
#menu-trigger span{
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
  z-index: 9000;
}
#menu-trigger{
  position: relative;
  width: 40px;
  height: 25px;
  top: 12px;
}
#menu-trigger span{
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}
#menu-trigger span:nth-of-type(1){
  top:0;
}
#menu-trigger span:nth-of-type(2){
  top:12px;
}
#menu-trigger span:nth-of-type(3){
  bottom:0px;
}
#menu-title {
    color: #fff;
    font-size: 1.2rem;
    margin: 5px 0 0 0;
}

.open #menu-trigger span:nth-of-type(1) {
			top: 10px;
		   -webkit-transform: rotate(135deg);
			-moz-transform: rotate(135deg);
			transform: rotate(135deg);
		}
		.open #menu-trigger span:nth-of-type(2) {
			width: 0;
			left: 50%;
		}
		.open #menu-trigger span:nth-of-type(3) {
			top: 10px;
			-webkit-transform: rotate(-135deg);
			-moz-transform: rotate(-135deg);
			transform: rotate(-135deg);
		}

/*ここまで*/
/*ナビメニュー---ここから---*/
nav{
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  top:0px;
  padding-top: 10%;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.3em;
  background:rgba(133,109,175,0.95);
  z-index: 8000;
}
nav ul{
  padding-left: 0px;
}
nav ul li{
  list-style: none;
  line-height: 3;
}

nav ul li a{
  font-size: 2.4rem;
  display: inline-block;
  position: relative;
  text-decoration: none;
}
nav ul li a::before,
nav ul li a::after{
  display: none;
}
nav ul li a:link    {text-decoration: none; color:#fff;}
nav ul li a:visited {text-decoration: none; color:#fff;}
nav ul li a:hover   {text-decoration: none; color:#000;}
nav ul li a:active  {text-decoration: none; color:#fff;}
nav ul li a i{
	font-size: 4.5rem;
    margin-top: 0.5em;
}
nav ul li a img{
	width: auto;
	height: 0.9em;
	vertical-align: middle;
}

/*ここまで*/