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

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

/*Adobefonts*/
@import url("https://use.typekit.net/dpv7off.css");
/*
font-family: futura-pt,sans-serif;
font-weight: 600;
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;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■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: #e5e0d8;
}

/*全体の設定/フォントなど*/
.js-main{
	text-align: center;
	/*font-size:1.3rem;*/
	line-height: 2;
	letter-spacing: 0.04em;
	font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', serif;
	font-weight: 400;
	color:#000;
	font-size:14px;
}
@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;
}



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

/*ボタン*/
.btn01{
  width: 100%;
  padding: 0.8em 0 0.8em 0;
  font-size: 1em;
  position: relative;
  text-align: center;
  text-decoration: none;
  display: block;
  margin: 1em auto;
  color: #222;
  background-color: transparent;
  line-height: 1;
  /*border-radius: 50px;*/
  transition: all .2s;
	
  border: 1px solid #222;
	
	font-family: futura-pt,sans-serif;
	font-weight: 600;
	font-style: normal;
}
.btn01:hover {
  background-color: #222;
  border-color: #222;
  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;
	}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
3.メインビジュアル
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.main-visual{
	margin:3em auto 0;
	width:780px;
}
@media (max-width: 768px) {
	.main-visual{
		width:100%;
	}
}

.main-visual_img{
	margin:auto;
}
.main-visual_img img{
	width:100%;
}
@media (max-width: 768px) {
	.main-visual_img{
		width:90%;
	}
}

.main-visual_title{
	margin:80px auto 0;
}
.main-visual_title img{
	width:40%;
}
@media (max-width: 768px) {
	.main-visual_title img{
		width:60%;
	}
}

.main-visual_int{
	margin:60px auto 0;
}
@media (max-width: 768px) {
	.main-visual_int{
		width:5%;
	}
}

.main-visual_text{
	margin:60px auto 0;
	font-size:0.8em;
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.アイテム SPベース
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-item{
	/*padding-top:100px;
	padding-bottom:100px;*/
}
.main-item img{
	width:100%;
}

.main-item_container{
	margin-top:100px;
}

/*イメージ*/
.main-itemimage{
	width:100%;
}

.image-container img{
	/*display: block;*/
    height: auto;
    /*object-fit: cover;*/
    width: 100%;
	/*object-position:middle center;*/
}
/*SP*/
@media (max-width: 768px) {
	.image-container img{
		height: auto;
	}
}


/*テキスト部分*/
.main-item_box01{
	padding:4em;
}
.main-item_icon{
	margin: auto;
	width:25%;
}
.main-item_int{
	margin: 1.5em auto 0;
	width:8%;
}
.main-item_name{
	margin:1em auto 0;
	
	color:#35470b;
	font-family: futura-pt, sans-serif;
	font-weight: 600;
	font-style: normal;
	line-height: 1.1;
	font-size:1.2em;
}
/*PC*/
@media (min-width: 769px) {
	.main-item_name{
		font-size:1.3em;
		line-height: 1.2;
	}
}

.main-item_text{
	margin:3em auto 0;
	width:80%;
	font-size:0.8em;
	text-align: justify;
}

.main-item_box02{
	margin:auto;
	width:90%;
	height:auto;
}

/*スライダーは下部に記述あり swiper*/

/*アイテムリンク*/
.itemlink_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央寄せ*/
	justify-content: center;
}
.itemlink_boxin{
	width:23%;
	margin:3%;
	
	font-size:0.7em;
}


/*PC*/
@media (min-width: 769px) {
	.main-item_container{
		margin-top:300px;
	}
	
	.main-item_box{
		/*フレックスボックスの設定*/
		display: -webkit-flex;
    	display: flex;
    	-webkit-flex-wrap: wrap;
    	flex-wrap: wrap;
		/*フレックスボックスの要素を中央寄せ*/
		justify-content: center;
		align-items: center;
		
		width:1200px;
		margin: 100px auto 50px;
	}
	.main-item_box01{
		width:40%;
		order: 2;
		
		font-size:1.1em;
	}
	.main-item_box02{
		width:60%;
		order: 1;
	}
	
	.itemlink_box{
		margin:auto;
		width:500px;
	}
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
8.footer SPベース
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-footer{
	width:70%;
	margin: 8em auto 3em;
}
.contents-footer .img01{
	margin: auto;
	width:9%;
}
.contents-footer .img02 img{
	margin: 2em auto 0;
	width:55%;
}
.contents-footer .img03{
	margin: 2em auto 0;
}
.contents-footer .link_btn{
	margin: 2em auto 0;
}

/*PC*/
@media (min-width: 769px) {
	.contents-footer{
		margin: 300px auto 200px;
		width:500px;
	}
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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.swiper
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.swiper-slide{
	
}
.swiper-container {
	padding-bottom:40px;
}

.swiper-pagination{
	top:95.3%;
}
.swiper-pagination-bullet{
	background-color:#881f17;
}



/* 前ページ、次ページボタン共通のスタイル */
.swiper-button-prev,
.swiper-button-next {
	top:96%;
}
.swiper-button-next{
	right:40%;
}
.swiper-button-next:after{
	font-family: "Font Awesome 5 Free";
	content: "\f105"; 
	font-weight: 900;
	font-size: 1em;
	color:#222;
}
.swiper-button-prev{
	left:40%;
}
.swiper-button-prev:after{
	font-family: "Font Awesome 5 Free";
	content: "\f104"; 
	font-weight: 900;
	font-size: 1em;
	color:#222;
}
/*PC*/
@media (min-width: 769px) {
	.swiper-button-next{
		right:45%;
	}
	.swiper-button-prev{
		left:45%;
	}
}