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

/*google fonts*/

/*Adobe fonts*/
@import url("https://use.typekit.net/pnq5haa.css");
/*Adobe Garamond Pro Regular
font-family: "adobe-garamond-pro", serif;
font-weight: 400;
font-style: normal;

Adobe Garamond Pro Semibold
font-family: "adobe-garamond-pro", serif;
font-weight: 600;
font-style: normal;
*/

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

■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;
}
/*メインエリアの横幅制限解除ここまで*/

@media screen and (max-width:768px) {
	.fs-l-main{
		padding-top:0!important;
	}
}

.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;
}

/*フッターの色変更*/
#footer.second-page .footer-sp,
#footer.second-page .footer__follow{
	background-color: #e69d8e ; 
}
#footer.second-page .footer__info{
	background-color: #fcf5f5 ; 
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■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: 450px){   
  .pc { display:none; }
  .sp { display:block; }
}



/*================================
1.全体
================================*/

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

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

/*リンクの設定*/
.js-main a{
	text-decoration:none;
	color:#212121;
}
.js-main a:hover,a:hover img{
	opacity:0.8;
    -moz-opacity:0.8;
    filter:alpha(opacity = 80);
}


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

/*PC550px、SP100%*/
.js-container{
	width:90%;
	max-width:450px;
	margin:auto;
}


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

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


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

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

/*見出し*/
.main_title{
	
}
.main_title_text01{
	font-size: 1.8em;
}
.main_title_text02{
	font-size:0.8em;
}


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

/*背景色*/
.bg-color01{/*ピンク*/
	background-color: #d59986 ;
}
.bg-color02{/*薄めピンク*/
	background-color: #f7ebe7 ;
}

/*フォント*/
/*フォント指定*/
.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;
}
.font-03{ /*Adobe Garamond Pro Regular*/
	font-family: "adobe-garamond-pro", serif;
	font-weight: 400;
	font-style: normal;
}
.font-04{ /*Adobe Garamond Pro Semibold*/
	font-family: "adobe-garamond-pro", serif;
	font-weight: 600;
	font-style: normal;
}
.bold{ /*太字*/
	font-weight: bold;
}





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

.main-visual{
	margin: 0 calc(50% - 50vw);  /* 画面幅いっぱいにはみ出させるためのネガティブマージン */
	width: 100vw;/* 幅を画面幅いっぱいに指定 */
}
.main-visual img{
	width:100%;
	/*width:80%;
	max-width: 300px;*/
}

.main-visual_wrapper{
	display: flex;
    justify-content: center;
    align-items: center;
	/*padding-bottom: 60px;*/
	
	height:500px;
}

h1 {
	margin:0;
	line-height:1;
}
.main-visual_title{
	width:100%;
	letter-spacing: 0.1em;
}
.main-title_01{
	font-size: 0.8em;
	margin:auto;
}
.main-title_02{
	margin-top: 15px;
	font-size:40px;
}
.main-title_03{
	display: inline-block;
	color: #fff;
	padding: 2px 0.5em 0 0.5em;
	
	font-size:25px;
	margin-top: 15px;
}
.main-title_04{
	font-size:20px;
	margin-top: 20px;
}
.main-title_04 span{
	font-size:15px;
}
.main-title_line{
	width: 1px;
	height:20px;
	background-color: #000;
	margin: 10px auto ;
}


@media screen and (max-width: 450px){
	.main-title_01{
		font-size:5vw;
	}
	.main-title_02{
		font-size:11vw;
	}
	.main-title_03{
		font-size:6vw;
		margin-top: 3vw;
	}
	.main-title_04{
		font-size:5vw;
		margin-top: 5vw;
	}
	.main-title_04 span{
		font-size:3vw;
	}
}


/*白ver*/

.color_white{
	color: white;
}
.color_white .main-title_line{
	background-color: white;
}


/*ブランド別表示分け*/
/*lpg*/
#brand_lpg .main-title_01,
#brand_lpg .main-title_02,
#brand_lpg .main-title_04{
	
}
/*lvn*/
#brand_lvn .main-title_01,
#brand_lvn .main-title_02,
#brand_lvn .main-title_04{
	color: #fff;
	text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}
/*psc*/
#brand_psc .main-title_01,
#brand_psc .main-title_02,
#brand_psc .main-title_04{
	color: #fff;
	text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
	
}
/*hit*/
#brand_hit .main-title_01,
#brand_hit .main-title_02,
#brand_hit .main-title_04{
	color: #fff;
	text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}





/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.日程
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-date{
	margin: 0 calc(50% - 50vw);  /* 画面幅いっぱいにはみ出させるためのネガティブマージン */
	width: 100vw;/* 幅を画面幅いっぱいに指定 */
	
	color: #fff;
	padding-top: 1em;
	padding-bottom: 0.8em;
	
	letter-spacing: 0.05em;
}

.main-date_t01{
	font-size: 14px;
}
.main-date_t02{
	line-height: 1.2;
	font-size: 23px;
}
.main-date_t02 span{
	font-size: 35px;
}

@media screen and (max-width: 450px){
	.main-date_t01{
		font-size: 3.5vw;
	}
	.main-date_t02{
		font-size: 5vw;
	}
	.main-date_t02 span{
		font-size: 8vw;
	}
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.introduction
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-intro{
	
}

.intro_text_set{
	margin:3em auto;
}
.intro_text_set_head{
	font-size: 1em;
	margin-bottom:0.9em;
}
.intro_text_set_title{
	font-size: 1.9em;
	font-weight: 700;
	margin-bottom:0.5em;
	line-height: 1.3;
}
.intro_date02{
	font-weight: 200;
	font-size: 0.5em;
}

.intro_text_set_contents{
	
}
/*SP*/
@media (max-width: 450px) {
	.intro_text_set_title{
		font-size: 6vw;
	}
}




.floor_map{
	background-color: #e7e7e7;
	width:100%;
	margin:auto;
	padding:20px;
}
.floor_map img{
	width:100%;
}


.map_btn{
	display: inline-block;
	background-color: #000;
	color: #fff;
}
.map_btn a{
	display: block;
	color: #fff;
	padding: 0.5em 1em 0.2em;
	line-height: 1;
}
.map_btn:hover{
	opacity: 0.5;
}



/*comingsoon*/

.comingsoon{
	
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
6.menu
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-menu{
	
}

.menu_wrapper{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: center;
	align-items: stretch;
	
	margin: auto;
	width:100%;
}
.menu_wrapper > div {
	/*列数と間の余白の設定*/
	width: calc( ( 100% - 20px ) / 3 );
	margin-right: 10px;
	margin-bottom:20px;
	
	/*文字中央配置*/
	/*display: flex;
    align-items: center;
	justify-content: center;*/
	line-height: 1.4;
}
/*右端のマージンをゼロ設定*/
.menu_wrapper > div:nth-child( 3n ),
.menu_wrapper > div:last-child{
	margin-right: 0;
}
/*最下段の下部マージンをゼロ設定*/
/*.menu_wrapper > div:nth-last-child(-n+3){
	margin-bottom: 0;
}*/
/*SP*/
@media (max-width: 450px) {
	.menu_wrapper{
		width:100%;
	}
	.menu_wrapper > div {
		width: calc( ( 100% - 3vw ) / 3 );
		margin-right: 1.5vw;
	}
}


/*ボタン*/
/* ボタンの外枠 */
.menu_item {
    border: solid 1px #000;
    padding: 0; /* 親の余白をゼロにする */
}
/* リンク（ボタン全体） */
.menu_item a {
    display: flex; /* Flexboxに変更 */
    align-items: center; /* 垂直方向中央 */
    justify-content: center; /* 水平方向中央 */
    width: 100%;
    height: 100%;
    padding-top: 0.6em;
    padding-bottom: 0.4em;
    text-decoration: none; /* 下線を消す場合 */
    color: inherit; /* 文字色を継承 */
    transition: background-color 0.3s; /* 滑らかに色を変える（任意） */
}

/* ホバー時 */
.menu_item a:hover {
    background-color: #d59986;
    color: #fff;
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
7.ブランドエリア
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


.main-brand_area{
	margin: 0 calc(50% - 50vw);  /* 画面幅いっぱいにはみ出させるためのネガティブマージン */
	width: 100vw;/* 幅を画面幅いっぱいに指定 */
}

/*タブ*/
.tab-group {
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: center;
	align-items: center;
	
	list-style: none;
	/*padding: 0;*/
	/*gap: 10px;*/ /* アイコン同士の間隔 */
	cursor: pointer;
	
	width: 100%;
	margin: 2em auto;
}
ul.tab-group{
	padding-inline-start: 0;
}
.tab {
	width: calc( ( 100% - 20px ) / 5 );
	margin-right: 5px;
	
	opacity: 0.5; /* 通常時は少し薄くする */
	transition: opacity 0.3s;
}
.tab:nth-child( 5n ) {
	margin-right: 0;
}
.tab img {
	width: 100%; /* アイコンのサイズ（適宜調整してください） */
	height: auto;
}
/* 選択されているタブをハッキリ見せる */
.tab.active {
	opacity: 1;
	border-bottom: 3px solid #000;
}



/*タブコンテンツ*/
.tab-content{
	width: 100%;
	margin: 2em auto;
	background-color: #fff;
}

.tab-content_head{
	color: #fff;
}
.tab-content_innner{
	padding-left:  15px;
	padding-right:  15px;
	padding-bottom:  1em;
	text-align: left;
}
/**ふわっと切り替える/
/* コンテンツエリアの基本設定 */
.tab-content {
    opacity: 0;           /* 最初は透明 */
    visibility: hidden;    /* クリックできないように隠す */
    display: none;        /* スペースを詰めたい場合は併用 */
    transition: opacity 0.5s ease; /* 0.5秒かけてふわっとさせる */
}

/* 「show」クラスがついた時だけ表示 */
.tab-content.show {
    display: block;
    opacity: 1;
    visibility: visible;
}




.main-contents{
	text-align: left;
}
.main-contents img{
	width:100%;
}
@media (max-width: 450px) {
	.main-contents{
		
	}
}

.contents_set{
	margin-top:2em;
	margin-bottom:2em;
	
	border-bottom: solid 1px #e0e0e0;
}
.contents_set:last-child{
	border-bottom: none;
}


.contents_header{
	margin-bottom:1em;
}
.contents_header_t01{
	font-size:1em;
}
.contents_header_t02{
	margin-top:0.1em;
	line-height: 1.25;
	font-size:2em;
}
@media (max-width: 450px) {
	.contents_header_t01{
		font-size:4vw;
	}
	.contents_header_t02{
		font-size:7vw;
	}
}
.contents_innner{
	margin-bottom:3em;
}

.contents_text{
	margin-top:1.5em;
}

.contents_text01{
	font-size:1.65em;
	margin-bottom:0.4em;
	font-weight:700;
	line-height: 1.25;
}
@media (max-width: 450px) {
	.contents_text01{
		font-size:6vw;
	}
}
/*注意事項のところのみ変更*/
#attention .contents_text01{
	margin-top:2em;
	font-size:1.2em;
}


/*coming soon*/
.contents_comingsoon{
	text-align: center;
	font-size:1.5em;
	line-height: 1;
}



/*陳列型*/
/*アイテムリンクボックス*/
/*リンクエリア：フレックスボックス*/
.display_area_wrapper{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: left;

	text-align: left;
}
.display_area_wrapper > div {
	/*列数と間の余白の設定*/
	width: calc( ( 100% - 0px ) / 3 );
	margin-right: 0;
}
/*右端のマージンをゼロ設定*/
.display_area_wrapper > div:nth-child( 3n ) {
	margin-right: 0;
}
.display_item{
	/*padding-bottom:20px;*/
	line-height: 0;
}
.display_item img{
	width:100%;
}
@media (max-width: 768px) {
	.display_area_wrapper{
		/*padding:0 4vw;*/
	}
	.display_area_wrapper > div {
		/*列数と間の余白の設定*/
		/*width: calc( ( 100% - 2vw ) / 3 );
		margin-right: 1vw;*/
	}
	.display_area_wrapper > div:nth-child( 3n ) {
		margin-right: 0;
	}
}



/*リスト表示*/
.contents_list {
    /* 1. 中黒がはみ出さないよう、最低限の余白を親に持たせる */
    padding-left: 1.2em; 
    margin-left: 0;
    
    /* リストの「点」を維持する */
    list-style-type: disc;
	
	text-align: left;
}

.contents_list li {
    /* 2. 点を文章の外側に配置し、2行目以降の開始位置を文字の先頭に揃える */
    list-style-position: outside;
    
    /* 項目間の余白 */
    margin-bottom: 10px;
}

.contents_list a{
	text-decoration: underline;
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
8.注意事項など
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-attention{
	/*width:90%;
	margin-right: auto;
	margin-left: auto;*/
}










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

.contents-footer{
	
}

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

.footer_brandlogo{
	width:80%;
	margin: 6em auto;
}

@media screen and (max-width: 450px){
	
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.Swiper：スワイパー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.swiper {

}

.swiper img{
	width:100%;

}


.swiper a:hover,a:hover img{
	opacity: 1;
}

.swiper-wrapper{
	height:auto;
}

.swiper-slide {
	
}

.swiper-pagination-bullet{
    background-color: #fff;
}
.swiper-pagination-bullet-active{
   background-color: #fff;
}

/*.swiper-container{
	position: relative;
}
.swiper-pagination {
	 bottom: -20px !important;
}*/



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.フェードインエフェクト
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.fadein-top {
    animation: fadeIn 2s ease 0s 1 both;
    -webkit-animation: fadeIn 2s ease 0s 1 both;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

.fadein-top2 {
    animation: fadeIn2 2s ease 0.9s 1 both;
    -webkit-animation: fadeIn2 2s ease 0.9s 1 both;
}
@keyframes fadeIn2 {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn2 {
    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 {
      
   }


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

}


/*animation_blur-じわっと出現*/
/* 基本のスタイル */
.animation_blur.delighter {
  opacity: 0;
  -moz-transition: -moz-transform 0.5s linear;
  -webkit-transition: -webkit-transform 0.5s linear;
  -o-transition: -o-transform 0.5s linear;
  -ms-transition: -ms-transform 0.5s linear;
  transition: transform 0.5s linear;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/* スタート時のスタイル */
.animation_blur.delighter.started {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
  transition: .8s;
}
/* エンド時のスタイル */
.animation_blur.delighter.started.ended {

}
/* アニメーション設定 */
@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }

  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }

  to {
      opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}








