@charset "UTF-8";
/*
:::::::::::::::::::
　パンくずリスト
:::::::::::::::::::
*/
#pan {
    margin: 0;
    padding: 0;
	background-color: #e8e8e8;
    height: 40px;
}

#pan ul.bread_crumb {
    margin-left: 60px;
    height: 30px;
	padding-top: 10px;
}
#pan ul.bread_crumb::after {
	content: "";
}
#pan ul.bread_crumb li ,
#pan ul.bread_crumb li a {
	color: #000;
	font-size: 14px;
}
#pan ul.bread_crumb li {
    float: left;
    margin-left: 10px;
    list-style: none outside none;
}
#pan ul.bread_crumb li:after {
    content : '>';
    padding-left: 10px;
}
#pan ul.bread_crumb li:last-child:after {
    content : '';
}
#pan ul.bread_crumb::after
{
	content: "";
	display: block;
	clear: both;
}



/*
:::::::::::::::::::
　スマホメニュー
:::::::::::::::::::
*/

header .bar a.sp-menu ,
header .bar a.sp-menu span {
/*  display: inline-block;*/
  transition: all .6s;
  box-sizing: border-box;
}
header .bar a.sp-menu {
  position: absolute;
  right: 0;
  width: 80px;
  height: 80px;
  background-color: #dcdcdc;    /* メニューボタンカラー f000 ⇒　変更 */
}
header .bar a.sp-menu span {
  position: absolute;
  right: 15px;
  width: 50px;
  height: 4px;
  background-color: #fff;
  border-radius: 3px;
}
/*開店前*/
header .bar a.sp-menu span:nth-of-type(1) {
  top: 25px;
}
header .bar a.sp-menu span:nth-of-type(2) {
  top: 40px;
}
header .bar a.sp-menu span:nth-of-type(3) {
  top: 55px;
}
/*回転後*/
header .bar a.sp-menu.active span:nth-of-type(1) {
  -webkit-transform: translateY(15px) rotate(-315deg);
  transform: translateY(15px) rotate(-315deg);
}
header .bar a.sp-menu.active span:nth-of-type(2) {
  opacity: 0;
}
header .bar a.sp-menu.active span:nth-of-type(3) {
  -webkit-transform: translateY(-15px) rotate(315deg);
  transform: translateY(-15px) rotate(315deg);
}