@charset "UTF-8";
.c-txt span {
  font-size: 0.875rem;
  background: rgb(219, 73, 117);
  color: var(--color-white);
  display: inline-block;
  line-height: 1;
  padding: 2px 5px 4px;
}
.c-txt a {
  text-decoration: underline;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-txt a:hover {
  text-decoration-color: transparent;
}

@media only screen and (max-width: 980px) {
  .p-form {
    margin-top: 32px;
  }
}
@media print, screen and (min-width: 981px) {
  .p-form {
    margin: 64px auto 0;
    width: 656px;
  }
}
.p-form h5 {
  margin: 0;
  position: relative;
}
.p-form h5.is-required {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.p-form h5.is-required::after {
  font-size: 0.875rem;
  background: rgb(219, 73, 117);
  color: var(--color-white);
  content: "必須";
  display: inline-block;
  line-height: 1;
  padding: 2px 5px 4px;
}
.p-form input[type=text] {
  font-size: 1rem;
  background: var(--color-bg_A);
  padding-inline: 8px;
  width: 100%;
}
@media only screen and (max-width: 980px) {
  .p-form input[type=text] {
    height: 32px;
  }
}
@media print, screen and (min-width: 981px) {
  .p-form input[type=text] {
    height: 48px;
  }
}
.p-form select {
  background: url("../img/icon-arrow.svg") no-repeat right 12px center/10px auto;
  border: 1px solid var(--color-bg_B);
  border-radius: 4px;
  height: 58px;
  padding-left: 8px;
  width: 280px;
}
.p-form textarea {
  font-size: 1rem;
  background: var(--color-bg_A);
  padding-inline: 8px;
  width: 100%;
}
@media only screen and (max-width: 980px) {
  .p-form textarea {
    height: 102px;
  }
}
@media print, screen and (min-width: 981px) {
  .p-form textarea {
    height: 132px;
  }
}

@media only screen and (max-width: 980px) {
  .p-form-block + .p-form-block {
    margin-top: 28px;
  }
}
@media print, screen and (min-width: 981px) {
  .p-form-block + .p-form-block {
    margin-top: 32px;
  }
}

.p-form-col2 {
  display: -ms-grid;
  display: grid;
}
@media only screen and (max-width: 980px) {
  .p-form-col2 {
    gap: 8px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media print, screen and (min-width: 981px) {
  .p-form-col2 {
    gap: 32px;
    -ms-grid-columns: 1fr 32px 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 980px) {
  .p-form-zip input {
    width: 164px;
  }
}
@media print, screen and (min-width: 981px) {
  .p-form-zip input {
    width: 178px;
  }
}

.p-form-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-form-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 980px) {
  .p-form-button {
    gap: 10px;
    max-width: 300px;
  }
}
@media print, screen and (min-width: 981px) {
  .p-form-button {
    gap: 20px;
    max-width: 400px;
  }
}
.p-form-button::before {
  background: var(--color-white);
  display: block;
  -webkit-mask-image: url("/_assets/img/icon-arrow02.svg");
          mask-image: url("/_assets/img/icon-arrow02.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 2;
}
@media only screen and (max-width: 980px) {
  .p-form-button::before {
    height: 12px;
    right: 14px;
    width: 8px;
  }
}
@media print, screen and (min-width: 981px) {
  .p-form-button::before {
    height: 12px;
    right: 20px;
    width: 8px;
  }
}
.p-form-button input {
  background: var(--color-primary);
  color: var(--color-white);
  display: -ms-grid;
  display: grid;
  place-content: center start;
  position: relative;
  text-align: left;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  width: 50%;
}
@media only screen and (max-width: 980px) {
  .p-form-button input {
    padding: 6px 32px 6px 14px;
  }
}
@media print, screen and (min-width: 981px) {
  .p-form-button input {
    padding: 18px 20px;
  }
}
@media print, screen and (min-width: 981px) {
  .p-form-button input:hover {
    opacity: 0.7;
  }
}