/* ギフト券 追加バナー */
.gift-banner {
  font-family: "Noto Sans JP";
  display: flex;
  align-items: center;
  max-width: 320px;
  height: 79px;
  margin: 0 auto;
  background: var(--background-color-white);
  border: 2px solid var(--primary-pink);
  writing-mode: horizontal-tb;
  background: var(--background-color-white);
  box-shadow: 0px 4px 0px var(--primary-dark-pink);
  border-radius: 18px;
  padding: 16px;
  letter-spacing: normal;
  transition: all 0.2s ease;
  margin-top: 40px;
  margin-bottom: 20px;
}

.gift-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
}

.gift-left {
  width: 40px;
  height: 40px;
  background: #FAD9E9;
  border-radius: 1998px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
}

.gift-banner-icon {
  width: 18px;
  height: 18px;
}

.gift-right {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 2px;
  flex: 1;
}

.gift-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  line-height: 1;
}

.gift-banner-badge {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 3.2px 6.4px;
  gap: 2px;
  background: #E54190;
  border-radius: 9px;
  color: var(--text-color-white);
  font-size: 10px;
  font-weight: 800;
}

.gift-banner-text {
  font-size: 13.41px;
  font-weight: 900;
  color: #E54190;
}

.gift-banner-badge-num {
  font-size: 17.49px;
  font-weight: 900;
  padding-bottom: 3px;
}

.gift-banner-amount {
  font-weight: 900;
  font-size: 14px;
  color: var(--primary-pink);
}

.gift-banner-num {
  font-size: 29.14px;
  font-weight: 900;
  color: #E54190;
}

.gift-banner-pre {
  font-size: 13.6px;
  font-weight: 900;
  color: #2A2A2A;
}

@media screen and (max-width: 350px) {
  .gift-banner {
    padding: 5px;
  }
}