@charset "utf-8";
/* CSS Document */
/*フォームパーツのみのcss*/
.hiss {
      font-size: 0.7em;
      color: #fff;
      font-weight: 700;
      background: var(--col_red);
      padding: 0 0.5em;
      margin-left: 1em;
}
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 0.5em;
      outline: none;
      -moz-appearance: none;
      appearance: none;
      -webkit-appearance: none;
      border: solid 1px #aaaaaa;
      /* width: 100%;*/
      box-sizing: border-box;
      font-size: 1.6rem;
}
/*textarea*/
textarea {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      outline: none;
      border: solid 1px #aaaaaa;
      padding: 0.5em 0.5em;
      width: 100%;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      font-size: 1.6rem;
      height: 15em;
      /*resize:none; エリアの拡大禁止*/
      max-width: 100%;
      resize: vertical;
      min-height: 150px;
      max-height: 400px;
}
textarea::placeholder, input::placeholder {
      color: #aaaaaa;
}
/*サイズ*/
.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%;
      }
      .size_sp100 {
            width: 100% !important;
      }
}
/*ボタン*/
.fom_btn_area {
      display: flex;
      justify-content: center;
	gap:1em 5%;
}

.fom_btn_area > * * {
      width: 100%;
      justify-content: center;
      font-size: 1.2em;
	cursor: pointer;
}

@media screen and (max-width: 680px) {
      .fom_btn_area {
            margin: auto;
            display: block;
            width: 90%;
      }
      .fom_btn_area > * + * {
            margin-left: auto;
            margin-top: 5%;
      }
      .fom_btn_area > * * {
            width: 100%;
            font-size: 1.0em;
      }
}
/*form_table*/
.form_table {
      table-layout: fixed;
      width: 100%;
}
.form_table th, .form_table td {
      font-size: 1.6rem;
      padding: 1em;
      border-bottom: 1px var(--bg_black) solid;
}
.form_table td {
      font-size: 1.6rem;
}
.form_table th {
      background: var(--bg_main_l);
      font-weight: 600;
}
@media screen and (max-width: 680px) {
      .form_table th, .form_table td {
            display: block;
            width: auto;
      }
      .form_table th {
            font-size: 1.6rem;
      }
      .form_table td {
            padding-bottom: 3em;
            font-size: 1.4rem;
      }
}
/*form_privacy_area
----------------------------------------------------------------------------------*/
.form_privacy_area {
      font-size: 1.4rem;
}
.form_privacy_b {
      height: 23em;
      border: solid 1px #6C6C6C;
      padding: 2em 0 2em 2em;
}
.form_privacy_inner {
      height: 100%;
      overflow-y: scroll;
      padding-right: 2em;
}
@media screen and (max-width: 680px) {
	.form_privacy_area {
      font-size: 1.3rem;
}
      .form_privacy_b {
            padding: 1em 0 1em 1em;
      }
}
/*form_privacy_area　パーツ
----------------------------------------------------------------------------------*/
.form_privacy {
      text-align: center;
      font-size: 1.2em;
      font-weight: 600;
}
.fpb {
      font-weight: 600;
}