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

/*google fonts*/

/*Adobe fonts*/
@import url("https://use.typekit.net/pnt7ftf.css");
/*Amiri Regular
font-family: "amiri", 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マージン制御*/
.fs-l-pageMain{
	margin-top:0!important;
}
@media screen and (max-width:768px) {
	.fs-l-pageMain{
		margin-top: 0!important;
	}
}

.fs-l-main{
	max-width: 100%;
	padding:0;
	margin:0;
}
/*メインエリアの横幅制限解除ここまで*/

@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 { display: none }*/

/*「商品グループエリア」2列表示*/
.fs-c-productList__list{
	grid-template-columns: calc(50% - 0px) calc(50% - 0px);
}

/*「商品グループエリア」ソート非表示*/
.fs-c-productList__controller{
	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: #faefef;
	background: url('../img/back_pc.jpg') center/cover no-repeat fixed;
}

/*全体の設定/フォントなど*/
.js-main{
	text-align: center;
	font-size: 14px;
	line-height: 1.6;
	letter-spacing: 0.04em;
	font-family: 'Avenir','Helvetica Neue','Helvetica','Arial', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
	font-weight: 400;
	color:#272727;
	background-color: #faefef;
}
/*@media screen and (max-width:768px) {
	.js-main{
		padding-top:50px;
	}
}*/

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



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

/*ボタン*/
.button019 a {
    background: #b0885c;
    /*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 #b0885c;
}
.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: #b0885c;
  color: #FFF;
  opacity: .7;
}
.button019 a:hover:after {
  right: 1.4rem;
}


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

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

 .main-padding{
	padding: 100px auto;
}
@media screen and (max-width: 768px){
	.main-padding{
		padding: 6em auto;
	}
}

/*見出し*/



/*テキスト色*/
.font-color01{/*ゴールド*/
	color: #b0885c;
}


/*背景色*/
.bg_color01{ /*薄いピンク*/
	background-color: #faefef;
}
.bg_color02{ /*ピンク*/
	background-color: #fde3e3;
}


/*フォント*/
/*フォント指定*/
.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{ /*見出し用*/
	font-family: "amiri", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.bold{ /*太字*/
	font-weight: bold;
}


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

.main-visual_inner{
  position: relative;
}

.main-visual_01{
  position: relative;
  z-index: 0;
}

.main-visual_02,
.main-visual_03,
.main-visual_04,
.main-visual_05,
.main-visual_06{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.main-visual_inner img{
  display: block;
  width: 100%;
  height: auto;
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.イントロ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


.main-intro_inner{
  position: relative;
}

.main-intro_01{
  position: relative;
  z-index: 2;
}

.main-intro_02{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.main-intro_inner img{
  display: block;
  width: 100%;
  height: auto;
}



/*interval*/
.main-interval_text img{
	width: 35%;	
}

.main-interval_inner{
  position: relative;
  width: 100%;
  padding-top: 92.45%;   /* 710 ÷ 768 × 100 */
  overflow: hidden;
}

.main-interval_01{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.main-interval_02{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 61.2%;          /* 470 ÷ 768 × 100 */
  z-index: 2;
}

.main-interval_inner img{
  display: block;
  width: 100%;
  height: auto;
}





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

.main-item{
	/*background-color: #fff;*/
}
.main-item img{
	width:100%;
}

.item_container{
	margin: 6em auto;
}



/*組み用~~~~~~~~~~~~~~~~*/
.item_wrapper{
	margin: 4em auto;
	line-height: 0;
}
.item_wrapper img{
	width:100%;
	line-height: 0;
}
.item_set{
	width: 100%;
	height: 0;
	position: relative;
}
.item_set > div{
	position: absolute;
	height: auto;
}
.item_set img{
	width:100%;
}


/*set01~~~~~~~~~~~~~~~~*/
.set01 .item_innner{
	padding-top: 194.40%; /* 横768 × 縦1493 */
}
.set01 .item01{
	top: 8.04%;
	left: 0;
	width: 100%;
}
.set01 .item02{
	bottom: 0;
	left: 20%;
	width: 60.29%;
}
.set01 .item03{
	top: 0%;
	left: 2.08%;
	width: 25.91%;
}
.set01 .item04{
	top: 20.83%;
	right:7.94%;
	width: 9.90%;
}
.set01 .item05{
	bottom: 41.53%;
	left: 5.21%;
	width: 19.27%;
}
.set01 .item06{
	bottom: 22.57%;
	right: 12.63%;
	width: 10.29%;
}



/*set02~~~~~~~~~~~~~~~~*/
.set02{
	width: 71.74%;
	margin-left: 3.91%; 
}

/*set03~~~~~~~~~~~~~~~~*/
.set03{
	width: 61.20%;
	margin-right: 6.90%; 
}


/*set04~~~~~~~~~~~~~~~~*/
.set04 .item_innner{
	padding-top: 132.81%;; /* 横768 × 縦1020 */
}
.set04 .item01{
	top: 6.18%;
	left: 0;
	width: 100%;
}
.set04 .item02{
	top: 0;
	left: 0;
	width: 24.74%;
}
.set04 .item03{
	top: 0;
	right: 0;
	width: 29.69%;
}
.set04 .item04{
	bottom: 0;
	left:13.02%;
	width: 8.85%;
}
.set04 .item05{
	bottom: 15.00%;
	right: 0;
	width: 26.69%;
}

.set04 .item06{
	margin: 2em auto;
	width: 20%;
}


/*set05~~~~~~~~~~~~~~~~*/
.set05 .item_innner{
	padding-top: 76.82%; /* 横768 × 縦590 */
}
.set05 .item01{
	bottom: 0;
	left: 6.77%;
	width: 86.85%;
}
.set05 .item02{
	top: 0;
	left: 4.17%;
	width: 12.11%;
}


/*set06~~~~~~~~~~~~~~~~*/
.set06 .item_innner{
	padding-top: 87.24%; /* 横768 × 縦670 */
}
.set06 .item01{
	top: 0;
	left: 0;
	width: 95.31%;
}
.set06 .item02{
	bottom: 0;
	right: 3%;
	width: 22.27%;
}


/*set07~~~~~~~~~~~~~~~~*/
.set07 .item_innner{
	padding-top: 216.15%; /* 横768 × 縦1660 */
}
.set07 .item01{
	top: 0;
	right: 0;
	width: 90.89%;
}
.set07 .item02{
	top: 58.92%;
	left: 0;
	width: 96.09%;
}
.set07 .item03{
	bottom: 4.34%;
	left: 17.19%;
	width: 30.73%;
}
.set07 .item04{
	top: 47.23%;
	left: 3.13%;
	width: 17.58%;
}
.set07 .item05{
	top: 47.71%;
	right: 0;
	width: 23.31%;
}
.set07 .item06{
	bottom: 0;
	right: 0;
	width: 46.61%;
}


/*set09~~~~~~~~~~~~~~~~*/
.set09 .item_innner{
	padding-top: 126.56%; /* 横768 × 縦972 */
}
.set09 .item01{
	top: 9.67%;
	left: 10.42%;
	width: 79.43%;
}
.set09 .item02{
	top: 0;
	left: 0;
	width: 35.55%;
}
.set09 .item03{
	bottom: 0;
	right: 0;
	width: 27.73%;
}

/*set10~~~~~~~~~~~~~~~~*/
.set10{
	width: 100%;
}

/*set11~~~~~~~~~~~~~~~~*/
.set11{
	width: 84.11%;
	margin-left: 5.86%; 
}

/*set12~~~~~~~~~~~~~~~~*/
.set12{
	width: 98.70%;
	margin-right: 0; 
}

/*set13~~~~~~~~~~~~~~~~*/
.set13{
	width: 100%;
}


/*set14~~~~~~~~~~~~~~~~*/
.set14 .item_innner{
	padding-top: 114.32%; /* 横768 × 縦878 */
}
.set14 .item01{
	top: 6.38%;
	left: 9.90%;
	width: 80.08%;
}
.set14 .item02{
	top: 0;
	right: 1.30%;
	width: 28.78%;
}
.set14 .item03{
	bottom: 2.28%;
	left: 13.02%;
	width: 13.02%;
}

/*set15~~~~~~~~~~~~~~~~*/
.set15{
	width: 85.42%;
	margin-left: 7.29%; 
}


/*set16~~~~~~~~~~~~~~~~*/
.set16 .item_innner{
	padding-top: 139.84%; /* 横768 × 縦1074 */
}
.set16 .item01,
.set16 .item02,
.set16 .item03,
.set16 .item04
{
	top: 0;
	left: 0;
	width: 100%;
}

/*set17~~~~~~~~~~~~~~~~*/
.set17{
	width: 30.47%;
	margin-left: auto; 
	margin-right: auto; 
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.LINEUP
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.lineup_t{
	font-size: 1.1em;
	margin-bottom: 1.5em;
}

.lineup_box {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px 3%;
	padding: 0 7%;
	box-sizing: border-box;
}

.lineup_item {
	width: 100%;
}

.lineup_item a {
	display: block;
	text-decoration: none;
}
.lineup_item a:hover {
	opacity: .8;
	/*text-decoration: underline;*/
}

.lineup_item img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 5%;
}

.lineup_text {
	margin-top: 12px;
	text-align: left;
	line-height: 1.1;
}
.lineup_text02{
	margin-top:0.5em;
}














/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.下部テキスト
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-bottomtext{
	background-color: #d99090;
	color: #f9f5ef;
	text-align: left;
	padding: 80px 25px;
}

.main-bottomtext a{
	color: #f9f5ef;
	text-decoration: underline;
}

.bottomtext_head{
	margin-bottom: 25px;
	line-height: 1.25;
	letter-spacing: 0.05em;
}
.bottomtext_head01{
	font-size: 2.5em;
}
.bottomtext_head02{
	font-size: 1em;
}
@media screen and (max-width: 768px){
	.bottomtext_head{
		
	}
	.bottomtext_head01{
		font-size: 10vw;
	}
	.bottomtext_head02{
		font-size: 4vw;
	}
}



.bottomtext_line{
	background-color: #f9f5ef;
	width: 20%;
	height:4px;
}

.bottomtext_contents{
	margin-top: 25px;
	font-size: 0.9em;
	line-height: 2;
}







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

.contents-footer{
	
}

.contents-footer img{
	width:100%;
}

.vertical_line{
	width: 1px;
	height: 60px;
	margin: 4em auto;
	background-color: #454a5c;
}

.footer_titlelogo{
	width:50%;
	margin: 3em auto;
}

.footer_brandlogo{
	width:50%;
	margin: 3em auto;
}

@media screen and (max-width: 768px){
	.footer_title{
		/*margin: 4vw;*/
	}
}







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

/*TOP*/
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fadein-top01 { animation: fadeIn 2s ease-out 0s both; }
.fadein-top02 { animation: fadeIn 2s ease-out .7s both; }
.fadein-top03 { animation: fadeIn 2s ease-out 1s both; }
.fadein-top04 { animation: fadeIn 2s ease-out 1.25s both; }







/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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.25s linear;
  -webkit-transition: -webkit-transform 0.25s linear;
  -o-transition: -o-transform 0.25s linear;
  -ms-transition: -ms-transform 0.25s linear;
  transition: transform 0.25s linear;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/* スタート時のスタイル */
.animation_blur.delighter.started {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
  transition: .1s;
}
/* エンド時のスタイル */
.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);
  }
}


/* animation_order：その場でふわっと順番に出現 */
.animation_order-01.delighter,
.animation_order-02.delighter,
.animation_order-03.delighter,
.animation_order-04.delighter {
  opacity: 0;
  transition: opacity 1s ease-out;
}
.animation_order-01.delighter.started {
  opacity: 1;
  transition-delay: 0s;
}
.animation_order-02.delighter.started {
  opacity: 1;
  transition-delay: .5s;
}
.animation_order-03.delighter.started {
  opacity: 1;
  transition-delay: 1s;
}
.animation_order-04.delighter.started {
  opacity: 1;
  transition-delay: 1.5s;
}
