@charset "utf-8";
@import url("root.css");

/***************************************
-------------- PURCHASE --------------
***************************************/

.about_Wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
  .about_txt {
    width: 60%;
  }
  .about_slider_wrap {
    width: 36%;
  }
}

@media (max-width: 599.98px) {
  .about_Wrap {
    .about_txt {
      width: 100%;
      order: 2;
    }
    .about_slider_wrap {
      width: 100%;
      order: 1;
      margin-bottom: clamp(10px, 2vw, 20px);
    }
  }
}

.access_wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(15px, 3vw, 30px) 4%;
  counter-reset: listnum;
  list-style: none;
}
.access_box {
  width: calc(92% / 3);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  .access_txt {
    margin-top: clamp(5px, 1vw, 10px);
  }
  .access_txt::before{
    font-size: clamp(2.4rem, 4.5vw, 3.2rem);
    font-style: italic;
    font-weight: 600;
    color: #b4b4e4;
    line-height: 1.0;
    counter-increment: listnum;
    content: counter(listnum);
    margin-right: 5px;
  }
}

.access_img {
  width: 100%;
  img {
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 599.98px) {
  .access_box {
    width: calc(96% / 2);
  }
}


.about_slider_thumb .slick-track {
  transform:unset!important;
}


/* =======================
  PC
======================== */
@media screen and (min-width: 1200px) {
}

/* =======================
  TABLET
======================== */
@media screen and (max-width: 1199px) {
}

/* =======================
  SP
======================== */
