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


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

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

1.全体
2.共通フォーマット（ボタンデザインなど）
3.メインビジュアル
4.イントロダクション
5.ページ内リンク
6.ブランドリスト
7.サービス
8.会員特典
9.アイテムを探す・お問い合わせ等
10.フッター

*/

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■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-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:1em;
	line-height: 1.5;
	letter-spacing: 0.07em;
	font-family:"Noto Sans JP","游ゴシック", "Yu Gothic", "Hiragino Sans", "Meiryo", sans-serif;
	font-weight: 400;
	color: #494949;
}
@media screen and (max-width:768px) {
	.js-main{
		padding-top:0;
	}
}

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

#header.second-page.is-fixed {
	height: 75px;
}


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

/*ボタン*/
.btn_orange {
	display: inline-block;
	background-color: #e2a042;
	padding: 12px 0;
	color: #ffffff;
	font-weight: 500;
	border-radius: 6px;
	border: #e2a042 1px solid;
	cursor: pointer;
	margin: 0.8em 5px;
	width: 250px;
}

/*.btn_orange:before {
	border-top: 2px solid #fff;
    border-right: 2px solid #fff;
	content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 25px;
    margin-top: -6px;
}*/

.btn_member {
	display: inline-block;
	background-color: #f3968f;
	padding: 12px 0;
	color: #ffffff;
	font-weight: 500;
	border-radius: 6px;
	border: #f3968f 1px solid;
	cursor: pointer;
	margin: 2px 5px 0.8em;
	width: 250px;
}
.btn_black {
	display: inline-block;
	background-color: #494949;
	padding: 12px 0;
	color: #ffffff;
	font-weight: 500;
	border-radius: 6px;
	border: #494949 1px solid;
	cursor: pointer;
	margin: 0.8em 5px;
	width: 250px;
}

/*ボタンgray*/
.btn_gray{
	background-color: #353535;
}
/*ボタンpink*/
.btn_pink{
	background-color: #ca7a7a;
}
/*ボタンpink2*/
.btn_pink2{
	background-color: #e88a8a;
}
/*ボタンyellow*/
.btn_yellow{
	background-color: #d1ac65;
}
/*ボタンgold*/
.btn_gold{
	background-color: #af9578;
}
/*ボタン枠のみ*/
.btn_line{
	border:1px solid #fff;
	background-color: transparent;
	padding: 0.5em 3em;
	font-size:0.7em;
	margin-left:0;
}
/*ボタン枠のみ　黒*/
.btn_line_bk{
	border:1px solid #000;
	background-color: transparent;
	padding: 0.5em 3em;
	font-size:0.7em;
	margin-left:0;
	color:#000;
}
/*小さいver*/
.btn-small{
	font-size:0.8em;
	padding: 0.5em 3em;
	margin-top:-1em;
}
@media screen and (max-width: 768px){
	.btn01{
		 padding: 0.1em 3em;
	}
	.btn-small{
		 padding: 0.1em 2em;
	}
}
/*メニュー用*/
.btn-menu{
	font-size:0.1em;
	padding: 0.5em;
	width:60%;
}
@media screen and (max-width: 768px){
	.btn-menu{
		font-size:0.5em;
		padding: 0.5em;
		width:90%;
	}
}


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

.main-visual{
	margin-bottom:0;
	width:100%;
	background-color: #fbf9f7;
	line-height: 0;
}
h1{
	margin:0;
	line-height: 0;
}
.main-text{
	margin:2em;
	font-size:0.7em;
}

@media screen and (max-width:768px) {
	#main-visual img{
		width: 100%;
	}
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.イントロダクション
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#welcome_intro {
	margin: 50px auto;
}
#welcome_intro .welcome_intro_text {
	line-height: 2;
}
#welcome_intro img {
	width: 15%;
	padding-right: 10px;
}
#welcome_intro .title {
	font-size: 1.4em;
	font-weight: 600;
	letter-spacing: 0em;
	margin-bottom: 30px;
	font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', serif;
}
#welcome_intro .title span {
	letter-spacing: -2;
	/*font-family:"Noto Sans JP","游ゴシック", "Yu Gothic", "Hiragino Sans", "Meiryo", sans-serif;*/
	font-size: 1em;
}
.btn_orange {
	margin-bottom: 50px;
}
.member b {
	font-size: 1.1em;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.ページ内リンク
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#link {
	background-color: #fffbef;
}
#link ul li {
	width: 180px;
	text-decoration: none;
	display: inline-block;
}

#link .btn_link {
	width: 180px;
	text-decoration: none;
	display: inline-block;
	background-color: #ffffff;
	padding: 20px 0;
	font-weight: 500;
	border-radius: 6px;
	border: #494949 1px solid;
	cursor: pointer;
	margin: 2em 20px 2em 0;
}
#link .btn_link:nth-child(5n) {
	margin-right: 0;
}
#link i {
	color: #494949;
	padding-top: 2px;
}
#link li a:hover {	
	opacity:1;
    -moz-opacity:1;
    filter:alpha(opacity = 100);
}
#link .btn_link:hover {	
	background-color: #e2a042;
	border: #e2a042 1px solid;
	color: #ffffff;	
}
#link .btn_link:hover i {
	color: #ffffff;	
}

@media screen and (max-width: 768px){
	#link ul {
		/*Flex boxの設定*/
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		padding: 20px 5% 10px;
	}
	#link ul li {
		width: 48%;
		margin: 0 4% 10px 0;
	}
	#link ul li:nth-child(2n) {
		margin-right: 0;
	}
	#link .btn_link {
		width: 100%;
		/*margin: 0;*/
	}
	#link .btn_link {
		margin: 0;
	}

}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
6.ブランドリスト
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
h3 {
	line-height: 0.7;
}
.section_title {
	font-family: futura-pt, sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 2.2em;
	display: inline-block;
	position: relative;
	margin: 10px 0 30px;
	letter-spacing: 6;
	line-height: 0.7;
}
.section_title span {
	font-family:"Noto Sans JP","游ゴシック", "Yu Gothic", "Hiragino Sans", "Meiryo", sans-serif;
	font-size: 0.4em;
	font-weight: 500;
	letter-spacing: 1.7;
}
#brand .section_title {
	padding: 0 45px;
	background-image: url(https://www.joint-space.co.jp/category_common/jointspace/welcom_2/img/title_1.png);
	background-repeat: no-repeat;
	background-position: 5px 60%;
	background-size: 30%;
	margin-bottom: 0;
}
#brand h2 {
	display: none;
}


@media screen and (max-width: 768px){
	/*#brand .title_flower {
		width: 10%;
		top: 40px;
		left: -40px;
	}*/
	.section_title {
		font-size: 2em;
		line-height: 1.2px;
	}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
7.サービス
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#service {
	background-color: #fffbef;
	padding-bottom: 50px;
}
#service .section_title {
	padding: 0 45px;
	background-image: url(https://www.joint-space.co.jp/category_common/jointspace/welcom_2/img/title_2.png);
	background-repeat: no-repeat;
	background-position: 100% 60%;
	background-size: 35%;
}
.service_box {
	/*Flex boxの設定*/
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.service_box_item {
	background-color: #ffffff;
	border: #494949 1px solid;
	padding: 30px 20px;
	width: 320px;
	margin: 0 10px 10px 0; 
	/*display: inline-block;*/
}
.service_box_item:nth-child(3n) {
	margin-right: 0;
}
.service_title{
	font-size: 20px;
	font-weight: 600;
	padding-bottom: 20px;
}
.service_text {
	letter-spacing: 0;
	padding-top: 20px;
	text-align: left;
	line-height: 1.6;
}
.service_box_item img {
	width: 30%;
}



@media screen and (max-width: 768px){
	.service_box_item {
		width: 90%;
		margin: 0 5% 10px;
		padding: 30px 40px;
	}
	.service_title{
		padding-bottom: 10px;
	}
	.service_text {
		padding-top: 10px;
	}
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
8.会員特典
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#member {
	padding-bottom: 65px;
}
#member .section_title {
	padding: 0 70px;
	background-image: url(https://www.joint-space.co.jp/category_common/jointspace/welcom_2/img/title_3.png);
	background-repeat: no-repeat;
	background-position: 0% 40%;
	background-size: 20%;
}
.member_box {
	/*Flex boxの設定*/
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
#member .section_title {
	margin-bottom: 10px;
}
#member .member_intro_text b {
	font-size: 1.2em;
}
#member .member_box {
	margin: 30px 0 40px;
}
.member_box_item {
	background-color: #fffbef;
	border-radius: 5px;
	width: 485px;
	margin: 0 10px 10px 0;
	padding: 20px 10px;
}
.member_box_item:nth-child(2n) {
	margin-right: 0;
}
.member_title{
	font-size: 20px;
	font-weight: 600;
	padding-bottom: 15px;
	color: #e2a042;
}
.member_text {
	letter-spacing: 0;
	text-align: left;
	line-height: 1.6;
	margin: 0 30px;
}


@media screen and (max-width: 768px){
	.member_box {
		padding: 0 5%;
	}
	.member_box_item {
		width: 100%;
		margin: 0 0 10px;
	}
	#member .section_title {
		padding: 0 70px;
		background-position: 14% 20%;
		background-size: 30%;
	}
	#member .section_title span {
		line-height: 3;
	}
	#member h3 {
		line-height: 1;
	}

}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
9.アイテムを探す・お問い合わせ等
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.link_container {
	margin-top: 80px;
}
.link_container .title {
	font-size: 2em;
	font-weight: 500;
}
@media screen and (max-width: 768px){
	.link_container .title {
		font-size: 1.6em;
	}
	.link_container ul{
		padding: 0 5%;
	}
	.link_container ul li{
		width: 45%;
	}
}
.flex_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央*/
	justify-content: center;
	margin-bottom: 100px;
}
.flex_box_item{
	width:23.5%;
	margin: 0 2% 0 0;
	/*justify-content: space-between;*/
	/*align-items: center;*/
	position: relative;
}
.flex_box_item:nth-child(4n){
	margin-right: 0;
}

.btn000{
	width:100%;
	border:solid 1px #000;
	padding: 15px 10px 15px;	
	display: flex;
    justify-content: space-between;
}
.flex_box_item .btn000::after {
    content: '';
    width: 7px;
    height: 7px;
    border-top: 2px solid #c0c0c0;
    border-right: 2px solid #c0c0c0;
    transform: rotate(45deg);
	/*justify-content: center;*/
	position: absolute;
	top: 45%;
	right: 15px;
}
@media screen and (max-width: 768px){
	.flex_box {
		padding: 0 5%;
	}
	.flex_box_item{
		width:90%;
		margin: 0 0 10px;
	}
/*	.flex_box_item:nth-child(2n){
		margin-right: 0;
	}
*/
	.link_container ul li .link_box_item {
	margin-right: 0;
	}
	.flex_box{
		justify-content: center;
	}

	


}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
10.フッター
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.welcome_footer_logo {
	width: 25%;
}
.welcome_footer .btn_member {
	margin-top: 15px;
}
.welcome_footer .btn_black {
	margin: 15px 0 50px;
}
.welcome_footer {
	padding: 50px 0 10px;
	background-color: #fffbef;
}
@media screen and (max-width: 768px){
	.welcome_footer_logo {
		width: 200px;
	}
}


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