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

@import url('https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&family=Noto+Sans+JP:wght@400;700&display=swap');

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

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

1.全体
2.共通フォーマット（ボタンデザインなど）
3.メインビジュアル
4.タイトル下テキスト
5.ラインナップ
6.アイテム

ex:パンくずリスト
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.4em;
}*/

/* パンくずリスト位置調整 */
/*.fs-c-breadcrumb{
	display: none;
}*/

/*共通フッターのマージン調整*/
.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;
	}
	
	.js-main video{
	width:60%;
	height: auto;
	}
	
}

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

.js-main video{
	max-width: 400px;
    margin: 0 auto;
	}

@media screen and (max-width: 768px){   
	.js-container{
		width:100%;
	}
}


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

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

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


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

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

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

.main-text{
	margin:2em;
	font-size:0.7em;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.イントロダクション
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-intro{
	margin-top:0;
	margin-bottom:0;
	width:100%;
	background-color: #ededed;
	
	padding-top:4em;
	padding-bottom:3em;
}
/*名前*/
.name_box{
	font-family: 'Amiri', serif;
	color:#000;
	letter-spacing: 0.4em;
}
.name-t{
	font-size:0.8em;
	margin-bottom:-1.5em;
}
.name-m{
	font-size:3em;
}

/*トップテキスト*/
.toptext_box{
	padding-top:3em;
	padding-bottom:2em;
}
/*SP*/
@media (max-width: 768px) {
	.toptext_box{
		padding-top:0em;
		padding-bottom:2em;
		font-size: 0.8em;
	}

}


.material img {
	width: 70%;
}
@media (max-width: 768px) {
	.material img {
		width: 100%;
	}
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.ラインナップ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.itemmenu{
	margin-top:0;
	width:100%;
}
.itemmenu-title{
	background-color: #b3b3b3;
	padding-top: 1em;
	padding-bottom: 1em;
	font-weight: bold;
	letter-spacing: 0.4em;
	color:white;
}
.itemmenu-area{
	margin-top:0;
	background-color: #fbf0ea;
	padding-top: 3em;
	padding-bottom: 3em;
}
.itemmenu-flexbox{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央寄せ*/
	justify-content: center;	
}
.itemlist_box {
	width: 770px;
	margin: 0 auto;
	/*padding-top: 30px;*/
}
.itemmenu-item{
	padding:1%;
	width:20%;
}
.itemmenu-item img{
	width:100%;
}
.itemmenu-item p{
	font-size: 0.8em;
	color: #515151;
	margin: 0;
}

.title_text {
	font-size: 1.3em;
	letter-spacing: 2;
	/*font-family: "omnes-pro", sans-serif;
	font-weight: 400;
	font-style: normal;*/
}
.title_text_new {
	font-size: 1em;
	padding-bottom: 20px;
}
.itemlist_text {
	font-size: 0.8em;
	/*margin-top: -5px;*/
}
.itemmenu-item .date{
	font-size:0.8em;
	font-weight: bold;
}
/*SP*/
@media screen and (max-width: 768px){   
	.itemmenu-title{
		font-size:0.8em;
	}
	.itemmenu-area{
		padding-top: 1em;
		padding-bottom: 1em;
		margin: 2em auto;
	}
	.itemmenu-item{
		
		/*padding:0.5em 4%;*/
		width:30%;
	}
	.itemlist_box {
		width: 80%;
		/*margin: 0 auto;
		padding-top: 30px;*/
	}
	.title_text {
		margin: 10px 0;
	}
}


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

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

/*〜〜〜上の部分〜〜〜*/
.main-item_box_upper{
	margin-bottom:0;
	padding: 40px;
	background-color:#f6f6f6;
	/*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{
		padding: 0;
	}
}

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

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

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

/*アイテムタイトル*/
.item_header{
	width:100%;
	margin:auto;
	margin-bottom:1em;
	
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央寄せ*/
	justify-content: center;
}
.item_header01{
	width:25%;
}
.item_header img{
	width:100%;
}
.item_header02{
	width:75%;
	
	/*要素上下中央揃え*/
	display: flex;
	justify-content: center;
	align-items: center;
}
.item_header02 .inner{
	width:100%;
	padding-left:20px;
	
	text-align: left;
	font-style:italic;
	/*color:#2c2b55;*/
	font-size:1.5em;
}
@media screen and (max-width: 768px){
	.item_header{
		/*1列に戻す*/
		display: block;
	}
	.item_header01{
		margin:auto;
	}
	.item_header02{
		width:100%;
		/*要素上下中央揃え*/
		align-items:flex-end;
		margin-top: 20px;
	}
	.item_header02 .inner{
		padding-top:0.5em;
		font-size:1.25em;
		text-align: center;
	}
}

/*コメントタイトル*/
.item_comment_header{
	display: inline-block;
	margin: 1em auto 0;
	padding:  0.1em 2em 0.2em;
	background-color: #fa6969;
	font-size:0.7em;
	color:white;
}

/*コメント*/
.item_comment {
  position: relative;
  display: inline-block;
  margin: 1.5em 0 1.25em;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 0.9em;
  background: #fff;
	
	padding:1em 1.25em 1.25em;
	text-align: left;
}

.item_comment:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #fff;
}

.item_comment p {
  margin: 0;
  padding: 0;
}


@media screen and (max-width: 768px){
	.item_comment{
		
	}
}

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




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
8.フッター
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.contents-footer_img{
	padding:5em 0;
}
.contents-footer_img img{
	width:300px;
}

@media (max-width: 768px) {
	.contents-footer_img{
		padding:1em 0 5em;
	}
	.contents-footer_img img{
		width:100%;
	}
}

.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.リンクエリア
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

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

.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: center;
	
	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:パンくずリスト　
----------------------------------------*/
.breadcrumb_box {
	width:100%;
	/*margin-top: 60px;*/
	font-size: 0.5em;
	text-align: center;
	/*border-top:black 1px dotted;*/
	background-color: white;
}
.breadcrumb_box .container{
	padding-top:15px;
	padding-bottom:15px;
}

@media (max-width: 768px) {
	.breadcrumb_box{
		margin-top: 0px;
		font-size: 0.5em;
	}
	.breadcrumb_box .container{
		padding-top:15px;
		padding-bottom:15px;
	}
}

.breadcrumb {
	padding-left:0;
	margin-left:0;
}

.breadcrumb li{
	display:inline;/*横に並ぶように*/
	list-style: none;
	/*font-weight: bold;*//*太字*/
}

.breadcrumb li:after {/* >を表示*/
	content: '>';
	padding: 0 3px;
	color: #555;
}

.breadcrumb li:last-child:after {
	content: '';
}

.breadcrumb li a {
	text-decoration: none;
	color: #000000;/*色*/
}

.breadcrumb li a:hover {
	text-decoration: underline;
}




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



