@charset "UTF-8";

@font-face {
  font-family: "LINESeedJPotf";
  font-weight: 300;
  src: url("../font/LINESeedJP_OTF_Rg.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "LINESeedJPotf";
  font-weight: 700;
  src: url("../font/LINESeedJP_OTF_Bd.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "LINESeedJPotf";
  font-weight: 800;
  src: url("../font/LINESeedJP_OTF_Eb.woff") format("woff");
  font-display: swap;
}

/* ///////////////////////////// */

/* スムーススクロール */
html {
  scroll-behavior: smooth;
}

/* ///// variable ///////////////////////////////// */
:root {
  --bg: #e5e7e7;
  --main-bg: #e5e7e7;
  --section-bg: #e5e7e7;
  --content-bg: #fff;
  --content-text: #000;
  --content-em: #e60012;
  --content-ttl-bg: #000;
  --content-ttl-text: #fff;
  --goods-bg: #fff;
  --goods-text: #000;
  --goods-ttl-bg: #000;
  --goods-ttl-text: #fff;
  --limited-ttl-bg: #e60012;
  --limited-ttl-color: #fff;
}

/* ///// base,common /////////////////////////////////  */
img {
  max-width: 100%;
  height: auto;
}

a:hover {
  opacity: 0.7;
}

/* main */
.main__wrap {
  font-family: "LINESeedJPotf", sans-serif;
  background: var(--bg);
}

.main {
  position: relative;
  margin-inline: auto;
  width: min(100%, 1000px);
  background-color: var(--main-bg);
  padding-bottom: max(3%, 16px);
}

/* @media (max-width: 1000px) {
  .main__wrap {
    padding-bottom: max(8%, 85px);
  }
} */

/* section */
.section {
  background: var(--section-bg);
}

/* content */

.content__inner {
  background: var(--content-bg);
  color: var(--content-text);
  padding: max(5%, 18px) max(5%, 18px) max(3%, 16px);
  line-height: 1.5;
}

/* ttl */

.title-second {
  background: var(--content-ttl-bg);
  color: var(--content-ttl-text);
  font-weight: 800;
  font-size: clamp(16px, calc(16px + (32 - 16) * (100vw - 320px) / (1000 - 320)), 32px);
  width: fit-content;
  min-width: 45%;
  padding: 0.5em max(5%, 32px);
  line-height: 1.2;
  transform: translateY(0.6em);
}

/* attention-text */

.attention-text {
  width: fit-content;
  margin-inline: auto;
  font-size: clamp(14px, calc(14px + (24 - 14) * (100vw - 320px) / (1000 - 320)), 24px);
  font-weight: 700;
  padding-top: 1em;
  text-align: center;
}

/* text */

.text {
  text-align: center;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.text--l {
  font-size: clamp(16px, calc(16px + (40 - 16) * (100vw - 320px) / (1000 - 320)), 40px);
}

.text--bold {
  font-weight: 800;
}

.text--em {
  color: var(--content-em);
}

/* goods */

.goods-card__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.goods-card {
  border: var(--goods-text) solid 1px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.goods-card.goods-card--noborder {
  border: none;
}

.goods-card__amount {
  background: var(--goods-ttl-bg);
  color: var(--goods-ttl-text);
  text-align: center;
  font-weight: 800;
  font-size: clamp(16px, calc(16px + (24 - 16) * (100vw - 320px) / (1000 - 320)), 24px);
  padding: 0.4em 1em;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.goods-card__tax {
  font-size: 0.82em;
  vertical-align: bottom;
}

.goods-card__inner {
  padding: max(5%, 16px);
}

.goods-item__sample {
  display: grid;
  gap: 14px;
  align-items: center;
}

.goods-item__sample.goods-item__sample--2column {
  grid-template-columns: repeat(2, 1fr);
}

.goods-item__sample.goods-item__sample--3column {
  grid-template-columns: repeat(3, 1fr);
}

.goods-item__img-caption {
  text-align: center;
  font-weight: 700;
  font-size: clamp(14px, calc(14px + (28 - 14) * (100vw - 320px) / (1000 - 320)), 28px);
}

.goods-item__img-caption.goods-item__img-caption--s {
  font-size: clamp(12px, calc(12px + (20 - 12) * (100vw - 320px) / (1000 - 320)), 20px);
}

.goods-item__img-wrapper {
  display: flex;
  justify-content: center;
}
.goods-item__img-50 {
  width: 50%;
}
.goods-item__img-75 {
  width: 75%;
}
.goods-item__img-20 {
  width: 20%;
}
.goods-attention {
  position: relative;
}
.goods-attention::before {
  content: "";
  background-image: url(../images/goods/keyholder-notice.webp);
  width: 120px;
  height: 139px;
  position: absolute;
  background-size: 100% 100%;
  top: 42%;
  left: 77%;
}
@media screen and (max-width: 768px) {
  .goods-attention::before {
    content: "";
    background-image: url(../images/goods/keyholder-notice.webp);
    width: 50px;
    height: 58px;
    position: absolute;
    background-size: 100% 100%;
    top: 42%;
    left: 77%;
  }
}
.goods-attention2 {
  position: relative;
}
.goods-attention2::before {
  content: "";
  background-image: url(../images/goods/set-notice.webp);
  width: 120px;
  height: 134px;
  position: absolute;
  background-size: 100% 100%;
  top: 0%;
  left: 102%;
}
@media screen and (max-width: 768px) {
  .goods-attention2::before {
    content: "";
    background-image: url(../images/goods/set-notice.webp);
    width: 60px;
    height: 67px;
    position: absolute;
    background-size: 100% 100%;
    top: 0%;
    left: 102%;
  }
}
.goods-item__img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
}

.goods-item__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.goods-card__attention {
  text-align: center;
  font-weight: 700;
  font-size: clamp(12px, calc(12px + (22 - 12) * (100vw - 320px) / (1000 - 320)), 22px);
  color: var(--goods-text);
}

.goods-card__attention.goods-card__attention--s {
  font-size: clamp(10px, calc(10px + (12 - 10) * (100vw - 320px) / (1000 - 320)), 12px);
}

.goods-card__name {
  text-align: center;
  font-weight: 800;
  font-size: clamp(14px, calc(14px + (20 - 14) * (100vw - 320px) / (1000 - 320)), 20px);
  color: var(--goods-text);
  padding-top: 1em;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.goods-card__name.goods-card__name--m {
  font-size: clamp(14px, calc(18px + (30 - 14) * (100vw - 320px) / (1000 - 320)), 30px);
}
.goods-card__name.goods-card__name--l {
  font-size: clamp(18px, calc(18px + (44 - 18) * (100vw - 320px) / (1000 - 320)), 44px);
}

.goods-card__price {
  border-top: var(--goods-text) solid 1px;
  padding-top: 0.2em;
  margin-top: 0.2em;
}

.goods-card__price-unit {
  font-size: 0.78em;
  vertical-align: bottom;
}
@media (max-width: 769px) {
  .goods-card__list {
    display: flex;
    flex-direction: column;
  }

  .goods-item__sample.goods-item__sample--3column {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    .goods-item__img-weap {
      width: 46%;
    }
  }
}
@media (max-width: 425px) {
  .goods-card__list {
    display: flex;
    flex-direction: column;
  }

  .goods-item__sample.goods-item__sample--3column {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    .goods-item__img-weap {
      width: 46%;
    }
  }
}

/* ///// btn_top-back /////////////////////////////////  */

.btn_top-back {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 1.2em 1em 1.2em 2em;
  position: absolute;
  width: fit-content;
  left: min(1vw, 30px);
  top: min(1vw, 30px);
  background: no-repeat 0.8em center/0.5em url("../images/icon_top-back.svg"), #ffffff;
  border: 1px solid #adadad;
  border-radius: 6px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .btn_top-back {
    display: none;
  }
}

/* ///// all-shop /////////////////////////////////  */

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

.all-shop-prize__item {
  text-align: center;
}

.all-shop-prize__item.all-shop-prize__item--l {
  grid-column: span 2;
  .all-shop-prize__img {
    width: 80%;
    max-width: 600px;
    margin-inline: auto;
  }
}

.all-shop-prize__name {
  padding-block: 0.8em;
  font-size: clamp(18px, calc(18px + (44 - 18) * (100vw - 320px) / (1000 - 320)), 44px);
  font-weight: 800;
  word-break: keep-all;
  overflow-wrap: break-word;
}

@media (max-width: 425px) {
  .all-shop-prize {
    display: flex;
    flex-direction: column;
  }
}

/* ///// goods /////////////////////////////////  */

.goods-item__img.goods-img__y2k-acrylic-stand {
  aspect-ratio: 1.1 / 1;
}

/* ///// totitere /////////////////////////////////  */
.totitere {
  display: grid;
  grid-template-columns: 49% auto;
  gap: 14px;
}

.totitere-info {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.totitere-info_detail {
  font-size: clamp(18px, calc(18px + (35 - 18) * (100vw - 320px) / (1000 - 320)), 35px);
  color: var(--content-em);
  font-weight: 800;
  line-height: 1.2;
}

.totitere-info__date,
.totitere-info__x {
  font-weight: 700;
  padding-top: 0.3em;
  font-size: clamp(12px, calc(12px + (22 - 12) * (100vw - 320px) / (1000 - 320)), 22px);
}

.totitere-info__x-link {
  text-decoration: none;
  color: var(--content-text);

  &::before {
    content: "";
    display: inline-block;
    width: 0.7em;
    aspect-ratio: 1 / 1;
    background: no-repeat center / contain url(../images/icon_arrow.webp);
    vertical-align: baseline;
    padding-left: 0.1em;
  }
}

.goods-card.totitere-goods {
  .goods-card__inner {
    padding: 0 max(5%, 16px) 16px;
  }
  .goods-card__name {
    font-size: clamp(13px, calc(13px + (23 - 13) * (100vw - 320px) / (1000 - 320)), 23px);
    padding-top: 0.1em;
  }
  .goods-item__img {
    width: 85%;
    margin-inline: auto;
  }
}

.totitere-goods {
  grid-column: 1/2;
  grid-row: 1/3;
}

.totitere-benefit {
  display: grid;
  grid-template-columns: 35% auto;
  border: var(--content-text) 1px solid;
  padding: max(1%, 14px);
  gap: 14px;
  align-items: center;
}

.totitere-benefit_info {
  font-weight: 700;
  font-size: clamp(14px, calc(14px + (18 - 14) * (100vw - 320px) / (1000 - 320)), 18px);
}

.totitere-benefit__text {
  padding-top: 1em;
}

.totitere-benefit__em {
  color: var(--content-em);
}

.totitere-benefit__tax {
  font-size: 0.76em;
  vertical-align: bottom;
}

.totitere-benefit__attention {
  font-size: 0.73em;
}

@media (max-width: 425px) {
  .totitere {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .totitere-benefit {
    align-items: start;
  }
}

/* ///// person-inside /////////////////////////////////  */
.goods-item__img.limited-goods__img {
  aspect-ratio: 1.3 / 1;
}

.text.limited-goods__text {
  padding-block: 0.5em;
}

.limited-store__ttl {
  background: var(--limited-ttl-bg);
  color: var(--limited-ttl-color);
  font-size: clamp(16px, calc(16px + (31 - 16) * (100vw - 320px) / (1000 - 320)), 31px);
  font-weight: 800;
  text-align: center;
  padding: 0.5em 1em;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.limited-store__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-top: max(3%, 16px);
  gap: 14px;
}

.limited-store__sample {
  display: flex;
}

.limited-store__img-caption {
  font-size: clamp(11px, calc(11px + (18 - 11) * (100vw - 320px) / (1000 - 320)), 18px);
  text-align: center;
  padding-block: 0.5em;
  font-weight: 800;
  line-height: 1.2;
}

.limited-store__detail {
  padding-top: max(5%, 32px);
  font-size: clamp(14px, calc(14px + (27 - 14) * (100vw - 320px) / (1000 - 320)), 27px);
}

.limited-store__text {
  font-weight: 800;
  line-height: 1.2;
  padding-bottom: 1em;
}

.limited-store__em {
  color: var(--content-em);
}

.limited-store_date {
  font-weight: 800;
}

.limited-store_date-ttl {
  width: fit-content;
  padding: 0.1em 1em;
  background: #f9ee00;
  line-height: 1.2;
}

.limited-store_date-text {
  padding-top: 0.3em;
  line-height: 1.2;
}

.limited-store__attention {
  font-size: max(0.55em, 11px);
  font-weight: 700;
  display: block;
  padding-top: 1em;
}

.limited-store__x {
  grid-column: span 2;
}

@media (max-width: 425px) {
  .limited-store__info {
    display: flex;
    flex-direction: column;
  }

  .limited-store__detail {
    padding-top: 0;
  }
}

/* content */
.content {
  transform: translateY(-1rem);
}
@media (max-width: 425px) {
  .content {
    transform: translateY(-0.55rem);
  }
}
.content__inner {
  background: var(--content-bg);
  color: var(--content-text);
  padding: max(6%, 20px) max(5%, 18px) max(3%, 16px);
  line-height: 1.5;
}

/* ttl */
.title-main-top {
  margin-top: 1rem;
}
.title-second {
  background: var(--content-ttl-bg);
  color: var(--content-ttl-text);
  font-weight: 800;
  font-size: clamp(16px, calc(16px + (32 - 16) * (100vw - 320px) / (1000 - 320)), 32px);
  width: fit-content;
  min-width: 45%;
  padding: 0.5em max(5%, 32px);
  line-height: 1.2;
  transform: translateY(1em);
}
.title-small {
  font-size: 0.5em;
}
.title-second_sub {
  background: var(--content-ttl-bg);
  color: var(--content-ttl-text);
  font-weight: 800;
  font-size: clamp(16px, calc(16px + (32 - 16) * (100vw - 320px) / (1000 - 320)), 32px);
  width: fit-content;
  min-width: 45%;
  padding: 0.5em max(5%, 32px);
  line-height: 1.2;
  transform: translateY(1em);
  display: flex;
  align-items: flex-end;
  gap: 0.3rem;
}
.banner {
  width: 90%;
  margin: 3rem auto;
}

/* ///// content ///////////////////////////////// */

.content__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  gap: 18px;
  width: 95%;
  height: auto;
  color: #ffffff;
  background: #509bf2;
  align-self: stretch;
  text-decoration: none;
  text-align: center;
  font-size: clamp(12px, calc(12px + (32px - 16) * (100vw - 320px) / (1000 - 320)), 32px);
  font-family: "LINESeedJPotf";
  font-weight: 700;
  margin: auto;
}

.content__btn::after {
  content: "\f054"; /* Font Awesomeの右矢印アイコン */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 6%;
  font-size: clamp(12px, calc(12px + (32px - 16) * (100vw - 320px) / (1000 - 320)), 32px);
  padding-right: 16px;
}

.l_content__block {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  align-items: center;
}

.l_content__banner {
  width: 50%;
}

.l_content__text-box {
  display: flex;
  width: 50%;
  flex-direction: column;
  gap: 1rem;
}

.l_content__text,
.l_content__period {
  font-size: clamp(14px, calc(16px + (32 - 16) * (100vw - 320px) / (1000 - 320)), 24px);
  font-family: "LINESeedJPotf";
  font-weight: 700;
}

.l_content__attention {
  font-size: clamp(12px, calc(12px + (32px - 16) * (100vw - 320px) / (1000 - 320)), 32px);
  font-family: "LINESeedJPotf";
}

.l_content__attention::before {
  content: "※";
}

@media screen and (max-width: 768px) {
  .banner {
    margin: 1rem;
  }

  .l_content__block {
    flex-direction: column;
  }

  .l_content__banner {
    width: 100%;
  }

  .l_content__text-box {
    width: 100%;
  }

  .content__btn {
    width: 80%;
  }

  .content__btn::after {
    right: 8%;
  }
}

/* ///// sns ///////////////////////////////// */

.p_sns-btn_wrap {
  display: flex;
  gap: 8px;
}

.p_sns-btn {
  background: #000000;
  color: #fff;
  padding: 0.5em 1.1em 0.5em;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  gap: 0.8em;
  align-items: center;

  &::before {
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    background: no-repeat center/contain url("../images/x_logo.svg");
    background-size: contain;
  }
}

/* ///// appli-btn ///////////////////////////////// */

.p_appli-btn_wrap {
  display: flex;
  width: fit-content;
  gap: 1rem;
  margin-inline: auto;
}

.p_appli-btn {
  display: block;

  img {
    height: 100%;
    width: auto;
    object-fit: contain;
  }
}

/* ///// footer ///////////////////////////////// */

.l_footer {
  background: #fff;
  color: #000000;
  width: 100%;
  overflow: hidden;
  a {
    text-decoration: none;
  }
}

[name="footer-menu"] {
  display: none;
}

.l_footer_inner {
  max-width: 1300px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 32px 101px;
  padding: max(3%, 27px);
  line-height: 1;
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .l_footer_inner {
    display: flex;
    flex-direction: column;
  }
}

.l_footer-gnav_wrap {
  grid-row: 1/3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 768px) {
  .l_footer-gnav_wrap {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .l_footer-gnav {
    border-bottom: 1px solid #000000;
  }

  .l_footer-gnav:first-of-type {
    border-top: 1px solid #000000;
  }
}

.l_footer-gnav_ttl {
  display: block;
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .l_footer-gnav_ttl {
    margin-bottom: 0;
    padding-right: 1em;
    transition: background 0.5s;
    background: no-repeat center right/1em url("../images/add-line.svg");
  }

  [name="footer-menu"]:checked ~ .l_footer-gnav_ttl {
    background: no-repeat center right/1em url("../images/subtract-line.svg");
  }
}

@media screen and (max-width: 768px) {
  .l_footer-gnav_ttl,
  .l_footer-gnav_item {
    padding-block: 1.5em;
    margin-inline: 0.5em;
  }
}

@media screen and (max-width: 768px) {
  .l_footer-gnav_accordion {
    display: grid;
    grid-template-rows: 0fr;
    transition: 250ms grid-template-rows ease;
    transition: all 0.5s;
  }

  [name="footer-menu"]:checked ~ .l_footer-gnav_accordion {
    grid-template-rows: 1fr;
  }
}

.l_footer-gnav_list {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style-type: none;

  a {
    color: #000000;
  }
}

@media screen and (max-width: 768px) {
  .l_footer-gnav_list {
    gap: 0;
    overflow: hidden;
  }
}

@media screen and (max-width: 768px) {
  .l_footer-gnav_item {
    border-top: 1px solid #0000004d;
    padding-right: 1em;
    background: no-repeat center right/1em url("../images/right.svg");
  }
}

.l_footer_ttl,
.l_footer-gnav_ttl {
  font-size: 14px;
  font-weight: 900;
}

.l_footer_link {
  grid-row: 1/3;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .l_footer_link {
    width: 80%;
    margin-inline: auto;
  }
}

.l_footer_sns,
.l_footer_appli {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.l_footer_appli .p_appli-btn_wrap {
  width: 80%;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .l_footer_appli .p_appli-btn_wrap {
    width: 100%;
  }
}

.l_footer-nav {
  grid-column: 1/3;
  display: flex;
  gap: min(1.8vw, 48px);
  align-items: center;
  justify-content: center;
  font-size: min(1vw, 14px);
}

.l_footer-nav a {
  color: #000;
}

@media screen and (max-width: 768px) {
  .l_footer-nav {
    display: flex;
    flex-direction: column;
    gap: 32px;
    font-size: 14px;
  }
}

.l_footer-nav_logo {
  height: 4em;
  display: block;

  img {
    height: 100%;
    width: auto;
  }
}

.p_copylight {
  background: #378a40;
  color: #fff;
  padding: 48px 1em;
  line-height: 1.2;
  text-align: center;
}
/* ///// 第二弾更新追加 /////////////////////////////////  */

.add-number {
  position: relative;
}
.add-number::before {
  content: "";
  background-image: url(../images/number.webp);
  width: 100px;
  height: 100px;
  position: absolute;
  background-size: 100% 100%;
  top: -8%;
  left: 0%;
}
@media screen and (max-width: 900px) {
  .add-number::before {
    content: "";
    background-image: url(../images/number.webp);
    width: 100px;
    height: 100px;
    position: absolute;
    background-size: 100% 100%;
    top: -8%;
    left: -3%;
  }
}
@media screen and (max-width: 768px) {
  .add-number::before {
    content: "";
    background-image: url(../images/number.webp);
    width: 75px;
    height: 75px;
    position: absolute;
    background-size: 100% 100%;
    top: -15%;
    left: -2%;
  }
}
@media screen and (max-width: 550px) {
  .add-number::before {
    content: "";
    background-image: url(../images/number.webp);
    width: 50px;
    height: 50px;
    position: absolute;
    background-size: 100% 100%;
    top: -55%;
    left: -2%;
  }
}

.add-date {
  position: relative;
}
.add-date::before {
  content: "";
  background-image: url(../images/date.webp);
  width: 100px;
  height: 100px;
  position: absolute;
  background-size: 100% 100%;
  top: -8%;
  left: -5%;
}
@media screen and (max-width: 768px) {
  .add-date::before {
    content: "";
    background-image: url(../images/date.webp);
    width: 70px;
    height: 70px;
    position: absolute;
    background-size: 100% 100%;
    top: -8%;
    left: -5%;
  }
}
.add-date-en {
  position: relative;
}
.add-date-en::before {
  content: "";
  background-image: url(../images/date-en.webp);
  width: 60px;
  height: 60px;
  position: absolute;
  background-size: 100% 100%;
  top: -6%;
  right: -4%;
}
@media screen and (max-width: 950px) {
  .add-date-en::before {
    content: "";
    background-image: url(../images/date-en.webp);
    width: 50px;
    height: 50px;
    position: absolute;
    background-size: 100% 100%;
    top: -4%;
    right: -7%;
  }
}
@media screen and (max-width: 768px) {
  .add-date-en::before {
    content: "";
    background-image: url(../images/date-en.webp);
    width: 70px;
    height: 70px;
    position: absolute;
    background-size: 100% 100%;
    top: -6%;
    right: -2%;
  }
}
.link-wrapper {
  transition: 0.2s ease;
  &::hover {
    opacity: 0.8;
  }
}
/* ///// goods 追加 /////////////////////////////////  */
.goods-card__list_sub {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media screen and (max-width: 769px) {
  .goods-card__list_sub {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.goods-card_sub {
  border: var(--goods-text) solid 1px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.goods-card__inner_sub {
  padding: max(5%, 16px);
}
.goods-item__sample_sub {
  display: grid;
  gap: 14px;
  align-items: center;
}

.goods-item__img_sub {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
}
.goods-item__img_no-ratio {
  width: 100%;
  display: block;
}

.goods-item__img_sub img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.goods-card__name_sub {
  text-align: center;
  font-weight: 800;
  font-size: clamp(14px, calc(14px + (28 - 14) * (100vw - 320px) / (1000 - 320)), 28px);
  color: var(--goods-text);
  padding-top: 1em;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.goods-card__price_sub {
  text-align: center;
  font-weight: 800;
  font-size: clamp(14px, calc(14px + (28 - 14) * (100vw - 320px) / (1000 - 320)), 28px);
  color: var(--goods-text);

  word-break: keep-all;
  overflow-wrap: break-word;
  border-top: 1px solid var(--content-ttl-bg);
}
/* ///// ユーティリティ追加 /////////////////////////////////  */
.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
  @media (max-width: 769px) {
    margin-top: 1rem;
  }
}
.mt-3 {
  margin-top: 3rem;
  @media (max-width: 769px) {
    margin-top: 1.5rem;
  }
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
  @media (max-width: 769px) {
    margin-bottom: 1rem;
  }
}
.mb-3 {
  margin-bottom: 3rem;
  @media (max-width: 769px) {
    margin-bottom: 1.5rem;
  }
}
.fwb.fwb {
  font-weight: 500;
}
