.rent-table{
  margin-top: 30px;
  margin-bottom: 30px;
}
.rent-table th, .rent-table td {
    padding: 1em 0.5em;
    text-align: center;
    vertical-align: middle;
    box-sizing: border-box;
}
.rent-table th {
    background: #F2F0EB;
    font-weight: bold;
    border-right: 1px solid #fff;
    min-width: 70px;
}
.rent-table td {
    border-bottom: 1px solid #f2f0eb;
    border-right: 1px solid #f2f0eb;
}
.rent-table th:last-child, .rent-table td:last-child{
    border-right: 0;
}
.img-wrapper{
  width: 100px;
  height: 100px;
  margin: 0 auto;
}
.img-wrapper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.btn {
    display: block;
    padding: 0.8em 0.5em;
    background-color: #ff668b;
    color: #fff!important;
    font-size: 14px;
    font-weight: bold;
    border-radius: 30px;
    text-align: center;
    line-height: 1;
    transition: 0.5s;
    box-sizing: border-box;
    min-width: 100px;
}
.btn:hover{
  opacity: 0.5;
}
.btn.btn_lg{
  max-width: 400px;
  margin: 30px auto;
  font-size: 18px;
}
.shop-detail{
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  overflow: clip;
}
.shop-imgs{
  width: 500px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.shop-detail-ttl{
  font-weight: bold;
  padding-bottom: 10px!important;
  margin-bottom: 1em!important;
}
.bxslider{
  overflow: hidden;
}
.bxslider li{
  width: 100%;
  aspect-ratio: 4/3;
  background-color: #f2f0eb;
}
.bxslider li img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.bxslider_thumbnail{
  display: flex;
  margin: 10px 0;
  column-gap: 10px;
}
.bxslider_thumbnail li{
  width: calc(100% / 4);
  aspect-ratio: 4/3;
}
.bxslider_thumbnail li img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bxslider_thumbnail li a{
  opacity: 0.3;
}
.bxslider_thumbnail li a.active{
  opacity: 1;
}
.bx-wrapper .bx-prev,
.bx-wrapper .bx-next{
  border-left: 2px solid;
  border-bottom: 2px solid;
  width: 20px!important;
  height: 20px!important;
  border-color: rgba(51, 51, 51, 0.7);
  background: none;
  top: 50%!important;
}
.bx-wrapper .bx-prev{
  transform: rotate(45deg);
  left: -15px;
}
.bx-wrapper .bx-next{
  transform: rotate(225deg);
  right: -15px;
}
.shop-detail dl{
  display: flex;
  flex-wrap: wrap;
}
.shop-detail dl dt, .shop-detail dl dd{
  box-sizing: border-box;
  float: none;
}
.shop-detail dl dt{
  width: 100px;
  background-color: #f2f0eb;
  color: inherit;
  font-weight: bold;
}
.shop-detail dl .blank{
  visibility: hidden;
  opacity: 0;
}
.shop-detail dl dd{
  width: calc(50% - 100px);
}
.shop-detail dl dd:last-of-type{
  width: calc(100% - 100px);
}