@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/****************************************
プレビュー画面用のツールバーを非表示
****************************************/
.fs-preview-header{
	display: none;
}


/****************************************
基本
****************************************/

html{
	scroll-behavior: smooth;
}
body{
	font-family: "Helvetica Neue", 'Roboto', Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 1.2rem;
	font-weight: 400;
}

.pc { display: none !important; }
.sp { display: block !important; }

.fs-l-page{
}
@media (min-width: 768px){
	body{
		font-size: 1.4rem;
	}
	.pc{ display: block !important; }
	.sp{ display: none !important; }
	.fs-l-page{
	}
}





/****************************************
header
****************************************/
header.fs-l-header{
	height: 60px;
}
header.fs-l-header .headerContainer{
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	width: 100%;
	height: 60px;
	padding: 10px;
	background-color: white;
	z-index: 3;
	line-height: 1.7;
	letter-spacing: 0.05em;
}
header.fs-l-header--min{
	border: none;
}
header *{
	margin: 0;
	padding: 0;
}
header h1{
	margin: 0;
	font-weight: normal;
}
header p{
	margin: 0;
}
header img{
	display: block;
	width: auto;
	height: 100%;
}
header a, header a:visited{
	color: inherit;
	text-decoration: none;
}
header a:hover{
	opacity: 0.7;
	color: inherit;
	text-decoration: none;
}
header ul, header ol {
	list-style: none;
}
.logo{
	height: 40px;
}
.un--list{
	display: flex;
	margin: 0 54px 0 auto;
}
.un--list li{
	margin: 0 8px;
}
.un--list li a{
	display: block;
	padding: 10px 0;
}
.un--list li img{
	height: 20px;
}
.un--list li a.cartBtn{
	position: relative;
}
.un--list li a.cartBtn .fs-client-cart-count{
	position: absolute;
	top: 10px;
	right: -3px;
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #e17633;
	text-indent: -9999px;
}
.un--list li a.cartBtn .fs-client-cart-count.fs-client-cart-count--0{
	display: none;
}
.un--list li.h_searchBtn{
	position: relative;
	padding: 10px 0;
	cursor: pointer;
}
.un--list li.h_searchBtn img{
	transition: 0.5s;
}
.un--list li.h_searchBtn::before, 
.un--list li.h_searchBtn::after{
	content: '';
	position: absolute;
	top: 50%;
	left: -20.5%;
	display: block;
	width: 141.421356%;
	height: 1px;
	background-color: #808080;
	opacity: 0;
	transition: 0.5s;
}
.un--list li.h_searchBtn::before{
	transform: rotate(45deg);
}
.un--list li.h_searchBtn::after{
	transform: rotate(-45deg);
}

.un--list li.h_searchBtn:hover{
	opacity: 0.7;
}
.active .un--list{
	display: none;
}
.sActive .un--list li, 
.sActive .fs-l-header__drawerOpener{
	visibility: hidden;
}
.sActive .un--list li.h_searchBtn{
	visibility: visible;
}
.sActive .un--list li.h_searchBtn img{
	opacity: 0;
}
.sActive .un--list li.h_searchBtn::before, 
.sActive .un--list li.h_searchBtn::after{
	opacity: 1;
}
header.fs-l-header--min .fs-l-header__drawerOpener{
	display: none;
}
.fs-l-header__drawerOpener{
	position:fixed;
	top: 0;
	right: 0;
	cursor: pointer;
	width: 60px;
	height: 60px;
}
.fs-l-header__drawerOpener .fs-p-drawerButton{
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
}
.fs-l-header__drawerOpener .fs-p-drawerButton span{
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 14px;
	height: 1px;
	border-radius: 2px;
	background-color: #333;
	width: 50%;
}
.fs-l-header__drawerOpener .fs-p-drawerButton span:nth-of-type(1) {
    top:24px; 
}
.fs-l-header__drawerOpener .fs-p-drawerButton span:nth-of-type(2) {
    top:34px;
}
.active .fs-l-header__drawerOpener .fs-p-drawerButton span:nth-of-type(1) {
    top: 25px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
.active .fs-l-header__drawerOpener .fs-p-drawerButton span:nth-of-type(2) {
    top: 37px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

@media (min-width: 768px){
	header.fs-l-header{
		height: 100px;
	}
	header.fs-l-header .headerContainer{
    height: 100px;
    padding: 15px 30px;
	}
	.logo{
		height: 70px;
	}
	.un--list{
		margin-right: 107px;
	}
	.un--list li{
		margin: 0 15px;
	}
	.un--list li img{
		height: 30px;
	}
	.un--list li a.cartBtn .fs-client-cart-count{
		right: -5.5px;
		width: 12.5px;
		height: 12.5px;
	}
	.fs-l-header__drawerOpener{
		width: 100px;
		height: 100px;
	}
	.fs-l-header__drawerOpener .fs-p-drawerButton span:nth-of-type(1) {
			top:42px; 
	}
	.fs-l-header__drawerOpener .fs-p-drawerButton span:nth-of-type(2) {
			top:57px;
	}
	.active .fs-l-header__drawerOpener .fs-p-drawerButton span:nth-of-type(1) {
			top: 38px;
	}
	.active .fs-l-header__drawerOpener .fs-p-drawerButton span:nth-of-type(2) {
			top: 50px;
	}
	.un--list li.h_searchBtn::before, 
	.un--list li.h_searchBtn::after{
		left: -2px;
		width: 34px;
	}
}


/*****詳細検索エリア*****/
.h_searchForm{
	display: none;
	position: absolute;
	top:60px;
	left: 0;
	width: 100%;
	padding:60px 5% 100px;
	background-color: #ffffff;
	z-index: 2;
	font-size: 3.5vw;
}
.h_searchFormCont{
	position: relative;
}
/***共通***/
.h_searchFormCont > article{
	display:-webkit-flex; display:flex;
	-webkit-justify-content:space-between; justify-content:space-between;
	-webkit-align-items:flex-end; align-items:flex-end;
	-webkit-flex-wrap:wrap; flex-wrap:wrap;
	margin-bottom: 1.5rem;
}
.h_searchFormCont h2{
	width: 25%;
	height: 5.8vw;
	margin: 0;
	border-bottom: solid 0.1rem #000000;
	text-align: left;
	line-height: 1.6666;
	letter-spacing: -0.05em;
	font-size: 3.5vw;
	color: #000000;
}
.h_searchFormCont article > div{
	display:-webkit-flex; display:flex;
	-webkit-align-items:flex-end; align-items:flex-end;
	width: 72%;
}
.h_searchFormCont input,
.h_searchFormCont select,
.h_searchFormCont label{
	min-height: auto;
	padding: 0;
	background-color: #ffffff;
	font-size: 3.5vw;
	color: #737373;
}
/*select*/
.h_searchFormCont .searchSelect{
	position: relative;
}
.h_searchFormCont .searchSelect::after{
	content: '';
	position: absolute;
	bottom: 2.2vw;
	right: 10px;
	display: block;
	width: 0;
	height: 0;
	border-top: solid 6px #000000;
	border-right: solid 4px transparent;
	border-left: solid 4px transparent;
}
.h_searchFormCont select{
	height: 5.8vw;
	padding: 0 0.3em;
	border: solid 1px #000000;
	cursor: pointer;
}
.h_searchFormCont select option{
	background-color: #ffffff;
}
.h_searchFormCont select option:not(:checked){
	background-color: #ffffff;
}
.h_searchFormCont select option:hover, 
.h_searchFormCont select option:checked{
	background-color: #000000;
	color: #ffffff;
}
.h_searchFormCont select:hover{
	background-color: #dddddd;
}
/*／select*/
/***／共通***/
/*キーワード*/
.h_searchFormCont #searchKeyword > div{
	border-bottom: solid 0.1rem #000000;
}
.h_searchFormCont #searchKeyword input{
	background-color: #ffffff;
	border: none;
	height: 5.8vw;
}
/*／キーワード*/
/*カラー*/
.h_searchFormCont article#searchColor.searchSlide.checked h2 span.seaColNone{
	display: none;
}
.h_searchFormCont article#searchColor.searchSlide.checked h2 span.seaColWhite::before,
.h_searchFormCont article#searchColor.searchSlide.checked h2 span.seaColYellow::before, 
.h_searchFormCont article#searchColor.searchSlide.checked h2 span.seaColBeige::before{
	border-color: #737373;
}
.h_searchFormCont #searchColor h2{
	width: 100%;
}
.h_searchFormCont #searchColor > div{
	width: 100%;
}
.h_searchFormCont #searchColor div div{
	display:-webkit-flex; display:flex;
	-webkit-flex-wrap:wrap; flex-wrap:wrap;
	margin-top: 12px;
}
.h_searchFormCont #searchColor label{
	position: relative;
	width: 8.8vw;
	height: 8.8vw;
	margin: 0 2.4vw 2.4vw 0;
	background-color: #ffffff;
	border-radius: 1vw;
}
.h_searchFormCont #searchColor label.seaColNone{
	position: relative;
	background-color: #ffffff;
	border: solid 1px #ff0000;
}
.h_searchFormCont #searchColor label.seaColNone::before,
.h_searchFormCont #searchColor label.seaColNone::after{
	content: '';
	position: absolute;
	top: 50%;
	left: -20.5%;
	display: block;
	width: 141.421356%;
	height: 1px;
	background-color: #ff0000;
	transition: 1s;
}
.h_searchFormCont #searchColor label.seaColNone::before{
	transform: rotate(135deg);
}
.h_searchFormCont #searchColor label.seaColNone::after{
	transform: rotate(45deg);
}
.h_searchFormCont #searchColor .seaColWhite{background-color: #ffffff; border: solid 1px #737373;}
.h_searchFormCont #searchColor .seaColBlack{background-color: #000000;}
.h_searchFormCont #searchColor .seaColGray{background-color: #a6a5a6;}
.h_searchFormCont #searchColor .seaColBrown{background-color: #754d2b;}
.h_searchFormCont #searchColor .seaColBeige{background-color: #f6d6b9;}
.h_searchFormCont #searchColor .seaColBlue{background-color: #7e91af;}
.h_searchFormCont #searchColor .seaColRed{background-color: #b02318;}
.h_searchFormCont #searchColor .seaColOrange{background-color: #ea9b57;}
.h_searchFormCont #searchColor .seaColPink{background-color: #f5c3cb;}
.h_searchFormCont #searchColor .seaColPurple{background-color: #67349a;}
.h_searchFormCont #searchColor .seaColGreen{background-color: #4ead5b;}
.h_searchFormCont #searchColor .seaColYellow{background-color: #ffff55;}
.h_searchFormCont #searchColor .seaColGold{background: linear-gradient(45deg, #ffeea8 0%,#d9b61d 50%,#fff3c1 100%);}
.h_searchFormCont #searchColor .seaColSilver{background: linear-gradient(45deg, #f4f4f4 0%,#aaaaaa 50%,#e4e4e4 100%);}
.h_searchFormCont #searchColor input{
	display: none;
}
.h_searchFormCont #searchColor label span.balloon{
	display: none;
	position: absolute;
	top: -1.8vw;
	left: 1.5vw;
	padding: 1vw;
	background-color: #ffffff;
	border: solid 1px #aaaaaa;
	border-radius: 1vw;
	font-size: 2.2vw;
	text-align: center;
	color: #aaaaaa;
	z-index: 1;
	white-space: nowrap;
}
.h_searchFormCont #searchColor label:hover span.balloon{
	display: block;
}
.h_searchFormCont #searchColor input:checked + span.check{
	position: absolute;
	top: 4vw;
	left: 3vw;
	display:block;
	width: 4vw;
	height: 1.5vw;
	border-bottom: solid 1px #737373;
	border-left: solid 1px #737373;
	transform: rotate(-45deg);
}
.h_searchFormCont #searchColor .seaColNone input:checked + span.check{
	display: none;
}
/*／カラー*/
/*価格*/
.h_searchFormCont #searchPrice input{
	width: 20vw;
	height: 5.8vw;
	margin-right: 1vw;
	padding: 0 1vw;
	border: solid 1px #000000;
}
/*／価格*/
/*ボタンエリア*/
.h_searchFormCont .btnArea{
	display:-webkit-flex; display:flex;
	-webkit-justify-content:center; justify-content:center;
	margin-top: 10vw;
	
}
.h_searchFormCont .btnArea button{
	width: 60vw;
	height: 10vw;
	margin:0 1vw;
	background-color: #000000;
	border: none;
	border-radius: 0.5vw;
	font-size: 4vw;
	line-height: 10vw;
	color: #ffffff;
}
.h_searchFormCont .btnArea input[type="reset"]{
	width: 20vw;
	height: 10vw;
	margin:0 1vw;
	background-color: #ffffff;
	border: solid 1px #000000;
	border-radius: 0.5vw;
	font-size: 4vw;
	line-height: 10vw;
	color: #000000;
	cursor: pointer;
}
.h_searchFormCont .btnArea button:hover,
.h_searchFormCont .btnArea input[type="reset"]:hover{
	background-color: #555555;
}
/*／ボタンエリア*/
@media (min-width: 768px){
	.h_searchForm{
		top: 100px;
		padding: 16px 0 100px;
		font-size: 14px;
	}
	.h_searchFormCont{
		width: 640px;
		margin: 0 auto;
	}
	/***共通***/
	.h_searchFormCont > article{
		margin-bottom: 6px;
	}
	.h_searchFormCont h2{
		width: 170px;
		height: auto;
		padding: 15px 0;
		line-height: 1.5;
		font-size: 16px;
	}
	.h_searchFormCont article > div{
		width: 440px;
		height: 55px;
	}
	.h_searchFormCont input,
	.h_searchFormCont select,
	.h_searchFormCont label{
		font-size: 14px;
	}
	/*select*/
	.h_searchFormCont .searchSelect::after{
		bottom: 12px;
		right: 10px;
		border-right: solid 5px transparent;
		border-left: solid 5px transparent;
	}
	.h_searchFormCont select{
		height: 30px;
		padding: 0 16px;
	}
	/*／select*/
	/***／共通***/
	/*キーワード*/
	.h_searchFormCont #searchKeyword input{
		height: 52px;
		padding: 14px 16px;
	}
	/*／キーワード*/
	/*カラー*/
	.h_searchFormCont #searchColor h2{
		width: 170px;
	}
	.h_searchFormCont #searchColor > div{
		width: 440px;
	}
	.h_searchFormCont #searchColor label{
		width: 20px;
		height: 20px;
		margin: 0 10px 10px 0;
		border-radius: 2px;
	}
	.h_searchFormCont #searchColor label:nth-of-type(15n){
		margin-right: 0;
	}
	.h_searchFormCont #searchColor label span.balloon{
		top: -16px;
		left: 4px;
		padding: 0 4px;
		border-radius: 4px;
		font-size: 12px;
	}
	.h_searchFormCont #searchColor input:checked + span.check{
		top: 5px;
		left: 4px;
		width: 12px;
		height: 7px;
	}
	/*／カラー*/
	/*価格*/
	.h_searchFormCont #searchPrice input{
		width: 180px;
		height: 30px;
		margin-right: 6px;
		padding: 0 16px;
	}
	.h_searchFormCont #searchPrice input:last-of-type{
		margin-left: 6px;
	}
	/*／価格*/
	/*ボタンエリア*/
	.h_searchFormCont .btnArea{
		margin-top: 50px;
	}
	.h_searchFormCont .btnArea button{
		width: 270px;
		height: 40px;
		margin:0 10px;
		border: none;
		border-radius: 2px;
		font-size: 16px;
		line-height: 40px;
	}
	.h_searchFormCont .btnArea input[type="reset"]{
		width: 150px;
		height: 40px;
		margin:0 10px;
		border-radius: 2px;
		font-size: 16px;
		line-height: 38px;
	}
	/*／ボタンエリア*/
}
.h_searchBG{
	display: none;
	position: fixed;
	top: 60px;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	z-index: 1;
	cursor: pointer;
}
@media screen and (min-width:641px){
	.h_searchBG{
		top: 100px;
	}
}

/****************************************
ナビ
****************************************/
.fs-p-drawer {
	position: fixed;
	right: 0;
	left: auto;
	width: 100%;
	max-width: none;
	padding: 0;
	box-shadow: none;
	transform: translateX(101%);
	line-height: 1.7;
	letter-spacing: 0.05em;
}
.fs-p-drawer *{
	margin: 0;
	padding: 0;
}
.fs-p-drawer h1, .fs-p-drawer h2, .fs-p-drawer h3, .fs-p-drawer h4, .fs-p-drawer h5, .fs-p-drawer h6{
	margin: 0;
	font-weight: normal;
}
.fs-p-drawer p{
	margin: 0;
}
.fs-p-drawer img{
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
.fs-p-drawer a, .fs-p-drawer a:visited{
	color: inherit;
	text-decoration: none;
}
.fs-p-drawer a:hover{
	opacity: 0.7;
	color: inherit;
	text-decoration: none;
}
.fs-p-drawer ul, .fs-p-drawer ol {
	list-style: none;
}
.fs-p-drawer .g-nav ul {
	margin-top: 80px;
}
.fs-p-drawer .g-nav li{
	text-align: center;
	font-size: 15px;
	font-weight: bold;
}
.fs-p-drawer .g-nav li a{
    color: #333;
    text-decoration: none;
    padding:10px 25px;
    display: block;
    /* text-transform: uppercase; */
    letter-spacing: 0.1em;
    /* font-weight: bold; */
		font-weight: normal;
    width: 100%;
}
.fs-p-drawer .g-nav li hr{
	height: 0;
	margin: 40px 20px;
	padding: 0;
	border: none;
	border-bottom: 1px solid #707070;
}
.fs-p-drawer .g-nav li img{
    width: 20px;
    margin-top: 40px;
    margin-right: 10px;
}
@media (min-width: 768px){
	.fs-p-drawer .g-nav ul{
		top: 120px;
	}
	.fs-p-drawer .g-nav li a{
		text-align: center;
	}
	.fs-p-drawer .g-nav li.tote a{
		padding:10px 0;
		display: inline-block;
		width: auto;
	}
	.btn--store{
		font-size: 1.3rem;
		text-decoration: none;
	}
}




/****************************************
footer
****************************************/
footer.fs-l-footer{
	position: relative;
	background-color: #F4F3EE;
	padding: 15px 25px;
	margin-top: 186px;
	border: none;
	line-height: 1.7;
	letter-spacing: 0.05em;
}
footer *{
	margin: 0;
	padding: 0;
}
footer h1, footer h2, footer h3, footer h4, footer h5, footer h6{
	margin: 0;
	font-weight: normal;
}
footer p{
	margin: 0;
}
footer img{
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
footer a, footer a:visited{
	color: inherit;
	text-decoration: none;
}
footer a:hover{
	opacity: 0.7;
	color: inherit;
	text-decoration: none;
}
footer ul, footer ol {
	list-style: none;
}

/****ページトップへ****/
.page--top{
	position: absolute;
	top: -106px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	cursor: pointer;
}
.page--top a{
	display: block;
}
.page--top:hover{
	opacity: 0.7;
}
.page--top__icon{
    border-top: solid 2px #333;
    border-left: solid 2px #333;
    width: 14px;
    height: 14px;
    transform: rotate(45deg);
    margin: 0 auto;
}

/****フッター上部****/
.footer--shop{
    margin-bottom: 40px;
}
.footer--shop li{
    margin-bottom: 10px;
}
.footer--item{
    margin-bottom: 40px;
}
.footer--item li{
    margin-bottom: 10px;
}
.footer--nav{
    margin-bottom: 20px;
}
.footer--nav li{
    margin-bottom: 10px;
    font-weight: bold;
}
.footer--nav li.mb20{
    margin-bottom: 30px;
    font-weight: bold;
}
.footer--nav li a{
color: #333;
text-decoration: none;
display: block;
letter-spacing: 0.1em;
width: 100%;
}
.footer--nav li img{
    width: 15px;
    margin-right: 10px;
}
.footer--link{
    font-weight: bold;
}
.footer--link2{
    font-weight: bold;
}
.footer--content .ml10{
	margin-left: 10px;
}
/****フッター下部****/
.footer--sns{
		display:-webkit-flex; display:flex;
		-webkit-flex-wrap:wrap; flex-wrap:wrap;
    margin-bottom: 40px;
    padding-top: 20px;
    border-top: 1px solid #707070;
}
.footer--sns li{
	margin: 0 20px 10px 0;
}
.footer--sns a{
	display: flex;
	align-items: center;
}
.footer--sns img{
    width: 20px;
    margin-right: 10px;
}
.copyright{
    text-align: center;
}
@media (min-width: 768px){
    .footer--content{
        display: flex;
        justify-content: space-around;
        padding: 60px 0 40px 0;
    }
    .footer--content li{
        font-size: 1.6rem;
				line-height: 1.15;
    }
    .footer--sns{
			font-size: 16px;
    }
}


.fs-l-sideArea + .fs-l-pageMain, .fs-l-pageMain + .fs-l-sideArea{
	max-width: inherit;
}


/****************************************
パンくず
****************************************/
.fs-c-breadcrumb{
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
	line-height: 1.7;
	letter-spacing: 0.05em;
}




/****************************************
タイトル
****************************************/
.fs-c-heading--page{
	font-size: 1.5rem;
	margin: 0 0 40px;
	padding: 0;
	border-bottom: none;
	font-weight: normal;
}


/****************************************
マイページ系、カート系
****************************************/
.fs-p-announcement{
	max-width: 600px;
	margin: 32px auto;
}
.fs-c-subSection{
	max-width: 600px;
	margin: 32px auto;
}
.fs-p-accountInfo .linkLogout{
	text-align: right;
}
.fs-c-continueShopping{
	text-align: center;
}
/**********おすすめ商品**********/
.fs-c-featuredProduct{
	padding: 60px 0 0 0;
}
.fs-c-featuredProduct__title{
	margin: 0;
	padding-bottom: 3rem;
	border: none;
	text-align: center;
	font-size: 26px;
	font-weight: 500;
	color: #333333;
}
.fs-c-featuredProduct .fs-c-productListCarousel{
	position: relative;
}
.fs-c-featuredProduct .fs-c-productListCarousel__ctrl{
	position: absolute;
	z-index: 1;
	width: 10vw;
	height: 10vw;
	cursor: pointer;
}
.fs-c-featuredProduct .fs-c-productListCarousel__ctrl:hover{
	opacity: 0.7;
}
.fs-c-featuredProduct .fs-c-productListCarousel__ctrl > .fs-c-button--carousel{
	display: none;
}
.fs-c-featuredProduct .fs-c-productListCarousel__ctrl::before{
	content: '';
	position: absolute;
	top: 50%;
	display: block;
	width: 3.6vw;
	height: 3.6vw;
	box-sizing: border-box;
}
.fs-c-featuredProduct .fs-c-productListCarousel__ctrl--prev{
	left: 0;
}
.fs-c-featuredProduct .fs-c-productListCarousel__ctrl--next{
	right: 0;
}
.fs-c-featuredProduct .fs-c-productListCarousel__ctrl--prev::before{
	left: 2vw;
	transform: rotate(-45deg);
	transform-origin: top left;
	border-left: solid 1px #333333;
	border-top: solid 1px #333333
}
.fs-c-featuredProduct .fs-c-productListCarousel__ctrl--next::before{
	right: 2vw;
	transform: rotate(45deg);
	transform-origin: top right;
	border-right: solid 1px #333333;
	border-top: solid 1px #333333;
}
.fs-c-featuredProduct .fs-c-productListCarousel__list{
	width: 100%;
	padding: 0 2vw;
}
.fs-c-featuredProduct .fs-c-productListItem__prices.fs-c-productPrices, 
.fs-c-featuredProduct .fs-c-productListItem__control.fs-c-buttonContainer{
	display: none;
}
.fs-c-featuredProduct .slick-slide{
	width: 48vw;
	padding: 0 2vw;
}
.fs-c-featuredProduct .fs-c-productListCarousel__list__item{
	width: 100%;
	min-width: inherit;
	max-width: inherit;
	margin: 0;
}
.fs-c-featuredProduct .fs-c-productListItem__productName{
	padding: 0 10px;
	text-align: left;
	font-size: 14px;
	font-weight: 500;
}
.fs-c-featuredProduct .fs-c-productName__copy{
	font-size: 14px;
}
.fs-c-featuredProduct .fs-c-productMarks{
	display: none;
}
@media screen and (min-width:768px){
	.fs-c-featuredProduct{
		padding: 40px 0 0 0;
	}
	.fs-c-featuredProduct__title{
		padding: 0 0 64px;
	}
	.fs-c-featuredProduct .fs-c-productListCarousel__list{
		padding: 0;
	}
	.fs-c-featuredProduct .fs-c-productListCarousel__ctrl{
		width: 40px;
		height: 40px;
	}
	.fs-c-featuredProduct .fs-c-productListCarousel__ctrl::before{
		width: 20px;
		height: 20px;
	}
	.fs-c-featuredProduct .fs-c-productListCarousel__ctrl--prev{
		left: 6px;
	}
	.fs-c-featuredProduct .fs-c-productListCarousel__ctrl--next{
		right: 6px;
	}
	.fs-c-featuredProduct .fs-c-productListCarousel__ctrl--prev::before{
		left: 6px;
	}
	.fs-c-featuredProduct .fs-c-productListCarousel__ctrl--next::before{
		right: 6px;
	}
	.fs-c-featuredProduct .fs-c-productListCarousel{
		margin: 0 -5px;
	}
	.fs-c-featuredProduct .slick-slide{
		width: 242px;
		padding: 0 6px;
	}
}
/**********／おすすめ商品**********/


/****************************************
店舗メンテナンス中
****************************************/
.fs-p-closed{
	max-width: 600px;
}
.fs-p-closed .logo{
	width: 200px;
	padding: 0;
}
.fs-p-closed__image{
	width: 100%;
}


/****************************************
ご注文手続き
****************************************/
#fs-couponInfo-container{
	display: none !important;
}
[class^="fs-body-checkout"] .fs-l-checkout__sideColumn{
	margin-top: 24px;
}
.orderPageTop span{
	font-size: 1.8rem;
  min-height: 3em;
  min-width: 100%;
  max-width: 100%;
}
.orderPageTop span:hover{
	opacity: 0.8;
	text-decoration: none;
}
#fs_orderTotalContainer{
	margin-top: -60px;
	padding-top: 84px;
}
@media screen and (min-width:768px){
	#fs_orderTotalContainer{
		margin-top: -100px;
		padding-top: 124px;
	}
}
@media screen and (min-width: 960px) {
	[class^="fs-body-checkout"] .fs-l-checkout__mainColumn{
		padding-right: 0;
		max-width: none;
	}
	[class^="fs-body-checkout"] .fs-l-checkout__sideColumn{
		margin-top: 24px;
	}
}