@charset "UTF-8";
/* ============================================================================================== */
/* Module / Form                                                                                  */
/* ============================================================================================== */
/* ----------------------------------------------- */
/* form layout */
/* ------------------------------- */
.inputItemBlock {
  margin-top: 30px;
}
.inputItemBlock:first-of-type {
  margin-top: 60px;
}

@media screen and (width >= 768px) {
  .inputItemBlock {
    margin-top: 35px;
  }
  .inputItemBlock:first-of-type {
    margin-top: 110px;
  }
}
/* ------------------------------- */
.input-lbl {
  display: inline-flex;
  align-items: center;
  padding-bottom: 15px;
  font-family: var(--font-db);
  font-size: 0.875rem;
  font-weight: 600;
  font-feature-settings: "palt";
  letter-spacing: var(--ls-narrow);
}
.input-lbl::before {
  padding: 3px 10px;
  margin-right: 8px;
  font-size: 12px;
  color: #fff;
  text-indent: 0;
  content: "任意";
  background-color: var(--color-txt-weak);
  border-radius: 100vh;
}
.input-lbl.-no-lbl::before {
  content: none;
}
.required .input-lbl::before {
  padding: 3px 10px;
  margin-right: 8px;
  font-size: 12px;
  color: #fff;
  text-indent: 0;
  content: "必須";
  background-color: var(--color-primary-mid);
  border-radius: 100vh;
}

@media screen and (width >= 768px) {
  .input-lbl {
    padding: 15px 0;
  }
}
/* ------------------------------- */
.input-elm {
  margin-left: 2px;
}

.input-elm > *:first-child {
  margin-top: 0;
}

.input-elm .error-message {
  display: block;
  padding: 0.75em 0 0;
}

.input-elm .footnote {
  margin-top: 15px;
}

.input-text {
  display: block;
  padding-bottom: 15px;
}

.input-grp {
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: center;
  margin-left: 0;
}
.input-grp > * {
  margin: 0;
}
.input-grp + .footnote {
  margin-top: 15px;
}

/* ------------------------------- */
.controlBlock {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 10px 0;
}

.controlBlock__item {
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}
.controlBlock__item::before {
  content: none;
}

/* ------------------------------- */
.input-note {
  margin: 10px 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--color-txt-weak);
}
.input-note:first-child {
  padding-top: 7px;
  margin-top: 0;
}
.input-note:last-child {
  margin-bottom: 0;
}

@media screen and (width >= 1280px) {
  .input-note {
    font-size: 1.2rem;
  }
}
/* ------------------------------- */
.mp-input.-w10p {
  width: 10%;
}
.mp-input.-w20p {
  width: 20%;
}
.mp-input.-w30p {
  width: 30%;
}
.mp-input.-w40p {
  width: 40%;
}
.mp-input.-w50p {
  width: 50%;
}
.mp-input.-w60p {
  width: 60%;
}
.mp-input.-w70p {
  width: 70%;
}
.mp-input.-w80p {
  width: 80%;
}
.mp-input.-w90p {
  width: 90%;
}
.mp-input.-w100p {
  width: 100%;
}

/* ------------------------------- */
.mp-textarea {
  min-height: 10em;
}

/* ------------------------------- */
.input-definition {
  position: relative;
  margin: 0;
}
.input-definition > div {
  position: relative;
}
.input-definition dt {
  position: absolute;
  top: -0.7em;
  left: 5px;
  z-index: 2;
  display: inline-block;
  padding: 0 5px;
  margin: 0;
  font-size: 1.2rem;
  line-height: 1;
  pointer-events: none;
  background-color: white;
  transition: 0.2s ease;
}
.input-definition label {
  pointer-events: auto;
}
.input-definition dd {
  margin-left: 0;
}

.input-definition .input--select-wrap:hover::after {
  color: black;
}

.input-definition .input--select-wrap:hover:disabled::after {
  color: rgba(0, 0, 0, 0.3);
}

/* ------------------------------- */
.mp-form-footer {
  display: flex;
  justify-content: flex-start;
}
.mp-form-footer .paging {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.mp-form-footer .paging__item {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}
.mp-form-footer .paging__item::before {
  content: none;
}

/* ---------------------------------------------------------------------- */
/* confirm */
/* ---------------------------------------------------------------------- */
.mp-confirm-table {
  width: 100%;
  border-top: 0;
  border-bottom: 0;
}
.mp-confirm-table tr {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  align-items: flex-start;
}
.mp-confirm-table th {
  width: 100%;
  padding: 30px 0 0;
  font-family: var(--font-db);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #aaa;
  letter-spacing: var(--ls-narrow);
}
@media screen and (width >= 768px) {
  .mp-confirm-table th {
    font-size: 0.875rem;
  }
}
.mp-confirm-table td {
  width: 100%;
  padding: 0 0 30px;
  margin-inline: 0;
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  letter-spacing: var(--ls-narrow);
  border-top: 0;
}
@media screen and (width >= 768px) {
  .mp-confirm-table td {
    font-size: 1.125rem;
  }
}

.mp-status-preview {
  padding: 20px 0;
  margin-bottom: 40px;
}
.mp-status-preview .mp-confirm-table {
  font-weight: normal;
}
.mp-status-preview .mp-confirm-table th {
  width: 150px;
  font-size: 1.3rem;
  font-weight: normal;
  color: #555;
}
.mp-status-preview .mp-confirm-table td {
  font-size: 1.3rem;
  font-weight: 300;
  color: #555;
}
.mp-status-preview .mp-confirm-table .txt {
  display: block;
  margin-bottom: 0.5em;
}
.mp-status-preview .mp-confirm-table .btn {
  position: absolute;
  top: 10px;
  right: 0;
}

.confirm-table-wrapper {
  margin-top: 110px;
}