@charset "utf-8";
/* CSS Document */
/* ---------- shop detail ---------- */
.shop_detail {
  position: relative;
}

.shop_detail .shop_detail_mv {
  width: 100%;
  margin: 0 auto;
}

.shop_detail .shop .check-item{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 7px 16px;
  border-radius: 999px;
  background: #f5ce69;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.shop_detail_mv .shop {
  margin-bottom: 10px;
}

.shop_detail_mv h1 {
  color: #7b5d50;
  letter-spacing: 0.08em;
  margin-bottom: clamp(22px, 3vw, 36px);
}

.shop_detail_img {
  width: min(900px, 100%);
  margin: 0 auto clamp(22px, 3vw, 34px);
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
  border-radius: clamp(34px, 5vw, 62px);
}

.shop_detail_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop_service_tags {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.shop_service_tags .check-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 18px;
  border: 1px solid #ef7fab;
  border-radius: 999px;
  color: #7b5d50;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(239, 127, 171, 0.08);
}

.shop_service_tags .check-item span {
  color: #ef7fab;
  font-family: "Quicksand", sans-serif;
  font-size: 1.35em;
  margin-right: 6px;
}

/* reservation */
.shop_reservation_section .reservation_btns {
  gap: 12px;
  flex-wrap: wrap;
}

.shop_reservation_section .btn_pink a {
  min-width: clamp(210px, 22vw, 280px);
}

/* shared heading */
.shop_detail .box_heading {
  margin: 0 auto clamp(28px, 4vw, 44px);
  padding: 12px 20px;
  border-radius: 999px;
  background: #ef7fab;
  box-sizing: border-box;
  letter-spacing: 0.08em;
}

/* table */
.shop_detail .company_table {
  width: 100%;
  margin: 0 auto;
  background: transparent;
    padding-top: 0;
    
}

.shop_detail .company_row {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(16px, 2.5vw, 24px) 0;
  border-bottom: 1px dotted rgba(123, 93, 80, 0.42);
}

.shop_detail .company_th {
  color: #7b5d50;
  letter-spacing: 0.08em;
  line-height: 2;
}

.shop_detail .company_td p {
  color: #7b5d50;
  letter-spacing: 0.08em;
  line-height: 2;
}

/* detail icons */
.shop_detail_info .detail_icon_list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  width:100%;
  margin: 0 auto;
}

.shop_detail_info .detail_icon_item {
  min-height: 120px;
	/*
  padding: 18px 10px;
  background: rgba(239, 127, 171, 0.08);
	*/
  border-radius: 16px;
  text-align: center;
  box-sizing: border-box;
}

.shop_detail_info .detail_icon_item i {
  display: block;
  margin-bottom: 10px;
  color: #ef7fab;
  font-size: 30px;
}

.shop_detail_info .detail_icon_item p {
  color: #7b5d50;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

/* staff */
.shop_staff_section .staff_list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  width: min(1280px, 100%);
  margin: 0 auto;
}

.shop_staff_section .staff_item img {
  display: block;
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 12px;
}

.shop_staff_section .staff_item .shop {
  margin-bottom: 10px;
}

.shop_staff_section .staff_item h3 {
  color: #7b5d50;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

/* access */
.shop_access_section .access_map {
  width: min(1000px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 18px;
}

.shop_access_section .access_map img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 900px) {
  .shop_detail_info .detail_icon_list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shop_staff_section .staff_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop_detail .company_row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media screen and (max-width: 576px) {
  .shop_detail_info .detail_icon_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop_staff_section .staff_list {
    grid-template-columns: 1fr;
  }

  .shop_reservation_section .btn_pink,
  .shop_reservation_section .btn_pink a {
    width: 100%;
  }
    .shop_detail .company_table {
    padding: clamp(16px, 3vw, 28px) 0 0;
    
}
    
}
/* ---------- shop detail icons ---------- */
.shop_detail_info .detail_icon_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(188px, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin: 0 auto;
}
.shop_detail_info .detail_icon_item {
  min-height: clamp(120px, 12vw, 150px);
	/*
  padding: clamp(16px, 2vw, 24px) 10px;
  background: rgba(239, 127, 171, 0.08);
	*/
  border-radius: clamp(18px, 2vw, 28px);
  box-sizing: border-box;
  text-align: center;
	overflow: hidden;
}
/*
.shop_detail_info .detail_icon_item img {
  display: block;
  width: clamp(60px, 5vw, 68px);
  height: clamp(60px, 5vw, 68px);
  margin: 0 auto 12px;
  object-fit: contain;
}
*/
.shop_detail_info .detail_icon_item p {
  color: #7b5d50;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
}


@media screen and (max-width: 576px) {
  .shop_detail_info .detail_icon_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}
.shop_access_section .access_map {
  width: 100%;
  aspect-ratio: 16 / 5.4;
  overflow: hidden;
  border-radius: clamp(22px, 4vw, 46px);
}

.shop_access_section .access_map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media screen and (max-width: 576px) {
  .shop_access_section .access_map {
    aspect-ratio: 1 / 0.85;
  }
}
/* ---------- contact tel section button ---------- */

/* ---------- contact tel section button ---------- */

@media screen and (max-width: 576px) {
.contact_tel_section .reservation_btns {
  gap: clamp(10px, 1.5vw, 16px);
  flex-wrap: wrap;
}

.contact_tel_section .reservation_btns .btn_pink a {
  min-width: clamp(190px, 20vw, 250px);
  padding: 12px 18px;
}

.contact_tel_section .reservation_btns .btn_pink a > .flex {
  gap: 12px;
}

.contact_tel_section .reservation_btns .btn_pink p {
  line-height: 1;
  letter-spacing: 0.08em;
}

.contact_tel_section .reservation_btns .btn_pink img {
  width: 20px;
}

  .contact_tel_section .reservation_btns {
    display: grid;
    gap: 14px;
  }

  .contact_tel_section .reservation_btns .btn_pink,
  .contact_tel_section .reservation_btns .btn_pink a {
    width: 100%;
  }

  .contact_tel_section .reservation_btns .btn_pink a {
    min-width: 0;
    padding: 18px 24px;
  }

  .contact_tel_section .reservation_btns .btn_pink a > .flex {
    justify-content: space-between;
  }

  .contact_tel_section .reservation_btns .btn_pink img {
    width: 26px;
  }
}
@media screen and (max-width: 576px) {
  .contact_tel_section .reservation_btns {
    display: grid;
    gap: 14px;
  }

  .contact_tel_section .reservation_btns .btn_pink,
  .contact_tel_section .reservation_btns .btn_pink a {
    width: 100%;
  }

  .contact_tel_section .reservation_btns .btn_pink a {
    min-width: 0;
    padding: 18px 24px;
  }

  .contact_tel_section .reservation_btns .btn_pink a > .flex {
    justify-content: space-between;
  }

  .contact_tel_section .reservation_btns .btn_pink img {
    width: 26px;
  }
}
@media screen and (max-width: 1080px) {
  .company_table .company_row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .company_table .company_th {
    margin-bottom: 2px;
      color: #ef7fab;
  }
}
/* ---------- 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) {
}

/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px) {
}