/* ======================================================================
   NET SHOP
   v0.52: 見出しはKiwi Maru、長文はNoto Sans JPへ役割を整理。
   ====================================================================== */

.page-netshop {
  --shop-font-heading: "Kiwi Maru", "Zen Kaku Gothic New", sans-serif;
}

.page-netshop .page-main {
  padding: 0 0 0 24px;
}

.page-netshop .nav-image-link[aria-current="page"]::after {
  background: rgba(255, 255, 255, .12);
  box-shadow: inset 0 0 0 3px rgba(118, 86, 150, .86);
  opacity: 1;
}

.shop-panel {
  width: 100%;
  padding: 4px 0 10px;
}

.shop-page-title {
  margin: 0 0 10px;
  color: var(--nav-text);
  font-family: var(--shop-font-heading);
  font-size: 1.64rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .075em;
  text-align: center;
}

.shop-page-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: var(--nav-cyan);
}

.shop-lead {
  font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  width: min(700px, 100%);
  margin: 0 auto 30px;
  color: #737176;
  font-size: .84rem;
  line-height: 1.9;
  text-align: center;
}

.shop-section {
  margin-top: 26px;
  padding: 22px 22px 20px;
  border: 1px solid #e6ecee;
  border-radius: 11px;
  background: #fff;
}

.shop-section + .shop-section {
  margin-top: 24px;
}

.shop-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
  padding-bottom: 11px;
  border-bottom: 1px solid #dbe8eb;
}

.shop-section-title-wrap {
  min-width: 0;
}

.shop-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3f8fa;
  color: var(--nav-cyan);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .14em;
}

.shop-section-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nav-coral);
}


.shop-section-line .shop-section-kicker {
  background: #eef9f1;
  color: #1f9953;
}

.shop-section-line .shop-section-kicker::before {
  background: #06c755;
}

.shop-section-pixta .shop-section-kicker {
  background: #f3f8f4;
  color: #4f5853;
}

.shop-section-pixta .shop-section-kicker::before {
  background: #79b56b;
}

.shop-section h2 {
  margin: 0;
  color: #626273;
  font-family: var(--shop-font-heading);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .035em;
}

.shop-section-link {
  display: inline-flex;
  align-items: center;
  gap: .35em;
  padding: 6px 11px 5px;
  border: 1px solid #d5e5e8;
  border-radius: 999px;
  background: #fff;
  color: #737176;
  font-size: .72rem;
  line-height: 1.45;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .15s ease, color .15s ease, background-color .15s ease;
}

.shop-section-link::after {
  content: "↗";
  color: var(--nav-coral);
  font-size: .9em;
}

.shop-section-link:hover,
.shop-section-link:focus-visible {
  border-color: var(--nav-coral);
  background: #fff8f9;
  color: var(--nav-coral);
}


.shop-section-line .shop-section-link {
  border-color: #ccebd8;
  background: #f1fbf4;
  color: #278b54;
}

.shop-section-line .shop-section-link::after {
  color: #06c755;
}

.shop-section-line .shop-section-link:hover,
.shop-section-line .shop-section-link:focus-visible {
  border-color: #8fd6ad;
  background: #e8f8ee;
  color: #157644;
}

.shop-section-pixta .shop-section-link {
  border-color: #d9e8db;
  background: #f5faf6;
  color: #56605b;
}

.shop-section-pixta .shop-section-link::after {
  color: #79b56b;
}

.shop-section-pixta .shop-section-link:hover,
.shop-section-pixta .shop-section-link:focus-visible {
  border-color: #b9d4bd;
  background: #eef6f0;
  color: #44514a;
}

.shop-section-intro {
  font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  margin: -2px 0 19px;
  color: #777578;
  font-size: .79rem;
  line-height: 1.8;
}

.sticker-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sticker-card {
  position: relative;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-height: 132px;
  padding: 11px 13px 11px 11px;
  border: 1px solid #e0e7e9;
  border-radius: 11px;
  background: #fff;
  text-decoration: none;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.sticker-card::before {
  content: "";
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: -1px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--nav-cyan);
  transition: background-color .16s ease;
}

.sticker-card:hover,
.sticker-card:focus-visible {
  border-color: #efcbd3;
  box-shadow: 0 5px 18px rgba(94, 80, 104, .08);
  transform: translateY(-1px);
}

.sticker-card:hover::before,
.sticker-card:focus-visible::before {
  background: var(--nav-coral);
}

.sticker-thumb {
  display: grid;
  place-items: center;
  width: 108px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 9px;
  background: #f7f8f8;
}

.sticker-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sticker-copy {
  min-width: 0;
}

.sticker-copy h3 {
  margin: 0 0 5px;
  color: #626273;
  font-family: var(--shop-font-heading);
  font-size: .90rem;
  font-weight: 500;
  line-height: 1.5;
}

.sticker-copy p {
  font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  margin: 0;
  color: #7b797b;
  font-size: .70rem;
  line-height: 1.65;
}

.pixta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.pixta-card {
  display: block;
  overflow: hidden;
  border: 1px solid #e1e7e8;
  border-radius: 10px;
  background: #fff;
  color: #6e6c70;
  text-align: center;
  text-decoration: none;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.pixta-card:hover,
.pixta-card:focus-visible {
  border-color: #c9bad8;
  box-shadow: 0 5px 18px rgba(94, 80, 104, .07);
  transform: translateY(-1px);
}

.pixta-thumb {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  padding: 9px;
  background: #fbfcfc;
}

.pixta-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pixta-label {
  display: block;
  position: relative;
  padding: 8px 7px 9px;
  border-top: 1px solid #edf0f1;
  font-family: var(--shop-font-heading);
  font-size: .80rem;
  line-height: 1.4;
}

.pixta-label::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 7px 2px 0;
  border-radius: 50%;
  background: var(--nav-purple);
}

.shop-external-note {
  font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  margin: 16px 0 0;
  color: #8a888b;
  font-size: .68rem;
  line-height: 1.65;
  text-align: center;
}

@media (max-width: 900px) and (min-width: 761px) {
  .page-netshop .page-main {
    padding-left: 18px;
    padding-right: 12px;
  }

  .sticker-card {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 10px;
  }

  .sticker-thumb {
    width: 88px;
  }

  .pixta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .page-netshop .page-main {
    padding: 0 16px;
  }

  .shop-panel {
    padding: 29px 0 16px;
  }

  .shop-page-title {
    font-size: clamp(1.3rem, 6vw, 1.55rem);
  }

  .shop-lead {
    margin-bottom: 24px;
    font-size: .82rem;
    text-align: left;
  }

  .shop-section {
    margin-top: 20px;
    padding: 18px 16px 16px;
  }

  .shop-section + .shop-section {
    margin-top: 20px;
  }

  .shop-section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
  }

  .shop-section-link {
    justify-self: start;
  }

  .sticker-grid {
    grid-template-columns: 1fr;
  }

  .sticker-card {
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: 118px;
  }

  .sticker-thumb {
    width: 96px;
  }

  .sticker-copy h3 {
    font-size: .9rem;
  }

  .sticker-copy p {
    font-size: .72rem;
  }

  .pixta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}
