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

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

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

■FSの設定打消し
■PC版とSP版での表示切替設定（見出しや改行などPCとSPの表示を分けたい場合に使用）

1.全体
2.共通フォーマット（ボタンデザインなど）
3.メインビジュアル
4.イントロダクション
5.ムービー
6.アイテム
7.ピックアップ
8.フッター

ex:パンくずリスト
ex.フェードインエフェクト
ex.フェードで画像切り替え

*/

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■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.4em;
}*/

/* パンくずリスト位置調整 */
/*.fs-c-breadcrumb{
	display: none;
}*/

/*共通フッターのマージン調整*/
.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: #fff;
}

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

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

	.js-main video{
	width:50%;
	height: auto;
	}

}

/*PC900px、SP100%*/
.js-container{
	width:980px;
	margin:auto;
}

.js-main video{
	max-width: 350px;
    margin: 0 auto;
	}

@media screen and (max-width: 768px){
	.js-container{
		width:100%;
	}
}



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

/*ボタン*/
.btn01 {
  display: inline-block;
  padding: 0.5em 1em;
  color: #fff;
  /*border-radius: 25px;*/
  background-color: #000;
  border: none;
  cursor: pointer;
  margin: 0.8em 5px;
  font-family: sans-serif;
}
.btn02 {
  display: inline-block;
  padding: 0.5em 1em;
  color: #685252;
  /*border-radius: 25px;*/
  background-color: #fff;
  border: none;
  cursor: pointer;
  margin: 0.8em 5px;
}
/*ボタン茶色*/
.btn_brown{
	background-color: #3f2f2f;
}
/*小さいver*/
.btn-small{
	font-size:0.8em;
	padding: 0.5em 3em;
	margin-top:1em;
}
@media screen and (max-width: 768px){
	.btn01{
		 padding: 0.1em 3em;
	}
	.btn-small{
		 padding: 0.1em 2em;
	}
}



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

.main-visual{
	margin-bottom:0;
	width:100%;
	background-color: #f3f2f0;
	line-height: 0;
}
h1{
	margin:0;
	line-height: 0;
}

.main-text{
	margin:2em;
	font-size:0.7em;
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.イントロダクション
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-intro{
	margin-top:0;
	margin-bottom:0;
	width:100%;
	background-color: #d9b7b9;
	padding-top:0em;
	padding-bottom:3em;
}
/*名前*/
.name_box{
	font-family: "Futura" , sans-serif;
	color:#000;
	letter-spacing: 0.2em;
}
.name-t{
	font-family: serif;
	font-size:1em;
	padding-top:3em;
	margin-bottom:-1em;
	color: #fff;
}
.name-m{
	font-family: serif;
	font-size:3em;
	color: #fff;
}
.name-m2{
	font-size:6em;
	transform: scale(0.2, 1);
	color: #fff;
}
/*プロフィール*/
.profile_box{
	margin:1em auto;
	padding:10%;
	width:90%;
	background-color: #fff;

	font-size:0.8em;
}
.profile-right{
	text-align: center;
}

.profile-img img{
	width:50%;
}
.profile-icon{
	margin:1em auto 2.5em;
}
.profile-icon img{
	width:30px;
}
/*プロフィールPC*/
@media (min-width: 768px) {
	.profile_box{
		/*フレックスボックスの設定*/
		display: -webkit-flex;
    	display: flex;
    	-webkit-flex-wrap: wrap;
    	flex-wrap: wrap;
		/*フレックスボックスの要素を中央寄せ*/
		justify-content: center;

		width:800px;
		padding:3em;
		font-size:1em;
	}
	.profile-left{
		width:30%;
	}
	.profile-right{
		width:70%;
	}
	.profile-icon{
		margin:1em auto 0;
	}
}

/*トップテキスト*/
.toptext_box{
	padding-top:3em;
	padding-bottom:2em;
	color:#000;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.ムービー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.movie-top{
	margin:20em auto 30em;
}
.movie-top video{
	width:50%;
	position: relative;
}

@media (max-width: 768px) {
	.movie-top{
		margin:5em auto 10em;
	}
	.movie-top video{
		width:70%;
	}
}


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

.item-box{
	margin:15em auto 10em;
}

.item-box　img{
	width:90%;
}


.itemlink{
	font-size:1.5em;
	}
.itemlink2{
		font-size:2.2em;
		}

.movtext{
	font-family: "amiri", sans-serif;
	position: absolute;
	color: #d4aaac;
	font-size:5em;
	left:50%;
	padding:0em;
  margin:-1.5em;
	line-height: 1;
	text-align: right;
}

@media (max-width: 768px) {
	.movtext{
		font-size:4em;
		margin:-1.5em;
		left:45%;
	}
}




/*アイテムコメント*/
.item-comment{
	margin:5em auto;
	padding:5em;
	background-color: #f5efe1;
	width:700px;
	color:#000;
}
.com-t{
	font-family: "Futura", sans-serif;
	font-size:1.2em;
	margin-bottom:2em;
}
.com-in{
	text-align: left;
}
@media (max-width: 768px) {
	.item-comment{
		width:80%;
		font-size:0.8em;
		padding:3em;
	}
}



/*ラインナップ*/
.item-box_lineup{
	padding:50px;
}
.lineup_area{
	padding-top:0px;
}

/*見出し*/
.lineup_title {
  position: relative;
  padding: 0 65px;
  text-align: center;
}
.lineup_title:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background: #000;
}
.lineup_title span {
  position: relative;
  padding: 0 1em;
  background: #fff;
  color: #000;
  font-family: "Futura", sans-serif;
  font-size:1.2em;
}

@media (max-width: 768px) {
	.item-box_lineup{
		padding:50px 0px ;
	}
}

/*ラインナップフレックスボックス*/
.lineup-flexbox{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央寄せ*/
	justify-content: center;
}
.lineup-item{
	padding:1em;
	width:20%;
}
@media (max-width: 768px) {
	.lineup-item{
		padding:2%;
		width:33%;
	}
}

.lineup-item img{
	width:100%;
}
.lineup-item .name{
	font-family: sans-serif;
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
7.ピックアップ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.pickup-box{
	margin:2em auto;
	padding-bottom:5em;
	width:500px;
}
.pickup_img img{
	width:100%;
}
.pickup-t{
	padding: 2em 0.5em 0em;
	display: inline-block;
	color: #000;
	font-family: "Futura", sans-serif;
	border-bottom:1px solid #000;
}
.pickup-in{
	padding:2em 3em 1em;
	text-align: left;
}

@media (max-width: 768px) {
	.pickup-box{
		width:100%;
	}
}





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

.contents-footer{

}

.contents-footer_img{
	padding:5em 3em 1em 3em;
}
.contents-footer_img img{
	width:300px;
}

@media (max-width: 768px) {
	.contents-footer_img{
		padding:5em 0 2em;
	}
	.contents-footer_img img{
		width:60%;
	}
}







/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
9.youtube
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/






/*----------------------------------------
 ex:パンくずリスト　
----------------------------------------*/
.breadcrumb_box {
	width:100%;
	/*margin-top: 60px;*/
	font-size: 0.5em;
	text-align: center;
	/*border-top:black 1px dotted;*/
	background-color: white;
}
.breadcrumb_box .container{
	padding-top:15px;
	padding-bottom:15px;
}

@media (max-width: 768px) {
	.breadcrumb_box{
		margin-top: 0px;
		font-size: 0.5em;
	}
	.breadcrumb_box .container{
		padding-top:15px;
		padding-bottom:15px;
	}
}

.breadcrumb {
	padding-left:0;
	margin-left:0;
}

.breadcrumb li{
	display:inline;/*横に並ぶように*/
	list-style: none;
	/*font-weight: bold;*//*太字*/
}

.breadcrumb li:after {/* >を表示*/
	content: '>';
	padding: 0 3px;
	color: #555;
}

.breadcrumb li:last-child:after {
	content: '';
}

.breadcrumb li a {
	text-decoration: none;
	color: #000000;/*色*/
}

.breadcrumb li a:hover {
	text-decoration: underline;
}



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


.scroll-space{
  box-sizing: border-box;
  padding-top: 300px;
  height: 1600px;
  color: #fff;
  overflow: hidden;
}
.fadein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 4s;
  &.fadein-left{
      transform: translate(-30px,0);
  }
  &.fadein-right{
      transform: translate(30px,0);
  }
  &.fadein-up{
      transform: translate(0,-30px);
  }
  &.fadein-bottom{
      transform: translate(0,30px);
  }
  &.scrollin{
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
}


/*下から*/
/*.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);
}*/


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