/* キャンペーンのメッセージ */
.campaign-box {
  background-color: #ffffff;
  padding: 24px 16px;
  margin: 10px 0;
  border: 2px solid #ed6103;
  border-radius: 8px;
  position: relative;
  max-width: 740px;
}
.campaign-catch {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 6px 12px;
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  z-index: 1;
}
.catch-text {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ed6103;
  border-radius: 13px;
  font-size: 14px;
  line-height: 1;
  font-weight: bold;
  color: #fff;
  width: 136px;
  height: 26px;
}
.campaign-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 0 16px;
}
.campaign-text {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
.campaign-amount {
  margin-top: 12px;
  display: block;
  width: 283px;
  max-width: 100%;
}
.campaign-detail {
  border-top: 1px dashed #ed6103;
  padding: 16px 0 8px;
}
.campaign-list {
  width: fit-content;
  margin: auto;
  padding-left: 28px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
  list-style: none;
}
.campaign-list li {
  position: relative;
}
.campaign-list li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  left: -14px;
  top: 6px;
  background: #ffab00;
  border-radius: 50%;
}
.campaign-list li + li {
  margin-top: 4px;
}
.campaign-link {
  display: block;
  width: fit-content;
  margin: 8px auto 0;
  font-size: 12px;
  line-height: 14px;
  font-weight: bold;
  text-decoration-line: underline;
  color: #797979;
}
.campaign-gift-text {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  color: #ed6103;
  text-align: center;
  margin: 10px 0 0;
}

@media screen and (min-width: 769px) {
  .campaign-box {
    display: flex;
    padding: 40px 32px;
    margin: 80px auto 0;
    gap: 32px;
    width: 740px;
  }
  .campaign-catch {
    top: -25px;
  }
  .catch-text {
    width: 176px;
    height: 36px;
    border-radius: 18px;
    font-size: 16px;
  }
  .campaign-title {
    width: 50%;
    padding: 0;
  }
  .campaign-detail {
    width: 50%;
    border-top: none;
    border-left: 1px dashed #ed6103;
    padding: 0 0 0 32px;
  }
  .campaign-list li::before {
    left: -16px;
  }
  .campaign-link {
    margin: 8px auto 0;
  }
}

/* キャンペーンの注意事項 */
.section-title {
  font-size: 20px;
  line-height: 1.3;
  font-weight: bold;
  text-align: center;
}
.toggle-area {
  margin-top: 2px;
  text-align: right;
}
.toggle-button {
  font-size: 12px;
  line-height: 1.5;
  color: #ed6103;
  border: none;
  background: none;
  text-decoration-line: underline;
  cursor: pointer;
  outline: none;
}
.toggle-content {
  margin-top: 16px;
  display: none;
  font-size: 12px;
  line-height: 1.5;
  color: #1f1f1f;
}

.presentcampaign__box {
  border-radius: 4px;
  margin: 30px 0 0;
  padding: 30px 34px;
  background-color: #fff;
  border-radius: 4px;
}
.presentcampaign-detail {
  font-size: 12px;
  line-height: 1.5;
  color: #1f1f1f;
  padding: 8px 0;
}
.presentcampaign-list {
  list-style: disc;
  padding-left: 20px;
}
.presentcampaign-list a {
  color: inherit;
}

@media screen and (min-width: 769px) {
  .section-title {
    font-size: 30px;
    line-height: 1.4;
    scroll-margin-top: 80px;
  }
  .presentcampaign__box {
    margin: 30px 0 40px;
    padding: 40px 34px;
  }
  .presentcampaign-area {
    margin: 30px 20px 40px;
    padding: 30px 34px;
    background-color: #fff;
    border-radius: 4px;
  }
  .presentcampaign-list {
    padding-left: 28px;
  }
}

/* Campaign cards (007_A08) */
.campaign-cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 0 17.5px 16px;
}
.campaign-card {
  width: 124px;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  background: #fff;
}
.campaign-card--store {
  border: 1px solid #ed6103;
}
.campaign-card--online {
  border: 1px solid #d79000;
}
.campaign-card__header {
  padding: 4px 0;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
}
.campaign-card__header--store {
  background: #ed6103;
}
.campaign-card__header--online {
  background: #d79000;
}
.campaign-card__body {
  padding: 8px 0;
  color: #ed6103;
  font-weight: bold;
}
.campaign-card__body--online {
  color: #d79000;
}
.campaign-card__amount {
  font-size: 20px;
  line-height: 1.2;
}
.campaign-card__unit {
  font-size: 14px;
  line-height: 1.2;
}
.campaign-card__label {
  font-size: 14px;
  line-height: 1.2;
  margin: 0;
}
.campaign-card__label--store {
  color: #ed6103;
}
.campaign-card__label--online {
  color: #d79000;
}
.campaign-note {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  color: #1f1f1f;
  margin: 0;
}
@media screen and (min-width: 769px) {
  .campaign-note {
    font-size: 12px;
  }
}
