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

#header-sp{ background:rgba(255,255,255,.9); width:100%; height:60px; z-index: 999; top:0; transition: 0.7s ease; position: fixed;}
#header-sp #logo-sp{ padding:8px 10px 0;}
#header-sp #logo-sp a{ display: inline-block; text-decoration: none;}
#header-sp #logo-sp a img{ height:40px; vertical-align: middle; margin-right:0px;}
#header-sp #logo-sp a p{ font-size:20px; font-weight: bold; color:#ee7673; line-height: 1em; display: inline-block; vertical-align: middle; font-family: "Zen Maru Gothic", serif;}
#header-sp #logo-sp a p span{ font-size:11px; font-weight: 500; color:#595757; display: block; line-height: 1.8em; margin-left: 3px;}


/*============
ナビ
#navArea
=============*/
#navArea{ position:relative; z-index:999;}
#navArea .h2-01{ font-size:22px; margin-bottom:0px;}
#navArea .h2-01 span { background: url(../images/common/h2-icon.png) left 18px no-repeat; background-size:22px auto; padding-left:35px;}
#navArea .inner{ position:relative; z-index:999;}


#navArea .inner .area-01{ text-align:center; padding-top:20px;}
#navArea .inner .area-01 h2{ font-size:18px; font-weight:500; border-bottom:1px solid #7ac480; padding-bottom:10px; margin:0 20px 10px;}
#navArea .inner .area-01 .p-tel{ font-size:36px; font-weight:bold; line-height:1em; display:inline-block;}
#navArea .inner .area-01 .p-tel a{ background:url("../images/common/ico-tel.png") left 6px no-repeat; color:#eca09e; display:block; text-decoration:none; padding-left:30px; background-size:auto 30px; font-family: "Zen Maru Gothic", serif;}
#navArea .inner .area-01 .p-01{ font-size:15px; font-weight: 500; letter-spacing:normal; margin-bottom:5px; font-family: "Zen Maru Gothic", serif;}
#navArea .inner .area-01 .p-02{ font-size:14px; letter-spacing:normal; padding:5px 0 20px;}

#navArea .inner .area-01 .btn{ width:300px; margin:auto;}
#navArea .inner .area-01 .btn a{ background:#eca09e url(../images/common/arrow.png)right 30px top 50% no-repeat; font-size:16px; font-weight:bold; color:#fff; display:block; text-decoration:none; padding:20px 60px 20px 50px; text-align:center; border-radius:50px; border:1px solid #eca09e;}
#navArea .inner .area-01 .btn a span{ background:url(../images/common/ico-mail.png)left 7px no-repeat; display: inline-block; padding-left: 27px; background-size:20px auto; transition:.5s;}
#navArea .inner .area-01 .btn a:hover{ background:#fff url(../images/common/arrow-pink.png)right 25px top 50% no-repeat; color:#eca09e; display:block; opacity:1;}
#navArea .inner .area-01 .btn a:hover span{ background:url(../images/common/ico-mailon.png)left 7px no-repeat; background-size:20px auto;}


#navArea .inner .sns{ text-align: center; padding:25px 0 20px;}
#navArea .inner .sns a{ display: inline-block; margin-right: 20px;}
#navArea .inner .sns img{ height:27px;}
#navArea .inner .sns a:last-child{ margin-right: 0;}


nav {
  display: block;
  position: fixed;
  top:60px;/*上からの距離*/
  right: -430px;/*左から出すか右から出すか*/
  bottom: 0;
  width:100%;
  background: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 20;
  opacity: 0;
}
.open nav {
  right: 0;  /*左から出すか右から出すか*/
  opacity: 1;
  top:60px;
}
nav .inner ul {
  list-style: none;
  margin:0 0 0px;
  padding: 0;
}
nav .inner ul li {
  position: relative;
  font-family: "Zen Maru Gothic", serif;
}
nav .inner ul li a {
  display:block;
  color: #595757;
  font-size:15px;
  font-weight:600;
	line-height:3.5;
	padding: 0 0 0 1.5em;
  text-decoration: none;
  transition-duration: 0.2s;
  position:relative;
	border-bottom:1px solid #efefef;
}
  

/*============
メニュー（3本線）
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  position: fixed;
  top: 0px;
  right: 0px;
  width: 60px;
  height: 60px;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 15px;
  width: 30px;
  height:3px;
  background:#eca09e;
  border-radius:15px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top:20px;
}
.toggle_btn span:nth-child(2) {
  top: 30px;
}
.toggle_btn span:nth-child(3) {
  top: 40px;
}
.open .toggle_btn span {
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);}


/*============
背景（マスク）
#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;}


.tab-area input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.tab-area label {
	font-weight: bold;
	line-height:3.5;
	position: relative;
	display: block;
	padding: 0 0 0 1.4em;
	cursor: pointer;
	margin: 0 0 0px 0;
	background: #fff;
	border-bottom:1px solid #efefef;
	font-weight:600;}
.tab-area label a{ display:block; text-decoration:none; color:#333;}
	
	
.tab-area .entry {
	overflow: hidden;
	max-height: 0;
	-webkit-transition: max-height 0.35s;
	transition: max-height 0.35s;
	color: #333333;
	background: #efefef;
}
.tab-area .entry p {
	font-size:15px;
	border-bottom:1px solid #e1e1e1;
}
.tab-area .entry p a{
	padding:12px 35px;
	text-decoration:none;
	color:#333;
	display:block;}
.tab-area .entry p a:last-child{
	border-bottom:none;}
/* :checked */
.tab-area input:checked ~ .entry {
	max-height:500px;
}
/* Icon */
.tab-area label::after {
	line-height: 3;
	position: absolute;
	top:0px;
	right: 0;
	display: block;
	width: 4em;
	height:3em;
	-webkit-transition: all 0.35s;
	transition: all 0.35s;
	text-align: center;
	font-size:16px;
}
.tab-area input[type=checkbox] + label::after {
	content: '＋';
}
.tab-area input[type=checkbox]:checked + label::after {
	content: '－';
}