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

/*googlefonts*/

/*Adobefonts*/

/*

*/

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

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

/*全体の設定/フォントなど*/
.js-main{
	text-align: center;
	line-height: 1.8;
	letter-spacing: 0.05em;
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-weight: 400;
	color:#191919;
	font-size:12px;
}
@media screen and (max-width:768px) {
	.js-main{
		padding-top:0;
	}
}

/*リンクの設定*/
.js-main a{
	text-decoration:none;
	color:#524442;
}
.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;
	}
}

/*PC980px、SP100%*/
.js-container{
	width:980px;
	margin:auto;
}
@media screen and (max-width: 768px){   
	.js-container{
		width:100%;
	}
}


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

/*ボタン*/
.btn01{
  width:200px;
  padding: 0.8em 0 0.8em 0;
  font-size: 1.25em;
  position: relative;
  text-align: center;
  text-decoration: none;
  display: block;
  margin: 1em auto;
  color: #fff;
  background-color: #111;
  line-height: 1;
  border-radius: 50px;
  transition: all .2s;
	
  border: 1px solid #111;
}
.btn01:hover {
  background-color: transparent;
  border-color: #111;
  color: #111;
}


/*メインの余白の指定*/
.main-padding{
	padding-top:116px;
	padding-bottom:116px;
}
@media screen and (max-width: 768px){
	.main-padding{
		padding-top:5em;
		padding-bottom:5em;
	}
}







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

.main-visual{
	margin-bottom:0;
	width:100%;
	
	background: -webkit-linear-gradient(top left, #d3e0f6, #fce0f5);
    background: -o-linear-gradient(top left, #d3e0f6, #fce0f5);
    background: linear-gradient(to bottom right, #d3e0f6, #fce0f5);
}

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

.main-img{
	position: absolute;
	
	line-height: 0;
}
/*PC*/
@media screen and (min-width: 769px){
	.main-img{
		width:1500px;
		
		top: 50%;
 		left: 50%;
  		-ms-transform: translate(-50%,-50%);
  		-webkit-transform: translate(-50%,-50%);
  		transform: translate(-50%,-50%);
	}
}
/*SP*/
@media screen and (max-width: 768px){
	.main-img{
		top: 0;
	
		width:100%;
		height: auto;
	}
}
.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.interval
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.interval{
	width:100%;
	padding:50px 0;
	
    background: -webkit-linear-gradient(top left, #d3e0f6, #fce0f5);
    background: -o-linear-gradient(top left, #d3e0f6, #fce0f5);
    background: linear-gradient(to bottom right, #d3e0f6, #fce0f5); 
	
	color:#fff;
	font-family: serif;
}




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



/*～～～～アイテム～～～～*/

.item_container{
	margin:150px auto;
	text-align: center;
}
@media (max-width: 768px) {
	.item_container{
		margin:20vw auto;
	}
}

.item_title img{
	width:320px;	
}
.item_main-img{
	margin:4em auto;
}
.item_main-img img{
	width:980px;	
}
@media (max-width: 768px) {
	.item_title img{
		width:70%;
	}
	.item_main-img img{
		width:100%;
	}
}

/*～～～～アイテム写真～～～～*/
.item_img_container{
	width:100%;
	padding:5em 0;
}
@media (max-width: 768px) {
	.item_img_container{
		padding:10vw 0;
	}
}

/*タイトル*/
.item_img_title{
	font-family: serif;
}
.item_img_title .left{
	font-size:6em;
	vertical-align: middle;
}
.item_img_title .right{
	display: inline-block;
	color:#fff;
	background-color: #000;
	font-size:1.25em;
	padding: 0 3em;
	margin-left:1em;
	vertical-align: middle;
}
@media (max-width: 768px) {
	.item_img_title .left{
		font-size:5em;
	}
	.item_img_title .right{
		font-size:0.7em;
	}
}

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


/*色*/
.on{
	background-color: #edf4ff;
	color:#b7d2ff;
}
.on .item_img_title .right{
	background-color: #b7d2ff;
}

.off{
	background-color: #ffedee;
	color:#ffb6bb;
}
.off .item_img_title .right{
	background-color: #ffb6bb;
}

/*アイテムリスト*/
.itemlist_title{
	margin-top:1.5em;
	font-size:1.25em;
	font-family: serif;
}
.itemlist_item{
	margin-top:0.5em;
	color:#191919;
	font-size:1em;
}
.itemlist_item a{
	text-decoration: underline;
	font-weight: 600;
}
@media (max-width: 768px) {
	.itemlist_title{
		font-size:1em;
	}
	.itemlist_item{
		font-size:0.8em;
	}
	
}

/*～～～～interval画像～～～～*/
.int_img-box{
	
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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:0;
	padding:150px 0 30px;
	width:100%;
	
	/*background-color: #fff;*/
}
.footer-title img{
	width:400px;
}
@media (max-width: 768px) {
	.footer-title{
		padding:5em 0 2em;
	}
	.footer-title img{
		width:50%;
	}
}

/*プロフィール*/
.main-profile{
	margin-top:0;
	padding:80px 0;
	
	/*background-color: #fff;*/
}
.main-profile_box{
	margin:auto;
	width:500px;
	/*padding:2em 0;*/
	/*border-top:solid 2px #000;
	border-bottom:solid 2px #000;*/
	
	font-size:0.8em;
}
@media screen and (max-width: 768px){   
	.main-profile_box{
		width:80%;
	}
}

.profile_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央寄せ*/
	justify-content: center;
	
	width:100%;
	margin:auto;
	text-align: left;
}
@media screen and (max-width: 768px){   
	.profile_box{
		display: block;
		width:100%;
	}
}

.profile_box img{
	width:100%;
}
.profile_image{
	width:30%;
}
@media screen and (max-width: 768px){   
	.profile_image{
		margin:auto;
		width:50%;
	}
}
.profile_text{
	width:70%;
	padding-left:20px;
}
@media screen and (max-width: 768px){   
	.profile_text{
		margin:2em auto;
		width:100%;
		padding-left:0;
	}
}
.profile_text_innner{
	
}
.intro_name_box{
	vertical-align:bottom;
}

.intro_name{
	font-size:2em;
	font-family: 'Noto Serif JP', serif;
}
.intro_name2{
	
}
.intro_link img{
	width:20px;
}

.intro_text{
	margin-top:2em;
	text-align:left;
}
@media screen and (max-width: 768px){   
	.intro_text{
		text-align:left;
	}
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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;
	
	font-family: futura-pt,sans-serif;
	font-weight: 500;
	font-style: normal;
}
.contents-link_t .t02{
	padding-top:0.2em;
	font-size:1.2em;
}


/*リンクエリア：フレックスボックス*/
.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}
}



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

