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

/*googlefonts*/
@import url('https://fonts.googleapis.com/css2?family=Bellefair&display=swap');
/*
font-family: 'Bellefair', serif;
*/

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

/*全体の設定/フォントなど*/
.js-main{
	text-align: center;
	/*font-size:1.3rem;*/
	line-height: 2;
	letter-spacing: 0.04em;
	font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', serif;
	font-weight: 400;
	color:#000;
	font-size:14px;
}
@media screen and (max-width:768px) {
	.js-main{
		padding-top:0;
	}
}

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

/*コンテンツ部分の背景色*/
.main-background{
	background-color: #eff1f2;
}



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

/*ボタン*/
.btn01{
  width: 100%;
  padding: 0.8em 0 0.8em 0;
  font-size: 1em;
  position: relative;
  text-align: center;
  text-decoration: none;
  display: block;
  margin: 1em auto;
  color: #fff;
  background: #242424;
  line-height: 1;
  /*border-radius: 50px;*/
  transition: all .2s;
	
  border: 2px solid #242424;
}
.btn01:hover {
  background-color: #fff;
  border-color: #242424;
  color: #242424;
}

/*小さいver*/
.btn-small{
	font-size:0.8em;
	padding: 0.5em 3em;
	margin-top:1em;
}
@media screen and (max-width: 768px){
	.btn01{
		 /*padding: 1em 1em 0.5em;*/
	}
	.btn-small{
		 padding: 0.1em 2em;
	}
}


/*interval*/
.interval{
	/*background-color: #eff1f2;*/
	padding-top:100px;
}
.interval_text{
	font-family: futura-pt, sans-serif;
	font-weight: 400;
	font-style: normal;
}
.interval_line{
	margin:auto;
	margin-top:20px;
	height:10vw;
	width:1px;
	background-color: #000;
}
@media screen and (max-width: 768px){
	.interval_line{
		height:30vw;
	}
}

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

/*ビジュアル用背景画像の設定/iPhone対応版*/
body:before{
  content:"";
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height:100vh;
  background:url("../img/main_back_pc.jpg") center no-repeat;
  background-size:cover;
}
@media screen and (max-width: 768px){
	body:before{
		width:100%;
  		height:100vh;
		background:url("../img/main_back_sp.jpg") center no-repeat;
		background-size:cover;
	}
}
/*要素上下左右中央寄せ*/
.main-visual{
	display: flex;
  	justify-content: center;
  	align-items: center;
	min-height: 100vh;
	
	margin-top:-100px;
	
	text-align: center;
}

.main-title{
	padding-top: 10em;
}
@media screen and (max-width: 768px){
	.main-title{
		padding-top: 1.5em;
	}
	.main-title .title-text{
		font-size: 1.5em;
	}
}
.main-title .title-logo img{
	width:400px;
	margin:2em auto;
	/*filter: drop-shadow(1px 1px 1px #000);*/
}
@media screen and (max-width: 768px){   
	.main-title .title-logo img{
		width:60%;
	}
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.イントロダクション SPベース
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-intro{
	padding-top:100px;
	padding-bottom:100px;
	
	/*background-color: #eff1f2;*/
}
.main-intro img{
	width:100%;
}

.intro-text01{
	font-size:38px;
	letter-spacing: 0.1em;
	
	font-family: futura-pt, sans-serif;
	font-weight: 400;
	font-style: normal;
}
.intro-text02{
	margin-top:1em;
	font-size:14px;
}


/*PC*/
@media (min-width: 768px) {
	.intro-box{
		/*position*/
		position: relative;
		width:1000px;
		height: 746px;
	}
	.intro-box_in01{
		/*position*/
		position: absolute;
		top:0;
		right:0;
	
		width:580px;
	}
	.intro-box_in02{
		/*position*/
		position: absolute;
		bottom:0;
		left:200px;
	
		width:276px;
	}
	.intro-box_in03{
		/*position*/
		position: absolute;
		top:140px;
		left:0;
	
		width:375px;
		
		text-align: right;
	}
}


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

.main-item{
	padding-top:100px;
	padding-bottom:100px;
	
	/*background-color: #eff1f2;*/
}
.main-item img{
	width:100%;
}

.main-item_container{
	padding-top:200px;
	padding-bottom:100px;
}

/*画像部分 SPベース*/
.item-img01{
	width:90%;
	margin:auto;
}
.item-img02{
	
}
.item-img02-in1{
	width:70%;
	margin:2em auto 0;	
}
.item-img02-in2{
	width:85%;
	margin:2em auto 0;
}
/*PC*/
@media (min-width: 768px) {
	.item-img01{
		width:900px;
	}
	.item-img02{
		margin-top:100px;
		
		/*フレックスボックスの設定*/
		display: -webkit-flex;
    	display: flex;
    	-webkit-flex-wrap: wrap;
    	flex-wrap: wrap;
		/*フレックスボックスの要素を中央寄せ*/
		justify-content: center;
		align-items:center;
	}
	.item-img02-in1{
		padding:10px;
		width:50%;
	}
	.item-img02-in2{
		padding:10px;
		width:50%;
	}
}

/*情報部分 SPベース*/
.item-under{

}
.item-under_left{
	width:65%;
	margin:4em auto 2em;
}
.item-under_right{
	text-align: left;
	width:65%;
	margin:2em auto 2em;	
}
.item-t{
	/*FUTURA*/
	font-family: futura-pt, sans-serif;
	font-weight: 400;
	font-style: normal;
	
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: left;
	align-items:center;
	
	line-height: 1;
	margin-bottom:30px;
}
.item-t .item-t_nb{
	width:28%;
	font-size:3.5em;
}
.item-t .item-t_tx{
	width:72%;
	font-size:1.5em;
	padding-left:15px;
}
.item-text{
	margin-bottom:40px;	
}
/*PC*/
@media (min-width: 768px) {
	.item-under{
		margin:100px auto 0;
		width:80%;
	
		/*フレックスボックスの設定*/
		display: -webkit-flex;
    	display: flex;
    	-webkit-flex-wrap: wrap;
    	flex-wrap: wrap;
		/*フレックスボックスの要素を中央寄せ*/
		justify-content: center;
	}
	.item-under_left{
		width:50%;
		padding:20px;
	}
	.item-under_right{
		width:50%;
		padding:60px;
	
	}
	.item-t .item-t_nb{
		width:28%;
		font-size:82px;
	}
	.item-t .item-t_tx{
		width:72%;
		font-size:24px;
	}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
6.イメージ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-footerimage{
	width:100%;
	background-color: #d4d4d4;
}

.image-container img{
	display: block;
    height: 465px;
    object-fit: cover;
    width: 100%;
	object-position:top center;
}
/*SP*/
@media (max-width: 768px) {
	.image-container img{
		height: 50vw;
	}
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
7.LINEUP SPベース
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-lineup{
	padding-top:100px;
	padding-bottom:100px;
	width:100%;
	/*background-color: #eff1f2;*/ 
}
.main-lineup img{
	width:100%;
}
.lineup_item{
	margin: 0 auto 30px;
	width:60%;
	text-align: left;
}
/*PC*/
@media (min-width: 768px) {
	.lineup_container{
		/*フレックスボックスの設定*/
		display: -webkit-flex;
    	display: flex;
    	-webkit-flex-wrap: wrap;
    	flex-wrap: wrap;
		/*フレックスボックスの要素を中央寄せ*/
		justify-content: center;
		
		width:820px;
		margin:auto;
	}
	.lineup_item{
		width:33%;
		padding:25px;
	}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
8.footer
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-footer{
	/*background-color: #eff1f2;*/
	
	padding-top:3em;
	padding-bottom:5em;
}


.buy-btn{
	display: block;
	margin:auto;
	width:200px;
	font-size:18px;
}
.contents-footer_box{
	padding-bottom:4em;
}
.contents-footer_box .text01{
	display: inline-block;
	
	/*chrome対策極小フォントサイズ表示*/
	font-size:10px;
	transform: scale(0.8); 
	
	padding-bottom:1em;
	border-bottom:solid 1px #000;
}
.contents-footer_box .text02{
	margin-top:0.5em;
	font-size:1.9em;
	line-height:1.3;
	font-family: 'Bellefair',sans-serif;
}
.contents-footer_box .text03{
	display: inline-block;
	margin:auto;
	padding:0.4em 0.85em 0em;
	margin-top:1em;
	font-size:0.8em;
	border:solid 1px #000;
	
	
	/*font*/
	font-family: josefin-sans,sans-serif;
	font-weight: 700;
	font-style: normal;
}


@media (max-width: 768px) {
	
}




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



/*下から*/
.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.背景色が変わる
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*ふわっと変わる設定*/
.block-bg {
  transition: all .7s ease;
}
