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

/*googlefonts*/

/*Adobefonts*/
@import url("https://use.typekit.net/lrw4dqw.css");
/*
font-family: futura-pt, sans-serif;
font-weight: 600;
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;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■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: #FFFFFF;
}

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

/*リンクの設定*/
.js-main a{
	text-decoration:none;
	color:#524442;
}
.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:980px;
	margin:auto;
}
@media screen and (max-width: 768px){   
	.js-container{
		width:100%;
	}
}


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

/*ボタン*/
.btn01{
  width:100%;
  padding: 0.8em 0 0.8em 0;
  font-size: 1.25em;
  position: relative;
  text-align: center;
  text-decoration: none;
  display: block;
  margin: 1em auto;
  color: #fff;
  background-color: #524442;
  line-height: 1;
  /*border-radius: 50px;*/
  transition: all .2s;
	
  border: 1px solid #524442;
	
	font-family: futura-pt,sans-serif;
	font-weight: 600;
	font-style: normal;
}
.btn01:hover {
  background-color: transparent;
  border-color: #524442;
  color: #524442;
}


/*メインの余白の指定*/
.main-padding{
	padding-top:116px;
	padding-bottom:116px;
}
@media screen and (max-width: 768px){
	.main-padding{
		padding-top:5em;
		padding-bottom:5em;
	}
}



/*見出し*/
.main-title{
	font-size:1.5em;
	letter-spacing: 0.23em;
	line-height: 1.5;
	
	margin-bottom:30px;
	
	font-family: futura-pt,sans-serif;
	font-weight: 600;
	font-style: normal;
}
@media screen and (max-width: 768px){
	.main-title{
		font-size:1.2em;
		margin-bottom:0.5em;
	}
}
/*見出し 下線付き*/
.main-title_uborder{
	font-size:1.5em;
	letter-spacing: 0.23em;
	line-height: 1.5;
	
	margin-bottom:30px;
	
	font-family: futura-pt,sans-serif;
	font-weight: 600;
	font-style: normal;
	
	display: inline-block;
	padding-bottom:0.5em;
	border-bottom:2px solid #524442;
}
@media screen and (max-width: 768px){
	.main-title_uborder{
		font-size:1.2em;
		margin-bottom:0.5em;
	}
}



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

.main-visual{
	margin-bottom:0;
	width:100%;
}

.main-box{
	width:100%;
	height: 600px;
	position:relative;
}
@media screen and (max-width: 768px){
	.main-box{
		height: 61vw;
	}
}

.main-img{
	position: absolute;
	top: 0;
	
	width:100%;
	height: auto;
	
	line-height: 0;
	
	background-color: #ffffff;
}
.main-text{
	position: absolute;
	top: 50%;
 	left: 50%;
  	-ms-transform: translate(-50%,-50%);
  	-webkit-transform: translate(-50%,-50%);
  	transform: translate(-50%,-50%);

	color:#fff;
	letter-spacing: 0.2em;
}

.main-text01{
	font-size:30px;

	font-family: futura-pt, sans-serif;
	font-weight: 600;
	font-style: normal;
}
.main-text02{
	margin-top:0.5em;
	font-size:12px;
	font-weight: normal;
}
@media screen and (max-width: 768px){
	.main-text01{
		font-size:0.8em;
	}
	.main-text02{
		font-size:0.3em;
	}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.メニュー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


.menu-box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央*/
	justify-content: center;
}
.menu-box_item{
	width:20%;
	padding:30px;
}
@media screen and (max-width: 768px){
	.menu-box_item{
		width:30%;
		padding:3%;
	}
}

.menu-box_item img{
	width:100%;
	border-radius: 50%;
}

.menu-box_text{
	margin-top:0.75em;
	font-size:1.2em;
	line-height:1.2;
	
	font-family: futura-pt, sans-serif;
	font-weight: 600;
	font-style: normal;
}
.menu-box_item .off{
	color:#a79e90;
}
@media screen and (max-width: 768px){
	.menu-box_text{
		font-size:1em;
	}
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.メインコンテンツ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


/*見出し*/
.main-contents_head{
	width:100%;
	height:300px;
	
	display: flex;
	justify-content: center;
	align-items: center;
	
	/*画像指定はhtmlにstyleで直接記述*/
	background-repeat: no-repeat;
	background-size: cover;
}
@media screen and (max-width: 768px){
	.main-contents_head{
		height: 35vw;
	}
}

.contents-t{
	color:#fff;
}
.contents-t01{
	font-size:2em;
	
	font-family: futura-pt, sans-serif;
	font-weight: 600;
	font-style: normal;
}
.contents-t02{
	margin-top:0.5em;
	font-size:1em;
	font-weight: normal;
}
@media screen and (max-width: 768px){
	.contents-t01{
		font-size:1.2em;
	}
	.contents-t02{
		font-size:0.6em;
	}
	
}

/*説明部分*/
.contents-txt{
	margin-bottom:70px;
}
@media screen and (max-width: 768px){
	.contents-txt{
		padding:0 10%;
		text-align: left;
	}
}


/*ラインナップアイテム部分*/
/*タイトルは共通の部分に記述有*/

.contents-lineup_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

/*JS制御　エントリが2個以下であれば、中央ぞろえにする,3個以上は左揃え*/
.box_center{
	/*フレックスボックスの要素を中央揃え*/
	justify-content: center;
}
.box_left{
	/*フレックスボックスの要素を中央揃え*/
	justify-content: left;
}


.contents-lineup_box img{
	width:100%;
}
.contents-lineup_item{
	width:33.3%;
	padding:0 10px;
	margin-top:50px;
	
	font-family: futura-pt, sans-serif;
	font-weight: 600;
	font-style: normal;
	
	font-size:1.2em;
}
@media screen and (max-width: 768px){
	.contents-lineup_box{
		padding:0 6%;
	}
	.contents-lineup_item{
		width:50%;
		padding:0 2%;
		margin-top:2em;
	}
}


.lineup_item_txt{
	margin-top:0.5em;
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
6.and more
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.andmore{
	margin:70px 0 100px;

	color:#a79e90;
	font-size:1.5em;
	
	font-family: futura-pt, sans-serif;
	font-weight: 600;
	font-style: normal;
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
9.footer
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-footer{
	width:100%;
	margin:0;
	padding:50px;
	background-color: #fff;
	line-height: 0;
}
.contents-footer-logo{
	
}
.contents-footer-link{
	margin:auto;
	width:200px;
}
@media screen and (max-width: 768px){
	.contents-footer-logo{
		margin:auto;
		width:60%;
	}
}


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



