@charset "utf-8";
/* CSS Document */
/* ---------- shop info ---------- */
.shop_info_section {
  position: relative;
  overflow: hidden;
}
.shop_info_section .shop_info_img {
  overflow: hidden;
  border-radius: 6px;
}
.shop_info_section .shop_info_img img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.2;
  object-fit: cover;
}
.shop_info_section .shop_info_row {
  display: flex;
  border-bottom: 1px solid rgba(51, 51, 51, 0.16);
}
.shop_info_section .shop_info_row .label {
  width: clamp(130px, 18vw, 210px);
  flex: none;
  padding: clamp(16px, 2vw, 24px) 0;
  box-sizing: border-box;
}
.shop_info_section .shop_info_row .txt {
  flex: 1;
  padding: clamp(16px, 2vw, 24px) 0;
  box-sizing: border-box;
}
.shop_info_section .shop_info_row p {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 576px) {
  .shop_info_section .shop_info_row {
    display: block;
    padding: 16px 0;
  }
  .shop_info_section .shop_info_row .label, .shop_info_section .shop_info_row .txt {
    width: 100%;
    padding: 0;
  }
  .shop_info_section .shop_info_row .label {
    margin-bottom: 8px;
  }
}
/* ---------- access ---------- */
.access_section {
  position: relative;
  overflow: hidden;
}
.access_section .access_map {
  overflow: hidden;
  border-radius: 6px;
}
.access_section .access_map iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.2;
  height: auto;
}
.access_section .access_txtbox {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}
.access_section .access_btns {
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  flex-wrap: wrap;
}
.access_section .access_btns .more1 a {
  min-width: clamp(220px, 22vw, 290px);
}
@media screen and (max-width: 576px) {
  .access_section .access_map iframe {
    aspect-ratio: 1 / 1;
  }
  .access_section .access_btns {
    display: block;
  }
  .access_section .access_btns .more1 + .more1 {
    margin-top: 14px;
  }
  .access_section .access_btns .more1 a {
    width: 100%;
  }
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px) {}