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

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

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

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

/*全体の設定/フォントなど*/
.js-main{
	text-align: center;
	/*font-size:1.3rem;*/
	line-height: 1.5;
	letter-spacing: 0.07em;
	font-family:'Noto Sans JP','Helvetica Neue', Arial,'Hiragino Kaku Gothic ProN','Hiragino Sans', Meiryo, sans-serif;
	font-weight: 400;
}
@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;
	}
}

/*PC1200px、SP100%*/
.js-container {
	width:100%;
	max-width:1200px;
	margin:auto;
}


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

/*ボタン茶色*/
.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;
	}
}

/*フォント*/
/*Amiri*/
.font-01{
	font-family: 'Amiri', serif;
}

/*背景白*/
.bgcolor-01{
	background-color: #fff;
}

/*padding*/
.main-padding{
	padding-top:100px;
	padding-bottom:100px;
}
@media screen and (max-width: 768px){
	.main-padding{
		padding-top:5em;
		padding-bottom:5em;
	}
}
@media screen and (max-width: 1199px){
	.contents-item .main-padding{ /*アイテムの中のみ1200px以下で上部paddingゼロ*/
		padding-top:0em;
		padding-bottom:5em;
	}
}

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

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

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

.main-text{
	margin:2em;
	font-size:0.7em;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.タイトル下テキスト
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-under{
	width:100%;
}

.main-under_wrapper{
	width:80%;
	max-width:500px;
	margin:auto;
}
.main-under_t{
	font-size:1.1em;
	letter-spacing: 0.5em;
	padding-bottom:1em;
	margin-bottom:1.25em;
	border-bottom:2px solid #2e2e2e;
}

.main-under_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: left;
	align-items: center;
	
	text-align: left;
}
.main-under_box img{
	width:100%;
}
.main-under_box_left{
	width:30%;
}
.main-under_box_right{
	width:70%;
	padding-left:30px;
}

.main-under_name{
	font-size:1.5em;
}
.main-under_text{
	font-size:0.8em;
}
.main-under_link{
	margin-top:1em;
	width:50%;
}

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

.contents-item-box{
	width:100%;
}

.contents-item{
	/*width:100%;
	max-width:1200px;
	margin:auto;*/
}


.contents-img01 img{
	width:100%;
}

.contents-img02_wrapper{
	position: relative;
	width:980px;
	height:780px;
	margin: 80px auto 80px;
	
}
.contents-img02_wrapper img{
	width:100%;
}
.contents-img02_01{
	position: absolute;
	top:0;
	right:10.204082%;
	width:25.204082%;
	z-index: 1;
}
.contents-img02_02{
	position: absolute;
	top:3.846154%;
	left:0;
	width:47.142857%;
}
.contents-img02_03{
	position: absolute;
	right:14.285714%;
	bottom:0;
	width:33.877551%;
}
@media screen and (max-width: 989px){
	.contents-img02_wrapper{
		width:100vw;
		height:140vw;
		margin: 40px 0 40px;
	}
	.contents-img02_01{
		top:20%;
		width:28%;
	}
	.contents-img02_02{
		top:5vw;
		left:5vw;
		width:60%;
	}
	.contents-img02_03{
		right:10vw;
		bottom:0;
		width:45%;
	}
}

@media screen and (max-width: 989px){
	.contents-img03{
		margin:auto;
		width:90%;
	}
}

/*組みpattern002*/
.reverse .contents-img02_01{
	top:0;
	left:10.204082%;
	width:25.204082%;
}
.reverse .contents-img02_02{
	top:3.846154%;
	right:0;
	left:auto;
	width:47.142857%;
}
.reverse .contents-img02_03{
	left:14.285714%;
	bottom:0;
	width:33.877551%;
}
@media screen and (max-width: 989px){
	.reverse .contents-img02_01{
		top:20%;
		width:28%;
	}
	.reverse .contents-img02_02{
		top:5vw;
		right:5vw;
		width:60%;
	}
	.reverse .contents-img02_03{
		left:10vw;
		bottom:0;
		width:45%;
	}
}


/*アイテムリンク*/
.item_link{
	margin-top:80px;
	font-size:0.7em;
}
.item_link img{
	width:100%;
}
.item_link_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: center;
	align-items: center;
	
	width:80%;
	max-width:400px;
	margin:auto;
}
.item_link_item{
	width:33%;
	padding:3%;
	margin-bottom:2em;
}
/*item04のみSP2列/PC1列 開始*/
@media screen and (min-width: 769px){
	.item04 .item_link_box{
		width:55%;
		max-width:450px;
	}
	.item04 .item_link_item{
		width:25%;
	}
}
@media screen and (max-width: 768px){
	.item04 .item_link_box{
		width:55%;
	}
	.item04 .item_link_item{
		width:50%;
		padding:5%;
		margin-bottom:1.5em;
	}
}
/*item04のみSP2列/PC1列 終了*/

.link_text02{
	font-size:0.6em;
}
.item_link_item .btn01{
	width:100%;
	padding: 0.1em;
}
@media screen and (max-width: 768px){
	.item_link{
		margin-top:4em;
	}
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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_head{
	margin-top:2em;
	font-size:0.5em;
}
.profile_name{
	margin-top:0.25em;
	font-size:1.5em;
}
.profile_name_sub{
	margin-top:-0.2em;
	font-size:0.6em;
}
.profile_text{
	margin-top:1.5em;
	font-size:0.7em;
	text-align: justify;
	line-height:1.8;
}
.profile_link{
	margin-top:1em;
}
.profile_link img{
	width:60%;
}


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

.contents-footer{
	margin:4em auto;
}
.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:280px;
}
@media (max-width: 768px) {
	.footer-title{
		/*padding:5em 0 2em;*/
	}
	.footer-title img{
		width:45%;
	}
}



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