@charset "utf-8";
/* CSS Document */

/*背景色と文字色*/
body {
	background-color: #ffffff;
	color: #3c3c3c;
}

a,
a:hover {
  color: #00f;
}

a:active,
a:visited {
  color: #000833;
  text-decoration: underline;
}

/*ドロワーリンク色*/
.fs-p-drawer__loginLogout a {
    color: #fff;
}


/*メインカラムの余白*/
.fs-l-main {
    margin: 24px auto;
    padding: 8px;
    max-width: 1216px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/*商品名(商品ページ)*/
.fs-c-productNameHeading {
    color: #000;
}

/*商品説明文*/
.products-content h4 {
    color: #000;
}

.fs-c-productActionButton.fs-c-buttonContainer > button.fs-c-button--addToCart--detail.fs-c-button--primary { 
	width: 80%;
	height: 50px;
    font-size: 1.2em;
}


/*カテゴリページかご*/
p.btn > button.fs-c-button--addToCart--detail.fs-c-button--primary {
    min-width: 33%;
}

/********** PC **********/
@media screen and (min-width : 1024px) {
	/*カテゴリページかご*/
	p.btn > button.fs-c-button--addToCart--detail.fs-c-button--primary {
    min-width: 240px;
	}
	
	.fs-c-productActionButton.fs-c-buttonContainer > button.fs-c-button--addToCart--detail.fs-c-button--primary { 
	width: 360px;
}



}