@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Noto+Sans+JP:wght@400;500;700&display=swap");
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

body {
  font-family: "Noto Sans JP";
  background-color: #F4F4F4;
}

a {
  text-decoration: none;
}

main {
  width: 620px;
  height: 100%;
  margin: 0 auto;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
}

img.pc {
  display: block;
}

img.sp {
  display: none;
}

br.pc {
  display: block;
}

br.sp {
  display: none;
}

.counseling_btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  width: 620px;
  bottom: 30px;
  z-index: 999;
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  /*1で解説*/
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  /*2で解説*/
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  /*3で解説*/
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  /*4で解説*/
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  /*5で解説*/
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  /*6で解説*/
  -webkit-animation-direction: normal;
          animation-direction: normal;
  /*7で解説*/
}

.counseling_btn a {
  padding: 15px 47px;
  background: -webkit-linear-gradient(356.63deg, #8653F1 11.81%, #ED53FB 90.4%);
  background: linear-gradient(93.37deg, #8653F1 11.81%, #ED53FB 90.4%);
  color: #fff;
  border-radius: 999px;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 1px 4px 13px #8888;
          box-shadow: 1px 4px 13px #8888;
}

.counseling_btn a:hover {
  opacity: 0.9;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.counseling_btn a:before {
  content: "";
  position: relative;
  display: inline-block;
  width: 23px;
  height: 30px;
  background: url("../img/counseling_btn.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 4px;
}

@-webkit-keyframes fadeInAnime {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
  20% {
    -webkit-transform: scale(0.85) translateY(0);
            transform: scale(0.85) translateY(0);
  }
  60% {
    -webkit-transform: scale(1.3) translateY(0);
            transform: scale(1.3) translateY(0);
  }
  90% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
  100% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}

@keyframes fadeInAnime {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
  20% {
    -webkit-transform: scale(0.85) translateY(0);
            transform: scale(0.85) translateY(0);
  }
  60% {
    -webkit-transform: scale(1.3) translateY(0);
            transform: scale(1.3) translateY(0);
  }
  90% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
  100% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}

.survey_wrap {
  background: #FFEDED;
  padding: 25px 20px 1px;
}

.survey_head {
  margin-bottom: 48px;
}

.survey_head img {
  margin: 0 auto;
}

.survey_head p {
  font-size: 24px;
  font-weight: 700;
  line-height: 42px;
  text-align: center;
}

.survey_item {
  background: #fff;
  -webkit-box-shadow: 0px 0px 12px 0px #0000001F;
          box-shadow: 0px 0px 12px 0px #0000001F;
  padding: 8px;
  margin-bottom: 54px;
  border-radius: 12px;
}

.survey_item_head {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.04em;
  border-radius: 10px;
  text-align: center;
  background: #000000;
  padding: 14px 0;
}

.survey_item_ques {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.04em;
  text-align: left;
  padding: 20px 0 10px 40px;
  margin-left: 20px;
  position: relative;
}

.survey_item_ques:before {
  content: "Q";
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  left: 0;
  width: 30px;
  height: 30px;
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  background: #FF7383;
  color: #fff;
  border-radius: 999px;
}

.survey_item_ans_subitem {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 12px;
  background: #F7F7F7;
  border-radius: 10px;
  padding: 12px;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.survey_item_ans_subitem:hover {
  opacity: 0.8;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.survey_item_ans_subitem.active {
  background: #FFDEDE;
  -webkit-box-shadow: 0px 0px 12px 0px #FF7383 inset;
          box-shadow: 0px 0px 12px 0px #FF7383 inset;
}

.survey_item_ans_subitem.active .survey_item_ans_subitem_checkbox {
  border: solid 1px #ff7383;
}

.survey_item_ans_subitem.active .survey_item_ans_subitem_checkbox:after {
  content: "";
  width: 21px;
  height: 24px;
  background: url("../img/survey_check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 7px;
  left: 4px;
}

.survey_item_ans_subitem_checkbox {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 4px;
  border: solid 1px #999999;
  margin: 12px;
  position: relative;
}

.survey_item_ans_subitem_text {
  margin: 12px;
  width: 318px;
}

.survey_item_ans_subitem_text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.04em;
}

.survey_item_ans_subitem_text p span {
  display: block;
  font-size: 32px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.04em;
  margin-top: 8px;
}

.survey_item_ans_subitem_text_minitext p {
  font-size: 14px;
}

.survey_item_ans_subitem_img {
  width: 120px;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}

.benefits_wrap {
  background: #fff;
  padding: 55px 0 75px;
}

.benefits_head {
  margin: 0 auto 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.benefits_head span {
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.15em;
  text-align: center;
  position: relative;
}

.benefits_head span:before, .benefits_head span:after {
  content: "";
  width: 22px;
  height: 40px;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
}

.benefits_head span:before {
  background-image: url("../img/benefits_title_left.svg");
  top: 5px;
  left: -50px;
}

.benefits_head span:after {
  background-image: url("../img/benefits_title_right.svg");
  top: 5px;
  right: -50px;
}

.benefits_title {
  font-size: 24px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 16px;
}

.benefits_subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 24px;
}

.benefits_img {
  margin: 20px;
}

.benefits_note {
  margin: 16px 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.treatment_wrap {
  background: #FF7383;
  padding: 55px 0 55px;
}

.treatment_title {
  font-size: 32px;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: 0em;
  text-align: center;
  color: #050505;
}

.treatment_content {
  padding: 0 20px;
}

.treatment_content_item {
  background: #fff;
  margin: 20px 0;
  padding: 20px 40px 40px;
  border-radius: 12px;
}

.treatment_content_item_step {
  margin: 10px 0 10px;
  display: block;
  text-align: center;
}

.treatment_content_item_step span {
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0em;
  background: #000;
  color: #fff;
  padding: 10px 24px;
  border-radius: 20px;
  margin: 0 auto;
}

.treatment_content_item_title {
  font-size: 24px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: 0em;
  text-align: center;
  margin: 16px 0;
}

.treatment_content_item_img {
  width: 100%;
  margin: 16px 0;
}

.treatment_content_item_desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.treatment_content_item_desc span {
  color: #FF7383;
  font-weight: 700;
}

.lfsy_wrap {
  background: #fff;
  padding: 90px 0 90px;
}

.lfsy_head {
  font-size: 24px;
  font-weight: 700;
  line-height: 42px;
  margin-bottom: 16px;
  text-align: center;
}

.lfsy_text {
  font-size: 20px;
  font-weight: 400;
  line-height: 35px;
  text-align: center;
}

.lfsy_underpop {
  width: 250px;
  margin: 0 auto 30px;
}

.lfsy_img {
  padding: 0 70px;
  margin-bottom: 20px;
}

.chance_wrap {
  background: url("../img/chance_bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 55px 0 20px;
}

.chance_head_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 40px;
  margin-bottom: 20px;
}

.chance_head_left {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: 0em;
}

.chance_head_right {
  width: 100px;
}

.chance_list_item {
  background: #fff;
  border: 2px solid #FF7383;
  padding: 10px 25px 11px;
  margin: 8px 20px;
  position: relative;
  border-radius: 999px;
}

.chance_list_item_text {
  position: relative;
  padding-left: 40px;
  font-size: 20px;
  font-weight: 400;
  line-height: 35px;
}

.chance_list_item_text:before {
  content: "";
  background: #ff7383;
  width: 30px;
  height: 30px;
  position: absolute;
  border-radius: 999px;
  left: 0;
  top: 4px;
}

.chance_list_item_text:after {
  content: "";
  background: url("../img/chance_check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 21px;
  position: absolute;
  left: 3px;
  top: 11px;
}

.chance_under {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 20px 40px;
}

.chance_under_icon {
  margin-right: 20px;
}

.chance_under_text {
  font-size: 32px;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: 0em;
  text-align: center;
}

.bihada_wrap {
  background: #fff;
  padding: 95px 0 60px;
}

.bihada_head {
  font-size: 24px;
  font-weight: 400;
  line-height: 42px;
  text-align: center;
  margin-bottom: 32px;
}

.bihada_accent {
  display: block;
  margin: 32px 0 40px;
  position: relative;
}

.bihada_accent_text {
  text-align: center;
  position: relative;
}

.bihada_accent_text span {
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0em;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #FF738366));
  background: -webkit-linear-gradient(transparent 70%, #FF738366 70%);
  background: linear-gradient(transparent 70%, #FF738366 70%);
  position: relative;
}

.bihada_accent_text:before, .bihada_accent_text:after {
  content: "";
  width: 48px;
  height: 44px;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
}

.bihada_accent_text:before {
  background-image: url("../img/bihada_accent_left.svg");
  top: 25px;
  left: 22px;
}

.bihada_accent_text:after {
  background-image: url("../img/bihada_accent_right.svg");
  top: 25px;
  right: 22px;
}

.bihada_img {
  margin: 40px 60px;
}

.whatis_wrap {
  background: #F2F8FC;
  padding: 0px 0 0px;
}

.whatis_title {
  padding: 14px 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 42px;
  text-align: center;
  background: #172F60;
  color: #fff;
}

.whatis_top_title {
  padding-top: 40px;
  margin: 0 40px;
  font-size: 24px;
  font-weight: 700;
  line-height: 42px;
  text-align: left;
  color: #172F60;
}

.whatis_top_subwrap {
  width: 100%;
  height: auto;
  position: relative;
}

.whatis_top_text {
  position: absolute;
  padding-left: 40px;
  width: 50%;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: left;
  top: 24px;
}

.whatis_top_img {
  width: 100%;
}

.whatis_bottom {
  position: relative;
}

.whatis_bottom_text {
  position: absolute;
  top: 95px;
  left: 50%;
  width: 44%;
  color: #172F60;
}

.whatis_bottom_text_head {
  font-size: 20px;
  font-weight: 400;
  line-height: 35px;
}

.whatis_bottom_text_name {
  position: relative;
}

.whatis_bottom_text_kana_left, .whatis_bottom_text_kana_right {
  position: absolute;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.3em;
}

.whatis_bottom_text_kana_left {
  top: -30px;
  left: 40px;
}

.whatis_bottom_text_kana_right {
  top: -30px;
  right: 25px;
}

.whatis_bottom_text_kanji {
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: 0em;
  text-align: center;
  margin: 40px 0;
}

.whatis_bottom_text_profile_title {
  margin: 8px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: center;
  position: relative;
}

.whatis_bottom_text_profile_title:before, .whatis_bottom_text_profile_title:after {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  width: 100px;
  height: 1px;
  background: #172F60;
}

.whatis_bottom_text_profile_title:before {
  left: 0;
}

.whatis_bottom_text_profile_title:after {
  right: 0;
}

.whatis_bottom_text_profile_list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.whatis_bottom_text_profile_list ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 2px;
}

.whatis_bottom_img {
  width: 100%;
}

.clinic_wrap {
  background: #172F60;
  padding: 70px 20px 50px;
}

.clinic_title {
  font-size: 32px;
  font-weight: 700;
  line-height: 56px;
  text-align: center;
  color: #fff;
  margin-bottom: 16px;
}

.clinic_list_item {
  color: #172F60;
  background: #fff;
  border: 1px solid #CCCCCC;
  padding: 40px;
  margin-bottom: 50px;
  border-radius: 12px;
}

.clinic_list_item_title {
  font-size: 24px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: 0em;
  text-align: center;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #ccc;
}

.clinic_list_item_img {
  margin: 24px 0;
}

.clinic_list_item_address {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  margin: 24px 0;
}

.clinic_list_item_tel {
  text-align: center;
}

.clinic_list_item_tel a {
  font-family: Montserrat;
  font-size: 40px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: 0em;
  position: relative;
  color: #497DE2;
  padding-left: 32px;
}

.clinic_list_item_tel a:before {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  background: url("../img/clinic_tel.svg");
  background-size: contain;
  background-repeat: no-repeat;
  left: -12px;
  top: 8px;
}

.comment_wrap {
  background: url("../img/comment_bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 55px 0 30px;
}

.comment_head img {
  margin: 0 auto;
}

.comment_head p {
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  margin: 24px 0 55px;
}

.comment_list {
  padding: 0 20px;
}

.comment_list_item {
  background: #fff;
  margin-bottom: 40px;
  padding: 40px;
  border-radius: 12px;
}

.comment_list_item_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

.comment_list_item_img {
  width: 160px;
  position: relative;
}

.comment_list_item_img_main {
  width: 100%;
}

.comment_list_item_img_circle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #000;
  color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 999px;
  bottom: -20px;
  left: -20px;
}

.comment_list_item_img_circle p {
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.comment_list_item_img_circle p span {
  font-family: Montserrat;
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
}

.comment_list_item_text {
  width: calc(100% - 160px);
  padding-left: 20px;
  font-size: 16px;
  line-height: 28px;
  text-align: left;
}

.comment_list_item_text span {
  font-weight: 700;
  color: #FF7384;
}

.footer {
  background: #000;
}

.footer p {
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0em;
  text-align: center;
  color: #fff;
  padding: 21px 0;
}

@media screen and (max-width: 426px) {
  main {
    width: 100%;
    height: 100%;
    margin: 0 0;
  }
  img.pc {
    display: none;
  }
  img.sp {
    display: block;
  }
  br.pc {
    display: none;
  }
  br.sp {
    display: block;
  }
  .counseling_btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    bottom: 20px;
  }
  .counseling_btn a {
    width: 85%;
    text-align: center;
  }
  .counseling_btn a:hover {
    opacity: 0.6;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  @-webkit-keyframes fadeInAnime {
    0% {
      -webkit-transform: scale(1) translateY(0);
              transform: scale(1) translateY(0);
    }
    20% {
      -webkit-transform: scale(0.9) translateY(0);
              transform: scale(0.9) translateY(0);
    }
    60% {
      -webkit-transform: scale(1.15) translateY(0);
              transform: scale(1.15) translateY(0);
    }
    90% {
      -webkit-transform: scale(1) translateY(0);
              transform: scale(1) translateY(0);
    }
    100% {
      -webkit-transform: scale(1) translateY(0);
              transform: scale(1) translateY(0);
    }
  }
  @keyframes fadeInAnime {
    0% {
      -webkit-transform: scale(1) translateY(0);
              transform: scale(1) translateY(0);
    }
    20% {
      -webkit-transform: scale(0.9) translateY(0);
              transform: scale(0.9) translateY(0);
    }
    60% {
      -webkit-transform: scale(1.15) translateY(0);
              transform: scale(1.15) translateY(0);
    }
    90% {
      -webkit-transform: scale(1) translateY(0);
              transform: scale(1) translateY(0);
    }
    100% {
      -webkit-transform: scale(1) translateY(0);
              transform: scale(1) translateY(0);
    }
  }
  .survey_wrap {
    padding: 25px 24px 1px;
  }
  .survey_head {
    margin-bottom: 16px;
  }
  .survey_head p {
    font-size: 20px;
    line-height: 35px;
  }
  .survey_item {
    padding: 4px;
    margin-bottom: 24px;
  }
  .survey_item_head {
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0.04em;
    padding: 12px;
  }
  .survey_item_ques {
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
    letter-spacing: 0.04em;
    padding: 16px 16px 0px 36px;
    margin-left: 16px;
  }
  .survey_item_ques:before {
    content: "Q";
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    left: 0;
    width: 30px;
    height: 30px;
    font-family: "Montserrat";
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    background: #FF7383;
    color: #fff;
    border-radius: 999px;
  }
  .survey_item_ans_subitem {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 16px;
    margin: 16px 16px;
  }
  .survey_item_ans_subitem.active {
    background: #FFDEDE;
    -webkit-box-shadow: 0px 0px 12px 0px #FF7383 inset;
            box-shadow: 0px 0px 12px 0px #FF7383 inset;
  }
  .survey_item_ans_subitem.active .survey_item_ans_subitem_checkbox {
    border: solid 1px #ff7383;
  }
  .survey_item_ans_subitem.active .survey_item_ans_subitem_checkbox:after {
    content: "";
    width: 21px;
    height: 24px;
    background: url("../img/survey_check.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 7px;
    left: 4px;
  }
  .survey_item_ans_subitem_checkbox {
    margin: 0px;
  }
  .survey_item_ans_subitem_text {
    width: calc(100% - 54px);
    margin: 0px;
    padding-left: 8px;
  }
  .survey_item_ans_subitem_text p {
    font-size: 12px;
    margin: 0px;
    padding: 0;
    line-height: 1;
  }
  .survey_item_ans_subitem_text p span {
    display: block;
    font-size: 20px;
    line-height: 24px;
  }
  .survey_item_ans_subitem_text_minitext p {
    font-size: 12px;
  }
  .survey_item_ans_subitem_img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 8px;
  }
  .benefits_wrap {
    background: #fff;
    padding: 32px 0 55px;
  }
  .benefits_head {
    margin: 0 auto 30px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .benefits_head span {
    font-size: 28px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0.15em;
    text-align: center;
    position: relative;
  }
  .benefits_head span:before, .benefits_head span:after {
    content: "";
    width: 18px;
    height: 32px;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .benefits_head span:before {
    background-image: url("../img/benefits_title_left.svg");
    top: 5px;
    left: -50px;
  }
  .benefits_head span:after {
    background-image: url("../img/benefits_title_right.svg");
    top: 5px;
    right: -50px;
  }
  .benefits_title {
    font-size: 20px;
    line-height: 35px;
    text-align: center;
    margin-bottom: 16px;
  }
  .benefits_subtitle {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 24px;
  }
  .benefits_img {
    margin: 36px 24px 16px;
  }
  .benefits_note {
    font-size: 14px;
    line-height: 25px;
  }
  .treatment_wrap {
    padding: 55px 0 35px;
  }
  .treatment_title {
    font-size: 28px;
    line-height: 49px;
  }
  .treatment_content {
    padding: 0 24px;
  }
  .treatment_content_item {
    background: #fff;
    margin: 30px 0;
    padding: 16px;
    border-radius: 12px;
  }
  .treatment_content_item_step {
    margin: 0px;
  }
  .treatment_content_item_step span {
    font-size: 14px;
    line-height: 14px;
    padding: 8px 16px;
    border-radius: 99px;
  }
  .treatment_content_item_title {
    font-size: 20px;
    line-height: 35px;
    margin: 20px 0;
  }
  .treatment_content_item_img {
    width: 100%;
    margin: 16px 0;
  }
  .treatment_content_item_desc {
    font-size: 14px;
    line-height: 24px;
  }
  .lfsy_wrap {
    background: #fff;
    padding: 55px 0 55px;
  }
  .lfsy_head {
    font-size: 20px;
    line-height: 35px;
  }
  .lfsy_text {
    font-size: 16px;
    line-height: 28px;
  }
  .lfsy_underpop {
    width: 50%;
    margin: 0 auto 24px;
  }
  .lfsy_img {
    padding: 0 24px;
    margin-bottom: 32px;
  }
  .chance_wrap {
    padding: 55px 0 40px;
  }
  .chance_head_wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 24px;
    margin-bottom: 24px;
  }
  .chance_head_left {
    font-size: 24px;
    line-height: 30px;
  }
  .chance_head_right {
    width: 64px;
  }
  .chance_list_item {
    background: #fff;
    border: 2px solid #FF7383;
    padding: 9px 15px 8px;
    margin: 8px 20px;
    position: relative;
    border-radius: 999px;
  }
  .chance_list_item_text {
    position: relative;
    padding-left: 36px;
    font-size: 18px;
    line-height: 31px;
  }
  .chance_list_item_text:before {
    content: "";
    background: #ff7383;
    width: 24px;
    height: 24px;
    position: absolute;
    border-radius: 999px;
    left: 0;
    top: 4px;
  }
  .chance_list_item_text:after {
    content: "";
    width: 20px;
    height: 17px;
    left: 3px;
    top: 9px;
  }
  .chance_under {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin: 24px 24px;
  }
  .chance_under_icon {
    margin-right: 12px;
    width: 40px;
    height: 40px;
  }
  .chance_under_text {
    font-size: 24px;
    line-height: 42px;
  }
  .bihada_wrap {
    background: #fff;
    padding: 64px 0 76px;
  }
  .bihada_head {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 8px;
  }
  .bihada_accent {
    display: block;
    margin: 16px 0 24px;
    position: relative;
  }
  .bihada_accent_text {
    text-align: center;
    position: relative;
  }
  .bihada_accent_text span {
    font-size: 28px;
    line-height: 42px;
  }
  .bihada_accent_text:before, .bihada_accent_text:after {
    content: "";
    width: 39px;
    height: 36px;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .bihada_accent_text:before {
    background-image: url("../img/bihada_accent_left.svg");
    top: 25px;
    left: 22px;
  }
  .bihada_accent_text:after {
    background-image: url("../img/bihada_accent_right.svg");
    top: 25px;
    right: 22px;
  }
  .bihada_accent:before, .bihada_accent:after {
    content: "";
    width: 35px;
    height: 33px;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .bihada_accent:before {
    background-image: url("../img/bihada_accent_right.svg");
    top: 70px;
    left: 42px;
  }
  .bihada_accent:after {
    background-image: url("../img/bihada_accent_left.svg");
    top: 70px;
    right: 42px;
  }
  .bihada_img {
    margin: 24px;
  }
  .whatis_title {
    padding: 14px 0;
    font-size: 16px;
    line-height: 28px;
  }
  .whatis_top_title {
    padding-top: 24px;
    margin: 0 24px;
    font-size: 20px;
    font-weight: 700;
    line-height: 35px;
  }
  .whatis_top_subwrap {
    width: 100%;
    height: auto;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .whatis_top_text {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
    position: relative;
    padding: 0 24px;
    width: 100%;
    font-size: 14px;
    line-height: 25px;
    top: 0;
    margin-top: 16px;
  }
  .whatis_top_img {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
  .whatis_bottom {
    position: relative;
  }
  .whatis_bottom_text {
    position: absolute;
    top: 70px;
    left: 48%;
    width: 48%;
    color: #172F60;
  }
  .whatis_bottom_text_head {
    font-size: 14px;
    line-height: 25px;
  }
  .whatis_bottom_text_name {
    position: relative;
  }
  .whatis_bottom_text_kana_left, .whatis_bottom_text_kana_right {
    position: absolute;
    font-size: 12px;
    line-height: 21px;
    letter-spacing: 0.3em;
  }
  .whatis_bottom_text_kana_left {
    top: -20px;
    left: 25px;
  }
  .whatis_bottom_text_kana_right {
    top: -20px;
    right: inherit;
    left: 100px;
  }
  .whatis_bottom_text_kanji {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 0em;
    text-align: left;
    margin: 35px 0 40px;
  }
  .whatis_bottom_text_profile_title {
    margin: 8px 0;
    text-align: center;
    font-size: 10px;
    font-weight: 400;
    line-height: 25px;
  }
  .whatis_bottom_text_profile_title:before, .whatis_bottom_text_profile_title:after {
    width: 70px;
  }
  .whatis_bottom_text_profile_title:before {
    left: 0;
  }
  .whatis_bottom_text_profile_title:after {
    right: 0;
  }
  .whatis_bottom_text_profile_list ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .whatis_bottom_text_profile_list ul li {
    font-size: 11px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: left;
  }
  .whatis_bottom_img {
    width: 100%;
  }
  .clinic_wrap {
    background: #172F60;
    padding: 65px 20px 50px;
  }
  .clinic_title {
    font-size: 28px;
    line-height: 56px;
    margin-bottom: 32px;
  }
  .clinic_list_item {
    padding: 32px 16px;
    margin-bottom: 22px;
  }
  .clinic_list_item_title {
    font-size: 20px;
    font-weight: 700;
    line-height: 35px;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .clinic_list_item_img {
    margin: 24px 0;
  }
  .clinic_list_item_address {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin: 16px 0;
  }
  .clinic_list_item_tel {
    text-align: center;
  }
  .clinic_list_item_tel a {
    font-family: Montserrat;
    font-size: 28px;
    line-height: 28px;
    padding-left: 24px;
  }
  .clinic_list_item_tel a:before {
    width: 24px;
    height: 24px;
    left: -6px;
    top: 6px;
  }
  .comment_wrap {
    padding: 60px 0 30px;
  }
  .comment_head img {
    margin: 0 auto;
  }
  .comment_head p {
    font-size: 28px;
    line-height: 42px;
    margin: 20px 0 32px;
  }
  .comment_list {
    padding: 0 24px;
  }
  .comment_list_item {
    margin-bottom: 24px;
    padding: 16px;
  }
  .comment_list_item_img {
    width: 90px;
    position: relative;
  }
  .comment_list_item_img_main {
    width: 100%;
  }
  .comment_list_item_img_circle {
    width: 60px;
    height: 60px;
    top: 100px;
    left: -10px;
  }
  .comment_list_item_img_circle p {
    font-size: 12px;
    line-height: 12px;
  }
  .comment_list_item_img_circle p span {
    font-family: Montserrat;
    font-size: 24px;
    line-height: 24px;
  }
  .comment_list_item_text {
    width: calc(100% - 90px);
    padding-left: 16px;
    font-size: 14px;
    line-height: 25px;
  }
  .footer p {
    padding: 12px 0;
  }
}
/*# sourceMappingURL=common.css.map */