@charset "UTF-8";

/*
colors
================================================ */
:root {
    --pink: #ec859a;
	--yellow: #ffe100;
    --light-yellow: #fbfab9;
    --light-blue: #e0f3f1;
    --light-grey:#fffefa;
    --black: #000000;
    --white: #fff;
}


/* CSS Document */
body{
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 400;
	font-style: normal;
    line-height: 1.7;
    color: var(--black);
	text-size-adjust: 100%;
　　-webkit-text-size-adjust: 100%;/*Chrome,Safari*/
　　-ms-text-size-adjust: 100%;/*EgdeMobile*/
　　-moz-text-size-adjust: 100%;/*firefox*/
	margin: 0;
}

ol, ul {
    list-style: none;
    list-style-type: none;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}
a {
	text-decoration: none;
	color: var(--black);
    text-decoration: none;
}
a:hover{
	opacity: 0.7;
}
section{
	margin: 0;
	padding: 4rem 0;
}
	
.inner {
    max-width: 1400px;
	width: 100%;
    margin: 0 auto;
    padding: 0 4%;
}

h2 img{
	margin-bottom: 4rem;
}

/* * * header * * */
header{
	background-color: var(--pink);
	border-bottom: var(--black) solid 5px;
	padding: 1em 4%;
	color: #fff;
	text-align: center;
	position: fixed;
	width: 100%;
	z-index: 100000;
}
.site-header {
	position: fixed;
	color: var(--white);
	width: 100%;
	text-align: left;
}
.site-header__end .buy{
	margin: 1rem 1rem 0;
	width: 100%;
}
.site-header__wrapper {
	display: flex;
  	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
	padding-top: 1rem;
	padding-bottom: 1rem;
	max-width: 1140px;
	width: 100%;
    margin: 0 auto;
    padding: 0 4%;
}
.site-header__end {
	margin: -2em 0 0 1em;
	
}
.site-header__end ul{
	display: flex;
}
.site-header__end .g_logo{
	margin: 1rem 1rem 0 2rem;
	width: 60%;
}


@media (max-width: 768px) {
	.site-header__wrapper {
		padding: 0 2%;
	  }
	  /*
	  header, .site-header {
		overflow-x: hidden;
	  }*/
	img.logo{
		width: 110px;
		display: block;
	}
	.nav__wrapper{
		padding: .5rem;
	}
	.site-header__middle{
		width: 70%;
	}
  .site-header__end {
	margin-left: 0;
	padding-top: 1em;  
	} 
	.site-header__end ul{
			display: flex;
			flex-direction: column;
		}
	.site-header__end img{
			display: block;
			margin-left: 0;
			width: 80px;
		}
}
@media (max-width: 420px) {

	.logo{
		width: 80px;
	}
	.site-header__end ul{
		flex-direction:row;
	}
	.site-header__end img{
		width: 70px;
	}
	.site-header__end .g_logo{
		margin: 2rem 2.75rem .75rem 1rem;
	}
}
@media (min-width: 630px) {
  .nav__wrapper {
    display: flex; } 
	
}
	@media (max-width: 629px) {
		.nav__wrapper {
		  position: absolute;
		  top: 100%;
		  right: 0;
		  left: 0;
		  z-index: 1;
		  background-color: var(--pink);
		  visibility: hidden;
		  opacity: 0;
		  transform: translateY(-100%);
		  transition: transform 0.3s ease-out, opacity 0.3s ease-out; }
		  .nav__wrapper.active {
			visibility: visible;
			opacity: 1;
			transform: translateY(0); }
		 .nav__item .dot{
			display: none;
		 }
		
		}
	  
.nav__item a {
	display: block;
	padding: 1rem;
	color: var(--white);
	line-height: 0.75;
	text-align: center;
	text-shadow:2px 2px 0 #000, -2px -2px 0 #000,
			-2px 2px 0 #000, 2px -2px 0 #000,
			0px 2px 0 #000,  0-2px 0 #000,
			-2px 0 0 #000, 2px 0 0 #000;
}
.nav__item a:hover{
	color: yellow;
}
.nav__item span.eng{
	display: block;
	font-size: 2.5rem;
	font-weight: 700;
	padding: 0 0.2em;
	text-align: center;
}
.nav__item a .jpn{
	padding-left: 0.4em;
	color: var(--black);
	font-size: 1rem;
	font-weight: 700;
	line-height: 0.5em;
	text-align: left;
	text-shadow: none;	  
}
.nav__item .dot{
	display: block;
	color: var(--black);
	font-size: 4rem;
	font-weight: 900;
	text-shadow:none;
	
}

.nav__toggle {
  display: none; }

  @media (max-width: 629px) {
    .nav__toggle {
      display: block;
      position: absolute;
      right: 1rem;
      top: 1rem;
	  background: #000;
		padding: 0.4em;
	  color: #fff;}
}


.nav__item span.eng{
	display: block;
	font-size: 2.68rem;}
.logo{
	width: 100%;
}


@media (max-width: 768x) {
	.g_logo img{
		width: 120px;
	}
	.nav__item .dot{
		display: none;
	}
}
@media (max-width: 600px) {	
	.nav__item a{
	display: flex;
	align-items: center;
	line-height: 1.2;
	}
	.nav__item a .jpn{
	padding-top: 0.6em;
	padding-left: 0.6em;
	font-size: 1.25rem;
	text-align: left;
	}
	.nav__item .dot{
		font-size: 2.75rem;
		display: none;
	}
	
}


.page-header {
    display: flex;
    justify-content: space-between;
}


.content{
	padding: 0;
	overflow: hidden;
}

/* * * hero * * */
#hero{
	background-color: var(--light-yellow);
	margin: 0;
	padding-bottom: 0;
}
@media (min-width: 600px) {
	#hero{
		margin-top: 2rem;
		padding-top: 4rem;
	}
}


.inq{
	padding: 0.2em 0.4em 0;
	border: solid 1px black;
	width: 10%;
	font-size: 1.125rem;
	text-align: center;
	font-size: 0.875rem;
}
h1{
	margin: 1em auto;
	padding-top: 2em;
}
h2{
	margin: 1rem auto 2rem;
	text-align: center;
}
h2 img{
	margin-top: -80px;
    padding-top: 80px;
	max-width: 1000px;
	width: 100%;
	height: auto;
}
.block {
	margin-top: 6%;
	margin-bottom: 50px;	
}

.fa-instagram{
	color: white;
}

.top_txt{
	margin: 0.4em auto 2em;
	font-size: 1.25rem;
	font-weight: normal;
}


/* * * news * * */
#news{
	background-size: auto auto;
	background-color: rgba(252, 233, 235, 1);
	background-image: repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(250, 218, 223, 1) 10px, rgba(250, 218, 223, 1) 20px );
	height: auto;
}

#news .newsBox{
	margin: 1em auto;
	padding: 20px 30px;
	max-width: 1000px;
	width: 100%;
	height: 180px;
	background: #FFF;
	border: #f5f1e8 solid 1px;
}
@media screen and (max-width: 768px) {
	#news h2{ margin-bottom: 0;}
	#news .newsBox{
		margin: 0;
	}
}


#news .newsBox .newsList{
	height: 150px;
	overflow-y: scroll;
 }
#news .newsBox .newsList li{
	margin-bottom: 20px;
	padding-bottom: 1em;
	border-bottom: var(--black) dotted 2px;
	display: block;
	width: 100%;
 }

#news .newsBox .day{
	width: 150px;
	display: table-cell;
	font-size: 1.5rem;
	line-height: 18px;
	color: var(--black);
	text-align: left;
 }
#news .newsBox .text{
	display: table-cell;
	font-size: 1.75rem;
	line-height: 18px;
	color: #1f1f1f;
	text-align: left;
 }
#news .newsBox .text a{
	text-decoration: underline;
 }
 #news .newsBox .text a:hover{
	color: red;
	text-decoration: none;
 }

@media (max-width: 785px) {
		#news .newsBox .day{
		font-size: 1.25rem;
		width: 90px;
		}
	#news .newsBox .text{
		display: table-cell;
		font-size: 1.5rem;
	}
}

/* * * about * * */

.about_contents {
	margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
	position: relative; /* ← figureを絶対配置する基準 */
}

.about_contents figure.side {
    position: absolute;
    top: 50%; /* 親の中央に */
    transform: translateY(-50%);
    flex: 0 0 auto; /* flexの影響を受けないように */
}

.about_contents_inner {
    display: flex;
	flex-direction: column;
    flex: 1 1 auto;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
    min-width: 300px;
    max-width: 700px;
}

@media (max-width: 768px) {
	.about_contents{
		margin: 0 auto;
		padding: 0 4%;
		text-align: center;
	}
	
}
@media (max-width: 600) {
.about_contents_inner {
		margin-left:2rem;
		padding: 0 1rem;
	}
	
}
.about_contents figure.side {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    flex: 0 0 auto;
}

.about_contents figure.side.btm {
    left: 80px; /* 左側に装飾 */
	width: 15%;
	bottom: 0;
}

.about_contents figure.side.top {
	margin-right: 4rem;
    right: -20px; /* 右側に装飾 */
	width: 15%;
	top: 0;
}


#about .about_contents .about_contents_inner .cap{
	display: block;
	text-align: right;
	font-size: 1.125rem;
}
#about .about_contents_inner h3{
	display: flex;
	align-items: flex-end;
	flex-direction: row;
}
#about .about_contents_inner h3 img{
	width: 18%;
}
#about .about_contents_inner h3 .about_line{
	margin-left: 1rem;
	margin-bottom: .6rem;
	font-size: 4rem;
	font-weight: 700;
	font-style: normal;
	width: fit-content;
	display: inline-block;
    border-bottom: 10px solid var(--yellow);
	line-height: 1;
}
@media (max-width: 785px) {
	#about h3{
		margin-bottom: 1rem;
	}
	#about .about_contents_inner h3 img{
		width: 14%;
	}
	#about .about_contents h3 .about_line{
		border-bottom: 7px solid var(--yellow);
		font-size: 1.75rem;

	 }
	 #about .about_contents {
		width: 90%;
	}
	}


/* * * book * * */

#books {
    background-color: var(--light-blue);
}

.book_contents {
	margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
	position: relative; /* ← figureを絶対配置する基準 */
}

.book_contents figure.side {
    position: absolute;
    top: 50%; /* 親の中央に */
    transform: translateY(-50%);
    flex: 0 0 auto; /* flexの影響を受けないように */
}

.book_contents_inner {
    display: flex;
    flex: 1 1 auto;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
    min-width: 400px;
    max-width: 1000px;
}

.book_main {
    display: flex;
    gap: 20px;
    align-items: flex-start;
	margin: 0 auto;
    width: 90%;
}

/* slider 関連 */

/* figure side を外側に出す */
.book_contents figure.side {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    flex: 0 0 auto;
}

.book_contents figure.side.btm {
    left: 80px; /* 左側に装飾 */
	width: 12%;
	bottom: 0;
}

.book_contents figure.side.top {
	margin-right: 4rem;
    right: 40px; /* 右側に装飾 */
	width: 12%;
	top: 0;
}

.book_main .slider {
	flex: 2;                 /* スライダーを大きめに */
	min-width: 500px;        /* 最低幅を確保 */
  }
  
  .book_main .book_dtl {
	flex: 1;                 /* 詳細部分は半分程度 */
	min-width: 400px;        /* 最低幅を確保 */
  }

/* スマホ対応 */
@media screen and (max-width: 768px) {
	.book_main {
	  flex-direction: column; /* 縦並びに切り替え */
	  gap: 10px;
	  margin: 0 auto;
	  width: 90%;
	}
	.book_main .slider,
	.book_main .book_dtl {

		min-width: 100%;
	}
  }



.slick-track {
    display: flex !important;
    align-items: center;
}

/* responsive: スマホ用縦並び */
@media screen and (max-width: 768px) {
    .about_contents figure.side {
        display: none; /* スマホでは非表示 */
    }
    .about_contents_inner {
        flex-direction: column;
        gap: 10px;
		text-align: left;
    }
	.about_contents_inner .sm{
		display: none;
	}
    .about_contents_inner .slider,
    .about_contents_inner .book_dtl {
        max-width: 100%;
    }


	.book_contents figure.side {
        display: none; /* スマホでは非表示 */
    }
    .book_contents_inner {
        flex-direction: column;
        gap: 10px;
    }
    .book_contents_inner .slider,
    .book_contents_inner .book_dtl {
        max-width: 100%;
    }
}

/*矢印アイコンカスタマイズ　*/
.slick-next {
  right: -40px;
  z-index: 1000;
  font-size: 24px;   /* アイコンサイズ */
  color: #333;
  background: none;
  border: none;
}

.slick-next i {
  font-size: 32px;   /* アイコン大きめに */
  color: #333;       /* 矢印の色 */
}

.book_dtl {
    flex: 1;
    max-width: 35%;
    font-size: 14px;
}

.book_dtl dl { 
	margin: 0 auto;
	font-size: 2.8rem;
	font-weight:700;
}
.book_dtl dt { 
	margin: 1rem 0;
	font-size: 4rem;
}
.book_dtl dt span{ 
	font-size: 80%;
}

@media screen and (max-width: 768px) {
	.book_dtl dl { 
		margin: 0 auto;
		padding: 0 6rem;
		font-size: 2rem;
		font-weight:700;
	}
	.book_dtl dt { 
		margin: 1rem 0;
		font-size: 2.8rem;
	}
}
@media screen and (max-width: 412px) {
	.book_dtl dl { 
		padding: 0;
	}
	.book_dtl dt { 
		margin: 1rem 0;
		font-size: 2.8rem;
	}
}
.book_dtl dd { margin: 0 0 10px; }



.slider img {
    width: 100%;
    height: auto;
    display: block;
}

.slider .slick-slide { height: auto !important; }
.slider .slick-arrow { width: initial !important; height: initial !important; z-index: 2 !important; }
.slider .slick-arrow:before { font-size: 28px !important; }
.slick-prev:before, .slick-next:before { color: #999 !important; }
.slick-track { display: flex !important; align-items: center; }*/

.slider .slick-prev { left: -40px; top: 50%; transform: translateY(-50%); }
.slider .slick-next { right: -5px; top: 50%; transform: translateY(-50%); }

/* --- レスポンシブ（スマホ） --- */
@media screen and (max-width: 768px) {
    .book_contents_inner {
        flex-direction: column;
        gap: 10px;
    }
    .book_main {
        flex-direction: column;
        gap: 10px;
    }
    .slider, .book_dtl {
        max-width: 100%;
        flex: none;
    }


    .book_contents figure.side { display: none; }
    .slider .slick-prev { left: -20px; }
    .slider .slick-next { right: -5px; }

}



/* slider start*/
.slider{
    width:100%;
    margin:0 auto;
    padding: 1em;
}

.slider img{
	max-width:400px;
    margin: 0 auto;
   
}
.slider .slick-slide{
	height:auto!important;
}


.slider .slick-arrow{
    width: initial!important;
    height: initial!important;
    z-index:2!important;
}
.slider .slick-arrow:before{
    font-size: 28px!important;
}

.slick-prev:before,
.slick-next:before
{
    color:#999 !important;
}



.slick-track {
	display: flex !important;
	align-items: center;
}


/*------ /slider ------*/



#books .book_contents_inner .book_dtl dl{
	width: 80%;
}
#books .book_contents_inner .book_dtl dt{
	font-size: 1.125em;
	font-weight: bold;
}
#books .book_contents_inner .book_dtl dd{
	margin: 0.6em 0;
	gap: 5px;
}
#books .book_contents_inner .book_dtl .btn_both{
	display: flex;
	justify-content: space-between;
	margin-top: 8.8rem;	
}


#books .book_contents_inner .book_dtl a .btn_shop {
	background: #8fc31f;
	padding: 0.4em 0;
	text-align: center;
	color: var(--white);
	transition: background-color 0.5s;
	width: 100%;
	border-radius: 15px;
}
#books .book_contents_inner .book_dtl a .btn_shop:hover{
	background: #D2F440;
}





#books .book_contents_inner .book_dtl .btn_both{
	display: flex;
	justify-content: space-between;
	font-size: clamp(1.5rem, 2.5vw, 1.75rem);
}
@media (max-width: 786px) {
	#books .book_contents_inner .book_dtl .btn_both{
		margin-top: 1rem;	
	}
	#books .book_contents_inner .book_dtl dt{
		font-size: 1.5em;
		}

}



#books .book_contents_inner .book_dtl .btn_both a .btn_amazon{
	padding: 0.4em 2rem;
	background: #ee7800;
	text-align: center;
	border-radius: 10px;
	color: var(--white);
	font-weight: 700;
	transition: background-color 0.5s;
	width: 100%;
}
#books .book_contents_inner .book_dtl .btn_both a .btn_amazon:hover{
	background: #F7C56B;
}

#books .book_contents_inner .book_dtl .btn_both a .btn_rakuten{
	background: #e60012;
	padding: 0.4em 2em;
	text-align: center;
	border-radius: 10px;
	color: var(--white);
	font-weight: 700;
	transition: background-color 0.5s;
	width: 100%;
}
#books .book_contents_inner .book_dtl .btn_both a .btn_rakuten:hover{
	background: #F48C98;
}


#books h2{
	margin-bottom: 0;
}
#books .sml_txt{
	margin: 1em auto 3em;
	
	font-size: 1.25rem;
	text-align: center;
}
#books .sml_txt img{
	margin-top: -5px;
	width: 20px;
}


#review{
	background-color: #fcfab9;
	background-image: radial-gradient(#ffffcc 24%, transparent 25.5%), radial-gradient(#ffffcc 24%, transparent 25.5%);
	background-position: 0 0, 26px 26px;
	background-size: 52px 52px
}


#review ul{
	display: flex;
	justify-content: center;
}

#review li{
	margin-bottom: 2rem;
}
#review .f_pct img{
	max-height: 180px;
}

@media screen and (max-width: 480px) {
	#review .inner {
	width: 100%;
    padding: 0 4%;
}
  #review ul {
    display: flex;
    justify-content: center;
    align-items: center;
    /*gap: 10px; */
  }

  #review li:nth-of-type(odd) {
    flex-direction: row;
  }

  #review li:nth-of-type(even) {
    flex-direction: row-reverse;
  }

  #review .fade-in-image img {
    max-width: 75vw;
	width: 100%;
    height: auto;
  }

  #review .f_pct img {
    max-height: 50px;
    width: auto;
  }

  #review li {
    margin-bottom: 1rem;
  }
}





/* * * bnr  * * */
#bnr{
	padding: 4rem 0;
	max-width: 700px;
	width: 100%;
}


/* * * movie＆movie_top * * */
#movie{
	margin: 0 0 2em;
	background-color: rgba(226, 223, 239, 1); 
	padding: 2em 0 1em;
}

#movie .mov_wrap、#movie_top .mov_wrap{
	margin: 0 auto;
	text-align: center;
}
#movie .mov_wrap,#movie_top .mov_wrap{
	width:100%;
	padding-bottom: 56.25%;
	height:0px;
	position: relative;
}
#movie .mov_wrap iframe,#movie_top .mov_wrap iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#movie .top {
	background: #fff;
	margin: 2em 50px 1em;
	padding: 0 2rem;
	line-height: 60px;
	position: relative;
	height: 60px;
	text-align: center;
	color: darkturquoise;
	font-size: 2.5rem;
	font-weight: bold;
}
#movie_top .top {
	background: #55c3eb;
	margin: 2em 50px 1em;
	padding: 0 2rem;
	line-height: 60px;
	position: relative;
	height: 60px;
	text-align: center;
	color: #fff;
	font-size: 2.5rem;
	font-weight: bold;
}

#movie .top:before,
#movie .top:after{
	position: absolute;
	top: 0;
	display: block;
	height: 48px;
	content: '';
	border: 30px solid #fff;
}

#movie_top .top:before,
#movie_top .top:after{
	position: absolute;
	top: 0;
	display: block;
	height: 48px;
	content: '';
	border: 30px solid #55c3eb;
}

#movie .top:before {
	left: -40px;
	border-left-width: 15px;
	border-left-color: transparent;
}
#movie_top .top:before {
	left: -40px;
	border-left-width: 15px;
	border-left-color: transparent;
}

#movie .top:after {
	right: -40px;
	border-right-width: 15px;
	border-right-color: transparent;
}
#movie_top .top:after {
	right: -40px;
	border-right-width: 15px;
	border-right-color: transparent;
}

#movie .top span {
	position: relative;
	display: block;
}
#movie_top .top span {
	position: relative;
	display: block;
}




/* * * footer * * */
footer {
	margin: 0;
    padding: 0;
}
.footer_contents{
	background: var(--pink);
	margin: 0;
	padding: 0;
	border-top: var(--black) solid 5px;
	color: var(--black);
	font-weight: 700;
}
.footer_contents .inner{
	display: flex;
	justify-content: space-between;
	align-items: center; /* 上下位置も揃える */
	margin: 0 auto;
	padding: .5rem 1rem;
	max-width: 1140px;
}

.footer_contents p {
	margin: 0;
}



/* 左側リンクを横並びにする */
.footer_links {
	display: flex;
	gap: 1.5em;
	padding: 1rem 0;
	margin: 0;
	list-style: none;
}
.footer_links i { margin-right: 4px;}
.footer_links p {
	margin: 0; /* pタグのデフォルト余白を消す */
}

.footer_contents .inner .gakken_logo{
	margin-left: auto;
	font-weight: 900;
}

footer a:hover{
	text-decoration: underline;
}


/* * * page_top * * */
#page_top{
	position: fixed;
	right: 20px;
	bottom: 5px;
	z-index: 2000;
}
#page_top a{
	position: relative;
	display: block;
	width: 60px;
	height: 70px;
	text-decoration: none;
	opacity: 0.6;
}
#page_top a:hover{
	opacity:inherit;
	transform: translateY(-5px);
	cursor: pointer;
}

a.hover80:hover img{
	opacity:0.8;
	filter:alpha(opacity=80);
	-ms-filter: "alpha( opacity=80 )";
}





@media (max-width: 600px) {
	h2 img{
	margin-top: -50px;
    padding-top: 50px;
	}
  .button span {
    display: initial;
  }
	h2{
	margin-bottom: 1em;
	}
	h2 img{
	width: 100%;
	}
	#page_top{
		right: 10px;
		bottom: 3px;
	}
	#page_top a{
		width: 60px;
		height: 70px;
	}
}
@media (max-width: 375px) {
	h2 img{
	margin-top: -30px;
    padding-top: 30px;
	}
	
#about{
	margin: 1em 0;
}
#about .box{
	display: block;
}
#about dl{
	width: 100%;
}
	#about .ab_pct{
	width: 100%;
}

*/
#about .ab_pct_hrz{
	width: 100%;
	text-align: center;
}
	
#about .talk {
	margin: 1em 0 2em;
}
#about .talk figure img {
	width: 70%;
	height: 70%;
	margin: 0;
}	
#about .talk-Rimg {
	margin-top: 1em;
	margin-right: -1.6em;
	width: 50%;
	height: 50%;
}
#about p.talk-title {
	font-size: 1.75rem;
}
#about p.talk-text {
	font-size: 1.25rem;
}

#about .talk-Rtxt {
	position: relative;
	margin-right: 120px;
	padding: 1em 0.6em;
	}
	


.button--icon {
  min-width: initial;
  padding: 0.5rem;
}

#lnk .inner ul{
	display: block;
}
#lnk .inner ul li{
	margin-bottom: 1em;
	width: 100%;
}
#movie .top,#movie_top .top  {
	font-size: 88%;
	line-height: 30px;
}
#insta .top  {
	font-size: 1.75rem;
	line-height: 30px;
}
#insta .top span {
	padding-left: .2rem;
	font-size: 1.25rem;
	display: block;
}
}
	
/* スマホスタイル：～375pxs */
@media (max-width: 375px) {
#news .newsBox .day{
	width: 120px;
	font-size: 13px;

 }
#news .newsBox .text{
	font-size: 14px;

 }
}

/**/
/*fadeInUp*/
.fadeInUp {
  opacity : 0;
  transform: translateY(20px);
  transition: 1s;
}

/* slick のデフォルト矢印を完全に消す */
.slick-prev:before,
.slick-next:before {
  content: none !important;
}

css


/*
MOVE
================================================ */


/*動きのきっかけの起点となるクラス名 はじめは非表示に*/
.fadeInUpTrigger,
.fadeInDownTrigger{
	opacity: 0;
}


/*動きのきっかけの起点となるクラス名 はじめは非表示に*/
.fadeInUpTrigger,
.fadeInDownTrigger{
	opacity: 0;
}


.fade-in-image {
	width: 800px; /* 画像の横幅 */
	opacity: 0;
	transform: scale(0);
	transition: all 2s ease;
	margin: 20px; /* 画像間の上下余白 */
  }
  
  .fade-in-image.show {
	opacity: 1;
	transform: scale(1.1);
  }
  @keyframes bounce {
	0% {
	  transform: scale(0);
	  opacity: 0;
	}
	50% {
	  transform: scale(1.25);
	  opacity: 1;
	}
	70% {
	  transform: scale(0.9);
	}
	100% {
	  transform: scale(1);
	}
  }
  
  .fade-in-image.show {
	animation: bounce 2s ease forwards;
  }