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

/*google fonts*/

/*Adobe fonts*/
@import url("https://use.typekit.net/vgh7wpi.css");
/*
Amiri Regular
font-family: "amiri", sans-serif;
font-weight: 400;
font-style: normal;

MrBlaketon Pro Regular
font-family: "mrblaketon-pro", sans-serif;
font-weight: 400;
font-style: normal;
*/

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

■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マージン制御*/
.fs-l-pageMain{
	margin-top:100px!important;
}
@media screen and (max-width:768px) {
	.fs-l-pageMain{
		margin-top: 55px!important;
	}
}


@media screen and (max-width:768px) {
	.fs-l-main{
		padding-top:0!important;
	}
}

.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__controller{ display: none }

/*「商品グループエリア」表示調整*/
.fs-c-productList{
	margin: 0 3%;
}
.fs-c-productList__list {
    display: grid;
    grid-template-columns: calc(50% - 0px) calc(50% - 0px);
    grid-gap: 0px;
}
.fs-c-productList__list__item {
    margin: 25px 8px 0!important;
}

/*「商品グループエリア」を非表示*/
/*.fs-c-productList { display: none }*/

/* 文字サイズ調整 */
.fs-l-main{
	font-size:1.1em;
}

/*共通フッターのマージン調整*/
.footer-sp{
	margin-top: 0 !important;
}

/*フッターの色変更*/
#footer.second-page .footer-sp,
#footer.second-page .footer__follow{
	background-color: #e69d8e ; 
}
#footer.second-page .footer__info{
	background-color: #fcf5f5 ; 
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■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.04em;
	font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', serif;
	font-weight: 400;
	color:#342f36;
}
@media screen and (max-width:768px) {
	.js-main{
		font-size: 4vw;
	}
}

/*リンクの設定*/
.js-main a{
	text-decoration:none;
	color:#342f36;
}
.js-main a:hover,a:hover img{
	opacity:0.8;
    -moz-opacity:0.8;
    filter:alpha(opacity = 80);
}


/*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;
	}
}

/*PC550px、SP100%*/
.js-container{
	width:100%;
	max-width:600px;
	margin:auto;
}

/*親要素を無視して画面幅いっぱいにする場合*/
.fullscreen{
	margin: 0 calc(50% - 50vw);  /* 画面幅いっぱいにはみ出させるためのネガティブマージン */
  	width: 100vw;                /* 幅を画面幅いっぱいに指定 */
}

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

/*ボタン*/
.button019 a {
	background: #fff;
	border-radius: 100px;
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 0 auto;
	max-width: 280px;
	padding: 10px 25px;
	color:#7e8f98;
	transition: 0.3s ease-in-out;
	/*font-weight: 500;*/
	border:solid 1px #7e8f98;
}
.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: #7e8f98;
  color: #FFF;
  opacity: 1;
}
.button019 a:hover:after {
  right: 1.4rem;
}


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

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

/*見出し*/
.title02{
	
}
.title02_text01{
	
}
.title02_text02{
	font-size: 2em;
	letter-spacing: 0.1em;
}

/*テキスト色*/
.font_color01{/*水色*/
	color: #7e8f98;
}



/*背景色*/
.bgcolor-01{/*白*/
	background-color: #fff;
}

/*フォント*/
/*フォント指定*/
.font-01{ /*明朝系*/
	font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', serif;
}
.font-02{ /*ゴシック系*/
	font-family: 'Avenir','Helvetica Neue','Helvetica','Arial', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
}
.font-03{ /*Amiri Regular*/
	font-family: "amiri", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.font-04{/*MrBlaketon Pro Regular*/
	font-family: "mrblaketon-pro", sans-serif;
	font-weight: 400;
	font-style: normal;
	
	/* 追加：右側の切れを防ぐための余白 */
    padding-right: 0.3em;
}
.bold{ /*太字*/
	font-weight: bold;
}






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

.main-item{
	background-color: #fff;
}
.main-item img{
	width:100%;
	line-height: 0;
}

/* main visual */
.main_visual{
	background-color: #c2cfd5;
	line-height: 0;
}


/*intro*/
.main_intro{
	width: 100%;
}
h1{
	font-size:1.5em;
	font-weight: normal;
	margin:0;
}
.intro_text{
	margin-top:1.5em;
}

/*menu*/
.menu_head{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素の寄せ*/
	justify-content: center;
	align-items: center;
}
.menu_head_t01{
	font-size: 1.5em;
	margin-right: 0.5em;
}
.menu_head_t02{
	font-size: 2.5em;
}


.menu_list{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素の寄せ*/
	justify-content: center;
	align-items: flex-start;
	
	width:70%;
	margin-right: auto;
	margin-left: auto;
}
.menu_item{
	width:27%;
	margin:3%;
}
@media screen and (max-width: 768px){
	.menu_item_text{
		font-size: 3vw;
	}
}



/* item */
.main_item{
	
}

/*タイトル*/
.item_head{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素の寄せ*/
	justify-content: center;
	align-items: center;
	
	font-size:1.8em;
}
.item_head_t01{
	margin-right: 0.25em;
}
.item_head_t02{
	margin-top:0.5em;
	opacity: .5;
	font-size:2em;
}

/*テキスト部分*/
.item_text_wrapper{
	margin: 2em 5%;
}
.item_text_head01 {
	background: #7e8f98;
	border-radius: 100px;
	display: inline-block;
	margin: 0 auto;
	padding: 0.2em 3em;
	color:#fff;
	font-size: 1.25em;
}
.item_text_head02{
	font-size:1.5em;
	line-height: 1.5;
}

@media screen and (max-width: 768px){
	.item_text_head01 {
		font-size: 4.5vw;
	}
	.item_text_head02{
		font-size: 5vw;
	}
}

/*ポイント*/
.item_text_point{
	display: inline-block;
	
	margin-top:2em;
	padding: 20px 40px;
	
	background-color: #f3f4f4;
	border: solid 1px #7e8f98;
	border-radius: 20px;

}
@media screen and (max-width: 768px){
	.item_text_point{
		padding: 4vw 8vw;
	}
}
.item_text_point_head{
	font-size: 2em;
}
/* 親要素：ul を中央寄せにする */
.item_text_point_list{
    text-align: center;
	margin-top: -1.2em;
}
/* ul 要素：幅を内容に合わせ、中央に配置 */
.item_text_point_list ul {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start; /* liの幅を内容に合わせる */
    max-width: 100%;
    padding-left: 0; /* デフォルトパディングをリセット */
    list-style: none; /* デフォルトの「・」を消す */
}
/* li 要素：チェックマーク用の余白を作る */
.item_text_point_list li {
    position: relative;    /* チェックマークの配置基準 */
    padding-left: 1.5em;   /* チェックマーク分の余白を確保 */
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
	line-height: 1.5;
	margin-top:0.5em;
}
/* li::before：チェックマークを表示する */
.item_text_point_list li::before {
    content: "✓";          /* ここに好きなチェックマークを入れる */
    position: absolute;    /* 絶対配置 */
    left: 0;               /* 左端に固定 */
    top: 0;                /* 上端に固定 */
    color: #7e8f98;        /* お好みの色（サイトに合わせて調整してください） */
    font-weight: bold;     /* 太さの調整 */
}

/*スライダー*/
.item_img{
	width: 90%;
	margin: auto;
}

/*アイテムリスト*/
.item_itemlist{
	width:95%;
	margin: 3em auto;
}

.itemlist_wrapper{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素の寄せ*/
	justify-content: center;
	align-items: flex-start;
}
.itemlist_item{
	
}
@media screen and (min-width: 769px){/*PC*/
	.itemlist_item{
		width:30%;
		margin:1.5%;
	}
}
@media screen and (max-width: 768px){/*SP*/
	.itemlist_wrapper{
		justify-content: flex-start;
	}
	.itemlist_item{
		width:46%;
		margin:2%;
	}
}

.itemlist_text{
	line-height: 1.5;
	font-size: 0.8em;
}
.itemlist_text01{
	
}
.itemlist_text02{
	
}




























/*lineup*/
.item_lineup{
	margin: 0 auto 3em;
}
.lineup_title{
	margin-bottom: 3em;
}
.lineup_title_t02{
	font-size: 2.5em;
}

/*リボン帯*/
.lineup_title_t03 {
  display: inline-block;
  position: relative;
  height: 50px;/*リボンの高さ*/
  line-height: 50px;/*リボンの高さ*/
  text-align: center;
  padding: 0 40px;/*横の大きさ*/
  font-size: 1.5em;/*文字の大きさ*/
  background: #b2978b;/*塗りつぶし色*/
  color: #FFF;/*文字色*/
  box-sizing: border-box;
}
.lineup_title_t03:before, .lineup_title_t03:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}
.lineup_title_t03:before {
  top: 0;
  left: 0;
  border-width: 25px 0px 25px 15px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}
.lineup_title_t03:after {
  top: 0;
  right: 0;
  border-width: 25px 15px 25px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}



/*footer*/



.main_footer_logo{
	width: 50%;
	margin-left: auto;
	margin-right: auto;
}




.link_area{
	margin:1em auto;
	width: 90%;
}
.link_area_head{
	margin-bottom: 0.5em;
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.フェードインエフェクト
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.fadein-top {
    animation: fadeIn 2s ease 0s 1 both;
    -webkit-animation: fadeIn 2s ease 0s 1 both;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

.fadein-top2 {
    animation: fadeIn2 2s ease 0.2s 1 both;
    -webkit-animation: fadeIn2 2s ease 0.2s 1 both;
}
@keyframes fadeIn2 {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn2 {
    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 {
      
   }


/*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);
  }
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.Swiper：スワイパー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.swiper {

}


.swiper a:hover,a:hover img{
	opacity: 1;
}

.swiper-wrapper{
	height:auto;
}

.swiper-slide {
	
}

.swiper-pagination-bullet{
    background-color: #fff;
}
.swiper-pagination-bullet-active{
   background-color: #fff;
}

/*.swiper-container{
	position: relative;
}
.swiper-pagination {
	 bottom: -20px !important;
}*/



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.javascript 子要素を1つずつ時差で順番に表示
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*
トリガーは親要素に　display_in_order　のclassがついていること。
*/

/* 親クラスがついている場合の子要素の初期状態 */
.display_in_order > * {
  opacity: 0;
  /*transform: translateY(30px);*/
  transition: opacity 1s ease-out, transform 1s ease-out;
  will-change: opacity, transform;
}

/* 表示時の状態 */
.display_in_order > *.is-visible {
  opacity: 1;
  /*transform: translateY(0);*/
}
