@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: #37473c;
	
	background-image:url("../img/back.jpg");
	background-attachment: fixed;
    background-repeat: repeat;
}
@media screen and (max-width:768px) {
	body{
		background-size: 50% auto;
	}
}

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

/*リンクの設定*/
.js-main a{
	text-decoration:none;
	color:#fff;
}
.js-main a:hover,a:hover img{
	filter: brightness(0.8);
	-webkit-filter: brightness(0.8); /* 古いバージョンのChromeとSafariに対応時に指定 */
	-moz-filter: brightness(0.8); /* 古いバージョンのFoxに対応時に指定 */
	transition: all  0.3s ease; /* animation */
	/*opacity:0.9;
    -moz-opacity:0.9;
    filter:alpha(opacity = 90);*/
}

/*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:100%;
	max-width:980px; 
	margin:auto;
}

/*コンテンツ部分の背景色*/
.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:#fff; /*ポイント色*/
}

/*タイトル*/



/*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 h1 img{
	width:70%;
	max-width:500px;
}

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

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



/*メイン画像*/
.main-img{
	margin:auto;
	width:90%;
	max-width:700px;
}
.main-img img{
	border: solid 7px rgba(255,255,255,0.2) ;
	border-radius: 50px;
	background-clip: padding-box;
}


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

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

.gallery_box img{
	width:100%;	
}

/*1カラム：左右マージン有*/
.gallery_box_1clm{
	padding: 0  0 100px;
}
@media (max-width: 768px) {
	.gallery_box_1clm{
		padding: 0 8vw 10vw;
	}
}

/*1カラム：横幅いっぱい*/
.gallery_box_1clm_wide{
	padding-bottom:30px;
}
@media (max-width: 768px) {
	.gallery_box_1clm_wide{
		padding-bottom:4vw;
	}
}

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

/*3カラム*/
.gallery_box_3clm{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: left;
	
	text-align: left;
}
.gallery_box_3clm > div {
	/*列数と間の余白の設定*/
	width: calc( ( 100% - 60px ) / 3 );
	margin-right: 30px;
}
/*右端のマージンをゼロ設定*/
.gallery_box_3clm > div:nth-child( 3n ) {
	margin-right: 0;
}
.gallery_box_3clm_item{
	padding-bottom:30px;
}
@media (max-width: 768px) {
	.gallery_box_3clm{
		padding:0 4vw;
	}
	.gallery_box_3clm > div {
		/*列数と間の余白の設定*/
		width: calc( ( 100% - 8vw ) / 3 );
		margin-right: 4vw;
	}
	.gallery_box_3clm_item{
		padding-bottom:4vw;
	}
}


/*テープ配置*/
/*01*/
.tape_wrapper01{
	position: relative;
}
.tape_wrapper01 .tape_item01{
	position: absolute;
	top:-6%;
	left:38%;
	width:25%;
}
@media (max-width: 768px) {
	.tape_wrapper02 .tape_item01{
		top:-10%;
		left:38%;
	}
}
/*02*/
.tape_wrapper02{
	position: relative;
}
.tape_wrapper02 .tape_item01{
	position: absolute;
	top:-10%;
	left:-6%;
	width:13%;
}
.tape_wrapper02 .tape_item02{
	position: absolute;
	top:-10%;
	right:-6%;
	width:13%;
}
@media (max-width: 768px) {
	.tape_wrapper02 .tape_item01{
		top:-10%;
		left:2%;
	}
	.tape_wrapper02 .tape_item02{
		top:-10%;
		right:2%;
	}
}
/*03*/
.tape_wrapper03{
	position: relative;
}
.tape_wrapper03 .tape_item01{
	position: absolute;
	top:-8%;
	left:40%;
	width:16%;
}
@media (max-width: 768px) {
	.tape_wrapper03 .tape_item01{
		top:-10%;
		left:40%;
	}
}
/*04*/
.tape_wrapper04{
	position: relative;
}
.tape_wrapper04 .tape_item01{
	position: absolute;
	top:-7%;
	left:53%;
	width:24%;
}
@media (max-width: 768px) {
	.tape_wrapper04 .tape_item01{
		top:-8%;
		left:49%;
	}
}
/*05*/
.tape_wrapper05{
	position: relative;
}
.tape_wrapper05 .tape_item01{
	position: absolute;
	top:-12%;
	left:7%;
	width:4.5%;
}
.tape_wrapper05 .tape_item02{
	position: absolute;
	top:-11%;
	right:0%;
	width:13%;
}
@media (max-width: 768px) {
	.tape_wrapper05 .tape_item01{
		top:-14%;
		left:15%;
	}
	.tape_wrapper05 .tape_item02{
		top:-13%;
		right:8%;
	}
}


/*coming soon*/
.coming_soon{
	margin:100px auto;
}

.interval{
	padding:70px 0 50px;
	font-size:3em;
	font-weight: 200;
	color:#DE6D3A;
}
@media screen and (max-width: 768px){
	.interval{
		font-size:2.5em;
	}
}


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

