@charset "UTF-8";
/* 変数定義
----------------------------------------- */
/* お問合せフォーム上情報
----------------------------------------- */
.contact_upper_wrapper {
  width: 100%;
  max-width: 540px;
  margin: 0 auto 30px;
  padding: 0 20px;
  text-align: center;
}

.contact_tel_title {
  margin-bottom: 12px;
  font-weight: 500;
}

.contact_tel_link {
  display: inline-block;
  margin-bottom: 50px;
  font-size: 2rem;
  font-weight: 500;
}

/* お問合せフォーム
----------------------------------------- */
.form_container {
  width: 100%;
  max-width: 540px;
  margin: 0 auto 70px;
  padding: 0 20px;
}

.form_item {
  width: 100%;
  margin-bottom: 16px;
}

/* 項目名 */
.form_name_wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 6px;
}

.form_name,
.form_title {
  margin-right: 10px;
  font-size: 1.4rem;
  font-weight: 500;
}

/* 必須マーク */
.required {
  display: inline-block;
  padding: 5px 8px 4px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: #452C17;
  background: #B2D3C7;
  border-radius: 3px;
}

/* 任意マーク */
.not_required {
  padding: 5px 8px 4px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: #452C17;
  background: #FEFDFD;
  border: 1px solid #452C17;
  border-radius: 3px;
}

/* ラジオボタン */
.radio_wrapper {
  width: 100%;
}

.radio_item:not(:last-child) {
  margin-bottom: 4px;
}
.radio_item input[type=radio] {
  width: 0;
  opacity: 0;
}
.radio_item label {
  position: relative;
  padding-left: 26px;
  white-space: normal;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 500;
}
.radio_item label::before {
  position: absolute;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 0;
  border: 1px solid #452C17;
  border-radius: 50%;
  transform: translateY(-50%);
}
.radio_item input[type=radio]:checked + label {
  color: #452C17;
}
.radio_item input[type=radio]:checked + label::after {
  position: absolute;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  top: 50%;
  left: 4px;
  background: #452C17;
  border-radius: 50%;
  transform: translateY(-50%);
}

/* テキストエリア */
.form_item input[type=text],
.form_item input[type=tel],
.form_item input[type=email],
.form_item textarea {
  width: 100%;
  padding: 10px;
  font-size: 1.6rem;
  font-family: inherit;
  color: #452C17;
  border: 1px solid #452C17;
  background: #FEFDFD;
}
.form_item textarea {
  resize: none;
}

.form_event_download {
  margin-top: 5px;
  padding-left: 30px;
  font-size: 1.2rem;
}
.form_event_download a {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form_jp_only {
  display: inline-block;
  padding-left: 5px;
  font-size: 1.2rem;
}

/* 個人情報に同意
----------------------------------------- */
.privacy_link {
  margin-bottom: 30px;
  font-size: 1.2rem;
  text-align: center;
}
.privacy_link a {
  text-decoration: underline;
}

/* 内容確認ボタン
----------------------------------------- */
.submit_button_wrapper {
  position: relative;
  text-align: center;
}
.submit_button_wrapper::after {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  top: 47%;
  right: 30%;
  line-height: 1;
  color: #452C17;
  border: 1.5px solid #452C17;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: rotate(45deg) translateY(-47%);
}

input[type=submit] {
  display: block;
  width: 90%;
  max-width: 312px;
  margin: 0 auto 10px;
  padding: 14px 20px;
  font-weight: 500;
  background-color: #FFE350;
  border-radius: 30px;
  box-shadow: 0 0 4px rgba(128, 128, 128, 0.1);
}

/* 内容確認画面
----------------------------------------- */
.confirm_form_container {
  margin-bottom: 60px;
}

.confirm_text {
  margin-bottom: 20px;
}

.confirm_error {
  margin: 120px auto 20px;
}

/* プライバシーポリシー
----------------------------------------- */
.privacy_container {
  width: 100%;
  max-width: 540px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.privacy_list:not(:last-child) {
  margin-bottom: 25px;
}

.title {
  font-weight: 500;
  color: #452C17;
}

.number {
  margin-right: 10px;
}

.text {
  font-size: 1.4rem;
}

.privacy_inner {
  margin-top: 15px;
  font-size: 1.4rem;
}

/* サンクスページ
----------------------------------------- */
.thanks_wrapper {
  width: 100%;
  max-width: 540px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.thanks_title {
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
}

.thanks_content {
  margin-bottom: 40px;
  font-size: 1.4rem;
}

/* reCAPTCHAボタン
----------------------------------------- */
.grecaptcha-badge {
  visibility: hidden;
}/*# sourceMappingURL=contact.css.map */