

/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/

html,body{
	height: 100%;
}
html{
	font-size: 62.5%;
}

body, h1, h2, h3, h4, h5, h6, p, address,ul, ol, li, dl, dt, dd,table, th, td, img, form {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	list-style-type: none;
	font-style: normal;
	font-weight: normal;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	text-align: left;
	color: #321f12;
	letter-spacing: 3px;
	-webkit-text-size-adjust: 100%;
}

a{
	text-decoration: none;
	color: #321f12;
}
a:hover{
	opacity: 0.5;
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	-webkit-transition: 0.7s ease-in-out;
	-moz-transition: 0.7s ease-in-out;
	-o-transition: 0.7s ease-in-out;
	transition: 0.7s ease-in-out;
}
div,h1,h2,h3,h4,h5,h6,p,dl,dt,dd,ol,ul,li,form,input,textarea,button,table,tr,th,td,article,aside,footer,header,hgroup,nav,section,a,span,img{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
body{
	width: 100%;
	word-break: break-all;
	-webkit-appearance: none;
	-webkit-text-size-adjust: 100%;
}
h1,h2,h3,h4,h5,p{
	text-align: justify;
	text-justify: distribute;
	line-height: 1.5;
}
p img{
	vertical-align: bottom;
}
img{
	max-width: 100%;
}
input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
    display: none;
}

.aligncenter{
    display: block;
    margin: 0 auto;
}

.alignright{
	float: right;
}

.alignleft{
	float: left;
}

.wrap{
	width: 95%;
	max-width: 1200px;
	margin: auto;
}
.flex{
	display: flex;
	display: -webkit-flex;
	display: -ms-flex;
}
.flexwrap_wrap{
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}
.flexdirection_column{
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.aligncontent_spacebetween{
	-webkit-align-content: space-between;
	        align-content: space-between;
}
.justifycontent_flexend{
	-webkit-justify-content: flex-end;
	        justify-content: flex-end;
}
.justifycontent_center{
	-webkit-justify-content: center;
	        justify-content: center;
}
.justifycontent_spacebetween{
	-webkit-justify-content: space-between;
	        justify-content: space-between;
}
.justifycontent_spacearound{
	-webkit-justify-content: space-around;
	        justify-content: space-around;
}
.alignitems_center{
	-webkit-align-items: center;
	        align-items: center;
}
.alignitems_flexend{
	-webkit-align-items: flex-end;
	        align-items: flex-end;
}
.alignitems_flexstart{
	-webkit-align-items: flex-start;
	        align-items: flex-start;
}
.txt{
	font-size: 1.4rem;
}

.sp{
	display: none;
}
.tac p{
	text-align: center;
}
.sentence{
	width: 100%;
}
.sentence p{
	font-size: 1.4rem;
	line-height: 2;
	letter-spacing: 0;
	font-family: 'Noto Sans JP', sans-serif;
}
.mb15em{
	margin-bottom: 1.5em;
}
.mb32{
	margin-bottom: 32px;
}
.mb60{
	margin-bottom: 60px;
}
.mb70{
	margin-bottom: 70px;
}
.mb100{
	margin-bottom: 100px;
}
.mb120{
	margin-bottom: 120px;
}
.mb150{
	margin-bottom: 150px;
}
.ml80{
	margin-left: 80px;
}

/*header*/
.header{
	position: relative;
	width: 100%;
	height: 100px;
}
h1{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 203px;
	margin: auto;
	z-index: 5;
}
h1 a{
	display: block;
}
/*nav*/
.btn_menu{
	position: fixed;
	top: 28px;
	left: 28px;
	width: 40px;
	height: 36px;
	margin: auto;
	z-index: 10;
}
.toggle{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	cursor: pointer;
	z-index: 10;
}
.toggle span{
	display: inline-block;
	transition: all .5s cubic-bezier(0.645, 0.045, 0.355, 1);
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	height: 4px;
	margin: auto;
	background-color: #321f12;
}
.toggle span:nth-of-type(1) {
	top: 0;
}
.toggle span:nth-of-type(2) {
	top: 0;
	bottom: 0;
}
.toggle span:nth-of-type(3){
	bottom: 0;
}
.toggle.active span:nth-of-type(1) {
	transform: translateY(9px) rotate(135deg);
}
.toggle.active span:nth-of-type(2) {
	opacity: 0;
}
.toggle.active span:nth-of-type(3) {
	top: 3px;
	transform: translateY(-9px) rotate(-135deg);
}
body.fixed{
	overflow: hidden;
}
body.fixed .nav_overlay{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: url(../image/bg_nav.png);
	z-index: 5;
	overflow: hidden;
}
.nav{
	position: fixed;
	top: 0;
	left: 0;
	display: none !important;
	width: 100%;
	max-width: 500px;
	height: 100vh;
	padding: 95px 36px 90px;
	background: #fff;
	-webkit-overflow-scrolling:touch;
	overflow-y: auto;
	z-index: 5;
}
.nav.on{
	display: block !important;
}
.nav li a{
	display: block;
	width: 100%;
	font-size: 1.4rem;
	line-height: 2;
}
.nav li.nav_logo{
	text-align: center;
}
.nav li.icon_arrow a{
	position: relative;
	padding-left: 1.5em;
	font-size: 2rem;
}
.nav li.icon_arrow a:after{
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 1em;
	height: 1em;
	margin: auto;
	background: url(../image/icob_arrow_right.png) no-repeat center center;
	-webkit-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
}
.nav li > ul{
	padding: 1.5em 0 1.5em 3em;
}
.nav li > ul > li:first-child{
	margin-bottom: 0.5em;
	font-size: 2rem;
}
.nav li > ul > li.icon_arrow a{
	font-size: 1.8rem;
}
.nav > ul.flex{
	margin-top: 30px;
}
.edge .nav > ul.flex{
	margin-bottom: 30px;
}
.nav > ul.flex li{
	margin-right: 5%;
}
.nav > ul.flex li a{
	display: block;
}

/*common*/
.btn_more a{
	position: relative;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	width: 134px;
	height: 2.5em;
	padding: 0 0 0 1.5em;
	margin: 40px 0 0;
	font-size: 1.6rem;
	color: #B3A381;
	border: 1px solid #B3A381;
}
.btn_more a:after{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 1.5em;
	bottom: 0;
	width: 1em;
	height: 1em;
	margin: auto;
	background: url(../image/icob_arrow_right.png) no-repeat center center;
	-webkit-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
}
.floating_sns{
	display: flex;
	display: -webkit-flex;
	display: -ms-flex;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-align-items: center;
	        align-items: center;
	position: fixed;
	top: 0;
	right: 2%;
	bottom: 0;
	width: max-content;
	height: 38em;
	margin: auto;
	z-index: 3;
}
.floating_sns p a{
	display: block;
}
.floating_sns .fb,
.floating_sns .insta{
	margin-bottom: 28px;
}
.floating_sns .txt{
	font-size: 1rem;
	font-weight: lighter;
	color: #B3A381;
	-webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
/*footer*/
.footer{
	position: relative;
	padding: 130px 0 8px;
	background: #321f12;
}
.footer .wrap{
	position: relative;
	margin-bottom: 64px;
}
.footer_logo a{
	display: block;
	position: absolute;
	top: -80px;
	left: 0;
	right: 0;
	width: 203px;
	height: 162px;
	margin: auto;
}
.btn_pagetop a{
	display: block;
	position: absolute;
	top: 24px;
	right: 5%;
}
.footer .flex > ul{
	width: 64%;
}
.footer .flex > div{
	width: 36%;
}
.footer p.txt{
	margin-bottom: 24px;
	font-size: 1.6rem;
	color: #B3A381;
}
.footer ul li a{
	display: block;
}
.footer ul li.icon_arrow a{
	position: relative;
	padding-left: 1.5em;
	font-size: 2rem;
	color: #FFF;
	line-height: 2.25;
}
.footer ul li.icon_arrow a:after{
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 1em;
	height: 1em;
	margin: auto;
	background: url(../image/icob_arrow_right.png) no-repeat center center;
	-webkit-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
}
.footer ul li ul{
	margin: 4% 0 5% 1em;
}
.footer ul li ul li{
	width: 50%;
	margin-bottom: 3%;
	line-height: 1;
}
.footer ul li ul li:nth-child(2n){
	padding-left: 5%;
	border-left: 1px solid #fff;
}
.footer ul li ul li a{
	font-size: 1.6rem !important;
	line-height: 1 !important;
}
.footer ul li ul li.icon_arrow a:after{
	width: 0.8em;
	height: 0.8em;
}
.footer ul li div.flex{
	margin-bottom: 4%;
}
.footer ul li div.flex div{
	width: calc( 95% - 75px );
	margin-left: 5%;
	margin-bottom: 0;
}
.footer ul li.shop_item div.flex div{
	width: calc( 98% - 54px );
	margin-left: 2%;
}
.footer ul li p{
	font-size: 2rem;
	color: #FFF;
}
.footer ul li.shop_item p{
	font-size: 1.8rem;
}
.footer ul li p.catch{
	font-size: 1.4rem;
	color: #B3A381;
}
.footer p.image{
	width: 75px;
}
.footer li.shop_item p.image{
	width: 54px;
}
.footer .top_content{
	margin-bottom: 10%;
}
.footer .sns{
	position: absolute;
	right: 0;
	bottom: 0;
	width: auto !important;
}
.footer .sns li:first-child{
	margin-bottom: 30%;
}
.footer p.copy{
	font-size: 1.2rem;
	color: #B3A381;
	text-align: center;
}

/* ------------------------------
    clearfix
------------------------------ */

.cf:after{
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}
.cf{
	display: inline-block;
}

/* Hides from IE Mac */
* html .cf{
	height: 1%;
}
.cf{
	display: block;
}
/* End Hack */

@media screen and (max-width: 760px){
	.sp{
		display: block;
	}
	.pc{
		display: none;
	}
	body{
		min-width: inherit;
	}
	img{
		max-width: 100%;
		height: auto;
	}
	p{
		font-size: 1.2rem;
	}
	.wrap{
		width: 95%;
	}
	.sentence p{
		font-size: 1.2rem;
	}
	.mb60{
		margin-bottom: 5%;
	}
	.mb70{
		margin-bottom: 5%;
	}
	.mb100{
		margin-bottom: 10%;
	}
	.mb120{
		margin-bottom: 10%;
	}
	.mb150{
		margin-bottom: 15%;
	}

	/*header*/
	.header{
		height: 50px;
	}
	h1{
		width: 80px;
	}
	/*nav*/
	.btn_menu{
		top: 2%;
		left: 5%;
		width: 30px;
		height: 26px;
	}
	.toggle span{
		height: 2px;
	}
	.toggle.active span:nth-of-type(3) {
		top: 12px;
	}
	body.fixed .nav_overlay{
		background: #FFF;
	}
	.nav.on{
		padding: 1% 3% 30%;
		margin: 10%;
		width: 100%;
		margin: auto;
		-ms-overflow-y: scroll;
			    overflow-y: scroll;	
	}
	.nav li a{
		font-size: 1.2rem;
	}
	.nav li.nav_logo{
		width: 30%;
		margin: auto;
	}
	.nav li.icon_arrow a{
		font-size: 1.6rem;
	}
	.nav li > ul{
		padding: 0.5em 0 0.5em 2.4em;
	}
	.nav li > ul > li:first-child{
		font-size: 1.6rem;
	}
	.nav li > ul > li.icon_arrow a{
		font-size: 1.4rem;
	}
	.nav > ul.flex{
		margin-top: 1%;
	}

	/*common*/
	.btn_more a{
		width: 40%;
		padding: 0 0 0 1em;
		margin: 3% auto 5%;
		font-size: 1.2rem;
	}
	.btn_more a:after{
		right: 1em;
	}
	.floating_sns{
		-webkit-flex-direction: unset;
		    -ms-flex-direction: unset;
		        flex-direction: unset;
	    -webkit-justify-content: center;
	            justify-content: center;
	    -webkit-align-items: center;
	            align-items: center;
		top: auto;
		right: 0;
		left: 0;
		width: 100%;
		height: 3em;
		background: #fff;
		z-index: 4;
	}
	.floating_sns .fb,
	.floating_sns .insta{
		margin-bottom: 0;
		margin-right: 8px;
	}
	.floating_sns .txt{
		letter-spacing: 0;
		-webkit-writing-mode: initial;
	      -ms-writing-mode: initial;
	          writing-mode: initial;
	}
	.each_shop.addnewicon .floating_sns .newicon{
		width:50%;
	}
	.each_shop.addnewicon .floating_sns {
height:auto;
		flex-wrap: wrap;
	}
	
	.each_shop.addnewicon .floating_sns .text-line {
		width:100%;
	}
	
	.each_shop.addnewicon .floating_sns .newicon img{
		width:100%;
	}
	
	.each_shop.addnewicon .floating_sns .newicon.newicon_phone a{
		background: #b4a382;
    padding-bottom: 10px;
    padding-top: 10px;
    display: block;
	}
	
	
	.each_shop.addnewicon .floating_sns .newicon.newicon_line a{
		background: #4cc864;
    padding-bottom: 10px;
    padding-top: 10px;
    display: block;
	}
	
	/*footer*/
	.footer{
		padding: 10% 0;
	}
	.each_shop.addnewicon .footer{
		padding: 10% 0 25%;
	}
	.footer .wrap{
		margin-bottom: 5%;
	}
	.footer_logo a{
		top: -40px;
		width: 100px;
		height: auto;
	}
	.btn_pagetop a{
		top: 8px;
		right: 2%;
		width: 30%;
	}
	.footer .flex{
		display: block;
	}
	.footer .flex > ul{
		width: 100%;
	}
	.footer .flex > div{
		width: 100%;
	}
	.footer p.txt{
		margin-top: 5%;
		margin-bottom: 3%;
		font-size: 1.6rem;
		text-align: center;
	}
	.footer ul li.icon_arrow a{
		font-size: 1.6rem;
	}
	.footer ul li ul{
		margin: 0.5em 0 10% 2.4em;
	}
	.footer ul li ul li{
		width: 100%;
		margin-bottom: 3%;
	}
	.footer ul li ul li:nth-child(2n){
		padding-left: 0;
		border-left: none;
	}
	.footer ul li ul li a{
		font-size: 1.2rem !important;
	}
	.footer ul li div.flex{
		display: flex;
		display: -webkit-flex;
		display: -ms-flex;
	}
	.footer ul li div.flex div,
	.footer ul li.shop_item div.flex div{
		width: 70%;
		margin-left: 5%;
		margin-bottom: 0;
	}
	.footer ul li p,
	.footer ul li.shop_item p{
		font-size: 1.4rem;
	}
	.footer ul li p.catch{
		font-size: 1rem;
	}
	.footer p.image,
	.footer li.shop_item p.image{
		width: 25%;
	}
	.footer p.image img{
		width: 100%;
	}
	.footer .sns li{
		width: 30px;
	}
	.footer .sns li:first-child{
		margin-bottom: 5%;
	}
	.footer p.copy{
		font-size: 1rem;
		letter-spacing: 0;
	}
}