@charset "UTF-8";
.form-table {
  width: 600px;
  margin-inline: auto;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.form-table .unit {
  transition: all 250ms ease 0s;
}

.form-table .label {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 18px;
  transition: inherit;
}

.form-table .label small {
  font-size: 14px;
  font-weight: normal;
  color: var(--red);
}

.form-table .unit .label::before {
  content: "任意";
  font-size: 12px;
  color: white;
  line-height: 1;
  padding: 3px 5px;
  background: #555555;
  font-weight: normal;
}

.form-table .unit:has([required]) .label::before {
  content: "必須";
  font-size: 12px;
  background: var(--red);
}

.form-table .unit .label[nolabel]::before {
  display: none;
}

.form-table .unit:focus-within .label {
  color: var(--blue);
}

.form-table .value {
  border-bottom: 1px solid #ccc;
  transition: inherit;
}

.form-table .value:focus-within {
  border-bottom: 1px solid var(--blue);
}

.form-table .value[address] {
  gap: 0.5em 0.25em;
  padding-block: 5px 0;
  display: grid;
  align-items: center;
  grid-template-areas: "before postalcode postalcode" "pref pref address";
  grid-template-columns: 1em auto 1fr;
  grid-template-rows: auto auto;
}

.form-table .value[address]::before {
  grid-area: before;
  content: "〒";
  font-size: 14px;
}

.form-table .value[address] [name=postalcode] {
  grid-area: postalcode;
  width: 120px;
}

.form-table .value[address] [name=pref] {
  grid-area: pref;
  width: auto;
}

.form-table .value[address] [name=address] {
  grid-area: address;
}

.form-table .value[direct] {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-table .value[direct] button {
  font-size: 13px;
  flex-shrink: 0;
  line-height: 1;
  border-radius: calc(infinity * 1px);
  color: white;
  padding-block: 0.4em;
  padding-inline: 0.75em;
  background: var(--blue);
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-table .value[direct] button::before {
  content: "";
  aspect-ratio: 1/1;
  width: 16px;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  mask-image: url("../../img/common/icon/reload.svg");
  background-color: currentColor;
}

.form-table .value[between] {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-table .value[between] :where(.from, .to) {
  display: flex;
  align-items: center;
  gap: inherit;
  position: relative;
}

.form-table .value[between] :where(.from, .to)::before {
  flex-shrink: 0;
  font-weight: bold;
  font-size: 13px;
}

.form-table .value[between] .from::after {
  content: "～";
}

.form-table .u-cancel {
  font-size: 11px;
  flex-shrink: 0;
  position: absolute;
  z-index: 20;
  aspect-ratio: 1/1;
  width: 20px;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  mask-image: url("../../img/common/icon/close.svg");
  background-color: #a1a1a1;
  border-radius: calc(infinity * 1px);
  top: 50%;
  translate: 0 -50%;
  left: 290px;
  transition: all 250ms ease 0s;
}

.form-table .u-cancel:hover {
  background-color: var(--red);
}

.form-table .value[singlefile] {
  display: flex;
  gap: 10px;
  align-items: center;
}
.form-table .value[singlefile] button {
  flex-shrink: 0;
  font-size: 13px;
  background: #ddd;
  border-radius: calc(infinity * 1px);
  line-height: 1;
  padding-block: 0.4em;
  padding-inline: 0.75em;
}

.form-table :where(input, textarea, select):not([type=checkbox], [type=radio]) {
  width: 100%;
  font-size: 16px;
  font-family: inherit;
  border-radius: 0;
  padding: 10px 0;
  line-height: 1.5;
  padding-inline: 10px;
  border: 1px solid transparent;
  transition: background 250ms ease 0s, border-color 250ms ease 0s;
}

.form-table .unit select:focus {
  outline: none;
}

.form-table .unit:hover :where(input, textarea, select):not([type=checkbox], [type=radio]),
.form-table :where(input, textarea, select):not([type=checkbox], [type=radio]):focus {
  background: #f7f7f7;
}

.form-table :where(input, textarea, select)[invalid] {
  border: 1px solid var(--red);
}

.form-table :where(input, textarea, select):not([type=checkbox], [type=radio]):user-invalid {
  border: 1px solid var(--red);
}

.form-table textarea[middle] {
  min-height: 5lh;
}

.form-table textarea[wide] {
  min-height: 350px;
}

.form-table input[type=file] {
  font-size: 14px;
}

.form-button {
  margin-top: 60px;
}

.form-button button {
  width: 80%;
}

.form-table .reset-password {
  padding-bottom: 14px;
}

.form-table .reset-password-unit {
  width: 91%;
  margin-inline: auto;
  padding-block: 5px 0;
  padding-inline: 0;
  border-bottom: 1px solid #eee;
}

.form-table .reset-password-unit + .reset-password-unit {
  margin-top: 12px;
}

.form-table small {
  font-size: 12px;
  color: var(--grey);
}

.form-table .textdisable {
  background: #f3f3f3;
  padding: 0.5em 1.5em;
  color: #939393;
  user-select: none;
}

.header .unit {
  display: none;
  pointer-events: none;
}

main {
  padding-bottom: 120px;
}

main .article[data-id="1"]:not([deco]) {
  padding-block: 60px 120px;
  overflow: hidden;
}

main .article[data-id="1"] .picture {
  text-align: center;
  display: block;
  width: 320px;
  margin-inline: auto;
}

main .article[data-id="1"] h1 {
  font-weight: bold;
  margin-top: 32px;
  text-align: center;
  font-size: 24px;
  line-height: 1.4;
}

main .article[data-id="1"] h1 span {
  display: block;
}

main .article[data-id="1"] h1::after {
  color: #aaa;
  font-size: 12px;
  font-weight: normal;
}

main .article[data-id="1"] .form-wrapper {
  width: 600px;
  margin-inline: auto;
  margin-top: 60px;
}

main .article[data-id="1"] .form-wrapper .unit + .unit {
  margin-top: 32px;
}

main .article[data-id="1"] .form-wrapper .unit .g-recaptcha {
  margin-inline: auto;
  text-align: center;
  width: max-content;
}

main .article[data-id="1"] .form-wrapper label {
  font-weight: bold;
}

main .article[data-id="1"] .form-wrapper input[type=email] {
  width: 100%;
  display: block;
  border-radius: 5px;
  background: #efefef;
  padding: 10px 25px;
  margin-top: 5px;
  border: 1px solid #efefef;
}

main .article[data-id="1"] .form-wrapper input[type=email]:user-invalid {
  border: 1px solid var(--red);
}

main .article[data-id="1"] .form-wrapper label[for=agree] {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  font-weight: normal;
  gap: 8px;
}

main .article[data-id="1"] .form-wrapper label[for=agree] a {
  text-decoration: underline;
  color: var(--blue);
}

main .article[data-id="1"] .form-wrapper label[for=agree] input[type=checkbox] {
  width: 18px;
  aspect-ratio: 1/1;
  cursor: pointer;
  accent-color: var(--blue);
}

main .article[data-id="1"] .form-wrapper .button {
  margin-top: 48px;
}

main .article[data-id="1"] .form-wrapper .button button {
  position: relative;
  width: 490px;
  margin-inline: auto;
  display: block;
  padding-block: 15px;
  background: var(--blue);
  color: white;
  font-size: 18px;
  border-radius: 7.5px;
  font-weight: bold;
  text-align: center;
}

main .article[data-id="1"] .form-wrapper .button button:disabled {
  pointer-events: none;
  filter: grayscale(1);
  opacity: 0.3;
}

main .article[data-id="1"] .form-wrapper .button button::after {
  transition: all 250ms ease 0s;
  content: "";
  width: 22px;
  display: block;
  border-radius: calc(infinity * 1px);
  background-color: white;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-size: 7px 11px;
  background-position: center;
  background-image: url("../../img/common/icon/arrow.svg");
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 25px;
}

main .article[data-id="1"] .form-wrapper .button button:hover::after {
  transform: translateX(3px);
}

.textbox {
  margin-top: 40px;
  padding-inline: 3em;
  background: #f4f4f4;
  padding-block: 60px;
  overflow: hidden;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}
@media print, screen and (max-width: 1300px) {
  .textbox {
    width: 100%;
    margin-inline: 0;
  }
}

.textbox-inner {
  width: 860px;
  margin-inline: auto;
}

.textbox-inner[center] {
  text-align: center;
}

.textbox .box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.textbox .box .inbox {
  background: white;
  padding-block: 1em;
  padding-inline: 12em;
  width: max-content;
  margin-inline: auto;
  text-align: center;
}

.textbox + .u-button {
  width: min(60%, 400px);
  margin-inline: auto;
  margin-top: 3em;
}

.pass-description {
  font-size: 14px;
  font-weight: normal;
  background: var(--red);
  color: white;
  padding-inline: 0.5em;
  display: none;
}

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