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

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

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

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

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:  "Libre Baskerville", serif,YuMincho, "Yu Mincho", "Hiragino Mincho ProN";
	font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
}
@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%;
	margin:auto;
}
@media screen and (max-width: 768px){
	.js-container{
		width:100%;
	}
}


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

/*ボタン*/
.btn01 {
  display: inline-block;
  padding: 0.5em 1em;
  color: #fff;
  /*border-radius: 25px;*/
  background-color: #000;
  border: none;
  cursor: pointer;
  margin: 0.8em 5px;
}

.btn02 {
  display: inline-block;
  padding: 0.5em 1em;
  color: #000;
  /*border-radius: 25px;*/
  background-color: #fff;
  border: none;
  cursor: pointer;
  margin: 0.8em 5px;
}

.btn03 {
  display: inline-block;
  padding: 0.5em 1em;
  color: #fff;
  /*border-radius: 25px;*/
  background-color: #d563b6;
  border: none;
  cursor: pointer;
  margin: 0.8em 5px;
}

/*ボタン茶色*/
.btn_brown{
	background-color: #3f2f2f;
}
/*小さいver*/
.btn-small{
	font-size:0.8em;
	padding: 0.5em 3em;
	margin-top:1em;
}
@media screen and (max-width: 768px){
	.btn01{
		 padding: 0.1em 3em;
	}
		.btn02{
		 padding: 0.1em 3em;
	}
	.btn-small{
		 padding: 0.1em 2em;
	}
}



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

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

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

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


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.タイトル下テキスト
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-under{
	margin:auto;
	padding-top:13em;
	padding-bottom:13em;
	text-align: center;
	background-color:white;
}
.main-under_title{
	display: inline-block;
	/*border-bottom:1px solid #000;*/
	padding: :5px;
	font-size:1.7em;
	font-family: serif;
	letter-spacing: 0.1em;
}
.main-under_text{
	letter-spacing: 0.1em;
	font-family: 'Amiri', serif;
}


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

.contents-item{
	width: 100%;
	max-width: 750px;
	background-color: white;
	margin: 0 auto;
}

/*アイテムエリア*/
.contents-item .item-box{
	padding-bottom:80px;
}

@media (max-width: 768px) {
	.contents-item .item-box{
		padding-bottom:50px;
	}
}

/*アイテムコメント*/
.item-comment{
	margin:5em auto;
	padding:5em;
	background-color: #f8f5f2;
	width:700px;
	color:#e26152;
}
.com-t{
	font-family: 'Amiri', serif;
	font-size:1.2em;
	margin-bottom:2em;
}
.com-in{
	font-family: 'Amiri', serif;
	text-align: center;
}
.com-day{
	font-family: 'Amiri', serif;
	font-size:1.3em;
}
.com-week{
	font-family: sans-serif;
	font-size:1em;
}
.com-week2{
	font-family: sans-serif;
	font-size:0.9em;
	color:#7d809c;
	padding-bottom: 2em;
	padding-top: 1em;
}
.com-no{
	font-family: 'Amiri', serif;
	font-size:4em;
	line-height:0.8em;
	color:#7d809c;
	padding-top: 1.3em;
}

@media (max-width: 768px) {
	.item-comment{
		width:80%;
		font-size:0.8em;
		padding:3em;
	}
	.com-week2{
		width:92%;
		font-size:0.8em;
		margin: 0 auto
	}

}


/*画像*/
.item-box_img img{
	width:80%;
}

.item-box_style_tl{
	width: 60%;
	padding: 50px 10px 0;
	margin: 0 auto;
}

.item-box_style1{
	padding: 50px 0 0;
}
.item-box_style2{
	padding: 10px 0 0;
}
.item-box_style3{
	padding: 60px 0 40px;
}

.item-box_style3{
	padding: 60px 0 40px;
}

.item-box_img_w01{
	width: 90%;
	margin-right: auto;
}

.item-box_img_w02{
	width: 90%;
	margin-left: auto;
}

.item-box_img_w03{
	width: 70%;
	margin-right: auto;
	margin-left: 5%;
}

.item-box_img_w04{
	width: 70%;
	margin-left: auto;
	margin-right: 5%;
}

.item-box_img_w05{
	width: 60%;
	margin: auto;
}

.item-box_img_w06{
	width: 90%;
	margin: auto;
}

.item-box_img_w07{
	width: 50%;
	margin-left: auto;
	margin-right: 5%;
}

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

/*LOOK*/
.item-box{
	color:#12161e;
}
.item-box_look{
	position: relative;
	margin:auto;
	padding-top:0em;
	padding-bottom:5em;
	text-align: center;
	width: 60%;
	font-family:  "Libre Baskerville", serif,YuMincho, "Yu Mincho", "Hiragino Mincho ProN";
	font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
	letter-spacing: 0.7px;
}

.item-box_look2{
	position: relative;
	margin:auto;
	padding-top:1em;
	padding-bottom:2em;
	text-align: center;
	width: 60%;
	font-family:  "Libre Baskerville", serif,YuMincho, "Yu Mincho", "Hiragino Mincho ProN";
	font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
	letter-spacing: 0.7px;
}

.item-box_text{
	margin-left: auto;
	margin-right: 9%;
	padding-top:0em;
	padding-bottom:2em;
	text-align: center;
	width: 40%;
	text-align: left;
	font-family:  "Libre Baskerville", serif,YuMincho, "Yu Mincho", "Hiragino Mincho ProN";
	font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
	letter-spacing: 0.7px;
}

.item-box_text_r{
	margin-right: auto;
	margin-left: 9%;
	padding-top:0em;
	padding-bottom:2em;
	text-align: center;
	width: 40%;
	text-align: left;
	font-family:  "Libre Baskerville", serif,YuMincho, "Yu Mincho", "Hiragino Mincho ProN";
	font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
	letter-spacing: 0.7px;
}

.item_look_title_all{
	position: absolute;
	top:-50px;
	left: 0;
	font-size: 38px;
	line-height: 1;
	padding-bottom: 1em;
}

@media (max-width: 768px) {
	.item-box_look,.item-box_look2,.item-box_text,.item-box_text_r{
		width: 80%;
}
}
/*商品名*/
.com-item{
	display: flex;
	justify-content: space-between;
	font-family:  "Libre Baskerville", serif,YuMincho, "Yu Mincho", "Hiragino Mincho ProN";
	font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
	font-size:0.9em;
	line-height: 1.5;
	margin: 0.2em 0;
	text-align: left;
}

.com-item p{
	margin: 0;
}
@media (max-width: 768px) {
	.com-item{
		margin-bottom:1em;
	}
}

/*リンクの設定*/
 .com-item .buy_btn{
	text-align: center;
	padding: 0px 20px;
	background-color: #b97e65;
	color: #fff;
}



/*ラインナップ*/
.lineup_tl{
	padding-top: 50px
}
.item-box_lineup{
	padding:50px 150px;
}
@media (max-width: 768px) {
	.lineup_tl{
		padding-top: 30px
	}
	.item-box_lineup{
		padding:30px 0px ;
	}
}

/*ラインナップフレックスボックス*/
.lineup-flexbox{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央寄せ*/
	justify-content: center;
}
.lineup-item{
	padding:1%;
	width:50%;
}

.lineup-item img{
	width:100%;
}


/*消し値*/
.lineup-item .price01{
	padding:0;
	text-decoration: line-through;
	font-family: 'Amiri', serif;
}
/*本価格*/
.lineup-item .price02{
	margin-top:-0.3em;
	font-size:1.2em;
	font-family: 'Amiri', serif;
}
/*赤文字*/
.color-red{
	color:#C1484A;
}
/*+tax*/
.tax{
	color:#000;
	font-size:0.5em;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
6.プロフィール
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.profile{
	margin: 4em auto ;
	padding:2em;
	width:60%;
	background-color: #f0e7db;
}
.profile_t{
	font-weight:bold;
	letter-spacing: 0.2em;
}

.profile_img_all{
	display: block;
}
.profile_img{
	margin: 0 auto;
	width:40%;
}
.profile_img img{
	width:100%;
}
.profile_name{
	margin: auto;
    font-weight: bold;
    text-align: center;
    font-size: 1.1em;
    width: 60%;
		padding: 0 0 10px;
}

.intro_name_box{
	vertical-align:bottom;
	text-align:left;
}

.intro_name{
	font-size:1em;
	display: inline-block;
	border-bottom: 1px solid #12161e;
}

.intro_link img{
	width:20px;
	vertical-align: bottom;
}

.profile_text{
	margin:1em auto 0em;
	text-align: left;
	font-size:0.9em;
}

@media screen and (max-width: 768px){
	.profile{
		width:100%;
		margin: 1em auto ;
	}
}

@media screen and (min-width: 768px){
	.profile_box{
		/*フレックスボックスの設定*/
		display: -webkit-flex;
    	display: flex;
    	-webkit-flex-wrap: wrap;
    	flex-wrap: wrap;
		/*フレックスボックスの要素を中央寄せ*/
		justify-content: center;
		width:60%;
		margin:auto;
		padding:0em;
	}
	.profile_img{

	}
	.profile_textbox{
		width:100%;
	}
}



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

.contents-footer{

}

.contents-footer_img{
	padding:5em 3em 1em 3em;
}
.contents-footer_img img{
	width:300px;
}

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







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

/* 左から */
.fadeLeft {
  opacity: 0;
}

.fadeLeft.active {
  animation: 2s fadeup ease-in-out forwards;
}

@keyframes fadeup {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右から */
.faderight {
  opacity: 0;
}

.faderight.active {
  animation: 2s faderight ease-in-out forwards;
}

@keyframes faderight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
