@charset "UTF-8";
.form-table {
  margin-inline: auto;
  margin-top: 5.6vw;
  display: flex;
  flex-direction: column;
  gap: 5.3333333333vw;
}

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

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

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

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

.form-table .unit:has([required]) .label::before {
  content: "必須";
  font-size: 3.7333333333vw;
  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: 2vw 0;
  display: grid;
  align-items: center;
  grid-template-areas: "before postalcode pref" "address address address";
  grid-template-columns: 1em auto 1fr;
  grid-template-rows: auto;
}

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

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

.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: 3.4666666667vw;
  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: 1vw;
}

.form-table .value[direct] button::before {
  content: "";
  aspect-ratio: 1/1;
  width: 4vw;
  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;
  gap: 1.0666666667vw 2.4vw;
}

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

.form-table .value[between] :where(.from, .to) :where(input[type=date], input[type=time]) {
  text-align-last: left;
  width: 30vw;
  min-height: 12.5333333333vw;
}

.form-table .value[between] :where(.from, .to)::before {
  flex-shrink: 0;
  font-weight: bold;
  font-size: 3.4666666667vw;
  padding-left: 1em;
}

.form-table .u-cancel {
  display: none;
}

.form-table .value[singlefile] {
  display: flex;
  gap: 1vw;
  align-items: center;
}
.form-table .value[singlefile] button {
  flex-shrink: 0;
  font-size: 3.0666666667vw;
  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: 3.7333333333vw;
  font-family: inherit;
  border-radius: 0;
  padding: 3vw 0;
  line-height: 1.5;
  padding-inline: 3vw;
  border: 1px solid transparent;
  transition: background 250ms ease 0s, border-color 250ms ease 0s;
}

.form-table .unit select {
  appearance: none;
  font-size: 3.7333333333vw;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2223.616%22%20height%3D%2213.503%22%20viewBox%3D%220%200%2023.616%2013.503%22%3E%3Cpath%20fill%3D%22%2300698c%22%20id%3D%22Icon_ionic-ios-arrow-down%22%20d%3D%22M18%2C20.679l8.93-8.937a1.681%2C1.681%2C0%2C0%2C1%2C2.384%2C0%2C1.7%2C1.7%2C0%2C0%2C1%2C0%2C2.391L19.2%2C24.258a1.685%2C1.685%2C0%2C0%2C1-2.327.049L6.68%2C14.14a1.688%2C1.688%2C0%2C0%2C1%2C2.384-2.391Z%22%20transform%3D%22translate(-6.188%20-11.246)%22%2F%3E%3C%2Fsvg%3E");
  background-size: 2.3vw 1.299999999vw;
  background-repeat: no-repeat;
  background-position: 97% center;
  padding-right: 7vw;
  background-color: #f7f7f7;
}

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

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

.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: 33.3333333333vw;
}

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

.form-button {
  margin-top: 10.6666666667vw;
}

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

.form-table .reset-password {
  padding-bottom: 3.7333333333vw;
}

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

.form-table .reset-password-unit + .reset-password-unit {
  margin-top: 6vw;
}

.form-table small {
  font-size: 2.6666666667vw;
  color: var(--grey);
  line-height: 1.6;
  display: block;
  padding-bottom: 2vw;
}

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

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

main {
  padding-bottom: 16vw;
}

main .article[data-id="1"] {
  padding-block: 12vw 16vw;
}

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

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

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

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

main .article[data-id="1"] .form-wrapper {
  margin-inline: auto;
  margin-top: 8vw;
}

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

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: 2.5px;
  background: #efefef;
  padding: 3.0666666667vw 5.3333333333vw;
  margin-top: 5px;
  border: 1px solid #efefef;
}

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

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: 4vw;
  aspect-ratio: 1/1;
  cursor: pointer;
  accent-color: var(--blue);
}

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

main .article[data-id="1"] .form-wrapper .button button {
  position: relative;
  width: 78.6666666667vw;
  margin-inline: auto;
  display: block;
  padding-block: 15px;
  background: var(--blue);
  color: white;
  font-size: 3.7333333333vw;
  border-radius: 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: 4.8vw;
  display: block;
  border-radius: calc(infinity * 1px);
  background-color: white;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-size: 1.6vw 2.5142857143vw;
  background-position: center;
  background-image: url("../../img/common/icon/arrow.svg");
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 2.6666666667vw;
}

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

.textbox {
  margin-top: 5.3333333333vw;
  padding-inline: 5.3333333333vw;
  background: #f4f4f4;
  padding-block: 1em;
  overflow: hidden;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.textbox-inner {
  margin-inline: auto;
}

.textbox .box {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.textbox .box .inbox {
  background: white;
  padding-block: 1em;
  padding-inline: 12vw;
  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-weight: normal;
  background: var(--red);
  color: white;
  padding-inline: 0.5em;
  display: none;
}

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