body{
	font-family: yu-gothic-pr6n, sans-serif;
	font-style: normal;
	font-weight: 400;
	margin: 0;
	padding: 0;
	line-height: 1;
	color: #3A3A3A;
	background: url("../img/background1.png");
	overflow-x: hidden;
}
h1, h2, h3, h4, p, ul, li{
	padding: 0;
	margin: 0;
}
a{
	text-decoration: none;
	color: #3A3A3A;
}
img{
	display: block;
	width: 100%;
}


/*ローディング*/
#loading{
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	z-index: 9999;
}
.drop{
	position: absolute;
	width: 20px;
	height: 20px;
	transform: translate(-50%,-50%);
	top: -30px;
	left: 50%;
	background: rgba(23,10,1,1.00);
	border-radius: 20px;
	z-index: 9999;
}
.drop::before{
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 30px solid rgba(23,10,1,1.00);
	top: -22px;
}
.drop.down{
	animation: drip 2s cubic-bezier(1,0,.91,.91) forwards;
}
@keyframes drip{
	0%{
		top: -10px;
		opacity: 1;
	}
	80%{
		opacity: 1;
	}
	100%{
		top: 50%;
		opacity: 0;
	}
}

.irisout{
	position: absolute;
	overflow: hidden;
	width: 100%;
	height: 100vh;
	/*z-index: 9000;*/
}
.irisout .iris{
	position: absolute;
	display: grid;
	place-content: center;
	overflow: hidden;
	inset: 0;
	width: inherit;
	z-index: 9000;
}
.irisout .iris::after{
	content: '';
	display: block;
	aspect-ratio: 1/1;
	width: 0;
	height: auto;
	border-radius: 50%;
	box-shadow: 0 0 0 100vw rgba(251,245,236,1.00);
	transition: width 1s cubic-bezier(.7,0,.3,1);
}
.irisout .iris.active::after{
	animation: circle 2s 2s forwards;
}
@keyframes circle{
	0%{
		width: 0;
	}
	100%{
		width: 2000px
	}
}






/*ヘッダー*/
.header{
	position: fixed;
	width: 100%;
	top: 0;
	background: #F5F3F1;
	z-index: 999;
}
.header-main{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 20px;
	height: 70px;
}
.pc-header{
	display: none;
}

.logo img{
	width: 50%;
}

.nav-sp{
	position: relative;
}
.nav-button{
	z-index: 200;
	width: 40px;
	height: 40px;
	background: #3A3A3A;
	border-radius: 5px;
}
.bar{
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left:11px;
	width: 19px;
	height: 2px;
	background-color: #F5F3F1;
	border-radius: 2px;
}
.bar1 {
	top: 12px;
}
.bar2 {
	top: 19px;
}
.bar3 {
	top: 26px;
}
.nav-button.active .bar1 {
	width: 40%;
	left: 13px;
	transform: translateY(7px) rotate(-45deg);
}
.nav-button.active .bar2 {
	opacity: 0;
}
.nav-button.active .bar3 {
	width: 40%;
	left: 13px;
	transform: translateY(-7px) rotate(45deg);
}
.nav{
	position: absolute;
	z-index: 200;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #3A3A3A;
	list-style-type: none;
}
.nav-wrapper{
	position: fixed;
	z-index: -1;
	top: -120%;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #F5F3F1;
	transition: all 0.6s;
}
.nav-wrapper.open {
  top: 0;
}
.nav-item{
	font-family: "Zen Old Mincho", serif;
	padding: 1.3em 0;
}
.header .nav-item a{
	color: #3A3A3A;
	position: relative;
}
.nav-item:nth-of-type(1){
	animation-delay: 0.4s;
}
.nav-item:nth-of-type(2){
	animation-delay: 0.6s;
}
.nav-item:nth-of-type(3){
	animation-delay: 0.8s;
}
.nav-item:nth-of-type(4){
	animation-delay: 1s;
}
.header .nav-item a::after{
	position: absolute;
	content: '';
	width: 100%;
	height: 1px;
	left: 0;
	bottom: -3px;
	background: #DE7E44;
	transform: scale(0,1);
	transform-origin: center top;
	transition: transform 0.3s;
}
.header .nav-item a:hover::after{
	transform: scale(1,1);
}
.fadeIn{
	opacity: 0;
}
.fadeIn.active{
	animation-name: fadeInAnime;
	animation-duration: 2s;
	animation-fill-mode: forwards;
}
@keyframes fadeInAnime{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}


/*mv*/
.mv{
	height: 100vh;
}
.mv-inner{
	background: #FFFEF8;
	background-position: center;
	background-size: cover;
	margin: 0 20px;
	position: relative;
	top: 90px;
	height: 80vh;
}
.mv-logo{
	display: none;
}
.mv-text{
	font-family: "Zen Kaku Gothic Antique", serif;
	font-weight: 900;
	font-size: clamp(1.125rem, 0.974rem + 0.67vw, 1.563rem);
	writing-mode: vertical-rl;
	line-height: 2;
	letter-spacing: 0.3em;
	margin: 0 auto;
	position: relative;
	top: 30%;
}
.mv-text span{
	display: block;
	padding-top: 50px;
}

.nav-pc{
	display: none;
}

.scrolldown{
	position: absolute;
	left: 50%;
	bottom: 0;
	height: 50px;
}
.scrolldown span{
	position: absolute;
	left: -20px;
	bottom: 40px;
	color: #3a3a3a;
	font-size: 14px;
	letter-spacing: 0.05em;
}

.scrolldown::after{
	content: '';
	position: absolute;
	top: 0;
	width: 1px;
	height: 30px;
	background: #3a3a3a;
	animation: scrolldownMove 1.4s ease-in-out infinite;
	opacity: 0;
}
@keyframes scrolldownMove{
	0%{
		height: 0;
		top: 20px;
		opacity: 0;
	}
	30%{
		height: 30px;
		opacity: 1;
	}
	100%{
		height: 0;
		top: 70px;
		opacity: 0;
	}
}





/*共通*/
h2{
	font-family: "Zen Kaku Gothic Antique", serif;
	font-weight: 900;
	font-style: normal;
	font-size: clamp(1.438rem, 0.982rem + 2.02vw, 2.5rem);
	display: inline-block;
	padding-left: 0.5em;
}
.title{
	text-align: center;
	margin-bottom: 30px;
	position: relative;
}
.title::before{
	top: 5%;
	content: '';
	width: 6px;
	height: 100%;
	background: #DE7E44;
	position: absolute;
}

/*button*/
.button{
	text-align: center;
	padding: 60px 0;
}
.button a{
	border: 1px solid #3A3A3A;
	padding: 1em 2em;
	font-size: clamp(0.688rem, 0.5rem + 0.83vw, 1.125rem);
	display: inline-block;
	
	position: relative;
}
.button a::before{
	content: "";
	position: absolute;
	box-sizing: border-box;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	border: 1px solid transparent;
}
.button a:hover::before{
	border: 1px solid #3A3A3A;
	transition: all 0.3s;
}



/*topic*/
.topic{
	margin-top: 60px;
}
.slider{
	width: 85%;
	margin: 0 auto;
}
.slider img{
	width: 60vw;
	height: auto;
}

.slider .slick-slide{
	transform: scale(0.8);
	transition: all .5s;
	opacity: 0.5;
}
.slider .slick-slide.slick-center{
	transform: scale(1);
	opacity: 1;
}

.slick-prev,
.slick-next{
	position: absolute;
	top: 35%;
	cursor: pointer;
	outline: none;
	border-top: 2px solid #3A3A3A;
	border-right: 2px solid #3A3A3A;
	height: 10px;
	width: 10px;
}
.slick-prev{
	left: -5%;
	transform: rotate(-135deg);
	z-index: 1;
}
.slick-next{
	right: -5%;
	transform: rotate(45deg);
}
.slick-dots{
	text-align: center;
	margin: 20px 0 0 0;
}
.slick-dots li{
	display: inline-block;
	margin: 0 8px;
}
.slick-dots button{
	color: transparent;
	outline: none;
	width: 8px;
	height: 8px;
	display: block;
	border-radius: 50%;
	background: #C7C1AE;
}
.slick-dots .slick-active button{
	background: #331D0F;
}


/*about*/
.about{
	margin-top: 100px;
}
.about img{
	width: 100%;
	
	aspect-ratio: 4/3;
	object-fit: cover;	
}
.about-img{
	width: 85%;
}
.about-img01 img{
	box-shadow: 6px 6px 6px rgba(51, 29, 15, 0.4);
}
.about-img02 img{
	box-shadow: -6px 6px 6px rgba(51, 29, 15, 0.4);
}
h3{
	font-family: "Zen Old Mincho", serif;
	font-size: clamp(1.25rem, 1.034rem + 0.96vw, 1.875rem);
	text-align: center;
	padding: 30px 0;
}
.about-box{
	overflow: hidden;
}
.about-box01{
	padding-bottom: 90px;
}
.about-img02{
	margin: 0 0 0 auto;
}
.about-img02 img{
	margin: 0 0 0 auto;
}
.about-text{
	margin:23px 15px;
	padding: 0 15px;
}
.about-text p{
	font-size: 15px;
	line-height: 2;
}
.arrow{
	text-align: right;
}
.arrow a{
	border: 1px solid #3A3A3A;
	border-radius: 50px;
	padding: 0.5em;
	font-size: 1.3em;
	display: inline-block;
	margin: 10px 0 15px;
	position: relative;
}
.arrow a::before{
	content: "";
	position: absolute;
	box-sizing: border-box;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	border: 1px solid transparent;
	border-radius: 50px;
}
.arrow a:hover::before{
	border: 1px solid #3A3A3A;
	transition: all 0.3s;
}
/*動き*/
.slide-left{
	transform: translate(-50px,0);
	transition: all 0.7s;
	opacity: 0;
}
.slide-left.active{
	transform: translate(0,0);
	opacity: 1;
}
.slide-right{
	transform: translate(50px,0);
	transition: all 0.7s;
	opacity: 0;
}
.slide-right.active{
	transform: translate(0,0);
	opacity: 1;
}
/*枠線*/
.line{
	position: relative;
}
.line::before,
.line::after{
	position: absolute;
	content: "";
	width: 0;
	height: 1px;
	background: #3A3A3A;
}
.line2::before,
.line2::after{
	position: absolute;
	content: "";
	width: 1px;
	height: 0;
	background: #3A3A3A;
}
/*上*/
.line::before{
	top: 0;
	left: 0;
}
.line.lineanime::before{
	animation: lineAnime .5s linear 0s forwards;
}
/*右*/
.line2::before{
	top: 0;
	right: 0;
}
.line2.lineanime2::before{
	animation: lineAnime2 .5s linear .5s forwards;
}
/*下*/
.line::after{
	bottom: 0;
	right: 0;
}
.line.lineanime::after{
	animation: lineAnime .5s linear 1s forwards;
}
/*左*/
.line2::after{
	bottom: 0;
	left: 0;
}
.line2.lineanime2::after{
	animation: lineAnime2 .5s linear 1.5s forwards;
}


@keyframes lineAnime{
	0%{
		width: 0%;
	}
	100%{
		width: 100%;
	}
}
@keyframes lineAnime2{
	0%{
		height: 0%;
	}
	100%{
		height: 100%;
	}
}

.about-container{
	opacity: 0;
}
.about-container.fadeIn{
	animation: fadeIn 1s 0.5s forwards;
}
@keyframes fadeIn{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}

/*menu*/
.menu{
	background: linear-gradient(rgba(51,29,15,0.3),rgba(51,29,15,0.3)),url("../img/top-page/menu01.jpg");
	background-size: cover;
	background-position: bottom;
	position: relative;
	padding: 50px 0;
}
.menu .title{
	color: #FFFEF8;
	margin-bottom: 65px;
}
.menu-text{
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
	color: #FFFEF8;
	line-height: 1.5em;
	text-align: center;
	text-shadow: 0 0 5px #000;
}
.menu-btn{
	padding: 70px 0 0 0;
}
.menu-btn a{
	border: 1px solid #FFFEF8;
	background-color: rgba(51,29,15,0.5);
	color: #FFFEF8;
}
.menu-btn a:hover::before{
	border: 1px solid #FFFEF8;
	transition: all 0.3s;
}


/*fadeUp*/
.fadeUp{
	opacity: 0;
	transform: translateY(10px);
	transition: all 1.5s;
}
.fadeUp.active{
	opacity: 1;
	transform: translateY(0);
}


/*news*/
.header-nav{
	display: none;
}
.pc-news{
	display: none;
}
.news{
	background-color: rgba(255,255,255,0.6);
	margin: 100px 20px;
	padding-top: 40px;
}
.news-box{
	padding: 0 15px;
	display: block;
	max-width: 900px;
	margin: 0 auto;
}
.news-item{
	list-style: none;
	padding-bottom: 9px;
	margin-bottom: 2em;
	background-image: linear-gradient(to right, #331D0F, #331D0F 5px, transparent 5px, transparent 5px);
	background-size: 13px 1px;
	background-position: left bottom;
	background-repeat: repeat-x;
}
.news-date{
	padding-bottom: 5px;
}
.news-text{
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.news-item a{
	transition: opacity .5s ease;
}
.news-item:hover a{
	opacity: 0.6;
}


/*shop*/
.shop-address{
	margin: 20px;
}
.shop-address li{
	list-style: none;
	padding-bottom: 10px;
}
.map{
	position: relative;
	width: 100%;
	padding-top: 66.66%;
	height: 0;
}
.map iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.shop-info{
	display: flex;
	align-items: center;
	flex-direction: column;
	padding-top: 40px;
}
h4{
	padding-bottom: 20px;
	display: flex;
	align-items: center;
}
h4::before,h4::after{
	content: '';
	height: 1px;
	background-color: #3A3A3A;
	width: 30px;
}
h4::before{
	margin-right: 10px;
}
h4::after{
	margin-left: 10px;
}
.shop-info li{
	padding-bottom: 10px;
}
.shop-info li span{
	font-size: 0.75em;
}


/*contact*/
.contact{
	text-align: center;
	margin: 150px 0;
}
.contact-box{
	display: inline-block;
	border: 1px solid #3A3A3A;
	padding: 2em 4em;
	font-size: clamp(0.875rem, 0.718rem + 0.96vw, 1.563rem);
}
.tel{
	font-size: clamp(1rem, 0.829rem + 1.05vw, 1.75rem);
	padding-top: 1em;
}


/*last*/
.last-text{
	font-family: "Zen Old Mincho", serif;
	font-size:  clamp(0.938rem, 0.764rem + 0.77vw, 1.438rem);
	text-align: center;
	padding: 150px 0 10%;
}
.last-img img{
	width: 70px;
	margin: auto;
}
/*テキストアニメーション*/
.slide-in{
	overflow: hidden;
	display: inline-block;
}
.slide-in-inner{
	display: inline-block;
}
.leftAnime{
	opacity: 0;
}
.slideAnimeLeftRight{
	animation-name: slideTextX100;
	animation-duration: 2s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes slideTextX100{
	from{
		transform: translateX(-100%);
		opacity: 0;
	}
	to{
		transform: translateX(0);
		opacity: 1;
	}
}
.slideAnimeRightLeft{
	animation: slideTextX-100;
	animation-duration: 2s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes slideTextX-100{
	from{
		transform: translateX(100%);
		opacity: 0;
	}
	to{
		transform: translateX(0);
		opacity: 1;
	}
}



/*footer*/
footer{
	border-top: 1px solid #3A3A3A;
	margin: 0 15px;
}
.footer-logo{
	width: 150px;
	margin: 0 auto;
	padding: 15px 0;
}

.footer-sns{
	display: flex;
	justify-content: center;
	padding: 20px 0;
}
.sns-logo{
	width: 33px;
	height: auto;
	margin: 0 30px;
}

.copy{
	text-align: center;
	padding: 10px;
}


/*レスポンシブ*/

@media(min-width:768px){	
/*header*/
	.header-main{
		height: 80px;
	}
	.sp-header{
		margin: 0 40px;
	}
	.nav-button{
		top: 40px;
		right: 40px;
		width: 50px;
		height: 50px;
	}
	.bar{
		width: 23px;
		left: 13px;
	}
	.bar1{
		top: 15px;
	}
	.bar2 {
		top: 24px;
	}
	.bar3{
		top: 33px;
	}
	.nav-button.active .bar1 {
		left: 15px;
		transform: translateY(9px) rotate(-45deg);
	}
	.nav-button.active .bar3 {
		left: 15px;
		transform: translateY(-9px) rotate(45deg);
	}
	.nav-item{
		font-size: 18px;
	}
	
/*topic*/
	.slick-prev,
	.slick-next{
		top: 42%;
		height: 15px;
		width: 15px;
	}
	
/*about*/
	.about{
		padding: 0 80px;
	}
	.about-img{
		width: 50%;
	}
	.about-img{
		position: absolute;
		z-index: 2;
	}
	.about-box{
		padding-bottom: 300px;
	}
	.about-box02{
		display: flex;
		flex-direction: row-reverse;
	}
	h3{
		text-align: left;
		padding-top: 35%;
	}
	.about-text{
		width: 70%;
		position: relative;
		top: 200px;
		padding: 0 60px 20px;
	}
	.about-text01{
		margin: 0 0 0 auto;
	}
	.about-text02{
		margin: 0 auto 0 0;
	}
	
	
/*menu*/
	.menu-text{
		padding: 50px;
	}
	
/*button*/
	.button{
		padding-top: 70px;
	}
	
	
/*news*/
	.news .title{
		margin-bottom: 80px;
	}
	.news-box{
		width: 80%;
	}
	.news-date{
		padding-bottom: 10px;
	}
	.news-item{
		padding-bottom: 35px;
	}
	.news{
		padding-top: 90px;
		width: 80%;
		max-width: 1000px;
		margin: 15% auto;
	}
	
	
/*shop*/
	.shop-box{
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.map-wrap{
		width: 47%;
	}
	.shop-container{
		margin-left: 35px;
	}
	.shop-address{
		margin: 0 0 20px;
	}
	.shop-info{
		margin: 0 1em;
	}
	
	
/*last*/
.last-img img{
	width: 100px;
}
}



@media(min-width:1024px){
/*header*/
	.header-main{
		margin: 0 40px;
	}

/*topic*/
	.slider img{
		width: 40vw;
	}
	
/*about*/
	h3{
		padding-top: 20%;
	}
	.about{
		padding: 0;
		margin: 110px 100px 0;
	}
	.about-box{
		padding-bottom: 250px;
		
	}
	.about-img{
		width: 43%
	}
	.about-text{
		width: 52%;
		top: 115px;
	}
	
/*menu*/
	.menu{
		background: linear-gradient(rgba(51,29,15,0.3),rgba(51,29,15,0.3)),url("../img/top-page/menu02.png");
		background-size: cover;
		background-position: center;
		padding: 75px 0;
	}
	
/*shop*/	
	.shop{
		margin: 0 100px;
	}
	.shop-container{
		margin-left: 45px;
	}
	h4{
		font-size: 1.1em;
	}
	.shop-address{
		font-size: 1.1em;
		padding-top: 0;
	}
	.shop-info li{
		font-size: 1.1em;
		padding-bottom: 15px;
	}
	.shop-info li span{
		font-size: 1em;
	}
	
	.contact{
		margin-top: 200px;
	}
	
	
/*footer*/
	footer{
		margin: 0 50px;
	}
	.footer-container{
		display: flex;
		margin: 30px 200px;
		justify-content: space-between;
		align-items: flex-end;
	}
	.footer-logo{
		width: 200px;
		margin: 0;
	}
	
	
}



@media(min-width:1280px){
/*header*/
	h1{
		padding-left: 30px;
	}
	.nav-sp{
		display: none;
	}
	.pc-header{
		display: block;
	}
	.pc-header ul{
		display: flex;
		list-style: none;
	}
	.pc-header .nav-item{
		padding: 0 30px;
		font-weight: 500;
	}
	.header{
		display: none;
	}
	.fadeDown {
		animation-name: fadeDownAnime;
		animation-duration: 0.5s;
		animation-fill-mode: forwards;
		opacity: 0;
		display: block;
	}
	.nav-pc{
		display: block;
		position: absolute;
		background: #D88D32;
		bottom: 20vh;
		z-index: 50;
		right: 0;
	}
	.nav-pc ul{
		list-style: none;
		padding: 70px 200px 70px 120px;
	}
	.nav-item{
		padding: 0.7em 0;
	}
	.nav-pc .nav-item a{
		color: #FFFEF8;
		position: relative;
	}
	.nav-pc .nav-item a::after{
		position: absolute;
		content: '';
		width: 100%;
		height: 1px;
		left: 0;
		bottom: -3px;
		background: #FFFEF8;
		transform: scale(0,1);
		transform-origin: center top;
		transition: transform 0.3s;
	}
	.nav-pc .nav-item a:hover::after{
		transform: scale(1,1);
	}
	
/*mv*/
	.mv-inner{
		margin: 50px;
		top: 0;
		height: 85vh;
	}
	.mv-logo{
		display: block;
		width: 25%;
		position: absolute;
		top: 60px;
		left: 80px;
	}
	.title::before{
		top: 10%;
	}

	
/*topic*/
	.topic{
		margin-top: 100px;
	}
	.title{
		margin-bottom: 70px;
	}
	
	
/*about*/
	.about-box{
		margin: 0 auto;
		max-width: 950px
	}
	.about-img{
		width: 40%;
	}
	.about-text{
		padding-right:70px;
		padding-left: 70px;
	}
	.about-text p{
		font-size: 16px;
		line-height: 2.3em;
	}
	
/*title*/
	.title::before{
		width: 10px;
	}
	
/*menu*/
	.menu{
		padding: 110px 0;
	}

/*news*/
	.sp-title{
		display: none;
	}
	.sp-btn{
		display: none;
	}
	.pc-news{
		display: block;
	}
	.pc-btn{
		padding-top: 80px;
	}
	.news{
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 130px 0;
	}
	.pc-news{
		padding-right: 100px;
	}
	.news .title{
		margin: 0;
	}
	.news-box{
		width: 100%;
	}
	
	.news-date{
		margin-right: 45px;
	}
	
	
	
	
/*shop*/
	.map-wrap{
		width: 40%;
	}
	.shop-container{
		margin-left: 60px;
	}
	
/*last*/
	.last-img img{
		width: 130px;
	}
	
}
	@keyframes fadeDownAnime{
		from {
			opacity: 0;
			transform: translateY(-100px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}


@media(min-width:1440px){
/*about*/
	.about-img{
		width: 35%;
	}
}




























