@charset "UTF-8";
/* -------------------------------------
・エントリーフォーム
・確認画面
・thanksページ
-------------------------------------*/

/** ==============================================
エントリーフォーム
============================================== **/
#entry .form {
}
/**テーブル**/
.form table th {
  position: relative;
}
.form table td p {
  font-size: 0.8em;
}

/**必須・任意**/
.form table th span,
.privacy .require {
  width: 44px;
  display: inline-block;
  margin-left: 10px;
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 24px;
  background: var(--color);
}
.form table th span.require,
.privacy .require {
  background: var(--c-main);
}

/*入力タグ*/
.form input[type="text"],
.form input[type="email"],
.form input[type="date"],
.form input[type="tel"],
.form textarea,
.form select {
  width: 100%;
  height: 50px;
  padding: 5px 10px;
  font-size: 1.5rem;
  line-height: 1.2;
  border: 1px solid var(--color);
  background: #fff;
  border-radius: 10px;
  outline: none;
}
.form input[type="text"].w5em {
  width: 5em;
}
.form input[type="text"].zip {
  width: 10em;
  margin-bottom: 10px;
}
.form input[type="date"].datepicker {
  width: 48%;
}
.form input[type="text"].times {
  width: 45%;
  margin-left: 10px;
}
.form textarea {
  min-height: 150px;
}
.form select {
  max-width: 300px;
  padding: 0 10px;
  font-size: 1.4rem;
  line-height: 1;
}
/*ラジオボタンにスタイルあてる場合*/
.form label input[type="radio"] {
}
/*チェックボックスにスタイルあてる場合*/
.form label input[type="checkbox"] {
  margin-right: 4px;
}

.form input[type="file"] {
  margin-bottom: 10px;
}

/*ラベル*/
.form label {
  cursor: pointer;
  display: inline-block;
  font-size: 1.6rem;
}
.lbl-row label {
  margin-right: 20px;
}
.lbl-check label {
  display: inline-block;
  width: 32%;
  margin-top: 12px;
}

/*送信ボタン*/
.form-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 50px auto 0;
}
.form-btn-wrap button {
  /* 初期設定のリセット */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: #ccc;
  cursor: pointer;

  /* デザイン */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 70px;
  gap: 0.2em;
  padding: 0 2em;
  color: #fff;
  font-weight: var(--fw_b);
  text-align: center;
  line-height: 1;
  background: var(--c-main);
  border-radius: 70px;
}
.form-btn-wrap button:hover {
  opacity: var(--opacity);
}
.form-btn-wrap button span {
  flex: 1;
}
.form-btn-wrap button[type="submit"] i::before {
  content: "→";
}

@media screen and (max-width: 768px) {
  /**テーブル**/
  .form {
    width: 100%;
    max-width: 700px;
  }

  /**entry･･･これで.tableAでも.tableBでも何でもOK！**/
  #entry .form table tr {
    border-bottom: 1px dotted red;
  }
  #entry .form table th,
  #entry .form table td {
    display: block;
    width: 100%;
  }

  /**必須・任意**/
  .form table th span {
    width: 36px;
    font-size: 1.2rem;
  }

  /*入力タグ*/
  .form input[type="text"],
  .form input[type="email"],
  .form input[type="date"],
  .form input[type="tel"],
  .form textarea,
  .form select {
    width: 100%;
    height: 44px;
  }
  .form textarea {
    height: 150px;
  }
  .form select {
    width: 100%;
    max-width: 300px;
    padding: 0 10px;
    font-size: 1.4rem;
    line-height: 1;
  }
  /*ラジオボタンにスタイルあてる場合*/
  .form label input[type="radio"] {
  }
  /*チェックボックスにスタイルあてる場合*/
  .form label input[type="checkbox"] {
  }

  /*送信ボタン*/
  .sbmt-btn > * {
    width: 80%;
    padding: 16px;
    font-size: 1.6rem;
  }
}

/*プライバシーポリシー*/
.privacy a {
  text-decoration: underline;
}
.privacy a:hover {
  text-decoration: none;
}

/** ==============================================
確認画面
============================================== **/
/* #confirm header {
  display: none;
} */
#confirm h4 {
  margin-bottom: 20px;
  font-size: 1.2em;
  color: var(--c-main);
  font-weight: var(--fw_b);
  text-align: center;
}

#confirm .error_messe {
  color: var(--c-main);
}
#confirm p {
  text-align: center;
}

input.cnfm-btn {
  display: inline-block;
  width: 40%;
  max-width: 250px;
  margin: 50px 10px 0;
  padding: 15px;
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background: var(--c-main);
  border: none;
  outline: none;
  position: relative;
  border-radius: 80px;
  cursor: pointer;
}
input.cnfm-btn:hover {
  opacity: 0.8;
}
input.cnfm-btn[type="button"] {
  opacity: 0.8;
}
input.cnfm-btn[type="button"]:hover {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  .sec-confirm {
    padding-top: 30px;
  }
  input.cnfm-btn {
    display: block;
    width: 80%;
    max-width: 200px;
    margin: 20px auto;
  }
}

/** ==============================================
thanksページ
============================================== **/

#thanks header {
  display: none;
}
#thanks main {
  margin-top: 50px;
}
#thanks .thanks-logo {
  width: 70%;
  max-width: 280px;
  margin-inline: auto;
}
#thanks p {
  width: fit-content;
  max-width: 90%;
  margin: 10px auto;
}

/*.btnがなかった場合*/
.thanks-btn {
  display: block;
  width: 200px;
  margin: 0 auto;
  color: #fff;
  font-weight: bold;
  line-height: 40px;
  background: orange;
  border-radius: 6px;
}

@media screen and (min-width: 769px) {
  /* #thanks .thanks-logo {
		width: 350px;
	} */
}
