
.contact-textarea {
  width: 100%;
  height: 198px;
  padding: 12px 0 0 18px;
  overflow: auto;
  border-radius: 10px;
  font-size: 1.8rem;
}

.contact-form-list label {
  /* スクリーンリーダー用 */
  display: block;
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.contact-form-list input {
  width: 100%;
  background: var(--Bg_BW2);
  padding: 18px 0 18px 18px;
  border-radius: 10px;
  font-size: 1.8rem;
}

.contact-textarea::placeholder,
.contact-form-list input::placeholder {
  font-size: 1.8rem;
  color: var(--Umios_text_Grey);
}

.contact-link {
  text-decoration: underline;
  color: var(--Umios_Blue);
}
.contact-link:hover {
  color: var(--Umios_Blue);
  text-decoration: none;
}

/* チェックボックス */
/* .contact-checkbox {
  display: flex;
  align-items: center;
} */
.c-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 4px 8px;
  width: fit-content;
  cursor: pointer;
  transition: .3s;
}
.c-check {
  appearance: none; /* デフォルトスタイルの打ち消し */
  -webkit-appearance: none;
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 5px 0 0 0;
  border: 1px solid var(--Sub_BW2);
  background: var(--Bg_B2);
  border-radius: 2px;
  transition: .3s;
  position: relative;
  cursor: pointer;
}
.c-check-label:hover .c-check {
  border-color: var(--Umios_Blue);
  /* box-shadow: 0 0 0 1px var(--Umios_Blue) inset; */
}
.c-check:checked {
  border-color: var(--Sub_BW2);
}
.c-check:checked::before {
  position: absolute;
  top: 1px;
  left: 4px;
  transform: rotate(50deg);
  width: 6px;
  height: 9px;
  border-right: 2px solid var(--Umios_Blue);
  border-bottom: 2px solid var(--Umios_Blue);
  content: '';
}

.error {
  border: 2px solid var(--Umios_Red) !important;
  background-color: var(--Bg_R2) !important;
}

.confirm-list {
  li + li {
    margin-top: 16px;
  }
}