@charset "UTF-8";

.form-email-address {
  margin: 0 auto;
  text-align: left;
  width: 620px;
}

.form-email-address .email-confirm {
  color: #005ead;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  margin: 20px 0;
  word-break: break-all;
}

.form-email-address .email-confirm:empty {
  display: none;
}

/* 送信ボタン */
.wrap-btn-send {
  display: inline-block;
  height: 80px;
  width: 100%;
  margin: 30px 0 0;
  text-align: center;
}

button.btn-send {
  background: linear-gradient(#fd8331, #f60);
  box-shadow: 3px 3px 5px #c3c3c3;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  transition: background-color .3s, box-shadow .3s, margin .3s;
  width: 280px;
  height: 56px;
}

button.btn-send::after {
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  content: '';
  position: absolute;
  top: 47%;
  right: 15px;
  height: 12px;
  width: 12px;
  transform: translate(0, -50%) rotate(45deg);
}

button.btn-send.is-disabled {
  background: #aaa;
  box-shadow: 0 4px 0 #999;
  cursor: default;
  pointer-events: none
}

button.btn-send:not(.is-disabled):hover {
  border-radius: 6px;
  box-shadow: 3px 3px 5px #a9a9a9;
  margin-top: 4px;
}

/* 再送信完了ページ */
.p-main-area__description {
  text-align: left;
}

.p-main-area .outlined-link {
  margin-top: 40px;
}