@charset "UTF-8";

/*開閉用ボタン（ハンバーガーボタン）*/
.menu-btn {
   position: fixed;
   top: 0;
   right: 0;
   width: 80px;
   height: 80px;
   border: none;
   cursor: pointer;
   z-index: 9999!important;
	background: #1f518e;
	font-family: "Barlow",'Noto Sans JP', sans-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: 15px;
  content: 'MENU';
  display: block;
  width: 100%;
  color: #FFF;
  font-size: 0.8rem;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: all .4s;
	letter-spacing: 2px;
}
	
.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(43,48,54,0.95);
-webkit-transition: all .5s;
transition: all .5s;
visibility: hidden;
opacity: 0;
z-index: 100;
overflow-y: scroll;
margin: 0;
padding: 0;
}

header .img_box img {
	width: 100%;
}

header .cat_box {
	width: 70%;
	margin: 100px auto 0;
	background: url("../images/common/img_CI_H.png") no-repeat top right;
	background-size: 12%;
}

header .cat {
	width: 30%;
	float: left;
	margin-right: 5%;
}

header .category {
	margin-bottom: 80px;
}

header .cat_ttl {
	font-size: 0.8rem;
}

header .category ul {
	list-style-type: none;
	margin: 30px auto 30px 30px;
	width: 100%;
}

header .sideline_blue {
	border-left: 1px solid #7ecef4;
	padding-left: 20px;
}
header .sideline_orange {
	border-left: 1px solid #ff9226;
	padding-left: 20px;
}

header .category li {
	position: relative;
	width: 92%;
	clear: both;
	margin-bottom: 15px;
}

header .category li a {
	display: block;
	color: #FFF;
	width: auto;
}

header .category .btn {
	margin-left: 50px;
	width: 80%;
}


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


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

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

.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 *****/
	
	
header .cat_box {
	width: 80%;
	margin: 50px auto 0;
	background: url("../images/common/img_CI_H.png") no-repeat top right;
	background-size: 18%;
	padding-bottom: 80px;
}

header .cat {
	width: 100%;
	float: none;
	margin-right: 0%;
}

header .category {
	margin-bottom: 30px;
}

header .cat_ttl {
	font-size: 0.8rem;
}

header .category ul {
	list-style-type: none;
	margin: 15px auto 30px 30px;
	width: 100%;
}

header .sideline_blue {
	border-left: 1px solid #7ecef4;
	padding-left: 20px;
}
header .sideline_orange {
	border-left: 1px solid #ff9226;
	padding-left: 20px;
}

header .category li {
	position: relative;
	width: 92%;
	clear: both;
	margin-bottom: 15px;
}

header .category li a {
	display: block;
	color: #FFF;
	width: auto;
}
	
header .category .btn {
	width: 100%;
	margin: auto;
}

}