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

/*@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap');*/
/* Noto Serif Japanese
font-family: 'Noto Serif JP', serif;
*/
/* 明朝指定
font-family: 'Noto Serif JP','ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', serif;
*/

/*Adobefonts*/


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

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

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

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.1em;
}

/*共通フッターのマージン調整*/
.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:1.3rem;*/
	line-height: 1.5;
	letter-spacing: 0.07em;
	font-family:'Noto Sans JP','Helvetica Neue', Arial,'Hiragino Kaku Gothic ProN','Hiragino Sans', Meiryo, sans-serif;
	font-weight: 400;
}
@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;
	}
}

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


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

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

/*小さいver*/
.btn-small{
	width: 250px;
	font-size:0.8em;
	padding: 1em 2em;
	margin: 1em auto;
	background: #c98e82;
	color: #fff;
}
@media screen and (max-width: 768px){
	.btn01{
		 padding: 1em 3em;
	}
	.btn-small{
		font-size:0.7em;
	}
}

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

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

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




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.イントロダクションとメニュー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-intro{
	margin:40px auto;
	font-size:0.8em;
}


/*メニュー*/
.main-menu{
	margin: 0 auto 80px;
	width:100%;
	
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央寄せ*/
	justify-content: center;
	align-items: center;
}
.main-menu_item{
	width:45%;
	padding:10px;
}
@media screen and (max-width: 768px){   
	.main-menu_item{
		width:90%;
	}
}

/*ボタン*/
.button03 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0.5em 2em;
  width: 100%;
  color: #000;
  /*font-size: 18px;*/
  /*font-weight: 700;*/
  border: 1px solid #222;
 /*border-bottom: 1px solid #000;*/
}

.button03 a::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 1px solid #222;
  border-right: 1px solid #222;
  transform: rotate(45deg);
}

.button03 a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #000;
  border-color:#000;
  opacity: 1;
}

.button03 a:hover::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}



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

.main-item{
	margin:80px auto;
}
@media screen and (max-width: 768px){   
	.main-item{
		
	}
}

/*見出し*/
.main-item_header{
	display: inline-block;
	margin:auto;
	padding: 1em 4em;
	border:solid 1px #000;
	
	font-family: 'Noto Serif JP','ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', serif;
}
.main-item_header .itemh_header_t01{
	font-size:1.5em;
}
.main-item_header .itemh_header_t02{
	font-size:0.8em;
}
/*SP*/
@media screen and (max-width: 768px){ 
	.main-item_header{
		padding: 1em 2em;
	}
	.main-item_header .itemh_header_t01{
		font-size:1.25em;
	}
	.main-item_header .itemh_header_t02{
		font-size:0.7em;
	}
}

/*アイテム部分*/
.main-item_box{
	margin:20px auto;
}
@media screen and (max-width: 768px){   
	.main-item_box{
	}
}

/*〜〜〜上の部分〜〜〜*/
.main-item_box_upper{
	margin:0;
	padding: 30px;
	/*background-color:#222;*/
	/*border-radius:15px 15px 0 0;*/
	
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央寄せ*/
	justify-content: center;
}
@media screen and (max-width: 768px){   
	.main-item_box_upper{
		margin:0;
		padding: 0;
	}
}

/*上の部分の写真の方*/
.container01{
	width:473px;
	line-height:0;
}
.container01 img{
	width:100%;
}
.container01 video{
	width:100%;
}
@media screen and (max-width: 768px){   
	.container01{
		width:95%;
	}
	.container01 img{
		/*border-radius:15px 15px 0 0;*/
	}
}

/*上の部分の文字の方*/
.container02{
	width:447px;
	padding-right:30px;
}
@media screen and (max-width: 768px){   
	.container02{
		width:100%;
		padding:3%;
		
		/*写真に食い込ませる*/
		/*margin-top:-50px;*/
	}
}

.container02 .item_catch{
	font-size:1.2em;
	margin-bottom:30px;
	font-weight: bold;
	text-align: left;
}
@media screen and (max-width: 768px){
	.container02 .item_catch{
		font-size:1em;
		line-height: 1.25;
		margin-bottom:1em;
	}
}
/*コメント*/
.item_comment{
	margin-bottom:1.5em;
	text-align: left;
	font-size:0.7em;
	line-height: 1.8;
		margin-bottom:30px;
}

@media screen and (max-width: 768px){
	.item_comment{
		
	}
}
.off{
	display: inline-block;
	background-color: tomato;
	color:#fff;
	padding: 0 5px;
}

/*PC用順番指定*/
@media screen and (min-width: 769px){
	/*テキストが左側 sectionに追加*/ 
	.text-left .main-item_box_upper .container01{
		order: 1;
	}
	.text-left .main-item_box_upper .container02{
		order: 0;
		padding-right:30px;
		padding-left:0;
	}
	/*テキストが右側 sectionに追加*/ 
	.text-right .main-item_box_upper .container01{
		order: 0;
	}
	.text-right .main-item_box_upper .container02{
		order: 1;
		padding-right:0;
		padding-left:30px;
	}
	
}

/*アイテムボックスタイトル*/
.item-title{
	margin-bottom:1em;
	padding:0.1em 1em 0.2em;
	font-size:0.8em;
	text-align: left;
	color:#fff;
	background-color: #000;
	/*font-family: 'Noto Serif JP','ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', serif;*/
}

/*アイテムボックス*/
.item-mainbox{
	margin-bottom:10px;
	/*padding:13px;*/
	background-color: #fff;
}
.item-mainbox_inbox{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央寄せ*/
	justify-content: center;
	
	text-align: left;
}
.item-mainbox_inbox-left{
	width:20%;
}
.item-mainbox_inbox-left img{
	width:100%;
}
.item-mainbox_inbox-right{
	width:80%;
	padding-left:1em;
}
/*SP*/
@media (max-width: 768px) {
	.item-mainbox{
		/*padding:15px;*/
	}
	.item-mainbox_inbox-left{
		width:25%;
	}
	.item-mainbox_inbox-right{
		width:75%;
		padding-left:1em;
	}
}

/*アイテムボックステキスト*/
.item-mainbox-brand{
	font-size:0.7em;
	margin-bottom:0.25em;
	color:tomato;
	font-weight:bold;
}
.item-mainbox-name{
	/*margin-top:0.5em;*/
	margin-bottom:0.25em;
	font-weight: bold;
	font-size:0.8em;
	line-height: 1.25;
	letter-spacing: 0;
	
	/*border-bottom:solid 1px #222;*/
}
.item-mainbox-data{
	color:#aaa;
	margin-bottom:0.5em;
	font-size:0.7em;
	line-height: 1.5;
}
.item-mainbox-data span{
	font-size:0.5em;
}

/*SP*/
@media (max-width: 768px) {
	.item-mainbox-name{
		font-size:0.8em;
	}
	.item-mainbox-data{
		font-size:0.7em;
	}
}



/*詳しく見るボタン*/
.cv-btn{
  width: 100%;
  padding: 6px 0 10px 0;
  font-size: 14px;
  position: relative;
  text-align: center;
  text-decoration: none;
  display: block;
  /*margin: 0 auto;*/
  color: #fff;
  background: #000;
  line-height: 1;
  /*border-radius: 50px;*/
  transition: all .2s;
	
  border: 2px solid #000;
}
.cv-btn:hover {
  background-color: #fff;
  border-color: #000;
  color: #000;
}
@media (max-width: 768px) {
	.cv-btn{
		padding: 0.3em 0 0.5em 0;
		width: 100%;
		font-size: 1em;
	}
}
/*販売開始前ボタン*/
.no-sale{
  background-color: #888;
  border-color: #888;
  color: #fff;
}
.no-sale:hover{
  background-color: #888;
  border-color: #888;
  color: #fff;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
SNAPエリア
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.snap {
	background-color: #f1e5de;
	padding: 2em 0;
	margin: 3em auto;
}
.snap img {
	width: 70%;
}
@media (max-width: 768px) {
	.snap {
		padding: 1em 0;
	}
	.snap img {
		width: 100%;
	}
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
6.一覧（FS）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-fs-all{
	
}
.contents-fs-all .fs-all_title{
	margin:auto;
	color:#000;
	font-size:2em;
	font-family: 'Noto Serif JP','ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', serif;
}
/*SP*/
@media (max-width: 768px) {
	.contents-fs-all .fs-all_title img{
		width:90%;
	}
}



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

.contents-footer{
	margin:4em auto;
}
.contents_brand_top{
	margin:3em auto;
}
.brand_under-text{
	margin-top:1em;
}

/*SP*/
@media (max-width: 768px) {
	.contents_brand_top{
		width:50%;
	}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
9.リンクエリア
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.link-area {
	width: 700px;
	margin: 0 auto 5em;
}
.link-area img {
	max-width: 100%;
	margin-bottom: 2em;
}
@media (max-width: 768px) {
	.link-area {
		width: 100%;
	}
	.link-area img {
		max-width: 90%;
	}

}

.contents-link{
	padding-top:50px;
	padding-bottom:50px;
	width:100%;
	background-color: #c8ae9d;
}

.contents-link_t{
	margin-bottom: 2em;
}
.contents-link_t .t01{
	display: inline-block;
	padding: 0 1em;
	background-color: #242424;
	color:white;
	
	font-family: futura-pt,sans-serif;
	font-weight: 500;
	font-style: normal;
}
.contents-link_t .t02{
	padding-top:0.2em;
	font-size:1.2em;
}


/*リンクエリア：フレックスボックス*/
.contents-link_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: left;
	
	text-align: left;
	margin-bottom: 2em;
}
.contents-link_box > div {
	/*列数と間の余白の設定*/
	width: calc( ( 100% - 90px ) / 4 );
	margin-right: 30px;
}
/*右端のマージンをゼロ設定*/
.contents-link_box > div:nth-child( 4n ) {
	margin-right: 0;
}
.contents-link_boxitem{
	padding-bottom:30px;
}
.contents-link_boxitem img{
	width:100%;
}
@media (max-width: 768px) {
	.contents-link_box{
		padding:0 4vw;
	}
	.contents-link_box > div {
		/*列数と間の余白の設定*/
		width: calc( ( 100% - 1vw ) / 2 );
		margin-right: 1vw;
	}
	.contents-link_box > div:nth-child( 2n ) {
		margin-right: 0;
	}
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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.フェードで画像切り替え
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.fade-img {
  position:relative;
  width: 100%;
  height: auto;
}
.ratio-1500_1800:before{
	content: "";
    display: block;
    padding-top: 120%; /* 1500x1800 画像の縦横比で変化 */
}
.fade-img img {
  position: absolute;
  left:0px;
  top:0px;
  width: 100%;
  height: 100%;
}