.ig_slider .slick-track {
    position: relative;
    display: flex;
    gap: 30px;
}
.ig_slider li{
    display: block!important;
    /*width: 180px!important;
    height: 225px;*/
    width: 30% !important;
    aspect-ratio: 1 / 1.3;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border-radius: 5px;
}
.ig_slider a{
    position: relative;
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
	text-decoration: none;
}
.ig_slider a:hover{
    opacity: 1;
    background-color: rgb(0 0 0 / 50%);
    backdrop-filter: blur(4px);
}
.ig_slider a:hover p{
    visibility: visible;
}
.ig_slider p{
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    visibility: hidden;
    padding: 1.2em;
    color: #fff;
    font-size: 70%;
    z-index: 1;
}
@media screen and (max-width: 480px) {
    .ig_slider .slick-track {
        gap: 10px;
    }
    .ig_slider li{
        width: 100% !important;
    }
    .ig_slider p{
        font-size: 100%;
    }
}


/* スライダー */
  .ig-prev, .ig-next {
    margin: auto;
    position: absolute;
    top: 45%;
    transform: translateY(-45%);
    z-index: 2;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.7);
  }
  .ig-prev {
    left: 0;
  }
  .ig-next {
    right: 0;
  }
  .ig-prev-arrow, .ig-next-arrow {
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 20px;
    height: 20px;
    border-top: 1px solid #333;
  }
  .ig-prev-arrow {
    left: 60%;
    border-left: 1px solid #333;
    transform: translate(-60%, -50%) rotate(-45deg);
  }
  .ig-next-arrow {
    left: 35%;
    border-right: 1px solid #333;
    transform: translate(-35%, -50%) rotate(45deg);
  }
.ig-dots {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 5px;
    margin: 50px 20px 0;
}
.ig-dots li {
    width: 8px !important;
    height: 8px;
    background: #ccc;
    transition: background-color .5s ease;
    list-style-type: none;
}
.ig-dots li.slick-active {
    background: #833417;
}
.ig-dots li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
    color: transparent;
}
.slick-dotted.slick-slider {
    margin-bottom: 0;
}
@media screen and (max-width: 480px) {
    .ig-prev, .ig-next {
        width: 40px;
        height: 40px;
    }
    .ig-prev-arrow, .ig-next-arrow {
        width: 12px;
        height: 12px;
    }
    .ig-next-arrow {
        left: 40%;
    }
}
