@charset "UTF-8";
/* Base
------------------------------------------------------ */
.hs25-wrapper {
  font-family: 'Meiryo UI','Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic', 
  sans-serif;
  min-width: 1250px;
  margin-inline: auto;
}
.hs25-wrapper img {
  vertical-align: bottom;
}

/* Layout
------------------------------------------------------ */
.hs25-main {
  background: #fff;
}
.hs25-inner {
  max-width: 920px;
  margin-inline: auto;
}
.hs25-container {
  max-width: 690px;
  margin-inline: auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.hs25-grid {
  display: grid;
  grid-template-rows: auto;
  gap: 8px;
}
.hs25-grid-3col {
  display: flex;
  gap: 30px;
  justify-content: center;
}
.hs25-grid-4col {
  grid-template-columns: repeat(4, 1fr);
}

/* header
------------------------------------------------------ */
.hs25-header {
  text-align: center;
}
.hs25-header__text {
  margin: 0;
}

/* intro
------------------------------------------------------ */
.hs25-intro__text {
  margin: 1em 0;
  font-size: 12px;
  line-height: calc(20/12);
}

/* contact
------------------------------------------------------ */
.hs25-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin-left: auto;
  padding: 5px 14px;
  background: #e9e9e9;
}
.hs25-contact__text {
  margin: 0;
  font-size: 10px;
  line-height: 1.2;
}
.hs25-contact__tel {
  margin: 0;
  font-size: 24px;
  line-height: 1;
}

/* product
------------------------------------------------------ */
.hs25-product__title {
  margin: 24px 0 14px;
  padding: 0 8px;
  font-size: 18px;
  font-weight: bold;
  line-height: calc(22/18);
  background: linear-gradient(transparent 50%, #0ff 50%);
}

/* 商品カード */
.hs25-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 156.5px;
  padding: 8px;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.3s ease-out;
  outline: none;
}
.hs25-card:focus,
.hs25-card:hover {
  background: #ececec;
}
.hs25-card__head,
.hs25-card__body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 100%;
}
.hs25-card__copy {
  flex: 1;
  margin: 0;
  min-height: 18px;
  font-size: 9px;
  font-feature-settings: "palt";
  line-height: 1;
}
.hs25-card__thumb {
  width: 130px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.hs25-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hs25-card__title {
  flex: 1;
  margin: 0;
  font-size: 10px;
  font-feature-settings: "palt";
  line-height: 1.1;
  font-weight: normal;
}
.hs25-card__price {
  margin: 0;
  font-size: 7px;
  line-height: 1;
}
.hs25-card__price span {
  font-size: calc(12/7*1em);
  color: #f00;
}
.hs25-card__price span em {
  font-style: normal;
  margin: 0 0.25em;
}
.hs25-card__id {
  display: flex;
  margin: 0;
  height: 11px;
  font-size: 8px;
  line-height: 1;
  border: 1px solid #5c5c5c;
}
.hs25-card__id-label {
  display: grid;
  place-content: center;
  width: 7em;
  background: #a9a9a9;
  border-right: 1px solid #5c5c5c;
}
.hs25-card__id-value {
  flex: 1;
  display: grid;
  place-content: center;
  background: #fff;
}
.hs25-card__button {
  margin: 0 0 0 auto;
  width: 108px;
}
.hs25-card__rank {
  position: absolute;
  top: 0;
  left: -30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: 30px;
  height: 30px;
  padding: 2px 5px;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  color: #ff0;
  background: #377dd5;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}