.listTop {
  margin: auto;
    text-align: center;
}

.seasonBlock {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
}
.seasonBlock div {
  width: 60%;
  height: auto;
}

.seasonBlock p {
  font-size: 1.5rem;
  padding: 0 10px;
}

.book {
  background-color: #818182;
}

.TopTitle {
  padding-top: 100px;
  padding-bottom: 30px;
}
.UnderTitle {
  padding-top: 30px;
  padding-bottom: 100px;
}

.transparent img {
  opacity: 0.3;
}

  .VerticalText {
    content-visibility: hidden;
  }





/*======================= スライダーのためのcss ==========================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
  width:95%;
  height: auto;
  margin:0 auto;
}
.slider li {
  width: auto;
  height: 60svh;
}
.slider img {
  width:auto;/*スライダー内の画像を60vwにしてレスポンシブ化*/
  height:100%;
}
.slider .slick-slide {
transform: scale(0.8);/*左右の画像のサイズを80%に*/
transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
opacity: 0.5;/*透過50%*/
}

.slider .slick-slide.slick-center{
transform: scale(1);/*中央の画像のサイズだけ等倍に*/
opacity: 1;/*透過なし*/
}


/*ドットナビゲーションの設定*/

.slick-dots {
text-align:center;
margin:20px 0 0 0;
}

.slick-dots li {
  display:inline-block;
margin:0 5px;
height: 20px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width:8px;/*ドットボタンのサイズ*/
  height:8px;/*ドットボタンのサイズ*/
  display:block;
  border: solid 0.5px #00742e;
  border-radius:50%;
  background:#f9f9f9;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
  background:#00742e;/*ドットボタンの現在地表示の色*/
}



/*==================================================
Flex 横幅調整
==================================================*/
@media screen and (min-width:750px)and (max-width:959px) {
  .season {
    width: 70%;
    height: auto;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
  }
  .seasonBlock img{
    width: 100%;
  }
  .season .wideAdjustment {
    width: 70%;
  }
  .season p {
    font-size: 18px;
  }
  .seasonUnderText {
    width: 70%;
  }
}
@media screen and (min-width:960px)and (max-width:1499px) {
  .season {
    width: 60%;
    height: auto;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
  }
  .seasonBlock img{
    width: 100%;
  }
  .season .wideAdjustment {
    width: 70%;
  }
  .season p {
    font-size: 18px;
  }
  .seasonUnderText {
    width: 60%;
  }
}
@media screen and (min-width:1500px) {
  .season {
    width: 50%;
    height: auto;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
  }
  .seasonBlock img{
    width: 100%;
  }
  .season .wideAdjustment {
    width: 70%;
  }
  .season p {
    font-size: 18px;
  }
  .seasonUnderText {
    content-visibility: hidden;
  }
}

/*==================================================
タブレット画面
==================================================*/
@media screen and (min-width:750px)and (max-width:959px) {
  .wrapCenter {
    width: 80%;
    height: auto;
    margin: auto;
  }
  .slider {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-grow: 1;
    gap:20px;
  }
  .slider li {
    width: calc(100%/3 - 20px);
    height: auto;
  }
    .VerticalText {
    content-visibility: hidden;
  }
}

/*==================================================
パソコン画面
==================================================*/
@media screen and (min-width:960px)and (max-width:1499px) {
  .bookTitle {
    width: 50%;
    height: auto;
    margin: auto;
  }
  .TopTitle {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .UnderTitle {
    padding-top: 50px;
    padding-bottom: 100px;
  }
  .wrapCenter {
    width: 75%;
    height: auto;
    margin: auto;
  }
  .slider {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-grow: 1;
    gap:50px;
  }
  .slider li {
    width: calc(100%/3 - 50px);
    height: auto;
  }
  .VerticalText {
    content-visibility: hidden;
  }
}

/*==================================================
パソコン大画面
==================================================*/
@media screen and (min-width:1500px) {
  .bookTitle {
    width: 50%;
    height: auto;
    margin: auto;
  }
  .TopTitle {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .UnderTitle {
    padding-top: 50px;
    padding-bottom: 100px;
  }

  .relative {
    width: 100%;
    height: auto;
  }
  .wrapCenter {
    width: 50%;
    height: auto;
    margin: auto;
  }
  .slider {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-grow: 1;
    gap:50px;
  }
  .slider li {
    width: calc(100%/3 - 50px);
    height: auto;
  }
  .VerticalText {
    content-visibility: visible;
    width: 3%;
    height: auto;
    position: absolute;
    top: 50%; /* 上から50%の位置に設定 */
    left: auto; /* 左から50%の位置に設定 */
    right: 10%;
    transform: translateY(-50%); /* 縦軸中央の調整 */
  }
}