/* ----------------------------------------
shop-concept
---------------------------------------- */
.shop-concept__inner {
  position: relative;
  display: flex;
  align-items: stretch;
  flex-direction: row-reverse;
  height: 300px;
  min-height: 400px;
}

.shop-concept__content {
  padding: 0 5%; 
  width: 45%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center; 
}

.shop-concept__text {
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 2;
  color: var(--color-text-sub);
}

.shop-concept__img {
  position: relative;
  margin: 0;
  width: 55%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.shop-concept__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ←ここがキモ（フェード） */
.shop-concept__img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(245,245,245,0) 40%,
    rgba(245,245,245,0.7) 65%,
    #fff 100%
  );
}

@media screen and (max-width: 900px) {
  .shop-concept__inner {
    height: 60vw;
    min-height: 0;
  }

  .shop-concept__text {
    margin-top: 2rem;
    font-size: 2cqw;
    line-height: 1.75;
  }
}

@media screen and (max-width: 580px) {
  .shop-concept__inner {
    display: block;
    height: auto;
  }

  .shop-concept__img {
    width: 100%;
    height: 200px;
  }

  .shop-concept__img::before {
    background: none;
  }

  .shop-concept__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .shop-concept__content {
    margin-top: 2rem;
    padding: 0 1rem; 
    width: 100%;
    display: block;
    box-sizing: border-box;
  }

  .shop-concept__text {
    margin-top: 2rem;
    font-size: 0.8rem;
    line-height: 2;
    color: var(--color-text-sub);
  }
}

/* ----------------------------------------
shop-about
---------------------------------------- */
.shop-about__body {
  margin-top: 3rem;
  text-align: center;
}

.shop-about__text {
  font-size: 1.5rem;
  line-height: 2;
  color: var(--color-text-sub);
}

@media screen and (max-width: 900px) {
  .shop-about__text {
    font-size: 2cqw;
  }
}

@media screen and (max-width: 580px) {
  .shop-about__body {
    margin-top: 2rem;
    text-align: left;
  }

  .shop-about__text {
    font-size: 0.8rem;
  }
}

/* ----------------------------------------
shop-gallery
---------------------------------------- */
.shop-gallery__grid {
  --gallery-gap: 2rem;
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gallery-gap);
}

/* すべてのアイテム共通 */
.shop-gallery__item {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

/* 中身の画像を親いっぱいに敷く */
.shop-gallery__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.shop-gallery__item:hover img {
  transform: scale(1.03);
}

/* 1段目右2枚 = 正方形 */
.shop-gallery__item:not(.shop-gallery__item--large):not(.shop-gallery__item--wide) {
  aspect-ratio: 1 / 1;
}

.shop-gallery__item--large,
.shop-gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: calc(2 + 0.08) / 1;
}

@media screen and (max-width: 900px) {
  .shop-gallery__grid {
    margin-top: 3rem;
    gap: 1rem;
  }
}

@media screen and (max-width: 580px) {
  .shop-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-gallery__item--large,
  .shop-gallery__item--wide {
    grid-column: span 2;
    aspect-ratio: 4 / 3;
  }

  .shop-gallery__item:not(.shop-gallery__item--large):not(.shop-gallery__item--wide) {
    aspect-ratio: 4 / 3;
  }
}

/* modal */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.gallery-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.gallery-modal__dialog {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 1000px);
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  align-items: center;
  gap: 1rem;
}

.gallery-modal__content {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}

.gallery-modal__img {
  width: 100%;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  margin: 0;
  transform: scale(1.01);
}

.gallery-modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  border: none;
  background: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
}

.gallery-modal__nav {
  border: none;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
}

@media screen and (max-width: 580px) {
  .gallery-modal__dialog {
    width: 94vw;
    grid-template-columns: 44px 1fr 44px;
  }

  .gallery-modal__nav {
    width: 44px;
    height: 44px;
    font-size: 2.4rem;
  }
}


/* ----------------------------------------
shop-point
---------------------------------------- */
.shop-point__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.shop-point__map {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.shop-point__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.section-title--point {
  text-align: center;
}

.shop-point__info {
  position: relative;
  margin-top: 2rem;
  padding: 1.5rem;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem 3rem;
  align-items: start;
}

.shop-point__info::after {
  content: "";
  position: absolute;
  height: 80%;            /* ←ここがポイント */
  top: 50%;               /* 中央基準にする */
  transform: translate(-50%, -50%); /* 縦横センター */
  left: calc(50% + 1.5rem); /* gapの半分を考慮 */
  width: 1px;
  background: #d8d8d8;
}

.shop-point__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.shop-point__list li {
  position: relative;
  padding-left: 1em;
  font-size: 0.95rem;
  line-height: 2;
  color: var(--color-text-sub);
}

.shop-point__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.shop-point__row {
  display: grid;
  grid-template-columns: 5.5em 1fr;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 2;
  color: var(--color-text-sub);
}

.shop-point__row dt,
.shop-point__row dd {
  margin: 0;
}

.shop-point__message {
  margin-top: 5rem;
  text-align: center;
}

.shop-point__message p {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text);
}

@media screen and (max-width: 900px) {
  .shop-point {
    margin-top: 6rem;
  }

  .shop-point__content {
    margin-top: 3rem;
  }

  .shop-point__grid {
    display: block;
  }

  .shop-point__info {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .shop-point__info::after {
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .shop-point__list li {
    font-size: 2cqw;
  }

  .shop-point__row dt,
  .shop-point__row dd {
    font-size: 2cqw;
  }

  .shop-point__message p {
    font-size: 3.5cqw;
  }
}

@media screen and (max-width: 580px) {
  .shop-point {
    margin-top: 5rem;
  }

  .shop-point__content {
    padding-top: 0;
  }

  .shop-point__info {
    display: block;
    margin-top: 1.5rem;
    padding: 0 1rem;
    border: none;
  }

  .shop-point__info::after {
    content: none;
  }

  .shop-point__list,
  .shop-point__detail {
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
  }

  .shop-point__detail {
    border-top: 1px solid #d8d8d8;
  }

  .shop-point__list li,
  .shop-point__row dt,
  .shop-point__row dd {
    font-size: 4cqw;
    line-height: 2;
  }

  .shop-point__message {
    margin-top: 2.5rem;
  }

  .shop-point__message p {
    font-size: 4cqw;
    line-height: 1.8;
  }
}