.notice {
  background-color: var(--color-brand--light-orange-2);
  border-radius: 24px;
  padding: 80px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.notice__med {
  content: '';
  display: block;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.notice__med.notice__med--1 {
  background: url('../../images/notice-item/med-1.png');
  top: -68px;
  left: -52px;
  width: 232px;
  height: 232px;
  scale: 0.7;
}
.notice__med.notice__med--2 {
  background: url('../../images/notice-item/med-2.png');
  bottom: -76px;
  right: -101px;
  width: 264px;
  height: 182px;
  scale: 0.7;
}
.notice__title,
.notice__subtitle {
  text-align: center;
  margin: 0;
}
.notice__title {
  line-height: 160%;
}
h2.notice__title strong::after {
  background-color: var(--color-neutral--white);
}
.notice__subtitle {
  color: var(--color-brand--dark-orange-2);
  line-height: 140%;
}
.notice__wrapper {
  border-radius: 16px;
  background-color: var(--color-neutral--white);
}

@media all and (min-width: 1000px){
  .notice {
    padding: 24px 109px 109px 109px;
  }
  .notice__med.notice__med--1 {
    background: url('../../images/notice-item/med-1.png');
    top: -42px;
    left: -20px;
    width: 232px;
    height: 232px;
    scale: 1;
  }
  .notice__med.notice__med--2 {
    background: url('../../images/notice-item/med-2.png');
    top: 141px;
    bottom: unset;
    right: -101px;
    width: 264px;
    height: 182px;
    scale: 1;
  }
}
