@charset "utf-8";
/* CSS Document */
/*フォームパーツのみのcss*/
.hiss {
  color: #c40500;
}
#formID input,
#formID select {
  -webkit-appearance: none;
  appearance: none;
}
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: 6px 8px;
  border-radius: 2px;
  outline: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border: solid 1px #333;
  /* width: 100%;*/
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.6rem;
  /* color: var(--base-color4);*/
  color: #333333;
  background: #fff;
}
input[type="date"] {
  height: 2.5em;
  text-align: left;
}
input[type="text"] {
  display: block;
}
#formID select {
  background: #fff url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E) no-repeat right 5px top 55%;
  width: 104px;
}
/*textarea*/
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border-radius: 0;
  border: solid 1px #333;
  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;
}
@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.5rem;
  }
  input[type="date"] {
    height: 2.4em;
  }
  textarea {
    font-size: 1.5rem;
  }
}
/*サイズ*/
.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%;
}
/*
---------------------------------------------*/
select,
.checkbox-box {
  border: 1px solid #333;
  border-radius: 2px;
  padding: 6px 8px;
  box-sizing: border-box;
  background: #fff;
  color: #333333;
}
select {
  height: 2.5em;
}
@media screen and (max-width: 960px) {
  select {
    height: 2.6em;
  }
}
/*フォームテーブル
---------------------------------------------*/
.form_table {
  border-collapse: separate;
  border-spacing: 0 2em;
  width: 100%;
  color: #333333;
}
.form_table th {
  display: block;
  margin-bottom: 0.5em;
  font-family: "Noto Serif JP";
  font-weight: 600;
  font-size: 1.8rem;
}
.form_table th::before {
  content: "●";
  color: #101a61;
  font-size: 1em;
  display: inline-block;
  margin-right: 5px;
}
/*.form_table th::after {*/
/*  content: "必須";*/
/*  display: inline-block;*/
/*  background-color: red;*/
/*  color: #fff;*/
/*  font-size: 1.4rem;*/
/*  padding: 2px 6px;*/
/*  margin-left: 6px;*/
/*  border-radius: 4px;*/
/*  font-family: "Noto Sans JP";*/
/*  font-weight: 600;*/
/*}*/
.form_table .required::after {
  content: "必須";
  display: inline-block;
  background-color: red;
  color: #fff;
  font-size: 1.4rem;
  padding: 2px 6px;
  margin-left: 6px;
  border-radius: 4px;
  font-family: "Noto Sans JP";
  font-weight: 600;
}

.form_table td {
  display: block;
}
/*チェックボックス
---------------------------------------------*/
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checkbox-row {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
}
.checkbox-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  border: 1px solid #333;
  border-radius: 2px;
  padding: 6px 8px;
  box-sizing: border-box;
  flex-shrink: 1;
}
.consent_box {
  color: #333333;
}
.consent_box a {
  text-decoration: underline;
}
.consent_checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #1e2b82;
  border-radius: 4px;
  cursor: pointer;
  vertical-align: middle;
  margin-right: 8px;
  background-color: #fff;
  position: relative;
}
/* チェック時に✓を表示 */
.consent_checkbox:checked::after {
  content: "✔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: #1e2b82;
}
/*日付
---------------------------------------------*/
.datetime-select {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: nowrap;
}
.datetime-select input[type="date"] {
  width: 45%;
  flex-shrink: 1;
}
.datetime-select .flatpickr-input {
  width: 100%;
}
/*名前
---------------------------------------------*/
.name-input {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
}
.name-input input {
  width: 100%;
  flex-shrink: 1;
}
/*住所
---------------------------------------------*/
.postal-wrapper {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
  flex-direction: column;
  flex-wrap: nowrap;
}
.postal-wrapper input {
  width: 17rem;
  flex-shrink: 1;
}
.postal-wrapper a {
  padding: 0 1em;
  border: 1px solid #1e2b82;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  height: 2em;
  flex-shrink: 1;
  transition: 0.5s;
  margin-left: 5px;
  color: #333333;
}
.postal-wrapper a:hover {
  color: #fff;
  background: #1e2b82;
  transition: 0.5s;
}
.address-row input,
.address-row select {
  width: 100%;
  margin-bottom: 8px;
  flex-shrink: 1;
}
.address-row select {
  width: 150px;
  flex-shrink: 1;
}
.input_text {
  display: block;
}
/*電話番号
---------------------------------------------*/
.phone-input input {
  width: 100%;
  flex-shrink: 1;
}
/*年齢
---------------------------------------------*/
.age-input input {
  width: 6rem;
  text-align: right;
  flex-shrink: 1;
}
/*人数
---------------------------------------------*/
.people-select select {
  width: 150px;
  flex-shrink: 1;
}
/*テキストエリア
---------------------------------------------*/
.inquiry-textarea textarea {
  height: 120px;
  min-height: 200px;
  max-height: 250px;
  resize: vertical;
  flex-shrink: 1;
}
@media screen and (max-width: 960px) {
  .form_table th {
    font-size: 1.6rem;
  }
  .form_table th::after {
    font-size: 1.2rem;
  }
}
/*確認ボタン
---------------------------------------------*/
button.btn_contact {
  /*background: #1e2b82;*/
  background: #333333;
  border-radius: 5px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 2.5em auto 0;
  width: 50%;
  max-width: 250px;
  padding: 10px 25px;
  color: #fff;
  line-height: 1.8;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  font-weight: 400;
  border: 1px solid #1e2b82;
}
button.btn_contact:hover {
  background: #fff;
  color: #1e2b82;
  border: 1px solid #1e2b82;
}
button.btn_contact:after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 10px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}
button.btn_contact:hover:after {
  border-color: #1e2b82;
}
/*送信する
-------------------*/
button.btn {
  background: #1e2b82;
  border-radius: 5px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 2.5em auto 0;
  width: 50%;
  max-width: 250px;
  padding: 10px 25px;
  color: #fff;
  line-height: 1.8;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  font-weight: 400;
  border: 1px solid #1e2b82;
}
button.btn:hover {
  background: #fff;
  color: #1e2b82;
  border: 1px solid #1e2b82;
}
button.btn:after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 10px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}
button.btn:hover:after {
  border-color: #1e2b82;
}
/*入力画面に戻る
-------------------*/
button.btn.back {
  background: #fff;
  color: #1e2b82;
  border: 1px solid #1e2b82;
}
button.btn.back:hover {
  background: #1e2b82;
  color: #fff;
}
button.btn.back:after {
  border-top: 2px solid #1e2b82;
  border-right: 2px solid #1e2b82;
  transform: rotate(225deg) translateY(-50%);
  top: 42%;
  left: 10px;
}
button.btn.back:hover:after {
  border-color: #fff;
}
@media screen and (max-width: 960px) {
  button.btn_contact {
    width: 60%;
  }
  button.btn {
    width: 60%;
  }
}

.form-ttl-label {
  font-family: "Noto Serif JP";
  font-size: 1.4rem;
  font-weight: 600;
}
