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

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@700&display=swap');

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

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

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

/*リンクの設定*/
.js-main a{
	text-decoration:none;
	color:#171716;
}
.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.共通フォーマット（ボタンデザインなど）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*ボタン*/
.btn01{
  width: 80%;
	max-width: 300px;
  padding: 1.1em 1em;
  font-size: 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 1em auto;
  color: #fff;
  background: #E10D62;
  line-height: 1;
  /*border-radius: 50px;*/
  transition: all .2s;
  border: 1px solid #E10D62;
}
.btn01 a{
	color: #fff;
	display: block;
}
.btn01 a:hover {
  color: #E10D62;
  opacity:1;
  -moz-opacity:1;
  filter:alpha(opacity = 100);
}
.btn01:hover {
  color: #E10D62;
  background-color: #fff;
  border-color: #E10D62;
}

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


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

.contents-margin{
	margin: 6em 0 0em;
	padding: 6em 0 6em;
}
@media screen and (max-width: 768px){
	.contents-margin{
		margin: 60px 0 30px;
		padding:  60px 0 30px;
	}
}

.text-margin{
	margin: 0.3em 0 0;
    line-height: 0.1;
}

/*見出し*/
.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;
}


/*ボタン色変更*/
.btn-color01{
	background: #fff;
	border: 1px solid #222;
	color: #222;
}
.btn-color01:hover{
	background-color: #222;
  	border-color: #222;
  	color: #fff;
}

/*背景色*/
.bg-color01{
	background: #fff;
}
.bg-color02{ /*文字色と同じ色*/
	background: #363636;
}
.bg-color03{ /**/
	background: #E10D62;
}

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

/*テキスト太さ*/
.font-bold{
	font-weight: bold;
}

/*テキスト小さめ*/
.font_s{
	font-size: 0.8em;
}

.font_ss{
	font-size: 0.6em;
}

.font_sss{
	font-size: 0.5em;
}

/*Kepler Std Regular*/
.font_k{
	font-family: "kepler-std", serif;
font-weight: 300;
font-style: normal;
}

/*Azo Sans Regular*/
.font_a{
	font-family: "kepler-std", serif;
	font-weight: 400;
	font-style: normal;
}


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

.main-visual{
	margin-bottom:0;
	width:100%;
	/*background-color: #e3cfbe;*/
	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;
	}

.font_k img{

	width: 32%;
}
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.イントロダクション
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-intro{
	/*margin-top:80px;*/
	font-size:1em;
}

/*スタッフ紹介*/
.staff-intro{
	font-size:1em;
	background-color: #f8f3f2;
	padding: 1% 3% 5%;
	margin: 0 auto;
	max-width: 659px;
	width: 92%;
	box-sizing: border-box;
	border-radius: 15px;
}

.staff-intro p{
	font-size: 0.9em;
}

.staff-intro .font_a{
	font-size: 1.8em;
	color: #A08870;
}

@media screen and (max-width: 768px){
	.main-intro{
		font-size:0.8em;
	}
	.staff-intro{
		padding: 1% 5% 5%;
		font-size:0.8em;
	}
	.staff-intro p{
		font-size: 0.85em;
	}
	.staff-intro img{
		width: 90%;
	}
}



/*メニュー*/
.main-menu-tl{
	font-size: 1.5em;
	margin: 6em 0 1em;
}

.main-menu{
	margin:0px auto 0;
	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;
}

.main-menu_item img{
	width:100%;
}

.item_font{
	font-size: 1.2em;
}

@media screen and (max-width: 768px){
	.main-menu-tl{
		font-size: 1.3em;
		margin: 60px 0 10px;
	}

	.main-menu_item{
		width:45%;
	}
}

/*矢印マーク*/
.arrow{
	position: relative;
	display: inline-block;
	padding: 0 0 0 16px;
	color: #171716;
	vertical-align: middle;
	text-decoration: none;
	font-size: 15px;
	margin: 0;
}
.arrow::before,
.arrow::after{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.arrow01::before{
	left: 0px;
	width: 12px;
	height: 12px;
	border-top: 1px solid #171716;
	border-right: 1px solid #171716;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

/*ボタン*/
.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.アイテム
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.itemarea{
	background-color: #f8f3f2;
}
.item-box_t {
	font-size: 1.3em;
	letter-spacing: 0.1em;
	line-height: 1.7;
}
.item-box_t span{
	font-size: 2.3em;
	line-height: 1;
	color: #E10D62;
}
.item-box_img{
	padding: 0 20%;
}
.item-box_img img{
	width: 100%;
}
.outer_detail {
	font-size: 0.9em;
	margin: 0 auto 1em;
}

.detail_p{
	margin:0 0 1.5em;
}

.detail_t{
	display: inline-block;
	font-size: 1.4em;
	margin: 0 0 1em;
	line-height: 1.4;
}

.item_link{
	border-bottom: 1px solid #171716;
	display: inline-block;
	margin: 0;
}


@media screen and (max-width: 768px){
	.item-box_t {
		font-size: 1.1em;
	}
	.item-box_img{
		padding: 0 10%;
	}
	.outer_detail {
		font-size: 0.85em;
		margin-bottom: 1em;
	}

}

/*矢印マーク*/
.arrow2{
	position: relative;
	display: inline-block;
	padding: 0px 10px 0 0;
	color: #171716;
	vertical-align: middle;
	text-decoration: none;
	font-size: 1.2em;
	margin: 0;
}
.arrow2::before,
.arrow2::after{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.arrow02::before{
	right: 0px;
	width: 8px;
	height: 8px;
	border-top: 1.5px solid #171716;
	border-right: 1.5px solid #171716;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

@media screen and (max-width: 768px){
	.arrow2{

	}
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.swiper
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.main-slider{
	margin:2em auto 1em;
	    padding: 0 0 2em;
	width:600px;
	position: relative;
}

.size_f{
	font-size: 2.3em;
	margin: 1.5em 0 0.3em;
}

@media screen and (max-width: 768px){
	.main-slider{
		margin:1em auto;
		width:100%;
	}
}
.main-slider-inner {
	width: 500px;
	margin: 0 auto;
}
.swiper img{
	width:100%;
}
.swiper video {
	width: 100%;
}

/*縦横比率固定*/
/*.swiper {
    position: relative;
    width: 100%;
}*/
.swiper:before {
    content:"";
    display: block;
    /*padding-top: 100%; *//* 高さを幅の75%に固定 */
}
.swiper-wrapper{
    /*position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;*/
	height: auto!important;
}

/*.swiper-button-next {
	top:50%;
	right: 0;
}*/

/*他カスタマイズ*/
.swiper-button-next:after ,.swiper-button-prev:after{
	color:#747474;

	font-size:1em;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  overflow: clip;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block
}

.slider1 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  overflow: clip;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block
}
.slider2 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  overflow: clip;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block
}



@media screen and (max-width: 768px){
	.swiper-button-next:after ,.swiper-button-prev:after{
		font-size:10px;
	}
	.main-slider [class^="swiper-button-prev"]::after {
		font-size:20px;
	}
	.main-slider [class^="swiper-button-next"]::after {
		font-size:20px;
	}
	.main-slider-inner {
		width: 90%;
		margin: 0 auto;
	}

}

/* ==========================
  ドットの間隔を調整
========================== */
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 4em 0;
}

/* ==========================
  ドットのサイズと色を変更
========================== */
.swiper-pagination-bullet {
  background-color: #fff;
  width: 50px;
  height: 10px;
  border-radius: 0;
}

/*スタッフレビュー*/
.Staff_detail{
	max-width:600px;
	width: 90%;
	margin: 2em auto 5em;
}

.staff-tl{
	font-size: 1.6em;
	margin: 1em 0 1em;
}

.Staff_wrap{
	margin:0 auto 1.5em;
	display:flex;
  flex-direction: row;
  justify-content: space-between;
	align-items: center;
}

.Staff_item{
	padding: 2%;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.Staff_pict{
	width: 25%;
  margin-right: 3%;
}

.Staff_pict img{
	width: 100%;
}

.Staff_text{
	width: 72%;
	font-size: 0.8em;
	text-align: left;
	line-height: 2;
	display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.Staff_bg{
	background-color: #fff;
	height: fit-content;
	padding: 0 4%;
	border-radius: 10px;
}

.Staff_text p{
}

@media screen and (max-width: 768px){
	.staff-tl{
		font-size: 1.2em;
		margin: 1em 0 1em;
	}
	.Staff_text{
		line-height: 1.5;
	}
	.Staff_detail{
		max-width:600px;
		width: 90%;
		margin: 2em auto 0em;
	}
}
.more-item{
    font-size: 1.6em;
    margin: 0 0 0;
		line-height: 1.3;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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: 'Noto Serif JP','ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', 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%;
	}
}




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

.contents-footer{
	margin:4em auto;
}
.contents_brand_top{
	margin:6em auto;
}

.contents_brand_top .logo{
	width: 40%;
	max-width: 240px;
}
.brand_under-text{
	margin-top:0.4em;
}

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

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


.contents-link_allitem{
	margin-bottom:2em;
}

.contents-link_allitem_box{
	margin:0 auto 1em;
	width:90%;
	max-width: 700px;
}
.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: 'Noto Serif JP','ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', 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: #f0f0f0;
}

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



/*下から*/
.fadein {
	opacity : 0;
	transform: translateY(50px);
	transition: all 1s;
	-moz-transform: translateY(50px);
	-webkit-transform: translateY(50px);
	-o-transform: translateY(50px);
	-ms-transform: translateY(50px);
}
