@charset "UTF-8";

/*****************************
storeinfo-sec
*****************************/
.storeinfo-sec {
  padding-bottom: 8rem 0 0;
}
.storeinfobox {
  margin-bottom: 10rem;
}
.storeinfo-sec dl {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
.storeinfo-sec dt,
.storeinfo-sec dd {
  padding: .5rem 1rem;
}
.storeinfo-sec dt:not(:last-of-type),
.storeinfo-sec dd:not(:last-of-type) {
  margin-bottom: 2rem;
}
.storeinfo-sec dt {
  background: #8C3315;
  color: #fff;
  width: 100px;
}
.storeinfo-sec dd {
  border-bottom: 1px solid #8C3315;
  width: calc(100% - 110px);
}
.storeinfo-sec dd iframe {
  aspect-ratio: 1/.7;
  margin-top: 1rem;
  height: auto;
  width: 100%;
}
.guide-sec .imgbox ul {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
@media screen and (max-width: 767px) {
  .storeinfo-sec dl {
    gap: .5rem;
  }
  .storeinfo-sec dt {
    margin-bottom: 0 !important;
    width: auto;
  }
  .storeinfo-sec dd {
    width: 100%;
  }
}

/*****************************
storetable-sec
*****************************/
.storetable-sec .txtbox {
  margin-bottom: 1rem;
}

/* modal */
.modalwrap .mask {
  background: rgba(0,0,0,.8);
  cursor: pointer;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: .5s;
  height: 100%;
  width: 100%;
  z-index: 9;
}
.modalwrap.on .mask {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: #fff;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 500px;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  padding: 4rem;
  transition: .5s;
  z-index: 10;
}
.modal.on {
  pointer-events: all;
  opacity: 1;
  transition: .5s;
}
.modal .close p {
  background: #8C3315;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  padding: .5rem 2rem;
}
.modal .ttlbox p {
  border-bottom: 2px solid #181818;
  font-size: 2.5rem;
  font-weight: bold;
  padding-left: 2rem;
  margin-bottom: 1rem;
}
.modal .imgbox {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .modal {
    padding: 2rem;
    width: 95%;
  }
  .modal .ttlbox p {
    font-size: 2rem;
    padding-left: 0;
  }
}