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

/*googlefonts*/

/*Adobefonts*/
/*

*/

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

■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;
	background-color: #fff;
}
@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:1.3rem;*/
	line-height: 2;
	letter-spacing: 0.07em;
	font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', serif;
	font-weight: 400;
	color:#000;
}
@media screen and (max-width:768px) {
	.js-main{
		padding-top:0;
	}
}

/*リンクの設定*/
.js-main a{
	text-decoration:none;
	color:#222;
}
.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;
	}
}

/*PC1200px、SP100%*/
.js-container{
	width:100%;
	max-width:1200px;
	margin:auto;
}


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

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

/*ボタン019*/
.button019 a {
    background: #fff;
    /*border-radius: 3px;*/
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
	width:70%;
    max-width: 280px;
    padding: 5px 10px;
    color: #000;
    transition: 0.3s ease-in-out;
	font-size:0.5em;
    /*font-weight: 500;*/
	border:solid 1px #000;
}
.button019 a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 1rem;
  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;
}



/*背景色*/
.contents_bgcolor{
	width:100%;
	background-color: #fff;
}

/*共通マージン設定*/
.main-margin{
	margin: 100px 0;
}


/*見出し*/
.head_d01{
	margin-bottom:4em;
}
.head_d01 .text01{
	display: inline-block;
	background-color: #000;
	color:#fff;
	font-size:0.7em;
	padding: 0.1em 2em;
	margin-bottom:2em;
}
.head_d01 .text02{
	font-size:2em;
	letter-spacing: 0em;
	line-height:1.2;
}


/*フォント*/
/*フォント指定*/
.font-01{ /*明朝系*/
	font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', serif;
}
.font-02{ /*ゴシック系*/
	font-family: 'Avenir','Helvetica Neue','Helvetica','Arial', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
}

.bold{ /*太字*/
	font-weight: bold;
}




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

/*ビジュアル用背景画像の設定/iPhone対応版*/
body:before{
  content:"";
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height:80vh;
  background:url("https://www.joint-space.co.jp/category_common/jointspace/wholegarment/img/main_back.jpg") center no-repeat;
  background-size:cover;
}
@media screen and (max-width: 768px){
	body:before{
		width:100%;
  		height:80vh;
		background:url("https://www.joint-space.co.jp/category_common/jointspace/wholegarment/img/main_back_sp.jpg") center no-repeat;
		background-size:cover;
	}
}
/*要素上下左右中央寄せ*/
.main-visual{
	display: flex;
  	justify-content: center;
  	align-items: center;
	min-height: 80vh;
	
	margin-top:-80px;
	
	text-align: center;
}

.main-title{
	padding-top: 5em;
	color:#fff;
}
.main-title .title-logo img{
	width:130px;
	margin:1em auto;
	/*filter: drop-shadow(1px 1px 1px #000);*/
}
.main-title .title-text01{
	font-size:2.5em;
	line-height:1.2;
}
.main-title .title-text02{
	margin-top:0.3em;
	font-size:1.5em;
}
.main-title .title-text03{
	margin-top:3em;
	margin-bottom:-0.5em;
	letter-spacing: 0.2em;
	font-size:0.7em;
}

@media screen and (max-width: 768px){ 
	.main-title{
		padding-top: 3.5em;
	}
	.main-title .title-logo img{
		width:35%;
	}
	.main-title .title-text01{
		font-size: 2.5em;
	}
	.main-title .title-text02{
		font-size:1.3em;
	}
}





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

.main-intro{
	width:100%;
	padding: 6em 0;
}

.main-intro_text01{
	font-size:2em;
	margin-bottom:0.5em;
}
.main-intro_text02{
	font-size:0.8em;
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.ホールガーメントとは
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-whatis{
	
}

.main-whatis_wrapper{
	width:100%;
	background-color: #f3f3f3;
}

.main-whatis_box{

}
.main-whatis_box_in01{
	line-height:0;
}
.main-whatis_box_in01 img{
	width:100%;
	line-height:0;
}

.main-whatis_box_in02{
	text-align: left;
}
.whatis_head{
	margin-bottom:1em;
}
.whatis_head01{
	font-size:48px;
	line-height: 0.9;
	letter-spacing: 0;
}
.whatis_head02{
	font-size:36px;
	letter-spacing: 0;
}
.whatis_text {
	font-size:0.75em;
}


/*SP*/
@media (max-width: 768px) {
	.main-whatis_box_in02{
		padding:10% 10% 15%;
	}
	.whatis_head01{
		font-size:2.5em;
		line-height: 1;
	}
	.whatis_head02{
		font-size:1.5em;
	}
	.whatis_text {
		font-size:0.8em;
		text-align: justify;
	}
}



/*PC*/
@media (min-width: 769px) {
	.main-whatis_box{
		/*フレックスボックスの設定*/
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		/*フレックスボックスの要素を左寄せ*/
		justify-content: center;
		align-items: center;	
	}
	.main-whatis_box_in01{
		width:50%;
	}
	.main-whatis_box_in02{
		width:50%;
		padding:50px;
	}
	/*画像右*/
	.main-whatis_wrapper .image-right .main-whatis_box_in01{
		order: 2;
	}
	.main-whatis_wrapper .image-right .main-whatis_box_in02{
		order: 1;
	}
	/*画像左*/
	.main-whatis_wrapper .image-left .main-whatis_box_in01{
		order: 1;
	}
	.main-whatis_wrapper .image-left .main-whatis_box_in02{
		order: 2;
	}	
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
6.メリット
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-merit{
	
}

.merit_wrapper{
	
}

.merit_set{
	margin-bottom:4em;
}
.merit_no{
	color:#99a1a8;
	font-size:1.8em;
	line-height: 0.8;
}
.merit_head{
	font-size:1.8em;
}
.merit_text{
	font-size:0.75em;
}


/*日本製*/

.japan_wrapper{
	background-image: url("https://www.joint-space.co.jp/category_common/jointspace/wholegarment/img/back_jp.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	
	color:#fff;
	width:90%;
	max-width: 600px;
	margin: auto;
	padding:40px;
}
.japan_head{
	font-size:1.7em;
}
.japan_img img{
	width:80px;
}
.japan_text{
	margin-top:1em;
	font-size:0.7em;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
7.イメージ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.main-image{
	width:100%;
}

.main-image_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: center;
	align-items: center;
	
	line-height: 0;
}
.main-image_item img{
	width:100%;
}
.main-image_item{
	width:16.666666666666%;
}
/*SP*/
@media (max-width: 768px) {
	.main-image_item{
		width:50%;
	}
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
8.動画
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.movie_box{
	
}
.movie_box video{
	margin:auto;
	max-width:600px;
	width:90%;
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
9.ブランド
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-brand{
	
}

.brand_box{
	width:80%;
	max-width:800px;
	margin:auto;
}

@media (min-width: 769px) {
	/*枠：フレックスボックス*/
	.brand_box{
		/*フレックスボックスの設定*/
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		/*フレックスボックスの要素を左寄せ*/
		justify-content: flex-start;
	}
	.brand_box > div {
		/*列数と間の余白の設定*/
		width: calc( ( 100% - 30px ) / 2 );
		margin-right: 30px;
		margin-bottom:30px;
	}
	/*右端のマージンをゼロ設定*/
	.brand_box > div:nth-child( 2n ),
	.brand_box > div:last-child{
		margin-right: 0;
	}
	/*.brand_box > div:nth-last-child(-n+2){
		margin-bottom: 30px;
	}*/
}

/*中身：フレックスボックス*/
.brand_box_item{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: flex-start;
	align-items: center;
	
	background-color: #f5f5f5;
}
.brand_box_item01{
	width:47%;
	line-height: 0;
}
.brand_box_item02{
	width:53%;
}
/*SP*/
@media (max-width: 768px) {
	.brand_box_item{
		margin-bottom:30px;
	}
}




.brand_box_logo{
	height:60px;
	margin-bottom:1em;
}
.brand_box_logo img{
	height:100%;
	width:auto;
}

.brand_box_item01 img{
	width:100%;
}




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

.contents-footer{
	margin:0 auto;
	padding:4em 0;
	background-color: #fff;
}
.contents_brand_top{
	margin:3em auto;
}
.brand_under-text{
	margin-top:1em;
}

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

/*タイトル画像部分*/
.footer-title{
	margin:0 auto;
	padding:2em;
}
.vertical-line{ /*線*/
	width:1px;
	height:100px;
	background-color: #222;
	margin:1em auto;
}
.footer-text01{
	font-size:3em;
}
.footer-text02{
	font-size:0.8em;
}
/*SP*/
@media (max-width: 768px) {
	.footer-title img{
		width:50%;
	}
	.vertical-line{ /*線*/
		height:50px;
	}
	.footer-text01{
		font-size:1.5em;
	}
	.footer-text02{
		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}
}


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


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

