/* ブランドカラー */

.loven {
  --brand-color: #773807;
  --brand-text-color: var(--brand-color);
  --brand-bg-color: var(--brand-color);
  --brand-hover-bg-color: #552807;
  --brand-hover-outline-bg-color: #fbede4;
  --brand-border-color: var(--brand-color);
  --brand-box-shadow-color: #361a05;
  --brand-product-img-item-bg-color: #fff6e0;
}

.nagoyan {
  --brand-color: #be8915;
  --brand-text-color: var(--brand-color);
  --brand-bg-color: var(--brand-color);
  --brand-hover-bg-color: #9a6f10;
  --brand-hover-outline-bg-color: #fff6e0;
  --brand-border-color: var(--brand-color);
  --brand-box-shadow-color: #6f500b;
  --brand-product-img-item-bg-color: #fff6e0;
}

.longlife {
  --brand-color: #004a28;
  --brand-text-color: var(--brand-color);
  --brand-bg-color: var(--brand-color);
  --brand-hover-bg-color: #00351d;
  --brand-hover-outline-bg-color: #e6f4ed;
  --brand-border-color: var(--brand-color);
  --brand-box-shadow-color: #002012;
  --brand-product-img-item-bg-color: #fff6e0;
}

.choujukuotoriyose {
  --brand-color: #005099;
  --brand-text-color: var(--brand-color);
  --brand-bg-color: var(--brand-color);
  --brand-hover-bg-color: #552807;
  --brand-hover-outline-bg-color: #fbede4;
  --brand-border-color: var(--brand-color);
  --brand-box-shadow-color: #002b52;
  --brand-product-img-item-bg-color: #fff6e0;
  --brand-logo-width: 184px;
  --brand-logo-width-sp: 128px;
}

.pankit {
  --brand-color: #bc641d;
  --brand-text-color: var(--brand-color);
  --brand-bg-color: var(--brand-color);
  --brand-hover-bg-color: #9a4f16;
  --brand-hover-outline-bg-color: #fbede4;
  --brand-border-color: var(--brand-color);
  --brand-box-shadow-color: #773807;
  --brand-product-img-item-bg-color: #fff6e0;
}

/* 共通コンポーネント */

.product-list {
  --font-family-base: "Zen Maru Gothic", sans-serif;
  --font-family-latin: "Poppins", sans-serif;

  font-family: var(--font-family-base);
}


/* section */
.section {
  padding-block: 48px;

  @media (768px <= width) {
    padding-block: 80px;
  }
}

.section__inner {
  max-width: 600px;
  margin: 0 auto;
  padding-inline: 16px;

  @media (768px <= width) {
    width: 100%;
    max-width: min(calc(1080px + 40px * 2), 100%);
    margin-inline: auto;
    padding-inline: 40px;
  }
}

.section__content {
  margin-top: 32px;
}

/* section-header */
.section-header {
  --subtitle-color: var(--brand-text-color);
  --title-color: #212529;
}

.section-header--white {
  --subtitle-color: #fff;
  --title-color: #fff;
}

.section-header__subtitle {
  font-family: var(--font-family-latin);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-transform: capitalize;
  color: var(--subtitle-color);

  @media (768px <= width) {
    font-size: 14px;
  }
}

.section-header__title {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: var(--title-color);

  @media (768px <= width) {
    font-size: 24px;
  }
}

/* btn */

.btn {
  --btn-bg-color: #009140;
  --btn-hover-bg-color: #007a36;
  --btn-text-color: #fff;
  --btn-border: #009140;
  --btn-shadow: #004a28;
  --btn-icon-bg-color: #fff;
  --btn-icon-color: #009140;

  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-inline: auto;
  padding-block: 12px;
  padding-inline: 16px;
  background: var(--btn-bg-color);
  border-radius: calc(infinity * 1px);
  box-shadow: 0 6px 0 0 var(--btn-shadow);
  transition: background 0.3s ease;

  &:hover {
    background: var(--btn-hover-bg-color);
  }

  &.is-brand {
    --btn-text-color: #fff;
    --btn-bg-color: var(--brand-bg-color);
    --btn-hover-bg-color: var(--brand-hover-bg-color);
    --btn-shadow: var(--brand-box-shadow-color);
    --btn-icon-bg-color: #fff;
    --btn-icon-color: var(--brand-text-color);
  }

  &.is-disabled {
    --btn-bg-color: #e9ecef;
    --btn-text-color: #adb5bd;
    --btn-border: #e9ecef;
    --btn-icon-bg-color: #fff;
    --btn-icon-color: #adb5bd;

    box-shadow: none;
    cursor: default;
  }

  &.is-outline {
    --btn-text-color: #009140;
    --btn-bg-color: #fff;
    --btn-hover-bg-color: #e6f4ed;
    --btn-icon-bg-color: #009140;
    --btn-icon-color: #fff;

    padding-block: 10px;
    padding-inline: 14px;
    border: 2px solid var(--btn-border);

    &.is-brand {
      --btn-text-color: var(--brand-text-color);
      --btn-border: var(--brand-border-color);
      --btn-icon-bg-color: var(--brand-color);
      --btn-icon-color: #fff;
      --btn-bg-color: #fff;
      --btn-hover-bg-color: var(--brand-hover-outline-bg-color);
    }

    &.is-disabled {
      --btn-bg-color: #fff;
      --btn-text-color: #adb5bd;
      --btn-icon-bg-color: #e9ecef;
      --btn-icon-color: #fff;

      box-shadow: none;
      cursor: default;
    }
  }
}

.btn__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: var(--btn-text-color);
}

.btn__icon {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 20px;
  height: 20px;
  translate: 0 -50%;

  rect {
    fill: var(--btn-icon-bg-color);
  }

  path {
    fill: var(--btn-icon-color);
  }

  &.is-left {
    top: 50%;
    left: 16px;
    translate: 0 -50%;
  }

  &.is-center {
    position: initial;
    translate: 0;
  }
}

/* more-btn */
.btn.lineup__more-btn {
  max-width: 200px;
  padding-block: 6px;

  @media (768px <= width) {
    max-width: 250px;
    padding-block: 10px;
  }

  .btn__icon {
    width: 17px;
    height: 17px;

    @media (768px <= width) {
      width: 20px;
      height: 20px;
    }

    path {
      fill: var(--brand-text-color);
    }
  }

  .btn__text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;

    @media (768px <= width) {
      font-size: 16px;
    }
  }

  &[aria-expanded="true"] .btn__icon {
    rotate: 180deg;
  }
}

/* brand-logo */

.brand-logo {
  position: fixed;
  top: 80px;
  left: 16px;
  z-index: 2;
  width: var(--brand-logo-width-sp, 88px);
  height: auto;
  transition: 0.3s;

  @media (768px <= width) {
    top: 127px;
    left: 31px;
    width: var(--brand-logo-width, 144px);

    @media (1440px <= width) {
      left: calc(50% - 689px);
    }
  }

  &:hover {
    opacity: 0.8;
  }
}

/* cart-btn */

.to-cart-btn {
  --btn-bg-color: #fff;
  --btn-hover-bg-color: #e6f4ed;
  --btn-text-color: #009140;
  --btn-border: #009140;
  --btn-shadow: #004a28;
  --btn-icon-bg-color: #fff;
  --btn-icon-color: #009140;

  display: flex;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 78px;
  height: 78px;
  aspect-ratio: 1/1;
  background: var(--btn-bg-color);
  border: 2px solid var(--btn-border);
  border-radius: calc(infinity * 1px);
  box-shadow: 0 4px 0 0 var(--btn-shadow);
  transition: 0.1s ease-out;
  cursor: pointer;

  &:hover {
    color: var(--btn-text-color);
    background: var(--btn-hover-bg-color);
  }
  &:focus {
    overflow: visible;
  }
}

.to-cart-btn__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.to-cart-btn__count {
  display: grid;
  position: absolute;
  top: 3px;
  right: 4px;
  width: 20px;
  height: 20px;
  background-color: #d92d20;
  border-radius: calc(infinity * 1px);
  place-content: center;
}

.to-cart-btn__count-text {
  font-family: var(--font-family-latin);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
}

.to-cart-btn__icon {
  width: 40px;
  height: 40px;
}

.to-cart-btn__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  color: var(--btn-text-color);
}

.to-cart-btn:active {
  box-shadow: 0 0 0 0 var(--button-primary-shadow, #004a28);
  transform: translateY(4px);
}


/* FV */
.fv {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  min-height: 320px;
  padding-top: 155px;

  @media (768px <= width) {
    min-height: 440px;
    padding-top: 245px;
  }
}

.fv__bg-wrap {
  overflow: hidden;
  position: absolute;
  inset: 0;
  /* z-index: -1; */
  /* border-bottom: 6px solid var(--brand-border-color); */
  /* border-radius: 0 0 24px 24px; */

  @media (768px <= width) {
    border: none;
    border-radius: 0 0 24px 24px;
  }
}

.fv__bg-img {
  --transition-duration: 1.3s;

  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity var(--transition-duration) ease-in-out;
  object-position: bottom;

  &.is-active {
    opacity: 1;
  }
}

.fv__content {
  padding-inline: 16px;
  position: relative;
}

.fv__catchcopy-text {
  font-size: min(24px, calc(24 / 375 * 100vw));
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-shadow: 0 0 8px rgb(0 0 0 / 50%);
  color: #fff;

  @media (768px <= width) {
    font-size: min(40px, calc(40 / 1000 * 100vw));

    br {
      display: none;
    }
  }
}

.fv__anchor {
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 100%;

  @media (768px <= width) {
    bottom: -34px;
  }
}

/* アンカーナビ */
.anchor {
  padding-inline: 16px;
}

.anchor__items {
  display: flex;
  overflow: hidden;
  width: 100%;
  max-width: 343px;
  margin: 0 auto;
  background-color: #fff;
  border: 2px solid var(--brand-border-color);
  border-radius: 8px;

  /* shadow/elevation/1 */
  box-shadow: 0 2px 0 0 var(--brand-box-shadow-color);

  @media (768px <= width) {
    max-width: 650px;
  }
}

.anchor__item {
  display: flex;
  position: relative;
  flex-basis: 50%;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 6px;

  &:not(:first-child) {
    &::after {
      content: "";
      position: absolute;
      top: 50%;
      left: -0.5px;
      width: 1px;
      height: 21px;
      background-color: #adb5bd;
      translate: 0 -50%;
    }
  }

  &:hover {
    background-color: #f1f3f5;
  }

  @media (768px <= width) {
    padding-block: 12px;
  }
}

.anchor__item-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--brand-text-color);

  @media (768px <= width) {
    font-size: 16px;
  }
}

.anchor__item-icon {
  width: 16px;
  height: 16px;

  rect {
    fill: var(--brand-color);
  }

  path {
    fill: #fff;
  }
}

/* lineup */
.lineup {
  overflow: hidden;
  margin-top: 14px;
  scroll-margin-top: 46px;

  @media (768px <= width) {
    margin-top: 17px;
    scroll-margin-top: 64px;
  }
}

.lineup__content {
  @media (768px <= width) {
    width: 100%;
    max-width: min(calc(1080px + 40px * 2), 100%);
    margin-inline: auto;
    padding-inline: 40px;
  }
}

.lineup__product-wrap {
  width: 100%;
  max-width: 600px;
  margin-top: 24px;
  margin-inline: auto;
  padding-inline: 16px;

  @media (768px <= width) {
    max-width: initial;
    padding-inline: 0;
  }
}

.lineup__more-btn-wrap {
  margin-top: 48px;

  @media (768px <= width) {
    margin-top: 36px;
  }
}

.lineup__views {
  &:not(.is-active) {
    display: none;
  }
}

.lineup__grid-view {
  display: flex;
  flex-direction: column;
}

.lineup__list-view {
  display: flex;
  flex-direction: column;
}

.lineup__product-items {
  &.is-hidden {
    display: none;
  }

  &:nth-of-type(1) {
  }

  &:not(:nth-of-type(1)) {
    margin-top: 32px;

    /* .product-card:nth-of-type(1),
    .product-card:nth-of-type(2) {
      display: block;

      @media (768px <= width) {
        display: none;
      }
    } */
  }
}

/* tab-nav */

.tab-nav__container {
  overflow-x: auto;
  position: relative;
  padding-bottom: 12px;
}

.tab-nav {
  padding-bottom: 12px;
}

.tab-nav__tabs {
  display: flex;
  position: relative;
  justify-content: center;
  width: max-content;
  min-width: 100%;
  padding-inline: 16px;

  &::before {
    content: "";
    position: absolute;
    bottom: 1px;
    z-index: 1;
    width: 100%;
    height: 3px;
    background-color: #adb5bd;
  }
}

.tab-nav__tab {
  display: grid;
  position: relative;
  flex-shrink: 0;
  min-height: 53px;
  padding-inline: 17px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  border-radius: 16px 16px 0 0;
  place-content: center;

  @media (768px <= width) {
    padding-inline: 32px;
  }

  /* &[aria-selected="true"] {
    color: var(--brand-text-color);
    pointer-events: none;

    &::after {
      content: "";
      position: absolute;
      bottom: 1px;
      left: 0;
      z-index: 1;
      width: 100%;
      height: 3px;
      background-color: var(--brand-border-color);
    }
  }

  &[aria-selected="false"] {
    transition: background-color 0.3s ease;

    &:hover {
      background-color: #f1f3f5;
      cursor: pointer;
    }
  } */

  &.is-active {
    font-weight: 500;
    color: var(--brand-text-color);
    pointer-events: none;

    &::after {
      content: "";
      position: absolute;
      bottom: 1px;
      left: 0;
      z-index: 1;
      width: 100%;
      height: 3px;
      background-color: var(--brand-border-color);
    }
  }
  
  &:not(.is-active) {
    transition: background-color 0.3s ease;

    &:hover {
      background-color: #f1f3f5;
      cursor: pointer;
    }
  }
}

.tab-nav__panel {
  visibility: hidden;
  height: 0;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    translate 0.3s ease;
  translate: 0 20px;

  &.js-show {
    visibility: visible;
    height: fit-content;
    opacity: 1;
    translate: 0;
  }
}

/* list-toolbar */

.list-toolbar__sort {
  position: relative;
}

.list-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  max-width: 600px;
  margin-inline: auto;
  padding-inline: 16px;

  @media (768px <= width) {
    max-width: 100%;
    padding-inline: 0;
  }
}

.list-toolbar__count {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;

  @media (768px <= width) {
    font-size: 14px;
  }
}

.list-toolbar__number {
  font-family: var(--font-family-latin);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  translate: 0 1px;
}

.list-toolbar__actions {
  display: flex;
  gap: 8px;
}

.list-toolbar__btn {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 28px;
  padding-inline: 12px;
  color: #495057;
  border: 1px solid #adb5bd;
  border-radius: calc(infinity * 1px);
  transition: background-color 0.3s ease;

  &:hover {
    background-color: #f1f3f5;
  }
}

.list-toolbar__select:hover ~ .list-toolbar__btn {
  background-color: #f1f3f5;
}

.list-toolbar__select:focus ~ .list-toolbar__btn {
  background-color: #f1f3f5;
}

.list-toolbar__btn-icon {
  display: none;
  width: 20px;
  height: 20px;

  &.is-active {
    display: block;
  }
}

.list-toolbar__btn-text {
  font-size: 14px;
}

.list-toolbar__select {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  appearance: none;
}

.list-toolbar__sort-option {
  padding-block: 6px;
  padding-inline: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  cursor: pointer;

  &:hover {
    background-color: #f1f3f5;
  }
}

/* product-grid-items */
.product-grid-items {
  display: grid;
  gap: 32px 15px;
  grid-template-columns: repeat(auto-fill, minmax(164px, 1fr));

  @media (width < 390px) {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card:nth-of-type(n + 7) {
    /* display: none; */

    @media (768px <= width) {
      display: block;
    }
  }

  @media (768px <= width) {
    gap: 48px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

/* product-card */
.product-card {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.product-card__link {
  &:hover {
    .product-card__top {
      opacity: 0.8;
    }
  }
}

.product-card__top {
  position: relative;
  transition: opacity 0.3s;
}

.product-card__img {
  img {
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
  }
}

.product-card__badge-wrap {
  position: absolute;
}

.product-badge--sold-out {
  padding-block: 7px;
  padding-inline: 8px;
  font-family: var(--font-family-latin);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  background-color: #adb5bd;
}

.product-card__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;

  &:not(:has(.product-label)) {
    display: none;
  }

  @media (768px <= width) {
    gap: 8px;
  }
}

.product-label {
  padding-block: 4px;
  padding-inline: 8px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.8px;
  color: #fff;
  background-color: #eb8478;
  border-radius: 2px;

  @media (768px <= width) {
    font-size: 12px;
    letter-spacing: -0.96px;
  }
}

.product-label--cold {
  background-color: #66a0cc;
}

.product-label--first-time {
  background-color: #66bd8f;
}

.product-label--shipping-included {
  background-color: #eb8478;
}

.product-label--special-price {
  background-color: #d92d20;
}

.product-label--limited-time {
  background-color: #d9a91f;
}

.product-card__title {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;

  @media (768px <= width) {
    font-size: 16px;
  }
}

.product-card__price-wrap {
  /* margin-top: 16px; */
  padding-top: 16px;
  margin-top: auto;

  > span {
    display: block;
  }
}

.product-card__price {
  width: fit-content;
  margin-left: auto;
}

.product-card__price-original {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 5px;
}

.product-card__price-label {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: #d92d20;

  @media (768px <= width) {
    font-size: 14px;
  }
}

.product-card__price-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: baseline;
  font-family: var(--font-family-latin);
}

.product-card__price-box:nth-of-type(2) {
  color: #d92d20;
}

.product-card__price-arrow {
  display: flex;
}

.product-img-card__price-arrow-icon {
  width: 18px;
  height: auto;
  translate: -4px -3px;
}

.product-card__price-number {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;

  @media (768px <= width) {
    font-size: 28px;
  }
}

.product-card__price-unit {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.product-card__price-tax {
  font-size: 12px;
  line-height: 1.2;

  @media (768px <= width) {
    font-size: 14px;
  }
}

.product-card__price-box--original {
  position: relative;

  &::before {
    content: "";
    position: absolute;
    top: 45%;
    left: -2px;
    width: 97%;
    height: 1px;
    background-color: #d92d20;
    translate: 0 -50%;
  }

  .product-card__price-number {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
  }
}

/* product-img-card */

.product-list-items {
  display: grid;
  gap: 32px;

  @media (768px <= width) {
    gap: 32px 25px;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}

.product-img-card {
  overflow: hidden;
  background-color: var(--brand-product-img-item-bg-color);
  border-radius: 8px;

  @media (768px <= width) {
    display: flex;
    flex-direction: column;
  }
}

.product-img-card__top {
  position: relative;
  transition: opacity 0.3s;
  &:hover {
    opacity: 0.8;
  }
}

.product-img-card__badge-wrap {
  display: flex;
  position: absolute;
  top: 8px;
  left: 8px;
  gap: 8px;
}

.product-img-card__badge {
  display: grid;
  width: 40px;
  height: 40px;
  padding-block: 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  background-color: #d92d20;
  border-radius: calc(infinity * 1px);
  place-content: center;
}

.product-img-card__img {
  img {
    height: 100%;
    /* aspect-ratio: 343/240; */
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
  }
}

.product-img-card__body {
  padding-block: 24px 32px;
  padding-inline: 16px;

  @media (768px <= width) {
    display: flex;
    flex-direction: column;
    height: stretch;
  }
}

.product-img-card__body > *:first-child {
  margin-top: 0 !important;
}

.product-img-card__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.product-img-card__title {
  display: -webkit-box;
  overflow: hidden;
  min-height: 64px;
  margin-top: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;

  a {
    transition: opacity 0.3s;
    &:hover {
      opacity: 0.8;
      color: inherit;
    }
  }

  /* @media (768px <= width) {
    font-size: 24px;
  } */
}

.product-img-card__price-wrap {
  margin-top: 4px;
  @media (768px <= width) {
    margin-top: 12px;
  }
}

.product-img-card__price {
  width: fit-content;
  margin-left: auto;
}

.product-img-card__price-original {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
}

.product-img-card__price-label {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: #d92d20;
}

.product-img-card__price-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: baseline;
  font-family: var(--font-family-latin);
}

.product-img-card__price-box:nth-of-type(2) {
  color: #d92d20;
}

.product-img-card__price-number {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;

  @media (768px <= width) {
    font-size: 28px;
  }
}

.product-img-card__price-unit {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.product-img-card__price-tax {
  font-size: 12px;
  line-height: 1.2;

  @media (768px <= width) {
    font-size: 14px;
  }
}

.product-img-card__price-box--original {
  position: relative;

  &::before {
    content: "";
    position: absolute;
    top: 45%;
    left: 0;
    width: 97%;
    height: 1px;
    background-color: #d92d20;
    translate: 0 -50%;
  }

  .product-img-card__price-number {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
  }
}

.product-img-card__sentence {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;

  /* @media (768px <= width) {
    margin-top: 8px;
  } */
}

.product-img-card__set-menu {
  margin-top: 16px;

  @media (768px <= width) {
    flex-grow: 1;
  }
}

.set-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background-color: #fff;
  border-radius: 4px;

  @media (768px <= width) {
    height: 100%;
  }
}

.set-menu__header {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.set-menu__img-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.set-menu__img {
  width: 40px;
  height: 40px;
}

.set-menu__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.set-menu__list-item {
  display: flex;
  gap: 4px;

  &::before {
    content: "・";
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
  }
}

.set-menu__list-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;

  @media (768px <= width) {
    font-size: 14px;
  }
}

.product-img-card__btn {
  max-width: 311px;
  margin-top: 24px;
}
