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

/*googlefonts*/
/*
*/
/*Adobefonts*/
@import url("https://use.typekit.net/cru1wig.css");
/*
Garvis Pro Regular
font-family: garvis-pro,serif;
font-weight: 400;
font-style: normal;

Garvis Pro SemiBold
font-family: garvis-pro,serif;
font-weight: 600;
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: 1.5;
	letter-spacing: 0em;
	font-family: 'garvis-pro','ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', serif;
	font-weight: 600;
	color:#1c1c1c;
}
@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: #1c1c1c;
  line-height: 1;
  /*border-radius: 50px;*/
  transition: all .2s;
	
  border: 2px solid #1c1c1c;
}
.btn01:hover {
  background-color: #fff;
  border-color: #1c1c1c;
  color: #1c1c1c;
}

/*ボタン 端が丸い*/
.btn-radius{
	border-radius: 50px;
}
/*ボタン width100%*/
.btn-w100{
	width: 100%;
}

/*ボタン 小さい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: #ffe4e4; /*そこそこ薄いピンク色*/
	/*color:#b6862c;*/ /*黄土色*/
}
.bg-color02{
	background-color: #fff; /*白*/
	/*color:#b6862c;*/ /*黄土色*/
}
.bg-color03{
	background-color: #fff0f0; /*もう少し薄いピンク色*/
	/*color:#fff;*/ /*白*/
}


/*タイトル*/



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





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

.main-visual{
	margin-bottom:0;
	width:100%;
	background-color: #fff;
}
h1{
	font-size:2em;
	margin:100px;
}
.main-visual picture{
	margin:0;
	line-height: 0;
}
.main-visual .intro-text{
	margin-top:50px;
	font-weight: 600;
	font-size:0.7em;
}

@media screen and (max-width: 768px){
	h1{
		margin:2em;
	}
	.main-visual picture img{
		margin:auto;
		width:80%;
	}
	.main-visual .intro-text{
		margin-top:5em;
	}
}






/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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:95%;
		margin-top:4em;
	}
	.gallery_box_left{
		padding-right:5px;
	}
	.gallery_box_right{
		padding-left:5px;
	}
	.gallery_inbox{
		margin-top:10px;
	}
}





/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.concept
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-concept{
	margin:150px auto 0;
	
	width:600px;
}
@media screen and (max-width: 768px){
	.contents-concept{
		width:100%;
	}
}

/*画像*/
.concept_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: left;
}
.concept_box img{
	width:100%;	
}
.concept_box_left{
	padding-right:2.5%;
	width:50%;
}
.concept_box_right{
	padding-left:2.5%;
	width:50%;
}
.concept_inbox{
	margin-top:10%;
}

@media screen and (max-width: 768px){
	.contents-concept{
		width:95%;
		margin-top:8em;
	}
}

/*テキスト*/
.contents-concept .concept-head,
.contents-concept .concept-text_jp,
.contents-concept .concept-text_en{
	text-align: justify;
}

.contents-concept .concept-head{
	margin-top:40px;
	font-size:2em;
	line-height:1.2;
}
.contents-concept .concept-text_jp{
	margin-top:30px;
	line-height:1.8;
}
.contents-concept .concept-text_en{
	font-size:0.8em;
	margin-top:30px;
	line-height:1.6;
	font-weight: 400;
}
@media screen and (max-width: 768px){
	.contents-concept .concept-head{
		font-size:1.5em;
	}
}

/*画像*/
.concept-img{
	margin: 100px auto 0;
	width:90%;
}
.concept-img img{
	width:100%;
}
@media screen and (max-width: 768px){
	.concept-img{
		margin: 4em auto 0;
	}
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
6.link
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-link{
	margin:150px auto 0;
	
	width:400px;
}
@media screen and (max-width: 768px){
	.contents-link{
		margin:10em auto 0;
	
		width:70%;
	}
}

.contents-link h2{
	margin-bottom:50px;
}

/*アイテム*/
.link-container{
	margin-bottom:50px;
}
.link-img img{
	width:100%;
}
.link-text-box{
	margin-top:1em;
}
.link-text01{
	font-size:1.5em;
}
.link-text02{
	
}
@media screen and (max-width: 768px){
	.link-container{
		margin-bottom: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:30px;
}
.footer-text01{
	display: inline-block;
	font-size:2em;
	border-bottom: solid 1px #1f1f1f;
	padding-bottom:0.1em;
	line-height: 1.2;
}
.footer-text02{
	margin-top:0.1em;
	font-size:1em;
	font-weight: 400;
	letter-spacing: 0.05em;
}
.footer-text03{
	display: inline-block;
	border: solid 1px #1f1f1f;
	
	margin-top:0.5em;
	padding: 0 1em 0;
	font-size:0.8em;
}


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

