<!--<!--<!--<!--@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: #d4c0a4;
	/*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: #fff;
	}
}

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: Arial, "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.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; /* 標準 */
}


/*画像サイズ制御*/
.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: #fdf7ec;
}
@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:150px;
  padding: 0.5em 0 0.5em 0;
  /*font-size: 1.25em;*/
  position: relative;
  text-align: center;
  text-decoration: none;
  display: block;
  margin: 1em auto;
  color: #fff;
  background-color: #282828;
  line-height: 1;
  /*border-radius: 50px;*/
  transition: all .2s;
	
  border: 1px solid #282828;
	
	font-family: serif;
	font-weight: 600;
	font-style: normal;
}
.btn01:hover {
  background-color: transparent;
  border-color: #282828;
  color: #282828;
}




/*見出し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: 40px 0;
}
@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;
}
.item_link_box {
	/*フレックスボックスの設定*/
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: center;
	align-items: center;
	
	/*width:50%;*/
	margin:auto;
}
.item_link_box img {
	width: 100%;
}
.item_link_box_left {
	width: 30%;
}
.item_link_box_right {
	width: 40%;
}
.btn02 {
	background-color: #cfbca2;
	padding: 5px 30px 5px 25px;
	border-radius: 50px;
	display: inline-block;
}
.link_text01 {
	margin-bottom: 15px;
}

.item_pants, .item_op {
	line-height: 0;
}

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

.contents_footer{
	padding-bottom: 100px;
}


.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 {
      
   }
