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

/*google fonts*/
@import url('https://fonts.googleapis.com/css2?family=Amiri&display=swap');
/*.amiri-regular {
  font-family: "Amiri", serif;
  font-weight: 400;
  font-style: normal;
}*/

/*Adobe fonts*/
@import url("https://use.typekit.net/jwd0tga.css");
/*Circe Light-Regular-Bold
font-family: "circe", sans-serif;
font-weight: 300 or 400 or 700;
font-style: normal;
*/

/*カスタム変数*/
/*カラー用*/
:root {
	--color-pink:#fae7e3 ;
	--color-pink2:#fff6f4 ;
	--color-pink3:#dfa8a1 ;
	--color-pink4:#cf5264 ;
	--color-blue:#b3badc ;
	--color-blue2:#e3e6f3 ;
	--color-blue3:#98a2d2 ;
	--color-blue4:#4662d0 ;
}

:root {
	--color-tab01-main:var(--color-pink) ; 
	--color-tab01-sub:var(--color-pink2) ; 
	--color-tab01-text:var(--color-pink3) ;
	--color-tab01-point:var(--color-pink4) ; 
	--color-tab02-main:var(--color-blue) ;
	--color-tab02-sub:var(--color-blue2) ;
	--color-tab02-text:var(--color-blue3) ;
	--color-tab02-point:var(--color-blue4) ;
}


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

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

1.全体
2.共通フォーマット（ボタンデザインなど）
3.メインビジュアル
4.イントロダクション
5.アイテム
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;
}


/*フッターのトップへボタン非表示*/
.footer__pagetop{
	display: none!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: var(--color-tab01-sub);*/
	/*background: url(https://www.joint-space.co.jp/category_common/shopinfo/2405_shop_js/img/back_tab01.jpg) no-repeat center / cover;*/
	position: relative;
}
body::before{
	 content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: url("https://www.joint-space.co.jp/category_common/shopinfo/2405_shop_js/img/back_tab01.jpg") center/cover no-repeat;
	z-index:-1;
}

/*タブ連動背景*/
body.tab01{
	/*background-color: var(--color-tab01-sub);*/
	/*background: url(https://www.joint-space.co.jp/category_common/shopinfo/2405_shop_js/img/back_tab01.jpg) no-repeat center / cover;*/
}
body.tab01::before{
	 content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: url("https://www.joint-space.co.jp/category_common/shopinfo/2405_shop_js/img/back_tab01.jpg") center/cover no-repeat;
	z-index:-1;
}
body.tab02{
	/*background-color: var(--color-tab02-sub);*/
	/*background: url(https://www.joint-space.co.jp/category_common/shopinfo/2405_shop_js/img/back_tab02.jpg) no-repeat center / cover;*/
}
body.tab02::before{
	 content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: url("https://www.joint-space.co.jp/category_common/shopinfo/2405_shop_js/img/back_tab02.jpg") center/cover no-repeat;
	z-index:-1;
}

/*全体の設定/フォントなど*/
.js-main{
	text-align: left;
	font-size:14px;
	line-height: 1.8;
	letter-spacing: 0.07em;
	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:#a1a1a1;
}
.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; /* 標準 */
}


/*画像サイズ制御 すべて横幅100%*/
.js-main img{
	width:100%;
	height: auto;
}

.main_wrapper{
	width:100%;
	max-width:500px;
	margin: 0 auto;
	background-color: #fff;
	padding-bottom:50px;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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: #6b6b6b;
    transition: 0.3s ease-in-out;
    /*font-weight: 500;*/
	border:solid 1px #6b6b6b;
}
.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: #6b6b6b;
  color: #FFF;
  opacity: 1;
}
.button019 a:hover:after {
  right: 1.4rem;
}
/*背景色*/
#tab01 .contents_intro .button019 a{/*イントロのボタン　タブ01色*/
	background-color:var(--color-tab01-point);
	border:solid 1px var(--color-tab01-point);
	color:#fff;
}
#tab02 .contents_intro .button019 a{/*イントロのボタン　タブ02色*/
	background-color:var(--color-tab02-point);
	border:solid 1px var(--color-tab02-point);
	color:#fff;
}


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

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

/*見出しとコンテンツ*/
.main_title{
	font-size:3em;
	margin-bottom:0.2em;
}
.main_innner{
	
}





/*背景色*/
#tab01 .bg_color01{/*タブ01色*/
	background-color:var(--color-tab01-point);
}
#tab02 .bg_color01{/*タブ02色*/
	background-color:var(--color-tab02-point);
}
#tab01 .bg_color02{/*タブ01色*/
	background-color:var(--color-tab01-main);
}
#tab02 .bg_color02{/*タブ02色*/
	background-color:var(--color-tab02-main);
}

/*テキスト色*/
.font_color01{/*ホワイト*/
	color:#fff;
}
#tab01 .font_color02{/*タブ01色*/
	color:var(--color-tab01-main);
}
#tab02 .font_color02{/*タブ02色*/
	color:var(--color-tab02-main);
}


/*フォント*/
/*フォント指定*/
.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;
}
.font-03{ /*Amiri*/
	font-family: "Amiri", serif;
	font-weight: 400;
	font-style: normal;
}
.font-04{ /*Circe*/
	font-family: "circe", sans-serif;
	font-weight: 400;
	font-style: normal;
}


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


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
3.メインビジュアル - 最初に表示して消える
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/





/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.ヘッダ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

h1 {
	margin:0;
	font-weight:300;
	line-height: 1;
	letter-spacing: 0.08em;
	font-size:33px;
}
h1 a{
	color:#000!important;
}
h1 .text01{
	font-size:15px;
	letter-spacing: 0;
	padding-left:0;
}
h1 .text02{
	display: inline-block;
	background-color: #000;
	color:#fff;
	font-size:15px;
	padding:3px 10px;
	letter-spacing: 0.08em;
	vertical-align: middle;
}
@media screen and (max-width: 500px){
	h1 {
		font-size:6.5vw;
	}
	h1 .text01{
		font-size:3vw;
		padding-left:1vw;
	}
	h1 .text02{
		font-size:3vw;
	}
}

.main_head{
	position: sticky;
	top:0;
	width:100%;
	max-width:500px;
	z-index: 100;
}

.main_head_title{
	padding:15px 15px 10px;
	background-color: #fff;
}

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

.main_head_menu_item{
	width: 50%;
	padding: 5px 5px 3px;
	text-align: center;
	font-size:0.9em;
	letter-spacing: 0.15em;
}

.main_head_menu_item a{
	display: block;
	color:#000;
}
.main_head_menu_item a.select{
	display: inline-block;
	text-decoration: underline;
}

.menu01 {
	background-color: var(--color-tab01-main);
	/*color:#fff;*/
}
.menu02 {
	background-color: var(--color-tab02-main);
	/*color:#fff;*/
}


/*メインコンテンツ*/
.main_content_innner{
}

/*タブ切り替え表示/非表示用*/
.tab_main {
	display: none;
}
.tab_main.is_show {
	display: block;
	animation-name: fade;
	animation-duration: 1s;
}
@keyframes fade{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
6.メインコンテンツ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*ヘッダ*/
.contents_head{
	
}

.contents_head_visual{
	width: 100%;
	height: 0;
	position: relative;
	padding-top: 61.22449%;/*横980px 高さ600px*/
}
.contents_head_visual > div{
	position: absolute;
	height: auto;
}
.visual_item01{
	top:0;
	width: 100%;
}
.visual_item02{
	bottom:0;
	width: 100%;
	
	text-align: center;
	color:#fff;
	font-size:4em;
	letter-spacing: 0.05em;
	line-height: 0.7;
}

.contents_head_text{
	text-align: center;
	padding: 1.2em 5px;
}
.head_text01{
	font-size:1.8em;
	font-weight:700;
	line-height: 1.1;
	margin-bottom:0.2em;
}
.head_text02{
	font-weight:700;
	line-height: 1.2;
}
/*タブカラー切り替え*/
#tab01 .contents_head_text{
	background-color: var(--color-tab01-main);
}
#tab02 .contents_head_text{
	background-color: var(--color-tab02-main);
}


/*intro*/
.contents_intro{
	
}

.intro_text00{/*終了などのお知らせ用*/
	width:80%;
	margin: 0 auto 2em;
	padding:5%;
}
#tab01 .intro_text00{
	background-color: var(--color-tab01-sub);
	color: var(--color-tab01-text);
}
#tab02 .intro_text00{
	background-color: var(--color-tab02-sub);
	color: var(--color-tab02-text);
}
.intro_text01{
	font-size:1.8em;
	font-weight: 500;
	text-align: center;
	margin-bottom:1.5em;
}
#tab01 .intro_text01{
	color: var(--color-tab01-text);
}
#tab02 .intro_text01{
	color: var(--color-tab02-text);
}
.intro_logo{
	margin: -0.5em auto 0.25em;
	width:50%;
}


/*イベント*/
.event_set{
	margin-bottom:3em;
}
.main_innner:last-child{
	margin-bottom:0em;
}

.event_head{
	margin-bottom:1em;
}
.event_head_t01{
	display: inline-block;
	padding:5px 10px 2px;
	background-color: #000;
	color: #fff;
	margin-bottom:1.5em;
	font-size:0.8em;
	line-height: 1;
}
.event_head_t02{
	font-weight: 700;
	font-size:1.5em;
	line-height: 1.3;
}

.event_set_more{
	margin-top:3em;
	border: 1px solid #000;
	border-radius: 10px;
	padding:10px;
	font-weight:700;
}


/*SPECIAL*/
.special_wrapper{
	margin: 0 auto 5em;
	width:100%;
}

.special_title{
	margin-bottom:1em;
	border-bottom: 1px solid #000;
	padding-bottom:0.6em;
}
.special_title01{
	font-size:1em;
	margin-bottom:0.5em;
}
.special_title02{
	font-size:2em;
	line-height:1.1;
	font-weight: 700;
}
.special_title02 span{
	font-size:0.7em;
}
#tab01 .special_title02{
	color: var(--color-tab01-text);
}
#tab02 .special_title02{
	color: var(--color-tab02-text);
}
@media screen and (max-width: 768px){
	.special_title02{
		font-size:2em;
	}
}

.special_innnerbox{
	
}

.cont_img{
	margin-bottom:1.5em;
}
.cont{
	margin-bottom:3em;
}
.cont_t{
	display: inline-block;
	color:#fff;
	background-color: #000;
	padding:0.4em 1em 0.3em 1em;
	line-height: 1;
	margin-bottom:1em;
	font-size:0.9em;
}
#tab01 .cont_t{
	background-color: var(--color-tab01-text);
}
#tab02 .cont_t{
	background-color: var(--color-tab02-main);
}

.cont_in{
	margin-bottom:1em;
}
.cont_in_inhead{
	font-size:1.5em;
	line-height:1.4;
	font-weight:bold;
}
.cont_in_date{
	font-size:3em;
	line-height:1.3;
	letter-spacing: 0;
}
.cont_in_text{
	margin-top:-0.25em;
}
.cont_in_text_date{
	margin-top:-0.25em;
	font-weight:700;
}






/*ブランド*/
.brand_set{
	margin-top:1em;
}

.brand_set_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	/*フレックスボックスの要素の寄せ*/
	justify-content: center;
	align-items: center;
	
	border: solid 1px #A8A8A8;
	border-radius: 10px;
}
.brand_set_boxitem01{
	width:40%;
	height: auto;
	padding-top:40%;
	border-radius: 10px 0 0 15px;
	background: #c0c0c0 no-repeat center / cover;
}
.brand_set_boxitem02{
	width:60%;
	padding:3%;
	text-align: center;
}


/*ショップインフォ*/
.info_img{
	margin-bottom:1em;
}
.info_text01{
	font-size:1.5em;
	font-weight:700;
	line-height: 1.4;
	margin-bottom:0.5em;
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
10.注意事項
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-attention{
	
}

.main-attention .list_wrapper a{
	text-decoration: underline;
	font-weight:bold;
}

.main-attention_box{
	margin:auto;
	width:95%;
	text-align: left;
	font-size:0.9em;
}
.list_wrapper{
	margin-top:2em;
}
.list_head{
	font-size:1.2em;
	font-weight:bold;
}
.list_wrapper ul{
	padding-left:10px;
}
.list_wrapper li{
	margin-bottom:15px;
	line-height: 1.4;
}



/*見出し*/
.main-attention_head{
	text-align: center;
	font-weight:700;
	font-size:1.2em;
}


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


.pagetop_link{
	width:20%;
	margin-left:auto;
	margin-right:auto;
}

.brandtop_link{
	width:80%;
	margin-left:auto;
	margin-right:auto;
}





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


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.初回イメージ表示
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.start {
	background: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9000;
}
.start p {
	position: fixed;
	/*left: 50%;
	top: 50%;*/
	/*transform: translate(-50%, -50%);*/
	display: none;
	z-index: 9999;
	margin-top:0;
	height:100vh;
	width: 100vw;
	background: url("https://www.joint-space.co.jp/category_common/shopinfo/2405_shop_js/img/first_img_pc.jpg?timestamp=240409") #c0c0c0 no-repeat center / cover;
}
@media screen and (max-width: 768px){
	.start p {
		background: url("https://www.joint-space.co.jp/category_common/shopinfo/2405_shop_js/img/first_img_sp.jpg") #c0c0c0 no-repeat center / cover;
	}
}
/*.start p img{
	width:100%;
	line-height: 0;
}
*/
