@charset "utf-8";
/* CSS Document */
/*フォームパーツのみのcss*/
.hiss {
      color: var(--col_red);
      border: solid 1px var(--col_red);
      font-size: 0.8em;
      padding: 0 0.3em;
      margin-left: 0.5em;
}
input[type=text], input[type=number], input[type=email], input[type=tel], input[type=mail], input[type=password], input[type=date], input[type=time] {
      padding: 0.5em;
      border-radius: 0;
      outline: none;
      -moz-appearance: none;
      appearance: none;
      -webkit-appearance: none;
      border: solid 1px #a3a3a3;
      /* width: 100%;*/
      box-sizing: border-box;
      font-size: 1.7rem;
      background: #f9f9f9;
}
@media screen and (max-width: 960px) {
      input[type=text], input[type=number], input[type=email], input[type=tel], input[type=mail], input[type=password], input[type=date], input[type=time] {
            font-size: 1.6rem;
      }
}
/*textarea*/
textarea {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      outline: none;
      border-radius: 0;
      border: solid 1px #a3a3a3;
      padding: 4px;
      width: 100%;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      font-size: 1.6rem;
      height: 10em;
      /*resize:none; エリアの拡大禁止*/
      max-width: 100%;
      resize: vertical;
      max-height: 300px;
      background: #f9f9f9;
}
/*サイズ*/
.size_20 {
      width: 20%;
}
.size_30 {
      width: 30%;
}
.size_40 {
      width: 40%;
}
.size_50 {
      width: 50%;
}
.size_60 {
      width: 60%;
}
.size_70 {
      width: 70%;
}
.size_80 {
      width: 80%;
}
.size_80 {
      width: 80%;
}
.size_90 {
      width: 90%;
}
.size_100 {
      width: 100%;
}
.size_50_sp100 {
      width: 50%;
}
.size_60_sp100 {
      width: 60%;
}
.size_70_sp100 {
      width: 70%;
}
.size_80_sp100 {
      width: 80%;
}
.size_90_sp100 {
      width: 90%;
}
@media screen and (max-width: 960px) {
      .size_50_sp100 {
            width: 100%;
      }
      .size_60_sp100 {
            width: 100%;
      }
      .size_70_sp100 {
            width: 100%;
      }
      .size_80_sp100 {
            width: 100%;
      }
      .size_90_sp100 {
            width: 100%;
      }
}
/*ボタン*/
.fom_btn_area {
      display: flex;
      justify-content: center;
}
.fom_btn_area > * + * {
      margin-left: 5%;
}
.fom_btn_area .btn > * {
      width: 20em;
      justify-content: center;
}
@media screen and (max-width: 680px) {
      .fom_btn_area {
            display: block;
      }
      .fom_btn_area > * + * {
            margin-left: auto;
            margin-right: auto;
            margin-top: 5%;
      }
      .fom_btn_area .btn {
            text-align: center;
      }
}
/*table_02*/
.form_area .table_02 {
      border-bottom: 1px solid var(--line_gray_l);
}
.form_area .table_02 th, .form_area .table_02 td {
      border-top: 1px solid var(--line_gray_l);
}
.form_area .table_02 th {
      font-weight: 700;
}
.form_area .table_02 th {
      padding: 1.2em 1em 1.2em 1em;
}
.form_area .table_02 td {
      padding: 1.2em 0em 1.2em 1em;
}
@media screen and (max-width: 680px) {
      .form_area .table_02 th, .form_area .table_02 td {
            display: block;
            width: 100%;
      }
      .form_area .table_02 th {
            padding: 1em 0 0.5em 0;
      }
      .form_area .table_02 td {
            border-top: 1px none;
            padding: 0 0em 1.4em 0;
      }
}
/*radio_list*/
.radio_list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5em 3%;
}
/*form_area*/
.form_area {
      padding: 2em 0 8em 0;
}
@media screen and (max-width: 680px) {
      .form_area {
            padding: 3em 0 5em 0;
      }
}