@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Amiri:wght@700&display=swap');
/*
font-family: 'Amiri', serif;
*/

/*================================
目次
================================

■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-c-subgroup { display: none }

/* 「商品グループエリア」を非表示 */
.fs-c-productList { 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:14px;
	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:#000;
}
@media screen and (max-width:768px) {
	.js-main{
		padding-top:0;
	}
}

/*リンクの設定*/
.js-main a{
	text-decoration:none;
	color:#000;
}
.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;
	}
}

/*PC980px、SP100%*/
.js-container{
	width:100%;
	max-width:980px;
	margin:auto;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
2.共通フォーマット（ボタンデザインなど）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*ボタン*/
.button019 a {
    background: #fff;
    /*border-radius: 3px;*/
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 280px;
    padding: 10px 25px;
    color: #000;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	border:solid 1px #000;
}
.button019 a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.button019 a:hover {
  background: #000;
  color: #FFF;
  opacity: 1;
}
.button019 a:hover:after {
  right: 1.4rem;
}



/*共通padding設定*/
.main-padding{
	padding: 70px 0;
}
@media screen and (max-width: 768px){
	.main-padding{
		padding: 3em 0;
	}
}

/*背景色*/
.bg-color01{
	background: #f1eee6;
}

/*テキスト色*/
/*.font-color01{ 
	color:#db7e76;
}*/

/*フォント*/
.font01{
	font-family: 'Amiri', serif;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
2.タイトルヘッダ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-title{
	margin:60px auto 30px;
	width:50%;
	max-width: 273px;
}
.main-title img{
	width:100%;
}
@media (max-width: 768px) {
	.main-title{
		margin:30px auto 30px;
	}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
3.メインビジュアル
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*.main-visual img{
	margin:auto;
	width:95%;
	max-width: 980px;
}
*/

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.イントロダクション
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-intro{
	padding-top:80px;
	padding-bottom:130px;
}

.main-intro_head{
	margin:30px auto 0;
	
	width:620px;
	max-width:90%;
}
.main-intro_head img{
	width:100%;
}
.main-intro_text{
	margin:50px auto 0;
	line-height:2;
	width:80%;
	max-width:400px;
	text-align: justify;
	font-size:0.8em;
}

/*線*/
.verticalline{
	margin:auto;
	height:60px;
	width:1px;
	background-color: #000;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.インフルエンサーリンク
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-inf{
	
}

.main-inf_head{
	margin:0 auto 50px;
	
	width:367px;
	max-width:80%;
}
.main-inf_head img{
	width:100%;
}

/*リンクエリア：フレックスボックス*/
.main-inf_wrapper{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: center;
	
	width:90%;
	max-width: 980px;
	margin:auto;
}
.main-inf_wrapper > div {
	/*列数と間の余白の設定*/
	width: calc( ( 100% - 200px ) / 5 );
	margin-right: 50px;
}
/*右端のマージンをゼロ設定*/
.main-inf_wrapper > div:nth-child( 5n ),
.main-inf_wrapper > div:last-child{
	margin-right: 0;
}
.main-inf_item{
	padding-bottom:30px;
}
.main-inf_item img{
	width:100%;
}
@media (max-width: 768px) {
	.main-inf_wrapper{
		padding:0 4vw;
	}
	.main-inf_wrapper > div {
		/*列数と間の余白の設定*/
		width: calc( ( 100% - 10vw ) / 2 );
		margin-right: 10vw;
	}
	.main-inf_wrapper > div:nth-child( 5n ) {
		margin-right: 10vw;
	}
	.main-inf_wrapper > div:nth-child( 2n ),
	.main-inf_wrapper > div:last-child {
		margin-right: 0;
	}
}



.main-inf_text{
	display: inline-block;
	margin-top:10px;
	padding:0px 5px 2px 5px;
	border-bottom:solid 1px #000;
}
.main-inf_text img{
	height:15px;
	width:auto;
	vertical-align:middle;
}


.main-inf_text_link{
	margin-top: 1em;
}
.main-inf_text_link a{
	text-decoration: underline;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
6.アイコン
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-icon{
	
}
.main-icon_head{
	margin:0 auto 50px;
	
	width:312px;
	max-width:70%;
}
.main-icon_head img{
	width:100%;
}

/*アイコンエリア：フレックスボックス*/
.main-icon_wrapper{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: center;
	
	width:70%;
	max-width: 390px;
	margin:auto;
}
.main-icon_wrapper > div {
	/*列数と間の余白の設定*/
	width: calc( ( 100% - 60px ) / 5 );
	margin-right: 15px;
}
/*右端のマージンをゼロ設定*/
.main-icon_wrapper > div:nth-child( 5n ),
.main-icon_wrapper > div:last-child{
	margin-right: 0;
}
.main-icon_item{
	padding-bottom:15px;
}
.main-icon_item img{
	width:100%;
}
@media (max-width: 768px) {
	.main-icon_wrapper{
		
	}
	.main-icon_wrapper > div {
		width: calc( ( 100% - 8vw ) / 5 );
		margin-right: 2vw;
	}
	.main-icon_wrapper > div:nth-child( 5n ) ,
	.main-icon_wrapper > div:last-child {
		margin-right: 0;
	}
	.main-icon_item{
		padding-bottom:2vw;
	}
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
7.商品一覧
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-lineup_wrapper{
	
}


/*商品一覧エリア：フレックスボックス*/
.main-lineup_wrapper{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: flex-start;
	align-items: flex-start;
	
	width:90%;
	max-width: 800px;
	margin:auto;
	text-align: left;
}
.main-lineup_wrapper > div {
	/*列数と間の余白の設定*/
	width: calc( ( 100% - 110px ) / 3 );
	margin-right: 55px;
}
/*右端のマージンをゼロ設定*/
.main-lineup_wrapper > div:nth-child( 3n ),
.main-lineup_wrapper > div:last-child{
	margin-right: 0;
}
.main-lineup_item{
	padding-bottom:50px;
}
.main-lineup_item img{
	width:100%;
}
@media (max-width: 768px) {
	.main-lineup_wrapper{
		
	}
	.main-lineup_wrapper > div {
		width: calc( ( 100% - 4vw ) / 2 );
		margin-right: 4vw;
	}
	.main-lineup_wrapper > div:nth-child( 3n ){
		margin-right: 4vw;
	}
	.main-lineup_wrapper > div:nth-child( 2n ) ,
	.main-lineup_wrapper > div:last-child {
		margin-right: 0;
	}
	.main-lineup_item{
		padding-bottom:10vw;
	}
}



.main-lineup_item_text{
	margin-top:10px;
}

.main-lineup_item_new ,
.main-lineup_item_re ,
.main-lineup_item_sale {
	display: inline-block;
	padding:2px 10px 1px;
	font-size:10px;
	line-height: 1;
	border:solid 1px #000;
	border-radius: 3px;
	margin-bottom:10px;
}
.main-lineup_item_new{
	background-color: #000;
	
	color:#fff;
}
.main-lineup_item_re{
	background-color: #fff;
	color:#000;
}
.main-lineup_item_sale{
	border: none;
	background-color: firebrick;
	color: #fff;
}

.main-lineup_item_name{
	font-size:12px;
	line-height: 1.3;
	letter-spacing: 0.05em;
}
.main-lineup_item_price ,
.main-lineup_item_price_sale {
	margin-top:3px;
	font-size:12px;
}
.main-lineup_item_price .tax-in ,
.main-lineup_item_price_sale .tax-in {
	font-size:10px;
	margin-left:0.8em;
}
.main-lineup_item_price_sale{
	color: firebrick;
}


/*カテゴリーリンク*/

.main-category{
	margin-bottom:50px;
}
.main-category_box{
	width:90%;
	max-width: 800px;
	margin:auto;
	text-align: left;
}

/*PC*/
@media (min-width: 769px) {
	.main-category_box{
		/*フレックスボックスの設定*/
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		/*フレックスボックスの要素を左寄せ*/
		justify-content: flex-start;
		align-items: flex-start;
	}
	.main-category_box > div {
		/*列数と間の余白の設定*/
		width: calc( ( 100% - 110px ) / 3 );
		margin-right: 55px;
	}
	/*右端のマージンをゼロ設定*/
	.main-category_box > div:nth-child( 3n ),
	.main-category_box > div:last-child{
		margin-right: 0;
	}
	.main-category_item{
		/*margin-bottom:50px;*/
	}
	
}
/*SP*/
@media (max-width: 768px) {
	.main-category_box{
		
	}
	.main-category_item{
		margin-bottom:20px;
	}
	.main-category_item > div:last-child{
		margin-bottom:0;
	}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
8.リンクエリア
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-linkarea{
	margin-bottom:50px;
}
.main-linkarea_head{
	font-size:1.25em;
	margin-bottom:1em;
}

/*1カラム*/
.main-linkarea_1col{
	width:90%;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}
.main-linkarea_1col_item{
	margin-bottom:3em;
}
.main-linkarea_1col_item img{
	width:100%;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
9.ブログエリア
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-blog{
	margin-bottom:50px;
	
	width:90%;
	max-width: 700px;
	margin: auto auto 50px;
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
10.フッター
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*イメージエリア*/
.main-footerimg{
	margin-bottom:20px;
	width:100%;
}

.main-footerimg_box{
	width:100%;
	height: 400px;
	position:relative;
	
	background: no-repeat url("https://shirai.itembox.design/item/common/joint_space_formama/top/img/07_back.jpg?timestamp=2023033015100000");
	background-size:cover;
	
}
@media screen and (max-width: 768px){
	.main-footerimg_box{
		height: 60vw;
	}
}

.main-footerimg_text{
	position: absolute;
	top: 50%;
 	left: 50%;
  	-ms-transform: translate(-50%,-50%);
  	-webkit-transform: translate(-50%,-50%);
  	transform: translate(-50%,-50%);

	color:#fff;
	letter-spacing: 0.2em;
}
.main-footerimg_logo{
	
}

@media screen and (max-width: 768px){
	
}


/*フッター*/
.main-footer{
	
}
.main-footer_logo{
	margin: 0 auto 20px;;
	
	width:235px;
	max-width: 70%;
}
.main-footer_logo img{
	width:100%;
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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}
}

.fadein-top2 {
    animation: fadeIn2 4s ease 0s 1 normal;
    -webkit-animation: fadeIn2 4s ease 0s 1 normal;
}
@keyframes fadeIn2 {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn2 {
    0% {opacity: 0}
    100% {opacity: 1}
}



/*下から*/
.fadein {
	opacity : 0;
	transform: translateY(50px);
	transition: all 1s;
	-moz-transform: translateY(50px);
	-webkit-transform: translateY(50px);
	-o-transform: translateY(50px);
	-ms-transform: translateY(50px);
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.slick
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.slider {
	width: 980px;
	max-width:90%;
	margin: 0 auto;
}
.slider div {
	width: 100%;
	height: auto;
	border-radius: 25px;
}
@media screen and (max-width: 768px){
	.slider div {
		border-radius: 15px;
	}
}
.slider img {
	width: 100%;
	height: auto;
}

.slider-dots {
 /* width: 50%;*/ /*htmlで指定*/
  margin: 30px auto 0;
  padding: 0;
  text-align: center;
  list-style: none;
}

.slider-dots li {
    display: inline-block;
    /*width: calc(25% - 8px);/* プログレスバーの横幅はスライドの枚数に合わせて調整してください *//*htmlで指定*/
    margin: 0 2px;
}
.slider-dots button {
    position: relative;
    width: 100%;
    height: 4px;
    border: 0;
    background-color: #f1eee6;
    font-size: 0;
}
.slider-dots button:after {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	display: block;
	width: 0%;
	height: 100%;
}
.slider-dots .slick-active button:after{
	background-color: #9d7953;
	animation: progress 4s linear forwards;
}

@keyframes progress {
  from {
    width: 0%;
  }
  
  to {
    width: 100%;
  }
}






