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

/*googlefonts*/
@import url('https://fonts.googleapis.com/css2?family=Amiri&display=swap');
/*
font-family: 'Amiri', serif;
*/
/*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;
}
@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:12px;
	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:#562c2d;
}
@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: 200px;
  padding: 0.8em 0 0.8em 0;
  font-size: 1em;
  position: relative;
  text-align: center;
  text-decoration: none;
  display: block;
  margin: 1em auto;
  color: #fff;
  background: #313131;
  line-height: 1;
  /*border-radius: 50px;*/
  transition: all .2s;
	
  border: 2px solid #313131;
}
.btn01:hover {
  background-color: #fff;
  border-color: #313131;
  color: #313131;
}

/*ボタン 小さい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;
	}
}



/*背景色＆テキスト色*/
.bg-color01{
	background-color: #e4ddd5; /*薄い茶色*/
	/*color:#b6862c;*/ /*黄土色*/
}
.bg-color02{
	background-color: #fff; /*白*/
	/*color:#b6862c;*/ /*黄土色*/
}
.bg-color03{
	background-color: #f5f1ed; /*もう少し薄い茶色*/
	/*color:#fff;*/ /*白*/
}


/*タイトル*/
.title{
	font-family: 'Amiri', serif;
	font-size:2em;
	margin-bottom:-0.3em;
}
.title_sub{
	font-size:0.8em;
	margin-bottom:2em;
}


/*padding*/
.padding{
	padding:40px 0;
}

/*画像を丸くトリミングする*/
.circle-img img{
	width:100%;
	height:100%;
	object-fit:cover;
	border-radius:50%;
}

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

.main-visual{
	margin-bottom:0;
	width:100%;
	background-color: #562c2d;
	line-height: 0;
}

h1{
	margin:0;
	line-height: 0;
}



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



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

.contents-intro{
	padding:40px 0;
}

.contents-intro_box{
	width:500px;
	margin:auto;
	background-color: #562c2d;
	padding:40px 20px;
	color:#fff;
}
.contents-intro_box_t{
	display: inline-block;
	font-family: 'Amiri', serif;
	font-size:1.5em;
	border-bottom:solid 1px #fff;
	padding-bottom:0.1em;
	margin-bottom:1em;
}
@media screen and (max-width: 768px){
	.contents-intro_box{		
		width:70%;
		padding:3%;
	}
}

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

/*上部*/
.contents-item_upper{
	padding:0;
	
	height:600px;
	min-height:600px;

    background-repeat: no-repeat !important;/*背景画像をリピートしない*/
    background-position: center !important;/*背景画像の位置を中央に*/
    background-size: cover!important;/*背景画像が.slider-item全体を覆い表示*/
	background-color: #dfe0e2!important;
}
@media screen and (max-width: 768px){
	.contents-item_upper{		
		height:85vh!important;
		min-height: 85vh!important;
	}
}

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

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


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


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

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

.contents-item_upper_title{
	font-size:40px;
	line-height: 1.4;
	margin-bottom:0.8em;
	font-family: 'Amiri', serif;
}
.contents-item_upper_text{
	
}
@media screen and (max-width: 768px){
	.contents-item_upper_title{
		font-size:3em;
	}
}



/*下部*/
.item-text_box img{
	width:100%;
}

/*下部テキスト*/
.contents-item_under{
	padding-top:40px;
	padding-bottom:40px;
	text-align: left;
	font-family: 'Amiri', serif;
}
.item-text_name{
	margin-top:0.5em;
}

/*大*/
.item-text_in01{
	
}

/*小*/
.item-text_in02{
	line-height: 1.2;
}

/*3列：フレックスボックス*/
.item-text_in02_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: left;
	
	text-align: left;
	margin-bottom: 2em;
}
.item-text_in02_box > div {
	/*列数と間の余白の設定*/
	width: calc( ( 100% - 40px ) / 3 );
	margin-right: 20px;
}
/*右端のマージンをゼロ設定*/
.item-text_in02_box > div:nth-child( 3n ) {
	margin-right: 0;
}
.item-text_in02_boxin{
	padding-bottom:30px;
}
@media (max-width: 768px) {
	.item-text_in02_box{
		padding:2em 0 0;
	}
	.item-text_in02_box > div {
		/*列数と間の余白の設定*/
		width: calc( ( 100% - 1vw ) / 2 );
		margin-right: 1vw;
	}
	.item-text_in02_box > div:nth-child( 2n ) {
		margin-right: 0;
	}
	.item-text_in02_box > div:nth-child( 3n ) {
		margin-right: 1vw;
	}
	.item-text_in02_box > div:nth-child( 6n ) {
		margin-right: 0;
	}
}






/*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: left;
		/*align-items: center;*/
	
		width:100%;
		margin:auto;
	}
	.item-text_in01{
		width:50%;
	}
	.item-text_in02{
		width:50%;
		padding-left:10%;
	}
}

/*sp 調整*/
@media screen and (max-width: 768px){
	.item-text_box{
		margin:auto 30px;
	}
}






/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
7.コーディネート
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-coordinate{
	padding:40px 0;
}

.coordinate_box{
	padding: 40px;
}
@media screen and (max-width: 768px){
	.contents-coordinate{
		padding:20px;
	}
	.coordinate_box{
		padding: 3%;
	}
}

/*〜〜〜上の部分〜〜〜*/
.coordinate_box_upper{
	margin:0;
	/*padding: 30px;*/
	/*background-color:#222;*/
	/*border-radius:15px 15px 0 0;*/
	
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央寄せ*/
	justify-content: center;
}
@media screen and (max-width: 768px){   
	.coordinate_box_upper{
		margin:0;
		padding: 0;
	}
}

/*上の部分の写真の方*/
.container01{
	width:453px;
	line-height:0;
}
.container01 img{
	width:100%;
}
.container01 video{
	width:100%;
}
@media screen and (max-width: 768px){   
	.container01{
		width:95%;
	}
	.container01 img{
		/*border-radius:15px 15px 0 0;*/
	}
}

/*上の部分の文字の方*/
.container02{
	width:447px;
	padding-right:30px;
}
@media screen and (max-width: 768px){   
	.container02{
		width:100%;
		padding:3%;
		
		/*写真に食い込ませる*/
		/*margin-top:-50px;*/
	}
}

.container02 .coordinate_item_catch{
	font-size:1.5em;
	line-height: 1.4;
	margin-bottom:20px;
	font-weight: bold;
	text-align: left;
}
@media screen and (max-width: 768px){
	.container02 .coordinate_item_catch{
		font-size:1em;
		
		margin-bottom:1em;
	}
}
/*コメント*/
.coordinate_item_comment{
	margin-bottom:1.5em;
	text-align: left;
	font-size:0.7em;
	line-height: 1.8;
	margin-bottom:30px;
}

@media screen and (max-width: 768px){
	.coordinate_item_comment{
		
	}
}

/*PC用順番指定*/
@media screen and (min-width: 769px){
	/*テキストが左側 sectionに追加*/ 
	.text-left .coordinate_box_upper .container01{
		order: 1;
	}
	.text-left .coordinate_box_upper .container02{
		order: 0;
		padding-right:30px;
		padding-left:0;
	}
	/*テキストが右側 sectionに追加*/ 
	.text-right .coordinate_box_upper .container01{
		order: 0;
	}
	.text-right .coordinate_box_upper .container02{
		order: 1;
		padding-right:0;
		padding-left:30px;
	}
	
}

/*アイテムボックスタイトル*/
.coordinate_item-title{
	margin-bottom:1em;
	padding:0.1em 1em 0.2em;
	font-size:0.8em;
	text-align: left;
	border-bottom: solid 1px #562c2d;
	border-top: solid 1px #562c2d;
}


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

/*3列：フレックスボックス*/
.coordinate_item-box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: left;
	
	text-align: left;
	margin-bottom: 2em;
}
.coordinate_item-box > div {
	/*列数と間の余白の設定*/
	width: calc( ( 100% - 40px ) / 3 );
	margin-right: 20px;
}
/*右端のマージンをゼロ設定*/
.coordinate_item-box > div:nth-child( 3n ) {
	margin-right: 0;
}
.coordinate_item-in{
	padding-bottom:15px;
}
.coordinate_item-in img{
	width:100%;
}
@media (max-width: 768px) {
	.coordinate_item-box{
		/*padding:2em 0 0;*/
	}
	.coordinate_item-box > div {
		/*列数と間の余白の設定*/
		width: calc( ( 100% - 1vw ) / 2 );
		margin-right: 1vw;
	}
	.coordinate_item-box > div:nth-child( 2n ) {
		margin-right: 0;
	}
	.coordinate_item-box > div:nth-child( 3n ) {
		margin-right: 1vw;
	}
	.coordinate_item-box > div:nth-child( 6n ) {
		margin-right: 0;
	}
}






/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
7.カテゴリーリンク
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-category_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央寄せ*/
	justify-content: center;
	
	padding-bottom:30px;
}
.contents-category_in{
	width:20%;
	padding:10px;
	margin-bottom:2em;
}
.contents-category_in img{
	width:100%;
}
.contents-category_in .link-txt{
	font-family: 'Amiri', serif;
	font-size:1.25em;
}

@media screen and (max-width: 768px){
	.contents-category_in{
		width:30%;
	}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
8.コンテンツリンク
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-link_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央寄せ*/
	justify-content: center;
	
	padding-bottom:30px;
}
.contents-link_in{
	width:33%;
	padding:10px;
	margin-bottom:2em;
}
.contents-link_in img{
	width:100%;
}
.contents-link_in .link-txt{
	text-align: left;
	font-size:0.8em;
	line-height: 1.5;
	margin-top:0.8em;
}

@media screen and (max-width: 768px){
	.contents-link_box{
		padding:15px;
	}
	.contents-link_in{
		width:50%;
		padding:5px;
	}
}




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

