.closing-modal {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  overscroll-behavior: none;
  scrollbar-width: none;
  background-color: transparent;
  border: none;
  opacity: 0;
  transition: opacity 0.35s ease-out;
}

.closing-modal.is-open {
  opacity: 1;
}

.closing-modal::-webkit-scrollbar {
  display: none;
}

.closing-modal::backdrop {
  background-color: rgb(0 0 0 / 0%);
  transition: background-color 0.35s ease-out;
}

.closing-modal.is-open::backdrop {
  background-color: rgb(0 0 0 / 40%);
}

.closing-modal__bg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 45px 14px;
}

.closing-modal__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: fit-content;
  margin: auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 12px 0 #00000040;
  width: 900px;
  padding: 50px 50px 48px;
  gap: 29px;
}

.closing-modal__close {
  position: absolute;
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
  line-height: 1;
  outline: none;
  top: 30px;
  right: 30px;
  width: 54px;
  height: 34px;
}

.closing-modal__close::after,
.closing-modal__close::before {
  background: #000;
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-32deg);
  transform-origin: center;
  height: 4px;
  width: 62px;
}

.closing-modal__close::before {
  transform: translate(-50%, -50%) rotate(32deg);
}

.closing-modal__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.closing-modal__header-img {
  height: auto;
  width: 100%;
  max-width: 626px;
}

.closing-modal__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.closing-modal__intro-text {
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 18px;
  line-height: 30px;
}

.closing-modal__sp-only {
  display: none;
}

.closing-modal__pc-only {
  display: inline;
}

.closing-modal__section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  gap: 18px;
}

.closing-modal__section-label {
  display: inline-flex;
  align-items: center;
  background: #000;
  color: #f9de62;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  gap: 3px;
  padding: 5px 5px 6px;
}

.closing-modal__section-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.closing-modal__section-text {
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
}

.closing-modal__date {
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 30px;
  line-height: 36px;
}

.closing-modal__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.closing-modal__footer-text {
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 18px;
  line-height: 30px;
}

@media (max-width: 749px) {
  .closing-modal__bg {
    padding: calc(45 / 750 * 100vw) calc(14 / 750 * 100vw);
  }

  .closing-modal__content {
    width: calc(100% - calc(30 / 750 * 100vw));
    padding: calc(38 / 750 * 100vw);
    gap: calc(29 / 750 * 100vw);
    border-radius: calc(25 / 750 * 100vw);
  }

  .closing-modal__close {
    top: calc(19 / 750 * 100vw);
    right: calc(19 / 750 * 100vw);
    width: calc(67 / 750 * 100vw);
    height: calc(44 / 750 * 100vw);
  }

  .closing-modal__close::after,
  .closing-modal__close::before {
    height: calc(5 / 750 * 100vw);
    width: calc(75 / 750 * 100vw);
  }

  .closing-modal__header {
    gap: calc(30 / 750 * 100vw);
  }

  .closing-modal__header-img {
    max-width: calc(588 / 750 * 100vw);
  }

  .closing-modal__intro-text {
    font-size: calc(23 / 750 * 100vw);
    line-height: calc(40 / 750 * 100vw);
  }

  .closing-modal__sp-only {
    display: inline;
  }

  .closing-modal__pc-only {
    display: none;
  }

  .closing-modal__section {
    gap: calc(18 / 750 * 100vw);
  }

  .closing-modal__section-label {
    font-size: calc(20 / 750 * 100vw);
    line-height: calc(21 / 750 * 100vw);
    gap: calc(3 / 750 * 100vw);
    padding: calc(5 / 750 * 100vw) calc(5 / 750 * 100vw) calc(6 / 750 * 100vw) calc(5 / 750 * 100vw);
  }

  .closing-modal__section-text {
    font-size: calc(18 / 750 * 100vw);
    line-height: calc(32 / 750 * 100vw);
  }

  .closing-modal__date {
    font-size: calc(36 / 750 * 100vw);
    line-height: calc(40 / 750 * 100vw);
  }

  .closing-modal__footer-text {
    font-size: calc(20 / 750 * 100vw);
    line-height: calc(34 / 750 * 100vw);
  }
}
