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

/*googlefonts*/

/*Adobefonts*/
@import url("https://use.typekit.net/ehg7tdk.css");
/*
-Futura PT Medium-
font-family: futura-pt,sans-serif;
font-weight: 500;
font-style: normal;
*/

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

■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:1.3rem;*/
	line-height: 1.5;
	letter-spacing: 0.07em;
	font-family:'Noto Sans JP','Helvetica Neue', Arial,'Hiragino Kaku Gothic ProN','Hiragino Sans', Meiryo, 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:#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;
	}
}

/*PC1200px、SP100%*/
.js-container{
	width:1200px;
	margin:auto;
}
@media screen and (max-width: 768px){   
	.js-container{
		width:100%;
	}
}


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

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

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


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


/*interval*/
.interval{
	width:100%;
	padding:50px 0 ;
	background-color: #fff;
}
.interval img{
	width:100px;
	margin:auto;
}



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

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

.main-title{
	padding-top: 10em;
}
@media screen and (max-width: 768px){
	.main-title{
		padding-top: 1.5em;
	}
	.main-title .title-text{
		font-size: 1.5em;
	}
}
.main-title .title-logo img{
	width:400px;
	margin:2em auto;
	/*filter: drop-shadow(1px 1px 1px #000);*/
}
@media screen and (max-width: 768px){   
	.main-title .title-logo img{
		width:60%;
	}
}
.scroll img{
	width:65px;
	margin:auto;
}
@media screen and (max-width: 768px){   
	.scroll img{
		width:15%;
	}
}




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

.main-intro{
	padding:50px 0;
}

.intro-title{
	display: inline-block;
	margin-bottom:1em;
	padding:0.1em 2em;

	background-color: #000;
	color:#fff;
	font-size:0.9em;
	
	font-family: futura-pt,sans-serif;
	font-weight: 500;
	font-style: normal;
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.メニュー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-menu{
	padding-bottom: 50px;
}


.menu-box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央*/
	justify-content: center;

}

.menu-item{
	width:10%;
	margin:20px;
}
@media screen and (max-width: 768px){   
	.menu-item{
		width:30%;
	}
}

.menu-item_img{
	width:100%;
	/*border-radius: 50%;*//*角丸*/
	/*background: linear-gradient(-45deg, #eaafc8, #c471ed, #acb6e5, #acb6e5);*/
}
.menu-item_img img{
	width:100%;
	/*border-radius: 50%;*//*角丸*/
	/*object-fit:cover;*/
}

.menu-item_txt{
	padding-top:0.5em;
	
	font-family: futura-pt,sans-serif;
	font-weight: 500;
	font-style: normal;
}

.menu-item_up{
	display: inline-block;
	color:#e5816e;
	border-bottom:solid 2px #e5816e;
	
	font-family: futura-pt,sans-serif;
	font-weight: 500;
	font-style: normal;
}


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

.main-item{
	width:100%;
	padding:80px 0;
}


/*背景色*/
.bgcolor01{ /*ピンク*/
	background-color:#f1e7e7;
}
.bgcolor02{ /*ベージュ*/
	background-color:#eee8e7;
}


/*タイトル*/
.item_head{
	margin-bottom:50px;
	text-align: left;
	
	font-family: futura-pt,sans-serif;
	font-weight: 500;
	font-style: normal;
}
.item_head_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央*/
	justify-content: left;
	
	width:350px;
	margin:auto;
	padding-bottom:30px;
	
	background-image: url(https://www.joint-space.co.jp/tieup/js-snap/img/t_back.png);
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: 45%;
}
.item_head_box img{
	width:100%;
}
.item_head_in01{
	width:30%;
}
.item_head_in02{
	width:70%;
	padding-left:5%;
}
.item_head_in01 img{
	border-radius: 50%;
}
.item_head_box .text01{
	font-size:2em;
}
.item_head_box .text02{
	
}
.item_head_box .text02 .link-btn{
	display: inline-block;
	color:#fff;
	background-color: #000;
	padding:0 1em;
	font-size:0.8em;
}
.item_head_box .text02 .link-btn img{
	width:10px;
}
/*タイトルSP調整*/
@media (max-width: 768px) {
	.item_head_box{
		width:80%;
		font-size:0.8em;
		padding-bottom:20px;
	}
}


/*スライダーの基本設定は下部*/
/*スライダー内のデザイン*/

.slider-item{
	background-color: #fff;
}

/*アップエリア*/
.up_text{
	display: inline-block;
	color:#e5816e;
	padding-top:5%;
	border-bottom:solid 2px #e5816e;
	
	font-family: futura-pt,sans-serif;
	font-weight: 500;
	font-style: normal;
}


/*下のテキスト*/
.under_item{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央*/
	justify-content: left;
	
	padding:5%;
}
.under_item_in01{
	width:25%;
}
.under_item_in02{
	width:75%;
	padding-left:3%;
	text-align: left;
	
	font-size:0.7em;
}
.under_item .text01{
	display: inline-block;
	padding:0 1em;
	margin-bottom:0.7em;
	background-color: #f8bdbd;
	color:#fff;
	
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
  	border-radius: 50px;
}
.under_item .text02{
	padding-bottom:0.5em;
	margin-bottom:0.5em;
	border-bottom:solid 1px #d2d2d2;
	
	text-align: justify;
	text-justify: inter-ideograph;
}
.under_item .text03{
	font-size:0.8em;
	color: #737373;
}


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

.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;
}
.footer-title img{
	width:300px;
}
@media (max-width: 768px) {
	.footer-title img{
		width:60%;
	}
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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.slick スライダー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:94%;
    margin:0 auto;
}

.slider .slider-item {
    width:30vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
    height:auto;
}
@media (max-width: 768px) {
	.slider .slider-item{
		width:70vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
	}
}
.slider img{
	width:100%;
}

.slider .slick-slide {
	transform: scale(0.8);/*左右の画像のサイズを80%に*/
	transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
	opacity: 0.5;/*透過50%*/
}

.slider .slick-slide.slick-center{
	transform: scale(1);/*中央の画像のサイズだけ等倍に*/
	opacity: 1;/*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}


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

