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

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

/*
Minion Pro Regular
font-family: "minion-pro", 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: #607d93;
    transition: 0.3s ease-in-out;
	font-size:15px;
    font-weight: 300;
	letter-spacing: 0.2em;
	border:solid 1px #607d93;
}
.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: #607d93;
  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: 150px 0;
}
@media screen and (max-width: 768px){
	.main-padding{
		padding: 5em 0;
	}
}

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

/*見出し*/

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

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


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

/*フォント*/
/*フォント指定*/
.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{ /*Minion Pro Regular*/
	font-family: "minion-pro", serif;
	font-weight: 400;
	font-style: normal;
}

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


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

.main-visual .container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
@media (max-width: 768px) {
  /*.main-visual .container {
    height: 85vh;
  }*/
}

.main-visual .logo {
  position: absolute;
  z-index: 3;
  opacity: 1;
  animation: fadeOutLogo 0.8s ease 1.5s forwards;
}

.main-visual .logo img {
  	max-width: 200px;
  	height: auto;
}

.main-visual .gradient-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #607d93;
  transform: translateY(100%);
  z-index: 1;
  animation: rollUp 1.2s ease 1.5s forwards;
}

.main-visual .main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 2;
  animation: fadeInImage 1.5s ease 2.7s forwards;
}

.main-visual .content {
  position: relative;
  z-index: 4;
  opacity: 0;
  padding: 0 20px;
  animation: fadeInContent 1s ease 3s forwards;
  text-align: center;
}

.main-visual .main-title {
	margin: 0 auto 1rem;
	width: 80%;
	max-width: 150px;
}
.main-visual .main-title img{
	width:100%;
}

.main-visual .scroll-hint {
  position: absolute;
  bottom: 40px;
 /* left: 50%;*/
  transform: translateX(-50%);
  z-index: 4;
  opacity: 0;
  animation: fadeInContent 1s ease 4s forwards;
}
@media (max-width: 768px) {
  .main-visual .scroll-hint {
    bottom: 18vh;
  }
}

.main-visual .scroll-hint::before {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  background: #607d93;
  margin: 0 auto 10px;
  animation: scrollLine 1.5s ease-in-out infinite;
}

.main-visual .scroll-text {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

@keyframes fadeOutLogo {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@keyframes rollUp {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}

@keyframes fadeInImage {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInContent {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollLine {
  0% {
    height: 0;
    opacity: 0;
  }
  50% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    opacity: 0;
  }
}






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

.main-intro{
	width:100%;
	height: auto;
	background:url("../img/intro_back_pc.jpg") center no-repeat;
	background-size:cover;
}
@media screen and (max-width: 768px){
	.main-intro{
		background:url("../img/intro_back_sp.jpg") center no-repeat;
		background-size:cover;
	}
}

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


.intro_head_box{
	
}
.intro_head_text01{
	line-height: 1.5;
}
.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{
		font-size: 5.5vw;
	}
}

.intro_message_box{
	margin-top:3em;
	font-weight: 500;
}


@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: 450px;
	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% - 15px ) / 4 );
		margin-right: 5px;
	}
	/*右端のマージンをゼロ設定*/
	.main-menu_list > div:nth-child( 4n ),
	.main-menu_list > div:last-child{
		margin-right: 0;
	}
	/*最後の段のボトムマージンをゼロ設定*/
	.main-menu_list > div:nth-last-child(-n+4){
		margin-bottom: 0;
	}
}


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

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

.menu_item_t{
	display: flex;
  	justify-content: center;
  	align-items: center;
	text-align: center;
	
	position: relative;
}
.menu_item_t01{
	font-size: 1.25em;
	letter-spacing: 0.1em;
	position:absolute;
	color: #fff;
}
.menu_item_t02{
	font-size: 1.25em;
	color: #fff;
	padding: 0.25em;
}

.menu_item_t03{
	margin-top:0.75em;
	color: #666;
	font-size: 0.9em;
}

@media screen and (max-width: 768px){
	.menu_item_t01{
		font-size: 0.9em;
	}
	.menu_item_t02{
		font-size: 1.1em;
	}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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_text01 span{
	display: inline-block;
	border-bottom: 1px solid #607d93;
	font-size: 0.6em;
	margin-bottom: 0.9em;
}
.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;
}


@media screen and (max-width: 768px){
	.main-item_text01{
		font-size: 6.3vw;
	}
}



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

.contents-footer{
	
}

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


.brandlogo{
	width: 40%;
	max-width: 150px;
	margin-right: auto;
	margin-left: auto;
}
.brandlogo img{
	width: 100%;
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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: #607d93;
}
.swiper_basenormal .swiper-pagination-bullet-active {
	background-color: #607d93;
}
/* ページネーションの位置調整 */
.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 {

}

