@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_box .access_txt {
  margin-top: clamp(5px, 1vw, 10px);
}
.access_box .access_txt::before {
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  font-style: italic;
  font-weight: 600;
  color: var(--base-color01);
  line-height: 1;
  counter-increment: listnum;
  content: counter(listnum);
  margin-right: 5px;
}
.access_img {
  width: 100%;
}
.access_img 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;
}

.youtube_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.youtube_wrap iframe {
  width: 100%;
  max-width: 70%;
  aspect-ratio: 16 / 9;
  border: none;
}

/* 近隣駐車場リスト用CSS */
.nearby_parking_lot {
  margin-top: 40px;
  background: #fafbfc;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.parking_list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.parking_item {
  flex: 1 1 260px;
  min-width: 240px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 18px 14px 12px 14px;
  box-sizing: border-box;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.parking_item h3 {
  font-size: 1.1rem;
  color: #bfa046;
  margin-bottom: 8px;
  font-weight: bold;
}

.parking_item p {
  font-size: 1.8rem;
  margin: 4px 0;
  color: #333;
}

.parking_item .note {
  font-size: 1.8rem;
  color: #888;
  margin-top: 8px;
}

.parking_images {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  width: 100%;
  border-radius: 5px;
  justify-content: center;
}
.parking_images img {
  width: 49.5%;
  height: auto;
  object-fit: cover;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* スマホ対応 */
@media (max-width: 700px) {
  .youtube_wrap iframe {
    max-width: 100%;
  }
  .parking_images {
    flex-wrap: wrap;
  }
  .parking_list {
    flex-direction: column;
    gap: 16px;
  }
  .parking_item {
    min-width: 0;
    width: 100%;
  }
  .parking_images img {
    width: 100%;
    height: auto;
  }
}

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

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

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