@charset "UTF-8";
/*-----------------------------------
    contents_inner（下層ページ用）
-----------------------------------*/
@media screen and (max-width: 640px) {
  .contents_inner {
    width: 90%;
  }
}

/*-----------------------------------
    エントリー導入文
-----------------------------------*/
#entry_lead_block {
  padding: 50px 0 0;
}

.entry_lead_text {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #333333;
}

.entry_lead_note {
  margin-top: 15px;
  font-size: 1.3rem;
  color: #f73420;
}

@media screen and (max-width: 840px) {
  #entry_lead_block {
    padding: 40px 0 0;
  }

  .entry_lead_text {
    font-size: 1.4rem;
  }

  .entry_lead_note {
    font-size: 1.2rem;
  }
}

/*-----------------------------------
    エントリーフォーム
-----------------------------------*/
#entry_form_block {
  padding: 50px 0 140px;
}

.entry_form_table {
  width: 100%;
  border-collapse: collapse;
}

.entry_form_table th {
  width: 320px;
  padding: 30px 20px 30px 0;
  border-bottom: 1px solid #ede7dd;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #4e3f2d;
  text-align: left;
  vertical-align: top;
}

.entry_form_table td {
  padding: 30px 0;
  border-bottom: 1px solid #ede7dd;
  vertical-align: middle;
}

.entry_form_table th label,
.form_th_label {
  display: inline-block;
  margin-right: 12px;
  vertical-align: middle;
}

.form_badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 3px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  vertical-align: middle;
}

.form_badge_required {
  background-color: #f73420;
  color: #ffffff;
}

.form_badge_optional {
  background-color: #b0a298;
  color: #ffffff;
}

.entry_form_table input[type="text"],
.entry_form_table input[type="email"],
.entry_form_table input[type="tel"],
.entry_form_table select,
.entry_form_table textarea {
  width: 100%;
  max-width: 480px;
  padding: 14px 16px;
  border: 1px solid #d8cdbf;
  border-radius: 4px;
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  color: #333333;
}

/*
.entry_form_table select {
	appearance: none;
	background-image: url(../img/common/icon_arrow_dark.svg);
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 12px;
}
*/

.entry_form_table textarea {
  max-width: 100%;
  resize: vertical;
}

.entry_form_table input::placeholder,
.entry_form_table textarea::placeholder {
  color: #b0a298;
}

.entry_radio_group,
.entry_checkbox_group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
}

.entry_radio_label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  color: #333333;
  cursor: pointer;
}

.entry_radio_label input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #f73420;
}

.entry_form_submit {
  margin-top: 50px;
  text-align: center;
}

.entry_submit_btn {
  width: 320px;
  max-width: 100%;
  height: 60px;
  border: none;
  border-radius: 999px;
  background-color: #f73420;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1.7rem;
  color: #ffffff;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.entry_submit_btn:hover {
  opacity: 0.8;
}

@media screen and (max-width: 840px) {
  #entry_form_block {
    padding: 40px 0 80px;
  }

  .entry_form_table th {
    width: 200px;
    padding: 20px 15px 20px 0;
    font-size: 1.4rem;
  }

  .entry_form_table td {
    padding: 20px 0;
  }

  .entry_form_table input[type="text"],
  .entry_form_table input[type="email"],
  .entry_form_table input[type="tel"],
  .entry_form_table select,
  .entry_form_table textarea {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 640px) {
  .entry_form_table,
  .entry_form_table tbody,
  .entry_form_table tr {
    display: block;
    width: 100%;
  }

  .entry_form_table th,
  .entry_form_table td {
    display: block;
    width: 100%;
    padding: 0;
    border-bottom: none;
  }

  .entry_form_table th {
    padding-top: 20px;
    padding-bottom: 10px;
    text-align: left;
  }

  .entry_form_table td {
    padding-bottom: 20px;
    border-bottom: 1px solid #ede7dd;
  }

  .entry_radio_group {
    gap: 12px 20px;
  }

  .entry_submit_btn {
    width: 100%;
  }
}

/*-----------------------------------
    入力内容確認
-----------------------------------*/
#entry_confirm_block {
  padding: 50px 0 140px;
}

.entry_confirm_table {
  width: 100%;
  border-collapse: collapse;
}

.entry_confirm_table th {
  width: 320px;
  padding: 24px 20px 24px 0;
  border-bottom: 1px solid #ede7dd;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #4e3f2d;
  text-align: left;
  vertical-align: top;
}

.entry_confirm_table td {
  padding: 24px 0;
  border-bottom: 1px solid #ede7dd;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #333333;
  white-space: pre-line;
}

.entry_confirm_submit {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.entry_confirm_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  max-width: 100%;
  height: 60px;
  border-radius: 999px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1.7rem;
  text-align: center;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.entry_confirm_btn_back {
  border: 1px solid #d8cdbf;
  background-color: #ffffff;
  color: #4e3f2d;
}

.entry_confirm_btn_submit {
  border: none;
  background-color: #f73420;
  color: #ffffff;
  cursor: pointer;
}

.entry_confirm_btn:hover {
  opacity: 0.8;
}

@media screen and (max-width: 840px) {
  #entry_confirm_block {
    padding: 40px 0 80px;
  }

  .entry_confirm_table th {
    width: 200px;
    padding: 18px 15px 18px 0;
    font-size: 1.4rem;
  }

  .entry_confirm_table td {
    padding: 18px 0;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 640px) {
  .entry_confirm_table,
  .entry_confirm_table tbody,
  .entry_confirm_table tr {
    display: block;
    width: 100%;
  }

  .entry_confirm_table th,
  .entry_confirm_table td {
    display: block;
    width: 100%;
    padding: 0;
    border-bottom: none;
  }

  .entry_confirm_table th {
    padding-top: 18px;
    padding-bottom: 8px;
  }

  .entry_confirm_table td {
    padding-bottom: 18px;
    border-bottom: 1px solid #ede7dd;
  }

  .entry_confirm_submit {
    flex-direction: column;
    align-items: center;
  }

  .entry_confirm_btn {
    width: 100%;
  }
}

/*-----------------------------------
    送信完了
-----------------------------------*/
#entry_complete_block {
  padding: 80px 0 220px;
  text-align: center;
}

.entry_complete_icon {
  position: relative;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #f73420;
}

.entry_complete_icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 16px;
  border-left: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  transform: translate(-50%, -60%) rotate(-45deg);
}

.entry_complete_ttl {
  margin-top: 25px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #4e3f2d;
}

.entry_complete_text {
  margin-top: 30px;
  font-size: 1.5rem;
  line-height: 1.9;
  color: #333333;
}

.entry_complete_note {
  margin-top: 15px;
  font-size: 1.3rem;
  color: #f73420;
}

.entry_complete_btn_wrap {
  margin-top: 50px;
}

@media screen and (max-width: 840px) {
  #entry_complete_block {
    padding: 60px 0 80px;
  }

  .entry_complete_ttl {
    font-size: 2rem;
  }

  .entry_complete_text {
    font-size: 1.4rem;
  }

  .entry_complete_note {
    font-size: 1.2rem;
  }
}

/*-----------------------------------
    mw wp form custmize
-----------------------------------*/
.mwform-radio-field input[type="radio"],
.mwform-checkbox-field input[type="checkbox"] {
  /* appearance: none;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0;
  background: #fff;
  border: 1px solid rgba(52, 52, 52, 0.3);
  position: relative; */
  width: 18px;
  height: 18px;
  accent-color: #f73420;
}

.mwform-checkbox-field label,
.mwform-radio-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  color: #333333;
  cursor: pointer;
}

.error {
  width: 100%;
}

.mixed_form_group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0;
}
