@charset "UTF-8";
.lower_kv {
  padding: 0 2%;
}
.lower_kv .lower_kv_box {
  height: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url(/common/img/kv_img/about_img.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .lower_kv .lower_kv_box {
    height: 180px;
  }
}
.lower_kv .lower_kv_box .kv_txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.lower_kv .lower_kv_box .kv_txt .kv_ttl {
  font-size: 80px;
  line-height: 5rem;
}
@media screen and (max-width: 768px) {
  .lower_kv .lower_kv_box .kv_txt .kv_ttl {
    font-size: 45px;
    line-height: 3rem;
  }
}
.lower_kv .lower_kv_box .kv_txt .sub_ttl {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .lower_kv .lower_kv_box .kv_txt .sub_ttl {
    font-size: 14px;
  }
}

h2 {
  color: #000;
  text-align: center;
  line-height: 2rem;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  h2 {
    margin-bottom: 30px;
  }
}
h2.white_txt {
  color: #fff;
}
h2 .main_ttl {
  font-size: 50px;
}
@media screen and (max-width: 768px) {
  h2 .main_ttl {
    font-size: 38px;
  }
}
h2 .sub_ttl {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  h2 .sub_ttl {
    font-size: 10px;
  }
}
h2 .sub_ttl.nail {
  padding-top: 20px;
}

/*mainArea*/
.read_area {
  padding: 0 4%;
}
.read_area .sec_wrp {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.read_area .sec_wrp .tel_box {
  max-width: 600px;
  width: 100%;
  margin: 40px auto 0;
  border: 1px solid var(--clr-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .read_area .sec_wrp .tel_box {
    margin: 30px auto 0;
    padding: 25px 0;
  }
}
.read_area .sec_wrp .tel_box .phon_box {
  display: flex;
  align-items: center;
  gap: 0 20px;
}
@media screen and (max-width: 768px) {
  .read_area .sec_wrp .tel_box .phon_box {
    flex-direction: column;
  }
}
.read_area .sec_wrp .tel_box .phon_box .sign {
  font-size: 23px;
  color: var(--clr-white);
  background: var(--clr-black);
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
  padding: 0 5px;
}
@media screen and (max-width: 768px) {
  .read_area .sec_wrp .tel_box .phon_box .sign {
    font-size: 20px;
    height: 35px;
  }
}
.read_area .sec_wrp .tel_box .phon_box .phon_number {
  font-size: 50px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .read_area .sec_wrp .tel_box .phon_box .phon_number {
    font-size: 42px;
  }
}

.form_area {
  padding: 100px 4% 0;
}
@media screen and (max-width: 768px) {
  .form_area {
    padding: 50px 4% 0;
  }
}
.form_area .way_box {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  background: var(--bc-beige);
  padding: 0 50px;
}
.form_area .way_box .way_list {
  position: relative;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .form_area .way_box .way_list {
    padding: 30px 0;
  }
}
.form_area .way_box .way_list::before {
  content: "";
  position: absolute;
  max-width: 500%;
  width: 93%;
  height: 1px;
  margin: 0 auto;
  right: 0;
  left: 0;
  top: 50px;
  background: var(--clr-black);
}
@media screen and (max-width: 768px) {
  .form_area .way_box .way_list::before {
    width: 90%;
    top: 37px;
  }
}
.form_area .way_box .way_list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .form_area .way_box .way_list li {
    font-size: 16px;
  }
}
.form_area .way_box .way_list li.active {
  color: var(--clr-blue);
}
.form_area .way_box .way_list li.active .radius {
  display: inline-block;
  border: 1px solid var(--clr-blue);
  background: var(--clr-blue);
  width: 20px;
  height: 20px;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  .form_area .way_box .way_list li.active .radius {
    width: 15px;
    height: 15px;
  }
}
.form_area .way_box .way_list li .radius {
  display: inline-block;
  border: 1px solid var(--clr-blue);
  background: var(--bc-beige);
  width: 20px;
  height: 20px;
  border-radius: 50px;
  margin-bottom: 10px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .form_area .way_box .way_list li .radius {
    width: 15px;
    height: 15px;
    margin-bottom: 5px;
  }
}
.form_area .form_box {
  padding: 100px 4%;
}
@media screen and (max-width: 768px) {
  .form_area .form_box {
    padding: 40px 4%;
  }
}
.form_area .form_box .inner_box {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.form_area .form_box .inner_box .note {
  font-size: 16px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .form_area .form_box .inner_box .note {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.form_area .form_box .inner_box .note .required {
  color: var(--clr-blue);
}
.form_area .form_box .inner_box form table {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .form_area .form_box .inner_box form table {
    margin-bottom: 20px;
  }
}
.form_area .form_box .inner_box form table tbody tr {
  border-bottom: 1px solid var(--clr-black);
}
@media screen and (max-width: 768px) {
  .form_area .form_box .inner_box form table tbody tr {
    display: flex;
    flex-direction: column;
  }
}
.form_area .form_box .inner_box form table tbody tr:first-child {
  border-top: 1px solid var(--clr-black);
}
.form_area .form_box .inner_box form table tbody tr th {
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  padding: 15px 0;
  vertical-align: middle;
  width: 35%;
}
@media screen and (max-width: 850px) {
  .form_area .form_box .inner_box form table tbody tr th {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .form_area .form_box .inner_box form table tbody tr th {
    width: 100%;
  }
}
.form_area .form_box .inner_box form table tbody tr th .required {
  color: var(--clr-blue);
  font-size: 12px;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .form_area .form_box .inner_box form table tbody tr th .required {
    font-size: 10px;
  }
}
.form_area .form_box .inner_box form table tbody tr th .small {
  font-size: 14px;
  font-weight: 500;
}
.form_area .form_box .inner_box form table tbody tr th.top_th {
  vertical-align: top;
  padding: 25px 0;
}
@media screen and (max-width: 768px) {
  .form_area .form_box .inner_box form table tbody tr th.top_th {
    padding: 15px 0;
  }
}
.form_area .form_box .inner_box form table tbody tr td {
  padding: 25px 0;
}
@media screen and (max-width: 768px) {
  .form_area .form_box .inner_box form table tbody tr td {
    padding: 0 0 25px;
  }
}
.form_area .form_box .inner_box form table tbody tr td .radio_flex {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form_area .form_box .inner_box form table tbody tr td .radio_flex label {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .form_area .form_box .inner_box form table tbody tr td .radio_flex label {
    font-size: 12px;
  }
}
.form_area .form_box .inner_box form table tbody tr td .radio_flex label input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid var(--clr-gray);
  border-radius: 50%;
  vertical-align: -2px;
  margin-right: 8px;
  background: #fff;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .form_area .form_box .inner_box form table tbody tr td .radio_flex label input[type=radio] {
    width: 14px;
    height: 14px;
    margin-right: 5px;
  }
}
.form_area .form_box .inner_box form table tbody tr td .radio_flex label input[type=radio]:checked {
  border: 1px solid var(--clr-blue);
}
.form_area .form_box .inner_box form table tbody tr td .radio_flex label input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--clr-blue);
  content: "";
}
@media screen and (max-width: 768px) {
  .form_area .form_box .inner_box form table tbody tr td .radio_flex label input[type=radio]:checked:before {
    width: 7px;
    height: 7px;
  }
}
.form_area .form_box .inner_box form table tbody tr td input[type=text],
.form_area .form_box .inner_box form table tbody tr td [type=number],
.form_area .form_box .inner_box form table tbody tr td [type=password],
.form_area .form_box .inner_box form table tbody tr td [type=tel],
.form_area .form_box .inner_box form table tbody tr td [type=email] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #f2f2f2;
  background: #f2f2f2;
  width: 100%;
  padding: 10px 15px;
  box-sizing: border-box;
  font-size: 14px;
}
.form_area .form_box .inner_box form table tbody tr td textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #f2f2f2;
  background: #f2f2f2;
  width: 100% !important;
  height: 200px !important;
  padding: 10px 15px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1.5;
}
.form_area .form_box .inner_box form table tbody tr td .address_box .add_area {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .form_area .form_box .inner_box form table tbody tr td .address_box .add_area {
    margin-bottom: 10px;
  }
}
.form_area .form_box .inner_box form table tbody tr td .address_box .add_area:last-child {
  margin-bottom: 0px;
}
.form_area .form_box .inner_box form table tbody tr td .address_box .add_area .add_ttl {
  max-width: 150px;
  width: 100%;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .form_area .form_box .inner_box form table tbody tr td .address_box .add_area .add_ttl {
    max-width: 80px;
    width: 100%;
    font-size: 12px;
    line-height: 1rem;
  }
}
.form_area .form_box .inner_box form table tbody tr td .address_box .add_area .add_half {
  width: 35%;
  margin-left: 40px;
}
.form_area .form_box .inner_box form table tbody tr td .address_box .add_area .add_half.postal {
  position: relative;
}
.form_area .form_box .inner_box form table tbody tr td .address_box .add_area .add_half.postal::before {
  content: "〒";
  position: absolute;
  font-size: 16px;
  top: 5px;
  bottom: 0;
  left: -25px;
  margin: auto 0;
}
.form_area .form_box .inner_box form table tbody tr td .address_box .add_area .add_full {
  width: 100%;
  margin-left: 40px;
}
.form_area .form_box .inner_box form .btn_read {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .form_area .form_box .inner_box form .btn_read {
    font-size: 14px;
  }
}
.form_area .form_box .inner_box form .note_list li {
  font-size: 14px;
  line-height: 2.5rem;
  color: var(--clr-black);
  text-indent: -1rem;
  padding-left: 1rem;
}
.form_area .form_box .inner_box form .form_btn_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .form_area .form_box .inner_box form .form_btn_box {
    padding-top: 50px;
  }
}
.form_area .form_box .inner_box form .form_btn_box .check_txt {
  color: var(--clr-blue);
  display: flex;
  align-items: center;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .form_area .form_box .inner_box form .form_btn_box .check_txt {
    font-size: 13px;
    display: block;
    position: relative;
    padding-left: 30px;
  }
}
.form_area .form_box .inner_box form .form_btn_box .check_txt input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 2px;
  border: 1px solid var(--clr-blue);
  vertical-align: -2px;
  margin-right: 8px;
  background: #fff;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .form_area .form_box .inner_box form .form_btn_box .check_txt input[type=checkbox] {
    position: absolute;
    width: 22px;
    height: 22px;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
.form_area .form_box .inner_box form .form_btn_box .check_txt input[type=checkbox]:checked:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.4em;
  left: 0.6rem;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--clr-blue);
  border-bottom: 2px solid var(--clr-blue);
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .form_area .form_box .inner_box form .form_btn_box .check_txt input[type=checkbox]:checked:before {
    left: 0.4rem;
    top: 0.3em;
  }
}
.form_area .form_box .inner_box form .form_btn_box .check_txt .txt_link {
  position: relative;
  color: var(--clr-blue);
  display: inline-block;
  text-decoration: underline;
  padding-right: 28px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .form_area .form_box .inner_box form .form_btn_box .check_txt .txt_link {
    padding-right: 30px;
  }
}
.form_area .form_box .inner_box form .form_btn_box .check_txt .txt_link:hover {
  text-decoration: none;
}
.form_area .form_box .inner_box form .form_btn_box .check_txt .txt_link .arrow_radius {
  position: absolute;
  background: var(--clr-blue);
  border: 1px solid var(--clr-blue);
  width: 18px;
  height: 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 3px;
  bottom: 0;
  right: 3px;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .form_area .form_box .inner_box form .form_btn_box .check_txt .txt_link .arrow_radius {
    width: 20px;
    height: 20px;
  }
}
.form_area .form_box .inner_box form .form_btn_box .check_txt .txt_link .arrow_radius.window {
  transform: rotate(-45deg);
}
.form_area .form_box .inner_box form .form_btn_box .check_txt .txt_link .arrow_radius.top {
  transform: rotate(-180deg);
}
.form_area .form_box .inner_box form .form_btn_box .check_txt .txt_link .arrow_radius .arrow {
  position: relative;
  display: inline-block;
  width: 11px;
  height: 1px;
  margin: 3.5px 0;
  border-radius: 9999px;
  background-color: var(--clr-white);
}
@media screen and (max-width: 768px) {
  .form_area .form_box .inner_box form .form_btn_box .check_txt .txt_link .arrow_radius .arrow {
    width: 8px;
  }
}
.form_area .form_box .inner_box form .form_btn_box .check_txt .txt_link .arrow_radius .arrow:before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 7px;
  height: 1px;
  border-radius: 9999px;
  background-color: var(--clr-white);
  transform-origin: calc(100% - 1px) 50%;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .form_area .form_box .inner_box form .form_btn_box .check_txt .txt_link .arrow_radius .arrow:before {
    width: 5px;
  }
}
.form_area .form_box .inner_box form .form_btn_box .check_txt .txt_link .arrow_radius .arrow:after {
  content: "";
  position: absolute;
  top: calc(400% - 1px);
  right: 0;
  width: 7px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  background-color: var(--clr-white);
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .form_area .form_box .inner_box form .form_btn_box .check_txt .txt_link .arrow_radius .arrow:after {
    width: 5px;
    top: calc(300% - 1px);
  }
}
.form_area .form_box .inner_box form .form_btn_box .btn_Box {
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .form_area .form_box .inner_box form .form_btn_box .btn_Box {
    padding-top: 40px;
  }
}
.form_area .form_box .inner_box form .form_btn_box .btn_Box .btn_input {
  position: relative;
  background: var(--clr-blue);
  font-family: "Noto Serif JP", serif;
  min-width: 300px;
  max-width: 350px;
  width: 100%;
  height: 80px;
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .form_area .form_box .inner_box form .form_btn_box .btn_Box .btn_input {
    min-width: 250px;
    width: 100%;
    height: 60px;
    font-size: 16px;
  }
}
.form_area .form_box .inner_box form .form_btn_box .btn_Box .btn_input .arrow_radius {
  position: absolute;
  background: var(--clr-white);
  border: 1px solid var(--clr-white);
  width: 25px;
  height: 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 15px;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .form_area .form_box .inner_box form .form_btn_box .btn_Box .btn_input .arrow_radius {
    width: 20px;
    height: 20px;
  }
}
.form_area .form_box .inner_box form .form_btn_box .btn_Box .btn_input .arrow_radius .arrow {
  position: relative;
  display: inline-block;
  width: 11px;
  height: 1px;
  margin: 3.5px 0;
  border-radius: 9999px;
  background-color: var(--clr-blue);
}
@media screen and (max-width: 768px) {
  .form_area .form_box .inner_box form .form_btn_box .btn_Box .btn_input .arrow_radius .arrow {
    width: 8px;
  }
}
.form_area .form_box .inner_box form .form_btn_box .btn_Box .btn_input .arrow_radius .arrow:before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 7px;
  height: 1px;
  border-radius: 9999px;
  background-color: var(--clr-blue);
  transform-origin: calc(100% - 1px) 50%;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .form_area .form_box .inner_box form .form_btn_box .btn_Box .btn_input .arrow_radius .arrow:before {
    width: 5px;
  }
}
.form_area .form_box .inner_box form .form_btn_box .btn_Box .btn_input .arrow_radius .arrow:after {
  content: "";
  position: absolute;
  top: calc(400% - 1px);
  right: 0;
  width: 7px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  background-color: var(--clr-blue);
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .form_area .form_box .inner_box form .form_btn_box .btn_Box .btn_input .arrow_radius .arrow:after {
    width: 5px;
    top: calc(300% - 1px);
  }
}
.form_area .form_box .inner_box form .form_btn_box .btn_Box .btn_input:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.form_area .thanks_box {
  padding: 100px 4% 0;
}
@media screen and (max-width: 768px) {
  .form_area .thanks_box {
    padding: 50px 4% 0;
  }
}
.form_area .thanks_box h3 {
  text-align: center;
}
.form_area .thanks_box .tk_read {
  text-align: center;
  line-height: 3.5rem;
}
@media screen and (max-width: 768px) {
  .form_area .thanks_box .tk_read {
    font-size: 14px;
    line-height: 2.5rem;
  }
}
.form_area .form_btn_box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form_area .form_btn_box .check_txt {
  color: var(--clr-blue);
  display: flex;
  align-items: center;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .form_area .form_btn_box .check_txt {
    font-size: 13px;
    display: block;
    position: relative;
    padding-left: 30px;
  }
}
.form_area .form_btn_box .check_txt input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 2px;
  border: 1px solid var(--clr-blue);
  vertical-align: -2px;
  margin-right: 8px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .form_area .form_btn_box .check_txt input[type=checkbox] {
    position: absolute;
    width: 22px;
    height: 22px;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
.form_area .form_btn_box .check_txt input[type=checkbox]:checked:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.4em;
  left: 0.6rem;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--clr-blue);
  border-bottom: 2px solid var(--clr-blue);
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .form_area .form_btn_box .check_txt input[type=checkbox]:checked:before {
    left: 0.4rem;
    top: 0.3em;
  }
}
.form_area .form_btn_box .check_txt .txt_link {
  position: relative;
  color: var(--clr-blue);
  display: inline-block;
  text-decoration: underline;
  padding-right: 40px;
  font-weight: 500;
}
.form_area .form_btn_box .check_txt .txt_link:hover {
  text-decoration: none;
}
.form_area .form_btn_box .check_txt .txt_link .arrow_radius {
  position: absolute;
  background: var(--clr-blue);
  border: 1px solid var(--clr-blue);
  width: 25px;
  height: 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  right: 5px;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .form_area .form_btn_box .check_txt .txt_link .arrow_radius {
    width: 20px;
    height: 20px;
  }
}
.form_area .form_btn_box .check_txt .txt_link .arrow_radius.window {
  transform: rotate(-45deg);
}
.form_area .form_btn_box .check_txt .txt_link .arrow_radius.top {
  transform: rotate(-180deg);
}
.form_area .form_btn_box .check_txt .txt_link .arrow_radius .arrow {
  position: relative;
  display: inline-block;
  width: 11px;
  height: 1px;
  margin: 3.5px 0;
  border-radius: 9999px;
  background-color: var(--clr-white);
}
@media screen and (max-width: 768px) {
  .form_area .form_btn_box .check_txt .txt_link .arrow_radius .arrow {
    width: 8px;
  }
}
.form_area .form_btn_box .check_txt .txt_link .arrow_radius .arrow:before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 7px;
  height: 1px;
  border-radius: 9999px;
  background-color: var(--clr-white);
  transform-origin: calc(100% - 1px) 50%;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .form_area .form_btn_box .check_txt .txt_link .arrow_radius .arrow:before {
    width: 5px;
  }
}
.form_area .form_btn_box .check_txt .txt_link .arrow_radius .arrow:after {
  content: "";
  position: absolute;
  top: calc(400% - 1px);
  right: 0;
  width: 7px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  background-color: var(--clr-white);
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .form_area .form_btn_box .check_txt .txt_link .arrow_radius .arrow:after {
    width: 5px;
    top: calc(300% - 1px);
  }
}
.form_area .form_btn_box .btn_Box {
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .form_area .form_btn_box .btn_Box {
    padding-top: 40px;
  }
}
.form_area .form_btn_box .btn_Box .btn_input {
  position: relative;
  background: var(--clr-blue);
  font-family: "Noto Serif JP", serif;
  min-width: 300px;
  max-width: 350px;
  width: 100%;
  height: 80px;
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .form_area .form_btn_box .btn_Box .btn_input {
    min-width: 250px;
    width: 100%;
    height: 60px;
    font-size: 16px;
  }
}
.form_area .form_btn_box .btn_Box .btn_input .arrow_radius {
  position: absolute;
  background: var(--clr-white);
  border: 1px solid var(--clr-white);
  width: 25px;
  height: 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 15px;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .form_area .form_btn_box .btn_Box .btn_input .arrow_radius {
    width: 20px;
    height: 20px;
  }
}
.form_area .form_btn_box .btn_Box .btn_input .arrow_radius .arrow {
  position: relative;
  display: inline-block;
  width: 11px;
  height: 1px;
  margin: 3.5px 0;
  border-radius: 9999px;
  background-color: var(--clr-blue);
}
@media screen and (max-width: 768px) {
  .form_area .form_btn_box .btn_Box .btn_input .arrow_radius .arrow {
    width: 8px;
  }
}
.form_area .form_btn_box .btn_Box .btn_input .arrow_radius .arrow:before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 7px;
  height: 1px;
  border-radius: 9999px;
  background-color: var(--clr-blue);
  transform-origin: calc(100% - 1px) 50%;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .form_area .form_btn_box .btn_Box .btn_input .arrow_radius .arrow:before {
    width: 5px;
  }
}
.form_area .form_btn_box .btn_Box .btn_input .arrow_radius .arrow:after {
  content: "";
  position: absolute;
  top: calc(400% - 1px);
  right: 0;
  width: 7px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  background-color: var(--clr-blue);
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .form_area .form_btn_box .btn_Box .btn_input .arrow_radius .arrow:after {
    width: 5px;
    top: calc(300% - 1px);
  }
}
.form_area .form_btn_box .btn_Box .btn_input:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.mfp_buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

#mfp_button_send {
  position: relative;
  background: var(--clr-blue);
  font-family: "Noto Serif JP", serif;
  max-width: 100px;
  width: 100%;
  height: 40px;
  border: none;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.3s;
}
#mfp_button_send:hover {
  opacity: 0.6;
}

#mfp_button_cancel {
  position: relative;
  background: var(--clr-blue);
  font-family: "Noto Serif JP", serif;
  max-width: 100px;
  width: 100%;
  height: 40px;
  border: none;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.3s;
}
#mfp_button_cancel:hover {
  opacity: 0.6;
}