.shoplist {
  margin: 1rem auto 0;
  max-width: 980px;
}
.shoplist_area {
  border-top: 1px solid #000;
}
.shoplist_area:last-child {
  border-bottom: 1px solid #000;
}
.shoplist_area details[open] summary:hover {
  background-color: #ffffff;
}
.shoplist_area details[open] summary::before {
  transform: translateY(-50%) rotate(180deg);
  opacity: 0;
}
.shoplist_area details[open] summary::after {
  transform: translateY(-50%) rotate(360deg);
}
.shoplist_area summary {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  padding: 10px 0;
  position: relative;
}
@media screen and (min-width: 960px) {
  .shoplist_area summary {
    font-size: 24px;
    padding: 16px 0;
    transition: 0.3s;
  }
  .shoplist_area summary:hover {
    cursor: pointer;
    background-color: #f5f5f5;
  }
}
.shoplist_area summary::before, .shoplist_area summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 15px;
  height: 1px;
  background-color: #000;
  transition: 0.3s;
}
.shoplist_area summary::before {
  transform: translateY(-50%);
}
.shoplist_area summary::after {
  transform: translateY(-50%) rotate(90deg);
}
.shoplist_area_items {
  padding-bottom: 2rem;
}
.shoplist_area_item {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media screen and (min-width: 960px) {
  .shoplist_area_item {
    gap: 24px;
  }
}
.shoplist_area_item:nth-child(n+2) {
  margin-top: 2rem;
}
.shoplist_area_item_img {
  width: 50%;
  background: #ededed;
  position: relative;
}
.shoplist_area_item_img .image_caption {
  position: absolute;
  bottom: 2px;
  right: 2px;
  text-align: right;
  font-size: 10px;
  color: #000000;
}
@media screen and (min-width: 960px) {
  .shoplist_area_item_img .image_caption {
    font-size: 12px;
  }
}
.shoplist_area_item_img img {
  aspect-ratio: 478/338.58;
  -o-object-fit: contain;
     object-fit: contain;
}
.shoplist_area_item_info {
  width: 50%;
}
.shoplist_area_item_info .open {
  color: #ff0000;
  font-size: 11px;
}
@media screen and (min-width: 960px) {
  .shoplist_area_item_info .open {
    font-size: 15px;
  }
}
.shoplist_area_item_info .name {
  font-weight: bold;
  font-size: 15px;
}
@media screen and (min-width: 960px) {
  .shoplist_area_item_info .name {
    font-size: 22px;
  }
}
.shoplist_area_item_info .name a {
  text-decoration: underline;
}
.shoplist_area_item_info .address {
  margin-top: 3px;
  font-size: 11px;
}
@media screen and (min-width: 960px) {
  .shoplist_area_item_info .address {
    margin-top: 1rem;
    font-size: 16px;
  }
}
.shoplist_area_item_info .tel {
  margin-top: 3px;
  font-size: 11px;
}
.shoplist_area_item_info .tel a {
  text-decoration: underline;
}
@media screen and (min-width: 960px) {
  .shoplist_area_item_info .tel {
    margin-top: 1rem;
    font-size: 16px;
  }
}
.shoplist_area_item_info .button {
  margin-top: 6px;
}
@media screen and (min-width: 960px) {
  .shoplist_area_item_info .button {
    margin-top: 2rem;
  }
}
.shoplist_area_item_info .button a {
  display: inline-flex;
  padding: 2px 0;
  border: 1px solid #000;
  border-radius: 4px;
}
@media screen and (min-width: 960px) {
  .shoplist_area_item_info .button a {
    padding: 6px 0;
    transition: 0.3s;
  }
  .shoplist_area_item_info .button a:hover {
    background-color: #f5f5f5;
  }
}
.shoplist_area_item_info .button a span {
  line-height: 1;
  display: flex;
  align-items: center;
}
.shoplist_area_item_info .button a span:nth-of-type(1) {
  font-size: 11px;
  font-weight: bold;
  padding: 0 16px;
}
@media screen and (min-width: 960px) {
  .shoplist_area_item_info .button a span:nth-of-type(1) {
    font-size: 16px;
    padding: 0 24px;
  }
}
.shoplist_area_item_info .button a span:nth-of-type(2) {
  border-left: 1px solid #000;
  padding: 0 5px;
}
@media screen and (min-width: 960px) {
  .shoplist_area_item_info .button a span:nth-of-type(2) {
    padding: 0 12px;
  }
}
.shoplist_area_item_info .button a span:nth-of-type(2) svg {
  width: 18px;
  height: 18px;
}
@media screen and (min-width: 960px) {
  .shoplist_area_item_info .button a span:nth-of-type(2) svg {
    width: 24px;
    height: 24px;
  }
}