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

@import url("https://use.typekit.net/eng5qxu.css");
/*
font-family: rufina-stencil-alt-02, sans-serif;
font-weight: 400;
font-style: normal;
*/

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

■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: #f5f2f2;
}

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

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

/*フォント*/
/*Rufina Stencil Alt 02*/
.font-01{
	font-family: rufina-stencil-alt-02, sans-serif;
	font-weight: 400;
	font-style: normal;
}



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

.main-visual{

}

.maintitle_text,.maintitle_text_sub{
	margin:100px auto;
}

.maintitle_text01{
	font-size:25px;
	font-weight: 500;
	
	margin-bottom:-10px;
}
.maintitle_text02{
	font-size:68px;
	letter-spacing: 0.05em;
	
	margin-bottom:-30px;
}
.maintitle_text03{
	font-size:17px;
	font-weight: 500;
	
	margin-bottom:5px;
}
.maintitle_text04{
	font-size:14px;
	font-weight: 500;
	
	display: inline-block;
	padding: 0 2.2em;
	border-top: solid 1px #000;
	border-bottom: solid 1px #000;
}



.maintitle_text_sub01{
	font-size:24px;
}
.maintitle_text_sub02{
	font-size:14px;
	font-weight: 500;
}



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

.contents-item{
	margin:5em auto 5em;
}

/*アイテム*/
.item-box{
	margin-bottom:350px;
}
@media screen and (max-width: 768px){
	.item-box{
		margin-bottom:8em;
	}
}
.item-box img{
	width:100%;
}


/*見出し画像*/
/*PC*/
.item-box_img01{
	width:920px;
	margin:auto;
}
.item-box_img01 .img01-01{
	width:600px;
}
.item-box_img01 .img01-02{
	margin-top:-280px;
	
	width:290px;
}
/*SP*/
@media screen and (max-width: 768px){
	.item-box_img01{
		width:95%;
	}
	.item-box_img01 .img01-01{
		width:80%;
	}
	.item-box_img01 .img01-02{
		margin-top:-10vw;
		
		width:40%;
	}
}
/*左右入れ替え*/
/*大きい画像が左*/
.left .img01-01{
	margin-right:auto;
	margin-left:0;
}
.left .img01-02{
	margin-right:0;
	margin-left:auto;
}
/*大きい画像が右*/
.right .img01-01{
	margin-right:0;
	margin-left:auto;
}
.right .img01-02{
	margin-right:auto;
	margin-left:0;
}


/*テキスト*/
.item-box_textbox{
	/*フレックスボックスの設定*/
	display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素の寄せ設定*/
	justify-content: center;
	align-items: center;
	
	margin:100px auto 50px;
}
.item-box_text01{
	/*width:20%;*/
	padding-right:20px;
	font-size:72px;
}
.item-box_text02{
	/*width:80%;*/
	padding-left:20px;
	border-left:solid 1px #000;
	
	text-align: left;
}
.item-box_text-head{
	font-size:32px;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom:10px;
}
.item-box_text-sub{
	font-size:11px;
}
@media screen and (max-width: 768px){
	.item-box_textbox{
		margin:3em auto 1.5em;
	}
	.item-box_text01{
		font-size:3em;
		padding-right:10px;
	}
	.item-box_text-head{
		font-size:1.1em;
		line-height: 1.4;
	}
	.item-box_text-sub{
		font-size:0.5em;
	}
}


/*アイテム画像*/
.item-box_itemimg{
	margin:auto;
	width:330px;
	
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素の寄せ設定*/
	justify-content: center;
	align-items: center;
}
.item-box_itemimg01,.item-box_itemimg03{
	width:45%;
}
.item-box_itemimg02{
	width:10%;
	font-size:2em;
}
@media screen and (max-width: 768px){
	.item-box_itemimg{
		width:60%;
	}
}


/*アイテムリンク*/
.item-box_itemlink{
	margin:30px auto 100px;
}
.item-box_itemlink a{
	text-decoration: underline;
}
.itemlink_head{
	display: inline-block;
	margin-bottom:0.8em;
	
	background-color: #000;
	color:#fff;
	font-size:0.8em;
	
	padding: 0.5em 2em 0em;
}
.itemlink_item{
	margin-bottom:0.5em;
	font-size:0.8em;
	font-weight: 500;
}
@media screen and (max-width: 768px){
	.item-box_itemlink{
		font-size:0.8em;
		margin:2em auto 4em;
	}
	.itemlink_head{
		padding: 0.3em 2em 0em;
	}
}


/*下部の画像*/
/*2カラム*/
.item-box_img02_2clm{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素の寄せ設定*/
	justify-content: center;
	align-items: center;
	
	width:800px;
	margin:auto;
}
.item-box_img02_2clm_item{
	width:50%;
	padding:10px;
}
@media screen and (max-width: 768px){
	.item-box_img02_2clm{
		width:95%;
	}
	.item-box_img02_2clm_item{
		padding:5px;
	}
}
/*1カラム*/
.item-box_img02_1clm{
	width:520px;
	margin:auto;
}
@media screen and (max-width: 768px){
	.item-box_img02_1clm{
		width:80%;
	}
}


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

.profile{
	
}

.profile_container{
	margin:auto;
	width:300px;
	padding:50px;
	/*background-color: #fef0f1;*/
}
@media (max-width: 768px) {
	.profile_container{
		width:70%;
		padding:10%;
	}
}

.profile_img img{
	border-radius: 50%;
}
@media (max-width: 768px) {
	.profile_img img{
		width:50%;
	}
}
.profile_name{
	margin-top:0.5em;
	font-size:1.5em;
	font-weight: 500;
}
.profile_link{
	
}
.profile_text{
	margin-top:1.5em;
	font-size:0.7em;
	text-align: justify;
	line-height:1.8;
	
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}


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

.contents-footer{
	margin:4em auto;
	
	font-family: sans-serif;
}
.contents_brand_top{
	margin:3em auto;
}
.brand_under-text{
	margin-top:1em;
}

/*SP*/
@media (max-width: 768px) {
	.contents_brand_top{
		width:50%;
	}
}


/*タイトル画像部分*/
.footer-title{
	margin-bottom:80px;
	/*padding:150px 0 30px;*/
	width:100%;
	
	/*background-color: #fff;*/
}
.footer-title img{
	width:351px;
}
@media (max-width: 768px) {
	.footer-title{
		/*padding:5em 0 2em;*/
	}
	.footer-title img{
		width:40%;
	}
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
9.リンクエリア
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-link{
	padding-top:50px;
	padding-bottom:50px;
	width:100%;
	background-color: #fff;
}

.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:パンくずリスト　
----------------------------------------*/
.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);
}



