.cart-shopify {
  position: relative;
  max-width: 350px !important;
  height: 60px;
  margin: 28px auto 0;
  border-radius: 60px;
  overflow: hidden;
}

.cart-shopify::after {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 50px;
  height: 50px;
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 0) 0%);
  pointer-events: none;
}

.cart-shopify:hover::after {
  animation-name: shiny;
  animation-duration: 0.6s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes shiny {
  0% {
    transform: scale(0) rotate(25deg);
    opacity: 0;
  }

  20% {
    transform: scale(1) rotate(25deg);
    opacity: 1;
  }

  100% {
    transform: scale(50) rotate(25deg);
    opacity: 0;
  }
}

/* --- 2024.03.07 追加 --- */
.cause-note,
.cause-btn {
  display: none;
}

@media screen and (min-width: 1300px) {
  .cause-bg img {
    width: 100%;
    height: auto;
  }
}

@media screen and (min-width: 1024px) {
  .info-block {
    gap: 0 12%;
  }
}

@media screen and (min-width: 768px) {
  .info-text {
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    line-height: 2;
  }
}

/* LINEボタン */
.js-sticky .line {
  opacity: 1;
  bottom: 2.5rem;
  pointer-events: auto;
}
.line {
  opacity: 0;
  position: fixed;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  bottom: 0rem;
  right: 50%;
  width: 90%;
  padding: 1.5rem 4% 1.4rem;
  border-radius: 10rem;
  background-size: 200% 100%;
  background-position: 100% 0;
  background-image: linear-gradient(to right, #bf4ea5, #a6193f, #bf4ea5);
  box-shadow: 0rem 0rem 3rem rgb(43 43 43 / 40%);
  transform: translateX(50%);
  transition: 0.3s ease-in-out;
  transition-property: opacity, bottom, background-position;
  pointer-events: none;
  overflow: hidden;
  z-index: 20;
}
.line::before {
  content: "";
  display: inline-block;
  background: url(./images/line_icon.svg) no-repeat;
  background-size: 100% auto;
  width: 3rem;
  height: 2.9rem;
  margin-right: 4%;
}
.line::after {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 50px;
  height: 50px;
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgb(255, 255, 255) 100%, rgba(255, 255, 255, 0) 0%);
}

.line:hover {
  background-position: 0% 0;
}
.line:hover::after {
  animation-name: shiny;
  animation-duration: 0.6s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.line-text {
  display: block;
  font-size: 1.15rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #fff;
  white-space: nowrap;
}

.line-text-sm {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.footer {
  padding: 1.2rem 0 13.6rem;
}

@media screen and (min-width: 768px) {
  .line {
    right: 2rem;
    width: auto;
    padding: 2rem 3.5rem 1.8rem 3rem;
    transform: none;
  }
  .line::before {
    width: 3.5rem;
    height: 3.4rem;
    margin-right: 2rem;
  }
  .line-text {
    font-size: 1.4rem;
  }
  .line-text-sm {
    font-size: 1.6rem;
  }
  .footer {
    padding: 3rem 0 13.6rem;
  }
}
@media screen and (min-width: 1280px) {
  .footer {
    padding: 3rem 0 2.6rem;
  }
}

.product-price-red {
  color: #ff7687;
}

.beautiful-subItem-sm {
  font-size: 0.85em;
}

/* --- 2024.05.31 追加 --- */
.voice-note {
  max-width: 111.8rem;
  margin: 0 auto;
  margin-top: 2rem;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .voice-note {
    text-align: right;
    margin-top: 6rem;
    margin-bottom: -6rem;
  }
}
