.store {
  margin-top: 60px;
  position: relative;
}

.store__image {
  width: 100%;
  height: auto;

  max-width: 335px;
  margin: 0 auto;
}

.store__text {
  width: calc(100% - 13px);
  min-height: 322px;
  max-width: 351px;
  margin: 15px auto 0;
  background-color: #f7f4ef;
  padding: 16px;
  position: relative;
}

.store__text::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 13px;
  left: 13px;
  /* background-color: #338dd3; */
  z-index: -1;
}

/* .store__text--2::before {
  background-color: #1a5326;
}

.store__text--3::before {
  background-color: #e99b02;
}

.store__text--4::before {
  background-color: #7a213d;
}

.store__text--5::before {
  background-color: #342284;
}

.store__text--6::before {
  background-color: #9d674b;
} */

/* .store__text--7::before {
  background-color: #4984c0;
} */

.store__name {
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  line-height: 28px;
}

.store__description {
  font-size: 16px;
  line-height: 25px;
  margin-top: 13px;
}

.store-slider {
  margin: 43px -20px 0;
}

.store-slide {
  width: 60.8vw;
  aspect-ratio: 228 / 178;
  max-width: 228px;
  background-color: #959595;
  margin-right: 15px;
}

.store-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.menu {
  padding-top: 0;
}

.menu-container {
  margin: 0 auto;
  padding: 0 6px;
  max-width: 650px;
}

.menu-container--seasonal {
  margin-top: 40px;
}

.menu-title {
  text-align: center;
  font-size: 18px;
  line-height: 23px;
}

.menu-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 320 / 250;
  background: #f5f5f5;
  margin-top: 10px;
}

.menu-slider::after {
  content: "";
  position: absolute;
  display: block;
  width: 13px;
  height: 13px;
  background-image: url(../images/store/icon-loupe.png);
  background-size: cover;
  background-repeat: no-repeat;
  right: 42px;
  right: min(115px, max(11.2vw, 42px));
  bottom: 5px;
}

.menu-slides {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.menu-slide {
  position: relative;
  min-width: 100%;
  cursor: pointer;
}

.menu-slide img {
  display: block;
  width: calc(100% - 2 * min(100px, max(9.6vw, 36px)));
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
}

.menu-arrow {
  position: absolute;
  top: 0;
  width: min(100px, max(9.6vw, 36px));
  height: 100%;
  background-color: #959595;
  /* background-color: #444444;
  opacity: 0.8; */
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 2;
}

.menu-arrow::after {
  content: "";
  position: absolute;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/store/menu-arrow.png);
  width: 13px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.menu-arrow:hover {
  filter: brightness(1.2);
}

.prev::before,
.next::before {
  display: none;
}

.prev {
  left: 0;
}

.next {
  right: 0;
  transform: scaleX(-1);
}

.menu-pagination {
  display: flex;
  margin-top: 7px;
  margin-left: 36px;
  position: relative;
  width: fit-content;
}

.pagination-arrow {
  background-color: transparent;
  position: absolute;
  top: calc(50% - 1px);
  transform: translateY(-50%);
}

.pagination-arrow img {
  width: 8px;
  height: 11px;
  object-position: center;
}

.pagination-arrow.left {
  left: -24px;
  transform: scaleX(-1) translateY(-50%);
}

.pagination-arrow.right {
  right: -24px;
}

.page-number {
  width: 30px;
  height: 30px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #303030;
  font-weight: 700;
  background-color: transparent;
  font-size: 14px;
}

.page-number.active {
  color: #a52c34;
}

.menu-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, background-color 0.3s ease,
    visibility 0s linear 0.3s;
  overflow: hidden;
}

.menu-modal.active {
  opacity: 1;
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease, background-color 0.3s ease,
    visibility 0s linear;
  z-index: 1003;
}

.menu-modal img {
  height: calc(100% - 200px);
  width: 100%;
  object-fit: contain;
  object-position: center;
}

.menu-modal-content {
  max-width: 90%;
  max-height: 90%;
}

.menu-modal-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.store-info * {
  position: relative;
  z-index: 2;
}

.store-info-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.store-info__row {
  display: flex;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(185, 166, 141, 0.65);
  position: relative;
}

.store-info__row * {
  font-size: 14px;
  line-height: 25px;
}

.store-info__label {
  width: 86px;
  min-width: 86px;
  font-weight: 600;
}
.store-info__row:first-child .store-info__value span {
  display: block;
  width: calc(100% - 40px);
}

.store-info__value {
  flex-grow: 1;
  color: #333;
  position: relative;
}

.store-info__row a {
  color: #333;
}

.store-info__title {
  font-size: 22px;
  line-height: 33px;
}

.store-info__subtitle {
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  line-height: 27px;
  margin: 20px 0 16px;
  /* border-left: 6px solid #338dd3; */
  padding-left: 5px;
}

/* .store-info__subtitle--2 {
  border-color: #1a5326;
}

.store-info__subtitle--3 {
  border-color: #e99b02;
}

.store-info__subtitle--4 {
  border-color: #7a213d;
}

.store-info__subtitle--5 {
  border-color: #342284;
}

.store-info__subtitle--6 {
  border-color: #9d674b;
}

.store-info__subtitle--7 {
  border-color: #4984c0;
} */

.store-info iframe {
  display: block;
  width: calc(100% + 40px);
  position: relative;
  left: -20px;
  aspect-ratio: 375 / 150;
  margin: 30px auto 0;
  position: relative;
  z-index: 2;
}

.map-container iframe {
  pointer-events: none;
}

.map-container.active iframe {
  pointer-events: auto;
}

.map-link {
  position: absolute;
  display: block;
  width: 13px;
  height: 13px;
  right: 19px;
  top: 6px;
  background-image: url(../images/store/map-link.png);
  background-size: cover;
  z-index: 2;
}

@media (min-width: 376px) {
  .store-info__row:first-child .store-info__value span {
    width: fit-content;
    display: inline-block;
  }
  .map-link {
    position: relative;
    display: inline-block;
    top: auto;
    right: auto;
    margin-left: 18px;
  }
}

.store__buttons {
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 315px;
  position: relative;
  z-index: 2;
}

.store__button {
  display: flex;
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.2));
}

.store__button--reserve {
  background-color: #a52c34;
  color: #fff;
}

.store__button--reserve::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background-image: url(../images/store/reserve-link.png);
  background-size: cover;
  margin-left: 5px;
}

.store__button--call {
  background-color: #fff;
  color: #a52c34;
  border: 1px solid #a52c34;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
}

.store__button--call::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(../images/common/icon-phone.png);
  background-size: cover;
}

.breadcrumb {
  position: relative;
  padding-top: 80px;
}

.breadcrumb * {
  position: relative;
  z-index: 2;
}

.breadcrumb.mask::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #f7f4ef;
  mix-blend-mode: multiply;
  z-index: 1;
}

@media (min-width: 650px) {
  .store-container {
    max-width: 1000px;
    display: flex;
    justify-content: center;
    margin: 0px auto 0;
  }

  .store__image {
    width: 68.2%;
    aspect-ratio: unset;
    max-width: 682px;
    margin: 0;
    position: relative;
    z-index: -1;
  }

  .store__image img {
    width: 100%;
    min-width: 486px;
    aspect-ratio: 682 / 450;
    object-position: center 37%;
    object-fit: cover;
  }

  .store__text {
    width: 43.5%;
    background-color: #f7f4ef;
    padding: 30px;
    position: relative;
    margin-left: min(-131px, calc(-131px - 526px + 50vw));
    height: fit-content;
    min-width: 435px;
    margin-top: max(91px, min(calc(91px - 50vw + 526px), 280px));
    margin-right: 0;
  }

  @media (min-width: 1000px) {
    .store__text {
      margin: auto 0 40px -131px;
    }
  }

  .store__text::before {
    top: 14px;
    left: 14px;
  }

  .store__description {
    font-size: 16px;
    line-height: 25px;
    margin-top: 19px;
  }

  .store__name {
    font-size: 25px;
    line-height: 33px;
  }
}

.store-info-wrapper {
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .store {
    margin-top: 0;
  }

  .store-container {
    margin-top: 75px;
  }

  .store-slider {
    margin: 60px -30px 0;
  }

  .store-slide {
    width: max(318px, 23.3vw);
    aspect-ratio: 318 / 250;
    max-width: 400px;
    background-color: #959595;
    margin-right: 23px;
  }

  .menu-title {
    font-size: 25px;
    line-height: 37px;
  }

  .menu-slider {
    margin-top: 13px;
  }

  .menu-arrow {
    width: 100px;
    font-size: 20px;
  }

  .menu-container {
    margin: 0 auto;
    padding: 0;
  }

  .menu-container--seasonal {
    margin-top: 46px;
  }

  .menu-slider {
    aspect-ratio: 650 / 450;
    margin-top: 13px;
  }

  .menu-slide img {
  }

  .page-number {
    width: 24px;
    font-size: 16px;
  }

  .menu-arrow {
  }

  .menu-arrow::after {
    background-image: url(../images/store/menu-arrow-pc.png);
    width: 20px;
    height: 34px;
  }

  .store-info-container {
    gap: 40px;
  }

  .store-info-wrapper {
    max-width: 1000px;
    margin: 0 auto;
  }

  .store-info__title {
    font-size: 35px;
    line-height: 1;
  }

  .store-info__subtitle {
    font-size: 30px;
    line-height: 30px;
    margin: 73px 0 50px;
    border-left-width: 8px;
    padding: 3px 0 3px 10px;
  }

  .store-info__row {
    padding-bottom: 20px;
  }

  .store-info__row:nth-child(2) * {
    line-height: 25px;
  }

  .store-info__row * {
    font-size: 18px;
    line-height: 1.4;
  }

  .store-info__label {
    width: 206px;
    min-width: 206px;
  }

  .menu-pagination {
    margin-top: 10px;
    margin-left: 100px;
  }

  .store-info iframe {
    width: 100%;
    left: 0px;
    aspect-ratio: 100 / 37;
    margin: 40px auto 0;
  }

  .store__buttons {
    margin: 40px auto 0;
    flex-direction: row-reverse;
    gap: 50px;
    max-width: none;
    justify-content: center;
  }

  .store__button {
    max-width: 230px;
    height: 50px;
  }

  .store__button:hover {
    opacity: 0.8;
  }

  .store__button--reserve::after {
    position: relative;
    top: 2px;
    width: 17px;
    height: 17px;
  }

  .map-link {
    position: relative;
    display: inline-block;
    width: fit-content;
    height: 20px;
    top: 0px;
    right: auto;
    margin-left: 8px;
    background-image: url(../images/store/map-link-pc.png);
    background-size: 20px 20px;
    background-repeat: no-repeat;
  }

  .map-link::after {
    content: "マップで見る";
    font-size: 12px;
    line-height: 14px;
    color: black;
    display: inline-block;
    width: 93px;
    height: 18px;
    border-radius: 9px;
    border: 1px solid rgba(185, 166, 141, 0.65);
    background-color: white;
    text-align: center;
    position: relative;
    left: 30px;
    top: -2px;
  }

  .menu-slider::after {
    content: "";
    position: absolute;
    display: block;
    width: 22px;
    height: 22px;
    background-image: url(../images/store/icon-loupe.png);
    background-size: cover;
    background-repeat: no-repeat;
    right: 115px;
    bottom: 15px;
  }

  .schedule {
    display: flex;
    flex-direction: row;
  }

  .schedule span:first-child {
    display: block;
    width: 90px;
  }

  .store-info__value--indent br {
    display: none;
  }
}
