@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700&display=swap');

/****************************************
基本
****************************************/
html{
	scroll-behavior: smooth;
}
body {
	font-family: 'Noto Serif JP', serif;
	letter-spacing: 0.05em;
}

.pc { display: none !important; }
.sp { display: block !important; }

.fs-l-page{
	padding-top: 60px;
}
@media (min-width: 768px){
	body{
		font-size: 1.4rem;
	}
	.pc{ display: block !important; }
	.sp{ display: none !important; }
	.fs-l-page{
		padding-top: 100px;
	}
}


/****************************************
ヘッダー
****************************************/
header.fs-l-header{
	top: 0;
	display: flex;
	align-items: center;
	width: 100%;
	height: 60px;
	padding: 10px;
	position: fixed;
	z-index: 9999;
	background: rgba(0,0,0,0.5);
	font-weight: 400;
}
header.fs-l-header--min{
	border: none;
}
header *{
	margin: 0;
	padding: 0;
}
header a, header a:visited{
	display: block;
	color: inherit;
	text-decoration: none;
}
header a:hover{
	opacity: 0.7;
	color: inherit;
	text-decoration: none;
}
header img{
	display: block;
	width: auto;
	height: 100%;
}
header ul, header ol {
	list-style: none;
}
.logo img{
	height: 15px;
}

.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 a 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: #000000;
	text-indent: -9999px;
}
.un--list li a.cartBtn .fs-client-cart-count.fs-client-cart-count--0{
	display: none;
}
header.active .un--list{
	display: none;
}

header.fs-l-header--min .fs-l-header__drawerOpener{
	display: none;
}
.fs-l-header__drawerOpener{
	position:fixed;
	z-index: 9999;/*ボタンを最前面に*/
	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: #fff;
    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: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
    background-color: #fff;
}
.active .fs-l-header__drawerOpener .fs-p-drawerButton span:nth-of-type(2) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
    background-color: #fff;
}
@media (min-width: 768px){
	header.fs-l-header{
    height: 100px;
    padding: 30px;
	}
	.logo img{
		height: 33px;
	}
	.un--list{
		margin-right: 107px;
	}
	.un--list li{
		margin: 0 15px;
	}
	.un--list li a 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;
	}
}

/****************************************
ナビ
****************************************/
.fs-p-drawer {
	position: fixed;
	right: 0;
	left: auto;
	width: 100%;
	max-width: none;
	padding: 0;
	box-shadow: none;
	transform: translateX(101%);
	background: rgba(0, 0, 0, .8);
	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{
	color: #fff;
	text-align: center;
	font-size: 15px;
	font-weight: bold;
}
.fs-p-drawer .g-nav li a{
    color: #fff;
    text-decoration: none;
    padding:10px 25px;
    display: block;
    letter-spacing: 0.1em;
    font-size: 15px;
		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;
	}
	.btn--store{
		font-size: 1.3rem;
		text-decoration: none;
	}
}
#g-nav{
    /*ナビのスタート位置と形状*/
    top:0;
    right: -120%;
    width:100%;
    height: 100vh;/*ナビの高さ*/
    /*動き*/
    transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    /* left:50%; */
    /* transform: translate(-50%,-50%); */
}
.fs-p-drawer .g-nav ul{
	margin-top: 80px;
}
/*リストのレイアウト設定*/

#g-nav li{
    list-style: none;
}

#g-nav li a{
    color: #fff;
    text-decoration: none;
    padding:15px 25px;
    display: block;
    /* text-transform: uppercase; */
    letter-spacing: 0.1em;
    /* font-weight: bold; */
    font-size: 1.5rem;
    width: 100%;
    text-align: center;
		line-height: 1.15;
}

#g-nav #g-nav-list li hr{
    margin: 40px 20px;
}

#g-nav #g-nav-list li img{
    width: 20px;
    margin-top: 40px;
    margin-right: 10px;
}
@media (min-width: 768px){
    .openbtn1 span{
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 1px;
        border-radius: 2px;
        background-color: #000;
        width: 50%;
    }

    #g-nav li a{
        font-size: 1.8rem;
    }
}


/****************************************
フッター
****************************************/
footer.fs-l-footer{
	position: relative;
	background-color: #E4E4E4;
	padding: 15px 25px;
	margin-top: 186px;
	border: none;
	line-height: 1.7;
	letter-spacing: 0.05em;
	font-weight: 400;
}
footer *{
	margin: 0;
	padding: 0;
}
footer h1, footer h2, footer h3, footer h4, footer h5, footer h6{
	font-weight: normal;
}
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;
}

.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 a{
color: #333;
text-decoration: none;
display: block;
letter-spacing: 0.1em;
width: 100%;
}

.footer--nav li img{
    width: 15px;
    margin-right: 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 img{
    width: 20px;
    margin-right: 10px;
}

.footer--link{
    font-weight: bold;
}

.footer--link2{
    font-weight: bold;
}

.copyright{
    text-align: center;
}

hr{
    border-bottom: 1px solid #707070;
}
@media (min-width: 768px){
    .footer--content{
        display: flex;
        justify-content: space-around;
				padding: 60px 0 40px 0;
		}
}

.fs-l-sideArea + .fs-l-pageMain, .fs-l-pageMain + .fs-l-sideArea{
	max-width: inherit;
}
/****ページトップへ****/
.page--top{
	position: absolute;
	top: -106px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	cursor: pointer;
}
.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;
}


/****************************************
パンくず
****************************************/
.fs-c-breadcrumb{
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
}



/****************************************
タイトル
****************************************/
.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;
}
.fs-c-featuredProduct .imgCap{
	display: none;
}
@media screen and (min-width:768px){
	.fs-c-featuredProduct{
		padding: 90px 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-c-wishlistProduct{
	padding: 60px 0 0 0;
}
.fs-c-wishlistProduct__title{
	margin: 0;
	padding-bottom: 3rem;
	border: none;
	text-align: center;
	font-size: 20px;
	font-weight: 500;
	color: #333333;
}
@media screen and (min-width:768px){
	.fs-c-wishlistProduct{
		padding: 40px 0 0 0;
	}
	.fs-c-wishlistProduct__title{
		padding: 0 0 64px;
	}
}
/**********／お気に入りパーツ**********/



/****************************************
ご注文手続き
****************************************/
#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;
	}
}