@charset "utf-8";
/* CSS Document */
/*=========================
	header
======================================================================*/
#header{
	position: fixed;
	top: 0;
	left: 0;
	height: 100px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	z-index: 99;
	transition: 0.3s;
	background: transparent;
}

.hlogo{
	width: 150px;
	height: 150px;
	margin: 10px 20px;
}
.hlogo img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}

.logo_sp{
	display: none;
}
.pcnav ul{
	height: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-right: 3vw;
}
.pcnav li a{
	padding: 0 10px;
	display: block;
	font-weight: 600;
	color: #fff;
	text-shadow: 1px 1px 2px #999;
  transition: 0.3s;
}
/* スクロール後 */
#header.scrolled {
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ロゴサイズも縮小 */
#header.scrolled .hlogo {
	width: 230px;
	height: 60px;
	transition: 0.3s;
	margin: 5px 20px;	
}

/* 白背景なのでロゴの色反転を解除（必要なら） */
#header.scrolled .hlogo img {
  filter: none;
  -webkit-filter: none;
}
#header.scrolled .pcnav li a{
	color: #754c24;
  transition: 0.3s;
}
/*rightボタン*/
.right_btn{
	position: fixed;
	right: 0;
	  -ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;	
	z-index: 50;
}
.right_btn .shop{
	position: relative;
	padding: 2rem .5rem 4rem 1.5rem;
	top: 100px;
	background: #a67c52;
	color: #fff;
	display: flex;
	align-items: center;
}
.right_btn .shop::before{
	position: absolute;
	content: '';
	height: 94%;
	width: 94%;
	top: 3%;
	left: 7%;
	border: 1px dashed #fff;
	
}
.right_btn .shop::after{
	position: absolute;
	content: '';
	width: 30px;
	height: 30px;
	bottom: 1.5rem;
	left: 58%;
	transform: translateX(-50%);
	background: url("../img/cart.svg")no-repeat center/contain;
}

.right_btn .inst{
	position: relative;
	padding: 4rem .5rem 2rem 1.5rem;
	top: 330px;
	display: flex;
	align-items: center;
	text-shadow: 0 0 2px #fff;
	
}
.right_btn .inst::after{
	position: absolute;
	content: '';
	width: 30px;
	height: 30px;
	top: 1.5rem;
	left: 58%;
	transform: translateX(-50%);
	background: url("../img/inst01.svg")no-repeat center/contain;
}

@media(max-width: 819px){
	#header,
	#header.scrolled {
	  height: 60px;
	}	
	.pcnav,.right_btn{
		display: none;
	}
	.logo_pc{
		display: none;
	}
	.logo_sp{
		display: block;
	}
	.hlogo,
	#header.scrolled .hlogo{
		width: 30%;
		min-width: 140px;
		max-width: 200px;
		height: 50px;
		margin: 5px 10px;
	}	

}


/*=========================
	Mobilenav
======================================================================*/
.sp-navbtn ul{
	display: flex;
	justify-content: flex-end;
	height: 100%;
	align-items: center;
}
@media(min-width: 820px){
	.sp-navbtn{display: none;}
}
.sp-navbtn li{
	width: 40px;
	height: 40px;
	margin-right: 10px;
	
}
.spbtn_sns a,
.spbtn_shop a{
	display: block;
	width:100%;
	height: 100%;
	border-radius: 50%;
	position: relative;	
}
.spbtn_shop a{
	background: #a67c52;
}
.spbtn_sns a::before{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background: url("../img/inst01.svg")no-repeat center/contain;
	top: 0;
	left: 0;
}

.spbtn_shop a::before{
	position: absolute;
	content: '';
	width: 60%;
	height: 60%;
	background: url("../img/cart.svg")no-repeat center/contain;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.openbtn{
	position:relative;
    z-index: 100;/*ボタンを最前面に*/
	cursor: pointer;
    width: 40px;
    height:40px;
	border: 1px solid #a67c52;
	border-radius: 50%;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 25%;
    height: 2px;
    border-radius: 2px;
	background-color: #a67c52;
  	width: 50%;
  }

.openbtn span:nth-of-type(1) {
	top:35%;	
}

.openbtn span:nth-of-type(2) {
	top:50%;
}

.openbtn span:nth-of-type(3) {
	top:65%;
}

.openbtn.active span:nth-of-type(1) {
    transform: translateY(6px) rotate(-45deg);
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    transform: translateY(-6px) rotate(45deg);
}

#g-nav{
    position:fixed;
    z-index: 80;
	top:0;
    right: -120%;
	width:100%;
	max-width: 370px;
    height: 100vh;
	background:#fff;
	transition: all 0.6s;
}
#g-nav.panelactive{
    right: 0;
}
#g-nav ul {
	padding-top: 80px;
	width: 90%;
	margin: 0 auto;
}
  /*ナビの数が増えた場合縦スクロール*/
#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
	border-bottom: 1px dotted #a67c52;
}

#g-nav li a{
	color: #a67c52;
	text-decoration: none;
	padding:10px;
	padding-left: 2rem;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	position: relative;
}
#g-nav li a::before{
	position: absolute;
	content: '';
	width: 1.3rem;
	height: 1.3rem;
	background: url("../img/sp_icon.svg")no-repeat center/contain;
	top: 13px;
	left: 0px;
}

.sp_cta{
	width: 80%;
	max-width: 300px;
	margin:10px auto;
	
}
.spnav_tel a{
	display: block;
	padding: .3rem;
	padding-left: 2.5rem;
	border: 2px solid #a67c52;
	color: #a67c52;
	text-align: center;
	font-weight: 600;
	margin-bottom: 10px;
	font-size: 22px;
	border-radius: 15px;
}

@media(max-width: 430px){
	#g-nav{
		max-width: 100%;
	}	
}
/*=========================
	Footer
======================================================================*/
footer{
	padding-bottom: clamp(40px,8vw,60px) ;
}
.foot_info{
	width:48%;
	font-size: 16px;
}
.foot_info .flogo{
	width: 50%;
	max-width: 280px;
	margin-bottom: 15px;
}
.f_info{
	border-collapse: separate;
	border-spacing: .3rem;
}
.f_info th{
	font-weight: 400;
	width: 100px;
	position: relative;
	padding: 0 1rem;
	text-align: left;
	vertical-align: top;
}
.f_info th::after{
	position: absolute;
	content: '';
	width: 2px;
	height: 1rem;
	top: .4rem;
	right: 0;
	/*transform: translateY(-50%);*/
	background: #a67c52;
}
.f_info td{
	padding: 0 1rem;
	vertical-align: top;
}

.foot_map{
	width: 48%;
	height: 35vh;
	margin: auto;
}
.foot_map iframe{
	width: 100%;
	height:100%;
	border: 1px solid #a67c52;
}

.linkbtn{
	display: flex;
	gap:20px;
	margin-top: 20px;
}
.linkbtn p{
	width: 40%;
	max-width: 280px;
	transition: .4s;
}
.linkbtn p:hover{
	opacity: .6;
	transition: .4s;
}
.copy{
	background: #754c24;
	padding: 8px 0;
	text-align: center;
	font-size: 14px;
	color: #fff;
}
@media(max-width: 974px){
	.foot_info{
		width:100%;
		font-size: 16px;
	}
	.foot_map{
		width: 100%;
	}	
}
/*=========================
	FV
======================================================================*/
#fv{
	padding: 0;
	z-index: 3;
	
}
.fv {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 100vh;
  overflow: hidden;
}

.fv video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.catch{
	position: absolute;
	width: 60%;
	height: 60%;
	max-width: 400px;
	max-height: 400px;
	top: 50%;
	left: 50%;
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
	transform: translate(-50%,-50%);
	
}
.catch img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/*=========================
	index
======================================================================*/

.inst_list{
	display: flex;
	justify-content: space-between;
}

.inst_list li{
	max-width: 300px;
	height: 300px;
	padding: 0 15px;
}
.inst_list li:first-child{
	margin-right: 25px;
}
.inst_list li a{
	display: block;
	width: 100%;
	height: 100%;
}
.inst_list li img{
	height: 100%;
	width: 100%;
	object-fit: contain;
}
.inst_sp{
	display: none;
}

@media (max-width: 1023px){
.inst_list{
	flex-wrap: wrap;
}	
.inst_list li{
	width: calc(100% / 4 );
	max-width: 300px;
	height: auto;
	padding: 0 5px;
	margin-top: 15px;
}	
.inst_list li:first-child{
	width: 100%;
	max-width: 100%;
	height: calc(100vw / 4 - 15px);;
	
}	
.inst_list li:first-child img{
	height: 100%;
	width: 100%;
	object-fit: contain;
}
}
@media (max-width: 470px){
	.inst_list li{
		width: calc(100% / 2);
	}
	.inst_sp{
		display:block;
	}	
	.inst_pc{
		display:none;
	}	
}

/*about*/
#t_about::before{
	position: absolute;
	content: '';
	width: 0;
	height: 45vh;
	top: 0;
	right: 0;
	background: #fff;
	z-index: -1;
	transition: width 1.2s ease;
}
#t_about.show::before {
  width: 75vw;
}
.a-txtwrap{
	width: 45%;
	max-width: 650px;
	font-weight: 600;
}
.a-txtwrap h2{
	color: #754c24;
	margin-bottom: 30px;
}
.a-imgwrap{
	position: absolute;
	top: 50px;
    right: 30px;
    z-index: -1;
	width: 50%;
	height: 100%;
}
@media(max-width: 1023px){
	.a-txtwrap{
		width: 100%;
		max-width: 600px;
		font-weight: 600;
		margin: 0 auto
	}	
	.a-imgwrap{
		position: relative;
		width: 100%;
		max-width: 550px;
		margin: 0 auto;
    	right: 0;
		
	}
	.t_about_btn{
		text-align: center;
	}
}


/*lineup*/
	
.line{
	border-top: 1px dashed #999;
	padding: 30px 0;
}

.t_itemlist{
	display: flex;

}
.t_itemlist li{
	position: relative;
	width: calc(100% / 4);
	border: 1px solid #8c6239;
	background: #fff;
}
.imgbox {
	aspect-ratio: 4 / 3;
	overflow: hidden;
}
.imgbox img{
	vertical-align: bottom;
	transition: .4s;
}
.txbox{
	background: #fff;
	font-size: 16px;
	padding: 8px 10px;
	
}
.txbox h3{
	color: #754c24;
}
.t_itemlist li:hover .imgbox img{
	transform: scale(1.1);
	transition: .4s;
}

.flag{
	position: absolute;
	content: '';
	width: 100px;
	height: 100px;
	top: 0;
	left: 0;
	background: url("../img/flag.png")no-repeat top/cover;
	z-index: 3;	
}

.flag._2{
	background: url("../img/flag2.png")no-repeat top/cover;
}
.flag._3{
	background: url("../img/flag3.png")no-repeat top/cover;
}

.flag p{	
	opacity: 0;
}


@media(max-width: 767px){
	.t_itemlist{
		flex-wrap: wrap;
	}
	.t_itemlist li{
		width: calc(100% / 2)
	}
}
@media(max-width: 450px){
.txbox{
	font-size: 14px;
	
}	
.flag{
	position: absolute;
	content: '';
	width: 70px;
	height: 70px;
}	
}
/*Burger&Dog*/
.ttl_img{
	width: clamp(130px, 40vw,200px);
	height: clamp(130px, 40vw,200px);
	margin: 0 auto;
}
.ttl_img img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.burger_img{
	position: absolute;
	width: 45vw;
	height: 45vw;
	bottom:clamp(-120px,-25vh,-200px);
	right: -10vw;
	z-index: 20;
}
.b_txbox{
	padding-left: 5vw;
	font-weight: 600;
}
.b_txbox h3{
	font-size: 1.7rem;
	color: #754c24;
	margin-bottom: 30px;
	
}

.min_slider img {
    width:100%;
    height:auto;
}


/*======================================
	下層共通
=============================================================================*/
/*subfv*/

.subfv{
	background:url("../img/subfv.jpg") no-repeat center / cover;
}

.pagettl{
	color: #fff;
	position: relative;
	text-align: center;
	padding-top:2rem;
}
.pagettl .en{
	position: absolute;
	font-family: "Ribeye Marrow", serif;	
	font-size: 4rem;
	font-weight: 400;
	opacity: .4;
	top: 30%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.pagettl .ja{
	font-size: 2rem;
}
/*パンくず*/
.bread_wrap {
	text-align: center;
	color: #fff;
}
.bread {
}
.bread_item {
	display: inline-block;
	position: relative;
	/* float: left; */
	font-size: 12px;
	font-weight: 500;
}
.bread_item.-home {
	padding-left: 15px;
}
.bread_item.-home::before {
	content: '\e3af';
	opacity: 0.8;
	position: absolute;
	top: 3px;
	left: 0;
	margin-right: 5px;
	line-height: 1;
	font-family: "Font Awesome 6 Free";
	font-size: 11px;
	font-weight: 600;
}
.bread_item::after {
	content: '\f105';
	position: relative;
	margin: 0 10px;
	line-height: 1;
	font-family: "Font Awesome 6 Free";
	font-size: 13px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: auto;
	font-weight: 600;
}
.bread_item a {
	color: inherit;
}
.bread_item:last-child::after {
	content: none;
}
.bread_item:last-child a {
	color: inherit;
	pointer-events: none;
}


/*======================================
	concept
=============================================================================*/
/*コンセプトメッセージ*/

.concept_ttl_wrap{
	display: flex;
	margin-right: auto;
	margin-left: auto;
}
.concept_ttl{
	width: 30%;
	position: relative;
}
.concept_ttl h2{
	position: absolute;
	background: url("../img/bg.jpg");
	padding: clamp(12px, 2vw, 18px) clamp(18px, 4vw, 36px) ;
    width: 63vw;
	max-width: 590px;
    top: 10%;
    left: 0;
    transform: translateX(-3%);
    line-height: 1.5;
	color: #754c24;
	font-size: clamp(1.3rem, 1.068rem + 0.98vw, 1.8rem);
}

.concept_ttl_img{
	width: 70%;
	border-radius: 30px;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}
.message_txt_wrap{
	text-align: center;
}
.concept_sttl{
	color: #754c24;
	text-align: center;
	font-size: clamp(1.15rem, 0.895rem + 1.07vw, 1.7rem);
	margin-bottom: 20px;
}
@media(max-width:767px){
	.concept_ttl_wrap{
		flex-direction: column;
	}
	.concept_ttl{
		width: 100%;
	}	
	.concept_ttl h2{
		position: relative;
		width: 100%;
		max-width:100%;
		background: none;
		text-align: center;
	}
	.concept_ttl_img{
		width: 95%;
		margin: 10px auto;
	}
}
@media (max-width: 500px) {
	.concept_ttl h2{
		padding:clamp(12px, 2vw, 18px) 0;
        transform: translateX(0);

	}	
}


/*コンセプトブレイク*/
.break_gallery{
	display: grid;
	grid-template-columns:  repeat(4, 1fr);
	grid-gap:10px 10px;
}
.break_gallery img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.break_gallery li:nth-child(1) {
  grid-column: span 2;
}
/*LOCO PANの魅力*/

.concept_features {
  padding: clamp(80px,10vw,160px) 0;
}

.section_ttl {
  text-align: center;
  font-size: clamp(1.8rem,3vw,2.4rem);
  margin-bottom: 80px;
  color: #754c24
}

.feature_block {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 120px;
}
.feature_block:last-child{
	margin-bottom: 0;
}

.feature_block.reverse {
  flex-direction: row-reverse;
}

.feature_img,
.feature_txt {
  width: 50%;
}

.feature_img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
}

.feature_txt h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #754c24	
}

.feature_txt h3 .en {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: #c8a96a;
  margin-bottom: 6px;
}

/* SP */
@media (max-width: 768px) {
  .feature_block,
  .feature_block.reverse {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 80px;
  }

  .feature_img,
  .feature_txt {
    width: 100%;
  }

  .feature_img img {
    height: 240px;
  }
}

/*インスタバナー*/
.sns_link_wrap{
background:
    linear-gradient(
      rgba(255,255,255,.85),
      rgba(255,255,255,.85)
    ),
    url("../img/linkbg.png");
  background-size: cover;
}

.sns_link_flex{
	display: flex;
	justify-content: center;
	column-gap: 80px;
}
.link_child{
	width: 40%;
	height: auto;
	text-align: center;
	aspect-ratio: 16 / 7;
	position: relative;
	z-index: 2;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 3px 3px 5px rgba(0,0,0,.42);
}
.link_child::after{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(0,0,0,.25);
	transition: .4s;
	z-index: 1;
}
.link_child.loco::before,
.link_child.burger::before{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: url("../img/780/img780_10.jpg")no-repeat center/cover;
	transition: .4s;
	z-index: 0;
}
.link_child.burger::before{
	background: url("../img/burger_insta.jpg")no-repeat center/cover;
	
}
.link_child:hover::before{
	transform: scale(1.1);
	transition: .4s;
}
.link_child:hover::after{
	background: rgba(0,0,0,.15);
	transition: .4s;
}
.link_child a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 2;
}
.link_child img{
	height: 75%;
	object-fit: contain;
}
@media(max-width:767px){
	.sns_link_flex{
		column-gap: 2%;		
	}
	.link_child{
		width: 48%;
	}
}

@media(max-width:500px){
	.sns_link_flex{
		flex-direction: column;	
	}
	.link_child{
		width: 95%;
		margin: 0 auto 10px;
	}
}
/*===========================================
	商品紹介
========================================================================*/
.itemlist{
	display: flex;
	flex-wrap: wrap;

}
.itemlist li{
	position: relative;
	width: calc(100% / 4);
	padding: 8px;
}
.itemlist .imgbox {
	aspect-ratio: 1 / 1;
	overflow: hidden;
}
.itemlist .imgbox img{
	vertical-align: bottom;
	transition: .4s;
}
.itemlist li:hover img{
	transform: scale(1.05);
}
.itemlist li::after{
	content: attr(data-name);
	position: absolute;
	left: 8px;
	right: 8px;
	bottom: 8px;
	background: rgba(0,0,0,.6);
	color: #fff;
	font-size: 13px;
	padding: 6px;
	opacity: 0;
	transition: .3s;
}
.itemlist li:hover::after{
	opacity: 1;
}

.ice_txt h3{
	color: #754c24;	
	margin-bottom: 20px;
	border-bottom: 2px solid #f2d2a9;
	display: inline-block;
	padding-bottom: 6px;
}



@media (max-width: 767px){
	.itemlist li{
		width: calc(100% / 3);
	}
}

@media (max-width: 500px){
	.itemlist li{
		width: calc(100% / 2);
	}
}



/*===========================================
	Burger
========================================================================*/
/* ===== Burger FV ===== */
.burger_fv{
  max-height: 100vh;
  background: url("../img/burger/burger_fv.jpg")no-repeat right bottom/ cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
/* 中身 */
.burger_fv_inner{
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 40px 20px;
	padding-right: 10vw;
}

/* ロゴ */
.burger_logo{
  width: min(70vw, 420px);
  margin-bottom: 30px;
}

/* タイトル */
.burger_title{
  color: #f5f5f5;
  font-size: clamp(22px, 4vw, 32px);
  letter-spacing: .2em;
  margin-bottom: 16px;
}

/* コピー */
.burger_copy{
  color: #fff;
  font-size: clamp(16px, 2.6vw, 20px);
  line-height: 1.8;
  text-shadow: 1px 1px 1px #000;
	font-weight: 500;
}

/* スクロール誘導 */
.scroll_down{
  display: block;
  width: 24px;
  height: 40px;
  border: 1px solid #777;
  border-radius: 20px;
  margin: 40px auto 0;
  position: relative;
}

.scroll_down::after{
  content: "";
  width: 4px;
  height: 8px;
  background: #aaa;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}

@keyframes scroll{
  0%{ opacity:0; top:8px;}
  50%{ opacity:1;}
  100%{ opacity:0; top:18px;}
}

/*about*/
.burger_about_wrap{
	display: flex;
	justify-content: space-between;
}
.b_about_img,
.b_about_txt{
	width: 48%;
}
.b_about_txt{
	font-size: 1.2rem;
}
.b_about_txt h3 {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color:  #c8a96a;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.b_about_txt h4 {
  position: relative;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: #754c24;
  padding-bottom: 18px;
}
.b_about_txt h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  background:  #c8a96a;
}

@media(max-width:767px){
	.burger_about_wrap{
		flex-direction: column-reverse;
	}
	.b_about_img,
	.b_about_txt{
		width: 100%;
		margin-bottom: 15px;
	}
}
@media(max-width:480px){
	.b_about_txt br{
		display: none;
	}
}


/*MENU*/
.l-menu_ttl {
    padding-right: 2rem;
	line-height: 1.5
}
.l-menu_ttl_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 8rem;
}
.l-menu_ttl_img {
      width: 13rem;
    height: 4.5rem;
}
.l-menu_slideber_ui_wrapper {
    width: calc(100% - 14rem);
}
.l-menu_slideber_title_sub {
    font-size: 1.8rem;
    font-weight: 700;
}
.l-menu_slideber {
  display: block;
  height: 100%;
  border-radius: .2rem;
  background:#c8a96a;
}

.l-menu_slideber_wrapper {
  width: 100%;
  height: 0.3rem;
  overflow: hidden;
  background: #c8a96a;
}

.l-menu_slideber_btn_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}


.itemlist._burger li{
	position: relative;
	width: calc(100% / 3);
	padding: 8px;
}

/*ブレイク*/
.container._h300{
  height: 50vh;
}
.bg_mv{
  position: fixed;  
 top:0;
	left: 0;/* ← fixed をやめる */
  inset: 0;
  z-index: 0;
}
.bg_mv video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.bg_mv::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}
/*===========================================
	店舗情報
========================================================================*/
.ttl p{
  color: #c8a96a;
  letter-spacing: .12em;
}
.about_img img{
	border-radius: 12px;
}

.dttl{
	color: #754c24;
}
.dttl small{
	display: inline-block;
}
.about_table tr{
	border-bottom: 1px solid rgba(200,169,106,.5);
}
.about_table th{
	color:#754c24;
	padding: .8rem 1rem;
	text-align: left;
	font-weight: 500;
	width: clamp(105px,20vw,115px);
}
.about_table td{
	padding: .8rem 1rem;
}
.about_table tr.time td strong {
  font-weight: 600;
  color: #754c24;
}
.about_table .note {
  display: block;
  margin-top: 6px;
  font-size: .85rem;
  color: #777;
}
.map{
	width: 95%;
	height: 45vh;
	margin: 0 auto;
}
.map iframe{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
	border:2px solid #c8a96a;
}


/*===========================================
	Contact
========================================================================*/

.contact .tel_contact{
	text-align: center;
	border-top: 3px double #c8a96a;
	border-bottom: 3px double #c8a96a;
	padding: 15px 0;
	margin: 0 auto;
	width: 94%;
	max-width: 600px;
}
.contact .tel_contact a{
	display: inline-block;
	font-size: 2.4rem;
	font-weight: 500;
	white-space: nowrap;
	letter-spacing: 0.08em;
	line-height: 1.7;
}
.contact .tel_contact a:hover{
	opacity: 0.6;
}
.contact .tel_contact p{
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.2em;
}
@media (max-width: 750px){
	.contact .tel_contact{
		padding: 20px 0;
	}
	.contact .tel_contact a{
		font-size: 2rem;
	}
}
@media (max-width: 450px){
	.contact .tel_contact a{
		font-size: 1.6rem;
	}
}


/*メールフォーム*/
.etitle {
    font-weight: 600;
    background: #fff;
    border-radius: 5px;
    position: relative;
    box-sizing: border-box;
    padding: 12px 10px 10px 25px;
    margin-bottom: 30px;
    box-shadow: 0px 3px 0 0 #c8a96a;
}
.etitle:before {
    position: absolute;
    top: 25%;
    left: 10px;
    width: 6px;
    height: 50%;
    content: '';
    border-radius: 3px;
    background:#754c24;
}


.mailform{
	margin: 0 auto;
	width: 94%;
	max-width: 960px;
}
.mailform .row{
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.mailform .row:not(.last){
	border-bottom: 1px dotted #cccccc;
}
.mailform .row div:nth-child(1){
	width: 28%;
	font-weight: 500;
	letter-spacing: 0.08em;
	font-size: 0.9rem;
}
.mailform .row div:nth-child(2){
	width: 70%;
	line-height: 1.5;
}
.mailform .row span{
  	color: #fff;
  	background: #754c24;
  	padding: 5px;
  	margin-right: 5px;
  	font-size: 11px;
	border-radius: 2px;
	vertical-align: middle;
	font-weight: 500;
}
.mailform .row small{
	display: block;
	margin-top: 3px;
}
.mailform .box, .mailform textarea{
	border: 1px solid #ddd;
  	padding: 5px;
  	width: 100% !important;
  	border-radius: 0;
	-webkit-appearance: none;
	margin-bottom: 5px;
	background: #fff;
}
.mailform button{
	display: block;
	text-align: center;
	transition: .6s;
	font-size: 1rem;
	font-weight: 500;
	padding: 8px 5px;
	margin: 0 auto;
	width: 250px;
	background: #754c24;
	border: 1px solid #fff;
	color: #fff;
	border-radius: 50px;
}
.mailform button:hover{
	background: #fff;
	border: 1px solid #754c24;	
	color:#754c24;
}
.mailform button::before{
	font-family: "Font Awesome 6 Free";
	content: "\f1d8";
	font-weight: 700;
	margin-right: 10px;
}

@media (max-width: 750px){
	.mailform .row{
		padding: 20px 0;
		flex-direction: column;
	}
	.mailform .row div:nth-child(1){
		width: 100%;
		margin-bottom: 20px;
	}
	.mailform .row div:nth-child(2){
		width: 100%;
	}
}

/*チェックボックス*/
input[type=checkbox] {
    display: none;
}
input[type=checkbox] + label{
    display: inline-block;
	padding-left: 20px;
	position:relative;
	margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
}
input[type=checkbox] + label::before{
    background: #fff;
    border: 1px solid #999;
    content: '';
    display: block;
	position: absolute;
	top: 55%;
	transform: translate(0,-50%);
  	left: 0;
    width: 15px;
  	height: 15px;
	border-radius: 3px;
}
input[type=checkbox] + label::after{
    border-right: 3px solid #754c24;;
    border-bottom: 3px solid #754c24;;
    content: '';
    display: block;
    height: 15px;
    left: 8px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 36%;
    width: 5px;
	transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1);
	transition: transform .2s ease-in-out, opacity .2s ease-in-out;
}
input[type=checkbox]:checked + label::after{
    opacity: 1;
	transform: rotate(45deg) scale3d(1,1,1);
}
@media (max-width: 750px){
	input[type=checkbox] + label{
		display: block;
	}
}

/*ラジオボタン*/
input[type=radio]{
	display: none;
}
input[type=radio] + label{
    display: inline-block;
	padding-left: 20px;
	position:relative;
	margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
}
input[type=radio] + label::before {
	content: "";
	display: block;
	position: absolute;
	top: 55%;
	transform: translate(0,-50%);
  	left: 0;
    width: 15px;
  	height: 15px;
	background: #f4f4f4;
	border-radius: 100%;
	border: 1px solid #b4b4b4;
	cursor: pointer;
	text-align: center;
	transition: all 250ms ease;
}
input[type=radio]:checked + label::before {
	background-color: #0f4da0;
	box-shadow: inset 0 0 0 2px #f4f4f4;
}
input[type=radio]:focus + label::before{
	outline: none;
	border-color: #0f4da0;
}
input[type=radio]:disabled + label::before {
	box-shadow: inset 0 0 0 2px #f4f4f4;
	border-color: #b4b4b4;
	background: #b4b4b4;
}
input[type=radio] + label:empty::before{
	margin-right: 0;
}
@media (max-width: 750px){
	input[type=radio] + label{
		display: block;
	}
}


.contact_info ul li{
	margin-bottom: 5px;
	text-align: center;
	font-size: 0.9rem;
}

/*アコーディオン*/
.privacy{
}
.privacy li{
}
.privacy li .privacy_wrap{
	border: 1px solid #ccc;
}
.privacy li .privacy_wrap .privacy_subject{
	cursor: pointer;
	transition: all .5s ease;
	padding: 15px 20px;
	padding-right: 30px;
	position: relative;
	color: #fff;
	background-color: #754c24;;
}
.privacy li .privacy_wrap .privacy_subject.area_close{
}
.privacy li .privacy_wrap .privacy_subject h3{
	font-size: 1.1rem;
}
/*アイコンの＋と×*/
.privacy li .privacy_wrap .privacy_subject::before,
.privacy li .privacy_wrap .privacy_subject::after{
	position: absolute;
	top:48%;
	right: 15px;
	content:'';
	width: 15px;
	height: 2px;
	background-color: #fff;
}
.privacy li .privacy_wrap .privacy_subject::before{
	transform: rotate(0deg);
}
.privacy li .privacy_wrap .privacy_subject::after{
	transform: rotate(90deg);
}
/*area_closeクラスがついたら形状変化*/
.privacy li .privacy_wrap .privacy_subject.area_close::before{
transform: rotate(45deg);
}
.privacy li .privacy_wrap .privacy_subject.area_close::after{
transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.privacy li .privacy_wrap .privacy_box{
	position: relative;
	display: none;/*はじめは非表示*/
	padding: 20px;
	background: #fff;
}

.privacy_flame{
	height: 250px;
	overflow-y: scroll;
}
.privacy_flame p{
	padding: 10px;
	font-size: 0.8rem;
}
.privacy_flame p span{
	display: block;
	color: #754c24;
	font-size: 0.95rem;
	font-weight: 500;
}
.privacy_flame p span::before{
	content: "■";
	display: inline-block;
	font-size: 0.6rem;
	margin-right: 0.5em;
	transform: translateY(-2.5px);
}
.privacy_flame ul li{
	font-size: 0.8rem;
}

/*スクロールバー*/
.privacy_flame::-webkit-scrollbar{
    overflow: hidden;
    width: 1px;
    background: #754c24;
}
.privacy_flame::-webkit-scrollbar-button {
    display: none;
}
.privacy_flame::-webkit-scrollbar-thumb, .privacy_flame::-webkit-scrollbar-corner {
    background: #fafafa;
}

.thanks_text{
	margin-bottom: 20px;
	line-height: 1.9;
}

.thanks_note{
	font-size: 14px;
	opacity: .7;
	margin-bottom: 40px;
}
