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

/*google fonts*/

/*Adobe fonts*/
@import url("https://use.typekit.net/taq6evn.css");
/*
font-family: "kumlien-pro", serif;
font-weight: 500;
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;
}
/*メインエリアの横幅制限解除ここまで*/

@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 }

/* 文字サイズ調整 */
.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: #ffeeee;
}

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

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

/*PC980px、SP100%*/
.js-container{
	width:100%;
	max-width:600px;
	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:#1b1b1b;
    transition: 0.3s ease-in-out;
    /*font-weight: 500;*/
	border:solid 1px #1b1b1b;
}
.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: #1b1b1b;
  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: "kumlien-pro", serif;
	font-weight: 500;
	font-style: normal;
}

.bold{ /*太字*/
	font-weight: bold;
}


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

.main-visual{
	margin: 0 auto;
	width:100%;
	/*max-width: 600px;*/
}
.main-visual img{
	width:100%;
}
.main-visual video{
	width:100%;
}

.main_visual_video{
	width:100%;
	max-width:450px;
	margin: 0 auto 50px;
}

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

.main_title{
	margin:auto;
	width:70%;
	max-width: 300px;
}
.main_logo{
	margin: 1.5em auto 0;
	width:20%;
	max-width: 80px;
}

.main_text{
	margin-top:1.5em;
	line-height:1;
	display: inline-block;
	border-bottom: solid 1px #1b1b1b;
}

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

.item_wrapper img{
	width:100%;
}
.item_wrapper video{
	width:100%;
}


.itemset{
	width: 100%;
	height: 0;
	position: relative;
}
.itemset > div{
	position: absolute;
	height: auto;
}
.itemset img{
	width:100%;
}

.item_number{
	width: 26.432292%;
	/*margin:auto;*/
}
.item_name{
	margin-top:0.5em;
	font-size:1.4em;
	line-height: 1.2;
	letter-spacing: 0;
}
.item_name_jp{
	margin-top:0.5em;
	font-size:0.7em;
	line-height: 1.4;
	letter-spacing: 0;
}
.item_price{
	margin-top:0.5em;
	font-size:0.9em;
	letter-spacing: 0;
}
.item_textlink{
	margin-top:2em;
	line-height:1.2;
	display: inline-block;
	border-bottom: solid 1px #1b1b1b;
	font-size:1.2em;
}


/*item01~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.item01-01{
	padding-top: 130.208333%;/*横768*縦1000*/
}
.item01-01 .itemset_item01{
	width: 89.453125%;
	bottom: 0;
	right: 0;
}
.item01-01 .itemset_item02{
	width: 80%;
	top: 0;
	left: 2.86458%;
	text-align: left;
}
@media (max-width: 768px) {
	
}

.item01-02{
	margin-top:3em;
	width:78%;
}

.item01-03{
	margin-top:3em;
	width:100%;
}

.item01-04{
	margin-top:3em;
	padding-top: 105.989583%;/*横768*縦1000*/
}
.item01-04 .itemset_item01{
	width: 49.479167%;
	top: 0;
	right: 0;
}
.item01-04 .itemset_item02{
	width: 48.473282%;
	bottom: 0;
	left: 0;
}
@media (max-width: 768px) {
	
}

.item01-05{
	margin:3em auto 0;
	width:75%;
}


/*item02~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

#item02 .item_number{
	margin: auto;
}

.item02-02{
	margin:1em auto 0;
	width:90%;
}

.item02-03{
	margin:3em auto 0;
	width:68%;
}

.item02-04{
	margin-top:3em;
	padding-top: 92.708333%;/*横768*縦1000*/
}
.item02-04 .itemset_item01{
	width: 56.119792%;
	top: 0;
	left: 0;
}
.item02-04 .itemset_item02{
	width: 52.093333%;
	bottom: 0;
	right: 0;
}
@media (max-width: 768px) {
	
}

.item02-05{
	margin:3em auto 0;
	width:80%;
}

.item02-06{
	margin:3em auto 0 0;
	width:76%;
}




/*item03~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

.item03-01{
	padding-top: 216.145833%;/*横768*縦1660*/
}
.item03-01 .itemset_item01{
	width: 71%;
	bottom: 0;
	left: 2.86458%;
}
.item03-01 .itemset_item02{
	width: 77.213542%;
	top: 0;
	right: 0;
}
.item03-01 .itemset_item03{
	width: 80%;
	top: 2.650602%;
	left: 5.859375%;
	text-align: left;
}
@media (max-width: 768px) {
	
}

.item03-02{
	margin:3em auto 0;
	width:100%;
}

.item03-03{
	margin-top:3em;
	padding-top: 125.260417%;/*横768*縦1660*/
}
.item03-03 .itemset_item01{
	width: 51.3%;
	bottom: 0;
	left: 4.5%;
}
.item03-03 .itemset_item02{
	width: 51.8%;
	top: 0;
	right: 4.5%;
}
@media (max-width: 768px) {
	
}

.item03-04{
	margin:3em 0 0 auto;
	width:76%;
}

.item03-05{
	margin:3em auto 0;
	width:67.1%;
}




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

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

.main_footer_title{
	margin:auto;
	width:70%;
	max-width: 300px;
}
.main_footer_logo{
	margin: 3em auto 0;
	width:20%;
	max-width: 80px;
}

.main_footer_text{
	margin-top:3em;
	line-height:1;
	display: inline-block;
	border-bottom: solid 1px #1b1b1b;
	font-size:1.5em;
}

.footer-brandlogo{
	width:50%;
	max-width: 200px;
}
.footer-brandlogo_img{
	padding-bottom:1.5em;
	border-bottom: solid 1px #1b1b1b;
}
.footer-brandlogo_text{
	font-size:0.8em;
	margin-top:0.5em;
}

/*線*/
.contents-footer_line{
	width:1px;
	height:150px;
	background-color: #1b1b1b;
	margin:auto;
}




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



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



