@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:#624742;
}
@media screen and (max-width:768px) {
	.js-main{
		padding-top:0;
	}
}

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

.js-main .main-item_text a{
	text-decoration: underline;
}


/*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: 200px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 1em auto 0;
    max-width: 280px;
    padding: 10px 25px;
    color: #624742;
    transition: 0.3s ease-in-out;
	font-size:15px;
    font-weight: 300;
	letter-spacing: 0.2em;
	border:solid 1px #624742;
}
.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: #e3afad;
  border:solid 1px #e3afad;
  color: #FFF;
  opacity: 1;
}
.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: 80px 0;
}
@media screen and (max-width: 768px){
	.main-padding{
		padding: 4em 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: #e3afad;
}
.bg-color02{
	background: #f9f0f3;
}


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

/*フォント*/
/*フォント指定*/
.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: #e3afad;
  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: 547px;
}
.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: #624742;
  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;
	color: #624742;
}

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

h1{
	margin:0;
}

.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:1.5em;
	font-weight: 500;
}


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





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


.menu_head{
	margin-bottom: 2em;
}
.menu_head_img{
	width: 60%;
	max-width: 250px;
	margin: 0 auto 1em;
}
/*リボン*/	
.ribbon1 {
    position: relative;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    padding: 0 1rem;
    background-color: #e6b8b5;
    color: #fff;
    font-size: 0.8em;
    font-weight: normal;
    text-align: center;
}
.ribbon1::before,
.ribbon1::after {
    position: absolute;
    top: 0;
    width: 0px;
    height: 0px;
    border-color: #e6b8b5 transparent;
    border-style: solid;
    content: '';
}
.ribbon1::before {
    left: -5px;
    border-width: 15px 0px 15px 5px;
}
.ribbon1::after {
    right: -5px;
    border-width: 15px 5px 15px 0px;
}


/*item フレックスボックス*/
.menu_wrapper{
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;

	justify-content: flex-start;
	align-items: stretch;
	
	width: 90%;
	max-width: 1100px;
	margin: auto;
}
.menu_wrapper > div {
	width: calc( ( 100% - 100px ) / 5 );
	margin-right: 20px;
	
	/*枠デザイン*/
	background-color: #fff;
	padding: 20px;
	/* 十分に大きな数値を指定 */
	border-radius: 500px 500px 0 0;

}
.menu_wrapper > div:nth-child( 5n ) {
	margin-right: 0;
}
.menu_item{
	margin-bottom:20px;
}
.menu_item img{
	width: 100%;
	border-radius: 50%;
}
@media (max-width: 768px) {
	.menu_wrapper{
		
	}
	.menu_wrapper > div {
		width: calc( ( 100% - 2.5vw ) / 2 );
		margin-right: 2.5vw;
	}
	.menu_wrapper > div:nth-child( 2n ) {
		margin-right: 0;
	}
}




.menu_item_link{
	display: block;      /* 領域全体をリンクボタンにする */
	text-decoration: none; /* 下線を消す */
	color: inherit;        /* 文字色を元の設定のままにする */
	height: 100%;         /* 高さを枠いっぱいに広げる */
}

.menu_item_name{
	margin-top: 0.25em;
	letter-spacing: 0;
	font-size: 1.1em;
}



/*icon フレックスボックス*/
.menu_item_icon_wrapper{
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;

	justify-content: flex-start;
	align-items: flex-start;
	gap: 0.3em;
	
	font-size: 0.8em;
	letter-spacing: 0.01em;
	margin-top: 0.5em;
}
.menu_icon{
	color: #fff;
	line-height: 1;
	padding: 0.5em 0.4em;
	border-radius: 3px;
}

@media (max-width: 768px) {
	.menu_item_icon_wrapper{
		font-size: 2.2vw;
	}
}


/*アイコンの色*/
.icon_c01{
	background-color: #e3afad;
}
.icon_c02{
	background-color: #adc0e3;
}
.icon_c03{
	background-color: #ddca8f;
}



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


.main-item_wrapper{
	
}

/*item*/
.main-item{

}

/*head*/
.item_head{
	width: 90%;
	max-width: 450px;
	margin: auto;
}
.item_head_img img{
	width: 100%;
	border-radius: 50%;
}

.item_head_text{
	
}
.item_name{
	font-size: 2em;
}
.item_instalink{
	
}


/*icon フレックスボックス*/
.item_icon_wrapper{
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;

	justify-content: flex-start;
	align-items: flex-start;
	gap: 5px;
	
	font-size: 0.8em;
	letter-spacing: 0.01em;
	margin-top: 1.5em;
}
.item_icon{
	color: #fff;
	line-height: 1;
	padding: 0.5em 0.4em;
	border-radius: 3px;
}


/*SP用*/
@media (max-width: 768px) {
	.item_head_img{
		width: 50%;
		margin: auto;
	}
	.item_head_text{
		
	}
	.item_instalink{
		width: 30%;
		margin: auto;
	}
	.item_icon_wrapper{
		font-size: 3vw;
		
		justify-content: center;
		align-items: flex-start;
	}
}

/*PC用 2clm*/
@media (min-width: 769px) {
	.item_head{
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;

		justify-content: flex-start;
		align-items: center;
	}
	.item_head .item_head_img{
		width:40%;
	}
	.item_head .item_head_text{
		width:60%;
		padding-left: 10%;
		
		text-align: left;
	}
}


/*comment*/
.item_comment_wrapper{
	width: 85%;
	max-width: 400px;
	margin: 2em auto 0;
	
	text-align: left;
}
.item_comment {
    line-height: 1.8em;
    max-height: 5.4em; /* 1.5em × 3行 */
    overflow: hidden;
    position: relative;
}
/* フェードアウト効果（背景が白の場合） */
.item_comment.is-clamped::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5em;
    background: linear-gradient(transparent, #fff);
}
/* 全文表示時 */
.item_comment.is-expanded {
    max-height: none;
}
.item_comment.is-expanded::after {
    display: none;
}
/* ボタンの簡易装飾 */
.more_btn {
	display: block;
	margin: 5px auto; /* 左側に自動でマージンを取ることで右寄せ */
	background: none;
	border: none;
	/*color: #999;*/
	cursor: pointer;
	font-size: 1.1em;
	letter-spacing: 0.02em;
	text-decoration: underline;
}



/*contents*/
.item_contents{
	width: 100%;
	max-width: 980px;
	margin: 2em auto 0;
}










/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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 ;
}
.contents_footer_logo img{
	width:300px;
}
@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:70%;
	}
}


.brandlogo{
	width: 70%;
	max-width: 200px;
	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: #e3afad;
}
.swiper_basenormal .swiper-pagination-bullet-active {
	background-color: #e3afad;
}
/* ページネーションの位置調整 */
.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 0.5s 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_swing-下からふわっと出現*/
/* 基本のスタイル */
.animation_swing.delighter {
  transition: all 0.5s ease-out;
  transform: translateY(20%);
  opacity: 0;
}
/* スタート時のスタイル */
.animation_swing.delighter.started {
  transform:none;
  opacity:1;
}
/* エンド時のスタイル */
.animation_swing.delighter.started.ended {

}

.animation_swing.delighter.started:hover {
  opacity: 0.85;                /* マウスが乗ったときに少し透明にする */
  transform: translateY(-4px);  /* Delighterの「transform: none」を上書きして上に浮かせます */
  cursor: pointer;              /* カーソルを指マークにする */
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.javascript 子要素を1つずつ時差で順番に表示
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*
トリガーは親要素に　display_in_order　のclassがついていること。
*/

/* 親クラスがついている場合の子要素の初期状態 */
.display_in_order > * {
  opacity: 0;
  /*transform: translateY(30px);*/
  transition: opacity 1s ease-out, transform 1s ease-out;
  will-change: opacity, transform;
}

/* 表示時の状態 */
.display_in_order > *.is-visible {
  opacity: 1;
  /*transform: translateY(0);*/
}

