@charset "utf-8";
/* CSS Document */
/* ---------- store detail ---------- */
.store_detail {
  padding: 0px 20px 80px;
}
.store_detail_inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  gap: 70px;
  align-items: flex-start;
}
.store_info {
  width: 44%;
  padding-top: 20px;
}
.store_name {
  margin: 0 0 8px;
  color: #07913a;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.store_info_list {
  width: 100%;
}
.store_info_item {
  display: flex;
  gap: 40px;
  padding: 25px 0;
  border-top: 1px solid rgba(173, 170, 170, 0.3);
}
.store_info_item:last-child {
  border-bottom: 1px solid rgba(173, 170, 170, 0.3);
}
.store_info_title {
  width: 120px;
  flex-shrink: 0;
}
.store_info_title p {
  font-weight: 700;
  line-height: 1.8;
}
.store_info_txt {
  flex: 1;
}
.store_info_txt p {
  line-height: 1.8;
}
.store_info_txt a {
  color: inherit;
  text-decoration: none;
}
.store_detail_slider {
  width: 56%;
  min-width: 0;
}
.store_main_slider {
  margin-bottom: 16px;
}
.store_main_slider img {
  width: 100%;
  aspect-ratio: 570 / 570;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
.store_thumb_slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.store_thumb_item {
  cursor: pointer;
}
.store_thumb_item img {
  width: 100%;
  aspect-ratio: 180 / 120;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  transition: opacity 0.3s;
}
.store_thumb_item.active img {
  opacity: 0.55;
}
.store_main_slider .slick-arrow {
  display: none !important;
}
/* ---------- access map ---------- */
.access_map_wrap {}
.access_title_wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.access_line {
  width: 100%;
  height: 1px;
  background: rgba(173, 170, 170, 0.3);
}
.access_title {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 102px;
  padding: 5px 18px;
  background: #F2F5EA;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
.access_title p {
  color: #4caf50;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
.access_map_iframe {
  overflow: hidden;
  border-radius: 16px;
}
.access_map_iframe iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {
  .store_detail_inner {
    gap: 45px;
  }
  .store_info_item {
    gap: 25px;
  }
  .access_map_iframe iframe {
    height: 400px;
  }
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {
  .store_detail {
    padding: 0px 20px;
  }
  .store_detail_inner {
    flex-direction: column;
    gap: 40px;
  }
  .store_info, .store_detail_slider {
    width: 100%;
  }
  .store_info {
    padding-top: 0;
  }
  .access_map_wrap {
    padding: 0 0 0px;
  }
  .access_title_wrap {
    margin-bottom: 22px;
  }
  .access_map_iframe iframe {
    height: 340px;
  }
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {
  .store_detail {
    padding: 0px 15px;
  }
  .store_info_item {
    display: block;
    padding: 18px 0;
  }
  .store_info_title {
    width: auto;
    margin-bottom: 6px;
  }
  .store_thumb_slider {
    gap: 10px;
  }
  .access_title {
    min-width: 90px;
    padding: 5px 14px;
  }
  .access_map_iframe {
    border-radius: 12px;
  }
  .access_map_iframe iframe {
    height: 280px;
  }
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px) {
  .store_detail {
    padding: 0px 12px;
  }
  .access_map_iframe iframe {
    height: 240px;
  }
}