.slick-dots {
  /* Basic positioning and layout */
  position: absolute; /* Or relative, depending on desired positioning */
  bottom: 20px; /* Example: distance from the bottom of the slider */
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none; /* Removes default list bullets */
  text-align: center; /* Centers the dots horizontally */

  /* Optional: appearance */
  z-index: 1; /* Ensures dots are above other elements if needed */
}

.slick-dots li {
  /* Styling for each individual dot container */
  display: inline-block; /* Arranges dots horizontally */
  margin: 0 5px; /* Spacing between dots */
}

.slick-dots li button {
  /* Styling for the clickable dot element itself */
  font-size: 0; /* Hides default text (e.g., "1", "2") */
  line-height: 0;
  display: block;
  width: 10px; /* Width of the dot */
  height: 10px; /* Height of the dot */
  padding: 5px; /* Clickable area padding */
  cursor: pointer;
  border: none;
  border-radius: 50%; /* Creates a circular shape */
  background: #FFF; /* Default background color */
  outline: none; /* Removes outline on focus */
}

.slick-dots li.slick-active button {
  /* Styling for the active (current) dot */
  background: #D38726; /* Background color for the active dot */
}

/* 共通スタイル */
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #52370F;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0;       /* テキストを消す */
  line-height: 0;     /* 行間も消す */
  color: transparent; /* 念のため文字色も透明に */
border: none;
}

.slick-prev:hover,
.slick-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* 左矢印 */
.slick-prev {
  left: 10px;
}
/*
.slick-prev::before {
  content: "←";
  font-size: 20px;
  line-height: 1;
  color: #FFF;
}
*/

/* 右矢印 */
.slick-next {
  right: 10px;
}
/*
.slick-next::before {
  content: "→";
  font-size: 20px;
  line-height: 1;
  color: #FFF;
}
*/

.slick-prev::before,
.slick-next::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  /* 右矢印形（＞）になる角を作ってから回転で向き調整 */
  transform: rotate(45deg);
	position:absolute;
}
.slick-prev::after,
.slick-next::after {
	content:"";
	display:block;
	border-top:1px solid #FFF;
	position:absolute;
	top:calc(50%-1px);
	width:12px;
	height:2px;
}

.slick-next::before {
	right:12px;
}
/* 左矢印（＜）は回転を変えるだけ */
.slick-prev::before {
  transform: rotate(225deg); /* = 45° + 180°（反転） */
	left:12px;
}
