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

/*googlefonts*/
/*
*/
/*Adobefonts*/
@import url("https://use.typekit.net/hln8ibs.css");
/*
Neue Haas Grotesk Display Pro 65 Medium
font-family: neue-haas-grotesk-display,sans-serif;
font-weight: 600;
font-style: normal;

Neue Haas Grotesk Display Pro 75 Bold
font-family: neue-haas-grotesk-display,sans-serif;
font-weight: 700;
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:12px;
	line-height: 2.2;
	letter-spacing: 0.1em;
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-weight: 400;
	color:#626262;
}
@media screen and (max-width:768px) {
	.js-main{
		padding-top:0;
	}
}

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





/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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: #000;
  line-height: 1;
  /*border-radius: 50px;*/
  transition: all .2s;
	
  border: 2px solid #000;
}
.btn01:hover {
  background-color: #fff;
  border-color: #000;
  color: #000;
}

@media screen and (max-width: 768px){
	.btn01{
		 /*padding: 1em 1em 0.5em;*/
	}
}



/*背景色＆テキスト色*/
.bg-color01{
	background-color: #ffe4e4; /**/
	/*color:#b6862c;*/ /*黄土色*/
}

.tx-color01{
	color:#dfe457; /*ポイント色*/
}

/*タイトル*/



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


/*フォント*/

.font01{
	font-family: neue-haas-grotesk-display,sans-serif;
	font-weight: 600; /*Medium*/
	font-style: normal;
}

.font02{
	font-family: neue-haas-grotesk-display,sans-serif;
	font-weight: 600; /*Bold*/
	font-style: normal;
}



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

.main-visual{
	margin-bottom:0;
	width:100%;
	/*background-color: #fff;*/
}

.main-visual h1{
	margin-bottom:1em;
}

.main-visual h2{
	margin: 0em auto 1em;
	font-size:1.8em;
}

.main-visual h2 .emphasis{
	font-size:1.5em;
}

@media screen and (max-width: 768px){
	.main-visual h1 img{
	 width:80%;
	}
}






/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.gallery
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-gallery{
	margin-top:50px;
}

.gallery_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: left;
}
.gallery_box img{
	width:100%;	
}
.gallery_box_left{
	padding-right:10px;
	width:50%;
}
.gallery_box_right{
	padding-left:10px;
	width:50%;
}
.gallery_inbox{
	margin-top:20px;
}

@media screen and (max-width: 768px){
	.contents-gallery{
		width:100%;
		margin-top:4em;
	}
	.gallery_box_left{
		padding-right:5px;
	}
	.gallery_box_right{
		padding-left:5px;
	}
	.gallery_inbox{
		margin-top:10px;
	}
}



.interval{
	padding:70px 0 50px;
	font-size:2em;
	font-weight: 200;
}
@media screen and (max-width: 768px){
	.interval{
		font-size:1em;
	}
}


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

.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%;
	}
}


/*テキストセット*/
.footer-textset{
	margin-bottom:5em;
	line-height: 1;
	letter-spacing: 0.12em;
}
.textset_txt01{
	margin-top:1.7em;
	font-size:1.5em;
}
.textset_txt02{
	margin-top:0.025em;
	font-size:3.5em;
}
.textset_txt03{
	margin-top:0.1em;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.フェードインエフェクト
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.fadein-top {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.delighters：スクロールアニメーション
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*animation02-ふわっと出現*/
/* 基本のスタイル */
.animation02.delighter {
	  transition: all .8s ease-out;
      transform: translateX(0%);
      opacity: 0;
   }
 
/* スタート時のスタイル */
   .animation02.delighter.started {
      transform:none;
	  opacity:1;
   }
 
/* エンド時のスタイル */
   .animation02.delighter.started.ended {
      
   }

