@charset "utf-8";
/* CSS Document */

/*Adobe fonts*/
@import url("https://use.typekit.net/kya6bwd.css");
/*
Century Gothic Pro Regular
font-family: "century-gothic", sans-serif;
font-weight: 400;
font-style: normal;

Century Gothic Pro Italic
font-family: "century-gothic", sans-serif;
font-weight: 400;
font-style: italic;
*/

/*google fonts*/

/*================================
目次
================================

■FSの設定打消し
■PC版とSP版での表示切替設定（見出しや改行などPCとSPの表示を分けたい場合に使用）

1.全体
2.共通フォーマット（ボタンデザインなど）
3.メインビジュアル
4.イントロダクション
5.アイテム
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-c-subgroup { display: none }

/*「商品グループエリア」を非表示*/
/*.fs-c-productList { display: none }*/

/* 文字サイズ調整 */
.fs-l-main{
	font-size:1.1em;
}

/*共通フッターのマージン調整*/
.footer-sp{
	margin-top: 0 !important;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■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:14px;
	line-height: 1.8;
	letter-spacing: 0.07em;
	font-family: "Noto Sans JP",'游ゴシック', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo',  'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
	font-weight: 400;
	color:#393636;
}
@media screen and (max-width:768px) {
	.js-main{
		padding-top:0;
	}
}

/*リンクの設定*/
.js-main a{
	text-decoration:none;
	color:#393636;
}
.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:100%;
	max-width:980px;
	margin:auto;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
2.共通フォーマット（ボタンデザインなど）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*ボタン*/
.button019 {
	margin: 2em auto 4em;
}
.button019 a {
    background: #f5b957;
    border-radius: 50px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 280px;
    padding: 10px 25px;
    color: #fff;
    transition: 0.3s ease-in-out;
    /*font-weight: 500;*/
	/*border:solid 1px #000;*/
}
.button019 a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 1.5rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.button019 a:hover {
  /*background: #587ba3;*/
  /*border-color: #587ba3;*/
  color: #FFF;
  opacity: 0.8;
}
.button019 a:hover:after {
  right: 1.9rem;
}

/*色変更ver*/
.btn_color01 a{
	border:solid 1px #587ba3;
	background-color:  #587ba3;
	color:#fff;
}
.btn_color01 a:hover {
  background: #000;
  border-color: #000;
  color: #FFF;
}



/*共通padding設定*/
.main-padding{
	padding: 80px 0;
}
@media screen and (max-width: 768px){
	.main-padding{
		padding: 3em 0;
	}
}

/*共通margin設定*/
.main-margin{
	margin: 150px auto;
}
@media screen and (max-width: 768px){
	.main-margin{
		margin: 7em auto;
	}
}

/*見出し*/



/*背景色*/
.bg-color01{
	background: #fff;
}


/*テキスト色*/
.font-color01{ /**/
	color:#db7e76;
}

/*フォント*/
/*フォント指定*/
.font-01{ /*明朝系*/
	font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', serif;
}
.font-02{ /*ゴシック系*/
	font-family: 'century-gothic','Avenir','Helvetica Neue','Helvetica','Arial', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
}

.bold{ /*太字*/
	font-weight: bold;
}

/*見出し*/
.head-01 .text01{
	font-family: "century-gothic", sans-serif;
	font-style: italic;
	font-size:1.5em;
}
.head-01 .text02{
	font-size:0.8em;
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
3.メインビジュアル
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-visual{
	margin-bottom:0;
	width:100%;
	background-color: #f3f3f3;
	line-height: 0;
}

h1{
	margin:0;
	line-height: 0;
}

.main-text{
	margin:2em;
	font-size:0.7em;
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.イントロ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-intro{
	font-size: 0.9em;
	font-weight:bold;
}
@media (max-width:768px) {
	.main-intoro{
		fone-size:0.7em
	}
	
}


/*メニュー*/

.main-menu_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: center;
	
	line-height: 1.25;
}
.main-menu_box img{
	width:100%;
}
.main-menu_item_wrapper{
	width:25%;
	margin:5px;
}
@media (max-width:768px) {
	.main-menu_item_wrapper{
		width:46%;
		margin:1%;
	}
}
.main-menu_item{
	background-color: #f1f1f1;
	
	/*フレックスボックスの設定*/
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: center;
	align-items: center;
}
.main-menu_item01{
	width:30%;
	line-height: 0;
}
.main-menu_item02{
	width:70%;
}


.main-menu_text01{
	color:#f5b957;
	font-weight: bold;
}
.main-menu_text02{
	font-size:1.15em;
	font-weight: bold;
}
.main-menu_text03{
	
}





/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.ピックアップ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.bg-color01{
	background-color: #f1f1f1;
}

/*タイトル*/
.pickup_head{
	
	margin-bottom:2em;
}
.pickup_head_txt01{
	color:#f5b957;
	font-weight:bold;
}
.pickup_head_txt02{
	font-size:1.6em;
}

.recommend_item{
	background-color: #fff;
	width: 40%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
    align-items: center;
}
.recommend_item01{
	width:30%;
	line-height: 0;
}


.item_area_box .recommend_item01 img{
	width:100%;
}
.recommend_item02{
	width:70%;
}
@media (max-width:768px){
	.recommend_item{
		width: 70%;
		margin: 0 auto;
	}
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
6.機能性アイコン
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

#icon{
	margin-bottom:40px;
}

#icon img {
	width: 45%;
}
@media (max-width:768px){
	#icon img {
		width: 80%;
	}
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
7.LINEUP
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-lineup {
	background-color: #f8f8fa;
	padding: 2.5em 0 1.5em;
}

.contents_head2{
	/*font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;*/
	font-weight: 400;
	color: #292929;
	border-bottom: 1px solid #292929;
	line-height: 1.3;
	display: inline-block;
	font-size:1.2em;
	
	margin-bottom:1em;
}
.contents_head2 span{
	font-size: 1.5em;
	font-weight: 700;
	letter-spacing: 0.01rem;
}

.lineup_set{
	margin: 20px auto;
	width:90%;
	max-width: 800px;
}

.lineup_head{
	margin-bottom:1em;
}
.lineup_head_undertext{
	margin-top:-2em;
	margin-bottom:3em;
	font-size:0.8em;
}

.lineup_head_text01{
	display: inline-block;
	padding: 0 3em;
	color:#fff;
	background-color: #fc8065;
	font-size:1.4em;
}
.lineup_head_text02{
	font-size:1.2em;
	margin:0.5em auto 2em;
}



.lineup_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: center;
	
	width:100%;
}
.lineup_box > div {
	/*列数と間の余白の設定*/
	width: calc( ( 100% - 15px ) / 4 );
	margin-right: 5px;
	margin-bottom:10px;
}
/*右端のマージンをゼロ設定*/
.lineup_box > div:nth-child( 4n ),
.lineup_box > div:last-child{
	margin-right: 0;
}
/*SP*/
@media (max-width: 768px) {
	.lineup_box > div {
		width: calc( ( 100% - 2% ) / 2 );
		margin-right: 2%;
	}
	.lineup_box > div:nth-child( 2n ),
	.lineup_box > div:last-child{
		margin-right: 0;
	}
}

.lineup_box img{
	width:100%;
}
.lineup_box a{
	color:#000;
}

.item_text{
	font-size:0.8em;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
8.アイテム
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.item_area_box img {
	width: 70%;
}
/*SP*/
@media (max-width: 768px) {
	.item_area_box img {
		width: 95%;
	}
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
リンクエリア
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.item_inner {
	width: 100%;
    /*padding: 5em 0;*/
    max-width: 500px;
    margin: auto;
}
.title_t01 {
	font-size: 1.1em;
	letter-spacing: 0.06em;
	line-height: 1.2;
}
.title_t02 {
	font-size: 0.8em;
	padding-bottom: 1.5em;
}

.container_box{
	margin-top:2em;
}
.container_item img{
	width: 100%;
}


.container_text{
	margin-top:0.6em;
	line-height: 1.7;
}
.container_text01{
	font-size:1.7em;
	line-height: 1.3;
}
.container_text02{
	margin-top:0.3em;
	font-size:0.8em;
}
@media (max-width: 768px) {
	.item_inner {
		width: 90%;
		/*padding: 5em 0;*/
		max-width: 90%;
		margin: auto;
	}
	.container_text02{
		margin-top:0.5em;
		font-size:0.65em;
	}
}

/*flex*/
.container_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: flex-start;
	align-items: flex-start;

	width:100%;
}
.container_box > div {
	/*列数と間の余白の設定*/
	width: calc( ( 100% - 15px ) / 2 );
	margin-right: 15px;
	margin-bottom:35px;
}
/*右端のマージンをゼロ設定*/
.container_box > div:nth-child( 2n ),
.container_box > div:last-child{
	margin-right: 0;
}
/*最下段の下部マージンをゼロ設定*/
.container_box > div:nth-last-child(-n+2){
	margin-bottom: 0;
}
/*SP*/
@media (max-width: 768px) {
	.container_box{
		width:100%;
		margin-left:auto;
		margin-right:auto;
	}
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
9.フッター
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-footer{
	
}

/*タイトルロゴ*/
.contents-footer_title{
	
}
.brand-link a {
	color: #000;
}

/*PC*/
@media (min-width: 769px) {
	.footer_title_box{
		width:90%;
		max-width:980px;
		margin-left: auto;
		margin-right: auto;
	}
	.footer_title_box img{
		width:100%;
	}
	.footer_title01{
		width:50%;
		margin-left: auto;
		margin-right: auto;
	}
}
/*SP*/
@media (max-width: 768px) {
	.footer_title_box{
		width:70%;
		margin-left: auto;
		margin-right: auto;
	}
}

/*線*/
.contents-footer_line{
	width:1px;
	height:150px;
	background-color: #ccc;
	margin:auto;
}

/*ロゴ*/
.contents-footer_logo{
	margin-left: auto;
	margin-right: auto;
	width:200px;
	max-width: 40%;
}
.contents-footer_logo img{
	width:100%;
}


/*リンク*/
.contents-footer_link{
	width:80%;
	max-width:500px;
}
.contents-footer_link img{
	width:100%;
}
.contents-footer_link_text{
	font-size:0.9em;
	margin-bottom:0.5em;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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 {
      
   }
