@charset "UTF-8";

.notice-banner {
  width: 100%;
  padding: var(--sp-spacing-24) var(--sp-spacing-16);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: var(--sp-spacing-32);
  background-color: var(--clr-bg-white)
}

@media (min-width: 961px) {
  .notice-banner {
    padding: var(--sp-spacing-10) var(--sp-spacing-24);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: var(--sp-spacing-6);
    background-color: var(--clr-bg-red)
  }
}

.notice-banner__head {
  font-size: 24px;
  line-height: 150%;
  font-weight: 400;
  font-weight: 600
}

@media (min-width: 961px) {
  .notice-banner__head {
    display: none
  }
}

.notice-banner__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: var(--sp-spacing-8)
}

@media (min-width: 961px) {
  .notice-banner__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: var(--sp-spacing-4)
  }
}

.notice-banner__text {
  display: grid;
  grid-template-columns: 24px auto;
  gap: var(--sp-spacing-2);
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  text-decoration: underline
}

@media (min-width: 961px) {
  .notice-banner__text {
    grid-template-columns: 16px auto;
    font-size: 12px;
    line-height: 150%;
    font-weight: 400;
    color: var(--clr-text-white)
  }
}

.notice-banner__text:before {
  content: "";
  width: 24px;
  aspect-ratio: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--clr-text-black);
  -webkit-mask: url(/html/template/default/assets/img/icon_report.svg) no-repeat center/contain;
  mask: url(/html/template/default/assets/img/icon_report.svg) no-repeat center/contain
}

@media (min-width: 961px) {
  .notice-banner__text:before {
    width: 16px;
    margin-top: 1px;
    background: var(--clr-text-white)
  }
}

.notice-banner__user-operation {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: var(--sp-spacing-32)
}

@media (min-width: 961px) {
  .notice-banner__user-operation {
    width: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: var(--sp-spacing-40)
  }
}

@media (min-width: 961px) {
  .notice-banner__user-operation .checkbox {
    min-height: auto;
    color: var(--clr-text-white)
  }
}

@media (min-width: 961px) {
  .notice-banner__user-operation .checkbox label {
    min-height: auto;
    padding: 0 0 0 22px;
    height: auto
  }
}

@media (min-width: 961px) {
  .notice-banner__user-operation .checkbox label:before {
    width: 14px;
    height: 14px;
    top: 2px;
    border: none;
    background: var(--clr-bg-white)
  }
}

@media (min-width: 961px) {
  .notice-banner__user-operation .checkbox label:after {
    width: 14px;
    height: 14px;
    top: 2px;
    background: var(--clr-bg-black)
  }
}

@media (min-width: 961px) {
  .notice-banner__user-operation .checkbox input:checked+label:before {
    border: none;
    background: var(--clr-bg-white)
  }
}

.notice-banner__close {
  width: 100%;
  max-width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer
}

@media (min-width: 961px) {
  .notice-banner__close {
    width: auto
  }
}

@media (min-width: 961px) {
  .notice-banner__close:before {
    content: "";
    width: 24px;
    height: 24px;
    background: var(--clr-bg-white);
    -webkit-mask: url(/html/template/default/assets/img/icon_close.svg) no-repeat center/contain;
    mask: url(/html/template/default/assets/img/icon_close.svg) no-repeat center/contain
  }
}

@media (min-width: 961px) {
  .notice-banner__close .button {
    display: none
  }
}
