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

/*googlefonts*/

/*Adobefonts*/
@import url("https://use.typekit.net/nax4giq.css");
/*
Futura PT Medium
font-family: futura-pt, sans-serif;
font-weight: 500;
font-style: normal;

Futura PT Bold
font-family: futura-pt-bold, sans-serif;
font-weight: 700;
font-style: normal;
*/

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

■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;
}

/*自動生成商品エリアのマージンゼロ/余白が発生するため*/
.fs-c-productList{
	margin:0;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■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:11px;
	line-height: 2;
	letter-spacing: 0.1em;
	font-family: 'Avenir','Helvetica Neue','Helvetica','Arial', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 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:#413a3a;
}
.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:980px;
	margin:auto;
}
@media screen and (max-width: 768px){   
	.js-container{
		width:100%;
	}
}

/*コンテンツ部分の背景色*/
.main-background{
	background-color: #eff1f2;
}



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

/*ボタン*/
.btn01{
  width: 100%;
  padding: 0.8em 0 0.8em 0;
  font-size: 1em;
  position: relative;
  text-align: center;
  text-decoration: none;
  display: block;
  margin: 1em auto;
  color: #000;
  background: #dfdfdf;
  line-height: 1;
  /*border-radius: 50px;*/
  transition: all .2s;
	
  border: 2px solid #dfdfdf;
}
.btn01:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

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


/*斜めで区切る*/
.diagonal_container{
	width: 100%;
    padding: 150px 0;
    clip-path: polygon(0 calc(0% + 7vw), 100% 0, 100% calc(100% - 7vw), 0 100%);
}
@media screen and (max-width: 768px){
	.diagonal_container{
		  padding: 80px 0;
	}
}


/*背景色＆テキスト色*/
.bg-color01{
	background-color: #f4f4f4; /*グレー*/
	color:#b6862c; /*黄土色*/
}
.bg-color02{
	background-color: #fff; /*白*/
	color:#b6862c; /*黄土色*/
}
.bg-color03{
	background-color: #b6862c; /*黄土色*/
	color:#fff; /*白*/
}


/*interval*/
.interval{
	/*margin-top:100px;*/
	text-align: center;
}
.interval img{
	width:90px;
}
@media screen and (max-width: 768px){
	
}

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

.contents-topimg{
	width:100%;
	height:100vh;
}

.topimg-container{
	position: relative;
}
.topimg-container .topimg-back{
	position: absolute;
	background-color: #ededed;
	top: 0;
	width:100%;
	height:520px;
}
.topimg-container .topimg-img{
	position: absolute;
	left: 0;
  	right: 0;
  	margin: auto;
}
.topimg-container .topimg-logo{
	position: absolute;
	top: 215px;
    left: 0;
  	right: 0;
  	margin: auto;
}

@media screen and (max-width: 768px){
	.topimg-container .topimg-back{
		height:450px;
	}
	.topimg-container .topimg-img img{
		width:100%;
	}
	.topimg-container .topimg-logo{
		width:60%;
	}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.スクロール
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*スクロールダウン全体の場所*/
.scrolldown1{
    /*描画位置※位置は適宜調整してください*/
  position:absolute;
  left:50%;
  bottom:10px;
    /*全体の高さ*/
  height:50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
    /*描画位置*/
  position: absolute;
  left:-15px;
  top: -15px;
    /*テキストの形状*/
  color: #000;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after{
  content: "";
    /*描画位置*/
  position: absolute;
  top: 0;
    /*線の形状*/
  width: 1px;
  height: 30px;
  background: #000;
    /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:30px;
    opacity: 1;
  }
  100%{
    height:0;
    top:50px;
    opacity: 0;
  }
}


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

.contents-intro{
	padding:0;
	
	height:120vh;
	min-height:900px;
	
	background:url(https://www.joint-space.co.jp/category_common/tina/suit/img/intro-img.jpg);
    background-repeat: no-repeat !important;/*背景画像をリピートしない*/
    background-position: center !important;/*背景画像の位置を中央に*/
    background-size: auto 100% !important;/*背景画像が.slider-item全体を覆い表示*/
	background-color: #dfe0e2!important;
}
@media screen and (max-width: 768px){
	.contents-intro{
		background:url(https://www.joint-space.co.jp/category_common/tina/suit/img/intro-img_sp.jpg);
		
		height:85vh!important;
		min-height: 85vh!important;
	}
}

.shadow{
	background: rgba(0, 0, 0, 0.3);
}


.contents-intro_in{
	height:120vh;
	min-height: 900px;
	
	position: relative;
}
@media screen and (max-width: 768px){
	.contents-intro_in{
		height:85vh;
		min-height: 85vh;
	}
}

.contents-intro_inbox{
	position: absolute;
    top: 40%;
    right: 20%;
    transform: translateY(-40%);
    -webkit-transform: translateY(-40%);
    -ms-transform: translateY(-40%);
	
	color:#fff;
	text-align: left;
}
@media screen and (max-width: 768px){
	.contents-intro_inbox{
		right: auto;
		left:30px;
		
		/*text-align: center;*/
	}
}

.intro_title{
	font-size:24px;
	line-height: 1.4;
	margin-bottom:0.8em;
}
.intro_text{
	
}
@media screen and (max-width: 768px){
	.intro_title{
		font-size:18px;
	}
}

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

/*下部テキスト*/
.contents-item_under{
	padding-top:40px;
	text-align: left;
}

.item-text_t01{
	font-family: futura-pt, sans-serif;
	font-weight: 500;
	font-style: normal;
	
	font-size:20px;
	letter-spacing: 0.15em;
}
.item-text_t02{
	
}

/*コーデ*/
.item-text_in02{
	font-family: futura-pt, sans-serif;
	font-weight: 500;
	font-style: normal;
}
.item-text_c01{
	border-bottom:solid 1px #fff;
}
.bg-color02 .item-text_c01{
	border-bottom:solid 1px #b6862c;
}
/*アイテムのところ*/
.item-text_c02_box{
	/*フレックスボックスの設定*/
		display: -webkit-flex;
    	display: flex;
    	-webkit-flex-wrap: wrap;
    	flex-wrap: wrap;
		/*フレックスボックスの要素の寄せ*/
		justify-content: left;
		align-items: center;
}
.item-text_c02_in01{
	width:45%
}
.item-text_c02_in02{
	width:55%
}
@media screen and (max-width: 768px){
	.item-text_box{
		padding-left:30px;
		padding-right:30px;
	}
	.item-text_in02{
		margin-top:2em;
	}
}

/*ボタン調整*/
.item-text_c02_in02 .btn01{
	width:auto;
	display: inline-block;
	
	font-size:0.6em;
	padding: 0.2em 3em;
	margin-top:1em;
}
@media screen and (max-width: 768px){
	.btn-small{
		 padding: 0.1em 2em;
	}
}


/*PC 2列*/
@media screen and (min-width: 769px){
	.item-text_box{
		/*フレックスボックスの設定*/
		display: -webkit-flex;
    	display: flex;
    	-webkit-flex-wrap: wrap;
    	flex-wrap: wrap;
		/*フレックスボックスの要素の寄せ*/
		justify-content: center;
		/*align-items: center;*/
	
		width:100%;
		margin:auto;
	}
	.item-text_in01{
		width:50%;
	}
	.item-text_in02{
		width:50%;
		padding-left:10%;
	}
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
7.ラインナップ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-lineup{
	
}
.contents-lineup .wrap{
	padding:50px 15px;
}

.lineup_title{
	font-family: futura-pt, sans-serif;
	font-weight: 500;
	font-style: normal;
	
	font-size:24px;
	letter-spacing: 0.2em;
}

.lineup_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素の寄せ*/
	justify-content: center;
	/*align-items: center;*/
	
	color:#000;
	text-align:left;
	line-height: 1.4;
}
.lineup_box img{
	width:100%;
}
.lineup_box_item{
	margin:5px;
	width:15%;
	
	background-color: #fff;
	padding:0;
}
@media screen and (max-width: 768px){
	.lineup_box_item{
		width:28%;
	}
}

.lineup_text{
	padding:10px;
}
.lineup_text .price{
	font-family: futura-pt-bold, sans-serif;
	font-weight: 700;
	font-style: normal;
	
	letter-spacing: 1;
}
.lineup_text .tax{
	font-size:0.5em;
	letter-spacing: 0;
}


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

.contents-footer{
	padding-top:150px;
	padding-bottom:200px;
}
.contents-footer .btn01{
	background-color: #000;
	color:#fff;
	border-color: #000;
	width:200px;
}
.contents-footer .btn01:hover{
	background-color: #fff;
	color:#000;
}

@media screen and (max-width: 768px){
	.contents-footer img{
		width:50%;
	}
}


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

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.delighters：スクロールアニメーション
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*animation-左からぬっと出てくる*/
/* 基本のスタイル */
.animation.delighter {
	  transition: all .8s ease-out;
      transform: translateX(-100%);
      opacity: 0;
   }
 
/* スタート時のスタイル */
   .animation.delighter.started {
      transform:none;
	  opacity:1;
   }
 
/* エンド時のスタイル */
   .animation.delighter.started.ended {
      
   }


/*animation02-ふわっと出現*/
/* 基本のスタイル */
.animation02.delighter {
	  transition: all .8s ease-out;
      transform: translateX(0%);
      opacity: 0;
   }
 
/* スタート時のスタイル */
   .animation02.delighter.started {
      transform:none;
	  opacity:1;
   }
 
/* エンド時のスタイル */
   .animation02.delighter.started.ended {
      
   }



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.slick スライダー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.slider {
  position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
	min-height: 900px;
}
@media screen and (max-width: 768px){
	.slider{
		height:80vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
		min-height: 80vh;
	}
}

.slider img{
	width:100%;
}


.contents-item_slider ul {
	margin-block-start: 0em!important;
    margin-block-end: 0em!important;
    margin-inline-start: 0px!important;
    margin-inline-end: 0px!important;
    padding-inline-start: 0px!important;
}

/*　背景画像設定　*/
/*アイテム01*/
#contents-item01 .slider-item01 {
    background:url(https://www.joint-space.co.jp/category_common/tina/suit/img/item01-01.jpg);
}
#contents-item01 .slider-item02 {
    background:url(https://www.joint-space.co.jp/category_common/tina/suit/img/item01-02.jpg);
}
#contents-item01 .slider-item03 {
    background:url(https://www.joint-space.co.jp/category_common/tina/suit/img/item01-03.jpg);
}
/*アイテム02*/
#contents-item02 .slider-item01 {
    background:url(https://www.joint-space.co.jp/category_common/tina/suit/img/item02-01.jpg);
}
#contents-item02 .slider-item02 {
    background:url(https://www.joint-space.co.jp/category_common/tina/suit/img/item02-02.jpg);
}
#contents-item02 .slider-item03 {
    background:url(https://www.joint-space.co.jp/category_common/tina/suit/img/item02-03.jpg);
}
/*アイテム03*/
#contents-item03 .slider-item01 {
    background:url(https://www.joint-space.co.jp/category_common/tina/suit/img/item03-01.jpg);
}
#contents-item03 .slider-item02 {
    background:url(https://www.joint-space.co.jp/category_common/tina/suit/img/item03-02.jpg);
}
#contents-item03 .slider-item03 {
    background:url(https://www.joint-space.co.jp/category_common/tina/suit/img/item03-03.jpg);
}
#contents-item03 .slider-item04 {
    background:url(https://www.joint-space.co.jp/category_common/tina/suit/img/item03-04.jpg);
}
/*アイテム04*/
#contents-item04 .slider-item01 {
    background:url(https://www.joint-space.co.jp/category_common/tina/suit/img/item04-01.jpg);
}
#contents-item04 .slider-item02 {
    background:url(https://www.joint-space.co.jp/category_common/tina/suit/img/item04-02.jpg);
}
#contents-item04 .slider-item03 {
    background:url(https://www.joint-space.co.jp/category_common/tina/suit/img/item04-03.jpg);
}
#contents-item04 .slider-item04 {
    background:url(https://www.joint-space.co.jp/category_common/tina/suit/img/item04-04.jpg);
}

/*背景画像設定 SP*/
@media screen and (max-width: 768px){
	/*アイテム01*/
	#contents-item01 .slider-item01 {
    	background:url(https://www.joint-space.co.jp/category_common/tina/suit/img/item01-01_sp.jpg);
	}
	#contents-item01 .slider-item02 {
	    background:url(https://www.joint-space.co.jp/category_common/tina/suit/img/item01-02_sp.jpg);
	}
	#contents-item01 .slider-item03 {
    	background:url(https://www.joint-space.co.jp/category_common/tina/suit/img/item01-03_sp.jpg);
	}
	/*アイテム02*/
	#contents-item02 .slider-item01 {
	    background:url(https://www.joint-space.co.jp/category_common/tina/suit/img/item02-01_sp.jpg);
	}
	#contents-item02 .slider-item02 {
    	background:url(https://www.joint-space.co.jp/category_common/tina/suit/img/item02-02_sp.jpg);
	}
	#contents-item02 .slider-item03 {
    	background:url(https://www.joint-space.co.jp/category_common/tina/suit/img/item02-03_sp.jpg);
	}
	/*アイテム03*/
	#contents-item03 .slider-item01 {
    	background:url(https://www.joint-space.co.jp/category_common/tina/suit/img/item03-01_sp.jpg);
	}
	#contents-item03 .slider-item02 {
    	background:url(https://www.joint-space.co.jp/category_common/tina/suit/img/item03-02_sp.jpg);
	}
	#contents-item03 .slider-item03 {
    	background:url(https://www.joint-space.co.jp/category_common/tina/suit/img/item03-03_sp.jpg);
	}
	#contents-item03 .slider-item04 {
    	background:url(https://www.joint-space.co.jp/category_common/tina/suit/img/item03-04_sp.jpg);
	}
	/*アイテム04*/
	#contents-item04 .slider-item01 {
    	background:url(https://www.joint-space.co.jp/category_common/tina/suit/img/item04-01_sp.jpg);
	}	
	#contents-item04 .slider-item02 {
    	background:url(https://www.joint-space.co.jp/category_common/tina/suit/img/item04-02_sp.jpg);
	}
	#contents-item04 .slider-item03 {
    	background:url(https://www.joint-space.co.jp/category_common/tina/suit/img/item04-03_sp.jpg);
	}
	#contents-item04 .slider-item04 {
    	background:url(https://www.joint-space.co.jp/category_common/tina/suit/img/item04-04_sp.jpg);
	}
}

.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:100vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
	min-height: 900px;
    background-repeat: no-repeat !important;/*背景画像をリピートしない*/
    background-position: center !important;/*背景画像の位置を中央に*/
    background-size: 1200px!important;/*背景画像が.slider-item全体を覆い表示*/
	background-color: #dfe0e2!important;
}
@media screen and (max-width: 768px){
	.slider-item{
		height:80vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
		min-height: 80vh;
		background-size: auto 100% !important;/*背景画像が.slider-item全体を覆い表示*/
	}
}

/*矢印の設定*/

.slick-prev, 
.slick-next {
    position: absolute;
	z-index: 3;
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #b6862c;/*矢印の色*/
    border-right: 2px solid #b6862c;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
	position: relative;
	z-index: 3;
    text-align:center;
	margin:-50px 0 0 0;/*ドットの位置*/
}
	
.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#fff;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}