@charset "utf-8";
/* CSS Document */

/*googlefonts*/

/*Adobefonts*/
@import url("https://use.typekit.net/aug3rrv.css");
/*
Raleway Light
font-family: raleway, sans-serif;
font-weight: 300;
font-style: normal;

Raleway SemiBold
font-family: "raleway", sans-serif;
font-weight: 600;
font-style: normal;

Trajan Pro 3　Light
font-family: trajan-pro-3, serif;
font-weight: 300;
font-style: normal;
*/

/*================================
目次
================================

■FSの設定打消し
■PC版とSP版での表示切替設定（見出しや改行などPCとSPの表示を分けたい場合に使用）

1.全体
2.共通フォーマット（ボタンデザインなど）
3.メインビジュアル
4.イントロダクション
5.アイテム
6.プロフィール
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;
}
/*メインエリアの横幅制限解除ここまで*/


.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.1em;
}

/*共通フッターのマージン調整*/
.footer-sp{
	margin-top: 0 !important;
}

/*自動生成商品エリアのマージンゼロ/余白が発生するため*/
.fs-c-productList{
	margin:0;
}

/*パンくずリスト調整*/
.fs-c-breadcrumb{
	padding-top:0;
	background-color: #191919;
	color:#5C5C5C;
}
.fs-c-breadcrumb a{
	color:#5C5C5C;
}
main, .fs-c-breadcrumb__list{
	color:#5C5C5C;
}

/*TOPへボタン消す*/
.footer__pagetop{
	display: none!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: left;
	font-size:12px;
	line-height: 2;
	letter-spacing: 0.1em;
	font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
	font-weight: 300;
	color:#000;
}
@media screen and (max-width:768px) {
	.js-main{
		padding-top:0;
	}
}

/*リンクの設定*/
.js-main a{
	text-decoration:none;
	color:#000;
}
.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;
	}
}

/*PC1200px、SP95%*/
.js-container{
	width:1200px;
	max-width:95%;
	margin:auto;
}

/*コンテンツ部分の背景色*/
.main-background{
	background-color: #fff;
}

/*フッターの色調整*/
#footer.second-page .footer-sp{
	background-color: #191919;
}
.second-page .footer__follow{
	background-color: #191919;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
2.共通フォーマット（ボタンデザインなど）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*ボタン*/
.button019 a {
    background: #fff;
    /*border-radius: 3px;*/
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 280px;
    padding: 10px 25px;
    color: #000;
    transition: 0.3s ease-in-out;
    /*font-weight: 500;*/
	border:solid 1.5px #000;
}
.button019 a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  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: #000;
  color: #FFF;
  opacity: 1;
}
.button019 a:hover:after {
  right: 1.4rem;
}


/*フォント*/
.font01{/*Trajan Pro 3　Light*/
	font-family: "Inter", sans-serif;
	font-weight: 700;
	font-style: normal;
}
.font02{/*Raleway Light*/
	font-family: "Inter", sans-serif;
	font-weight: 600;
	font-style: normal;
}
.font03{/*Raleway SemiBold*/
	font-family: "Inter", sans-serif;
	font-weight: 600;
	font-style: normal;
}

/*文字色*/
/*白*/
.font_color01{
	color:#fff;
}


/*共通マージン設定*/
.main-margin{
	margin-top:100px;
	margin-bottom:100px;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
3.メニュー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

#contents-menu{
	position: fixed;
	width:100%;
	text-align: center;
	z-index:100;
}

#contents-menu .menu-box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素の寄せ*/
	justify-content: center;
	align-items: center;
	
	margin-top:5px;
}

#contents-menu .menu-box div{
	margin:20px;
	font-size:1.25em;
	letter-spacing: 0.1em;
}
#contents-menu .menu-box div a{
	color:#d0d0d0;
	transition: color 0.4s ease-out;
}


@media screen and (max-width:768px) {
	#contents-menu .menu-box div{
		font-size:1em;
		margin:10px;
	}
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.メインビジュアル
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*背景はvegas2使用全面スライドショー*/

.contents-top{
	width:100%;
	height:100vh;
}

.contents-top_container{
	position: relative;

	width:100%;
	height:100vh;
}

/*ロゴタイトル*/
.contents-top_container .title{
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.contents-top_container .title img{
	width:325px;
}
@media screen and (max-width:768px) {
	.contents-top_container .title img{
		width:100%;
	}
}
@media screen and (min-width:769px) {
	.contents-top_container .title{
		position: absolute;
		top: 50%;
		left: 12.5%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
	}
}

/*右上テキスト*/
.contents-top_container .sub-text{
	position: absolute;
	top: 30px;
  	right: 20px;
	color:#fff;
}
@media screen and (max-width:768px) {
	.contents-top_container .sub-text{
		top: 94vh;
		font-size:0.8em;
	}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.コンテンツ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-wrapper{
	width:100%;
	background-color: #fff;
	padding-bottom:100px;
}



/*～～～～～イントロ～～～～～*/

.contents-intro{
	width:100%;
	
	padding-top:150px;
	padding-bottom:150px;

	background-size:cover;
	background-position: center;
}

.intro_text_box{
	width:300px;
	max-width:65%;
}
.intro_text01{
	
}
.intro_text01-01{
	font-size:36px;
	letter-spacing: 0.1em;
	white-space: nowrap;
}
.intro_text01-02{
	margin-top:-1.5em;
	font-size:12px;
	letter-spacing: 0.2em;
}
.intro_text02{
	margin-top:1.5em;
	font-size:1.3em;
	line-height:1.5;
	font-weight: 400;
	color:#FFFFFF;
}
.intro_text03{
	margin-top:1.2em;
	line-height:1.7;
	color:#FFFFFF;
}

/*文字が左*/
.text-left .intro_text_box{
	margin-left:10%;
}
/*文字が右*/
.text-right .intro_text_box{
	margin-left:auto;
	margin-right:10%;
}

/*SP*/
@media screen and (max-width:768px) {
	/*文字が左*/
	.text-left .intro_text_box{
		margin-left:5%;
	}
	/*文字が右*/
	.text-right .intro_text_box{
		margin-left:auto;
		margin-right:5%;
	}
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
6.コレクション（ラインナップ）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-lineup{
	
}

.contents_title{
	margin-bottom:0.5em;
	font-size:36px;
	letter-spacing: 0.1em;
}

.lineup-wrapper{
	
}


/*リンクエリア：フレックスボックス*/
.lineup-box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: flex-start;
}
.lineup-box > div {
	/*列数と間の余白の設定*/
	width: calc( ( 100% - 120px ) / 4 );
	margin-right: 40px;
}
/*右端のマージンをゼロ設定*/
.lineup-box > div:nth-child( 4n ),
.lineup-box > div:last-child{
	margin-right: 0;
}
.lineup-item{
	padding-bottom:80px;
}
.lineup-item img{
	width:100%;
}
@media (max-width: 768px) {
	.lineup-box{
		
	}
	.lineup-box > div {
		/*列数と間の余白の設定*/
		width: calc( ( 100% - 2vw ) / 2 );
		margin-right: 2vw;
	}
	.lineup-box > div:nth-child( 2n ),
	.lineup-box > div:last-child {
		margin-right: 0;
	}
	.lineup-item{
		padding-bottom:10vw;
	}
}



/*テキスト調整*/
.lineup-item{
	position: relative;
}
.lineup-item .item_icon{
	position: absolute;
	top: 0;
  	left: 0;
	
	padding:10px;
	background:rgba(0,0,0,0.3);
	color:#fff;
	
	letter-spacing: 0;
	font-size:0.8em;
}

.lineup_textbox{
	margin-top:1em;
}
.lineup_date{
	display: inline-block;
	border-bottom:solid 1px #000;
	line-height:1.6;
}
.lineup_name{
	margin-top:1em;
	line-height:1.4;
}
.lineup_price{
	margin-top:0.2em;
	font-size:1.2em;
}
.lineup_price .tax{
	font-size:0.5em;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
8.フッター
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-footer{
	text-align: center;
	margin:200px auto;
}

.contents-footer_logo{
	width:350px;
	max-width:70%;
	margin:auto;
}

.contents-footer_linkbox{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: center;
	
	margin-top:30px;
}
.contents-footer_linkitem{
	width:184px;
	padding:20px;
}
.contents-footer_linkitem img{
	width:100%;
}

@media (max-width: 768px) {
	.contents-footer_linkitem{
		width:45%;
		padding:5%;
	}
}

.contents-footer_js{
	margin-top:5em;
}
.contents-footer_js_text{
	line-height: 1.5;
	margin-bottom: 2em;
	letter-spacing: 0;
	font-weight:400;
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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(-100%);
      opacity: 0;
   }
 
/* スタート時のスタイル */
   .animation.delighter.started {
      transform:none;
	  opacity:1;
   }
 
/* エンド時のスタイル */
   .animation.delighter.started.ended {
      
   }


/*animation02-ふわっと出現*/
/* 基本のスタイル */
.animation02.delighter {
	  transition: all .8s ease-out;
      transform: translateX(0%);
      opacity: 0;
   }
 
/* スタート時のスタイル */
   .animation02.delighter.started {
      transform:none;
	  opacity:1;
   }
 
/* エンド時のスタイル */
   .animation02.delighter.started.ended {
      
   }

