@charset "UTF-8";
/* p-entry_form
--------------------------------*/
.p-entry_form {
  padding-bottom: 14rem;
}
.p-entry_form .form-wrap .form-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 1.7rem;
}
@media screen and (max-width: 767px) {
  .p-entry_form .form-wrap .form-item {
    flex-wrap: wrap;
  }
}
.p-entry_form .form-wrap .form-item + .form-item {
  margin-top: 4rem;
}
.p-entry_form .form-wrap .form-item-label {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 1.7rem;
}
@media screen and (min-width: 768px) {
  .p-entry_form .form-wrap .form-item-label {
    justify-content: space-between;
    max-width: 18.5rem;
    margin-right: 7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-entry_form .form-wrap .form-item-label {
    max-width: inherit;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
}
.p-entry_form .form-wrap .form-item-label-title {
  min-width: 13.3rem;
}
.p-entry_form .form-wrap .form-item-label-required {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: #870f0f;
  border-radius: 6px;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .p-entry_form .form-wrap .form-item-label.is-radio {
    margin-bottom: 2rem;
  }
}
.p-entry_form .form-wrap .form-item input,
.p-entry_form .form-wrap .form-item textarea,
.p-entry_form .form-wrap .form-item select {
  padding: 1.25rem 2rem;
  font-size: 1.7rem;
  border: 1px solid #898989;
  border-radius: 6px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.p-entry_form .form-wrap .form-item input::placeholder,
.p-entry_form .form-wrap .form-item textarea::placeholder,
.p-entry_form .form-wrap .form-item select::placeholder {
  color: #bebebe;
}
.p-entry_form .form-wrap .form-item input[type=radio],
.p-entry_form .form-wrap .form-item textarea[type=radio],
.p-entry_form .form-wrap .form-item select[type=radio] {
  position: relative;
  border: none;
  padding: 0;
}
.p-entry_form .form-wrap .form-item input[type=radio] + label,
.p-entry_form .form-wrap .form-item textarea[type=radio] + label,
.p-entry_form .form-wrap .form-item select[type=radio] + label {
  position: relative;
  padding-left: 5rem;
  cursor: pointer;
  color: #121212;
  font-size: 1.7rem;
  line-height: 2.5rem;
}
.p-entry_form .form-wrap .form-item input[type=radio] + label:before, .p-entry_form .form-wrap .form-item input[type=radio] + label:after,
.p-entry_form .form-wrap .form-item textarea[type=radio] + label:before,
.p-entry_form .form-wrap .form-item textarea[type=radio] + label:after,
.p-entry_form .form-wrap .form-item select[type=radio] + label:before,
.p-entry_form .form-wrap .form-item select[type=radio] + label:after {
  content: "";
  position: absolute;
  display: block;
}
.p-entry_form .form-wrap .form-item input[type=radio] + label:before,
.p-entry_form .form-wrap .form-item textarea[type=radio] + label:before,
.p-entry_form .form-wrap .form-item select[type=radio] + label:before {
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #898989;
}
.p-entry_form .form-wrap .form-item input[type=radio] + label:after,
.p-entry_form .form-wrap .form-item textarea[type=radio] + label:after,
.p-entry_form .form-wrap .form-item select[type=radio] + label:after {
  width: 14px;
  height: 14px;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #e8e8e8;
}
.p-entry_form .form-wrap .form-item input[type=radio] + label + input,
.p-entry_form .form-wrap .form-item textarea[type=radio] + label + input,
.p-entry_form .form-wrap .form-item select[type=radio] + label + input {
  padding-left: 5.5rem;
}
.p-entry_form .form-wrap .form-item input[type=radio]:checked + label:before,
.p-entry_form .form-wrap .form-item textarea[type=radio]:checked + label:before,
.p-entry_form .form-wrap .form-item select[type=radio]:checked + label:before {
  background: #870f0f;
}
.p-entry_form .form-wrap .form-item input[type=radio]:checked + label:after,
.p-entry_form .form-wrap .form-item textarea[type=radio]:checked + label:after,
.p-entry_form .form-wrap .form-item select[type=radio]:checked + label:after {
  background: #FFFFFF;
}
.p-entry_form .form-wrap .form-item p.error {
  width: 100%;
  margin-top: 0.5rem;
  color: #870f0f;
}
@media screen and (min-width: 768px) {
  .p-entry_form .form-wrap .form-item input,
  .p-entry_form .form-wrap .form-item textarea {
    max-width: calc(100% - 25.5rem);
  }
  .p-entry_form .form-wrap .form-item p.error {
    padding-left: 25.5rem;
  }
}
.p-entry_form .form-wrap .form-item-input {
  width: 100%;
  height: 3.5em;
}
.p-entry_form .form-wrap .form-item-select {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-entry_form .form-wrap .form-item-select {
    max-width: 47rem;
  }
}
.p-entry_form .form-wrap .form-item-select select {
  background: transparent;
  width: 100%;
  height: 3.5em;
  color: #1e1e1e;
}
.p-entry_form .form-wrap .form-item-select::before {
  content: "▼";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 2.5rem;
  font-size: 1.2rem;
  margin-top: -0.5rem;
}
.p-entry_form .form-wrap .form-item-select p.error {
  padding-left: 0;
}
.p-entry_form .form-wrap .form-item-date {
  position: relative;
  background: transparent;
  width: 100%;
  height: 3.5em;
  padding: 1rem;
  letter-spacing: 1px;
}
.p-entry_form .form-wrap .form-item-textarea {
  padding: 1rem;
  width: 100%;
  height: 16em;
}
@media screen and (max-width: 767px) {
  .p-entry_form .form-wrap .form-item-textarea {
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
.p-entry_form .form-wrap .form-item.is-check {
  display: block;
  background: #f7f6f3;
  margin-top: 7rem;
  padding: 4rem;
}
.p-entry_form .form-wrap .form-item.is-check input[type=checkbox] {
  opacity: 0;
  appearance: auto;
}
.p-entry_form .form-wrap .form-item.is-check input[type=checkbox]:checked + label::after {
  opacity: 1;
}
.p-entry_form .form-wrap .form-item.is-check label {
  position: relative;
  padding-left: 3em;
  font-size: 1.7rem;
  line-height: 3.2rem;
}
.p-entry_form .form-wrap .form-item.is-check label::before {
  background: #fff;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 5px;
  width: 3.2rem;
  height: 3.2rem;
  margin-top: -1.5rem;
  border: 1px solid #898989;
  border-radius: 4px;
}
.p-entry_form .form-wrap .form-item.is-check label::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 13px;
  height: 19px;
  margin-top: -11px;
  transform: rotate(45deg);
  opacity: 0;
  border-right: 3px solid #870f0f;
  border-bottom: 3px solid #870f0f;
}
@media screen and (min-width: 768px) {
  .p-entry_form .form-wrap .form-item.is-check label::after {
    left: 14px;
  }
}
@media screen and (max-width: 767px) {
  .p-entry_form .form-wrap .form-item.is-check label::after {
    left: 12px;
  }
}
.p-entry_form .form-wrap .form-item.is-check a {
  display: inline-block;
  margin-top: 1rem;
  color: #009ac0;
  font-size: 1.5rem;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .p-entry_form .form-wrap .form-item.is-check a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .p-entry_form .form-wrap .form-item.is-check a:hover {
    opacity: 0.7;
  }
}
.p-entry_form .form-wrap .form-item.is-check p.error {
  padding-left: 0;
  text-align: center;
}
.p-entry_form .form-wrap .form-item-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6rem;
}
.p-entry_form .form-wrap .form-item-button button + button {
  margin-left: 4.5rem;
}
.p-entry_form .form-wrap .form-item-button_send, .p-entry_form .form-wrap .form-item-button_submit, .p-entry_form .form-wrap .form-item-button_back {
  position: relative;
  background: #1e1e1e;
  width: 38rem;
  min-height: 8rem;
  padding: 1rem 5rem 1rem 2rem;
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-entry_form .form-wrap .form-item-button_send, .p-entry_form .form-wrap .form-item-button_submit, .p-entry_form .form-wrap .form-item-button_back {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .p-entry_form .form-wrap .form-item-button_send:hover, .p-entry_form .form-wrap .form-item-button_submit:hover, .p-entry_form .form-wrap .form-item-button_back:hover {
    opacity: 0.7;
  }
}
.p-entry_form .form-wrap .form-item-button_send::before, .p-entry_form .form-wrap .form-item-button_submit::before, .p-entry_form .form-wrap .form-item-button_back::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 4rem;
  width: 3.5rem;
  height: 2.6rem;
  background: url("../img/common/icon_button_white.svg") no-repeat center center/contain;
}
.p-entry_form .form-wrap .form-item-button_send {
  background: #8e7b50;
}
@media screen and (max-width: 767px) {
  .p-entry_form .form-wrap .form-item-button_send {
    padding: 1rem 2rem;
  }
}
.p-entry_form .form-wrap .form-item-button_back {
  padding: 1rem 2rem 1rem 5rem;
  text-align: center;
}
.p-entry_form .form-wrap .form-item-button_back::before {
  transform: translateY(-50%) scale(-1, 1);
  left: 4rem;
  background: url("../img/common/icon_button_white.svg") no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-entry_form .form-wrap .form-item-button_back {
    padding: 1rem 2rem;
  }
}
.p-entry_form.is-confirm .form-wrap .form-item {
  align-items: flex-start;
  flex-wrap: inherit;
}
@media screen and (max-width: 767px) {
  .p-entry_form.is-confirm .form-wrap .form-item-label {
    width: 50%;
    margin-bottom: 0;
  }
}
.p-entry_form.is-confirm .form-wrap .form-item-text {
  width: 50%;
  font-size: 1.7rem;
  word-break: break-all;
}
.p-entry_form.is-confirm .form-wrap .form-item-button button {
  width: 33rem;
}
@media screen and (max-width: 767px) {
  .p-entry_form.is-confirm .form-wrap .form-item-button {
    flex-wrap: wrap;
  }
  .p-entry_form.is-confirm .form-wrap .form-item-button button {
    width: 100%;
  }
  .p-entry_form.is-confirm .form-wrap .form-item-button button + button {
    margin-top: 2rem;
    margin-left: 0;
  }
}
.p-entry_form.is-thanks p {
  font-size: 1.8rem;
  line-height: 4.8rem;
}
@media screen and (min-width: 768px) {
  .p-entry_form.is-thanks p {
    text-align: center;
  }
}
.p-entry_form.is-thanks p + p {
  margin-top: 7.5rem;
}
