@charset "utf-8";
/* ------------------------------------------------------------

share.css

------------------------------------------------------------ */


.wrap {
	overflow:hidden;
}



/* bread
------------------------------------------------------------ */

#bread {
	display:none;
	width:100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
#bread::-webkit-scrollbar {
  display: none;
}
#bread ul{
	max-width:1600px;
	margin:0 auto;
	padding:10px 2.5%;
	max-width: none;
	white-space: nowrap;
}
#bread li{
	display:inline-block;
	padding:0 2em 0 1em;
	font-size:1.2rem;
	line-height:1.5;
	font-family:"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro","游ゴシック Medium",YuGothic,YuGothicM,メイリオ,Meiryo,sans-serif;
	color:#fff;
	position:relative;
}
#bread li:first-child{
	padding-left:0;
}
#bread li::after{
    content: "／";
    display: block;
	position:absolute;
	top:0;
	right:0;
}
#bread li:last-child::after{
    display: none;
}
#bread li a{
	letter-spacing:0.05em;
	color:#fff;
	display:inline-block;
	text-decoration:none;
	position:relative;
}
#bread li a:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #999;
    position: absolute;
    bottom:-5px;
    left: 0;
    right: 0;
    margin: auto;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
}
#bread li a:hover:before {
    transform: scale(1, 1);
}
#bread li:last-child{
	margin-right:0;
	background:none;
}
@media print, screen and (min-width: 540px) {
	#bread {
		display:block;
	}
}


/* btn
------------------------------------------------------------ */

.btn {
	width:280px;
	padding:10px;
	text-align:center;
	color:#fff;
	background:#000;
	border:1px solid #434546;
}


/* pagetop
------------------------------------------------------------ */
#pagetop {
	display:block;
	width:27px;
	position:fixed;
	bottom:70px;
	right:3px;
	z-index:100;
}
@media print, screen and (min-width: 769px) {
	#pagetop {
		bottom:10px;
	}
}


/* footerNav
------------------------------------------------------------ */
#footerNav {
	display:block;
	width:100%;
	background:#a78b47;
	position:fixed;
	bottom:0;
	left:0;
	z-index:100;
}
#footerNav ul {
	display:-webkit-box;
	display:flex;
}
#footerNav ul li{
	width:100%;
	height:65px;
	position:relative;
}
#footerNav ul li::after{
	display:block;
	content:"";
	width:1px;
	height:70%;
	margin:auto 0;
	background:#000;
	position:absolute;
	top:0;
	bottom:0;
	left:0;
}
#footerNav ul li a {
	display:block;
	padding-top:35px;
	font-size:1.5rem;
	line-height:1;
	letter-spacing:0;
	text-align:center;
	color:#000;
	text-decoration:none;
}
#footerNav ul li a.reserv {
	background:url(../img/share/icon_cal.png) no-repeat top 10px left 50%;
	background-size:22px auto;
}
#footerNav ul li a.tel {
	background:url(../img/share/icon_tel.png) no-repeat top 10px left 50%;
	background-size:18px auto;
	filter: brightness(0);
}

#footerNav ul li:first-child::after{
	display:none;
}

@media print, screen and (min-width: 769px) {
	#footerNav {
		display:none;
	}
}