.popup-modal {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 2;
  font-weight: bold;
  height: 100%;
  left: 0;
  visibility: hidden;
}

.popup-modal .close {
  position: absolute;
  right: 2rem;
  top: 2rem;
  cursor: pointer;
}

.popup-modal .close img {
  width: 8rem;
}

.popup-modal.close {
  animation: itemFadeOut .5s;
}

.popup-modal.show {
  visibility: visible;
  animation: itemFadeIn .5s;
}

.popup-modal .box {
  width: 70rem;
  margin: 15.5rem auto 0;
  background: #fff;
  position: relative;
  padding: 3.2rem 4rem;
  border-radius: 2rem;
}

.popup-modal dt {
  color: #005BC4;
  font-size: 3.6rem;
  line-height: 1.55;
  text-align: center;
  margin-bottom: .4em;
}

.popup-modal dd {
  font-size: 2.6rem;
  letter-spacing: -.03em;
  line-height: 1.53;
}

#footer .action {
  display: flex;
  position: absolute;
  width: 100%;
  overflow: hidden;
  background: #fff;
  height: 37.4rem;
  z-index: -1;
  border-radius: 3rem 3rem 0 0;
  transition: translate .3s;
}

#footer .action.show {
  translate: 0 -100%;
}

#footer .action li {
  flex: 1;
  padding: 0 2.6rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

#footer .action .a {
  background: #FF4E00;
  text-align: center;
  gap: 5rem;
  padding: 0 4.8rem 2rem;
}

#footer .action .a p {
  color: #fff;
  font-size: 4.2rem;
  font-weight: bold;
  line-height: 1.33;
}

#footer .action .a a {
  background: #fff;
  text-align: center;
  border-radius: 3em;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#footer .action .a a img {
  width: 5rem;
}

#footer .action .b {
  font-weight: bold;
  font-size: 2.6rem;
}

#footer .action dl {
  margin: .8rem 0 2.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem 0;
}

#footer .action dt {
  width: 5em;
}

#footer .action dd {
  width: calc(100% - 5em);
}

#footer .action dd input {
  width: 100%;
  background: #C6E0FF;
  border-radius: .2rem;
  border: none;
  padding: .2em .3em;
}

#footer .action input[type="submit"] {
  -webkit-appearance: none;
  background: #FE7007;
  border: none;
  border-radius: 3em;
  height: 7rem;
  width: 100%;
  font-size: 2.6rem;
  font-weight: bold;
  color: #fff;
}

#footer .date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.4rem;
}

#footer .date select {
  -webkit-appearance: none;
  background: #C6E0FF url(../img/select-arrow.svg) no-repeat calc(100% - .6rem) center/2.2rem;
  border: none;
  padding: .5em .5em;
  width: 2.5em;
}

#footer .head {
  color: #FE7007;
  font-size: 2.8rem;
  line-height: 1.28;
  text-align: center;
}

@keyframes itemFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes itemFadeOut {
  from {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
  }
}

/*# sourceMappingURL=add.css.map */