@charset "UTF-8";

/* 20250805 トップページ pickup */
.p-toppickup-products-wrap {
  padding: 50px 0;
}
.p-toppickup-products-wrap .p-topPickup__name {
  margin-bottom: 20px;
  text-align: center;
}
.pickup-products-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1080px;
  margin: 50px auto;
  gap: 40px;
}
.pickup-products-list li {
  width: calc(25% - 30px);
}
.pickup-products-list li img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}
@media (max-width: 480px) {
  .pickup-products-list {
    gap: 10px;
  }
  .pickup-products-list li {
    width: calc(50% - 15px);
  }
}

/* 20250805 taxonomy_cat オーダーの流れ */
.flow-content {
  background: #fff;
  margin-top: 50px;
}
.flow-content .p-kv__inner {
  width: 100%;
}
.flow-inner h2 {
  font-size: 20px;
  text-align: center;
}
.flow-list {
  margin: 50px 0;
}

.flow-list li {
  border: 1px solid #8FAADC;
  padding: 20px;
  position: relative;
  width: 80%;
  margin: 0 auto 30px;
  text-align: center;
}
.flow-list li::after {
  content: "▲";
  transform: rotate(90deg);
  position: absolute;
  right: 47%;
  bottom: -24px;
  transform: rotate(180deg);
}

.flow-list li:last-child:after {
  content: none;
}
.flow-content .p-kv__title h3 {
  font-size: var(--fs-lv5);
  color: var(--c-accent);
  letter-spacing: .1em;
  margin-top: .8em;
}
@media only screen and (min-width: 768px) {
  .flow-content {
    width: 960px;
    margin: 60px auto;
  }
  .flow-content .section h2 {
    font-size: 3.2rem;
    margin: 0 0 20px;
  }
  .flow-content div.section {
    text-align: center;
    line-height: 1.6;
    margin: 30px 0 60px;
    padding: 0 0 60px;
    border-bottom: 1px solid #ddd;
  }
  .flow-list {
    display: flex;
    justify-content: space-between;
  }
  .flow-list li {
    width: unset;
  }
  .flow-list li::after {
    transform: rotate(90deg);
    right: -24px;
    bottom: unset;
  }
}
@media only screen and (max-width: 767px) {
  .flow-content .section h2 {
    font-size: 2rem;
    text-align: center;
    margin: 20px 0;
  }
  .flow-content .section p {
    line-height: 1.6;
  }
}
.flow-content-btn a {
  display: block;
  width: 300px;
  margin: 30px auto;
  padding: 20px;
  border: solid 1px #000;
  text-align: center;
}

/* 20250805 taxonomy_cat 商品名 */
.has_product_name_txt {
  position: relative;
  margin-bottom: 30px;
}
.linkScale.has_product_name_txt {
  overflow: visible;
  margin-bottom: 65px;
}
.product_name_txt {
  position: absolute;
  bottom: -55px;
  height: 50px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 14px;
  font-family: "游明朝",YuMincho,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif;
}