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

/*googlefonts*/

/*Adobefonts*/
@import url("https://use.typekit.net/jme5pcg.css");
/*
font-family: "goudy-old-style", serif;
font-weight: 400;
font-style: normal;
*/

/*カスタム変数*/
/*カラー用*/
:root {
  --color-gold:#ac8847 ;
  --color-purple:#afa4e3 ;
}

:root {
  --color01:var(--color-gold) ;
  --color02:var(--color-gold) ;
}




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

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

1.全体
2.共通フォーマット（ボタンデザインなど）
3.メインビジュアル
4.イントロダクション
5.アイテム
6.プロフィール
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;
	padding-top: 0!important;
}
/*メインエリアの横幅制限解除ここまで*/


.fs-c-breadcrumb{
	padding-top:80px;
	background-color: #fff;
}
@media screen and (max-width:768px) {
	.fs-c-breadcrumb{
		padding-top:80px;
	}
}

/* 「現在登録されている商品はありません。」を非表示 */
.fs-c-noResultMessage { display: none }

/* 文字サイズ調整 */
.fs-l-main{
	font-size:1.1em;
}

/*共通フッターのマージン調整*/
.footer-sp{
	margin-top: 0 !important;
}

/*自動生成商品エリアのマージンゼロ/余白が発生するため*/
.fs-c-productList{
	margin:0;
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■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: #e6e4e3;*/
	
}
/*ビジュアル用背景画像の設定/iPhone対応版*/
/*body:before{
  content:"";
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height:100vh;
  background:url(https://www.joint-space.co.jp/category_common/primascherrer/psc_10th/img/back.svg) center no-repeat;
  background-size:cover;
}*/
/*SP*/
/*@media (max-width: 768px) {
	body:before{
		content:"";
		display:block;
		position:fixed;
		top:0;
		left:0;
		z-index:-1;
		width:100%;
		height:100vh;
		background:url(https://www.joint-space.co.jp/category_common/primascherrer/psc_10th/img/back.svg) center no-repeat;
		background-size:cover;
	}
}*/

/*全体の設定/フォントなど*/
.js-main{
	text-align: center;
	/*font-size:1.3rem;*/
	line-height: 1.9;
	letter-spacing: 0.07em;
	font-family: "canto-pen", 'goudy-old-style' ,'游明朝','Yu Mincho', '游明朝体', 'YuMincho', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro','ＭＳ Ｐ明朝', 'MS PMincho', serif;
	font-weight: 400;
	color:#5c5c5c;
}
@media screen and (max-width:768px) {
	.js-main{
		padding-top:0;
	}
}

/*リンクの設定*/
.js-main a{
	text-decoration:none;
	color:#222;
}
.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;
	}
}

/*PC1200px、SP100%*/
.js-container{
	width:100%;
	max-width:1200px;
	margin:auto;
}


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

/*ボタン*/
.btn01 a{
	display: block;
    background: #fff;
    /*border-radius: 3px;*/
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto 0.3em;
	width:100%;
    max-width: 300px;
    padding: 5px 10px;
    color: var(--color01);
    transition: 0.3s ease-in-out;
	font-size:1.2em;
    font-weight: 500;
	border:solid 1px var(--color01);
	/*letter-spacing: 0.5em;*/
}
.btn01 a:hover {
	background-color: var(--color01);
	border-color: var(--color01);
	color: #fff;
	opacity:1;
	-moz-opacity:1;
	filter:alpha(opacity = 100);
}
.btn01 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);
}
.btn01 a:hover:after {
  right: 1.4rem;
}



/*ボタン019*/
.button019 a {
	display: block;
    background: var(--color02);
    /*border-radius: 3px;*/
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
	width:100%;
    max-width: 300px;
    padding: 5px 10px;
    color: #fff;
    transition: 0.3s ease-in-out;
	font-size:1.2em;
    font-weight: 500;
	border:solid 1px var(--color02);
	/*letter-spacing: 0.5em;*/
}
.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: var(--color02);
	border-color: var(--color02);
 	color: #FFF;
	opacity:1;
	-moz-opacity:1;
	filter:alpha(opacity = 100);
}
.button019 a:hover:after {
  right: 1.4rem;
}

/*ボタン019透明ver*/
.button019-trans a {
	display: block;
    background: transparent;
    /*border-radius: 3px;*/
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
	width:100%;
    max-width: 300px;
    padding: 5px 10px;
    color: #fff;
    transition: 0.3s ease-in-out;
	font-size:1em;
    /*font-weight: 500;*/
	border:solid 1px #fff;
	letter-spacing: 0.5em;
}
.button019-trans 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-trans a:hover {
 	/*background: #000;*/
 	/*color: #FFF;*/
	opacity:1;
	-moz-opacity:1;
	filter:alpha(opacity = 100);
}
.button019-trans a:hover:after {
  right: 1.4rem;
}


/*背景色*/
.contents_bgcolor{
	width:100%;
	/*background-color: #fff;*/
}

/*共通マージン設定*/
.main-margin{
	margin: 8em 0;
}
@media screen and (max-width: 768px){ 
	.main-margin{
		margin: 5.5em 0;
	}
}

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

/*見出し*/
.head_d01{
	margin-bottom:4em;
}
.head_d01 .text01{
	display: inline-block;
	background-color: #000;
	color:#fff;
	font-size:0.7em;
	padding: 0.1em 2em;
	margin-bottom:2em;
}
.head_d01 .text02{
	font-size:2em;
	letter-spacing: 0em;
	line-height:1.2;
}


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

.font-03{ /*見出しスクリプト*/
	font-family: "altesse-std-24pt", sans-serif;
	font-weight: 400;
	font-style: normal;
}





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

.main-visual{
	margin: auto;
	width:100%;
	/*max-width:763px;*/
}

.main-title{
	position: relative;
}
/*.main-title:before{
	content: "";
	display: block;
 	padding-top:86.762779%;/*コンテンツの縦横比に応じて変更
}*/

.main-title .title-img02{
	position: absolute;
	width: 5%;
	top:29%;
	left: 29.8%;
}
.main-title .title-img03{
	position: absolute;
	width: 5%;
	bottom:25.7%;
	right: 28.8%;
}

.main-title img{
	width:100%;
	height: auto;
}

@media screen and (max-width: 768px){ 
	.main-title .title-img02{
		position: absolute;
		width: 11.59%;
		top:31.44%;
		left: 9.19%;
	}
	.main-title .title-img03{
		position: absolute;
		width: 12.59%;
		bottom: 23.75%;
		right: 5.76%;
	}
}



/*▼時差での表示*/
/*01*/
.fadein_title-img01 {
    animation: fadein_title-img01 1s ease-in 0s 1 normal;
    -webkit-animation: fadein_title-img01 1s ease 0s 1 normal;
}
@keyframes fadein_title-img01 {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadein_title-img01 {
    0% {opacity: 0}
    100% {opacity: 1}
}
/*02*/
.fadein_title-img02 {
    animation: fadein_title-img02 1.5s ease-in 0s 1 normal;
    -webkit-animation: fadein_title-img02 1.5s ease 0s 1 normal;
}
@keyframes fadein_title-img02 {
    0% {opacity: 0}
	20% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadein_title-img02 {
    0% {opacity: 0}
	20% {opacity: 0}
    100% {opacity: 1}
}
/*03*/
.fadein_title-img03 {
    animation: fadein_title-img03 2.5s ease-in 0s 1 normal;
    -webkit-animation: fadein_title-img03 2.5s ease 0s 1 normal;
}
@keyframes fadein_title-img03 {
    0% {opacity: 0}
	30% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadein_title-img03 {
    0% {opacity: 0}
	30% {opacity: 0}
    100% {opacity: 1}
}





/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.イントロダクション
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-intro{
	color:#a36e1b;
	
}
.main-intro_contents{
	
}
.intro_txt01{
	font-size:0.7em;
	margin-bottom:0.8em;
}
.intro_txt02{
	font-size:2em;
	margin-bottom:0.9em;
	line-height:1.5;
	font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}
.intro_txt03{
	font-size:1em;
	padding-bottom: 2em;
}
@media screen and (max-width: 768px){ 
	.intro_txt02{
		font-size:1.7em;
	}
}


/*スライダー*/
.slide {
	width: 500px;
	margin: 0 auto;
}
.slide-items {
  width: 100%;
  height: 100%;
}

.slide-items img {
  width: 100%;
  object-fit: cover;
}
ul.slide-items.slick-initialized.slick-slider {
	padding: 0;
}
@media screen and (max-width: 768px){ 
	.slide {
		width: 80%;
		margin: 0 auto;
	}
}


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

.main-menu{
	
}

.heading_text_area{
	margin-bottom:0.3em;
}
.heading_text_area .heading_text01{
	font-size:3em;
}
.heading_text_area .heading_text02{
	font-size:0.7em;
}

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

.main-menu_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: flex-start;
	
	width:95%;
	max-width:800px;
}
.main-menu_box > div {
	/*列数と間の余白の設定*/
	width: calc( ( 100% - 30px ) / 3 );
	margin-right: 15px;
	margin-bottom:15px;
}
/*右端のマージンをゼロ設定*/
.main-menu_box > div:nth-child( 3n ),
.main-menu_box > div:last-child{
	margin-right: 0;
}
/*SP*/
@media (max-width: 768px) {
	.main-menu_box > div {
		width: calc( ( 100% - 2% ) / 2 );
		margin-right: 2%;
		margin-bottom:10px;
	}
	.main-menu_box > div:nth-child( 3n ),
	.main-menu_box > div:last-child{
		margin-right: 2%;
	}
	.main-menu_box > div:nth-child( 2n ),
	.main-menu_box > div:last-child{
		margin-right: 0;
	}
}


/*メニュー用ボタン*/
.menu_btn a{
	display: block;
	width:100%;
	background-color: #fff;
	border: 1px #ac8847 solid;
	/*padding: 20px 10px;*/
	height: 90px;
	/*color: #ac8847;*/
	text-align: center;
	align-content: center;
	line-height: 1.3;
	font-size: 1.25em;
	background-image: url(https://www.joint-space.co.jp/category_common/primascherrer/psc_12th/img/psc12th_e-flower.png);
	background-repeat: no-repeat;
	background-size: 28%;
	background-position: bottom left;
}
.menu_btn a span{
	font-size: 0.7em;
	font-weight: 600;
	color: var(--color01);
}
.end {
	opacity: 0.5;
}
@media (max-width: 768px) {
	.menu_btn a{
		height: 75px;
		line-height: 0.9;
	}
	.menu_btn a span{
		font-size: 0.65em;
	}

}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
6.contents
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


.main-contents{
	
}

.main-item{
	max-width:900px;
	margin-right: auto;
	margin-left:auto;
	/*padding: 60px;*/
}
.main-contents #item01 {
	padding-top: 60px;
	padding-bottom: 60px;
}
/*SP*/
@media (max-width: 769px) {
	/*.main-item{
		padding: 3em 5%;
	}*/
	.main-contents #item01 {
		padding-top: 40px;
		padding-bottom: 50px;
	}
}

.main-item_wrapper{
	width:100%;
	max-width:543px;
	margin:auto;
}



.item_head01{
	font-size:1.1em;
	color: var(--color01);
}
.item_head02{
	font-size:4em;
	margin-bottom:0.5em;
	line-height: 1.2;
}



.item_img{
	margin-bottom:2em;
}
.item_img img{
	width:65%;
}


.item_text{
	margin-bottom:2.5em;
}
.item_text01{
	margin-bottom:2em;
	display: inline-block;
	background-color: #ac8847;
	color:#fff;
	padding:0.2em 0.7em;
}
.item_text02{
	font-size:1.8em;
	margin-bottom:0.8em;
	line-height: 1.3;
	letter-spacing: 0.01em;
}
.item_text02 span{
	font-size:0.7em;
}
.item_text03{
	font-size:0.9em;
	text-align: center;
}
.update {
	border-bottom: 1px solid #ac8847;
	color: #ac8847;
	display: inline-block;
	line-height: 1.3;
	margin-bottom: 2em;
	font-weight: 600;
}
.butterfly_img img {
	width: 40px;
	margin: 0 auto 7em;
}
/*SP*/
@media (max-width: 769px) {
	.item_text01{
		font-size:0.8em;
	}
	.item_text02{
		font-size:1.8em;
		letter-spacing: 0;
	}
	.item_head02{
		font-size:3em;
	}
	.butterfly_img img {
		width: 40px;
		margin: 0 auto 4em;
	}
}



.item_detail_box{
	margin-bottom:2em;
	padding:5%;
	
	background-color: #fff;
	border:solid 1px #666;
	
	text-align: left;
	
}
.item_detail_item{
	margin-bottom:1.5em;
}
/*最後のdivは下部マージン無し*/
.item_detail_box > div:last-child {
	margin-bottom:0em;
}
.detail_item_head{
	font-weight: 700;
	border-bottom:solid 1px #000;
	margin-bottom:1em;
	font-size:0.8em;
}
.detail_item_contents{
	font-size:0.75em;
}
.detail_item_contents a{
	text-decoration: underline;
}



/*アイテム並び*/
.item_lineup{
	margin-top:2em;
}
.item_lineup_head{
	margin:4em auto 2em;
}
.lineup_head01{
	display: inline-block;
	line-height:1.2;
	font-size:1.5em;
	border-bottom:solid 1px #333;
}
.lineup_head02{
	margin-top:1.5em;
	font-size:0.8em;
}
.lineup_box img{
	width:100%;
}
.item_under_text{
	margin-top:1.5em;
	font-size:0.8em;
	line-height:1.4;
}
.lineup_notice{
	margin-top:2em;
	font-size:0.7em;	
}


/*アイテム並び：２列*/
.item_lineup_2cl .lineup_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: flex-start;
	
	width:100%;
	max-width:500px;
	margin:auto;
}
.item_lineup_2cl .lineup_box > div {
	/*列数と間の余白の設定*/
	width: calc( ( 100% - 20px ) / 2 );
	margin-right: 20px;
	margin-bottom:20px;
}
/*右端のマージンをゼロ設定*/
.item_lineup_2cl .lineup_box > div:nth-child( 2n ),
.item_lineup_2cl .lineup_box > div:last-child{
	margin-right: 0;
}
/*SP*/
@media (max-width: 768px) {
	.item_lineup_2cl .lineup_box > div {
		width: calc( ( 100% - 2% ) / 2 );
		margin-right: 2%;
		margin-bottom:10px;
	}
	.item_lineup_2cl .lineup_box > div:nth-child( 2n ),
	.item_lineup_2cl .lineup_box > div:last-child{
		margin-right: 0;
	}
}
.item_lineup_2cl .lineup_box img{
	border-radius: 10px;
}


/*アイテム並び：1列*/
.item_lineup_1cl .lineup_box{
	width:100%;
	max-width:500px;
	margin:auto;
}
.item_lineup_1cl .lineup_box_item{
	margin-bottom:3.5em;
}




/*andmore*/
.andmore{
	color: var(--color01);
	font-size:1.5em;
	line-height:1.4;
	margin:100px auto;
}

/*最後のdivは下部マージン無し*/
.main-item_wrapper > div:last-child {
	margin-bottom:0em;
}

/*アコーディオン*/

.details {
	background-color: white;
	width: 80%;
	margin: 0 auto;
}
.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;
}
.answerInner ul {
	padding-inline-start: 10px;
}
.answerInner ul li {
	text-align: left;
	margin-bottom: 0.8em;
	font-size: 0.9em;
}
@media (max-width: 768px) {
	.details {
		width: 85%;
	}
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
7.フッターイメージ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-footerimg_contents img{
	width: 50%;
	max-width:400px;
	margin: 0 auto;
}

.f-flower img{
	width: 100%;
}

@media (max-width: 769px) {
	.main-footerimg_contents img{
		width: 70%;
		max-width:400px;
		margin: 0 auto 0.5em;
	}
}


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

.contents-footer{
	margin:0 auto;
	padding:4em 0;
	background-color: #fff;
}
.contents_brand_top{
	margin:3em auto;
}
.brand_under-text{
	margin-top:1em;
}

/*SP*/
@media (max-width: 768px) {
	.contents_brand_top{
		width:50%;
	}
}

/*タイトル画像部分*/
.footer-title{
	margin:0 auto;
	padding:2em;
}
.vertical-line{ /*線*/
	width:1px;
	height:100px;
	background-color: #222;
	margin:1em auto;
}
.footer-text01{
	font-size:3em;
}
.footer-text02{
	font-size:0.8em;
}
/*SP*/
@media (max-width: 768px) {
	.footer-title img{
		width:50%;
	}
	.vertical-line{ /*線*/
		height:50px;
	}
	.footer-text01{
		font-size:1.5em;
	}
	.footer-text02{
		font-size:0.7em;
	}
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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 {
      
   }





