/*▼ ハンバーガーメニュー  ここから▼*/

#header-sp{ width:100%; height:80px; z-index: 999; top:0; transition: 0.7s ease; position: fixed; transition:.5s; transition-timing-function:cubic-bezier(.4,0,.2,1);}
#header-sp #logo-sp{ padding:10px 12px 0;}
#header-sp #logo-sp .left { display:inline-block;}
#header-sp #logo-sp .left a{ display:inline-block; text-decoration:none; transition:0.5s ease-out; transition-timing-function:cubic-bezier(.4,0,.2,1);}
#header-sp #logo-sp .left a{ display:block; overflow:inherit;}
#header-sp #logo-sp .left a img{ vertical-align: middle; margin-right:8px; position: relative; top:2px; height:42px;}


/*切り替え*/
#header-sp.bk-white{ background:rgba(255,255,255,.5); backdrop-filter:blur(2px); -webkit-backdrop-filter:blur(2px);}



/*============
ナビ
#navArea
=============*/
#navArea{ position:relative; z-index:999;}
#navArea .inner{ position:relative; z-index:999; padding:80px 20px 120px; overflow:scroll;}


#navArea .inner .area-01{ text-align: center;}
#navArea .inner .area-01 .p-01 { font-size:20px; font-weight:500; margin-bottom:5px; font-family: "M PLUS 1 Code", monospace;}
#navArea .inner .area-01 .p-tel{ font-size:32px; font-weight:bold; letter-spacing:-1px; display: inline-block; line-height:1em; margin:0 0 10px; vertical-align:middle; padding-top:5px; border-top:5px dotted #fc80af;}
#navArea .inner .area-01 .p-tel a{ background:url("../images/common/ico-tel.png") left 8px no-repeat; color:#eb6fa5; display:inline-block; text-decoration:none; padding-left:23px; font-family: "M PLUS Rounded 1c", sans-serif;}



#navArea .inner .fixd{ background:url(../images/common/bt-top.png); width: 100%; text-align: center; padding:20px 40px; position:fixed; left:0; bottom:0; box-sizing:border-box;}

#navArea .inner .fixd .btn{ padding:0px 0px; text-align: center; margin-top:10px; font-family: "M PLUS 1 Code", monospace;}
#navArea .inner .fixd .btn a{ background:url(../images/common/ico-onpu.png),linear-gradient(to right, #fc80af, #ffb5d1); background-position:15px 20px,0 0; background-repeat: no-repeat; font-size:16px; font-weight: bold; color:#fff; border-radius:20px; padding:10px 0 10px; text-decoration: none; display: block; position: relative;}
#navArea .inner .fixd .btn a img{ position: absolute; right:15px; top:25px;}



nav {
  display: block;
  position: fixed;
  top:0px;/*上からの距離*/
  right:0px;/*左から出すか右から出すか*/
  bottom: 0;
  width:100%;
  background: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  transition-timing-function:cubic-bezier(.4,0,.2,1);
  z-index: 20;
  opacity: 0;
  pointer-events: none;
}
.open nav {
  right: 0;  /*左から出すか右から出すか*/
  opacity: 1;
  top:0px;
  pointer-events:auto;
}
nav .inner ul {
  list-style: none;
  margin:30px 0 40px;
  padding: 0;
}
nav .inner ul li {
   padding-left:15px;
   margin-bottom:15px;
}
nav .inner ul li a {
  display:block;
  color: #333;
  font-size:14px;
  font-weight:500;
	line-height:1.5;
  text-decoration: none;
}
nav .inner .ul-01 {
  margin-top: 0;
}
nav .inner .ul-01 li {
  position: relative;
	border-bottom:1px solid #ffc9c9;
  padding-left:0;
  margin-bottom: 0;
  letter-spacing: 3px;
  font-family: "M PLUS 1 Code", monospace;
}
nav .inner .ul-01 li a {
  font-size:19px;
  font-weight:500;
	line-height:1.5;
	padding:20px 0 20px 15px;
  transition-duration: 0.2s;
  position:relative;
}
nav .inner .ul-01 li a img{ margin-right:15px;}

  

/*============
メニュー（3本線）
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  position: fixed;
  top: 0px;
  right: 0px;
  width: 80px;
  height: 80px;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 25px;
  width:36px;
  height:2px;
  background:#fc80af;
  transition:.5s;
}
.toggle_btn span:nth-child(1) {
  top:35px;
}
.toggle_btn span:nth-child(2) {
  top: 47px;
  width:25px;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(5px) rotate(-45deg);
  transform: translateY(5px) rotate(-45deg);
}
.open .toggle_btn span:nth-child(2) {
  -webkit-transform: translateY(-7px) rotate(45deg);
  transform: translateY(-7px) rotate(45deg);
  width:36px;}

.open #header-sp{ background: none;}
.open #header-sp #logo-sp{ display: none;}

/*============
背景（マスク）
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: .7;
  z-index: 2;
  cursor: pointer;}
