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

/*Adobe fonts*/
@import url("https://use.typekit.net/nsc3gsj.css");

/*
Baskerville Poster PT
font-family: baskerville-poster-pt, serif;
font-weight: 400;
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;
}
/*メインエリアの横幅制限解除ここまで*/


.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: #fafafa;
}

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

/*リンクの設定*/
.js-main a{
	text-decoration:none;
	color:#272727;
}
.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.共通フォーマット（ボタンデザインなど）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*ボタン*/
.button a{
    background: transparent;
    /*border-radius: 0 20px 0 20px;*/
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 1em auto 0;
    max-width: 280px;
    padding: 10px 25px;
    color: #afa59b;
    transition: 0.3s ease-in-out;
	font-size:15px;
    font-weight: 300;
	letter-spacing: 0.2em;
	border:solid 1px #afa59b;
}
.button 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 a:hover {
  background: #afa59b;
  color: #FFF;
  opacity: 0.5;
}
.button a:hover:after {
  right: 1.4rem;
}

/*ボタン comingsoon*/
.button_nolink{
    background: #d9d9d9;
    /*border-radius: 0 20px 0 20px;*/
    margin: 1em auto 0;
    max-width: 280px;
    padding: 10px 25px;
    color: #fff;
	font-size:15px;
    font-weight: 300;
	letter-spacing: 0.2em;
	border:solid 1px #d9d9d9;
}


/*共通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: 7em auto;
	}
}

/*見出し*/

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

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


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

/*フォント*/
/*フォント指定*/
.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{ /*Baskerville Poster PT*/
	font-family: baskerville-poster-pt, serif;
	font-weight: 400;
	font-style: normal;
}

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


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

/*~~~~~~~~~~~~~~~~~~~~~~~~*/

/*ビジュアル用背景画像の設定/iPhone対応版*/
body:before{
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-1;
	width:100%;
	height:100%;
	/*min-height:100vh;*/
	background:url("../img/main_back_pc.jpg") center no-repeat;
	background-size:cover;
	/* 斜めワイプアニメーションの追加（左下から右上へ） */
	/* 初期状態: 完全に非表示（左下起点） */
	clip-path: polygon(0% 100%, 0% 100%, 0% 100%, 0% 100%);
	animation: diagonalSwipeIn 1.2s ease forwards; /* 新しいアニメーションを適用 */
}
@media screen and (max-width: 768px){
	body:before{
		width:100%;
  		height:100%;
		/*min-height:100vh;*/
		background:url("../img/main_back_sp.jpg") center no-repeat;
		background-size:cover;
		/* SP用も斜めワイプアニメーションを適用 */
        clip-path: polygon(0% 100%, 0% 100%, 0% 100%, 0% 100%); /* 同じ初期状態 */
        animation: diagonalSwipeIn 1.2s ease forwards;
	}
}
@keyframes diagonalSwipeIn {
  0% {
    /* 画面の左下隅が起点となるように、斜め線を初期化 */
    /* 画面が完全に隠れるように、対角線の2点を画面外の左下に設定 */
    clip-path: polygon(0% 100%, 100% 0%, 100% 0%, 0% 100%);
    /*
      頂点の説明:
      1. (0% 100%) - 左下
      2. (100% 0%) - 右上
      3. (100% 0%) - 右上 (同じ点)
      4. (0% 100%) - 左下 (同じ点)
      これは、斜め線 (0% 100% と 100% 0% を結ぶ線) の「右上」側を隠し、
      「左下」側だけが表示される状態になります。
      アニメーション開始時はこの斜め線が画面の左下隅に隠れていて、
      徐々に右上に移動していくように見せます。
    */
  }
  100% {
    /* 画面全体が表示される状態 */
    /* 斜め線が画面の右上に移動しきる */
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    /*
      頂点の説明:
      1. (0% 0%) - 左上
      2. (100% 0%) - 右上
      3. (100% 100%) - 右下
      4. (0% 100%) - 左下
      これは、画面全体をカバーする四角形になります。
    */
  }
}


/*~~~~~~~~~~~~~~~~~~~~~~~~*/

/*要素上下左右中央寄せ*/
.main-visual{
	display: flex;
  	justify-content: center;
  	align-items: center;
	height:85vh;
	min-height: 1.5vw;
	text-align: center;
	
	position: relative;
	
	/*background-color: #efe4e4;*/
}


.main-visual_contents{
	margin: 40px auto;
}
.main-visual_logo{
	width:80%;
	max-width:240px;
	margin:auto;
}
.main-visual_logo img{
	height: auto;
	width:100%;
}

.main-visual_logo .title-logo01{
	margin:auto;
	width: 100%;
}
.main-visual_logo .title-logo02{
	margin: 0 auto;
	width: 51%;
}
.main-visual_logo .title-logo03{
	margin: 1em auto 0;
	width: 92%;
}


.main-visual_logo .title-logo04{
	position: absolute;
	top:0;
	left:0;
	width:auto;
	height:85vh;
}
.main-visual_logo .title-logo04 img{
	width:auto;
	height: 100%;
	min-height: 1.5vw;
}
.main-visual_logo .title-logo05{
	position: absolute;
	right:20px;
	bottom:20px;
	width:90px;
	height:auto;
}
.main-visual_logo .title-logo06{
	position: absolute;
	right:20px;
	top:20px;
	width:80px;
	height:auto;
}



@media screen and (max-width: 768px){ 
	.main-visual_logo .title-logo04 img{
		width:auto;
		height: 100%;
		min-height: 1.5vw;
	}
}




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

.main-intro{
	
}

.main-intro_wrapper{
	text-align: center;
}


.intro_head_box{
	
}
.intro_head_text01{
	width: 50%;
	max-width:230px;
	margin:auto;
}
.intro_head_text01 img{
	width:100%;	
}
.intro_head_text02{
	margin-top:0.5em;
	font-size: 24px;
	line-height: 1.5;
}
.intro_head_text03{
	margin-top:1em;
	font-size: 9px;
}
@media screen and (max-width: 768px){ 
	.intro_head_text01{
		
	}
	.intro_head_text02{
		
	}
}

.intro_message_box{
	margin-top:3em;
}


@media screen and (max-width: 768px){ 
	.interval img{
		width:25%;
		margin:auto;
	}
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.ノベルティ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


.main-novelty{
	margin:auto;
}

.novelty_contents_wrapper{
	width:90%;
	max-width:350px;
	margin: 4em auto 0;
}

.novelty_head_box{
	margin-bottom:2.5em;
}
.novelty_head_txt01{
	font-size:18px;
	letter-spacing: 0.15em;
}
.novelty_head_txt02{
	margin-top:1em;
}
.novelty_head_txt03{
	width:90%;
	max-width:350px;
	margin: 1em auto ;
	border: solid 1px tomato;
	border-radius: 10px;
	padding:1.5em;
	color: tomato;
	text-align: left;
	font-size: 0.9em;
	line-height: 1.6;
	letter-spacing: 0;
}


.novelty_contents_img{
	
}

.novelty_contents_text{
	margin-top:1.5em;
}

.novelty_text_head{
	letter-spacing: 0.15em;
}
.novelty_text_head01{
	font-size: 24px;
}
.novelty_text_head02{
	margin-top:0.15em;
	display: inline-block;
	color: #fff;
	font-size: 19px;
	line-height: 1.5;
	padding: 2px 10px 0;
	letter-spacing: 0.01em;
}



.novelty_text01{
	margin-top:2em;
	text-align: left;
}
.novelty_text02{
	margin-top:2em;
	text-align: left;
	color:#999;
	font-size:0.9em;
}

@media screen and (max-width: 768px){ 
	.novelty_text01{
		text-align: left;
	}
	.novelty_text02{
		
	}
}


.answer ul{
	padding-inline-start: 10px;
}
.answer li{
	margin-bottom:0.8em;
	line-height: 1.8;
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
6.メニュー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-menu{
	padding: 5em 0 5em 0;
	width:100%;
	height: auto;
	background:url("../img/menu_back_pc.jpg") center no-repeat;
	background-size:cover;
}
@media screen and (max-width: 768px){
	.main-menu{
		background:url("../img/menu_back_sp.jpg") center no-repeat;
		background-size:cover;
	}
}

.main-menu_head {
	font-size:1.2em;
	margin-bottom:2em;
}



.main-menu_list{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素の寄せ*/
	justify-content: center;
	align-items: flex-start;
	
	width:90%;
	max-width: 600px;
	margin:auto;
}

.main-menu_list > div {
/*列数と間の余白の設定*/
	width: calc( ( 100% - 30px ) / 4 );
	margin-right: 10px;
	margin-bottom: 3em;
}
/*右端のマージンをゼロ設定*/
.main-menu_list > div:nth-child( 4n ),
.main-menu_list > div:last-child{
	margin-right: 0;
}
/*最後の段のボトムマージンをゼロ設定*/
@media screen and (min-width: 769px){ 
	.main-menu_list > div:nth-last-child(-n+4){
		margin-bottom: 0;
	}
}

@media screen and (max-width: 768px){ 
	.main-menu_list > div {
	/*列数と間の余白の設定*/
		width: calc( ( 100% - 10px ) / 2 );
		margin-right: 10px;
	}
	/*右端のマージンをゼロ設定*/
	.main-menu_list > div:nth-child( 2n ),
	.main-menu_list > div:last-child{
		margin-right: 0;
	}
	/*最後の段のボトムマージンをゼロ設定*/
	.main-menu_list > div:nth-last-child(-n+2){
		margin-bottom: 0;
	}
}


.main-menu_list img{
	width:100%;
}

.main-menu_list-item{
	line-height:1.2;
	letter-spacing: 0.05em;
}

.menu_item_t{
	margin-top:1em;
}
.menu_item_t01{
	font-size: 18px;
	border-bottom: solid 1px #272727;
}
.menu_item_t01 span{
	font-size: 0.7em;
}
.menu_item_t02{
	margin-top:0.4em;
	font-size: 15px;
}
.menu_item_t03{
	margin-top:0.5em;
	font-size: 1em;
	color: #706C64;
}





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

.main-item_wrapper{
	width:90%;
	max-width: 350px;
	margin-right: auto;
	margin-left: auto;
}


.main-item_head{
	
}
.main-item_head01 {
    margin: auto;
}
@media screen and (max-width: 768px){
	.main-item_head01 img{
		width: 20vw;
	}
}
.main-item_head02{
	margin-top:1em;
	margin-bottom:2em;
	font-size: 16px;
}


.main-item_innner{
	margin-top: 3em;
}


.main-item_img{
	width:100%;
	max-width:350px;
	margin:auto;
}

.main-item_text{
	margin-top:1.7em;
}
.main-item_text01{
	font-size: 1.8em;
	line-height: 1.5;
}
.main-item_text02{
	display: inline-block;
	padding: 3px 10px;
	line-height: 1.2;
	color: #fff;
	font-size: 1.2em;
	margin-top: 0.7em;
}
.main-item_text03{
	margin-top: 1.5em;
	text-align: left;
}


.main-item_btn{
	margin-top:3em;
}



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

.contents-footer{
	
}

.contents_footer_image{
	width:100%;
	height: auto;
	background:url("../img/footer_img.jpg") center no-repeat;
	background-size:cover;
}
.contents_footer_logo{
	padding: 100px 0 ;
}
@media screen and (max-width: 768px){
	.contents_footer_logo{
		padding: 150px 0 ;
	}
	.contents_footer_logo img{
		width:40%;
	}
}






/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.swiper
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


/*ベースノーマルver========================*/
.swiper_basenormal{
	text-align: justify;
	font-size:1em;
	letter-spacing: 0;
}
.swiper_basenormal img{
	width:100%;	
}
.swiper_basenormal .swiper-wrapper{
	height: auto;
}
.swiper_basenormal .swiper-slide{
	padding-bottom:30px;
	height: auto;
	
}
.swiper_basenormal .swiper-slide img{
	/*border-radius: 35px 0 35px 0;*/
}
/* ページネーションの色変更 */
.swiper_basenormal .swiper-pagination-bullet{
	background-color: #afa59b;
}
.swiper_basenormal .swiper-pagination-bullet-active {
	background-color: #afa59b;
}
/* ページネーションの位置調整 */
.swiper_basenormal .swiper-horizontal>.swiper-pagination-bullets,
.swiper_basenormal .swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper_basenormal .swiper-pagination-custom,
.swiper_basenormal .swiper-pagination-fraction{
	bottom:0;
}

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

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.アコーディオン
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.details {
	background-color: white;
}
.summary {
	cursor: pointer;
	font-weight: bold;
	padding: 10px;
	text-align: center;
	border: solid 1px #b6b6b6;
}
.answer {
	overflow: hidden;
	
}
.answerInner {
	padding: 0 20px 20px;
	border: solid 1px #b6b6b6;
	border-top-color: transparent;
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.初回スクロール禁止
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/* ==== アニメーション｜スクロール封じ ==== */
/*@keyframes scrollseal {
from { overflow: hidden }
to { overflow: visible }
}
*/
/* ==== 指定の秒間スクロール禁止 ==== */
/*body {
animation: scrollseal 0s 2.5s both;
}*/


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

.fadein-top1 {
    animation: fadeIn1 1.5s ease 0s 1 normal;
    -webkit-animation: fadeIn1 1.5s ease 0s 1 normal;
}
@keyframes fadeIn1 {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn1 {
    0% {opacity: 0}
    100% {opacity: 1}
}

.fadein-top2 {
    animation: fadeIn2 1.5s ease 0.3s 1 both;
    -webkit-animation: fadeIn2 1.5s ease 0.3s 1 both;
}
@keyframes fadeIn2 {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn2 {
    0% {opacity: 0}
    100% {opacity: 1}
}

.fadein-top3 {
    animation: fadeIn3 1.5s ease 0.6s 1 both;
    -webkit-animation: fadeIn3 1.5s ease 0.6s 1 both;
}
@keyframes fadeIn3 {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn3 {
    0% {opacity: 0}
    100% {opacity: 1}
}

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

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

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



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.delighters：スクロールアニメーション
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


/*animation-ふわっと出現*/
/* 基本のスタイル */
.animation.delighter {
  transition: all 1s ease-out;
  transform: translateY(50%);
  opacity: 0;
}
/* スタート時のスタイル */
.animation.delighter.started {
  transform:none;
  opacity:1;
}
/* エンド時のスタイル */
.animation.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);
  }
}



/*animation-メニュー用時差*/
/*01*/
.animation_menu01.delighter {
  transition: all .5s 0s ease-out;
  transform: translateY(30%);
  opacity: 0;
}
/* スタート時のスタイル */
.animation_menu01.delighter.started {
  transform:none;
  opacity:1;
}
/* エンド時のスタイル */
.animation_menu01.delighter.started.ended {

}
/*02*/
.animation_menu02.delighter {
  transition: all .5s .25s ease-out;
  transform: translateY(30%);
  opacity: 0;
}
/* スタート時のスタイル */
.animation_menu02.delighter.started {
  transform:none;
  opacity:1;
}
/* エンド時のスタイル */
.animation_menu02.delighter.started.ended {

}
/*03*/
.animation_menu03.delighter {
  transition: all .5s .5s ease-out;
  transform: translateY(30%);
  opacity: 0;
}
/* スタート時のスタイル */
.animation_menu03.delighter.started {
  transform:none;
  opacity:1;
}
/* エンド時のスタイル */
.animation_menu03.delighter.started.ended {

}
/*04*/
.animation_menu04.delighter {
  transition: all .5s .75s ease-out;
  transform: translateY(30%);
  opacity: 0;
}
/* スタート時のスタイル */
.animation_menu04.delighter.started {
  transform:none;
  opacity:1;
}
/* エンド時のスタイル */
.animation_menu04.delighter.started.ended {

}

