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

/*googlefonts*/

/*Adobefonts*/
@import url("https://use.typekit.net/vom4xaw.css");
/*
font-family: sketchnote-text,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: #f3ede2;*/
	/*background: -webkit-linear-gradient(#9df7e5, #37cb84);
	background: -o-linear-gradient(#9df7e5, #37cb84);
	background: linear-gradient(#9df7e5, #37cb84);*/
}
@media screen and (max-width:768px) {
	body{
		/*background-color: #e8d8bd;*/
	}
}

body:after {/*グラデーション固定用　擬似要素をつくる*/
  position: fixed;/*固定配置*/
  top: 0; left: 0;/*左上に固定*/
  width: 100%; height: 100%;/*画面全体を覆う*/
  content: "";
  /*background: #d4c0a4;*//*保険用*/
    /*background: -moz-linear-gradient(top, #a3e4d7 0%,#86e1b5 100%);*//*古いFireFox向け*/
  /*background: -webkit-linear-gradient(top, #a3e4d7 0%,#86e1b5 100%);*//*古いSafari・Chrome向け*/
  /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a3e4d7', endColorstr='#86e1b5',GradientType=0 );*//*IE9以下への対応*/
  /*background: linear-gradient(to bottom, #a3e4d7 0%, #86e1b5 100%);*//*正規のプロパティ*/
  z-index: -1;/*背景にするため*/
}



/*全体の設定/フォントなど*/
.js-main{
	text-align: center;
	line-height: 1.8;
	letter-spacing: 0.05em;
	font-family: "MS Pゴシック", "Hiragino Kaku Gothic ProN","Hiragino Sans","BIZ UDPGothic","Meiryo",sans-serif;
	font-weight: 400;
	color:#282828;
	font-size:15px;
}
@media screen and (max-width:768px) {
	.js-main{
		padding-top:0;
	}
}

/*リンクの設定*/
.js-main a{
	text-decoration:none;
	/*color:#282828;*/
}
.js-main a:hover,a:hover img{
	/*opacity:0.8;
    -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; /* 標準 */
}


/*画像サイズ制御*/
.js-main img{
	width:100%;
	height: auto;
	}
@media screen and (max-width:768px) {
    /*　画面サイズが768px以下の時はここを読み込む　*/
	.js-main img{
	width:100%;
	height: auto;
	}
}

/*PC600px、SP100%*/
.js-container{
	width:600px;
	margin: auto;
	/*background-color: #e8d8bd;*/
}
@media screen and (max-width: 768px){   
	.js-container{
		width:100%;
		/*background-color: #fdf7ec;*/
	}
}
@media screen and (min-width: 769px){   
	.js-container{
		margin: 30px auto;
		border-radius: 20px;
	}
}


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

/*ボタン*/
.btn01{
  width: 40%;
  padding: 15px 10px;
  font-size: 13px;
  position: relative;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 1.2em auto 1.2em;;
  color: #fff;
  background: #d9b3a4;
  line-height: 1;
  /*border-radius: 10px;*/
  transition: all .2s;
	
  /*border: 1px solid #000000;*/
}
/*.btn01 a{
	display: block;
}*/
.btn01:hover {
  /*background-color: #000000;*/
  /*border-color: #000000;*/
  /*color: #fff;*/
	opacity: 0.6;
}
.btn01 a:hover {
	color: #fff;
  opacity:1;
  -moz-opacity:1;
  filter:alpha(opacity = 100);
}
@media screen and (max-width: 768px){
	/*.btn01{
		 padding: 1em 3em;
	}*/
	.btn-small{
		 /*padding: 0.1em 2em;*/
	}
}
.btn02{
  /*width: 90%;*/
  padding: 12px 15px;
  font-size: 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 1em auto;
  color: #372d2b;
  background: #f3e7ac;
  line-height: 1;
  border-radius: 10px;
  transition: all .2s;
	
  /*border: 1px solid #000000;*/
}
.btn02:hover {
  /*background-color: #000000;
  border-color: #000000;
  color: #fff;*/
	opacity: 0.6;
}
.btn02 a:hover {
	color: #fff;
  opacity:1;
  -moz-opacity:1;
  filter:alpha(opacity = 100);
}




/*見出し01*/
.main_title_box{
	margin-bottom:50px;
}
.main-title{
	font-size:2.5em;
	letter-spacing: 0em;
	line-height: 1.5;
	margin-bottom:0.3em;
}
@media screen and (max-width: 768px){
	.main_title_box{
		margin-bottom:2em;
	}
	.main-title{
		font-size:2.2em;
	}
}

/*見出し02 枠囲み*/
.main_title_box02{
	margin-bottom:50px;
}
.main-title02{
	display: inline-block;
	background-color: #779289;
	padding:0em 1em 0.1em;;
	margin:0 auto 1em;
	
	color:#fff;
	font-size:1.5em;
	letter-spacing: 0em;
	line-height: 1.5;
	
}
@media screen and (max-width: 768px){
	.main_title_box02{
		margin-bottom:2em;
	}
	.main-title02{
		font-size:2.2em;
	}
}




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

.main-visual{
	
}

@media screen and (min-width: 769px){
	.main-visual,.main-visual img{
		/*border-radius: 15px 15px 0 0;*/
	}
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.アイテムリンク
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.intro_txt {
	padding: 10px 20px;
	color: #884835;
}
@media screen and (max-width: 769px){
	/*.intro_txt {
		padding: 0;
	}*/
}

.arrow_s {
  position: relative;
  display: inline-block;
  padding-right: 3px;
  color: #333;
  text-decoration: none;
}
.arrow_s:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #333;
  position: absolute;
  top: 50%;
  right: -10px;
  margin-top: -6px;
}


.main-menu{
	width:100%;
	margin:auto;
}

.main-menu_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央寄せ*/
	justify-content: center;
	align-items: center;
}
.main-menu_item{
	width:28%;
	padding:1.5%;
}
.main-menu_item img{
	width:100%;
}

.item_link {
	margin: 50px auto 0;
	width: 100%;
	max-width: 600px;
	background-color: #fcedd5;
	padding: 10px 0;
}
.link_text01 {
	margin-bottom: 15px;
}

.item_pants, .item_op {
	line-height: 0;
}
.torso {
	margin: 0 auto;
}
.contents_title_txt {
	font-size: 1.4em;
	font-weight: 700;
	letter-spacing: 1.6;
	padding: 20px 0;
}
.item_text {
	padding: 20px 10px;
}
.text_box {
	margin: 3em 0 1em;
	font-size: 0.9em;
	line-height: 2;
	letter-spacing: 1.4;
}
.text_box span {
	font-size: 0.8em;
}
.main-item a:visited {
	color: #fff;
}
@media screen and (max-width: 769px){
	.contents_title_txt {
		font-size: 1.2em;
	}
	/*.item_text {
		text-align: left;
	}*/
}


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

.contents_footer{
	padding-bottom: 30px;
}
#contents_footer_2 img{
	width: 50%;
	margin: 80px 0 10px;
}

.contents_footer_logo img{
	width:150px;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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(0%);
      opacity: 0;
   }
 
/* スタート時のスタイル */
   .animation.delighter.started {
      transform:none;
	  opacity:1;
   }
 
/* エンド時のスタイル */
   .animation.delighter.started.ended {
      
   }
