@charset "euc-jp";
/* CSS Document */
html,body{
	font-family: "Yu Gothic", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
	font-weight: 500;
	color: #000000;
}
body{
	background-image: url("../img/back-img.jpg");
	background-repeat: repeat;
}
.SP{
	display: none;
}
.Futura{
	font-family: "futura-pt", sans-serif;
	font-weight: 700;
	font-style: normal;
}

/*ヘッダー*/
header{
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20;
	transition: .3s ease;
}
header.head-active{
	background-color: rgba(49,20,16,0.6);
}
.head-inner{
	width: 100%;
	height: 100px;
	padding: 0 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.left-head{
	position: relative;
}
.head-logo{
	display: block;
	position: absolute;
	top: -25px;
	left: 0;
	width: 190px;
	transition: .3s ease;
}
header.head-active .head-logo{
	top: 0px;
	transform: translateY(-50%);
	width: 150px;
}
.head-logo .normal img + img{
	margin-top: 20px;
}
.head-logo .active{
	display: none;
}
header.head-active .head-logo .normal{
	display: none;
}
header.head-active .head-logo .active{
	display: block;
}
.right-head{
	
}
.right-head ul{
	display: flex;
}
.right-head ul li{
	color: #ffffff;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.13em;
}
.right-head ul li:not(:first-of-type){
	margin-left: 2em;
}
.right-head ul li a{
	transition: .3s ease;
}
.right-head ul li a:hover{
	opacity: 0.5;
}


/*トップコンテンツ*/
.top-contents{
	width: 100%;
	height: 100vh;
}
.top-contents-inner{
	width: 100%;
	height: 100%;
	position: relative;
}
.top-contents-inner::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: #000000;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 85%, rgba(0, 0, 0, 0.4) 100%);
}
.top-copy{
	position: absolute;
	bottom: 40px;
	left: 40px;
	z-index: 5;
	width: 70%;
}
.top-copy .sub{
	width: 80%;
}
.top-copy .sub + img{
	margin-top: 15px;
}
.top-slide{
	width: 100%;
	height: 100%;
}
.top-slide .slick-slide{
	position: relative;
	overflow: hidden;
}
.top-slide .slick-slide img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/*メインコンテンツ*/
main{
	
}
.contents{
	padding-top: 180px;
}
.about-us .contents-inner{
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}
.about-us-sentence{
	color: #311410;
}
.about-us-sentence h2{
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.8em;
	letter-spacing: 0.075em;
}
.about-us-sentence p{
	margin-top: 55px;
	font-size: 1rem;
	font-weight: 700;
	line-height: 2em;
	letter-spacing: 0.13em;
}
.about-us-img{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 50%;
	height: 80%;
}
.about-us-img .master-img{
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	width: 75%;
	height: 55%;
	background-image: url("../img/master.jpg");
	background-position: center top 15%;
	background-size: cover;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	opacity: 0;
	filter: blur(12px);
	transform: translateY(12px);
}
.about-us-img .shop-img{
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
	width: 75%;
	height: 55%;
	background-image: url("../img/shop.jpg");
	background-position: center center;
	background-size: cover;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	opacity: 0;
	filter: blur(12px);
	transform: translateY(12px);
}
@media (prefers-reduced-motion: reduce) {
  .master-img,
  .shop-img { transition: none !important; }
}



/*無限スライド*/
.middle-slide-wrap{
	margin-top: 180px;
}
/* 最低限のスタイル（必要に応じて調整） */
.slide-viewport {
	overflow: hidden;
	position: relative;
	width: 100%;
}
.left-slide, 
.right-slide{
	display: flex;
	flex-wrap: nowrap;
	gap: 0px; /* 項目間の余白 */
	list-style: none;
	margin: 0;
	padding: 0;
	will-change: transform;
}
.left-slide > li,
.right-slide > li{
	flex: 0 0 auto;
	width: 500px;
	height: 500px;
	position: relative;
	overflow: hidden;
}
.left-slide > li img,
.right-slide > li img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*商品一覧*/
.contents-title{
	text-align: center;
	color: #311410;
}
.contents-title h2{
	font-size: 3rem;
	letter-spacing: 0.13em;
}
.contents-title p{
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.22em;
}
.lineup{
	margin-top: 80px;
}
.lineup li.slick-slide{
	width: 380px;
	margin: 0 15px; 
}
.lineup li.slick-slide a{
	transition: .3s ease;
}
.lineup li.slick-slide a:hover{
	opacity: 0.5;
}
.item-img{
	width: 100%;
	height: 380px;
	position: relative;
	overflow: hidden;
	-webkit-border-radius: 20px;
	border-radius: 20px;
}
.item-img img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.item-info{
	margin-top: 15px;
}
.item-info h3{
	font-size: 1rem;
	letter-spacing: 0.13em;
}
.item-info p{
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.13em;
}
a.lineup-link{
	display: block;
	margin: 80px auto 0;
	width: 90%;
	max-width: 1200px;
	height: 90px;
	color: #ffffff;
	background-color: #311410;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 90px;
	letter-spacing: 0.13em;
	transition: .3s ease;
}
a.lineup-link:hover{
	background-color: rgba(49,20,16,0.50);
}

/*ブランド紹介*/
.brand-info{
	margin: 80px auto 0;
	width: 90%;
	max-width: 1200px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.brand-info li{
	width: calc(50% - 20px);
	height: 580px;
	position: relative;
	overflow: hidden;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	background-position: center center;
	background-size: cover;
}
.brand-info li.tout-va-bien{
	background-image: url("../img/tout-va-bien-item.jpg");
}
.brand-info li.tagayasu{
	background-image: url("../img/tagayasu-item.jpg");
}
.brand-info li a{
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}
.brand-info li a::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: rgba(49,20,16,0.60);
	transition: .3s ease;
}
.brand-info li a:hover::before{
	background-color: rgba(49,20,16,0.80);
}
.brand-copy{
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	transform: translate(-50%,-50%);
	width: 100%;
	text-align: center;
}
.tout-va-bien .brand-copy img{
	width: 85%;
	margin: 20px auto 0;
}
.tagayasu .brand-copy img{
	width: 60%;
	margin:  0 auto;
}
.brand-copy p{
	color: #ffffff;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.13em;
}
.tagayasu .brand-copy p{
	margin-top: 20px;
}


/*カテゴリー一覧*/
.category-list{
	width: 90%;
	max-width: 1200px;
	margin: 80px auto 0;
	display: flex;
	flex-wrap: wrap;
}
.category-list li{
	width: calc(100% / 3 - 30px);
	margin: 0 15px;
}
.category-list li a{
	display: block;
	width: 100%;
	height: 90px;
	color: #ffffff;
	background-color: #311410;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	text-align: center;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 90px;
	letter-spacing: 0.13em;
	transition: .3s ease;
}
.category-list li a:hover{
	background-color: rgba(49,20,16,0.50);
}
.category-list li:nth-of-type(n+4){
	margin-top: 30px;
}

/*ページ下部イメージ*/
.bottom-img-wrap {
	margin-top: 180px;
	position: relative;
	width: 100%;
	height: 600px;
	overflow: hidden;
}
.bottom-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 180%; /* 余裕を持たせて拡大 */
	background-image: url("../img/bottom-img.jpg");
	background-size: cover;
	background-position: center center;
}


/*アクセス*/
.access-map{
	width: 100%;
	max-width: 1200px;
	margin: 80px auto 0;
}
.access-map iframe{
	height: 600px;
}
.access-info{
	margin-top: 60px;
	text-align: center;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.13em;
}


/*フッター*/
footer{
	margin-top: 180px;
	padding: 80px 40px;
	color: #ffffff;
	background-color: #311410;
}
.foot-inner{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
a.foot-logo{
	display: block;
	width: 230px;
	transition: .3s ease;
}
a.foot-logo:hover{
	opacity: 0.5;
}
.left-foot p{
	margin-top: 30px;
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 2em;
	letter-spacing: 0.075em;
}
ul.foot-list{
	display: flex;
}
ul.foot-list > li:not(:first-of-type){
	margin-left: 30px;
}
ul.foot-list li h3{
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.075em;
}
ul.foot-sub-list{
	margin-top: 20px;
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 2em;
	letter-spacing: 0.075em;
}
ul.foot-sub-list li{
	transition: .3s ease;
}
ul.foot-sub-list li:hover{
	opacity: 0.5;
}
p.copyright{
	margin-top: 100px;
	text-align: right;
	font-size: 0.8rem;
	font-weight: 400;
}





/*スマートフォン*/
@media screen and (max-width:780px) {
	.SP{
		display: block;
	}
	.PC{
		display: none;
	}
	
	/*ヘッダー*/
	.head-inner{
		height: 60px;
		padding: 0 20px;
	}
	.head-logo{
		top: -10px;
		width: 120px;
	}
	header.head-active .head-logo{
		top: -5px;
		width: 100px;
	}
	.right-head nav{
		position: absolute;
		top: 60px;
		left: 0px;
		z-index: 0;
		width: 100%;
		background-color: rgba(49,20,16,0.70);
		transform: translateX(-100%);
		opacity: 0;
		transition: .6s ease;
	}
	.right-head nav.active{
		transform: none;
		opacity: 1;
	}
	.right-head ul{
		flex-wrap: wrap;
	}
	.right-head ul li{
		width: 100%;
		text-align: center;
	}
	.right-head ul li:not(:first-of-type){
		margin-left: 0px;
	}
	.right-head ul li a{
		display: block;
		padding: 0.75em 0;
	}
	.right-head ul li:not(:last-of-type){
		border-bottom: 1px dashed #ffffff;
	}
	.cart-btn{
		position: absolute;
		top: 0;
		right: 20px;
		z-index: 1;
		width: 40px;
		height: 60px;
	}
	.cart-btn span{
		position: absolute;
		width: 100%;
		height: 2px;
		background-color: #ffffff;
		transition: .3s ease;
	}
	.cart-btn span:nth-of-type(1){
		top: 30%;
		left: 0;
	}
	.cart-btn span:nth-of-type(2){
		top: 50%;
		transform: translateY(-50%);
		left: 0;
	}
	.cart-btn span:nth-of-type(3){
		bottom: 30%;
		left: 0;
	}
	.cart-btn.active span:nth-of-type(1),
	.cart-btn.active span:nth-of-type(3){
		opacity: 0;
	}
	
	/*トップコンテンツ*/
	.top-copy{
		bottom: 20px;
		left: 20px;
		width: 85%;
	}
	.top-copy .sub{
		width: 100%;
	}
	.top-copy img.SP{
		margin-top: 10px;
	}
	
	/*メインコンテンツ*/
	.contents{
		padding-top: 80px;
	}
	.about-us-sentence h2{
		font-size: 1.1rem;
	}
	.about-us-sentence p{
		margin-top: 25px;
		font-size: 0.8rem;
	}
	.about-us-img{
		margin-top: 40px;
		position: relative;
		width: 100%;
		height: 300px;
	}
	.about-us-img .master-img,
	.about-us-img .shop-img{
		-webkit-border-radius: 10px;
		border-radius: 10px;
	}
	
	/*無限スライド*/
	.middle-slide-wrap{
		margin-top: 80px;
	}
	.left-slide > li,
	.right-slide > li{
		width: 200px;
		height: 200px;
	}
	
	/*商品一覧*/
	.contents-title h2{
		font-size: 2rem;
	}
	.contents-title p{
		font-size: 0.9rem;
	}
	.lineup{
		margin-top: 40px;
	}
	.lineup li.slick-slide{
		width: 100%;
		margin: 0 15px;
	}
	.item-img{
		height: 250px;
	}
	a.lineup-link{
		margin-top: 40px;
		height: 60px;
		font-size: 1rem;
		line-height: 60px;
		-wegbkit-border-radius: 10px;
		border-radius: 10px;
	}
	
	/*ブランド紹介*/
	.brand-info{
		margin-top: 40px;
	}
	.brand-info li{
		width: 100%;
		height: 250px;
	}
	.brand-info li + li{
		margin-top: 20px;
	}
	.brand-copy p{
		font-size: 0.8rem;
	}
	
	/*カテゴリー一覧*/
	.category-list{
		margin-top: 40px;
	}
	.category-list li{
		width: 100%;
		margin: 0;
	}
	.category-list li:nth-of-type(n+2){
		margin-top: 15px;
	}
	.category-list li a{
		height: 60px;
		font-size: 1rem;
		line-height: 60px;
		-wegbkit-border-radius: 10px;
		border-radius: 10px;
	}
	
	/*ページ下部イメージ*/
	.bottom-img-wrap{
		margin-top: 80px;
		height: 350px;
	}
	.access-map{
		margin-top: 40px;
	}
	.access-map iframe{
		height: 300px;
	}
	.access-info{
		margin-top: 20px;
		font-size: 0.8rem;
	}
	
	/*フッター*/
	footer{
		margin-top: 80px;
		padding: 40px 20px;
	}
	.left-foot,
	.right-foot{
		width: 100%;
	}
	a.foot-logo{
		margin: 0 auto;
		width: 180px;
	}
	.left-foot p{
		font-size: 0.8rem;
	}
	.right-foot{
		margin-top: 40px;
	}
	ul.foot-list{
		flex-wrap: wrap;
	}
	ul.foot-list > li{
		width: 100%;
	}
	ul.foot-list > li:not(:first-of-type){
		margin-top: 40px;
		margin-left: 0px;
	}
	ul.foot-sub-list{
		margin-top: 10px;
	}
	p.copyright{
		margin-top: 80px;
		text-align: center;
	}
}