.acms-micropager {
    display: flex;
    justify-content: center;
}
.acms-micropager .acms-micropager__page {
    font-size: 14px;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.2rem;
    height: 3.8rem;
    line-height: 1.4285714286;
    border-radius: 0.5rem;
    background-color: #f3f3f3;
    margin-right: 0.8rem;
    border: 1px solid rgba(0, 0, 0, .1);
}
.acms-micropager .acms-micropager__page-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.2rem;
    height: 3.8rem;
    line-height: 1.4285714286;
    border-radius: 0.5rem;
    background-color: #f3f3f3;
    margin-right: 0.8rem;
    border: 1px solid rgba(0, 0, 0, .1);
}
.acms-micropager .acms-micropager__page-cur {
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.2rem;
    height: 3.8rem;
    line-height: 1.4285714286;
    border-radius: 0.5rem;
    margin-right: 0.8rem;
    border: 1px solid rgba(0, 0, 0, .1);
    background-color: rgb(255, 187, 0);
    color : #FFFFFF !important;
    cursor: default;
}
.acms-micropager .acms-micropager__page:hover,
.acms-micropager .acms-micropager__page-arrow:hover {
    color: #FFF;
    background-color: #F9B433;
    border: 1px solid rgba(0, 0, 0, .1);
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
}
.acms-micropager .acms-micropager__page-cur:hover {
    text-decoration: none;
    background-color: rgb(255, 187, 0);
    border: 1px solid rgba(0, 0, 0, .1);
}

/* pagenation
-------------------------------------------- */
.splide__pagination {
    bottom: -2.5rem !important;
    gap: 0.5em !important;
}
.splide__pagination__page {
  background: #fff !important;
  border: 1px solid #999 !important;
  width: 1rem !important;
  height: 1rem !important;
  opacity: 1 !important;
}
.splide__pagination__page.is-active {
  background: #999 !important;
}

/* arrow */
.splide__arrow {
  width: 100px !important;
  height: 100% !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  z-index: 1 !important;
  opacity: 1 !important;
}
.splide__arrow::before {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 4rem !important;
  height: 4rem !important;
  background-color: #fff !important;
  border-radius: 9999px !important;
  z-index: 2 !important;
}
.splide__arrow svg {
  position: relative !important;
  fill: #333 !important;
  width: 1.5rem !important;
  height: 1.5rem !important;
  z-index: 3 !important;
}
.splide__arrow.splide__arrow--prev {
  left: 0 !important;
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8)) !important;
}
.splide__arrow.splide__arrow--next {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8)) !important;
  right: 0 !important;
}


/* tag
--------------------------------------- */
.choice_tag {
    display: inline-block;
    border: 0.1rem solid #e5e5e5;
    background-color: #f7f7f7;
    border-radius: 0.4rem;
    margin: 0 5px 10px 0
}
.choice_tag_link {
    color: #666;
    padding: 1rem;
}
.selected_title {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.6;
    padding-bottom: 2rem;
    border-bottom: 0.2rem solid #FFBB00;
}

/* utilities
--------------------------------------- */
.my-10 {
    margin:10px 0;
}

.mr-10 {
    margin-right:10px;
}
.mt-10 {
    margin-top:10px;
}
.mt-60 {
    margin-top:60px;
}

.line-clamp-4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}