@charset "utf-8";
/* CSS Document */

/*================================
目次
================================

■FSの設定打消し
■PC版とSP版での表示切替設定（見出しや改行などPCとSPの表示を分けたい場合に使用）

1.全体
2.共通フォーマット（ボタンデザインなど）
3.メインビジュアル
4.イントロダクション
5.アイテム
6.プロフィール
7.フッター

*/

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■FSの設定打消し
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.fs-l-main *{
	min-width: initial;
    min-width: auto;
    min-height: initial;
    min-height: auto;
}

/*メインエリアの横幅制限解除ここから*/
.fs-l-pageMain {
	max-width: 100%;
}

.fs-l-main{
	max-width: 100%;
	padding:0;
	margin:0;
}
/*メインエリアの横幅制限解除ここまで*/


.fs-c-breadcrumb{
	padding-top:80px;
}
@media screen and (max-width:768px) {
	.fs-c-breadcrumb{
		padding-top:80px;
	}
}

/* 「現在登録されている商品はありません。」を非表示 */
.fs-c-noResultMessage { display: none }

/* 文字サイズ調整 */
.fs-l-main{
	font-size:1.1em;
}

/*共通フッターのマージン調整*/
.footer-sp{
	margin-top: 0 !important;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■PC版とSP版での表示切替設定（見出しや改行などPCとSPの表示を分けたい場合に使用）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*例：brタグにclassを追加
PCのみで改行→pc <br class="pc">
SPのみで改行→sp <br class="sp">
※両方共通の改行の場合は<br>のみでOK

他、PCとSPで表示を分けたい部分にも使用可能
*/

@media screen and (min-width: 768px){
  .pc { display:block; }
  .sp { display:none; }
}
@media screen and (max-width: 768px){
  .pc { display:none; }
  .sp { display:block; }
}



/*================================
1.全体
================================*/

body{
/*背景色*/
	background-color: #fff;
}

/*全体の設定/フォントなど*/
.js-main{
	text-align: center;
	/*font-size:1.3rem;*/
	line-height: 1.8;
	letter-spacing: 0.07em;
	font-family: Arial, "Hiragino Kaku Gothic ProN","Hiragino Sans","BIZ UDPGothic",Meiryo,sans-serif;
	font-weight: 400;
	color:#363636;
}
@media screen and (max-width:768px) {
	.js-main{
		padding-top:0;
	}
}

/*リンクの設定*/
.js-main a{
	text-decoration:none;
	color:#543729;
}
.js-main a:hover,a:hover img{
	opacity:0.6;
    -moz-opacity:0.6;
    filter:alpha(opacity = 60);
}


/*widthなどの適応範囲をborder基準に変更*/
.js-main *, .js-main *:before, .js-main *:after{
	-webkit-box-sizing: border-box; /* Webkit */
	-moz-box-sizing: border-box; /* Firefox */
	box-sizing: border-box; /* 標準 */
}


/*SP版画像サイズ制御*/
@media screen and (max-width:768px) {
    /*　画面サイズが768px以下の時はここを読み込む　*/
	.js-main img{
	width:100%;
	height: auto;
	}
}

/*PC900px、SP100%*/
.js-container{
	width:100%;
	max-width:980px;
	margin:auto;
}
@media screen and (max-width: 768px){
	.js-container{
		width:100%;
	}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
2.共通フォーマット（ボタンデザインなど）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*ボタン*/
.btn01{
  width: 90%;
  max-width:400px; 
  padding: 14px 0 14px 0;
  font-size: 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  display: block;
  margin: 1em auto;
  color: #000;
  background: transparent;
  line-height: 1;
  /*border-radius: 50px;*/
  transition: all .2s;

  border: 1px solid #000;
}
.btn01 a{
	color: #fff;
	display: block;
}
.btn01 a:hover {
  color: #fff;
  opacity:1;
  -moz-opacity:1;
  filter:alpha(opacity = 100);
}
.btn01:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

/*共通margin設定*/
.main-margin{
	margin: 100px 0;
}
@media screen and (max-width: 768px){
	.main-margin{
		margin: 3em 0;
	}
}


/*背景色*/
.bg-color01{
	background: #fff;
}
.bg-color02{ /*文字色と同じ色*/
	background: #363636;
}
.bg-color03{ /**/
	background: #c2c5ce;
}

/*テキスト色*/
.font-color01{ /*差し色*/
	color:#c2c5ce;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
3.メインビジュアル
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-visual{
	/*margin-bottom:0;*/
	width:100%;
	background-color: #fff;
	line-height: 0;
}
.main-visual img {
	width:100%;
	max-width: 980px;
}

h1{
	margin-top:0;
	line-height: 0;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.クーポン
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-pickup-bn{
	margin-top:4em;
}
.main-pickup-bn img{
	width:100%;
}
@media screen and (max-width: 768px){
	.main-pickup-bn{
		width:90%;
		margin: 3em auto 0;
	}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.イントロダクション
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-intro{
	/*margin-top:80px;*/
	font-size:0.8em;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
6.一覧（FS）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-fs-all{

}
.contents-fs-all .fs-all_title{
	margin:auto;
}
.contents-fs-all .fs-all_title_text {
	margin:auto;
	display: inline-block;
	color:#fff;
	/*font-family: serif;*/
	padding: 0 2em;
}
.contents-fs-all .fs-all_title img{
	width:412px;
}
/*SP*/
@media (max-width: 768px) {
	.contents-fs-all .fs-all_title img{
		width:90%;
	}
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
7.フッター
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-footer{
	margin:4em auto;
}
.contents_brand_top{
	margin:3em auto;
}
.brand_under-text{
	margin-top:1em;
}

/*SP*/
@media (max-width: 768px) {
	.contents_brand_top{
		width:50%;
	}
}


/*～～～バナーエリア（1列）～～～*/
.banner-area{
	width:100%;
}
.banner-area_box{
	max-width:700px;
	width:90%;
	margin:auto;
}
.banner-area > .banner-area_box img{
	width:100%;
}
.banner-area .banner-area_box_item{
	margin-bottom:1em;
}
.banner-area > .banner-area_box:last-child{
	margin-bottom:0em;
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
8.カテゴリリンク
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


.contents-link_allitem{
	margin-bottom:5em;
}

.contents-link_allitem_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: center;
	align-items: center;

	text-align: left;
	margin:0 auto 2em;
	width:90%;
	max-width:700px;
}
.contents-link_allitem_img{
	width:30%;
	line-height: 0;
}
.contents-link_allitem_img img{
	width:100%;
	object-fit: cover;
}
.contents-link_allitem_txt{
	width:70%;
	text-align: center;
	color:#fff;
}
.contents-link_allitem_txt .txt01{
	font-family: serif;
	font-size:1.2em;
	letter-spacing: 0;
}
.contents-link_allitem_txt .txt02{
	font-weight: lighter;
	font-size:0.7em;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.フェードインエフェクト
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.fadein-top {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
