@charset "UTF-8";

/*開閉用ボタン（ハンバーガーボタン）*/
.menu-btn {
   position: fixed;
   top: 0;
   right: 0;
   width: 100px;
   height: 100px;
   border: none;
   cursor: pointer;
   z-index: 9999!important;
	background: #1f518e;
	font-family: "Jost", "Noto Sans JP", serif;
}


.menu-btn,
.menu-btn span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

.menu-btn span {
  position: absolute;
  left: 25%;
  width: 50%;
  height: 1px;
  background-color: #FFF;
}
.menu-btn span:nth-of-type(1) {
  top: 22px;
}

.menu-btn span:nth-of-type(2) {
  top: 31px;
}

.menu-btn::after {
  position: absolute;
  left: 0;
  bottom: 14px;
  content: 'MENU';
  display: block;
  width: 100%;
  color: #FFF;
  font-size: 0.7rem;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: all .4s;
}
	
.open .menu-btn::after {
  content: 'CLOSE';
}
.open .menu-btn span:nth-of-type(1) {
  transform: translateY(4px) rotate(-45deg);
}

.open .menu-btn span:nth-of-type(2) {
  transform: translateY(-4px) rotate(45deg);
}


/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu {
-webkit-transition: all .5s;
transition: all .5s;
visibility: visible;
opacity: 1;
}
.open .menu-btn {
border-color: #1f518e;
}
.open .menu-btn-line{
background-color: transparent;
}
.open .menu-btn-line::before,
.open .menu-btn-line::after {
top: 0;
background: #fff
}
.open .menu-btn-line::before {
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
.open .menu-btn-line::after {
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
}


/**** MENU CONTENTS SETTING *****/
.menu {
position: fixed;
justify-content: center;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:rgba(31,81,142,0.90);
-webkit-transition: all .5s;
transition: all .5s;
visibility: hidden;
opacity: 0;
z-index: 100;
overflow-y: scroll;
margin: 0;
padding: 0;
}





@media screen and (max-width: 767px) {


.menu-btn {
   position: fixed;
   top: 0;
   right: 0;
   width: 70px;
   height: 70px;
   border: none;
   cursor: pointer;
   z-index: 9999!important;
}
	
.menu-btn span:nth-of-type(1) {
  top: 20px;
}

.menu-btn span:nth-of-type(2) {
  top: 28px;
}

.menu-btn::after {
  position: absolute;
  left: 0;
  bottom: 10px;
  content: 'MENU';
  display: block;
  width: 100%;
  color: #FFF;
  font-size: 0.6rem;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: all .4s;
	letter-spacing: 1px;
}
		
	
	
/**** MENU CONTENTS SETTING *****/
.menu .category {
	width: 80%;
	margin: auto;
	text-align: center;
	position: relative;
	top: 5%;
	left: 0;
}

.menu h1 a{
	color:#FFF;
}
	
.menu .category ul {
	margin: 6.0rem auto;
	width: 100%;
}
	

.menu .category li {
	margin-bottom: 1.5rem;
	line-height: 1.4;
}

.menu .category li a {
	display: block;
	padding: 5px 0;
	width: auto;
	color:#FFF;
}

	
}