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

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

■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;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■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.全体
================================*/
/*html {scroll-behavior: smooth;}*/

body{
/*背景色*/
	background-color: #f7ede4;
}

/*全体の設定/フォントなど*/
.js-main{
	text-align: center;
	/*font-size:1.3rem;*/
	line-height: 1.8;
	letter-spacing: 0.07em;
	font-family:'Noto Serif JP','游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	font-weight: 400;
	color:#424147;
}
@media screen and (max-width:768px) {
	.js-main{
		padding-top:0;
	}
}

/*リンクの設定*/
.js-main a{
	text-decoration:none;
	color:#424147;
}
.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;
}
@media screen and (max-width: 768px){   
	.js-container{
		width:100%;
	}
}
.font01 {
	font-family: "freight-big-pro", serif;
	font-weight: 400;
	font-style: normal;
}

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

/*ボタン*/
.btn01{
  width: 60%;
  padding: 1.2em 0 1.2em 0;
  font-size: 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  display: block;
  margin: 1em auto 3em;
  color: #fff;
  background: #b86455;
  line-height: 1;
 /* border-radius: 50px;*/
  transition: all .2s;
	font-size: 1.2em;
  border: 1px solid #b86455;
}
.btn01 a{
	color: #fff;
	display: block;
}
.btn01 a:hover {
  color: #b86455;
	background-color: #ffffff;
  opacity:1;
  -moz-opacity:1;
  filter:alpha(opacity = 100);
	/*border: 1px solid #cc5a5f;*/
}
.btn01:hover {
  color: #b86455;
  background-color: #fff;
  border-color: #b86455;
}

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


/*共通padding設定*/
.main-margin{
	margin: 3em 0;
}
@media screen and (max-width: 768px){
	.main-margin{
		margin: 2em 0;
	}
}

/*見出し*/
.content-head01{
	margin-bottom:2em;	
}
.content-head01_01{
	font-size:2em;
	font-family: serif;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom:0.4em;
}
.content-head01_02{
	font-size:1em;
}


/*ボタン色変更*/
.btn-color01{
	background: #fff;
	border: 1px solid #222;
	color: #222;
}
.btn-color01:hover{
	background-color: #222;
  	border-color: #222;
  	color: #fff;
}

/*背景色*/
.bg-color01{
	background: #fff;
}
.bg-color02{ /*文字色と同じ色*/
	background: #363636;
}
.bg-color03{ /**/
	background: #b9b9b9;
}

/*テキスト色*/
.font-color01{ /*差し色ピンク*/
	color:#db7e76;
}


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

.main-visual{
	margin-bottom:0;
	width:100%;
	background-color: #f7ede4;
	line-height: 0;
}
.main-visual img {
	width:100%;
	max-width: 980px;
}

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



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

.main-intro{
	/*margin-top:80px;*/
	font-size:0.9em;
	line-height: 2;
}
.main-intro p {
	font-family: "adventures-unlimited", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #b9624e;
	font-size: 3em;
	line-height: 0.8;
	margin: 0 auto 1em;
}
@media screen and (max-width: 768px){
	.main-intro{
		font-size:0.8em;
	}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.カテゴリー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.category {
	display: flex;
    flex-direction: row;
    align-content: center;
    flex-wrap: wrap;
	justify-content: center;
	width: 300px;
	margin: 0 auto;
}
.category > div {
	width: 33%;
}
.category_title {
	font-size: 1.2em;
	margin-bottom: 1em;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.アイテム
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.item_inner{
	width:100%;
	max-width:500px;
	margin:auto;
}
.item_inner img {
	width: 100%;
}
.heart {
	font-size: 0.9em;
	letter-spacing: 0.5em;
	padding: 5em 0 4em;
	font-family: "fot-rodin-pron", sans-serif;
	font-weight: 600;
	font-style: normal;
}
.item-title {
	width: 60%;
	margin: 0 auto;
}
.text01 {
	font-size: 1.7em;
	font-weight: 500;
	line-height: 1.7;
	margin: 0 auto 1em;
}
.text02 {
	font-size: 0.9em;
	text-align: left;
	line-height: 1.7;
	margin: 1em auto 3em;	
}
.color .font01,
.snap_link {
	font-size: 1.3em;
}
.color {
	margin: 0 auto 3em;
}
.colorchip_inner {
	display: flex;
	margin: 0.5em auto 0;
	justify-content: center;
}
.colorchip {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	margin: 0 0.4em;
	border: 1px solid #898989;
}
.arrow {
    position: relative;
    display: inline-block;
    padding: 0 0 0 16px;
    color: #424147;
    vertical-align: middle;
    text-decoration: none;
    font-size: 13px;
    margin: 0;
}
.arrow::before, .arrow::after {
    position: absolute;
	width: 9px;
    height: 9px;
    border-top: 1px solid #424147;
    border-right: 1px solid #424147;
    top: -20px;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
	-webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}


@media screen and (max-width: 768px){
	.item_inner{
		max-width:90%;
	}
	.heart {
		font-size: 0.8em;
		padding: 2.5em 0;
	}
	.text01 {
		font-size: 1.3em;
	}
	.item-title {
		width: 60%;
	}


}
/*スライダー*/
.slide-items {
  width: 100%;
  height: 100%;
}
 img {
  width: 100%;
  object-fit: cover;
}
ul.slide-ite
.slide-itemsms.slick-initialized.slick-slider {
	padding: 0;
}
.slick-next:before,
.slick-prev:before {
	display: none;
}
ul.slide-items.slick-initialized.slick-slider {
    padding: 0;
}
@media screen and (max-width: 768px){ 
	.slide {
		width: 100%;
		margin: 0 auto 1.5em;
	}
}

.snap .font01,
.contents .font01 {
	font-size: 1.6em;
	letter-spacing: 0.08em;
}
.snap,
.contents {
	width: 700px;
	margin: 1em auto 5em;
}
.ecbn-selection-footer2 {
    display: none;
}
@media screen and (max-width: 768px){ 
	.snap,
	.contents {
		width: 100%;
		margin: 1em auto 5em;
	}
}

/*visumo*/
.hacobune-mix-list-item-caption-avatar[data-v-3ab06931] {
    width: 30px!important;
    margin-right: 12px;
}
.hacobune-mix-list-item-caption-avatar-image[data-v-3ab06931] {
    border-radius: 50%;
    width: 30px!important;
    height: 30px!important;
    object-fit: cover;
}
.hacobune-chip-input-container {
    display: none !important;
}
.hacobune-app-container[data-v-ef21c55a] {
	padding: 0!important;
}
.hacobune-logo {
    display: none !important;
}
.hacobune-layout-base-main-contents {
	background-color: #f7ede4;
}
.hacobune-mix-list-item[data-v-3ab06931]{
	background-color: #f7ede4;
}
.related-product-item-price {
    display: none!important;
}
@media (max-width: 719px) {
    .hacobune-app-container[data-v-ef21c55a] {
        width: 92%;
        margin: 0 auto;
        padding: 0!important; 
    }
    .hacobune-grid-col[data-v-9dc3b970] {
        flex: 0 0 33.3%!important;
        max-width: 33.3%!important;
    }
	.hacobune-mix-list-item[data-v-3ab06931] {
		padding: 5px!important;
	}
}

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

.contents-fs-all{
	
}
.contents-fs-all .fs-all_title{
	margin:auto;
}
.contents-fs-all .fs-all_title_text {
	margin:auto;
	display: inline-block;
	/*color:#fff;*/
	/*font-family: serif;*/
	padding: 0 2em;
}
.contents-fs-all .fs-all_title img{
	width:412px;
}
/*SP*/
@media (max-width: 768px) {
	.contents-fs-all .fs-all_title img{
		width:90%;
	}
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
7.フッター
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.contents_brand_top .brand_lpgo {
	width: 20%;
	margin: 0 auto;
}
.brand_under-text {
	font-size: 1.1em;
	letter-spacing: 0.06em;
}
@media (max-width: 768px) {
	.contents_brand_top .brand_lpgo {
		width: 45%;
	}
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
8.カテゴリリンク
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


.contents-link_allitem{
	margin-bottom:5em;
}

.contents-link_allitem_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: center;
	align-items: center;
	
	text-align: left;
	margin:0 auto 2em;
	width:90%;
}
.contents-link_allitem_img{
	width:30%;
	line-height: 0;
}
.contents-link_allitem_img img{
	width:100%;
	object-fit: cover;
}
.contents-link_allitem_txt{
	width:70%;
	text-align: center;
	color:#fff;
}
.contents-link_allitem_txt .txt01{
	font-family: serif;
	font-size:1.5em;
}
.contents-link_allitem_txt .txt02{
	font-weight: lighter;
	font-size:0.8em;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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;
}
.contents-link_t .t02{
	padding-top:0.2em;
	font-size:0.8em;
}


/*リンクエリア：フレックスボックス*/
.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;
	}
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
10.ブログリンクエリア
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-link_blog{
	width:90%;
	max-width:700px;
	margin: 0 auto 80px;
	border:solid 1px #c6c6c6;
}

.contents-link_blog_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: left;
	
	text-align: left;
	margin-bottom: 2em;
}
.contents-link_blog_box:last-child{
	margin-bottom: 0;
}
.contents-link_blog_box .innner01{
	width:40%;
	
	/*背景画像設定（画像はhtmlで指定）*/
	background-size: cover;
	background-repeat:no-repeat;
	background-position: center;
}
.contents-link_blog_box .innner01 img{
	width:100%;
}
.contents-link_blog_box .innner02{
	width:60%;
	padding: 40px ;
}
.blog_title{
	font-weight: bold;
	margin-bottom:1em;
}
.blog_text{
	/*テキスト省略*/
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
	
	font-size:0.8em;
}

@media (max-width: 768px) {
	.contents-link_blog_box .innner02{
		padding: 20px ;
	}
	.blog_title{
		font-size:0.8em;
		line-height: 1.2;
	}
	.blog_text{
		 -webkit-line-clamp: 2;
		font-size:0.6em;
	}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
11.バナーリンクエリア
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


.contents-link_banner{
	margin-bottom:50px;
}
.contents_head .head01{
	font-size:1.5em;
	font-weight:700;
}
.contents_head .head02{
	font-size:0.7em;
}
.contents_wrapper{
	
}
.contents_item{
	margin-top:2em;
}
.contents_item img{
	width:90%;	
}



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