@charset "UTF-8";

.shop-links {
  padding: 70px 20px 80px;
  background: #fff;
}

.shop-links__inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.shop-links__lead {
  margin: 0 0 25px;
  color: #5c504a;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-align: center;
}

.shop-links__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}


/* ========================
カード
======================== */

.shop-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 366 / 208;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 2px 4px rgb(0 0 0 / 25%);
}

.shop-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.shop-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(
      90deg,
      rgb(0 0 0 / 45%) 0%,
      rgb(0 0 0 / 18%) 45%,
      rgb(0 0 0 / 3%) 100%
    );
}

.shop-card__content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 15px 18px;
}


/* ========================
ロゴ
======================== */

.shop-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 26px;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
}

.shop-card__logo img {
  display: block;
  width: 70%;
}


/* ========================
テキスト
======================== */

.shop-card__text {
  width: fit-content;
}

.shop-card__name {
  margin: 0;
  font-family: "Times New Roman", "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.shop-card__shop {
  margin: 2px 0 0;
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.shop-card__line {
  display: block;
  width: 104px;
  height: 1px;
  margin: 10px 0 9px;
  background: rgb(255 255 255 / 80%);
}

.shop-card__link-text {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.shop-card__link-text span {
  transition: transform 0.3s ease;
}


/* ========================
hover
======================== */

@media (hover: hover) {

  .shop-card:hover .shop-card__image {
    transform: scale(1.04);
  }

  .shop-card:hover .shop-card__link-text span {
    transform: translateX(5px);
  }

}


/* ========================
SP
======================== */

@media screen and (max-width: 767px) {

  .shop-links {
    padding: 50px 20px 60px;
  }

  .shop-links__lead {
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.8;
  }

  .shop-links__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .shop-card {
    aspect-ratio: 366 / 208;
  }

  .shop-card__content {
    padding: 15px 18px;
  }

  .shop-card__logo {
    width: 50px;
    height: 50px;
    margin-bottom: 22px;
  }

  .shop-card__name {
    font-size: 26px;
  }

  .shop-card__shop {
    font-size: 14px;
  }

  .shop-card__link-text {
    font-size: 12px;
  }

}