button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}
input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
}
/* フォーム */
/* テキスト */
.form-text {
  box-sizing: border-box;
  background-color: #fff;
  height: 2.4rem;
  width: 100%;
  padding: 0 16px;
  border-radius: 4px;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.form-text:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}
/* ラジオボタン */
.form-radio {
  display: flex;
  align-items: flex-start;
}
.form-radio .radio {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}
.form-radio-name {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  color: #666;
}
.form-radio-name:before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 1px solid #ccc;
  border-radius: 50%;
  margin-right: 6px;
  flex-shrink: 0;
}
.form-radio .radio:checked + .form-radio-name {
  color: rgb(33, 150, 243);
}
.form-radio .radio:checked + .form-radio-name:before {
  border: 0.35em solid rgb(33, 150, 243);
  box-sizing: border-box;
}
.form-radio .radio:focus-visible + .form-radio-name .form-radio-text {
  background: linear-gradient(transparent 90%, rgba(33, 150, 243, 0.3) 90%);
}
/* チェックボックス */
.form-checkbox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.form-checkbox .check {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}
.form-checkbox-name {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  color: #666;
  position: relative;
}
.form-checkbox-name:before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-right: 6px;
  flex-shrink: 0;
}
.form-checkbox .check:checked + .form-checkbox-name {
  color: rgb(33, 150, 243);
}
.form-checkbox .check:checked + .form-checkbox-name:before {
  border: 1px solid rgb(33, 150, 243);
  background-color: rgb(33, 150, 243);
}
.form-checkbox .check:checked + .form-checkbox-name:after {
  content: "";
  position: absolute;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  left: 0.4em;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0.4em;
  height: 0.65em;
  transform: translateY(-1px) rotate(45deg);
}
.form-checkbox .check:focus-visible + .form-checkbox-name .form-checkbox-text {
  background: linear-gradient(transparent 90%, rgba(33, 150, 243, 0.3) 90%);
}
/* セレクトボックス */
.form-select {
  position: relative;
}
.form-select:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 12px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(135deg);
  pointer-events: none;
}
.form-select select {
  height: 2.4em;
  width: 100%;
  padding: 0 8px;
  border-radius: 4px;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.form-select select::-ms-expand {
  display: none;
}
.form-select select:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}
/* テキストエリア */
.form-textarea {
  background-color: #fff;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  padding: 4px 16px;
  border-radius: 4px;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  resize: vertical;
}
.form-textarea:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}
/* サブミット */
.form-submit-button {
  display: inline-block;
  width: 100%;
  padding: 8px;
  border: none;
  border-radius: 4px;
  background-color: #91c23b;
  color: #fff;
  font-weight: bold;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  border: 2px solid transparent;
}
.form-submit-button:hover {
  background-color: #91c23b;
}
.form-submit-button:focus {
  outline: 0;
  background-color: #91c23b;
  border: 2px solid rgb(33, 150, 243);
}
/* formのその他 */
.other {
  display: flex;
  margin-top: 10px;
}
.other .form-radio-name,
.other .form-checkbox-name {
  width: 16%;
}
.other .form-text {
  width: 85%;
}
/* 必須 */
/* .require {
  color: coral;
  display: inline-block;
  font-size: 0.75rem;
  margin-left: 10px;
  padding: 4px 5px;
  vertical-align: middle;
} */
.form-in-txt {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-decoration: underline;
}
.caution-txt {
  display: block;
  font-size: 0.75rem;
  margin-top: 5px;
  line-height: 1.6;
}