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

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

/*Adobefonts*/
@import url("https://use.typekit.net/zhi2kbv.css");
/*
font-family: clarendon-urw, 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;
}

/*パンくずリスト調整*/
.fs-c-breadcrumb{
	padding-top:0;
	/*background-color: #191919;*/
	color:#5C5C5C;
}
.fs-c-breadcrumb a{
	color:#5C5C5C;
}
main, .fs-c-breadcrumb__list{
	color:#5C5C5C;
}

/*TOPへボタン消す*/
.footer__pagetop{
	display: none!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:12px;
	line-height: 2;
	letter-spacing: 0.1em;
	font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', serif;
	font-weight: 400;
	color:#000;
}
@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;
}

/*フッターの色調整*/
#footer.second-page .footer-sp{
	background-color: #191919;
}
.second-page .footer__follow{
	background-color: #191919;
}


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

/*ボタン*/
.btn01{
  width: 200px;
  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: #225539;
  line-height: 1;
  /*border-radius: 50px;*/
  transition: all .2s;
	
  border: 2px solid #225539;
}
.btn01:hover {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

/*ボタン 小さい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;
	}
}

/*背景色＆テキスト色*/
.bg-color01{
	background-color: #f4f4f4; /*グレー*/
	color:#b6862c; /*黄土色*/
}
.bg-color02{
	background-color: #fff; /*白*/
	color:#b6862c; /*黄土色*/
}
.bg-color03{
	background-color: #b6862c; /*黄土色*/
	color:#fff; /*白*/
}



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

.main-visual{
	margin-bottom:0;
	width:100%;
}

.main-box{
	width:100%;
	height: 600px;
	position:relative;
}
@media screen and (max-width: 768px){
	.main-box{
		height: 100vw;
	}
}

.main-img{
	position: absolute;
	top: 0;
	
	width:100%;
	height: auto;
	
	line-height: 0;
}
.main-text{
	position: absolute;
	top: 50%;
 	left: 50%;
  	-ms-transform: translate(-50%,-50%);
  	-webkit-transform: translate(-50%,-50%);
  	transform: translate(-50%,-50%);

	color:#fff;
	letter-spacing: 0.2em;
}

.main-text01{
	font-size:30px;

	font-family: futura-pt, sans-serif;
	font-weight: 600;
	font-style: normal;
}
.main-text02{
	margin-top:0.5em;
	font-size:12px;
	font-weight: normal;
}
@media screen and (max-width: 768px){
	.main-text01{
		font-size:0.8em;
	}
	.main-text02{
		font-size:0.3em;
	}
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.TOPテキスト name
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-name{
	padding-top:3em;
	text-align: left;
}
@media (max-width: 768px) {
	.contents-name{
		line-height: 1.5;
		width:95%;
	}
}

.contents-name .toptext{
	font-size:3em;
	font-family: 'Candal', sans-serif;
}
.contents-name .toptext2{
	font-size:2em;
	font-family: 'Candal', sans-serif;
}
.contents-name .subtext{
	font-size:1em;
	font-family: clarendon-urw, serif;
	font-weight: 400;
	font-style: normal;
}
.contents-name .logo{
	display: inline-block;
	background-color: #000;
	padding: 0em 2em;
	width:120px;
}
.contents-name .logo img{
	width: 100%;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.コンテンツ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-wrapper{
	width:100%;
}


/*～～～～～look～～～～～*/

.contents-look{
	width:1200px;
	margin: auto;
	padding-top:3em;
}
@media (max-width: 768px) {
	.contents-look{
		width:95%;
	}
}

.look-box img{
	width:100%;
}

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

/*～～～～～look:pickup～～～～～*/

.look-pick_item{
	padding-bottom:30px;
}
@media (max-width: 768px) {
	.look-pick_item{
		padding-bottom:5vw;
	}
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
6.モーダル（modaal）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.hide-area{/*モーダル表示をする場所をあらかじめ隠す*/
	display: none;
}

/*PCの時のモダール横幅*/
@media (min-width: 769px) {
	.modaal-container{
		max-width: 500px;
	}
}
	
/*ボタンの色、位置*/
.modaal-fullscreen .modaal-close{
	background:none;
	right:20px;
}


/*クローズボタンの×の色変更*/
.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#000;
}

/*キャプション*/
.caption{
    display: block;
    padding: 10px 0;
	line-height: 1.5;
	font-size:0.8em;
}



/*===　サムネイル表示のためのcss　*/


/*画像の横幅を100%にしてレスポンシブ化*/
img{
	max-width:100%;
	height:auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/
}


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

.contents-profile{
	margin: 150px auto;
	text-align: center;
}

.profile_uptx{
	font-size:0.8em;
	font-family: clarendon-urw, serif;
	font-weight: 400;
	font-style: normal;
}
.profile_name{
	margin-top:-0.5em;
	margin-bottom:0.25em;
	font-size: 2em;
	font-family: 'Candal', sans-serif;
	
}

@media (max-width: 768px) {
	.profile_img img{
		width:35%;
		max-width: 150px;
	}
}

.profile_sns_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素の寄せ設定*/
	justify-content: center;
	
	margin-top:0.5em;
}
.profile_sns_box .item{
	width:30px;
	padding:5px;
}
.profile_sns_box .item img{
	width:100%;
}

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

.contents-footer{
	margin: 150px auto;
	text-align: center;
}

.footer_title img{
	width:300px;
}
.footer_logo img{
	width:150px;
}
@media (max-width: 768px) {
	.footer_title img{
		width:50%;
		max-width:300px;
	}
	.footer_logo img{
		width:25%;
		max-width:150px;
	}
}


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


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.delighters：スクロールアニメーション
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*animation02-ふわっと出現*/
/* 基本のスタイル */
.animation02.delighter {
	  transition: all .8s ease-out;
      transform: translateX(0%);
      opacity: 0;
   }
 
/* スタート時のスタイル */
   .animation02.delighter.started {
      transform:none;
	  opacity:1;
   }
 
/* エンド時のスタイル */
   .animation02.delighter.started.ended {
      
   }

