@charset "UTF-8";
/* ============= color ============== */
h2 {
  text-align: left;
  margin: 16px auto auto 4%;
  padding-left: 46px;
}

section {
  margin: 16px 4% 24px;
  border-radius: 16px;
  padding: 8px 4% 16px;
  background: #f7f5ee;
  box-shadow: 0 1px 5px rgba(71, 67, 55, 0.4);
}

section h3 {
  border-bottom: 1px solid #D8C89E;
  margin-bottom: 16px;
  padding-bottom: 16px;
}

section h3 span {
  display: block;
  background: inherit;
  padding: 8px 0 0;
  font-weight: normal;
  font-size: 85%;
}

.program {
  margin: 8px auto 16px;
  text-align: center;
}

.program a {
  color: #615431;
}

.note {
  margin: auto auto 8px;
  font-size: 1.2rem;
  color: #2A3348;
}

.note1 {
  text-align: right;
  margin-top: 4px;
  margin-bottom: 16px;
  font-size: 1rem;
}

.note2 {
  text-align: right;
  margin: 4px auto 16px;
}

.more {
  margin: 8px auto auto;
  text-align: right;
}

.more a {
  color: #615431;
}

.pager-gallery {
  margin-top: 24px;
}

.pager-gallery li {
  padding-bottom: 8px;
}

.pager-gallery li a {
  display: inline-block;
  color: #615431;
  font-weight: bold;
}

.fog2 {
  bottom: -30px;
}

@media screen and (min-width: 900px) {
  .area-fog {
    position: relative;
  }
  .area-fog .fog6 {
    bottom: 0;
  }
  .area-fog .fog3 {
    bottom: 20px;
  }
}

/*==================================================
スライダーのためのcss
===================================*/
/*画像の横幅を100%にしてレスポンシブ化*/
section img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  /*画像の下にできる余白を削除*/
}

/*メイン画像下に余白をつける*/
.gallery {
  margin: 0 0 5px 0;
}

.gallery li {
  list-style: none;
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 3;
  top: 42%;
  cursor: pointer;
  outline: none;
  border-top: 2px solid #ccc;
  /*矢印の色*/
  border-right: 2px solid #ccc;
  /*矢印の色*/
  height: 25px;
  width: 25px;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: 2.5%;
  transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: 2.5%;
  transform: rotate(45deg);
}

/*選択するサムネイル画像の設定*/
.thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.thumbs li {
  cursor: pointer;
  outline: none;
  width: 76px !important;
  list-style: none;
  height: 52px;
  margin: 2px;
}

.thumbs li img {
  opacity: 0.6;
  /*選択されていないものは透過40%*/
}

.thumbs li.slick-current img {
  opacity: 1;
  /*選択されているものは透過しない*/
}

.thumbs .slick-track {
  transform: unset !important;
  /*画面幅サイズ変更に伴うサムネイル固定*/
}

@media screen and (min-width: 900px) {
  section {
    margin: 30px 4% 50px;
    padding: 16px 4% 24px;
  }
  section h3 {
    font-size: 2.6rem;
  }
  .thumbs li {
    width: 108px !important;
    height: 71px;
  }
  .program {
    margin: 16px auto 34px;
  }
  .note {
    margin: auto auto 8px;
  }
  .note1 {
    margin-bottom: 16px;
    margin-top: 4px;
  }
  .note2 {
    text-align: right;
    margin: -8px auto 8px;
    font-size: 1.1rem;
  }
}

.gallery-type2 {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}

.gallery-type2 li a img {
  width: 100%;
  user-select: none;
}

/* PC ---------------------------------------------- */
@media screen and (min-width: 900px) {
  .gallery-type2 {
    grid-template-columns: repeat(3, 1fr);
  }
}
