@charset "utf-8";
/*===========================
	header
======================================*/
#header{
	width: 100%;
	height: 80px;
	padding: 5px 2vw;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.hlogo{
	height: 100%;
	min-width: 280px;
}
.hlogo img{
	height: 100%;
	object-fit: contain;
	vertical-align: middle;
}

.pcnav ul{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.pcnav li a{
	padding: 0 15px;
	white-space: nowrap;
}

@media(max-width:944px){
	.pcnav{
		display: none;
	}
	#header{
		height: 70px;
	}	
}



/*===========================
	MobileMenu
======================================*/
.openbtn{
	position:fixed;
	top:5px;
	right: 10px;
	z-index: 9999;/*ボタンを最前面に*/
	cursor: pointer;
    width: 65px;
    height:65px;
	background: url("../img/icon.png")no-repeat center/contain;
}
@media(min-width:950px){
	.openbtn{
		display: none;
	}
}
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 25%;
    height: 3px;
    border-radius: 2px;
	background-color: #754c24;
  	width: 50%;
  }

.openbtn span:nth-of-type(1) {
	top:23px;	
}

.openbtn span:nth-of-type(2) {
	top:31px;
}

.openbtn span:nth-of-type(3) {
	top:40px;
}

.openbtn.active span:nth-of-type(1) {
    top: 25px;
    left: 25%;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
}

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

.openbtn.active span:nth-of-type(3){
    top: 36px;
    left: 25%;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
}

#g-nav{
	display: none;
}


#g-nav.panelactive{
	display: block;
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
	top: 0;
	width:100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
	z-index:3;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(96,56,19,.9);
	transform: scale(0);/*scaleをはじめは0に*/
	right:-50px;
    top:-50px;
    transition: all .6s;/*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive{
	transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーション*/
#g-nav ul {
	display: none;
    z-index: 999;
	padding: 80px 1%;
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    display: block;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}


/*リストのレイアウト設定*/
#g-nav li{
	text-align: center; 
	list-style: none;
}

#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}








/*=========================
	Footer
=========================================*/
footer{
	background: #fffdc5;
	padding: 40px 0;
	text-align: center;
}
.flogo{
	width: 80%;
	max-width: 400px;
	margin: 0 auto 20px;
}
.fcat h3{
	font-family: "Zen Old Mincho", serif;
	font-size: 2rem;
	color: #754c24;
	margin-bottom: 15px;
}
.fac_tel a{
	color: #a12d2d;
	font-size: 2.3rem;
	font-weight: 600;
}
.fac_tel a span{
	font-size: 2rem;
	padding-right: 15px;
}

.copy{
	background: #a12d2d;
	color: #fff;
	font-size: 14px;
	text-align: center;
	padding: 5px 0;
}

/*SP footbtn*/
@media(min-width:501px){
	#spnavi{
		display: none;
	}	
}
  #spnavi {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    background: #fff;
	border-top: 2px solid #a12d2d;
  }
  #spnavi ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #spnavi ul li {
    width: 50%;
    border-right: 1px solid #fff;
  }
  #spnavi ul li:last-child {
    border-right: none;
	background: #754c24; 
  }
  #spnavi ul li a {
    display: block !important;
    padding: 5px 0;
    text-align: center;
    color: #754c24;
    font-size: 1rem;
    line-height: 2;
  }
  #spnavi ul li:last-child a{
    color: #fff; 
  }
  #spnavi ul li a.sp_tel:before {
    font-family: "Font Awesome 6 Free";
    content: "\f095";
    font-weight: 900;
  }
  #spnavi ul li a.sp_contact:before {
    font-family: "Font Awesome 6 Free";
    content: "\f0e0";
    font-weight: 900;
  }
  #spnavi ul li a span {
    font-size: 1rem;
	margin-left: 5px;  
  }

/*=========================
	pagetop
=========================================*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:40px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(150px);
}

/*　上に上がる動き　*/
#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(150px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/
#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(150px);
  }
}

#page-top a {
    /*aタグの形状*/
	display: block;
	width: 100px;
	height: 100px;
	color: #333;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	background: url("../img/pagetop.png") no-repeat center;
	background-size: contain;
}
#page-top.floatAnime a{
	animation: floatAnime 2s linear infinite;
}

@keyframes floatAnime {
  0% { transform: translateX(0); opacity: 0; }
  25% { transform: translateX(-6px);opacity: 1; }
  50% { transform: translateX(0) }
  100% { transform: translateX(6px);opacity: 1; }
}

@media(max-width:550px){
#page-top {
	bottom:45px;
}
#page-top a {
	width: 80px;
	height: 80px;	
}

}

/*=========================
	Fv
=========================================*/
.fv{
	padding: 10px 3vw;
	width: 100%;
	aspect-ratio: 2 / 1;
	max-height: calc(100vh - 80px);
}

.t_slider {
    position:relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 2 / 1;
	max-height: calc(100vh - 100px);/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
/*　背景画像設定　*/

.slider-item01 {
    background:url("../img/slide01.jpg");
}

.slider-item02 {
    background:url("../img/slide02.jpg");
}
.slider-item {
	width: 100%;
	aspect-ratio: 2 / 1;
    max-height: calc(100vh - 100px);/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: contain;/*背景画像が.slider-item全体を覆い表示*/
}

@media(max-width:768px){
.fv{
	padding: 10px 3vw;
	width: 100%;
	aspect-ratio: 5 / 4;
	max-height: calc(100vh - 80px);
}

.t_slider {
    position:relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 5 / 4;
	max-height: calc(100vh - 100px);/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
/*　背景画像設定　*/

.slider-item01 {
    background:url("../img/slide01_sp.jpg");
}

.slider-item02 {
    background:url("../img/slide02_sp.jpg");
}
.slider-item {
    width: 100%;
	aspect-ratio: 5 / 4;
    max-height: calc(100vh - 100px);/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: contain;/*背景画像が.slider-item全体を覆い表示*/
}	
}


/*=========================
	index
=========================================*/
.original_link{
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

.g_img{
	border-radius: 10px;
}
.g_txt{
	padding: 3vw 2vw;
	position: relative;
}

.g_txt h3{
	font-family: "Zen Old Mincho", serif;
	line-height: 2;
}
.boxtxt{
	margin: 20px 0;
	border: 1px solid #a12d2d;
	padding: 1rem;
}


.t_item{
	padding-bottom: 80px;
}
.item_wrap{
	display: grid;
	grid-template-columns: repeat(3, 1fr); 
	gap:3%;
}
.item{
	text-align: center;
	color: #754c24;
	font-family: "Zen Old Mincho", serif;
}
.item img{
	border-radius: 15px;
}



@media(max-width:689px){
.item_wrap{
	grid-template-columns: repeat(2, 1fr); 
}	
}
@media(max-width:449px){
	.item_wrap{
		display: block;
	}
	.item{
		margin-bottom: 20px;
	}	
}
.about{
	background: #fff;
	z-index: 0;
	padding-bottom: 80px;
}
.about::before{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background: url("../img/home-info-bg.jpg")no-repeat;
	background-size: 100%;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}

.info_ttl{
	width: 80%;
	max-width: 400px;
	margin: 0 auto 20px;
}
.infotable{
	padding-top:30px;
}
.infotable tr{
	border-bottom: 1px solid #754c24;
}
.infotable th{
	width: 130px;
	color: #a12d2d;
	padding: 1rem 1.3rem;
}
.infotable td{
	padding: 1rem 1.3rem;
}
.aboutimg{
	max-height: 45vh;
	object-fit: contain;
}

/*=========================

=========================================*/
.sub_fv{
	background: url("../img/subbg.png")no-repeat left/cover;
	padding: 60px 0;
}

.pagetitle{	
	font-family: "Zen Old Mincho", serif;
	color: #fff;
	text-align: center;
	font-size: 2.3rem;
}
.pagetitle_en{
	text-align: center;
	color: #a12d2d;
	
}


/*パンくず*/
.breadcrumb{
	display: flex;
	font-size: 14px;
	letter-spacing: 0.05em;
	padding: 5px 0;
}
.breadcrumb li {
	display: inline;
	list-style: none;
}
.breadcrumb li::after {
	content: '>';
	padding: 0 0.2em;
	vertical-align: top;
}
.breadcrumb li:last-child::after {
	content: '';
}
.breadcrumb li a {
	text-decoration: none;
	color: #a12d2d;
	font-weight: 500;
}
.breadcrumb li:first-child a::before{
	font-family: "Font Awesome 5 Free";
	content: '\f015';
	font-weight: bold;
}
.breadcrumb li a:hover{
	opacity: 0.7;
}



/*=========================
商品紹介
=========================================*/
.itembox{
	padding: 1rem 1.5rem;
	display: flex;
	justify-content: space-between;
	background: #fff;
	margin-bottom: 30px;
}
.itembox figure{
	width: 30%;
}
.itembox figure img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.itembox .item_txt{
	width: 65%;
	padding: 1rem;
}
.itembox .item_txt h3{
	font-family: "Zen Old Mincho", serif;
	color: #603813;
	font-size: clamp(1.4rem, 1.261rem + 0.59vw, 1.7rem);
	padding: 15px 0;
}
#original{
	padding-bottom:clamp(40px,8vw,90px);
}
.scene{
	background: url("../img/yellow-bg.gif");
	padding: 40px 50px;
	font-size: 15px;
}

@media(max-width:549px){
	.itembox{
		display: block;
	}	
	.itembox figure{
		width: 40%;
		margin: 0 auto;
		min-width: 280px;
	}
	.itembox figure img{
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
	.itembox .item_txt{
		width: 100%;
		padding: 1rem;
	}	
}



/*=========================
Information
=========================================*/
/*shoplist*/
.shop-wrap{
	padding-bottom:clamp(40px,8vw,90px);
}
.shoplist ul{
	display: grid;
	grid-template-columns: repeat(3, 1fr); 
	gap:20px;
	margin-bottom: 30px;
}

.shoplist li{
	background: #fff;
	padding: .5rem 1rem;
	border: 1px solid #a12d2d;
	box-shadow: 2px 2px 4px #999;
}
.shoplist .label{
	position: relative;
}
.shoplist .label::before{
	position: absolute;
	content: '';
	width: 3rem;
	height: 3rem;
	top: 0;
	right: 0;
	background: url("../img/label01.png")no-repeat center/contain;
}
.shoplist .label._02::before{
	background: url("../img/label02.png")no-repeat center/contain;	
}
.shoplist .label dt,.shoplist .label dd:not(.map){
	padding-right: 3.5rem;
}
.shoplist dt{
	font-size: 1.3rem;
	color:#a12d2d;
	border-bottom: 1px dashed #666;
	margin-bottom: 10px;
}
.shoplist .map{
	width: 100%;
	aspect-ratio: 16 / 9;
}

.shoplist .map iframe{
	width: 100%;
	height: 100%;
}
@media(max-width:1079px){
	.shoplist ul{
		grid-template-columns: repeat(2, 1fr); 
	}	
}
@media(max-width:599px){
	.shoplist ul{
		grid-template-columns: repeat(1, 1fr); 
	}	
}


/*メールフォーム*/
.contact{
	background: #fff;
	padding-bottom:clamp(40px,8vw,90px);
	z-index: 0;
}
.contact::before{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background: url("../img/home-info-bg.jpg")no-repeat center top/100%;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;	
}


.contact .tel_contact{
	text-align: center;
	border-top: 3px double #a12d2d;
	border-bottom: 3px double #a12d2d;
	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:#fffff2;
    border-radius: 5px;
    position: relative;
    box-sizing: border-box;
    padding: 12px 10px 10px 25px;
    margin-bottom: 30px;
    box-shadow: 0px 3px 0 0 #ffbebe;
}
.etitle:before {
    position: absolute;
    top: 25%;
    left: 10px;
    width: 6px;
    height: 50%;
    content: '';
    border-radius: 3px;
    background:#a12d2d;
}


.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: #a12d2d;
  	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: #a12d2d;
	border: 1px solid #fff;
	color: #fff;
}
.mailform button:hover{
	background: #fff;
	border: 1px solid #a12d2d;	
	color:#a12d2d;
}
.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 #a12d2d;
    border-bottom: 3px solid #a12d2d;
    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: #a12d2d;
	box-shadow: inset 0 0 0 2px #f4f4f4;
}
input[type=radio]:focus + label::before{
	outline: none;
	border-color: #a12d2d;
}
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: #a12d2d;
}
.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: #a12d2d;
	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: #a12d2d;
}
.privacy_flame::-webkit-scrollbar-button {
    display: none;
}
.privacy_flame::-webkit-scrollbar-thumb, .privacy_flame::-webkit-scrollbar-corner {
    background: #fafafa;
}





