:root {
  --bg: #f5efe7;
  --surface: #ffffff;
  --text: #333333;
  --muted: #5f5a55;
  --accent: #173a6a;
  --accent-strong: #0d234a;
  --highlight: #c8452e;
  --border: rgba(23, 58, 106, 0.12);
  --shadow: 0 20px 45px rgba(20, 46, 90, 0.08);
}
.contents {
  max-width: 1080px;
  width: 92%;
  margin: 0px auto;
  color: var(--text);
  line-height: 1.6;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.fade-edge {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
}
.page-header {
  margin: 96px auto 0;
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  background-position: left center, right center;
  background-repeat: no-repeat, no-repeat;
  background-size: auto 100%, auto 100%;
}
.page-header img {
  width: min(100%, 980px);
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* store-section */
.store-card {
  display: grid;
  grid-template-columns: 42% 58%;
  background: #050505;
  border: 2px solid #555;
  color: #fff;
  overflow: hidden;
}

.store-card-image {
  width: 100%;
  height: 296px;
}

.store-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.store-card-body {
  position: relative;
  padding: 18px 64px 18px 28px;
}

.store-card-kicker {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 8px;
}

.store-card-title {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: .03em;
  margin-bottom: 14px;
}

.store-card-tag {
  display: inline-block;
  background: #fff;
  color: #111;
  font-size: 12px;
  padding: 3px 14px;
  margin-bottom: 18px;
}

.store-card-text {
  font-size: 15px;
  line-height: 1.9;
  font-weight: 600;
}
.store-section {
  margin-top:0px;
  margin-bottom: 80px;
}

@media (max-width: 800px) {
  .contents {
    width: 94%;
  }
  .page-header {
    margin: 85px auto 0;
  }
  .store-section {
    max-width: 960px;
    margin: 40px auto;
  }
  .store-card {
    grid-template-columns: 1fr;
  }

  .store-card-image {
    height: 280px;
  }

  .store-card-body {
    padding: 18px 18px 48px;
  }

  .store-card-title {
    font-size: 30px;
  }
}
