@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:#363636;
}
.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: 30%;
  padding: 14px 10px;
  font-size: 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  display: block;
  margin: 1em auto;
  color: #fff;
  background: #3b4278;
  line-height: 1;
  /*border-radius: 50px;*/
  transition: all .2s;

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

/*小さいver*/
.btn-small{
	width: 200px;
	font-size:0.8em;
	/*padding: 0.5em 3em;*/
	margin-top:1em;
}
@media screen and (max-width: 768px){
	.btn01{
		 width: 80%;
	}
	.btn-small{
		 /*padding: 0.1em 2em;*/
	}
}


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

/*見出し*/
.content-head01{
	margin-bottom:2em;
}
.content-head01_01{
	font-size:2em;
	font-family: serif;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom:0.4em;
}
.content-head01_02{
	font-size:1em;
}


/*ボタン色変更*/
.btn-color01{
	background: #fff;
	border: 1px solid #222;
	color: #222;
}
.btn-color01:hover{
	background-color: #222;
  	border-color: #222;
  	color: #fff;
}

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

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


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

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

h1{
	margin: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;
}


/*メニュー*/
.main-menu{
	margin:10px auto 80px;
	width:90%;

	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央寄せ*/
	justify-content: center;
	align-items: center;
	font-size: 0.9em;
}
.main-menu_item{
	width:20%;
	padding:8px;
}
@media screen and (max-width: 768px){
	.main-menu_item{
		width:50%;
	}
}

/*ボタン*/
.button03 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0.25em 1.5em 0.2em;
  width: 100%;
  color: #222;
  font-size: 0.9em;
  font-weight: 700;
  border-bottom: 1px solid #222;
	/*border-radius: 5px;*/
}

.button03 a::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 1px solid #222;
  border-right: 1px solid #222;
  transform: rotate(135deg);
}

.button03 a:hover {
  /*color: #fff;*/
  text-decoration: none;
  /*background-color: #222;
  border-color:#222;*/
}

.button03 a:hover::after {
  /*border-top: 1px solid #fff;
  border-right: 1px solid #fff;*/
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.アイテム
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-item_box{
	margin:40px auto 0;
	width:100%;
	max-width:980px;
}
@media screen and (max-width: 768px){
	.main-item_box{
		width:95%;
	}
}

.category {
	font-size: 1.5em;
	margin-top: 5em;
}
#main-item_01 .category {
	margin-top: 0;
}

/*大枠見出し*/
.contents_title{
	margin-top:40px;
	display: inline-block;
	font-size:1.5em;
	padding-bottom:0.5em;
	border-bottom: 2px solid #54bcd5;
}
.contents_title .number{
	font-family: serif;
	font-size:0.8em;
}

/*〜〜〜上の部分〜〜〜*/
.main-item_box_upper{
	margin-bottom:0;
	padding: 0;
	/*background-color:#E9ECF3;*/
	/*border-radius:15px 15px 0 0;*/

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

	text-align: left;

}
@media screen and (max-width: 768px){
	.main-item_box_upper{
		padding: 0;
	}
}

/*上の部分の写真の方*/
.container01{
	position: relative;
	width:49%;
}
.container01 .item_img{
	line-height:0;
}
.container01 .item_icon{
	position: absolute;
	top: 0;
	left: 0;

	color:#fff;
	background-color: crimson;
	padding: 0.1em 1em 0;
}

.container01 .item_img img{
	width:100%;
}
@media screen and (max-width: 768px){
	.container01{
		width:100%;
	}
	.container01 img{
		/*border-radius:15px 15px 0 0;*/
	}
}

/*上の部分の文字の方*/
.container02{
	width:51%;
	padding:4%;
}
@media screen and (max-width: 768px){
	.container02{
		width:100%;
		padding:3%;

		/*写真に食い込ませる*/
		/*margin-top:-50px;*/
	}
}

@media screen and (max-width: 768px){

}

/*アイテムタイトル*/
.item_header{
	width:100%;
	margin:auto;
	margin-bottom:1em;

	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央寄せ*/
	justify-content: left;

	text-align: left;
}
.item_header img{
	width:100%;
}
.item_header_01{
	width:100%;
	text-align: left;
	/*font-style:italic;*/
	font-size:1.2em;
	line-height: 1.5;
	letter-spacing: 0.1em;
	font-weight:700;
}
.item_header_02{
	/*width:100%;*/
	justify-content: left;
	/*font-style:italic;*/
	color: #fff;
	background-color: #3b4278;
	font-size:1.2em;
	line-height: 1.5;
	letter-spacing: 0.1em;
	font-weight:700;
	padding: 0.2em 1em;
	margin-bottom: 1em;
}

@media screen and (max-width: 768px){
	.item_header{

	}
	.item_header_01{
		width:100%;
		padding-top:0.5em;
		font-size:1.25em;
		/*text-align: center;*/
	}
}

/*価格*/
.item_info{
	width:100%;
	letter-spacing: 0.025em;
}
.item_info .off{
	font-size:0.9em;
	font-weight:700;
	color:#fff;
	background-color: crimson;
	padding:0.1em 0.5em 0.1em;
}
.item_info .price{
	font-size:1.3em;
	color:crimson;
	font-weight:700;
	vertical-align: middle;
}
@media screen and (max-width: 768px){
	.item_info{
		font-size:1.2em;
	}
}

/*コメント*/
.item_comment {
	margin-bottom:2.5em;
	font-size: 0.8em;
	text-align: justify;
	line-height: 1.8;
}

@media screen and (max-width: 768px){
	.item_comment{

	}
}

/*PC用順番指定*/
@media screen and (min-width: 769px){
	/*テキストが左側 sectionに追加*/
	.text-left .main-item_box_upper .container01{
		order: 1;
	}
	.text-left .main-item_box_upper .container02{
		order: 0;
		/*padding-right:30px;
		padding-left:0;*/
	}
	/*テキストが右側 sectionに追加*/
	.text-right .main-item_box_upper .container01{
		order: 0;
	}
	.text-right .main-item_box_upper .container02{
		order: 1;
		/*padding-right:0;
		padding-left:30px;*/
	}

}



/*バリエーション*/
.item_variation{
	width:100%;
	margin: auto;
}
.item_variation img{
	width:100%;
}
.item_variation_t{
	text-align: left;
	margin-bottom:0.8em;
	border-bottom: 1px solid #000;
	/*font-family: serif;*/
	font-size:0.9em;
	font-weight:bold;
}

/*リンクエリア：フレックスボックス*/
.item_variation_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: left;

	text-align: left;
	/*margin-bottom: 2em;*/
}
.item_variation_box > div {
	/*列数と間の余白の設定*/
	width: calc( ( 100% - 20px ) / 3 );
	margin-right: 10px;
}
/*右端のマージンをゼロ設定*/
.item_variation_box > div:nth-child( 3n ),
.item_variation_box > div:last-child
{
	margin-right: 0;
}
.item_variation_item{
	padding-bottom:10px;
}
.item_variation_item:nth-last-child(-n+3){
	padding-bottom:0;
}

.item_variation_item img{
	width:100%;
}
@media (max-width: 768px) {
	.item_variation_box{

	}
	.item_variation_box > div {
		/*列数と間の余白の設定*/
		width: calc( ( 100% - 2vw ) / 3 );
		margin-right: 1vw;
	}
	.item_variation_box > div:nth-child( 3n ),
	.item_variation_box > div:last-child {
		margin-right: 0;
	}
}

/*バリエーション画像*/
.variation_img_box{
	position: relative;
}
.variation_img_box .variation_img{
	line-height:0;
}
.variation_img_box .variation_icon{
	position: absolute;
	top: 0;
	left: 0;

	font-size:0.7em;
	color:#fff;
	background-color: crimson;
	padding:0 0.5em 0;
	letter-spacing: 0;
	line-height: 1.3;
}


/*バリエーション価格*/
.variation_info{
	margin-top:0.25em;
	width:100%;
	letter-spacing: 0;
	font-size:0.8em;
	line-height: 1.2;
}
.variation_info .price{
	color:crimson;
	font-weight:700;
	font-size:1.2em;
}
@media screen and (max-width: 768px){
	.variation_info{

	}
}

.recommend {
	margin-top: 2em;
	color: #3b4278;
	font-weight: bold;
}
@media screen and (max-width: 768px){
	.recommend {
		margin-top: 2em;
	}
}

/*タイトル画像*/
.category {
	position: relative;
	height: 300px;
	min-height: 300px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	margin-bottom: 2em;
}
.category_title {
	position: absolute;
	top: 43%;
	right: 6em;
	font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	font-weight: 700;
	font-size: 1.3em;
	color: #363636;
	line-height: 0.9;
}
.category_title span {
	font-size: 0.55em;
	font-family: Arial, "Hiragino Kaku Gothic ProN","Hiragino Sans","BIZ UDPGothic",Meiryo,sans-serif;
	font-weight: 400;
	letter-spacing: 0.1em;
}
#main-item_01 .category {
	background-image: url(https://www.joint-space.co.jp/category_common/jointspace/officecasual/img/item_01.jpg);
}
#main-item_02 .category {
	background-image: url(https://www.joint-space.co.jp/category_common/jointspace/officecasual/img/item_02.jpg);
}
#main-item_03 .category {
	background-image: url(https://www.joint-space.co.jp/category_common/jointspace/officecasual/img/item_03.jpg);
}
#main-item_04 .category {
	background-image: url(https://www.joint-space.co.jp/category_common/jointspace/officecasual/img/item_04.jpg);
}
#main-item_05 .category {
	background-image: url(https://www.joint-space.co.jp/category_common/jointspace/officecasual/img/item_05.jpg);
}

@media screen and (max-width: 768px){
	.category {
		height: auto;
		min-height: 120px;
		width: 100%;
		min-width: 100%!important;
		background-position: center;
		background-size: contain;
		background-repeat: no-repeat;
		margin-bottom: 0.5em;
	}
	.category_title {
		position: absolute;
		top: 40%;
		right: 2.5em;
		line-height: 0.8;
		font-size: 0.9em;
	}

}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
9.リンクエリア
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-link{
	padding-top:50px;
	padding-bottom:50px;
	width:100%;
	background-color: #f0f0f0;
}

.contents-link_t{
	margin-bottom: 2em;
}
.contents-link_t .t01{
	display: inline-block;
	padding: 0 1em;
	background-color: #242424;
	color:white;
}
.contents-link_t .t02{
	padding-top:0.2em;
	font-size:0.8em;
}


/*リンクエリア：フレックスボックス*/
.contents-link_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: left;

	text-align: left;
	margin-bottom: 2em;
}
.contents-link_box > div {
	/*列数と間の余白の設定*/
	width: calc( ( 100% - 90px ) / 4 );
	margin-right: 30px;
}
/*右端のマージンをゼロ設定*/
.contents-link_box > div:nth-child( 4n ) {
	margin-right: 0;
}
.contents-link_boxitem{
	padding-bottom:30px;
}
.contents-link_boxitem img{
	width:100%;
}
@media (max-width: 768px) {
	.contents-link_box{
		padding:0 4vw;
	}
	.contents-link_box > div {
		/*列数と間の余白の設定*/
		width: calc( ( 100% - 1vw ) / 2 );
		margin-right: 1vw;
	}
	.contents-link_box > div:nth-child( 2n ) {
		margin-right: 0;
	}
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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 {
	opacity : 0;
	transform: translateY(50px);
	transition: all 1s;
	-moz-transform: translateY(50px);
	-webkit-transform: translateY(50px);
	-o-transform: translateY(50px);
	-ms-transform: translateY(50px);
}
