.glide__arrow {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: transparent; /* テキストを非表示 */
  text-transform: uppercase;
  width: 100px; /* サイズを統一 */
  height: 100px; /* サイズを統一 */
  background-color: transparent;
  opacity: 1;
  transform: translateY(-50%);
  transition: opacity 150ms ease, border 300ms ease-in-out;
}

.glide__arrow:focus {
  outline: none;
}

.glide__arrow:hover {
  border-color: white;
}

.glide__arrow::after {
  display: block;
  color: #EF8400; /* 矢印の色 */
  opacity: 75%;
  animation: arrow-bounce 1.5s infinite; /* アニメーションを共通化 */
}

/* 左矢印 */
.glide__arrow--left {
  left: -35px;
}

.glide__arrow--left::after {
  content: '〈';
  display: block;
  font-size: 100px; /* フォントサイズを設定 */
  color: #EF8400;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8, 2); /* 縦長に調整 */
  animation: arrow-bounce-left 1.5s infinite; /* 左矢印のアニメーション */
}

/* 右矢印 */
.glide__arrow--right {
  right: -35px;
}

.glide__arrow--right::after {
  content: '〉';
  display: block;
  font-size: 100px; /* フォントサイズを設定 */
  color: #EF8400;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8, 2); /* 縦長に調整 */
  animation: arrow-bounce-right 1.5s infinite; /* 右矢印のアニメーション */
}

/* アニメーション：左矢印 */
@keyframes arrow-bounce-left {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0.8, 2); /* スケールを保持 */
  }
  50% {
    transform: translate(calc(-50% - 10px), -50%) scale(0.8, 2); /* 左方向に動かす */
  }
}

/* アニメーション：右矢印 */
@keyframes arrow-bounce-right {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0.8, 2); /* スケールを保持 */
  }
  50% {
    transform: translate(calc(-50% + 10px), -50%) scale(0.8, 2); /* 右方向に動かす */
  }
}

@media screen and (max-width: 760px) {
  .glide__arrow--left::after,
  .glide__arrow--right::after {
    font-size: 50px; /* 矢印のサイズ */
  }
}

.glide__arrow--disabled {
  opacity: 0.33;
}

.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: -20px;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}
.glide__bullet {
  background-color: rgba(200, 200, 200, 0.8);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  margin: 0 0.25em;
}
.glide__bullet:focus {
  outline: none;
}
.glide__bullet:hover, .glide__bullet:focus {

}
.glide__bullet--active {
  background-color: #EF8400;
}
.glide--swipeable {
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
.glide--dragging {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

