@charset "utf-8";
/* CSS Document */
body{
	color: #493D37;
	background-color: #FCFAF7;
	font-size: 14px;
	font-family: "Zen Kaku Gothic New", sans-serif;
}
img{
	width: 100%;
}
a{
	text-decoration: none;
	color: #493D37;
}
h1,h2,h3,h4,h5,h6{
	font-size: inherit;
	font-weight: inherit;
}
h2, h3, h4{
	font-family: "Shippori Mincho", serif;
}

/*ローディング*/
.load_logo{
	position: fixed;
	z-index: 1000;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.load_page{
	animation-name: PageAnime;
	animation-delay: 1.5s;
	animation-duration: 1.2s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
	content: '';
	position: fixed;
	z-index: 900;
	width: 100%;
	height: 100vh;
	left: 0;
	bottom: 50%;
	transform: scaleY(1);
	background-color: #E6E2D9;
}
.load_page2{
	animation-name: PageAnime2;
	animation-delay: 1.5s;
	animation-duration: 1.2s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
	content: '';
	position: fixed;
	z-index: 900;
	width: 100%;
	height: 100vh;
	left: 0;
	top: 50%;
	transform: scaleY(1);
	background-color: #E6E2D9;
}
@keyframes PageAnime{
	0%{
		transform-origin: top;
		transform: scaleY(1);
	}
	100%{
		transform-origin: top;
		transform: scaleY(0);
	}
}
@keyframes PageAnime2{
	0%{
		transform-origin: bottom;
		transform: scaleY(1);
	}
	100%{
		transform-origin: bottom;
		transform: scaleY(0);
	}
}

/*ヘッダー*/
header{
	position: fixed;
	width: 100%;
	z-index: 100;
}
.header_container{
	position: absolute;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 0 20px;
	background: rgb(230,226,217,0.5);
}
.menu_button{
	position: relative;
	z-index: 200;
	width: 30px;
	height: 21px;
}
.bar{
	display: inline-block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	border-radius: 5px;
	background-color: #493D37;
}
.bar1{
	top: 0;
}
.bar2{
	top: 10px;
}
.bar3{
	bottom: 0px;
}
.menu_button.active .bar1{
	background-color: #FCFAF7;
	transform: translateY(9.5px) rotate(-45deg);
}
.menu_button.active .bar2{
	opacity: 0;
}
.menu_button.active .bar3{
	background-color: #FCFAF7;
	transform: translateY(-9.5px) rotate(45deg);
}
.nav_wrapper{
	width: 100%;
	height: 100vh;
	transition: all 0.5s;
	transform: translate(-100%);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background-color: #493D37;
	overflow-y: scroll;
	scrollbar-width: none;
}
.nav_wrapper.open{
	transform: translate(0);
}
.nav{
	position: absolute;
	top: 10%;
	left: 30%;
}
.nav li{
	list-style: none;
	font-family: "Zen Old Mincho", serif;
	font-size: 30px;
	padding-top: 15px;
}
.nav li a{
	display: inline-block;
	width: 100%;
	color: #FCFAF7;
}
.accordion{
	position: relative;
	cursor: pointer;
	transition: all .5s ease;
	color: #FCFAF7;
	font-size: 30px;
}
.accordion::before{
	content: '';
	width: 10px;
	height: 10px;
	border: 0;
	border-bottom: solid 2px #FCFAF7;
	border-right: solid 2px #FCFAF7;
	transform: rotate(45deg);
	position: absolute;
	top: 43%;
	left: 110%;
	transition: all 0.4s;
}
.accordion.close::before{
	transform: rotate(225deg);
}
.box{
	display: none;
}
.box-list{
	display: flex;
	flex-direction: column;
	padding-left: 20px;
}
.box-list a{
	font-size: 20px;
	padding-top: 5px;
}
.box.open {
  transform: translate(0);
}
h1{
	position: absolute;
	transform: translate(-50%, 0%);
	left: 50%;
}
.icon img{
	height: 25px;
	width: auto;
}
.icon{
	display: flex;
	justify-content: space-between;
	width: 90px;
}
.icon a{
	color: #493D37;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 5px 0;
}
.icon span{
	font-size: 0.7rem;
	padding-top: 5px;
}



/*mv*/
.mv{
	background-image: url(../img/mv.jpg);
	background-size: cover;
	background-position: right bottom;
	position: relative;
	height: 100vh;
}
h2{
	color: #FCFAF7;
	font-size: 30px;
	font-weight: 400;
	text-shadow: 4px 4px 10px #493D37;
	padding-top: 20vh;
	margin-left: 20%;
	writing-mode: vertical-lr;
	display: flex;
	align-items: center;
}

.point_text{
	font-size: 50px;
	padding: 15px 0;
	color: #E88282;
	text-shadow: 3px 3px 5px #FCFAF7;
}
h2 p{
	opacity: 0;
	animation: textanimation 1s forwards;
}
h2 p:nth-child(1){
	animation-delay: 2.2s;
}
h2 p:nth-child(2){
	animation-delay: 2.4s;
}
h2 p:nth-child(3){
	animation-delay: 2.6s;
}
h2 p:nth-child(4){
	animation-delay: 2.8s;
}
h2 p:nth-child(5){
	animation-delay: 3s;
}
h2 p:nth-child(6){
	animation-delay: 3.2s;
}
h2 p:nth-child(7){
	animation-delay: 3.4s;
}
h2 p:nth-child(8){
	animation-delay: 3.7s;
}
h2 p:nth-child(9){
	animation-delay: 4s;
}

@keyframes textanimation{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}





/*cintainer 共通*/
.container{
	margin: 0 20px;
	border-bottom: 2px solid #E6E2D9;
}
.container2{
	margin: 0 20px;
}
h3{
	font-size: 45px;
	padding: 25px 0;
	font-weight: 800;
}

/*フェードインアニメーション*/
.fadeIn{
	transform: translateY(50px);
	transition: all 1.5s;
	opacity: 0;
}
.fadeIn.active{
	opacity: 1;
	transform: translateY(0);
}


/*テキストアニメーション*/
.slide_animation{
	opacity: 0;
}
.slide_animation.active{
	width: 100%;
	overflow: hidden;
	opacity: 1;
	animation: slideText 2.5s forwards;
}
@keyframes slideText{
	0%{
		width: 0;
		opacity: 0;
	}
	100%{
		width: 100%;
		opacity: 1;
	}
}


/*ボタン*/
.button{
	text-align: center;
	padding: 35px 0;
}
.button a{
	font-family: "Zen Old Mincho", serif;
	color: #FCFAF7;
	background-color: #B68C5C;
	padding: 7px 10px 7px 0;
	width: 100px;
	border-radius: 5px;
	display: inline-block;
	box-shadow: 5px 5px 2px rgba(75, 60, 55, 0.2);
	font-size: 17px;
	transition: 0.3s;
}
.button a:hover{
	transform: translate3d(5px, 5px, 2px);
	background-color: #D6B48E;
	box-shadow: none;
}
.button span{
	padding: 0 10px;
}
.button img{
	width: 8px;
}




/*about*/
.about_item{
	display: flex;
	flex-direction: column;
}
.about_item img{
	/*display: none;*/
	width: 60%;
	height: auto;
	display: block;
	margin: auto;
}
.about_item p{
	line-height: 25px;
	padding: 15px 15px 0;
}

/*product*/
h4{
	padding-left: 15px;
	padding-bottom: 10px;
	font-size: 1.14rem;
	font-weight: 800;
}

.item{
	list-style: none;
}


.slider{
	width: 95%;
	margin: 0 auto;
}
.slider img{
	width: 100%;
	height: auto;
}

.slider .slick-slide{
	margin: 0 5px;
}
.slick-prev,
.slick-next{
	position: absolute;
	top: 30%;
	cursor: pointer;
	outline: none;
	border-top: 2px solid #3A3A3A;
	border-right: 2px solid #3A3A3A;
	height: 15px;
	width: 15px;
}
.slick-prev{
	left: -4%;
	transform: rotate(-135deg);
	z-index: 1;
}
.slick-next{
	right: -4%;
	transform: rotate(45deg);
}
.slick-dots{
	text-align: center;
	margin: 20px 0 0 0;
}
.slick-dots li{
	display: inline-block;
	margin: 0 5px;
}
.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;
}


/*news*/
.news_block{
	padding: 0 15px;
}
.news_list dt{
	display: none;
}
.news_list{
	padding-top: 15px;
}
.news_title{
	padding-top: 5px;
	line-height: 1.5rem;
}
.news_title a{
	color: #493D37;
	text-decoration: underline;
}

/*shop contact FAQ*/
.button_2{
	color: #493D37;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 35px;
}
.button_2 span{
	padding-right: 10px;
}
.text_link img{
	width: 10px;
	height: auto;
}
.text_link{
	padding: 45px;
}



/*フッター*/
footer{
	background-color: #E6E2D9;
	padding: 10px 40px;
}
.footer_icon{
	display: flex;
	justify-content: space-between;
	max-width: 500px;
	margin: 10px auto;
	align-items: center;
}
.footer_logo{
	display: flex;
	align-items: center;
}
.shop_name{
	padding-left: 10px;
	text-align: center;
}
.shop_name p{
	font-size: 10px;
	padding-bottom: 5px;
}
.footer_logoimg{
	width: 50px;
}
.footer_logofont{
	width: 80px;
}

.sns{
	display: flex;
}
.sns img{
	width: 30px;
	height: auto;
	margin: 0 10px;
}

.copy{
	text-align: center;
	padding-top: 20px;
}
.copy small{
	color: #493D37;
}


@media(min-width:768px){
	body{
		font-size: 18px;
	}
	.header_container{
		padding: 0 30px;
	}
	.logo img{
		width: 100px;
		height: auto;
	}
	.icon{
		width: 130px;
	}
	.icon img{
		height: 35px;
		width: auto;
	}
	.container{
		margin: 0 50px;
	}
	h2{
		font-size: 40px;
	}
	h3{
		font-size: 3.75rem;
		padding-top: 40px;
		padding-bottom: 35px;
	}
	.point_text{
		font-size: 60px;
	}
	.about_item p{
		line-height: 30px;
		width: 80%;
		margin: auto;
	}
	.button{
		padding: 40px 0;
	}
	h4{
		font-size: 1.44rem;
		padding-left: 30px;
		padding-bottom: 15px;
	}
	.item{
		width: 30%;
	}
	.item_name{
		padding-top: 15px;
		font-size: 0.89rem;
	}
	.price{
		font-size: 1.31rem;
	}
	.news_block{
		display: flex;
		justify-content: space-between;
		padding: 0 30px;
	}
	.news_list dt{
		display: block;
	}
	.news_list{
		width: 32%;
	}
	.news_title{
		font-size: 0.875rem;
		line-height: 1.25rem;
	}
	.text_link{
		padding: 60px;
	}
	
	
	
	
}
@media(min-width:1024px){
	.header_container{
		padding: 0 50px;
	}
	.menu_button{
		width: 40px;
		height: 31px;
	}
	.bar2{
		top: 15px;
	}
	.menu_button.active .bar1{
		transform: translateY(15px) rotate(-45deg);
	}
	.menu_button.active .bar3{
		transform: translateY(-15px) rotate(45deg);
	}
	.nav_wrapper{
		width: 40%;
	}
	.logo img{
		width: 120px;
	}
	.icon{
		width: 150px;
	}
	.icon img{
		height: 40px;
		width: auto;
	}
	.icon span{
		font-size: 0.83rem;
	}
	h2{
		font-size: 50px;
	}
	h3{
		font-size: 5rem;
		padding-top: 60px;
		padding-bottom: 50px;
	}
	.point_text{
		font-size: 75px;
		padding: 20px 0;
	}
	.about_item p{
		line-height: 40px;
		padding-left: 70px;
	}
	.about_item{
		padding: 0 50px;
		flex-direction: row;
	}
	.about_item img{
		width: 50%;
	}
	.button{
		padding: 80px 0;
	}
	.button a{
		padding: 10px 0;
		width: 150px;
		font-size: 23px;
		border-radius: 10px;
	}
	.button span{
		padding: 0 20px;
	}
	.button img{
		width: 10px;
	}
	h4{
		font-size: 2.22rem;
		padding-left: 50px;
		padding-bottom: 35px;
	}
	
	

	
	
	
	.item_name{
		padding-top: 10px;
	}
	.price{
		font-size: 1.44rem;
	}
	.news_block{
		padding: 0 50px;
	}
	.news_title{
		font-size: 1rem;
		line-height: 1.4rem;
	}
	.text_link{
		padding: 70px;
	}
	.button_2{
		font-size: 60px;
	}
	
	footer{
		padding: 30px 40px;
	}
	.shop_name{
		padding-left: 20px;
	}
	.shop_name p{
		font-size: 15px;
	}
	.footer_logoimg{
		width: 80px;
	}
	.footer_logofont{
		width: 120px;
	}

}




@media(min-width:1280px){
	h2{
		writing-mode: horizontal-tb;
		padding-top: 30vh;
		margin-left: 10%;
		align-items: baseline;
	}
	.sns img{
		margin: 0 20px;
	}
}

@media(min-width:1440px){
	body{
		font-size: 20px;
	}
	.nav li{
		font-size: 40px;
	}
	.accordion{
		font-size: 40px;
	}
	.box-list{
		padding-left: 30px;
	}
	.box-list a{
		font-size: 30px;
		padding-top: 10px;
	}
	.logo img{
		width: 140px;
	}
	.icon{
		width: 255px;
		padding: 15px 0;
	}
	.icon img{
		padding-right: 15px;
	}
	.icon a{
		flex-direction: row;
	}
	
	.container{
		margin: 0 100px;
	}
	/*h2{
		writing-mode: horizontal-tb;
		padding-top: 30vh;
		margin-left: 10%;
		align-items: baseline;
	}*/
	.point_text{
		padding: 0 20px;
	}
	.mv{
		background-position: right bottom -300px;
	}
	/*h3{
		font-size: 100px;
		padding: 80px 0;
	}*/
	.about_item p{
		padding-right: 45px;
	}
	.about_item{
		padding: 0 100px;
	}
	.button{
		padding: 100px 0;
	}
	h4{
		font-size: 40px;
		padding-left: 50px;
		padding-bottom: 45px;
	} 
	.price{
		font-size: 1.875rem;
	}
	.item_name{
		font-size: 1.44rem;
	}
	.news_block{
		padding: 0 100px;
	}
	.news_title{
		font-size: 20px;
		line-height: 1.56rem;
	}
	.button_2 span{
		padding-right: 20px;
	}
	.text_link img{
		width: 15px;
	}
}
@media(min-width:1920px){
	body{
		font-size: 25px;
	}
	.menu_button{
		width: 50px;
		height: 41px;
	}
	.bar2{
		top: 20px;
	}
	.menu_button.active .bar1{
		transform: translateY(18px) rotate(-45deg);
	}
	.menu_button.active .bar3{
		transform: translateY(-18px) rotate(45deg);
	}
	.nav li{
		font-size: 50px;
	}
	.accordion{
		font-size: 50px;
	}
	.accordion::before{
		width: 20px;
		height: 20px;
		top: 40%;
	}
	.box-list{
		padding-left: 30px;
	}
	.box-list a{
		font-size: 40px;
	}
	.logo img{
		width: 160px;
	}
	.icon{
		width: 400px;
		padding: 20px 0;
	}
	.icon img{
		height: 60px;
	}
	.icon span{
		font-size: 1.44rem;
	}
	.mv{
		background-position: right bottom -450px;
	}
	h2{
		font-size: 60px;
	}
	.point_text{
		font-size: 80px;
	}
	.container{
		margin: 0 150px;
	}
	h3{
		font-size: 110px;
		padding: 100px 0;
	}
	.about_item p{
		padding-right: 80px;
		line-height: 50px;
	}
	.about_item{
		padding: 0 200px;
	}
	h4{
		padding-left: 200px;
		padding-bottom: 50px;
	}
	.price{
		font-size: 2.19rem;
	}
	.news_title{
		font-size: 23px;
		line-height: 30px;
	}
	.news_block{
		padding: 0 200px;
	}
	.item_name{
		font-size: 1.56rem;
	}
	.text_link{
		padding: 100px;
	}
	.news_block{
		padding: 0 200px;
	}
	
	.footer_icon{
		max-width: 800px;
	}
	.shop_name{
		padding-left: 30px;
	}
	.shop_name p{
		font-size: 18px;
	}
	.footer_logoimg{
		width: 100px;
	}
	.footer_logofont{
		width: 180px;
	}
	.sns img{
		width: 50px;
	}
}

















