@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:100px!important;
}
@media screen and (max-width:768px) {
	.fs-l-pageMain{
		margin-top: 55px!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: #f9f5ef;
}

/*全体の設定/フォントなど*/
.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;
}
/*@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: #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:#222;
    transition: 0.3s ease-in-out;
    /*font-weight: 500;*/
	border:solid 1px #222;
}
.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: #222;
  color: #FFF;
  opacity: 1;
}
.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;
	}
}

/*見出し*/



/*テキスト色*/

/*フォント*/
/*フォント指定*/
.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{
	margin: 0 auto;
	width:100%;
}
@media screen and (max-width: 768px){
	.main-visual{
		overflow: hidden;
	}
}

.main-visual_inner{
	width: 100%;
}

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


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




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

.main-intro{
	/*position: relative;*/
	/*padding-bottom:5em;*/
}

.main-intro h1 img{
	width:65%;
	margin:auto;
}

.intro_text01{
	/*width: 90%;
	margin: auto;*/
}
.intro_text02{
	margin-top: 3em;
	line-height: 2.3;
}



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

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

.item_container{
	margin: 6em auto;
}



/*組み用~~~~~~~~~~~~~~~~*/
.item_wrapper{
	margin: 6em 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: 117.1875%; /* 横768 × 縦900 */
}
.set01 .item01{
	top: 11.11%;
	left: 18.88%;
	width: 66.4%;
	height: 74.55%;
	background-color: #f6ecd7;
}
.set01 .item02{
	top: 0%;
	left: 8.4635%;
	width: 66.145%;
}
.set01 .item03{
	bottom: 0%;
	right: 6.77%;
	width: 27.083%;
}



/*set02~~~~~~~~~~~~~~~~*/
.set02 .item_innner{
	padding-top: 326.8229%; /* 横768 × 縦2510 */
}
.set02 .item01{
	bottom: 19.9203%;
	left: 13.0208%;
	width: 57.161458%;
	height: 28.6454%;
	background-color: #c1dbd4;
}
.set02 .item02{
	top: 14.6613%;
	left: 0%;
	width: 100%;
}
.set02 .item03{
	top: 0%;
	right: 12.2395%;
	width: 76.171875%;
}
.set02 .item04{
	top: 32.9482%;
	right: 9.0196%;
	width: 28.2552%;
}
.set02 .item05{
	bottom: 27.211155%;
	left: 0%;
	width: 57.682291%;
}
.set02 .item06{
	bottom: 0%;
	right: 0%;
	width: 74.21875%;
}


/*set03~~~~~~~~~~~~~~~~*/
.set03 .item_innner{
	padding-top: 309.89583333%; /* 横768 × 縦2385 */
}
.set03 .item01{
	top: 0%;
	left: 0%;
	width: 100%;
	height: 56.897274%;
	background-color: #243f3a;
}
.set03 .item02{
	top: 0%;
	left: 0%;
	width: 100%;
}
.set03 .item03{
	top: 40.1257%;
	left: 5.98958%;
	width: 51.953125%;
}
.set03 .item04{
	bottom: 0%;
	left: 11.1979%;
	width: 78.125%;
}
.set03 .item05{
	bottom: 28.218%;
	right: 5.98958%;
	width: 34.114583%;
}


/*set04~~~~~~~~~~~~~~~~*/
.set04 .item_innner{
	padding-top: 231.11979%; /* 横768 × 縦1775 */
}
.set04 .item01{
	top: 11.8309%;
	left: 0%;
	width: 100%;
	height: 24.7887%;
	background-color: #c29100;
}
.set04 .item02{
	bottom: 0%;
	left: 0%;
	width: 100%;
}
.set04 .item03{
	top: 0%;
	left: 8.854166%;
	width: 82.2916%;
}


/*set05~~~~~~~~~~~~~~~~*/
.set05 .item_innner{
	padding-top: 111.97916%; /* 横768 × 縦860 */
}
.set05 .item01{
	top: 31.16279%;
	left: 6.901%;
	width: 63.151%;
	height: 34.534883%;
	background-color: #c29100;
}
.set05 .item02{
	top: 0%;
	right: 6.11979%;
	width: 78.90625%;
}
.set05 .item03{
	bottom: 0%;
	left: 0%;
	width: 88.02083%;
}


/*set06~~~~~~~~~~~~~~~~*/
.set06 .item_innner{
	padding-top: 89.84375%; /* 横768 × 縦690 */
}
.set06 .item01{
	bottom: 0%;
	left: 18.75%;
	width: 62.5%;
	height: 42.7536231%;
	background-color: #c29100;
}
.set06 .item02{
	top: 0%;
	right: 22.13545%;
	width: 55.7291%;
}
.set06 .item03{
	top: 7.2463%;
	right: 3.5156%;
	width: 40.8854%;
}




/*リンク画像ズームeffect*/

/* 1. .main-item 内の aタグすべてを対象にする */
.main-item a {
  display: inline-block; /* 必須：aタグを画像サイズに合わせる */
  overflow: hidden;      /* 必須：はみ出しを隠す（マスク） */
  line-height: 0;        /* 隙間対策 */
  vertical-align: top;
}

/* 2. aタグの中にある imgすべてにアニメーション設定をする */
.main-item a img {
  width: 100%;
  height: auto;
  display: block;
  /* transitionがここにあるか確認してください */
  transition: transform 0.4s ease-out; 
}

/* 3. aタグにマウスが乗った時、その中のimgをズームする */
/* a:hover img と書くことで、すべての画像が対象になります */
.main-item a:hover img {
  transform: scale(1.05) !important; /* 他の設定に負けないよう一旦!important */
}




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

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

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

.bottomtext_head{
	margin-bottom: 25px;
	font-size: 1.5em;
	line-height: 1.25;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 768px){
	.bottomtext_head{
		font-size: 6.8vw;
	}
}

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

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


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
6.Lineup
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.item_lineup{
	
}







/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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.フェードインエフェクト
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

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

.fadein-top3 {
    animation: fadeIn3 2s ease 0.9s 1 both;
    -webkit-animation: fadeIn3 2s ease 0.9s 1 both;
}
@keyframes fadeIn3 {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn3 {
    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.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);
  }
}



