@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;
}
.main-visual h1 {
	padding-top: 140px;
}

/*全体の設定/フォントなど*/
.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:#523f3f;
}
@media screen and (max-width:768px) {
	.js-main{
		padding-top:0;
	}
	.main-visual h1 {
		padding-top: 0px;
	}
}

/*リンクの設定*/
.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: #2f4e5f;
  line-height: 1;
  /*border-radius: 50px;*/
  transition: all .2s;

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

/*小さい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: 70px 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: #f7f2e8;
}
.bg-color02{ /*文字色と同じ色*/
	background: #fff;
}
.bg-color03{ /**/
	background: #523f3f;
}

/*テキスト色*/
.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-pickup{
	width:100%;
	/*background-color: #f6f0eb;*/
}


.pickup_wrapper{
	/*width:90%;
	max-width:500px;*/
	max-width:980px;
	margin: 0 auto;
	padding: 50px 0;
}
.pickup_wrapper:last-child{
	margin-bottom:0;
}

.pickup_img img{
	/*width:100%;	*/
	max-width:500px;
}

.head_d01 .text01 {
	font-size: 3em;
	margin-bottom: 0.5em;
	font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}
.text01:before {
	content: '';/*何も入れない*/
	display: inline-block;
    width: 1.4em;/*画像の幅*/
    height: 1.4em;/*画像の高さ*/
    background-image: url(https://www.joint-space.co.jp/category_common/jointspace/temperature/img/icon.png);
    background-size: contain;
	vertical-align: middle;
	margin-bottom: 0.2em;
}

.pickup_text_wrapper{
	margin:1.2em auto;
	line-height: 1.7;
	text-align: justify;
	text-align: center;
}

.pickup_text_comment{
	font-size:0.9em;
}

.pickup_text_itemname{
	margin-top:1.3em;
	padding-top:1.1em;
	font-size:0.75em;
	border-top:solid 1px #000;
}
.pickup_text_itemname span{
	background-color: #ccbeb3;
	color:#fff;
	font-size:0.7em;
	padding: 2px 5px;
}

.pickup_btn_wrapper{
	margin-top:1.5em;
}
.pickup_btn_wrapper .button019 a{
	background-color: #b3a498;
	border-color: #b3a498;
	color:#fff;
}
.pickup_btn_wrapper .button019 a:hover{
	background-color: #ccbeb3;
	border-color: #ccbeb3;
}

@media screen and (max-width: 768px){
	.head_d01 .text01 {
		font-size: 2.3em;
	}
	.text01:before {
		width: 1.1em;/*画像の幅*/
		height: 1.1em;/*画像の高さ*/

	}
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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:600px;
	margin: 0 auto 5em;
}
.banner-area img{
	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;
}

@media (max-width: 768px) {
	.banner-area{
		width:90%;
	}
}

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


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.Swiper：スワイパー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.swiper {

}


.swiper a:hover,a:hover img{
	opacity: 1;
}

.swiper-wrapper{
	height:auto;
}

.swiper-slide {
	
}

.swiper-pagination-bullet{
    background-color: #fff;
}
.swiper-pagination-bullet-active{
   background-color: #fff;
}