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

/*google fonts*/

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

■FSの設定打消し
■PC版とSP版での表示切替設定（見出しや改行などPCとSPの表示を分けたい場合に使用）

1.全体
2.共通フォーマット（ボタンデザインなど）
3.メインビジュアル
4.イントロダクション
5.アイテム
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;*/
	margin-top:-5px;
	background-color: #fff;
}
@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.5;
	letter-spacing: 0.07em;
	font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', serif;
	font-weight: 500;
	color:#313131;
}
@media screen and (max-width:768px) {
	.js-main{
		padding-top:0;
	}
}

/*リンクの設定*/
.js-main a{
	text-decoration:none;
	color:#313131;
}
.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:100%;
	max-width:980px;
	margin:auto;
}


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

/*ボタン*/
.button019 a {
    background: #393f5c;
    /*border-radius: 3px;*/
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 280px;
    padding: 10px 25px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 400;
	border:solid 1px #393f5c;
}
.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: #393f5c;
  color: #FFF;
  opacity: 0.5;
}
.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;
	}
}

/*見出し*/

/*コンテンツ部分の背景色*/
.contents_bgcolor{
	width:100%;
	background-color: #fff;
}

/*背景色*/
.bg-color01{
	background: #fff;
}


/*テキスト色*/
.font-color01{ /**/
	color:#db7e76;
}

/*フォント*/
/*フォント指定*/
.font-01{ /*明朝系*/
	font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', serif;
}
.font-02{ /*ゴシック系*/
	font-family: 'Avenir','Helvetica Neue','Helvetica','Arial', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
}

.bold{ /*太字*/
	font-weight: bold;
}


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

/*ビジュアル用背景画像の設定/iPhone対応版*/
body:before{
  content:"";
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height:auto;
  min-height:100vh;
  background:url("../img/main_back.jpg?timestamp=240904-2") center no-repeat;
  background-size:cover;
}
@media screen and (max-width: 768px){
	body:before{
		width:100%;
  		height:auto;
		min-height:100vh;
		background:url("../img/main_back.jpg?timestamp=240904-2") center no-repeat;
		background-size:cover;
	}
}

/*要素上下左右中央寄せ*/
.main-visual{
	display: flex;
  	justify-content: center;
  	align-items: center;
	min-height: 100vh;
	
	text-align: center;
}

.main-visual_contents{
	width:80%;
	max-width:741px;
	background: rgba(255,255,255,0.85);
	padding:90px;
	
	margin: 40px auto;
}
.main-visual_logo{
	width:85%;
	max-width:506px;
	margin:auto;
}
.main-visual_logo .title-logo{
	margin:auto;
}
.main-visual_logo .title-blrand_logo{
	width:50%;
	margin: 3em auto 0;
}
.main-visual_logo .title-logo img{
	width:100%;
}
.main-visual_logo .title-blrand_logo img{
	width:100%;
}
.main-visual_txt{
	margin: 4em auto 0;
	line-height: 2;
}
@media screen and (max-width: 768px){ 
	.main-visual_contents{
		padding: 15% 5%;
	}
	.main-visual_txt{
		font-size:0.9em;
	}
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.イントロ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-intro{
	
}

.main-intro_wrapper{
	text-align: left;
}
.main-intro_item01{
	
}
.main-intro_item02{
	
}
.main-intro_item02 img{
	width:100%;
}

/*見出し*/
.main-intro_title{
	font-size:1.55em;
	letter-spacing: 0;
}
/*本文*/
.main-intro_text{
	margin-top:2em;
	font-size:0.8em;
	line-height: 2;
}

/*PC*/
@media (min-width: 769px) {
	.main-intro_wrapper{
		/*フレックスボックスの設定*/
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		/*フレックスボックスの要素を左寄せ*/
		justify-content: left;
		align-items: flex-start;
	}
	.main-intro_item01{
		width:50%;
		padding-right:60px;
	}
	.main-intro_item02{
		width:50%;
	}
}

/*SP*/
@media (max-width: 768px) {
	.main-intro_wrapper{
		max-width:90%;
		margin-left:auto;
		margin-right:auto;
	}
	.main-intro_item01{
		margin-bottom:2em;
	}
}



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


.main-item{
	
}

/*ヘッダ*/
.main-item_head{
	position: relative;
	
	width:100%;
	height:50vh;
	min-height:300px;
}
.main-item_head_img{
	position: absolute;

	width:100%;
	height:50vh;
	min-height:300px;
	
	z-index: 1;
}
.main-item_head::before {
	content: "";
    position: absolute;
    width: 100%;
    height: 40%;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.5), transparent);
	
	z-index: 2;
}
.main-item_head_txt{
	position: absolute;
	bottom:3%;
	left:15%;
	
	text-align: left;
	color:#fff;
	
	z-index: 3;
}
/*SP*/
@media (max-width: 768px) {
	.main-item_head{
		height:70vh;
	}
	.main-item_head_img{
		height:70vh;
	}
	.main-item_head_txt{
		left:5%;
	}
}
/*ヘッダ文字*/
.head_txt_inner{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: center;
	align-items: center;
	
	font-weight:400;
}
.head_txt01{
	font-size:4em;
	padding-right:0.2em;
}
.head_txt02{
	width:auto;
	min-width:150px;
}
.head_txt02-01{
	padding-bottom:0.1em;
	margin-bottom:0.2em;
	border-bottom: solid 1px #fff;
}
.head_txt02-02{
	font-size:0.7em;
}


/*イメージ*/
.item_set01{
	width:95%;
	max-width: 794px;
	
	text-align: left;
	margin-left:auto;
	margin-left:right;
}

/*set01*/
.item_set01_wrapper{
	width: 100%;	
	height: 0;
	position: relative;
	padding-top: 102%;/*横794px 高さ810px*/
}
.item_set01_wrapper > div{
	position: absolute;
	height: auto;
}
.item_set01_wrapper img{
	width:100%;
}
.item_set01_in01{
	width: 60.579345%;
	top: 0;
	left: 0;
	z-index: 1;
}
.item_set01_in02{
	width: 45.717884%;
	bottom: 0;
	right: 0;
	z-index: 0;
}

/*set02*/
.item_set02{
	margin-right:auto;
	margin-left:auto;
}

.item_set02_in02_wrapper{
	border:solid 1px #313131;
	padding:30px;
	text-align: justify;
}
.item_set02_text01{
	font-size:0.8em;
}
.item_set02_text02{
	font-size:1.5em;
}
.item_set02_text03{
	display: inline-block;
	padding: 0 0.5em;
	font-size:0.7em;
	color:#fff;
	background-color: #d2d2d2;
}
.item_set02_text04{
	margin-top:1.8em;
	font-size:0.75em;
	letter-spacing:0;
	line-height: 1.8;
	font-weight:500;
}
.item_set02_text05{
	margin-top:1.5em;
}
/*SP*/
@media (max-width: 768px) {
	.item_set02{
		width:80%;
	}
	.item_set02_in02{
		margin-top:2em;
	}
	.item_set02_in02_wrapper{
		padding:5%;
	}
}
/*PC*/
@media (min-width: 769px) {
	.item_set02{
		width:850px;
		
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		/*フレックスボックスの要素を左寄せ*/
		justify-content: center;
		align-items: center;
	}
	.item_set02_in01{
		width:470px;
	}
	.item_set02_in02{
		padding: 0 25px 0 36px;
		width:380px;
	}
	
}
/*ボタン*/
.button_item a {
    background: #6b6b6b;
    /*border-radius: 3px;*/
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 0.5em;
	width:100%;
    /*max-width: 90%;*/
    padding: 8px 15px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 300;
	font-size:0.8em;
	border:solid 1px #6b6b6b;
}
.button_item 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);
}
.button_item a:hover {
  background: #6b6b6b;
  color: #FFF;
  opacity: 0.5;
}
.button_item a:hover:after {
  right: 1.4rem;
}
/*ボタンSP*/
@media (max-width: 768px) {
	.button_item a {
		 padding: 12px 15px;
	}
}



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

.item_lineup{
	width:100%;
	background-color: #f2f3f7 ;
}
.item_lineup_title{
	color: #434343;
	font-size:1.5em;
	font-weight:400;
}



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

.contents-footer{
	
}

/*線*/
.contents-footer_line{
	width:1px;
	height:150px;
	background-color: #ccc;
	margin:auto;
}

/*ロゴ*/
.contents-footer_logo{
	margin-left: auto;
	margin-right: auto;
	width:200px;
	max-width: 40%;
}
.contents-footer_logo img{
	width:100%;
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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：スクロールアニメーション
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


/*animation-ふわっと出現*/
/* 基本のスタイル */
.animation.delighter {
	  transition: all .8s ease-out;
      transform: translateX(0%);
      opacity: 0;
   }
 
/* スタート時のスタイル */
   .animation.delighter.started {
      transform:none;
	  opacity:1;
   }
 
/* エンド時のスタイル */
   .animation.delighter.started.ended {
      
   }
