@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: #fff;
}

/*全体の設定/フォントなど*/
.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:#454a5c;
    transition: 0.3s ease-in-out;
    /*font-weight: 500;*/
	border:solid 1px #454a5c;
}
.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: #454a5c;
  color: #FFF;
  opacity: 0.3;
}
.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%;
	height: 0;
	position: relative;
	padding-top: 130.2%;/*横768*縦1000*/
}
.main-visual_inner > div{
	position: absolute;
	height: auto;
}
.main-visual_inner img{
	width:100%;
}
.main-visual_01{
	width:100%;
	top:0;
	left:0;
}
.main-visual_02{
	width:78.125%;
	top:5.8%;
	left: 12.76%;
}

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




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

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


.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: 10em 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%;
}


/*text~~~~~~~~~~~~~~~~*/

.item_text{
	margin-top: 0.5em;
	font-size: 1em;
	text-decoration: underline;
	line-height: 2;
}
.text_left{
	text-align: left;
	margin-left: 1em;
}
.text_center{
	text-align: center;
}
.text_right{
	text-align: right;
	margin-right: 1em;
}



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

/*1カラム 余白有~~~~~~~~~~~~~~~~*/
/*横幅85%*/
.item_set_1clm_w85{
	width: 85%;
	margin:auto;
}
/*横幅90%*/
.item_set_1clm_w90{
	width: 90%;
	margin:auto;
}




/*set02~~~~~~~~~~~~~~~~*/
.set02 .item_innner{
	padding-top: 83.854%; /* 横768 × 縦644 */
}
.set02 .item01{
	bottom: 0;
	left: 30.72%;
	width: 39.32%;
	height: 86.45%;
	background-color: #e8edee;
}
.set02 .item02{
	top: 23.29%;
	right: 4.42%;
	width: 47.78%;
}
.set02 .item03{
	top: 0%;
	left: 4.42%;
	width: 47.91%;
}


/*set03~~~~~~~~~~~~~~~~*/
.set03 .item_innner{
	padding-top: 149.47%; /* 横768 × 縦1148 */
}
.set03 .item01{
	top:0%;
	left: 3.38%;
	width: 45.963%;
}
.set03 .item02{
	top: 12.891%;
	right: 3.38%;
	width: 45.963%;
}
.set03 .item03{
	bottom: 12.891%;
	left: 3.38%;
	width: 45.963%;
}
.set03 .item04{
	bottom: 0%;
	right: 3.38%;
	width: 45.963%;
}
.set03 .item05{
	top: 28.397%;
	left: 45.573%;
	width: 8.854%;
}

/*set04~~~~~~~~~~~~~~~~*/
.set04 .item_innner{
	padding-top: 117.1875%; /* 横768 × 縦900 */
}
.set04 .item01{
	top:0;
	left: 0;
	width: 100%;
}
.set04 .item02{
	top: -3px;
	right: 7.7552%;
	width: 8.59375%;
}

/*set05~~~~~~~~~~~~~~~~*/
.set05 .item_innner{
	padding-top: 194.791667%; /* 横768 × 縦1496 */
}
.set05 .item01{
	top:0;
	right: 0;
	width: 76.1718%;
}
.set05 .item02{
	top: 35.6951%;
	left: 0;
	width: 76.1718%;
}
.set05 .item03{
	bottom: 0;
	right: 0;
	width: 75.9114583%;
}
.set05 .item04{
	top: 7.754%;
	left: 8.833333%;
	width: 8.59375%;
}

/*set06~~~~~~~~~~~~~~~~*/
.set06 .item_innner{
	padding-top: 117.1875%; /* 横768 × 縦900 */
}
.set06 .item01{
	top:0;
	left: 0;
	width: 100%;
}
.set06 .item02{
	top: -3px;
	left: 7.7552%;
	width: 8.59375%;
}


/*set07~~~~~~~~~~~~~~~~*/
.set07 .item_innner{
	padding-top: 168.489583%; /* 横768 × 縦1294 */
}
.set07 .item01{
	top:0;
	left: 7%;
	width: 42.3177%;
}
.set07 .item02{
	top: 0;
	right: 7%;
	width: 42.3177%;
}
.set07 .item03{
	bottom: 0;
	left: 7%;
	width: 86.0677083%;
}














/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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_brandlogo{
	width:20%;
	margin: 3em auto;
}

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



/*固定リンクボタン*/
.fixed_link{
	position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
	
	width:20%;
	max-width:100px;
}
.fixed_link img{
	width:100%;
}




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



