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

/*================================
目次
================================

■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;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■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: #faeddd;
}

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

/*リンクの設定*/
.js-main a{
	text-decoration:none;
	color:#5f241a;
}
.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;
	}
}

/*PC900px、SP100%*/
.js-container{
	width:100%;
	max-width:980px;
	margin:auto;
}
@media screen and (max-width: 768px){
	.js-container{
		width:100%;
	}
}


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

/*ボタン*/
.button019 a {
    background: #f35000;
    border-radius: 100px;
    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 #f35000;
}
.button019 a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 1rem;
  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: #fe8e48;
  color: #fff;
  border:solid 1px #fe8e48;
  opacity: 1;
}
.button019 a:hover:after {
  right: 1.4rem;
}

/*小さいver*/
.btn-small{
	width: 200px;
	font-size:0.8em;
	/*padding: 0.5em 3em;*/
	margin-top:1em;
}
@media screen and (max-width: 768px){
	/*.btn01{
		 padding: 1em 3em;
	}*/
	.btn-small{
		 /*padding: 0.1em 2em;*/
	}
}


/*共通padding設定*/
.main-padding{
	padding: 100px 0;
}
@media screen and (max-width: 768px){
	.main-padding{
		padding: 3em 0;
	}
}

/*共通margin設定*/
.main-margin{
	margin: 80px auto;
}
@media screen and (max-width: 768px){
	.main-margin{
		margin: 10vw auto;
	}
}

/*見出し*/
.content-head01{
	margin-bottom:2em;
}
.content-head01_01{
	font-size:2em;
	font-family: serif;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom:0.4em;
}
.content-head01_02{
	font-size:1em;
}

/*線*/
.contents-line{
	width:1px;
	height:60px;
	background-color: #5f241a;
	margin:auto;
}


/*背景色*/
.bg-color01{
	background: #fff;
}
.bg-color02{ /*文字色と同じ色*/
	background: #5f241a;
}
.bg-color03{ /*差し色-薄め*/
	background: #fe8e48;
}
.bg-color04{ /*差し色*/
	background: #f35000;
}

/*テキスト色*/
.font-color01{ /*差し色*/
	color:#f35000;
}


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

.main-visual{
	margin-bottom:0;
	width:100%;
	background-color: transparent;
	line-height: 0;
}
.main-visual img {
	width:100%;
	max-width: 980px;
}

h1{
	margin:0;
	line-height: 0;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.クーポン
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-pickup-bn{
	margin-top:4em;
}
.main-pickup-bn img{
	width:100%;
}
@media screen and (max-width: 768px){
	.main-pickup-bn{
		width:90%;
		margin: 3em auto 0;
	}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.イントロダクション
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-intro{
	
}


/*メニュー*/
.main-menu{
	margin:80px auto;
	width:100%;

	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央寄せ*/
	justify-content: center;
	align-items: center;
}
.main-menu_item{
	width:25%;
	padding:10px;
}
@media screen and (max-width: 768px){
	.main-menu_item{
		width:90%;
	}
}

/*ボタン*/
.button03 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 1em 2em;
  width: 100%;
  color: #222;
  /*font-size: 18px;*/
  /*font-weight: 700;*/
  border: 1px solid #222;
}

.button03 a::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 1px solid #222;
  border-right: 1px solid #222;
  transform: rotate(45deg);
}

.button03 a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #54bcd5;
  border-color:#54bcd5;
}

.button03 a:hover::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.アイテム
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-item{
	margin-left:auto;
	margin-right:auto;
	width:95%;
	max-width:800px;
}

/*大枠見出し*/
.contents_title{
	
}
.title_head{
	font-weight:700;
}
.title_head_t01{
	
}
.title_head_t02{
	font-size: 2em;
	border-bottom: 1px solid #f35000;
}

.title_img_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: center;
	align-items: center;
	
	margin: 1.5em auto 0;
	width:90%;
	max-width:400px;
}
.title_img_box img{
	width:100%;
}
.title_img_box > div {
	/*列数と間の余白の設定*/
	width: calc( ( 100% - 25px ) / 2 );
	margin-right: 25px;
	margin-bottom:30px;
}
/*右端のマージンをゼロ設定*/
.title_img_box > div:nth-child( 2n ),
.title_img_box > div:last-child{
	margin-right: 0;
}
/*最下段の下部マージンをゼロ設定*/
.title_img_box > div:nth-last-child(-n+2){
	margin-bottom: 0;
}
/*SP*/
@media (max-width: 768px) {
	.title_img_box > div {
		width: calc( ( 100% - 10px ) / 2 );
		margin-right: 10px;
		margin-bottom:10px;
	}
}


.title_text01{
	margin-top: 1.5em;
	font-weight: 700;
}
.title_text01_head{
	
}
.title_text01_star{
	font-size:2.8em;
	letter-spacing: 0.2em;
	color: #dec2ba;
}
.title_text01_star span{
	color: #f35000;
}
.title_text02{
	margin-top: 1.5em;
}

/*ボンバーヒート用*/
.title_text03{
	margin:1em auto 0;
	padding:7%;
	border-radius: 15px;
	background-color: #fff;
	width:95%;
	max-width: 450px;
}
.title_text03_t01{
	display: inline-block;
	border-bottom: 1px solid #5f241a;
	font-size:1.1em;
	font-weight:700;
}
.title_text03_t02{
	margin-top:0.8em;
	font-size:1.5em;
	line-height: 1.5;
	font-weight:700;
}
.title_text03_t03{
	margin-top:1.5em;
	text-align: left;
}






/*アイテムピック~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.main-item_wrapper{
	margin-top:40px;
}
@media screen and (max-width: 768px){
	.main-item_wrapper{
		margin-top:8vw;
	}
}

.main-item_box{
	padding: 0;
	/*background-color:#fff;*/
	/*border-radius:15px 15px 0 0;*/

	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央寄せ*/
	justify-content: center;
	align-items: center;
	
	border-radius:15px;

}
@media screen and (max-width: 768px){
	.main-item_box{
		padding: 0;
	}
}

/*写真の方~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.container01{
	width:49%;
	line-height:0;
}
.container01 img{
	width:100%;
	line-height: 0;
	/*border-radius PC用順番指定で指定*/
}
@media screen and (max-width: 768px){
	.container01{
		width:100%;
	}
	.container01 img{
		border-radius:15px 15px 0 0;
	}
}

/*文字の方~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.container02{
	width:51%;
	padding:5%;
}
@media screen and (max-width: 768px){
	.container02{
		width:100%;
		padding:5vw;

		/*写真に食い込ませる*/
		/*margin-top:-50px;*/
	}
}

/*タイトル*/
.item_header{
	width:100%;
	margin:auto;
	margin-bottom:1em;
}
.item_header01{
	/*フレックスボックスの設定*/
	/*display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;*/
	/*フレックスボックスの要素を中央寄せ*/
	/*justify-content: center;
	align-items: center;*/
	
	margin-bottom:1em;
}
.item_header01-01{
	font-family: serif;
	font-weight: bold;
	font-size:2.3em;
}
.item_header01-02{
	font-size:0.9em;
	display: inline-block;
	/*background-color: #000;*/
	color: #fff;
	padding: 0.25em 1em;
	line-height: 1;
}

.item_header02{
	width:100%;

	/*要素上下中央揃え*/
	/*display: flex;
	justify-content: center;
	align-items: center;*/
}
.item_header02 .inner{
	width:100%;
	padding-left:2%;

	text-align: center;
	/*font-style:italic;*/
	font-weight: 700;
	font-size:1.5em;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 768px){
	.item_header{
		/*1列に戻す*/
		display: block;
		margin-bottom:0;
	}
	.item_header01{
		margin:auto;
		margin-bottom:0em;
	}
	.item_header02{
		width:100%;
		/*要素上下中央揃え*/
		align-items:flex-end;
	}
	.item_header02 .inner{
		padding-top:0.5em;
		font-size:1.25em;
		text-align: center;
	}
}


.item_comment{
	margin-top:1.5em;
	font-size:0.9em;
	text-align: left;
}
.item_info{
	margin-top:1.5em;
	font-size:0.9em;
	text-align: left;
	line-height: 1.3;
	letter-spacing: 0;
}
.item_info a{
	text-decoration: underline;
	font-weight: 700;
}
.item_link{
	margin-top:2em;
}


/*バリエーション*/
.item_variation{
	width:100%;
	margin: 1.5em auto 0;
}
.item_variation img{
	width:100%;
}
.item_variation_t{
	text-align: left;
	margin-bottom:0.8em;
	border-bottom: 1px solid #000;
	/*font-family: serif;*/
	font-size:0.9em;
	font-weight:bold;
}

.item_variation_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: left;
	align-items:flex-start;

	text-align: left;
}
.item_variation_item{
	width:33%;
	padding-right:10px;
}
.item_variation_item img{
	width:100%;
}
@media screen and (max-width: 768px){
	.item_variation_box{
		
	}
}


/*PC用順番指定~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
@media screen and (min-width: 769px){
	/*テキストが左側 sectionに追加*/
	.text-left .main-item_box .container01{
		order: 1;
	}
	.text-left .main-item_box .container01 img{
		border-radius:0 15px 15px 0;
	}
	.text-left .main-item_box .container02{
		order: 0;
	}
	/*テキストが右側 sectionに追加*/
	.text-right .main-item_box .container01{
		order: 0;
	}
	.text-right .main-item_box .container01 img{
		border-radius:15px 0 0 15px;
	}
	.text-right .main-item_box .container02{
		order: 1;
	}

}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
6.一覧（FS）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-fs-all{

}
.contents-fs-all .fs-all_title{
	margin:auto;
}
.contents-fs-all .fs-all_title_text {
	margin:auto;
	display: inline-block;
	color:#fff;
	font-family: serif;
	padding: 0 2em;
}
.contents-fs-all .fs-all_title img{
	width:412px;
}
/*SP*/
@media (max-width: 768px) {
	.contents-fs-all .fs-all_title img{
		width:90%;
	}
}


.main-item_t_text{
	font-size: 1em;
}
@media screen and (max-width: 768px){
	.main-item_t_text{
		font-size: 0.8em;
	}
}



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

.contents-footer{
	margin:4em auto;
}
.contents_brand_top{
	margin:3em auto;
}
.brand_under-text{
	margin-top:1em;
}

/*SP*/
@media (max-width: 768px) {
	.contents_brand_top{
		width:50%;
	}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
8.カテゴリリンク
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


.contents-link_allitem{
	margin:0 auto 5em;
	
	width:90%;
	max-width: 600px;
}

.contents-link_allitem_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: center;
	align-items: center;

	text-align: left;
	margin:0 auto 2em;
	width:100%;
}
.contents-link_allitem_img{
	width:30%;
	line-height: 0;
}
.contents-link_allitem_img img{
	width:100%;
	object-fit: cover;
}
.contents-link_allitem_txt{
	width:70%;
	text-align: center;
	color:#fff;
}
.contents-link_allitem_txt .txt01{
	font-family: serif;
	font-size:1.5em;
}
.contents-link_allitem_txt .txt02{
	font-weight: lighter;
	font-size:0.8em;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
9.リンクエリア
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-link{
	padding-top:50px;
	padding-bottom:50px;
	width:100%;
	background-color: #fff;
}

.contents-link_t{
	margin-bottom: 2em;
}
.contents-link_t .t01{
	display: inline-block;
	padding: 0 1em;
	background-color: #242424;
	color:white;
}
.contents-link_t .t02{
	padding-top:0.2em;
	font-size:0.8em;
}


/*リンクエリア：フレックスボックス*/
.contents-link_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: left;

	text-align: left;
	margin-bottom: 2em;
}
.contents-link_box > div {
	/*列数と間の余白の設定*/
	width: calc( ( 100% - 90px ) / 4 );
	margin-right: 30px;
}
/*右端のマージンをゼロ設定*/
.contents-link_box > div:nth-child( 4n ) {
	margin-right: 0;
}
.contents-link_boxitem{
	padding-bottom:30px;
}
.contents-link_boxitem img{
	width:100%;
}
@media (max-width: 768px) {
	.contents-link_box{
		padding:0 4vw;
	}
	.contents-link_box > div {
		/*列数と間の余白の設定*/
		width: calc( ( 100% - 1vw ) / 2 );
		margin-right: 1vw;
	}
	.contents-link_box > div:nth-child( 2n ) {
		margin-right: 0;
	}
}




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


/*animation_swing-下からふわっと出現*/
/* 基本のスタイル */
.animation_swing.delighter {
  transition: all 1.25s ease-out;
  transform: translateY(25%);
  opacity: 0;
}
/* スタート時のスタイル */
.animation_swing.delighter.started {
  transform:none;
  opacity:1;
}
/* エンド時のスタイル */
.animation_swing.delighter.started.ended {

}


/*animation_blur-じわっと出現*/
/* 基本のスタイル */
.animation_blur.delighter {
  opacity: 0;
  -moz-transition: -moz-transform 0.5s linear;
  -webkit-transition: -webkit-transform 0.5s linear;
  -o-transition: -o-transform 0.5s linear;
  -ms-transition: -ms-transform 0.5s linear;
  transition: transform 0.5s linear;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/* スタート時のスタイル */
.animation_blur.delighter.started {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
  transition: .8s;
}
/* エンド時のスタイル */
.animation_blur.delighter.started.ended {

}
/* アニメーション設定 */
@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }

  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }

  to {
      opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
