@charset "utf-8";
/* @import url('https://fonts.googleapis.com/css2?family=Cherry+Swash&display=swap'); */

body{
  background: seashell;
}
h1{
  font-family: 'Cherry Swash', cursive;
  font-size: 80px;
  text-align: left;
  color: gray;
  padding-left: 20px;
  top: 30px; 

  z-index: 999;
}


/*==================================================
スライダーのためのcss
===================================*/
#h1{
  font-family: 'Cherry Swash', cursive;
  font-size: 80px;
  text-align: left;
  color: gray;
  padding-left: 20px;
  top: 30px; 
  position: relative;
  z-index: 999;
}
/*画像の横幅を100%にしてレスポンシブ化*/
img{
	width: 100%;
	height: auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/
}

/*メイン画像下に余白をつける*/
.gallery{
	margin:0 0 5px 0;
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
	z-index: 2;
    top: 50%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 5px solid black;/*矢印の色*/
    border-right: 5px solid black;/*矢印の色*/
    height: 20px;
    width: 20px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*選択するサムネイル画像の設定*/

.choice-btn li{
	cursor: pointer;
	outline: none;
	background:#333;
list-style:none;
}

.choice-btn li img{
	opacity: 0.4;/*選択されていないものは透過40%*/
}

.choice-btn li.slick-current img{
	opacity: 1;/*選択されているものは透過しない*/
}

.wrapper{
  width:94%;
  max-width:900px;
  margin:0 auto;
}

ul{
  margin:0;
  padding: 0;
  list-style: none;
}

a{
  color: #333;
}

a:hover,
a:active{
  text-decoration: none;
}


/* .wrapper h1{ 
  font-family: 'Cherry Swash', cursive;
  font-size: 70px;
  text-align: left;
  color: gray;
  }*/

