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

/*google fonts*/
@import url('https://fonts.googleapis.com/css2?family=Amiri&display=swap');
/*Amiri
font-family: 'Amiri', serif;
*/
/*Adobe fonts*/
@import url("https://use.typekit.net/zrc3dcr.css");
/*annabelle-jf
font-family: "annabelle-jf", sans-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-c-subgroup { display: none }

/*「商品グループエリア」を非表示*/
.fs-c-productList { 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.全体
================================*/

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

/*全体の設定/フォントなど*/
.js-main{
	text-align: center;
	/*font-size:1.3rem;*/
	line-height: 1.8;
	letter-spacing: 0.07em;
	font-family: Arial, "Hiragino Kaku Gothic ProN","Hiragino Sans","BIZ UDPGothic",Meiryo,sans-serif;
	font-weight: 400;
	color:#363630;
}
@media screen and (max-width:768px) {
	.js-main{
		padding-top:0;
	}
}

/*リンクの設定*/
.js-main a{
	text-decoration:none;
	color:#363630;
}
.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:95%;
	max-width:900px;
	margin:auto;
}
@media screen and (max-width: 768px){   
	.js-container{
		
	}
}


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

/*ボタン*/
.button019 a {
    background: #fff;
    /*border-radius: 3px;*/
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 280px;
    padding: 10px 25px;
    color: #363630;
    transition: 0.3s ease-in-out;
    /*font-weight: 500;*/
	border:solid 1px #363630;
}
.button019 a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 1rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.button019 a:hover {
  background: #363630;
  color: #FFF;
  opacity: 1;
}
.button019 a:hover:after {
  right: 1.4rem;
}


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

/*共通margin設定*/
.main-margin{
	margin: 100px auto;
}
@media screen and (max-width: 768px){
	.main-margin{
		margin: 4em auto;
	}
}

/*見出し*/
.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;
}


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

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

/*フォント指定*/
/*Serif*/
.font01{
	font-family: serif;
}
/*annabelle-jf (Script)*/
.font02{
	font-family: "annabelle-jf", sans-serif;
	font-weight: 400;
	font-style: normal;
}


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

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

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


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


.main-profile{
	
}

.main-profile_box{
	margin:auto;
	
	width:480px;
	max-width: 70vw;
	
	border:solid 1px #363630;
	border-radius: 15px;
	
	text-align: justify;
}
.main-profile_img{	
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.profile_name{
	font-size:2em;
}
.profile_name span{
	font-size:0.4em;
}
.profile_text{
	font-size:0.7em;
}
.profile_link{
	margin-top:0.8em;
}


/*PC*/
@media (min-width: 769px) {
	.main-profile_box{
		/*フレックスボックスの設定*/
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		/*フレックスボックスの要素を左寄せ*/
		justify-content: center;
	}
	.main-profile_img{
		width:40%;
		border-radius: 15px 0 0 15px;
	}
	.main-profile_contents{
		width:60%;
		
		padding: 2% 4% 4%;
	}
}
/*SP*/
@media (max-width: 768px) {
	.main-profile_img{
		width:auto;
		height: 70vw;
		border-radius: 15px 15px 0 0;
	}
	
	.main-profile_contents{
		padding: 0 8% 8%;
	}
	
	.profile_link{
		width:70%;
		margin:1em auto 0;
	}
}



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

.main-item{
	
}

.main-item_wrapper{
	border-bottom: solid 1px #363630;
	padding:70px 0;
}
.main-item_wrapper:first-child{
	border-top: solid 1px #363630;
}
.main-item_wrapper .in_wrapper{
	width:95%;
	max-width:700px;
	margin:auto;
}

.main-item_title{
	font-size:28px;
}
.main-item_title span{
	font-size:50px;
	margin-left:0.1em;
}

.title_line{
	width: 1px;
	height: 65px;
	background-color: #363630;
	margin:auto;
}
@media (max-width: 768px) {
	.title_line{
		height: 40px;
	}
}

.main-item_itemset{
	margin: 2em auto 4em;
}
.main-item_itemset .item_img{
	width:170px;
	margin: auto;
}
.main-item_itemset .item_img img{
	width:100%;
}

.main-item_itemset .item_textbox{
	margin:1em;
	font-size:0.8em;
}
.item_textbox_head{
}
.item_textbox_size{
	display: inline-block;
	margin-top:1em;
	background-color: #bcb195;
	padding: 2px 10px 0;
	color:#fff;
	font-size:0.6em;
	border-radius: 3px;
}
.item_textbox_text span{
	display: inline-block;
	margin-top:1.5em;
	padding-top: 1em;
	border-top: solid 1px #363630;
}
.item_link a{
	font-size:0.8em;
	text-decoration: underline;
	font-weight:700;
}
.item_link a::before{
	content: "> ";
}


.staffcomment_box{
	margin-top:3em;
	text-align: left;
	font-size:0.8em;
}
.staffcomment_box_head{
	margin-bottom:0.2em;
	font-size:1.8em;
	font-weight:700;
}
.staffcomment_box_head span{
	margin-left:1em;
	font-size:0.5em;
	letter-spacing: 0;
}


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

.contents-footer{
	
}

.contents-footer_line{
	width:1px;
	height:150px;
	background-color: #363630;
	margin:auto;
}

.contents-footer_logo{
	margin-left: auto;
	margin-right: auto;
	width:250px;
	max-width: 40%;
}
.contents-footer_logo img{
	width:100%;
}



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





/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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.フェードで画像切り替え
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.fade-img {
  position:relative;
  width: 100%;
  height: auto;
}
.ratio-800_880:before{
	content: "";
    display: block;
    padding-top: 110%; /* 画像の縦横比で変化(現在1500x1800用) */
}
.fade-img img {
  position: absolute;
  left:0px;
  top:0px;
  width: 100%;
  height: 100%;
}