.sub-info__h2 {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.sub-info__h2 img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.sub-info__header {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.sub-info__date {
  color: #c20000;
  font-weight: bold;
  font-size: 1.2rem;
}

.sub-info__update {
  color: #fff;
  background-color: #fc8a04;
  padding: 2px 4px;
  border-radius: 2px;
  font-size: 1.2rem;
  font-family: serif;
}

.sub-info__event {
  color: #fff;
  background-color: #5bae03;
  padding: 2px 4px;
  border-radius: 2px;
  font-size: 1.2rem;
  font-family: serif;
}

.sub-info__h3 {
  font-size: 18px;
  font-weight: bold;
  padding: 20px 0;
  border-bottom: solid 3px #2c170c;
}
@media screen and (max-width: 992px) {
  .sub-info__h3 {
    border-bottom: solid 2px #2c170c;
  }
}

.sub-info__body {
  margin-top: 12px;
  padding-bottom: 20px;
  border-top: dashed 1px #2c170c;
  border-bottom: dashed 1px #2c170c;
  font-size: 1.2rem;
}
.sub-info__body a {
  text-decoration: underline;
}

.sub-info__body h3 {
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1rem 0;
}
.sub-info__body h4 {
  font-size: 1.6rem;
  font-weight: 700;
  padding: 1rem 0;
}
.sub-info__body ol li {
  list-style: decimal;
  margin-left: 2rem;
}
.sub-info__body ul li {
  list-style: disc;
  margin-left: 2rem;
}

.sub-shop__h2 {
  font-size: 3.6rem;
  font-weight: 700;
  padding: 20px 0 12px;
  border-bottom: solid 3px #2c170c;
}

.sub-shop__filter {
  display: flex;
  flex-direction: column;
  padding: 24px 26px;
  background-color: #f5f4e8;
  border-radius: 8px;
  margin-top: 24px;
}
@media screen and (max-width: 992px) {
  .sub-shop__filter {
    padding: 1.5rem;
  }
}

.sub-shop__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 12px;
}

.sub-shop__item {
  font-size: 2rem;
  padding: 12px 24px;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 992px) {
  .sub-shop__item {
    font-size: 1.5rem;
    padding: 6px 16px;
  }
}

.sub-shop__sub-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 12px;
}

.sub-shop__body {
  padding: 24px 0;
}

.sub-shop__cards {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 24px;
}
@media screen and (max-width: 992px) {
  .sub-shop__cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.sub-shop__card {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  padding: 24px;
}
@media screen and (max-width: 992px) {
  .sub-shop__card {
    padding: 1.5rem;
    flex-direction: column;
    gap: 1.6rem;
  }
}

.sub-shop__card.is-hidden {
  display: none;
}

.sub-shop__card:not(.is-hidden) {
  display: flex;
}

.sub-shop__left {
  width: calc(55% - 16px);
  height: auto;
  aspect-ratio: 3/2;
}
@media screen and (max-width: 992px) {
  .sub-shop__left {
    width: 100%;
  }
}
.sub-shop__left a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 3/2;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
.sub-shop__left a:hover {
  opacity: 0.8;
}
.sub-shop__left a:hover img {
  transform: scale(1.05);
}
.sub-shop__left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.sub-shop__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  justify-content: space-between;
  width: calc(45% - 16px);
  height: auto;
}
@media screen and (max-width: 992px) {
  .sub-shop__right {
    width: 100%;
    row-gap: 1.6rem;
  }
}
.sub-shop__right p {
  padding: 0;
}
@media screen and (max-width: 992px) {
  .sub-shop__right p {
    font-size: 1.5rem;
    padding: 0;
  }
}

.sub-shop__right--upper {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 4px;
}

.sub-shop__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #000;
}
@media screen and (max-width: 992px) {
  .sub-shop__title {
    font-size: 2rem;
  }
}

.sub-shop__business-hour,
.sub-shop__holiday,
.sub-shop__tel {
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
}
@media screen and (max-width: 992px) {
  .sub-shop__business-hour,
  .sub-shop__holiday,
  .sub-shop__tel {
    font-size: 1.5rem;
  }
}

.sub-shop__business-hour span {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
}
@media screen and (max-width: 992px) {
  .sub-shop__business-hour span {
    font-size: 1.5rem;
  }
}

.sub-shop__sns-list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  gap: 8px;
}

.sub-shop__sns-item {
  height: 40px;
  aspect-ratio: 1/1;
}
.sub-shop__sns-item img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.sub-shop__sns-item button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub-shop__sns-item button img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.map-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}
.map-modal.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.map-modal__container {
  position: relative;
  width: 95%;
  max-width: 1200px;
  margin: 0;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.map-modal__close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  padding: 0;
  line-height: 1;
}
.map-modal__close:hover {
  color: #c20000;
}

.map-modal__content {
  width: 100%;
  height: auto;
}
.map-modal__content iframe {
  width: 100%;
  height: 600px;
  border: none;
}

@media screen and (max-width: 768px) {
  .map-modal__container {
    width: 98%;
  }
  .map-modal__content iframe {
    height: 400px;
  }
}
.sub-shop__inner {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 48px;
  padding: 60px 0;
}

.sub-shop__block--top {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: stretch;
  justify-content: space-between;
  gap: 48px;
}

.sub-shop__block--middle,
.sub-shop__block--bottom {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 24px;
}

.sub-shop__visual {
  width: 50%;
  height: auto;
  aspect-ratio: 672/423;
}

.sub-shop__slider--list {
  width: 100%;
  height: 100%;
}

.sub-shop__slider--item {
  width: 100%;
  height: 100%;
}

.sub-shop__visual img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 672/423;
}

.sub-shop__detail {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  justify-content: space-between;
}

.sub-shop__detail--list {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
}

.sub-shop__detail--item {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
  padding: 4px 0;
}

.sub-shop__detail--title {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 120px;
  height: auto;
  font-size: 1.6rem;
  font-weight: 700;
  flex-shrink: 0;
}

.sub-shop__detail--text {
  width: 100%;
  height: auto;
  font-size: 1.6rem;
  flex-grow: 1;
  flex-shrink: 1;
}

.sub-shop__message--visual-text {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}
.sub-shop__message--visual-text .sub-shop__message--visual {
  width: 50%;
  height: auto;
  aspect-ratio: 672/423;
}
.sub-shop__message--visual-text .sub-shop__message--visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 672/423;
}
.sub-shop__message--visual-text .sub-shop__message--text {
  width: 50%;
  height: auto;
  line-height: 2.5;
}
.sub-shop__message--visual-text .sub-shop__message--text .text-line {
  margin-bottom: 1em;
}
.sub-shop__message--visual-text .sub-shop__message--text .text-line:last-child {
  margin-bottom: 0;
}

.sub-shop__message--heading {
  width: 100%;
  height: auto;
  background-color: #efd4c7;
  padding: 12px 16px;
}

.sub-shop__message--heading-text {
  font-size: 2.4rem;
  font-weight: 700;
  color: #992120;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.sub-shop__message--heading-text span {
  width: 32px;
  height: auto;
  aspect-ratio: 32/22.4;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sub-shop__message--heading-text span img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.sub-shop__message--text-red {
  width: 100%;
  height: auto;
  padding: 12px 0;
  line-height: 2.5;
}
.sub-shop__message--text-red .text-line {
  margin-bottom: 1em;
  color: #c20000;
  font-weight: 700;
}
.sub-shop__message--text-red .text-line:last-child {
  margin-bottom: 0;
}

.sub-shop__message--text {
  width: 100%;
  height: auto;
  padding: 12px 0;
  line-height: 2.5;
}
.sub-shop__message--text .text-line {
  margin-bottom: 1em;
}

.sub-shop__message--link {
  width: 100%;
  height: auto;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.sub-shop__message--link a {
  color: blue;
  text-decoration: underline;
}

.sub-shop__map {
  width: 100%;
}
.sub-shop__map iframe {
  width: 100%;
  height: 400px;
  border: none;
}/*# sourceMappingURL=sub.css.map */