/*--動画--*/
.moviewp {
	position: relative;
	width: 100%;
	overflow: hidden;
    margin: 70px 0 0 0;
	background: #000000;
}

.moviewp::after{
    content: "";
    display: block;
    padding-top: 47%;
}

.movie {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
}

.movie video {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
}

@media screen and (max-width:1366px){
    .moviewp::after{
        padding-top: 46%;
    }
}
@media screen and (max-width:834px){
    .moviewp {
        margin: 80px 0 0 0;
    }
    .moviewp::after{
        padding-top: 56%;
    }
}

.scrolldown1 {
	position: absolute;
	left: 50%;
	bottom: 10px;
	height: 100px;
  }

  /*Scrollテキストの描写*/
  .scrolldown1 span {
	position: absolute;
	left: -16px;
	top: -20px;
	color: #f7f7f7;
	font-size: 12px;
	letter-spacing: 0.05em;
  }

  /* 線の描写 */
  .scrolldown1::after {
	content: "";
	position: absolute;
	top: 0;
	width: 1px;
	height: 80px;
	background: #f7f7f7;
	animation: pathmove 1.4s ease-in-out infinite;
	opacity: 0;
  }

  /*高さ・位置・透過が変化して線が上から下に動く*/
  @keyframes pathmove {
	0% {
	  height: 0;
	  top: 0;
	  opacity: 0;
	}

	30% {
	  height: 50px;
	  opacity: 1;
	}

	100% {
	  height: 0;
	  top: 80px;
	  opacity: 0;
	}
  }

/*---タイトル共通---*/

.unit-ttl{
	font-size: 2em;
	text-align: center;
	font-weight: 700;
}

.unit-ttl .unit-ttl-jp{
	font-size: 60%;
	color: #e1964d;
	display: block;
}

/*---//タイトル共通---*/
.unit-block{
	padding: 0 0 80px;
}

/*--お知らせ--*/

.information{
	margin: 60px 0 0;
}

.information .unit-ttl {
	text-align: left;
	padding: 20px;
}

.information .inner{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	/* border: 1px solid #cccccc; */
	box-sizing: border-box;
}

.information .inner .ttl-box{
	width: 20%;
}

.information .inner .info-list{
	width: 80%;
}
/* .information .info-list-inner{
	height: 140px;
	overflow-y: auto;
	padding: 10px;
} */

.information .info-list-inner::-webkit-scrollbar{
	width: 4px;
}

.information .info-list-inner::-webkit-scrollbar-track{
	background-color: #fff;
 }
 .information .info-list-inner::-webkit-scrollbar-thumb{
	background-color: #858585;
	border-radius: 2px;
 }

.information .info-list-inner li{
	margin: 0 0 20px;
	padding: 0 0 10px;
	border-bottom: 1px dotted #333;
}

.information .info-list-inner li a{
	position: relative;
	display: block;
}

.information .info-list-inner li a::after{
	content: "more";
	position: absolute;
	right: 10px;
	top: 30%;
	font-size: 1.2em;
	line-height: 1;
	transition: .3s;
}
.information .info-list-inner li a::before{
	content: "";
    position: absolute;
    right: 0px;
	top: 50%;
    width: 5px;
    height: 5px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: rotate(45deg);
	transition: .3s;
}
.information .info-list-inner li a:hover .info-ttl{
	color: #e1964d;
}
.information .info-list-inner li a:hover::before{
	right: 5px;
}
.information .info-list-inner li a:hover::after{
	right: 15px;
}

.information .info-list-inner li:last-child{
	margin: 0;
}
.information .info-item{
	display: flex;
	align-items: baseline;
}
.information .info-ttl{
	font-size: 1.4em;
	font-weight: 500;
	padding: 0 50px 0 0;
	display: inline-block;
	text-align: justify;
}

.information .news-date{
	color: 888888;
	display: inline-block;
	margin: 0 10px 0 0;
	font-family: 'Roboto', sans-serif;
	color: #888888;
	font-weight: 400;
	font-size: 1.3em;
}

.information .news-tag{
	color: 888888;
	display: inline-block;
	margin: 0 10px 0 0;
	color: #888888;
	font-weight: 400;
	font-size: 1.2em;
	border: 1px solid #888888;
	box-sizing: border-box;
	line-height: 1;
	padding: 5px;
}
.information .all-info-link{
	max-width: 190px;
	width: 50%;
	margin: 20px 0 0 auto;
}
.information .all-info-link a{
	display: block;
	padding: 10px;
	font-size: 1.4em;
	border: 1px solid #888888;
	box-sizing: border-box;
	text-align: center;
	position: relative;
	transition: .3s;
}

.information .all-info-link a:hover{
	border:  1px solid #bf8700;
	color: #bf8700;
}

.information .all-info-link a:hover::after{
	border-top: 1px solid #bf8700;
    border-right: 1px solid #bf8700;
}

.information .all-info-link a::after{
    content: "";
    position: absolute;
    right: 15px;
	top: 50%;
    width: 5px;
    height: 5px;
    border-top: 1px solid #888888;
    border-right: 1px solid #888888;
    transform: rotate(45deg) translateY(-50%);
}

@media screen and (max-width:834px) {

	.information .unit-ttl {
		text-align: center;
		padding: 0;
		margin: 0 0 20px;
	}

	.information .inner .ttl-box,
	.information .inner .info-list{
		width: 100%;
	}
	.information .inner .ttl-box{
		padding: 20px 0;
	}
	.information .inner .info-ttl{
		padding: 10px 20px 0 0;
	}
	.information .info-ttl .news-date{
		display: block;
		margin: 0 0 10px;
	}
	.information .info-list-inner li a::after{
		content: none;
	}
	.information .info-item{
		flex-wrap: wrap;
	}

}

/*--//お知らせ--*/

/*--トピックス--*/
.topics-list{
	margin: 40px 0 0;
}
.topics-list-inner{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.topics-list-inner li{
	width: 49%;
	border: 1px solid #cccccc;
	margin: 0 0 20px 0;
	display: flex;
}

.topics-list-inner li:hover{
	border:1px solid #e1964d;
}

.topics-list-inner li:nth-child(even){
	margin: 0 0 20px 0;
}

.topics-list-inner .topics-item a{
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	width: 100%;
}

.topics-list-inner .topics-item a:hover .imagebox img{
	transform: scale(1.2);
}

.topics-list-inner .topics-item .imagebox{
	width: 35%;
}

.topics-list-inner .topics-item .imagebox-inner{
	width: 100%;
	height: 100%;
	max-width: 260px;
	max-height: 260px;
	position: relative;
	overflow: hidden;
}

.topics-list-inner .topics-item .imagebox-inner::after{
	content: "";
    display: block;
    padding: 100% 0 0 0;
}

.topics-list-inner .topics-item .imagebox img{
	position: absolute;
	min-width: 100%;
	min-height: 100%;
	top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    object-fit: cover;
	transition: .3s;

}

.topics-list-inner .topics-item .textbox{
	width: 65%;
	padding: 15px;
}

.topics-list-inner .topics-item .textbox .topic-date{
	color: #888888;
	font-size: 1.2em;
}

.topics-list-inner .topics-item .textbox .topic-ttl{
	font-size: 1.8em;
	font-weight: 500;
	margin: 5px 0 10px;
}
.topics-list-inner .topics-item .textbox .topic-cont{
	font-size: 1.4em;
	color: #888888;
}

.readMore{
	border-bottom: 1px solid #888;
}
@media screen and (max-width:834px){

	.topics-list-inner .topics-item a{
		flex-wrap: wrap;
	}
	.topics-list-inner::after ,
	.topics-list-inner::before {
		content: "";
		display: block;
		width: 32%;
		order: 1;
	}
	.topics-list-inner li{
		width: 32%;
		margin: 0 0 20px 0;
		display: block;
	}

	.topics-list-inner .topics-item .imagebox,
	.topics-list-inner .topics-item .textbox{
		width: 100%;
	}
	.topics-list-inner .topics-item .textbox .topic-ttl{
		font-size: 1.6em;
	}
	.topics-list-inner .topics-item .textbox{
		padding: 10px 10px 20px;
	}
}
@media screen and (max-width:540px) {
	.topics-list-inner::after ,
	.topics-list-inner::before {
		content: none;
	}
	.topics-list-inner li{
		width: 48%;
	}

}



/*--//トピックス--*/

/*--イベント・キャンペーン--*/
.event .unit-ttl{
	margin: 0 0 40px;
}
.event .event-list-inner {
	max-width: 800px;/*--4つになるとき→1000に--*/
	margin: 0 auto;
}
.event .event-list-inner .event-item{
	max-width: 270px;
	padding: 0 10px;
}

.event .event-list-inner .event-item a:hover{
	opacity: 0.8;
}

.event .event-list-inner .event-item .event-txt{
	font-size: 1.4em;
	margin: 10px 0 0;
	font-weight: 500;
}

.event .event-slider .slide-arrow {
	position: absolute;
	top: 40%;
	cursor: pointer;
}

.event .event-slider .prev-arrow {
	left: -30px;
}

.event .event-slider .next-arrow {
	right: -40px;
}

.event-slider .slick-dots li button,
.selling-slider .slick-dots li button {
    font-size: 0;
    line-height: 0;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    text-indent: -9999px;
    display: block;
    width: 10px;
    height: 3px;
    margin: 0 5px;
    outline: 0;
    transition-duration: 0.3s;
}

.event-slider .slick-dots {
	display: flex;
	justify-content: center;
	margin: 20px 0 0;
}

.selling-slider .slick-dots{
	display: flex;
	justify-content: center;
	margin: 30px 0 0;
}

.selling-slider .slick-dots li,
.event-slider .slick-dots li{
	position: relative;
	padding: 0 5px;
	cursor: pointer;
}

.selling-slider .slick-dots li::after,
.event-slider .slick-dots li::after{
	content: "";
	display: block;
	width: 7px;
	height: 7px;
	border-radius: 3.5px;
	background: #888;
}
.selling-slider .slick-dots li.slick-active::after,
.event-slider .slick-dots li.slick-active::after{
	background: #333;
}

.event .bn_shopList{
	margin: 40px 0 0;
}

.event .bn_shopList img{
	width: 100%;
}

.event .bn_shopList a:hover{
	opacity: 0.8;
}

@media screen and (max-width:834px) {
	.event .event-list-inner{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.event .event-list-inner::after,
	.event .event-list-inner::before{
		content: "";
		display: block;
		width: 32%;
		order: 1;
	}

	.event .event-list-inner li{
		width: 32%;
		padding: 0;
		margin: 0 0 30px 0;
	}

	.event .event-list-inner .event-item{
		padding: 0;
	}
}

@media screen and (max-width:540px) {
	.event .event-list-inner::after,
	.event .event-list-inner::before{
		content: none;
	}
	.event .event-list-inner li{
		width: 48%;
	}
}

/*--//イベント・キャンペーン--*/

/*--商品紹介--*/

.product .unit-ttl{
	margin: 0 0 40px;
}

.product-list{
	overflow-x: scroll;
	overflow-y: hidden;
}

.product .product-list-inner{
	display: flex;
	flex-wrap: nowrap;
	width: 1600px;
}

.product .product-list-inner .product-item{
	display: flex;
	flex-wrap: wrap;
	/* width: 33.333%; */
	width: 400px;
}

.product .product-list-inner .product-item a{
	display: flex;
	flex-direction: column;
	transition: .3s;
}

.product .product-list-inner .product-name{
	font-family: 'Noto Serif JP', serif;
	font-size: 3.4em;
	font-style: italic;
	font-weight: 500;
	line-height: 1.2;
	margin: 0 0 10px;
}

.product .product-list-inner .product-cont{
	margin: 0 0 20px;
}

.product .product-list-inner .product-name-jp{
	font-family: 'Noto Sans JP', sans-serif;
	display: block;
	font-size: 12px;
	font-style: normal;
	margin: 10px 0 0;
}
.product .product-list-inner .textbox{
	padding: 0 15px 15px;
	position: relative;
	color: #fff;
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: space-between;
}

.product .product-list-inner .textbox::before{
	content: '';
    position: absolute;
    top: -5vw;
    padding-top: 5vw;
    width: 100%;
    height: 0;
    left: 0;
}

.product .product-list-inner .imagebox{
	width: 100%;
	display: flex;
	align-self: start;
	overflow: hidden;
}
.product .product-list-inner .product-item .imagebox img{
	transition: .3s;
	width: 100%;
}
.product .product-list-inner .product-item a:hover .imagebox img{
	transform: scale(1.2);
}

.product .product-list-inner .product-cont{
	font-size: 1.4em;
}

.product .product-list-inner .formal-block{
	background: #99614c;
}

.product .product-list-inner .formal-block::before{
    background: linear-gradient(to top,#99614c,rgba(153,97,76,0));
}

.product .product-list-inner .casual-block{
	background: #c47830;
}

.product .product-list-inner .casual-block::before{
    background: linear-gradient(to top,#c47830,rgba(196,120,48,0));
}

.product .product-list-inner .season-block{
	background: #e9854b;
}
.product .product-list-inner .season-block::before{
    background: linear-gradient(to top,#e9854b,rgba(233,133,75,0));
}

.product .product-list-inner .pack2-block{
	background: #ea684a;
}
.product .product-list-inner .pack2-block::before{
    background: linear-gradient(to top,#ea684a,rgba(233,133,75,0));
}

.product .product-list-inner .product-item a:hover .morelink::after,
.product .product-list-inner .product-item a:hover .morelink::before{
	right: 25px;
}

.product .product-list-inner .textbox .morelink{
	text-align: right;
	font-size: 1.4em;
	position: relative;
	padding: 0 30px 0 0;
}

.product .product-list-inner .textbox .morelink::after,
.product .product-list-inner .textbox .morelink::before{
	content: '';
	display: block;
	position: absolute;
	top: 60%;
	height: 1px;
	transition: .3s;
}

.product .product-list-inner .textbox .morelink::after{
	background: #fff;
    right: 30px;
	width: 10px;
    transform-origin: right center;
    transform: translate(30px, 0px) rotate(25deg);
}

.product .product-list-inner .textbox .morelink::before{
    background: #fff;
    right: 30px;
	width: 25px;
    transform: translate(30px, 0px);
}
@media screen and (max-width:834px) {
	.product .product-list-inner .product-item{
		/* width: 100%;
		display: block; */
	}

	.product .product-list-inner .imagebox img{
		width: 100%;
	}

	.product .product-list-inner .textbox::before{
		top: -10vw;
    	padding-top: 11vw;
	}
}
@media screen and (max-width:540px) {
	.product-list{
		overflow: unset;
	}
	.product .product-list-inner{
		width: 100%;
		flex-wrap: wrap;
	}
	.product .product-list-inner .product-item{
		width: 100%;
		display: block;
	}

	.product-list-inner{
		width: 100%;
	}

	.product .product-list-inner .imagebox img{
		width: 100%;
	}
}

/*--//商品紹介--*/

/*--量り売りクッキー--*/
.sellingWeight .unit-ttl{
	margin: 0 0 40px;
}
.selling-slider li{
	padding: 0 5px;
}

.selling-slider li .selling-txt{
	font-size: 1.4em;
	margin: 10px 0 0;
}

.selling-slider li .selling-txt .notice{
	font-size: 10px;
}

.selling-slider li a:hover{
	opacity: 0.8;
}

.selling-slider .slide-arrow {
	position: absolute;
	top: 40%;
	cursor: pointer;
}

.selling-slider .prev-arrow {
	left: -30px;
}

.selling-slider .next-arrow {
	right: -30px;
}

.slick-dots > li:only-child {
    display: none;
}
@media screen and (max-width:834px) {
	.selling-slider{
		display: flex;
	}
}
@media screen and (max-width:540px) {
	.selling-slider li{
		margin: 0 0 30px;
	}
	.selling-slider{
		flex-wrap: wrap;
	}
}

/*--//量り売りクッキー--*/


/*--カフェ＆ステラおばさんと焼き菓子--*/

.cafebox,.aboutbox{
	display: flex;
}

.aboutbox{
	flex-direction: row-reverse;
}

.cafebox .cafe-left,.aboutbox .about-left{
	overflow: hidden;
	height: 193px;
	width: 50%;
}

.cafebox .cafe-right,.aboutbox .about-right{
	width: 50%;
}

.cafebox .cafe-right{
	background: #582c2e;
	color: #fff;
	padding: 20px;
	box-sizing: border-box;
}

.aboutbox .about-right{
	background: #484337;
	color: #fff;
	padding: 30px 20px 20px 20px;
	box-sizing: border-box;
}

.aboutbox .about-right .ttl-en,
.cafebox .cafe-right .ttl-en{
	text-align: center;
	font-size: 3em;
	font-family: 'Noto Serif JP', serif;
}

.aboutbox .about-right .ttl-en span,
.cafebox .cafe-right .ttl-en span{
	font-size: 14px;
	display: block;
	margin: 0 0 5px;
}

.cafebox .cafe-right .ttl-jp{
	text-align: center;
	font-size: 1.4em;
}

.aboutbox .about-right .ttl-jp{
	text-align: center;
	font-size: 3em;
}

.cafebox .cafe-right .link,
.aboutbox .about-right .link{
	display: block;
	font-size: 1.4em;
	text-align: center;
	background: #fff;
	padding: 10px;
	width: 50%;
	margin: 20px auto 0;
	font-weight: 500;
	position: relative;
}

.cafebox .cafe-right .link{
	color: #582c2e;
}

.aboutbox .about-right .link{
	color: #484337;
}

.cafebox .cafe-right .link:hover,
.aboutbox .about-right .link:hover{
	opacity: 0.8;
}

.cafebox .cafe-right .link::after,
.aboutbox .about-right .link::after{
	content: "";
    position: absolute;
    right: 20px;
	top: 50%;
    width: 5px;
    height: 5px;
    transform: rotate(45deg) translateY(-50%);
}

.cafebox .cafe-right .link::after{
	border-top: 1px solid #582c2e;
    border-right: 1px solid #582c2e;
}

.aboutbox .about-right .link::after{
	border-top: 1px solid #484337;
    border-right: 1px solid #484337;
}

@media screen and (max-width:834px) {
	.aboutbox .about-right .ttl-jp{
		text-align: center;
		font-size: 2.4em;
	}

}

@media screen and (max-width:540px) {
	.cafebox,.aboutbox{
		flex-wrap: wrap;
	}
	.cafebox .cafe-right,.aboutbox .about-right,
	.cafebox .cafe-left,.aboutbox .about-left{
		width: 100%;
	}

	.cafebox .cafe-left,.aboutbox .about-left{
		height: unset;
	}

}

/*--//カフェ＆ステラおばさんと焼き菓子--*/