/*==================================================
スライダーのためのcss
===================================*/
.slider {
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
}
.slider-img img {
  height: auto;
  width: 100%;
}
.slide-arrow {
  background-color: #fff;
  bottom: 0;
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
}
.prev-arrow {
  border-bottom: 10px solid  #fff;
  border-left: 0;
  border-right: 10px solid #BB9E22;
  border-top: 10px solid  #fff;
  left: -25px;
}
.next-arrow {
  border-bottom: 10px solid  #fff;
  border-left: 10px solid #BB9E22;
  border-right: 0;
  border-top: 10px solid  #fff;
  right: -25px;
}
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
}

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
  z-index: 3;
    top: 48%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #ccc;/*矢印の色*/
    border-right: 2px solid #ccc;/*矢印の色*/
    height: 25px;
    width: 25px;
}

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

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

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

.slick-dots {
  position: relative;
  z-index: 3;
    text-align:center;
  margin: 75px 0 0 0;
}

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

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

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

.slider-sec {
  position: relative;
}

/* 背景要素のスタイル */
.slider-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: red; /* 背景色を赤に設定 */
  opacity: 0; /* 初期は透明に設定 */
  z-index: 1; /* 背景を最前面に表示するためのz-index */
}

/* カーソル領域 */
.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer; /* カーソルをポインターに設定 */
  z-index: 2; /* カーソル領域を背景の上に表示するためのz-index */
}

/*========= レイアウトのためのCSS ===============*/
ul{
  margin:0;
  padding: 0;
  list-style: none;
}

a{
  color: #fff;
}

a:hover,
a:active{
  text-decoration: none;
}
.wrapper{
  position: relative;
}

.container{
  background:#555;
}