@charset "utf-8";
/*　ハンバーガーメニューボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 20px;
  top   : 15px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
@media (min-width:768px){
	.hamburger {
	  display : none;
	}
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #333;
	border-radius: 5px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :#246DE5;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background :#246DE5;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}
/* ハンバーガーメニュー閉じている時の中身 */
nav.sp_menu {
  position: fixed;
  z-index : 2;
  top  : 0;
  right : 0;
  color: #333;
  /*background: rgba( 71,70,73,0.6 );*/
  text-align: center;
  width: 100%;
	min-height: 100vh;
  transform: scale(0,0);
  transition: all .4s;
  opacity: 0;
}
/* クリックでjQueryで追加・削除 */
/* ハンバーガーメニュー開いた時の中身 */
nav.sp_menu.active {
	top  : 0;
	left : 0;
	display: block;
	transform: scale(1,1);
	background: rgba(228,235,249,1);
	opacity: 1;
}
nav.sp_menu .sp_menu_logo {
	margin: 0 auto;
	width: min(80%,300px);
	padding-top: 60px;
  }
nav.sp_menu ul {
  margin: 0 auto;
  padding: 20px 0 0;
  width: 100%;
	height: 100vh;
	overflow-y: scroll;
}
nav.sp_menu ul li{
	padding: 11px 0;
	font-size: 1.7rem;
}
nav.sp_menu ul li a:hover {
	opacity: 1;
}

nav.sp_menu ul li:nth-child(4){
	margin-top: 10px;
}
.sp_menu_01{
	position: relative;
	width: 230px;
	margin: 0 auto;
	text-align: left;
	padding-left: 20px!important;
	border-bottom: 1px solid #ccc;

	a{
		display: block;
		width: 100%;
	}
}
.sp_menu_01 a:after{
	display: inline-block;
	content: "";
	position: absolute;
	background-image: url("../images/common/png_05.png");
	width: 16px;
	height: 16px;
	background-size: 16px;
	top: 19px;
	right: 20px;
	transition: all .3S;
	background-repeat: no-repeat;
}
.sp_menu_02{
	position: relative;
	background-color: #2BAEA3;
	padding: 5px 52px 5px 61px; 
	color: #fff;
	border-radius: 50px;
}
.sp_menu_02:before{
	display: inline-block;
	content: "";
	position: absolute;
	background-image: url("../images/common/png_02.png");
	width: 30px;
	height: 20px;
	background-size: 30px;
	top: 7px;
	left: 12px;
	transition: all .3S;
	background-repeat: no-repeat;
}
.sp_menu_02:after, .sp_menu_03:after{
	display: inline-block;
	content: "";
	position: absolute;
	background-image: url("../images/common/png_03.png");
	width: 12px;
	height: 12px;
	background-size: 12px;
	top: 10px;
	right: 12px;
	transition: all .3S;
	background-repeat: no-repeat;
}
.sp_menu_03{
	position: relative;
	background-color: #246DE5;
	padding: 5px 35px 5px 45px; 
	color: #fff;
	border-radius: 50px;
}
.sp_menu_03:before{
	display: inline-block;
	content: "";
	position: absolute;
	background-image: url("../images/common/png_04.png");
	width: 25px;
	height: 20px;
	background-size: 25px;
	top: 7px;
	left: 14px;
	transition: all .3S;
	background-repeat: no-repeat;
}
.sp_menu_04{
	position: relative;
	padding: 3px 0 3px 30px; 
	font-weight: 400;
	letter-spacing: .08em;
	font-size: 2.2rem;
}
.sp_menu_04:before{
	display: inline-block;
	content: "";
	position: absolute;
	background-image: url("../images/common/png_01.png");
	width: 22px;
	height: 22px;
	background-size: 22px;
	top: 6px;
	left: 0px;
	transition: all .3S;
	background-repeat: no-repeat;
}
nav.sp_menu ul li.sp_menu_05{
	padding: 3px 10px;
	max-width: 400px;
	margin: 0 auto;
}
/*スクロールバー全体*/
nav ul::-webkit-scrollbar {
    width: 3px;
}
/*スクロールバーの軌道*/
nav ul::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(228,235,249,1);
}

/*スクロールバーの動く部分*/
nav ul::-webkit-scrollbar-thumb {
  background-color: rgba(176,176,176 .9);
  border-radius: 8px;
  box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}
