@charset "UTF-8";
/* ===================================
共通
=================================== */
main {
  padding-top: 100px;
}

.form_wrap {
  padding: 0 20px;
  padding-top: 67px;
  padding-bottom: 150px;
}
.form_wrap .form_inner {
  position: relative;
  display: flex;
  gap: 100px;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
}

.form_ttl_wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 60px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.form_ttl_wrap .form_ttl {
  font-size: 120px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  font-family: "Italiana", "Shippori Mincho", serif;
}
.form_ttl_wrap .form_ttl_sub {
  margin-top: 24px;
  margin-bottom: 24px;
  text-align: left;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Shippori Mincho", serif;
}
.form_ttl_wrap p.left_text {
  font-size: 14px;
}
.form_ttl_wrap ul li {
  font-size: 14px;
}
.form_ttl_wrap ul li a {
  text-decoration: underline;
}

@media screen and (max-width: 1023px) {
  main {
    padding-top: 20px;
  }
  .form_ttl_wrap {
    position: inherit;
    top: 0;
  }
  .form_wrap .form_inner {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .form_ttl_wrap .form_ttl.en {
    font-size: 140px;
  }
  .form_ttl_wrap .form_ttl_sub {
    font-size: 22px;
  }
}
@media screen and (max-width: 599px) {
  .form_wrap {
    padding-bottom: 100px;
  }
  .form_ttl_wrap .form_ttl.en {
    font-size: 120px;
  }
  .form_ttl_wrap .form_ttl_sub {
    margin-top: 0px;
    font-size: 20px;
  }
}
@media screen and (max-width: 428px) {
  .form_ttl_wrap .form_ttl.en {
    font-size: 100px;
  }
  .form_ttl_wrap .form_ttl_sub {
    font-size: 18px;
  }
}
@media screen and (max-width: 400px) {
  .form_ttl_wrap .form_ttl.en {
    font-size: 90px;
  }
  .form_ttl_wrap .form_ttl_sub {
    font-size: 16px;
  }
}
/* ===================================
フォーム
=================================== */
.mw_wp_form_input {
  width: 800px;
  margin-top: 30px;
}
.mw_wp_form_input .form_item {
  margin-bottom: 60px;
}

.f_error {
  margin-top: 10px;
}
.f_error .error {
  color: #F53F33 !important;
}

.form_item .f_ttl {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5em;
}
.form_item .f_ttl .required_txt {
  display: block;
  background-color: #F53F33;
  border-radius: 20px;
  margin-left: 10px;
  padding: 5px 10px;
  color: #fff;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
}
.form_item .f_ttl .option_txt {
  display: block;
  background-color: #b4b3b1;
  border-radius: 20px;
  margin-left: 10px;
  padding: 5px 10px;
  color: #fff;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
}

.check_input_wrap .f_input > span {
  margin-bottom: 19px;
}
.check_input_wrap .f_input label input[type=checkbox],
.check_input_wrap .f_input label input[type=radio] {
  display: none;
}
.check_input_wrap .f_input label input[type=checkbox] + span,
.check_input_wrap .f_input label input[type=radio] + span {
  position: relative;
  cursor: pointer;
  display: block;
  padding: 1px;
  padding-left: 34px;
  word-break: break-all;
  line-height: 1.4em;
}
.check_input_wrap .f_input label input[type=checkbox] + span::before,
.check_input_wrap .f_input label input[type=radio] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 100%;
  border: 1px solid #CEC9C1;
  background-color: #fff;
}
.check_input_wrap .f_input label input[type=checkbox] + span::after,
.check_input_wrap .f_input label input[type=radio] + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  transform: unset;
  width: 14px;
  height: 14px;
  border-radius: 100%;
  background-color: #ED8423;
  opacity: 0;
  transition: 0.3s;
}
.check_input_wrap .f_input label input[type=checkbox]:checked + span,
.check_input_wrap .f_input label input[type=radio]:checked + span {
  position: relative;
  cursor: pointer;
  display: block;
  padding: 1px;
  padding-left: 34px;
  line-height: 1.4em;
}
.check_input_wrap .f_input label input[type=checkbox]:checked + span::before,
.check_input_wrap .f_input label input[type=radio]:checked + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 100%;
  border: 1px solid #CEC9C1;
  background-color: #fff;
}
.check_input_wrap .f_input label input[type=checkbox]:checked + span::after,
.check_input_wrap .f_input label input[type=radio]:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  transform: unset;
  width: 14px;
  height: 14px;
  border-radius: 100%;
  background-color: #ED8423;
  opacity: 1;
}

.form_item .f_input_wrap .f_input input[type=text] {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #CEC9C1;
  border-radius: 8px;
  background-color: #fff;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 400;
}
.form_item .f_input_wrap .f_input input[type=text]::-moz-placeholder {
  color: #b4b3b1;
}
.form_item .f_input_wrap .f_input input[type=text]::placeholder {
  color: #b4b3b1;
}
.form_item .f_input_wrap .f_input textarea {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #CEC9C1;
  border-radius: 8px;
  background-color: #fff;
  width: 100%;
  padding: 15px 20px;
  resize: vertical;
  font-size: 16px;
  font-weight: 400;
}
.form_item .f_input_wrap .f_input textarea::-moz-placeholder {
  color: #b4b3b1;
}
.form_item .f_input_wrap .f_input textarea::placeholder {
  color: #b4b3b1;
}

.form_submit {
  margin-top: 80px;
}
.form_submit .form_caution_txt {
  text-align: center;
  color: #ED8423;
  font-size: 12px;
  font-weight: 400;
}
.form_submit .form_caution_txt a {
  text-decoration: underline;
  transition: 0.3s;
}
.form_submit .form_caution_txt a::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: text-bottom;
  margin: 0 2px;
  background-image: url(../img/common/external_icon_o.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.form_submit .form_caution_txt a:hover {
  opacity: 0.6;
}
.form_submit input[type=submit] {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-top: 20px;
  padding: 18px 14px;
  width: 100%;
  border: 1px solid #ED8423;
  border-radius: 200px;
  background-color: #ED8423;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s;
}
.form_submit input[type=submit]:hover {
  background-color: #fff;
  color: #ED8423;
}

@media screen and (max-width: 1023px) {
  .mw_wp_form_input {
    width: 100%;
    margin-top: 100px;
  }
}
@media screen and (max-width: 500px) {
  .mw_wp_form_input {
    margin-top: 50px;
  }
}
/* ===================================
サンクスページ
=================================== */
body {
  background: #FBFBFB;
}

.noise_bg::after {
  display: none !important;
}

.thaks_wrap {
  min-height: 75vh;
  position: relative;
  padding-bottom: 75px;
  box-sizing: border-box;
  padding: 60px 20px 150px;
  text-align: center;
}
.thaks_wrap .notice {
  font-size: 90%;
}

.thanks_heading {
  margin-bottom: 40px;
  font-family: "Shippori Mincho", serif;
  font-size: 32px;
  letter-spacing: 0.05em;
}

.back_btn a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto;
  padding: 10px 40px 9px;
  border-radius: 200px;
  background: #333;
  border: 1px solid #333;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: 0.3s;
}
.back_btn a:hover {
  background: #FBFBFB;
  color: #111;
  transition: 0.3s;
}

.thanls_footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 25px 30px;
  background-color: #111111;
}

@media screen and (max-width: 767px) {
  .thanks_heading {
    margin-bottom: 20px;
    font-size: 24px;
  }
  .thanks_text {
    text-align: left;
    font-size: 14px;
  }
}
@media screen and (max-width: 599px) {
  footer .footer_inner {
    flex-direction: inherit;
    align-items: inherit;
  }
  footer .footer_inner .copy_txt {
    padding: 0;
  }
}
/* ===================================
資料請求
=================================== */
.reqForom_wrap {
  padding-top: 0;
}

.ly_reqTtlWrapper {
  padding-top: 80px;
  padding-inline: 24px;
  margin-bottom: 160px;
  max-width: 1240px;
  margin-inline: auto;
}
@media screen and (max-width: 590px) {
  .ly_reqTtlWrapper {
    margin-bottom: 100px;
  }
}
.ly_reqTtlWrapper .el_reqTtlEn {
  font-size: 160px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  font-family: "Italiana", "Shippori Mincho", serif;
  font-style: normal;
}
@media screen and (max-width: 590px) {
  .ly_reqTtlWrapper .el_reqTtlEn {
    font-size: 90px;
  }
}
@media screen and (max-width: 370px) {
  .ly_reqTtlWrapper .el_reqTtlEn {
    font-size: 60px;
  }
}
.ly_reqTtlWrapper .el_reqSybTtl {
  margin-top: 29px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.1em;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 590px) {
  .ly_reqTtlWrapper .el_reqSybTtl {
    font-size: 16px;
  }
}

.bl_reqSticky {
  position: -webkit-sticky;
  position: sticky;
  top: 60px;
  max-width: 518px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 1024px) {
  .bl_reqSticky {
    position: relative;
    top: 0;
    max-width: 100%;
  }
}
.bl_reqSticky .el_reqAboutTxt {
  color: #333;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 46px;
}
.bl_reqSticky .ly_reqImgList {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.f_clinic_selectBox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #CEC9C1;
  border-radius: 8px;
  background-color: #fff;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 400;
}

.form_submit input[type=submit] {
  margin-bottom: 20px;
}

.el_requestAgreeTxt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.01em;
}
.el_requestAgreeTxt a {
  color: #1D9BF0;
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

/*===================================== 
Thanks
====================================== */
.ly_reqThanksWrapper {
  padding-bottom: 190px;
  padding-inline: 20px;
}
.ly_reqThanksWrapper .ly_reqThanksWrapper_inner {
  max-width: 1240px;
  margin-inline: auto;
}

.bl_reqThanksTxtWrapper {
  display: flex;
  flex-flow: column;
  gap: 48px;
  margin-bottom: 100px;
}
.bl_reqThanksTxtWrapper .el_reqThanksTxtWrapper_mainTxt {
  text-align: center;
  color: #333;
  font-family: "Shippori Mincho";
  font-size: 2.625rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 890px) {
  .bl_reqThanksTxtWrapper .el_reqThanksTxtWrapper_mainTxt {
    line-height: 1.5;
  }
}
@media screen and (max-width: 510px) {
  .bl_reqThanksTxtWrapper .el_reqThanksTxtWrapper_mainTxt {
    font-size: 2rem;
  }
}
@media screen and (max-width: 400px) {
  .bl_reqThanksTxtWrapper .el_reqThanksTxtWrapper_mainTxt {
    font-size: 1.5rem;
  }
}
.bl_reqThanksTxtWrapper .el_reqThanksTxtWrapper_mainTxt br {
  display: none;
}
@media screen and (max-width: 890px) {
  .bl_reqThanksTxtWrapper .el_reqThanksTxtWrapper_mainTxt br {
    display: block;
  }
}
.bl_reqThanksTxtWrapper .el_reqThanksTxtWrapper_subTxt {
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 400px) {
  .bl_reqThanksTxtWrapper .el_reqThanksTxtWrapper_subTxt {
    font-size: 12px;
  }
}
.bl_reqThanksTxtWrapper .el_reqThanksTxtWrapper_subTxt .spBr {
  display: none;
}
@media screen and (max-width: 750px) {
  .bl_reqThanksTxtWrapper .el_reqThanksTxtWrapper_subTxt .spBr {
    display: block;
  }
}
.bl_reqThanksTxtWrapper .el_reqThanksTxtWrapper_subTxt .min_spBr {
  display: none;
}
@media screen and (max-width: 450px) {
  .bl_reqThanksTxtWrapper .el_reqThanksTxtWrapper_subTxt .min_spBr {
    display: block;
  }
}

.ly_requestList {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 26px;
  margin-bottom: 80px;
}
@media screen and (max-width: 970px) {
  .ly_requestList {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ly_requestList .ly_requestList_item .bl_requestItem_ttl {
  display: grid;
  grid-template-columns: 32px auto;
  align-items: center;
  gap: 10px;
  padding-block: 10px;
}
.ly_requestList .ly_requestList_item .bl_requestItem_ttl .bl_requestItemTtl_img {
  display: block;
}
.ly_requestList .ly_requestList_item .bl_requestItem_ttl .bl_requestItemTtl_txt {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}
.ly_requestList .ly_requestList_item .bl_requestItem_img {
  display: block;
  margin-bottom: 18px;
}
.ly_requestList .ly_requestList_item .bl_requestItem_button {
  cursor: pointer;
  width: calc(100% - 36px);
  display: grid;
  grid-template-columns: auto 10px;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-inline: 18px;
  padding-block: 14px;
  border-radius: 200px;
  border: none;
  background-color: #333;
  transition: all 0.5s ease;
}
.ly_requestList .ly_requestList_item .bl_requestItem_button .el_requestButton_txt {
  display: block;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 1100px) {
  .ly_requestList .ly_requestList_item .bl_requestItem_button .el_requestButton_txt {
    font-size: 12px;
  }
}
@media (hover: hover) {
  .ly_requestList .ly_requestList_item .bl_requestItem_button:hover {
    opacity: 0.8;
    transition: all 0.5s ease;
  }
}

.bl_reqBakcBtn {
  position: relative;
  display: grid;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  grid-template-columns: 12px auto;
  align-items: center;
  gap: 8px;
  padding-inline: 16px;
  transition: all 0.5s ease;
}
.bl_reqBakcBtn ::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 8px;
  border-block: 1px solid #000;
  border-right: 1px solid #000;
}
.bl_reqBakcBtn ::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 8px;
  border-block: 1px solid #000;
  border-left: 1px solid #000;
}
.bl_reqBakcBtn .bl_reqBakcBtn_icon {
  display: block;
}
.bl_reqBakcBtn .bl_reqBakcBtn_txt {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

@media (hover: hover) {
  .bl_reqBakcBtn:hover {
    opacity: 0.8;
    transition: all 0.5s ease;
  }
}