/*　目次

・全体
・商品マークのタグの設定
・FSのシステムパーツ表示調整
・商品一覧の表示調整
・商品詳細の表示調整
・詳細検索ボックス
・マイページ関連

*/

/*　全体===========================　*/

/*ログインログアウトの表示切り替えを行うCSS*/
.logout.my-false { display: none; }
.login.my-true { display: none; }

/*画面上部のプレビュー説明を消す*/
.fs-preview-header { display: none; }

/*メイン部分フォント指定*/
@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');
main,.fs-c-breadcrumb__list  {
font-family:  'Lato','Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
line-height: 1.75;
font-weight :normal;
color:black;
}

/*消費税込み表示を「税込」に　価格表示パターンを別のパターン（●\10,000 (消費税込：\10,800)　以外）にする場合削除*/
span.fs-c-productPrice__addon__label {
    display: none;
}
span.fs-c-productPrice__addon:not(.fs-c-productPrice__addon--listed)::before {
  content: "(税込";
}
/*税込価格の左に余白作成*/
.fs-c-productPrice__addon{
 margin-left:0.5em;
}

/*パンくずリストの表示調整*/
.fs-c-breadcrumb__list{
    margin: 0px auto;
    padding: 8px;
    max-width: 1216px;
    text-align:left;
}
@media screen and (max-width: 600px){
  .fs-c-breadcrumb__list{
    font-size:0.75em;
    line-height: 1.5;
  }
}

/*PCとスマホで表示を切り替える*/
/*例：brタグにclassを追加
PCのみで改行→pc <br class="js-pc">
SPのみで改行→sp <br class="js-sp">
※両方共通の改行の場合は<br>のみでOK
他、PCとSPで表示を分けたい部分にも使用可能
*/
@media screen and (min-width: 768px){   
  .js-pc { display:block; }
  .js-sp { display:none; }
}
@media screen and (max-width: 768px){   
  .js-pc { display:none; }
  .js-sp { display:block; }
}

/*規約系チェックフィールドのサイズ調整*/
.fs-c-additionalCheckField{
	margin-left: 0.25em;
	font-size: 1.2em;
}

/*別窓表示アイコン*/
.dli-external-link {
	display: inline-block;
	vertical-align: middle;
	color: brown;
	line-height: 1;
	width: 0.5em;
	height: 0.5em;
	border: 0.1em solid currentColor;
	border-radius: 0.1em;
	background: #fff;
	box-sizing: content-box;
	position: relative;
}
.dli-external-link > span {
	position: absolute;
	top: -0.2em;
	right: -0.2em;
	width: 45%;
	height: 45%;
	border: 0.075em solid currentColor;
	border-bottom: 0;
	border-left: 0;
	background: #fff;
	box-shadow: -0.1em 0.1em 0 0.1em #fff;
	box-sizing: border-box;
}
.dli-external-link > span::before {
	content: '';
	position: absolute;
	top: -0.05em;
	right: -0.05em;
	width: 0.075em;
	height: 0.5em;
	background: currentColor;
	transform: rotate(45deg);
	transform-origin: top center;
}

/*no imageの調整*/
.fs-c-noImage{
 padding: 55% 5%;
 background: #cfcfcf;
}
@media screen and (max-width: 768px){
 .fs-c-reviewList .fs-c-noImage{
  padding: 20% 5%;
 }
}


/*　商品マークのタグの設定===========================
/*色変更*/
.fs-c-productMark__mark--19, /*sale*/
.fs-c-productMark__mark--27, /*timesale*/
.fs-c-productMark__mark--30 /*限定price*/ {
 color: #fff;
 background-color: #d3234c;
}
.fs-c-productMark__mark--8, /*for-mama*/
.fs-c-productMark__mark--5, /*日本製*/
.fs-c-productMark__mark--2, /*送料無料*/
.fs-c-productMark__mark--26 /*HIT*/ {
 color:#666;
 background: rgba(126, 126, 126, 0.08);
}
.fs-c-productMark__mark--25 /*PRE ORDER*/ {
 color:#fff;
 background-color: #5c8e7e;
}
.fs-c-productMark__mark--35 /*予約商品*/ {
 color:#fff;
 background-color: #5c8e7e;
}
/*クーポン用*/
.js_productMark_coupon{
 background-color: #e45a74;
}
/*商品マークを非表示
※お客様には見せたくないけれど、オートメーションなどでデータが必要な時に使用　*/
/*非表示用class:非表示のマーク設定のclassに追加*/
.js_productMark_no-display{
 display:none;
}



/*　FSのシステムパーツ表示調整===========================　*/
/*おすすめ商品パーツ（システムパーツ）、お気に入りパーツ（システムパーツ）*/
/*非表示*/
.fs-c-featuredProduct .fs-c-productName__copy,
.fs-c-featuredProduct .fs-c-productMarks,
.fs-c-featuredProduct .fs-c-productListItem__control,
.fs-c-featuredProduct .fs-c-productListItem__salesPeriod,
.fs-c-wishlistProduct .fs-c-productName__copy,
.fs-c-wishlistProduct .fs-c-productMarks,
.fs-c-wishlistProduct .fs-c-productListItem__control,
.fs-c-wishlistProduct .fs-c-productListItem__salesPeriod
{
 display:none;
}
/*商品名の表示　２行まで*/
.fs-c-featuredProduct .fs-c-productName__name,
.fs-c-wishlistProduct .fs-c-productName__name
{
 display: -webkit-box;
 -webkit-box-orient: vertical;
 -webkit-line-clamp: 2;
 overflow: hidden;
 font-size: 1rem;
 letter-spacing: 0.04rem;
 line-height: 1.5rem;
}
/*価格表示*/
.fs-c-featuredProduct .fs-c-productPrices,
.fs-c-wishlistProduct .fs-c-productPrices
{
 margin-top:0.5em;
}
.fs-c-featuredProduct .fs-c-productPrice,
.fs-c-wishlistProduct .fs-c-productPrice
{
 align-items: center;
 margin-top:0em;
 letter-spacing: 0.04rem;
}
/*消し値*/
.fs-c-featuredProduct .fs-c-productPrice--listed,
.fs-c-wishlistProduct .fs-c-productPrice--listed
{
 text-decoration: line-through;
 color:#aaa;
 line-height: 1;
 font-size:0.8em;
 margin-bottom:0.2em;
}
.fs-c-featuredProduct .fs-c-productPrice__main__label,
.fs-c-featuredProduct .fs-c-productPrice__addon--listed,
.fs-c-wishlistProduct .fs-c-productPrice__main__label,
.fs-c-wishlistProduct .fs-c-productPrice__addon--listed
{
 display: none;
}
/*税抜き価格*/
.fs-c-featuredProduct .fs-c-productPrice--selling,
.fs-c-wishlistProduct .fs-c-productPrice--selling
{
 line-height: 1;
}
.fs-c-featuredProduct .fs-c-productPrice--selling .fs-c-productPrice__main,
.fs-c-wishlistProduct .fs-c-productPrice--selling .fs-c-productPrice__main
{
 font-weight: 500;
 font-size:0.9em;
}
.fs-c-featuredProduct .fs-c-productPrice--selling .fs-c-productPrice__main .fs-c-price__value,
.fs-c-wishlistProduct .fs-c-productPrice--selling .fs-c-productPrice__main .fs-c-price__value
{
 font-size: 1.25em;
}
/*税込み価格*/
.fs-c-featuredProduct .fs-c-productPrice__addon,
.fs-c-wishlistProduct .fs-c-productPrice__addon
{
 color: #aaa;
}
.fs-c-featuredProduct span.fs-c-productPrice__addon:not(.fs-c-productPrice__addon--listed)::before,
.fs-c-wishlistProduct span.fs-c-productPrice__addon:not(.fs-c-productPrice__addon--listed)::before
{
 content: "";
}
.fs-c-featuredProduct .fs-c-productPrice__addon__price::before,
.fs-c-wishlistProduct .fs-c-productPrice__addon__price::before
{
 content: "";
}
.fs-c-featuredProduct .fs-c-productPrice__addon:not(.fs-c-productPrice__addon--listed)::after,
.fs-c-wishlistProduct .fs-c-productPrice__addon:not(.fs-c-productPrice__addon--listed)::after
{
 content: "tax in";
 margin-left: 0.2em;
}

/*おすすめ商品パーツ（システムパーツ）のみ対象*/
.fs-c-featuredProduct .fs-c-featuredProduct__title{
 border-bottom: 1px solid currentColor;
 margin-bottom: 2em;
 padding-bottom: 0.6em;
}

/*お気に入りパーツ（システムパーツ）のみ対象*/
.fs-c-wishlistProduct .fs-c-productName__variation{
 margin-top:0.5em;
 margin-bottom:0.5em;
 font-weight:bold;
}
.fs-c-wishlistProduct .fs-c-productListItem{
 position:relative;
}
.fs-c-wishlistProduct .fs-c-productListItem__lowInStock{
 position:absolute;
 top:0;
 left:0;
 border-color: transparent;
 background-color: rgba(255,0,0,0.5);
 color: #fff;
 font-size: 0.8em;
}
.fs-c-wishlistProduct .fs-c-productListItem__notice,
.fs-c-wishlistProduct .fs-c-productListCarousel__list__item > * + *{
 margin: 0;
}


/*　商品一覧の表示調整===========================　*/
/*　アイテムの style_fs-group.css　で調整　*/



/*　商品詳細の表示調整===========================　*/
/*　アイテムの style_fs-item.css　で調整　*/



/*　詳細検索ボックス===========================　*/
/*　詳細検索ボックス：ボックスの下線を非表示に　*/
.fs-p-productSearch {
    border-bottom: 0px solid #fff;
}
/*　詳細検索ボックス：ボタンのデザイン変更　*/
.fs-p-productSearch__formSwitch {
    background: black;
    color:white;
}


/*　マイページ関連===========================　*/
/*　マイページ関連：システムページのマイページへボタンのデザイン変更　*/
.fs-c-button--myPageTop{
  margin:auto;
}
.fs-c-button--myPageTop .fs-c-button__label{
  margin:auto;
  display: inline-block;
  max-width: 180px;
  text-align: left;
  border: 1px solid #000;
  background-color: #fff;
  color:#000;
  font-size: 1em;
  text-decoration: none;
  font-weight: normal;
  padding: 6px 16px;
  border-radius: 0px;
  transition: .4s;
}
.fs-c-button--myPageTop .fs-c-button__label:hover{
  background-color: #555;
  border-color: #555;
  color: #fff;
}

/*　スマートフォンマイページメニュー配置　*/
@media screen and (max-width: 600px){
.fs-c-accountService {
    justify-content: center;
    }
.fs-c-accountService__page {
    margin: 1em;
    }
}

/*　カート・受注関連===========================　*/
/*　受注ページ　*/
.fs-c-checkout-paymentMethodList,
.fs-c-checkout-shippingDetail__deliveryDetail{
  font-weight: bold;
}