.banner-notification {
  padding-bottom: 0.3rem;
  margin-bottom: 5rem;
  background: #eb5551;
  color: #fff;
  cursor: pointer;
  padding: 0.3rem;
  border-radius: 0.5rem;
}
.banner-notification .banner-title {
  padding: 1rem 2rem 1.5rem;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .banner-notification .banner-title {
    padding: 1rem 1rem 1.5rem;
    padding-left: 0.5rem;
    padding-right: 3rem;
  }
}
.banner-notification .banner-title::before, .banner-notification .banner-title::after {
  content: "";
  position: absolute;
  right: 4%;
  top: 40%;
  display: inline-block;
  width: 0.3vw;
  height: 2vw;
  max-width: 0.3rem;
  max-height: 2rem;
  background-color: #fff;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .banner-notification .banner-title::before, .banner-notification .banner-title::after {
    width: 0.2rem;
    height: 1.2rem;
  }
}
.banner-notification .banner-title::before {
  transform: rotate(90deg);
}
.banner-notification .banner-title.active::after {
  transform: rotate(90deg);
}
.banner-notification .banner-title .title-large {
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .banner-notification .banner-title .title-large {
    font-size: 2rem;
  }
}
.banner-notification .banner-title .title-medium {
  font-size: 2.5rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .banner-notification .banner-title .title-medium {
    font-size: 1.5rem;
  }
}
.banner-notification .banner-content {
  color: #000;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background: #fff;
  padding: 3rem 2rem;
  display: none;
  border-radius: 0.3rem;
}
@media screen and (max-width: 767px) {
  .banner-notification .banner-content {
    padding: 1rem 1rem;
  }
}
.banner-notification .banner-content p {
  text-align: justify;
}
.banner-notification .banner-content p:not(:last-child) {
  margin-bottom: 0.75em;
}

@media screen and (max-width: 767px) {
  .page-content .group > label,
  .page-content .group .label {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .page-content .group > label,
  .page-content .group .label {
    width: 35rem;
  }
}
.page-content .group > label-group,
.page-content .group .label-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .page-content .group > label-group,
  .page-content .group .label-group {
    justify-content: end;
  }
}
@media screen and (min-width: 768px) {
  .page-content .group .form-item {
    width: auto;
    flex: 1;
  }
}
@media screen and (max-width: 767px) {
  .page-content .group .form-item__file .file-label {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .page-content .step-confirm .group > label,
  .page-content .step-confirm .group .label {
    width: 26rem;
  }
}

.checklist {
  margin-top: 0.6rem;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}