@charset "utf-8";
/* CSS Document */

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
スライダー
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
.slider_wrap {
  /* 高さを揃える場合 */
  /* &.slick_flex {

        .slick-track {
            display: flex;
        }

        .slick-slide {
            height: auto !important;
        }
    } */

  /*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
  /* ナビゲーション */

  /*--------------------*/
  /*button  リセット*/
  button {
    border: none;
    background-color: transparent;
    font-size: 0;
    line-height: 0;
    position: relative;
    margin: 0;
    padding: 0;
    transition: 0.2s;

    /*--------------------*/
    /* アロー */
    &.slick-arrow {
      position: absolute;
      top: 0;
      bottom: 0;
      margin: auto;
      width: 4rem;
      height: 4rem;
      border-radius: 999px;
      background-color: rgba(255, 255, 255, 0.3);
      z-index: 2;

      &:hover {
        background-color: rgba(255, 255, 255, 0.6);
        cursor: pointer;
      }

      &:focus {
        background-color: rgba(255, 255, 255, 0.8);
      }

      &::after {
        content: "";
        display: block;
        width: 20%;
        aspect-ratio: 1 / 1;
        border: 2px solid #000;
        border-bottom: none;
        border-right: none;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-25%, -50%) rotate(-45deg);
      }

      &.slick-prev {
        left: 0;
      }

      &.slick-next {
        right: 0;
        transform: scale(-1, 1);
      }
    }
  }

  /*--------------------*/
  /* ドットナビ */
  ul.slick-dots {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 1;
    position: absolute;
    width: 100%;
    bottom: 1rem;

    li {
      margin: 0 0.4rem;
      /*button がinline-block要素なので、行の高さをとらせないように0を指定*/
      line-height: 0;
    }

    button {
      &::after {
        content: "";
        display: block;
        width: 0.8rem;
        height: 0.8rem;
        border-radius: 999px;
        background-color: rgba(0, 0, 0, 0.3);
      }

      &:hover {
        &::after {
          background-color: rgba(0, 0, 0, 0.6);
          cursor: pointer;
        }
      }
    }

    &.slick-active {
      button {
        &::after {
          background-color: rgba(0, 0, 0, 0.8);
        }
      }
    }
  }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
スライダーサイズ設定
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
.slider .slider_item {
  /*高さをいっぱいにする時は100vh - (.header_inner{height} + .glo_nav_wrap{height})*/
  /* max-height: calc(100vh - 9rem); */

  @media screen and (max-width: 480px) {
  }
}
