@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "gothic";
  src: url("../fonts/AP-OTF-A1GothicStd-Medium.woff2") format("woff2"), url("../fonts/AP-OTF-A1GothicStd-Medium.woff") format("woff");
}
@font-face {
  font-family: "gothic_bold";
  src: url("../fonts/AP-OTF-A1GothicStd-Bold.woff2") format("woff2"), url("../fonts/AP-OTF-A1GothicStd-Bold.woff") format("woff");
}
@font-face {
  font-family: "tubuten";
  src: url("../fonts/AP-OTF-TsubutenMin2-H.woff2") format("woff2"), url("../fonts/AP-OTF-TsubutenMin2-H.woff") format("woff");
}
body {
  font-family: "gothic";
  background: url(../img/bg.png);
  background-size: cover;
  background-attachment: fixed;
}
body:before {
  content: "";
  background: url(../img/bg_left.png) no-repeat;
  background-size: 100%;
  width: 18vw;
  height: 28vw;
  display: block;
  position: fixed;
  top: 50%;
  left: calc((100% - 500px) / 4);
  transform: translate(-50%, -50%);
}
body:after {
  content: "";
  background: url(../img/bg_right.png) no-repeat;
  background-size: 100%;
  width: 10vw;
  height: 15vw;
  display: block;
  position: fixed;
  top: 50%;
  right: calc((100% - 500px) / 4); /* 右余白の中央 */
  transform: translate(50%, -50%);
}

ul, li {
  list-style: none;
}

img {
  width: 100%;
}

div, p {
  line-height: 1.6;
}

a {
  text-decoration: none;
  transition: 0.2s;
}
a:hover {
  opacity: 0.5;
}

.sp {
  display: none;
}

h2.contents_title {
  text-align: center;
}
h2.contents_title img {
  width: auto;
}

.c_blue {
  color: #138bc5;
}

.c_orange {
  color: #e1550a;
}

.c_yellow {
  color: #fac818;
}

.wrapper {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  position: relative;
}

main {
  max-width: 500px;
  margin: 0 auto;
}
main #mv {
  background: url(../img/mv_bg.png) no-repeat bottom;
  background-size: 100%;
  padding: 30px 0;
  overflow: hidden;
}
main #mv .mv_copy {
  width: 92%;
  margin: auto;
}
main #mv .mv_catch {
  width: 100%;
  padding: 350px 0 0;
  position: relative;
  left: -3px;
}
main #mv .mv_price {
  width: 94%;
  padding: 3px 20px;
  margin: auto;
  background: #e1550a;
  border: 4px solid #fff;
  border-radius: 50px;
  font-family: "tubuten";
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.05em;
  line-height: 1.3;
  display: flex;
  align-items: center;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.3);
  position: relative;
}
main #mv .mv_price .num {
  font-size: 51px;
  transform: scale(1, 1.1);
  margin: 0 2px;
}
main #mv .mv_price:before {
  content: "";
  background: url(../img/mv_price_img.png) no-repeat;
  background-size: 100%;
  width: 117px;
  height: 93px;
  display: block;
  position: absolute;
  top: -24px;
  right: -4px;
}
main #mv .mv_price:after {
  content: "※";
  font-size: 10px;
  position: absolute;
  left: 94px;
  top: 30px;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
}
main #mv .mv_medal {
  width: 92%;
  margin: 30px auto 0;
  display: flex;
  gap: 2%;
}
main #over_1000 {
  width: 82%;
  margin: 30px auto;
}
main .example .example_slide_wrapper {
  position: relative;
  /* 左矢印を反転 */
}
main .example .example_slide_wrapper .example_slide {
  width: 90%;
  margin: 0 auto;
}
main .example .example_slide_wrapper .example_slide .item {
  padding: 20px 0;
}
main .example .example_slide_wrapper .example_slide .item .item_inner {
  padding: 40px 15px 15px;
  border: 2px solid #138bc5;
  border-radius: 20px;
  position: relative;
}
main .example .example_slide_wrapper .example_slide .item .item_inner .title {
  width: 73%;
  background: #138bc5;
  border-radius: 50px;
  font-family: "tubuten";
  padding: 3px 5px;
  font-size: 24px;
  transform: scale(1, 1.1);
  color: #fff;
  text-align: center;
  letter-spacing: -0.08em;
  line-height: 1.3;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: auto;
}
main .example .example_slide_wrapper .example_slide .item .item_inner .img {
  display: flex;
  justify-content: space-between;
  gap: 2%;
}
main .example .example_slide_wrapper .example_slide .item .item_inner .img .before_img,
main .example .example_slide_wrapper .example_slide .item .item_inner .img .after_img {
  position: relative;
}
main .example .example_slide_wrapper .example_slide .item .item_inner .img .before_img:before,
main .example .example_slide_wrapper .example_slide .item .item_inner .img .after_img:before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  margin: auto;
}
main .example .example_slide_wrapper .example_slide .item .item_inner .img .before_img:before {
  background: url(../img/example_before.png) no-repeat;
  background-size: 100%;
  width: 64px;
  height: 24px;
}
main .example .example_slide_wrapper .example_slide .item .item_inner .img .after_img:before {
  background: url(../img/example_after.png) no-repeat;
  background-size: 100%;
  width: 51px;
  height: 24px;
}
main .example .example_slide_wrapper .example_slide .item .item_inner .detail {
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 5px;
  text-align: center;
}
main .example .example_slide_wrapper .example_slide .item .item_inner .detail p {
  color: #138bc5;
  letter-spacing: -0.05em;
  text-align: left;
  display: inline-block;
  line-height: 1.4;
}
main .example .example_slide_wrapper .swiper-button-prev {
  left: 10px;
}
main .example .example_slide_wrapper .swiper-button-next {
  right: 10px;
}
main .example .example_slide_wrapper .swiper-button-prev,
main .example .example_slide_wrapper .swiper-button-next {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #138bc5;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
main .example .example_slide_wrapper .swiper-button-prev::after,
main .example .example_slide_wrapper .swiper-button-next::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid #fff;
  margin-left: 5px;
}
main .example .example_slide_wrapper .swiper-button-prev::after {
  transform: rotate(180deg);
  margin-left: -5px;
}
main .example .example_slide_wrapper .swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  bottom: -5px;
  text-align: center;
}
main .example .example_slide_wrapper .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  background: #ddd;
  opacity: 1;
  width: 10px;
  height: 10px;
}
main .example .example_slide_wrapper .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #138bc5;
}
main .join_friend {
  width: 89.2%;
  margin: 30px auto 0;
}
main #why {
  width: 90%;
  margin: 40px auto 60px;
}
main #why .contents_title {
  width: 93%;
  margin: 0 auto 15px;
}
main #why .contents_title img {
  width: 100%;
}
main #why p {
  color: #323232;
  letter-spacing: -0.05em;
}
main #check {
  background: #fac818;
  position: relative;
  margin: 40px auto 0;
  padding: 40px 0;
}
main #check .contents_title {
  font-family: "tubuten";
  font-size: 40px;
  color: #323232;
  letter-spacing: -0.05em;
  line-height: 1.3;
  margin: 0 0 40px;
}
main #check .contents_title .circle {
  color: #fff;
  font-size: 25px;
  width: 54px;
  height: 54px;
  margin: -60px auto 0;
  background: #138bc5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-10deg);
  position: absolute;
  left: 0;
  right: 0;
}
main #check .contents_title .small {
  display: block;
  font-size: 27px;
  margin: 10px 0 0;
}
main #check .self_check {
  width: 96%;
  background: #fff;
  margin: 0 auto;
  padding: 40px 0px 20px 15px;
  border: 2px solid #ddd;
  position: relative;
}
main #check .self_check .self_check_title {
  width: 178px;
  position: absolute;
  top: -20px;
  left: 10px;
}
main #check .self_check .self_check_title img {
  width: 100%;
}
main #check .self_check .self_check_hint {
  position: absolute;
  top: 20px;
  left: 0;
  transform: translateX(50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}
main #check .self_check .self_check_hint span {
  display: inline-block;
  background: url(../img/self_check_hint_icon.svg) no-repeat;
  background-size: 100%;
  width: 77px;
  height: 97px;
  -webkit-animation: Yshake 2.5s ease-in-out infinite alternate;
          animation: Yshake 2.5s ease-in-out infinite alternate;
}
main #check .self_check .self_check_hint.active {
  opacity: 1;
  transition: opacity 0.3s ease;
}
@-webkit-keyframes Yshake {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes Yshake {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(-10px);
  }
}
main #check .self_check .self_check_list .item {
  display: flex;
  align-items: center;
  font-family: "tubuten";
  font-size: 22px;
  color: #323232;
  letter-spacing: -0.1em;
  background: url(../img/check_line.svg) no-repeat bottom left;
  background-size: 95%;
  padding: 8px 0;
}
main #check .self_check .self_check_list .item .circle_checkbox {
  position: relative;
  width: 40px;
  height: 40px;
  margin: 0 10px 0 0;
  display: inline-block;
  cursor: pointer;
}
main #check .self_check .self_check_list .item .circle_checkbox .circle {
  width: 100%;
  height: 100%;
  display: block;
  border: 3px solid #fac818;
  border-radius: 50%;
  box-sizing: border-box;
}
main #check .self_check .self_check_list .item .circle_checkbox .check {
  position: absolute;
  top: 42%; /* 少し上寄りに配置 */
  left: 59%; /* 少し右寄りに配置 */
  width: 110%; /* 大きめにする */
  height: 126%;
  transform: translate(-50%, -50%);
  stroke: #ccc;
  stroke-width: 4; /* 太め */
  fill: none;
  transition: stroke 0.3s ease;
  pointer-events: none;
}
main #check .self_check .self_check_list .item .circle_checkbox.active .check {
  stroke: #e1550a;
}
main #check .self_check_attention {
  font-family: "tubuten";
  font-size: 27px;
  color: #323232;
  text-align: center;
  letter-spacing: -0.1em;
  margin: 30px 0;
}
main #check .self_check_attention figure {
  width: 91%;
  margin: 20px auto;
}
main #check .self_check_bubble {
  width: 89%;
  margin: auto;
  position: relative;
}
main #check .self_check_bubble .self_check_bubble_inner {
  width: 74%;
  margin: 30px 0 0 auto;
  background: url(../img/self_check_bubble.svg) no-repeat;
  background-size: 100% 100%;
  padding: 32px 11px 26px 21px;
  font-family: "gothic_bold";
  color: #323232;
  text-align: center;
  position: relative;
  line-height: 1.4;
}
main #check .self_check_bubble .self_check_bubble_inner span {
  font-size: 18px;
}
main #check .self_check_bubble:before {
  content: "";
  background: url(../img/self_check_bubble_illust.svg) no-repeat;
  background-size: 100%;
  width: 120px;
  height: 140px;
  position: absolute;
  left: 0;
  top: 10px;
}
main #check .check_message {
  font-family: "tubuten";
  font-size: 27px;
  color: #323232;
  text-align: center;
  letter-spacing: -0.1em;
  margin: 30px auto 0;
}
main #howto .howto_faq {
  background: #ddd;
  padding: 60px 30px 0;
  position: relative;
}
main #howto .howto_faq .question {
  color: #323232;
  font-family: "tubuten";
  text-align: center;
  font-size: 20px;
  background: #fff;
  margin: 0 10px;
  padding: 24px 10px 24px 150px;
  border-radius: 30px;
  letter-spacing: -0.04em;
  position: relative;
}
main #howto .howto_faq .question .inner {
  line-height: 1.3;
}
main #howto .howto_faq .question:before {
  content: "";
  background: url(../img/howto_question.svg) no-repeat;
  background-size: 100%;
  width: 132px;
  height: 160px;
  position: absolute;
  left: 20px;
  top: -6px;
}
main #howto .howto_faq .answer {
  width: 73%;
  margin: 30px 0 0;
  background: url(../img/howto_answer_bubble.svg) no-repeat;
  background-size: 100% 100%;
  padding: 36px 22px 30px 10px;
  font-size: 18px;
  font-family: "gothic_bold";
  color: #e1550a;
  text-align: center;
  position: relative;
}
main #howto .howto_faq .answer .inner {
  line-height: 1.4;
}
main #howto .howto_faq .answer:before {
  content: "";
  background: url(../img/howto_answer.svg) no-repeat;
  background-size: 100%;
  width: 118px;
  height: 118px;
  position: absolute;
  right: -37%;
  top: 0;
}
main #howto .howto_faq .answer_message {
  margin: 40px auto 0;
}
main #howto .howto_faq:before {
  content: "";
  background: url(../img/howto_faq_arrow.svg) no-repeat;
  background-size: 100%;
  width: 100%;
  height: 80px;
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  bottom: -75px;
  margin: auto;
  z-index: 1;
}
main #howto .howto_flow .howto_flow_item {
  padding: 110px 6% 20px;
  color: #fff;
  position: relative;
}
main #howto .howto_flow .howto_flow_item .howto_flow_title {
  font-family: "tubuten";
  font-size: 40px;
  text-align: center;
  letter-spacing: -0.09em;
  line-height: 1.3;
  margin: 0 0 20px;
}
main #howto .howto_flow .howto_flow_item .flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
main #howto .howto_flow .howto_flow_item .flex .img {
  width: 160px;
}
main #howto .howto_flow .howto_flow_item .flex .text {
  width: calc(100% - 160px);
  padding: 0 0 0 30px;
}
main #howto .howto_flow .howto_flow_item .flex .text .check {
  margin: 0 0 8px;
}
main #howto .howto_flow .howto_flow_item .flex .text .check .check_item {
  font-family: "gothic_bold";
  font-size: 24px;
}
main #howto .howto_flow .howto_flow_item .flex .text .check .check_item:before {
  content: "";
  background: url(../img/howto_check_icon.svg) no-repeat;
  background-size: 100%;
  width: 23px;
  height: 26px;
  display: inline-block;
  vertical-align: middle;
}
main #howto .howto_flow .howto_flow_item.howto_flow_zero {
  background: #fac818;
  color: #323232;
}
main #howto .howto_flow .howto_flow_item.howto_flow_zero:before {
  content: "";
  background: url(../img/howto_zero_arrow.svg) no-repeat;
  background-size: 100%;
}
main #howto .howto_flow .howto_flow_item.howto_flow_term {
  background: #e1550a;
}
main #howto .howto_flow .howto_flow_item.howto_flow_term:before {
  content: "";
  background: url(../img/howto_term_arrow.svg) no-repeat;
  background-size: 100%;
}
main #howto .howto_flow .howto_flow_item.howto_flow_last {
  background: #138bc5;
  padding: 110px 6% 60px;
}
main #howto .howto_flow .howto_flow_item.howto_flow_last:before {
  display: none;
}
main #howto .howto_flow .howto_flow_item:before {
  width: 100%;
  height: 80px;
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  bottom: -75px;
  margin: auto;
  z-index: 1;
}
main #howto .for_child_btns {
  width: 86%;
  margin: 0 auto;
  padding: 50px 0;
}
main #howto .for_child_btns .btn p {
  font-family: "tubuten";
  font-size: 28px;
  color: #323232;
  letter-spacing: -0.1em;
  line-height: 1.3;
  text-align: center;
  margin: 0 0 10px;
}
main #howto .for_child_btns .btn + .btn {
  margin: 50px 0 0;
}
main #howto .howto_merit {
  background: #ddd;
  padding: 60px 30px 40px;
  position: relative;
}
main #howto .howto_merit .question {
  color: #323232;
  font-family: "tubuten";
  text-align: center;
  font-size: 20px;
  background: #fff;
  margin: 0 10px;
  padding: 24px 10px 24px 150px;
  border-radius: 30px;
  letter-spacing: -0.04em;
  position: relative;
}
main #howto .howto_merit .question .inner {
  line-height: 1.3;
}
main #howto .howto_merit .question:before {
  content: "";
  background: url(../img/howto_merit_question.svg) no-repeat;
  background-size: 100%;
  width: 130px;
  height: 162px;
  position: absolute;
  left: 20px;
  top: -33px;
}
main #howto .howto_merit .answer {
  width: 73%;
  margin: 30px 0 0;
  background: url(../img/howto_merit_answer_bubble.svg) no-repeat;
  background-size: 100% 100%;
  padding: 32px 39px 28px 33px;
  font-size: 16px;
  font-family: "gothic_bold";
  color: #323232;
  position: relative;
}
main #howto .howto_merit .answer .inner {
  line-height: 1.4;
}
main #howto .howto_merit .answer:before {
  content: "";
  background: url(../img/howto_answer.svg) no-repeat;
  background-size: 100%;
  width: 118px;
  height: 118px;
  position: absolute;
  right: -37%;
  top: 50px;
}
main #merit {
  background: #fac818;
  position: relative;
  padding: 40px 0 0;
}
main #merit .contents_title {
  width: 373px;
  margin: 0 auto;
}
main #merit .contents_title img {
  width: 100%;
  display: block;
}
main #merit .merit_list ul {
  width: 86%;
  margin: auto;
}
main #merit .merit_list ul li {
  position: relative;
  border: 3px solid #e1550a;
  border-radius: 20px;
  background: #fff;
  padding: 25px 18px;
  margin: 0 auto 15px;
}
main #merit .merit_list ul li .num {
  position: absolute;
  background: #e1550a;
  font-family: "tubuten";
  color: #fff;
  font-size: 40px;
  width: 50px;
  height: 50px;
  border-radius: 10px 0 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
}
main #merit .merit_list ul li .merit_list_title {
  font-size: 28px;
  text-align: center;
  color: #e1550a;
  padding: 0 0 0 15px;
  letter-spacing: -0.04em;
}
main #merit .merit_list ul li p {
  margin: 10px auto 0;
  line-height: 1.35;
}
main #merit .merit_list ul li:nth-of-type(even) {
  border: 3px solid #138bc5;
}
main #merit .merit_list ul li:nth-of-type(even) .num {
  background: #138bc5;
}
main #merit .merit_list ul li:nth-of-type(even) .merit_list_title {
  color: #138bc5;
}
main #merit .merit_question {
  background: url(../img/merit_question_bg.svg) no-repeat center;
  background-size: cover;
  padding: 120px 0 100px;
  position: relative;
}
main #merit .merit_question .merit_question_title {
  font-size: 30px;
  text-align: center;
  color: #323232;
  font-family: "tubuten";
  letter-spacing: -0.1em;
}
main #merit .merit_question .merit_question_list {
  width: 85%;
  margin: 0 auto;
  padding: 155px 0 0;
  position: relative;
}
main #merit .merit_question .merit_question_list ul li {
  background: #fff;
  color: #323232;
  text-align: center;
  margin: 0 0 10px;
  padding: 5px 0 0;
  font-family: "gothic_bold";
  font-size: 21px;
  border-radius: 10px;
  position: relative;
}
main #merit .merit_question .merit_question_list:before {
  content: "";
  background: url(../img/merit_question_illust.svg) no-repeat;
  background-size: 100%;
  display: block;
  width: 247px;
  height: 164px;
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  margin: auto;
}
main #merit .merit_answer {
  padding: 100px 0;
  margin: -80px auto 0;
  background: #fff;
}
main #merit .merit_answer .h2_before {
  font-size: 26px;
  text-align: center;
  color: #323232;
  font-family: "tubuten";
}
main #merit .merit_answer .contents_title {
  width: 72%;
  margin: 20px auto;
}
main #merit .merit_answer .h2_after {
  font-size: 33px;
  text-align: center;
  color: #138bc5;
  font-family: "gothic_bold";
  line-height: 1.3;
}
main #merit:after {
  content: "";
  background: url(../img/merit_answer_arrow.svg) no-repeat;
  background-size: 100%;
  display: block;
  width: 48px;
  height: 62px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
main #reason {
  padding: 0 0 20px;
}
main #reason .contents_title {
  width: 87%;
  margin: 0 auto 30px;
}
main #reason .contents_title img {
  width: 100%;
  display: block;
}
main #reason .reason_list {
  width: 94%;
  margin: auto;
}
main #reason .reason_list ul li {
  position: relative;
  padding: 40px 34px;
}
main #reason .reason_list ul li .li_inner {
  position: relative;
}
main #reason .reason_list ul li .li_inner .reason_list_title {
  position: relative;
  font-family: "tubuten";
  transform: scale(1, 1.2);
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: -0.085em;
}
main #reason .reason_list ul li .li_inner p {
  position: relative;
  line-height: 1.31;
  margin: 20px 0;
}
main #reason .reason_list ul li .li_inner p .small {
  font-size: 0.85em;
}
main #reason .reason_list ul li .li_inner:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
}
main #reason .reason_list ul li:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
main #reason .reason_list ul li:after {
  content: "";
  width: 100%;
  height: 4px;
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
}
main #reason .reason_list ul li:nth-of-type(1) .li_inner .reason_list_title {
  color: #323232;
}
main #reason .reason_list ul li:nth-of-type(1) .li_inner:before {
  background: url(../img/reason_01_img.png) no-repeat;
  background-size: 100%;
  width: 121px;
  height: 124px;
  top: -30px;
  right: 20px;
}
main #reason .reason_list ul li:nth-of-type(1):before {
  background: url(../img/reason_01_bg.svg) no-repeat;
  background-size: 100%;
}
main #reason .reason_list ul li:nth-of-type(2) .li_inner .reason_list_title {
  color: #fff;
}
main #reason .reason_list ul li:nth-of-type(2) .li_inner p {
  color: #fff;
}
main #reason .reason_list ul li:nth-of-type(2) .li_inner:before {
  background: url(../img/reason_02_img.svg) no-repeat;
  background-size: 100%;
  width: 91px;
  height: 79px;
  top: -50px;
  right: 0;
}
main #reason .reason_list ul li:nth-of-type(2):before {
  background: url(../img/reason_02_bg.svg) no-repeat;
  background-size: 100%;
}
main #reason .reason_list ul li:nth-of-type(2):after {
  background: #e1550a;
  transform: rotate(-3deg);
  transform-origin: left center;
}
main #reason .reason_list ul li:nth-of-type(3) .li_inner .reason_list_title {
  color: #fff;
  text-shadow: 3px 3px 0 #138bc5, -3px 3px 0 #138bc5, 3px -3px 0 #138bc5, -3px -3px 0 #138bc5, 3px 0 0 #138bc5, -3px 0 0 #138bc5, 0 3px 0 #138bc5, 0 -3px 0 #138bc5;
}
main #reason .reason_list ul li:nth-of-type(3) .li_inner p {
  color: #fff;
}
main #reason .reason_list ul li:nth-of-type(3) .li_inner:before {
  background: url(../img/reason_03_img.png) no-repeat;
  background-size: 100%;
  width: 164px;
  height: 128px;
  top: -40px;
  right: -30px;
}
main #reason .reason_list ul li:nth-of-type(3):before {
  background: url(../img/reason_03_bg.svg) no-repeat;
  background-size: 100%;
}
main #reason .reason_list ul li:nth-of-type(3):after {
  background: #138bc5;
  transform: rotate(3deg);
  transform-origin: right center;
}
main #reason .reason_list ul li:nth-of-type(4) .li_inner .reason_list_title {
  color: #323232;
}
main #reason .reason_list ul li:nth-of-type(4):before {
  background: url(../img/reason_04_bg.svg) no-repeat;
  background-size: 100%;
}
main #reason .reason_list ul li:nth-of-type(4):after {
  background: #fac818;
  transform: rotate(-3deg);
  transform-origin: left center;
}
main #reason .reason_list ul li:nth-of-type(5) .li_inner .reason_list_title {
  color: #fff;
}
main #reason .reason_list ul li:nth-of-type(5) .li_inner p {
  color: #fff;
}
main #reason .reason_list ul li:nth-of-type(5) .li_inner:before {
  background: url(../img/reason_05_img.svg) no-repeat;
  background-size: 100%;
  width: 82px;
  height: 84px;
  top: 0;
  right: 0;
}
main #reason .reason_list ul li:nth-of-type(5):before {
  background: url(../img/reason_05_bg.svg) no-repeat;
  background-size: 100%;
}
main #reason .reason_list ul li:nth-of-type(5):after {
  background: #e1550a;
  transform: rotate(3deg);
  transform-origin: right center;
}
main #price {
  margin: 40px 0;
}
main #price .contents_title {
  font-family: "tubuten";
  font-size: 33px;
  letter-spacing: -0.05em;
  margin: 0 0 40px;
}
main #price .table_section {
  max-width: 100%;
  position: relative;
  background: #fff;
  padding: 0 20px;
}
main #price .table_section .simplebar-track.simplebar-horizontal {
  height: 10px;
  background: #f5f5f5;
  border-radius: 10px;
  top: 0;
}
main #price .table_section .simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  background: #ccc;
  border-radius: 50px;
}
main #price .table_section .simplebar-scrollbar::before {
  background: #ccc;
  border-radius: 10px;
}
main #price .table_section .table_scroll_hint {
  position: absolute;
  top: -30px;
  right: 50%;
  transform: translateX(50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}
main #price .table_section .table_scroll_hint span {
  display: inline-block;
  background: url(../img/price_scroll_hint_icon.svg) no-repeat;
  background-size: 100%;
  width: 77px;
  height: 97px;
  -webkit-animation: shake 2.5s ease-in-out infinite alternate;
          animation: shake 2.5s ease-in-out infinite alternate;
}
main #price .table_section .table_scroll_hint.active {
  opacity: 1;
  transition: opacity 0.3s ease;
}
@-webkit-keyframes shake {
  0% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(-10px);
  }
}
@keyframes shake {
  0% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(-10px);
  }
}
main #price .table_section .table_wrap {
  margin: 10px 0 30px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: -webkit-grab;
  cursor: grab;
}
main #price .table_section .table_wrap::-webkit-scrollbar {
  display: none;
}
main #price .table_section .table_wrap.dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
main #price .table_section .table_wrap .scroll_table {
  border-collapse: collapse;
  min-width: 650px;
  width: 100%;
  margin: 20px 0 0;
  color: #323232;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}
main #price .table_section .table_wrap .scroll_table tr th {
  width: 32%;
  font-family: "gothic_bold";
  background: #fac818;
  font-size: 18px;
  padding: 10px 5px;
  border-right: 2px solid #fff;
  letter-spacing: -0.08em;
}
main #price .table_section .table_wrap .scroll_table tr th .th_title {
  padding: 0 15px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}
main #price .table_section .table_wrap .scroll_table tr th .th_title img {
  display: block;
  height: auto;
}
main #price .table_section .table_wrap .scroll_table tr th .total {
  font-size: 14px;
  writing-mode: vertical-rl;
}
main #price .table_section .table_wrap .scroll_table tr th .num {
  font-size: 33px;
}
main #price .table_section .table_wrap .scroll_table tr th:last-child {
  background: #138bc5;
  color: #fff;
  border-right: none;
}
main #price .table_section .table_wrap .scroll_table tr td {
  background: #ddd;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  text-align: center;
  padding: 10px 4px;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.05em;
}
main #price .table_section .table_wrap .scroll_table tr td .small {
  font-size: 0.8em;
}
main #price .table_section .table_wrap .scroll_table tr td .mini {
  font-size: 0.5em;
}
main #price .table_section .table_wrap .scroll_table tr td.bg_white {
  background: #fff;
}
main #price .table_section .table_wrap .scroll_table tr td:last-child {
  border-right: none;
}
main #price .for_permanent p {
  color: #e1550a;
  font-family: "tubuten";
  font-size: 28px;
  text-align: center;
  margin: 0 0 10px;
  letter-spacing: -0.1em;
}
main #price .for_permanent a {
  display: block;
  width: 81%;
  margin: 0 auto;
}
main #payment {
  color: #323232;
  padding: 0 0 48px;
}
main #payment .contents_title {
  background: #fac818;
  font-size: 28px;
  padding: 20px 0;
}
main #payment .inner {
  width: 89%;
  margin: 0 auto;
}
main #payment .inner .payment_list {
  padding: 20px 0;
}
main #payment .inner .payment_list ul {
  display: flex;
  justify-content: space-between;
}
main #payment .inner .payment_list ul li {
  width: 30%;
  background: #fac818;
  padding: 8px;
  border-radius: 10px;
  font-family: "gothic_bold";
  font-size: 20px;
  text-align: center;
  line-height: 1.1;
  position: relative;
}
main #payment .inner .payment_list ul li figure {
  height: 66px;
  margin: 0 0 13px;
}
main #payment .inner .payment_list ul li figure img {
  width: auto;
}
main #payment .inner .payment_list ul li:first-child {
  font-size: 27px;
  line-height: 1.5;
  padding: 15px 0 0;
}
main #payment .inner .payment_list ul li:last-child {
  background: #e1550a;
  color: #fff;
}
main #payment .inner .payment_list ul li:last-child span {
  position: absolute;
  font-size: 0.85em;
  border: 2px solid #fff;
  border-radius: 50px;
  background: #e1550a;
  display: block;
  width: 100%;
  left: 0;
  right: 0;
  top: -7px;
  padding: 4px 0 0;
}
main #payment .inner .payment_list ul li:last-child figure {
  padding: 14px 0 0 20px;
  margin: 0 0 17px;
}
main #payment .inner .payment_list .loan {
  border: 4px solid #e1550a;
  border-radius: 20px;
  padding: 20px;
  margin: 30px auto 0;
  font-family: "gothic_bold";
  text-align: center;
  letter-spacing: -0.085em;
  font-size: 1.2em;
  position: relative;
}
main #payment .inner .payment_list .loan .loan_title {
  font-size: 36px;
  color: #e1550a;
}
main #payment .inner .payment_list .loan .loan_pattern span {
  color: #e1550a;
  border-bottom: 1px solid #323232;
  margin: 0 2px;
}
main #payment .inner .payment_list .loan .loan_example .c_orange {
  font-size: 1.3em;
}
main #payment .inner .payment_list .loan .loan_example .num {
  font-size: 1.6em;
}
main #payment .inner .payment_list .loan .loan_attention {
  letter-spacing: 0;
  font-family: "gothic";
  font-size: 0.5em;
}
main #payment .inner .payment_list .loan:before {
  content: "";
  background: url(../img/loan_bubble.svg) no-repeat;
  background-size: 100%;
  width: 46px;
  height: 43px;
  display: block;
  position: absolute;
  top: -27px;
  right: 37px;
}
main #payment .inner .deduction {
  background: #ddd;
  padding: 30px 40px;
  border-radius: 10px;
}
main #payment .inner .deduction .deduction_title {
  font-family: "gothic_bold";
  font-size: 26px;
  text-align: center;
  margin: 0 0 10px;
  color: #323232;
}
main #payment .inner .deduction p {
  margin: 0 0 15px;
  color: #000;
}
main #free {
  position: relative;
}
main #free .question {
  background: #138bc5;
  padding: 36px 25px;
}
main #free .question .question_list {
  margin: -50px auto 0;
}
main #free .question .question_list ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main #free .question .question_list ul li {
  background: #fff;
  width: 140px;
  height: 140px;
  color: #138bc5;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1.3;
}
main #free .answer .answer_title {
  background: #138bc5;
  font-family: "tubuten";
  text-align: center;
  font-size: 40px;
  color: #fac818;
  margin: 0 0 110px;
  position: relative;
  transform: scale(1, 1.1);
}
main #free .answer .answer_title:before {
  content: "";
  background: url(../img/free_bg_arrow.svg) no-repeat;
  background-size: 100%;
  width: 100%;
  height: 80px;
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  bottom: -79px;
  margin: auto;
}
main #free .answer .answer_list {
  width: 88%;
  margin: 0 auto 40px;
}
main #free .answer .answer_list ul li {
  position: relative;
  font-size: 28px;
  padding: 18px 0 16px 55px;
  letter-spacing: -0.05em;
  background: url(../img/free_answer_list_border.svg) no-repeat top;
}
main #free .answer .answer_list ul li:before {
  content: "";
  background: url(../img/free_answer_list_check.svg) no-repeat;
  background-size: 100%;
  width: 43px;
  height: 40px;
  position: absolute;
  display: inline-block;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
main #free .answer .answer_list ul li:first-child {
  background: none;
}
main #free .answer .staff {
  position: relative;
}
main #free .answer .staff .staff_title {
  color: #138bc5;
  font-family: "tubuten";
  font-size: 30px;
  text-align: center;
  letter-spacing: -0.085em;
  margin: 0 auto 100px;
}
main #free .answer .staff .staff_message {
  width: 80%;
  margin: auto;
  position: relative;
}
main #free .answer .staff .staff_message .staff_message_title {
  color: #323232;
  font-family: "tubuten";
  font-size: 28px;
  transform: scale(1, 1.1);
  letter-spacing: -0.085em;
  position: relative;
}
main #free .answer .staff .staff_message .staff_message_title:before {
  content: "";
  background: url(../img/staff_message_illust.svg) no-repeat;
  background-size: 100%;
  width: 60px;
  height: 66px;
  display: block;
  position: absolute;
  top: -15px;
  right: 0;
  transform: scale(1, 0.9);
}
main #free .answer .staff .staff_message .flex {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin: 20px auto 0;
}
main #free .answer .staff .staff_message .flex p {
  width: 60%;
  line-height: 1.3;
}
main #free .answer .staff .staff_message .flex .photo {
  width: 40%;
  position: relative;
}
main #free .answer .staff .staff_message .flex .photo:before {
  content: "";
  background: url(../img/staff_img_dot.svg) no-repeat;
  background-size: 100%;
  width: 26px;
  height: 43px;
  display: block;
  position: absolute;
  top: 50px;
  left: 0;
}
main #free .answer .staff:before {
  content: "";
  background: url(../img/staff_bg.svg) no-repeat;
  background-size: 100%;
  width: 91%;
  height: 70%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
main #free .free_flow {
  width: 92%;
  margin: 10px auto;
}
main #free .free_flow .free_flow_title {
  width: 89%;
  margin: 0 auto 40px;
}
main #free .free_flow .free_flow_title .contents_title {
  color: #e1550a;
  font-family: "tubuten";
  font-size: 42px;
  text-align: center;
  padding: 110px 0 30px;
  background: url(../img/title_free_flow.png) no-repeat top;
  background-size: 100%;
  letter-spacing: -0.1em;
}
main #free .free_flow .free_flow_title .dl_list {
  width: 80%;
  margin: 0 auto;
  font-family: "tubuten";
  display: flex;
  justify-content: space-between;
}
main #free .free_flow .free_flow_title .dl_list dl {
  text-align: center;
  font-size: 20px;
  display: flex;
}
main #free .free_flow .free_flow_title .dl_list dl dt {
  color: #138bc5;
  background: #fac818;
  border-radius: 30px;
  padding: 0 8px;
  margin: 0 8px 0 0;
}
main #free .free_flow .free_flow_title .dl_list dl dd {
  color: #323232;
}
main #free .free_flow .free_flow_list ol li {
  border-bottom: 2px solid #e1550a;
  padding: 0 0 15px;
  margin: 0 0 20px;
}
main #free .free_flow .free_flow_list ol li .free_flow_list_title {
  color: #e1550a;
  font-family: "tubuten";
  margin: 0 0 8px;
  font-size: 30px;
  text-align: center;
  letter-spacing: -0.08em;
}
main #free .free_flow .free_flow_list ol li .flex {
  width: 89%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
main #free .free_flow .free_flow_list ol li .flex .img {
  width: 37%;
}
main #free .free_flow .free_flow_list ol li .flex p {
  width: 59%;
}
main #free .free_flow .free_flow_list ol li:last-child {
  border-bottom: none;
}
main #free:before {
  content: "";
  background: url(../img/free_contact_illust.svg) no-repeat;
  background-size: 100%;
  width: 356px;
  height: 154px;
  display: block;
  position: absolute;
  bottom: -173px;
  left: 0;
  right: 0;
  margin: auto;
}
main #free:after {
  content: "";
  background: url(../img/free_contact_illust_hands.svg) no-repeat;
  background-size: 100%;
  width: 115px;
  height: 30px;
  display: block;
  position: absolute;
  bottom: -180px;
  left: 85px;
  z-index: 1;
}
main #medical_zero {
  background: #fac818;
  padding: 30px 0 0;
  color: #fff;
}
main #medical_zero .contents_title {
  width: 88%;
  margin: 0 auto;
}
main #medical_zero .contents_title img {
  width: 100%;
}
main #medical_zero .detail {
  color: #000;
  padding: 0 30px;
}
main #medical_zero .detail .flex {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}
main #medical_zero .detail .flex p {
  width: 59%;
}
main #medical_zero .detail .flex .img {
  width: 40%;
}
main #medical_zero .preortho_zero {
  background: #fff;
  margin: 36px 30px 40px;
  padding: 30px;
  border-radius: 20px;
  position: relative;
}
main #medical_zero .preortho_zero .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main #medical_zero .preortho_zero .flex .img {
  width: 150px;
}
main #medical_zero .preortho_zero p {
  color: #000;
}
main #medical_zero .preortho_zero:before {
  content: "";
  position: absolute;
  background: url(../img/medical_zero_flag.svg) no-repeat;
  background-size: 100%;
  width: 128px;
  height: 57px;
  display: block;
  top: -10px;
  left: 14px;
}
main #medical_zero .preortho_about {
  background: #fff;
  padding: 35px 20px;
  margin: 0 0 50px;
}
main #medical_zero .preortho_about .title {
  font-family: "tubuten";
  text-align: center;
  font-size: 26px;
  color: #323232;
}
main #medical_zero .preortho_about .flex {
  display: flex;
  justify-content: space-between;
  margin: 30px 0 0;
  position: relative;
}
main #medical_zero .preortho_about .flex .item {
  width: 47.4%;
}
main #medical_zero .preortho_about .flex .item h4 {
  font-size: 21px;
  text-align: center;
}
main #medical_zero .preortho_about .flex .item h4 .small {
  font-size: 16px;
}
main #medical_zero .preortho_about .flex .item .img {
  margin: 5px 0;
}
main #medical_zero .preortho_about .flex .item p {
  color: #323232;
  line-height: 1.375;
}
main #medical_zero .preortho_about .flex:before {
  content: "＋";
  position: absolute;
  color: #323232;
  font-family: "tubuten";
  text-align: center;
  top: 0;
  left: 4px;
  right: 0;
  font-size: 30px;
}
main #medical_zero .preortho_5_merit h3 {
  width: 78%;
  margin: auto;
}
main #medical_zero .preortho_5_merit_slide_wrapper {
  position: relative;
  margin: 0 50px;
  /* 左矢印を反転 */
}
main #medical_zero .preortho_5_merit_slide_wrapper .preortho_5_merit_slide .item {
  position: relative;
  color: #000;
}
main #medical_zero .preortho_5_merit_slide_wrapper .preortho_5_merit_slide .item .num {
  color: #e1550a;
  font-size: 92px;
  font-family: "tubuten";
  -webkit-text-stroke: 4px #fff;
  text-stroke: 4px #fff;
  position: absolute;
  top: -32px;
  left: 0;
}
main #medical_zero .preortho_5_merit_slide_wrapper .preortho_5_merit_slide .item .title {
  font-family: "tubuten";
  color: #323232;
  font-size: 20px;
  transform: scale(1, 1.4);
  padding: 0 0 5px 68px;
}
main #medical_zero .preortho_5_merit_slide_wrapper .preortho_5_merit_slide .item:nth-of-type(even) .num {
  color: #138bc5;
}
main #medical_zero .preortho_5_merit_slide_wrapper .swiper-button-prev {
  left: -40px;
}
main #medical_zero .preortho_5_merit_slide_wrapper .swiper-button-next {
  right: -40px;
}
main #medical_zero .preortho_5_merit_slide_wrapper .swiper-button-prev,
main #medical_zero .preortho_5_merit_slide_wrapper .swiper-button-next {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
main #medical_zero .preortho_5_merit_slide_wrapper .swiper-button-prev::after,
main #medical_zero .preortho_5_merit_slide_wrapper .swiper-button-next::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid #fac818;
  margin-left: 5px;
}
main #medical_zero .preortho_5_merit_slide_wrapper .swiper-button-prev::after {
  transform: rotate(180deg);
  margin-left: -5px;
}
main #medical_zero .preortho_5_merit_slide_wrapper .swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  bottom: -30px;
  text-align: center;
}
main #medical_zero .preortho_5_merit_slide_wrapper .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}
main #medical_zero .preortho_5_merit_slide_wrapper .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #e1550a;
}
main #medical_zero .preortho_goal {
  background: #fff;
  margin: 60px 0 0;
  padding: 40px 20px;
}
main #medical_zero .preortho_goal .title {
  text-align: center;
  margin: 0 0 70px;
}
main #medical_zero .preortho_goal .title img {
  width: auto;
}
main #medical_zero .preortho_goal .preortho_goal_list {
  position: relative;
  margin: 0 20px;
}
main #medical_zero .preortho_goal .preortho_goal_list .item {
  margin: 40px auto 0;
  position: relative;
}
main #medical_zero .preortho_goal .preortho_goal_list .item .flex {
  display: flex;
  justify-content: space-between;
}
main #medical_zero .preortho_goal .preortho_goal_list .item .flex .img {
  width: 34%;
}
main #medical_zero .preortho_goal .preortho_goal_list .item .flex .text {
  width: 63%;
}
main #medical_zero .preortho_goal .preortho_goal_list .item .flex .text h4 {
  color: #323232;
  font-family: "tubuten";
  font-size: 28px;
  line-height: 1;
  margin: 0 0 8px;
}
main #medical_zero .preortho_goal .preortho_goal_list .item .flex .text p {
  color: #000;
  line-height: 1.4;
}
main #medical_zero .preortho_goal .preortho_goal_list .item:nth-of-type(1):before {
  content: "START!";
  color: #fac818;
  position: absolute;
  top: -24px;
  left: 80px;
  transform: rotate(-10deg);
}
main #medical_zero .preortho_goal .preortho_goal_list .item:nth-of-type(2):before {
  content: "";
  background: url(../img/preortho_goal_img02_icon.svg) no-repeat;
  background-size: 100%;
  position: absolute;
  width: 30px;
  height: 34px;
  top: -20px;
  left: 110px;
}
main #medical_zero .preortho_goal .preortho_goal_list .item:nth-of-type(3):before {
  content: "GOAL!";
  color: #fac818;
  position: absolute;
  bottom: 20px;
  left: 70px;
  transform: rotate(-20deg);
}
main #medical_zero .preortho_goal .preortho_goal_list:before {
  content: "";
  background: #fac818;
  width: 50px;
  height: 110%;
  display: block;
  position: absolute;
  top: -35px;
  left: 10px;
  margin: auto;
  border-radius: 50px;
}
main #medical_zero .preortho_goal .preortho_goal_change {
  background: #fac818;
  color: #323232;
  padding: 25px 18px 18px;
  margin: 65px auto 0;
  border-radius: 20px;
  text-align: center;
}
main #medical_zero .preortho_goal .preortho_goal_change .title {
  font-family: "tubuten";
  font-size: 34px;
  margin: 0 0 28px;
  letter-spacing: -0.05em;
  display: inline-block;
  background: url(../img/white_wave.svg) no-repeat bottom right;
}
main #medical_zero .preortho_goal .preortho_goal_change .title .small {
  font-size: 24px;
}
main #medical_zero .preortho_goal .preortho_goal_change p {
  width: 80%;
  margin: 14px auto 0;
  text-align: left;
}
main #medical_zero .preortho_goal_faq {
  background: #e5e5e5;
  padding: 60px 30px;
}
main #medical_zero .preortho_goal_faq .question {
  color: #323232;
  font-family: "tubuten";
  text-align: center;
  font-size: 20px;
  background: #fff;
  margin: 0 10px;
  padding: 24px 0 24px 150px;
  border-radius: 30px;
  line-height: 1.3;
  position: relative;
}
main #medical_zero .preortho_goal_faq .question:before {
  content: "";
  background: url(../img/preortho_goal_question.svg) no-repeat;
  background-size: 100%;
  width: 124px;
  height: 150px;
  position: absolute;
  left: 30px;
  top: -6px;
}
main #medical_zero .preortho_goal_faq .answer {
  width: 76%;
  margin: 30px 0 0;
  background: url(../img/preortho_goal_faq_answer_bubble.svg) no-repeat;
  background-size: 100% 100%;
  padding: 35px 50px 31px 42px;
  font-family: "gothic_bold";
  color: #000;
  position: relative;
}
main #medical_zero .preortho_goal_faq .answer .inner {
  line-height: 1.4;
}
main #medical_zero .preortho_goal_faq .answer:before {
  content: "";
  background: url(../img/preortho_goal_answer.svg) no-repeat;
  background-size: 100%;
  width: 118px;
  height: 118px;
  position: absolute;
  right: -32%;
  top: 36px;
}
main #medical_term {
  background: #e1550a;
  padding: 30px 30px 70px;
  color: #fff;
}
main #medical_term .contents_title img {
  width: 100%;
}
main #medical_term .detail .photo {
  margin: 40px auto 0;
}
main #medical_term .invisaline_first {
  background: #fff;
  margin: 36px 0 40px;
  padding: 50px 30px 30px;
  border-radius: 20px;
  position: relative;
}
main #medical_term .invisaline_first .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main #medical_term .invisaline_first .flex .img {
  width: 160px;
}
main #medical_term .invisaline_first p {
  margin: 20px 0 0;
  color: #000;
}
main #medical_term .invisaline_first:before {
  content: "";
  position: absolute;
  background: url(../img/medical_term_flag.svg) no-repeat;
  background-size: 100%;
  width: 128px;
  height: 57px;
  display: block;
  top: -10px;
  left: 14px;
}
main #medical_term .invisaline_6_merit_slide_wrapper {
  position: relative;
  margin: 0 20px;
  /* 左矢印を反転 */
}
main #medical_term .invisaline_6_merit_slide_wrapper .invisaline_6_merit_slide .item {
  position: relative;
}
main #medical_term .invisaline_6_merit_slide_wrapper .invisaline_6_merit_slide .item .num {
  color: #fac818;
  font-size: 92px;
  font-family: "tubuten";
  -webkit-text-stroke: 4px #fff;
  text-stroke: 4px #fff;
  position: absolute;
  top: -32px;
  left: 0;
}
main #medical_term .invisaline_6_merit_slide_wrapper .invisaline_6_merit_slide .item .title {
  font-family: "tubuten";
  color: #fff;
  font-size: 20px;
  transform: scale(1, 1.4);
  padding: 0 0 5px 68px;
}
main #medical_term .invisaline_6_merit_slide_wrapper .invisaline_6_merit_slide .item:nth-of-type(odd) .num {
  color: #138bc5;
}
main #medical_term .invisaline_6_merit_slide_wrapper .swiper-button-prev {
  left: -40px;
}
main #medical_term .invisaline_6_merit_slide_wrapper .swiper-button-next {
  right: -40px;
}
main #medical_term .invisaline_6_merit_slide_wrapper .swiper-button-prev,
main #medical_term .invisaline_6_merit_slide_wrapper .swiper-button-next {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
main #medical_term .invisaline_6_merit_slide_wrapper .swiper-button-prev::after,
main #medical_term .invisaline_6_merit_slide_wrapper .swiper-button-next::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid #e1550a;
  margin-left: 5px;
}
main #medical_term .invisaline_6_merit_slide_wrapper .swiper-button-prev::after {
  transform: rotate(180deg);
  margin-left: -5px;
}
main #medical_term .invisaline_6_merit_slide_wrapper .swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  bottom: -30px;
  text-align: center;
}
main #medical_term .invisaline_6_merit_slide_wrapper .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}
main #medical_term .invisaline_6_merit_slide_wrapper .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fac818;
}
main #medical_item {
  margin: 80px 25px 0;
}
main #medical_item p {
  font-family: "tubuten";
  text-align: center;
  font-size: 26px;
  color: #323232;
  margin: 10px auto;
}
main #medical_flow {
  margin: 100px 25px 0;
  padding: 50px 5px 0;
  position: relative;
  background: url(../img/line_rainbow.svg) no-repeat top;
}
main #medical_flow .medical_flow_area {
  position: relative;
}
main #medical_flow .medical_flow_area .item {
  border: 3px solid #e1550a;
  border-radius: 10px;
  background: #fff;
  padding: 30px 20px 14px;
  margin: 52px auto 0;
  position: relative;
}
main #medical_flow .medical_flow_area .item .title {
  position: absolute;
  width: 320px;
  font-family: "tubuten";
  text-align: center;
  color: #e1550a;
  border: 3px solid #e1550a;
  border-radius: 10px;
  background: #fff;
  font-size: 25px;
  left: 0;
  right: 0;
  top: -30px;
  margin: auto;
}
main #medical_flow .medical_flow_area .item p {
  font-size: 16px;
  text-align: center;
}
main #medical_flow .medical_flow_area .item .flex {
  display: flex;
  justify-content: space-between;
}
main #medical_flow .medical_flow_area .item .flex .photo {
  width: 35%;
}
main #medical_flow .medical_flow_area .item .flex p {
  width: 62%;
  text-align: left;
}
main #medical_flow .medical_flow_area:before {
  content: "";
  background: #e1550a;
  width: 50px;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
main #message {
  position: relative;
  padding: 100px 0;
  margin: 0 25px;
}
main #message .message_area .flex {
  display: flex;
  justify-content: space-between;
  margin: 40px auto;
}
main #message .message_area .flex p {
  width: 54%;
}
main #message .message_area .flex .photo {
  width: 33%;
  margin: auto;
}
main #message .message_area .flex .photo .name {
  margin: 15px 0 0;
  text-align: center;
  font-size: 13px;
}
main #message .message_area .flex.reverse {
  flex-direction: row-reverse;
}
main #message .message_area p {
  color: #323232;
  font-size: 16px;
}
main #message:before, main #message:after {
  content: "";
  background: url(../img/line_message.svg) no-repeat center;
  background-size: 90%;
  width: 100%;
  height: 30px;
  display: block;
  position: absolute;
}
main #message:before {
  top: 40px;
}
main #message:after {
  bottom: 40px;
}
main .contact {
  padding: 30px;
  margin: 0 25px;
  border: 5px solid #e1550a;
  background: #fff;
  border-radius: 10px;
  position: relative;
}
main .contact .holiday {
  background: #e1550a;
  color: #fff;
  font-family: "tubuten";
  font-size: 30px;
  display: inline-block;
  border-radius: 50px;
  padding: 2px 20px;
  text-align: center;
}
main .contact .contact_title {
  color: #e1550a;
  font-family: "gothic_bold";
  font-size: 25px;
  margin: 30px 0;
  position: relative;
}
main .contact .contact_title:before {
  content: "";
  background: url(../img/contact_illust.png) no-repeat;
  background-size: 100%;
  display: block;
  width: 101px;
  height: 177px;
  position: absolute;
  right: -20px;
  top: -60px;
}
main .contact p {
  text-align: center;
}
main .contact .btns a,
main .contact .web a {
  display: block;
}
main .contact .btns a img,
main .contact .web a img {
  display: block;
}
main .contact .web {
  background: url(../img/line_contact.svg) no-repeat top;
  padding: 30px 0 0;
  margin: 20px 0 0;
}
main .contact.free_contact {
  text-align: right;
  margin: 165px 25px 40px;
}
main .contact.free_contact .holiday {
  font-size: 24px;
}
main .contact.free_contact p {
  text-align: left;
  margin: 20px 0;
}
main .contact.free_contact .web p {
  text-align: center;
}
main .contact.merit_contact {
  padding: 24px 30px;
  margin: 0 25px 60px;
}
main .contact.merit_contact .holiday {
  font-size: 28px;
  margin: 0 30px;
}
main .contact.merit_contact .contact_title {
  font-size: 27px;
  color: #000;
  margin: 20px 30px;
}
main .contact.merit_contact .contact_title:before {
  right: -30px;
  top: -100px;
}
main .contact.check_contact {
  margin: 30px 25px 0;
  padding: 15px;
}
main .contact.check_contact .contact_title {
  text-align: center;
  font-size: 28px;
  margin: 15px 0 20px;
  letter-spacing: -0.08em;
}
main .contact.check_contact .contact_title:before {
  display: none;
}
main .contact.check_contact p {
  font-size: 20px;
}
main .contact.check_contact .web {
  padding: 0;
  margin: 10px auto 0;
  background: none;
}
main #qa {
  margin: 50px 25px 0;
}
main #qa .qa_area ul li .box {
  position: relative;
}
main #qa .qa_area ul li .box .question {
  border: 4px solid #138bc5;
  padding: 10px 40px 7px 60px;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}
main #qa .qa_area ul li .box .question:before {
  content: "";
  background: url(../img/icon_q.svg) no-repeat;
  background-size: 100%;
  width: 21px;
  height: 30px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
}
main #qa .qa_area ul li .box .question:after {
  content: "";
  background: url(../img/icon_qa_open.svg);
  background-size: 100%;
  width: 16px;
  height: 14px;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}
main #qa .qa_area ul li .box.active .question:after {
  content: "";
  background: url(../img/icon_qa_close.svg);
  background-size: 100%;
  width: 13px;
  height: 13px;
}
main #qa .qa_area ul li .box .answer {
  width: 96%;
  margin: 0 auto;
  max-height: 0;
  overflow: hidden;
  padding: 0 20px 0 52px;
  border: 4px solid #ddd;
  border-top: none;
  border-radius: 0 0 10px 10px;
  position: relative;
}
main #qa .qa_area ul li .box .answer:before {
  content: "";
  background: url(../img/icon_a.svg) no-repeat;
  background-size: 100%;
  width: 19px;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  left: 20px;
}
main #qa .qa_area ul li .box.active .answer {
  max-height: 500px; /* 十分大きい値を指定（中身の高さより少し大きめ） */
  padding: 20px 20px 20px 52px;
}
main #qa .qa_area ul li + li {
  margin: 15px auto 0;
}

footer {
  max-width: 500px;
  margin: 30px auto 0;
  padding: 30px 0 200px;
  position: relative;
  background: url(../img/line_rainbow.svg) no-repeat top;
}
footer .contents_title {
  margin: 0 0 30px;
}
footer .pref_group {
  display: none;
  /* 初期は非表示 */
  margin: 0;
}
footer .pref_group.active {
  display: block;
}
footer .pref_btn {
  display: block;
  width: 81%;
  margin: 0 auto;
  padding: 2px 30px 2px 10px;
  font-size: 30px;
  font-weight: bold;
  font-family: "tubuten";
  color: #fff;
  background: #138bc5;
  border: none;
  cursor: pointer;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
footer .pref_btn:before {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
footer .pref_btn:after {
  content: "";
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-52%) rotate(0deg);
  transform-origin: center center;
  transition: transform 0.3s ease;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #138bc5;
}
footer .pref_btn.active:after {
  transform: translate(-17%, -42%) rotate(90deg);
}
footer .item {
  width: 92%;
  margin: 0 auto;
}
footer .item .clinic {
  background: #ddd;
  border-radius: 30px;
  padding: 40px 26px 22px;
  margin: 20px auto 30px;
}
footer .item .clinic .clinic_name {
  font-family: "tubuten";
  color: #323232;
  text-align: center;
  font-size: 33px;
  margin: 0 0 30px;
}
footer .item .clinic .clinic_features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-family: "tubuten";
  font-size: 18px;
  margin: 0 0 30px;
}
footer .item .clinic .clinic_features li {
  background: #767777;
  color: #ddd;
  padding: 2px 5px;
  border-radius: 10px;
}
footer .item .clinic .clinic_access {
  display: flex;
  justify-content: space-between;
  gap: 3%;
  margin: 0 0 20px;
}
footer .item .clinic .clinic_detail {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  font-size: 16px;
}
footer .item .clinic .clinic_detail p {
  margin: 0 0 20px;
}
footer .item .clinic .clinic_detail dl {
  display: flex;
  justify-content: space-between;
}
footer .item .clinic .clinic_detail dl dt {
  width: 18%;
}
footer .item .clinic .clinic_detail dl dd {
  width: 81%;
}
footer .item .clinic[data-features~=parking] .feature_parking, footer .item .clinic[data-features~=kids] .feature_kids, footer .item .clinic[data-features~=childcare] .feature_childcare, footer .item .clinic[data-features~=female] .feature_female {
  background: #138bc5;
  color: #fff;
}
footer .item + .item {
  margin: 20px auto 0;
}

#fixed {
  max-width: 500px;
  width: 100%;
  background: #fff;
  padding: 10px 10px 10px;
  position: fixed;
  bottom: 0;
  z-index: 99;
}
#fixed .fixed_title {
  color: #323232;
  font-size: 22px;
  font-family: "gothic_bold";
  text-align: center;
  letter-spacing: -0.07em;
}
#fixed .fixed_title span {
  border-bottom: 1px solid #ff0000;
  color: #ff0000;
}
#fixed ul {
  display: flex;
  justify-content: center;
  margin: 10px auto 0;
}
#gotop {
  position: fixed;
  max-width: 650px;
  width: 100%;
  bottom: 160px;
  right: 0;
  left: 0;
  margin: auto;
  pointer-events: none;
  z-index: 11;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}
#gotop .gotop_btn {
  width: 104px;
  margin: 0 0 0 auto;
  pointer-events: all;
}
#gotop.active {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 900px) {
  body:before {
    content: "";
    display: none;
  }
  body:after {
    content: "";
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none;
  }
  main {
    font-size: 4vw;
  }
  main #mv {
    background: url(../img/mv_bg.png) no-repeat center 30vw;
    background-size: 100%;
  }
  main #mv .mv_catch {
    width: 100%;
    padding: 70vw 0 0;
    position: relative;
    left: -2vw;
  }
  main #mv .mv_price {
    width: 94%;
    padding: 2vw 4vw;
    font-size: 4.4vw;
  }
  main #mv .mv_price .num {
    font-size: 10vw;
    margin: 0 0.4vw;
  }
  main #mv .mv_price:before {
    content: "";
    background: url(../img/mv_price_img.png) no-repeat;
    background-size: 100%;
    width: 23.4vw;
    height: 18.6vw;
    top: -2.8vw;
    right: -1.2vw;
  }
  main #mv .mv_price:after {
    left: 20vw;
    top: 8vw;
  }
  main #mv .mv_medal {
    width: 92%;
    margin: 2vw auto 0;
    display: flex;
    justify-content: center;
    gap: 2%;
  }
  main #mv .mv_medal img {
    width: 30%;
  }
  main .example .example_slide_wrapper .example_slide {
    width: 88%;
  }
  main .example .example_slide_wrapper .example_slide .item {
    padding: 4vw 0;
  }
  main .example .example_slide_wrapper .example_slide .item .item_inner {
    padding: 8vw 3vw 3vw;
    border-radius: 20px;
  }
  main .example .example_slide_wrapper .example_slide .item .item_inner .title {
    width: 80%;
    padding: 0.6vw 1vw;
    font-size: 4.8vw;
    top: -4vw;
  }
  main .example .example_slide_wrapper .example_slide .item .item_inner .img .before_img:before,
main .example .example_slide_wrapper .example_slide .item .item_inner .img .after_img:before {
    top: -2.8vw;
  }
  main .example .example_slide_wrapper .example_slide .item .item_inner .img .before_img:before {
    width: 12.8vw;
    height: 4.8vw;
  }
  main .example .example_slide_wrapper .example_slide .item .item_inner .img .after_img:before {
    width: 10.2vw;
    height: 4.8vw;
  }
  main .example .example_slide_wrapper .example_slide .item .item_inner .detail {
    padding: 2vw;
    font-size: 3.6vw;
  }
  main .example .example_slide_wrapper .swiper-button-prev {
    left: 2vw;
  }
  main .example .example_slide_wrapper .swiper-button-next {
    right: 2vw;
  }
  main .example .example_slide_wrapper .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -4vw;
  }
  main .join_friend {
    margin: 6vw auto 0;
  }
  main #why {
    margin: 8vw auto 12vw;
  }
  main #why .contents_title {
    width: 93%;
    margin: 0 auto 3vw;
  }
  main #check {
    margin: 8vw auto 0;
    padding: 8vw 0;
  }
  main #check .contents_title {
    font-size: 8vw;
    margin: 0 0 8vw;
  }
  main #check .contents_title .circle {
    font-size: 4.4vw;
    width: 10.8vw;
    height: 10.8vw;
    margin: -14vw auto 0;
  }
  main #check .contents_title .small {
    display: block;
    font-size: 5.4vw;
    margin: 2vw 0 0;
  }
  main #check .self_check {
    width: 96%;
    padding: 8vw 0 4vw 3vw;
  }
  main #check .self_check .self_check_title {
    width: 35.6vw;
    top: -4vw;
    left: -2vw;
  }
  main #check .self_check .self_check_hint {
    top: 4vw;
    left: 0;
  }
  main #check .self_check .self_check_hint span {
    width: 15.4vw;
    height: 19.4vw;
  }
  @-webkit-keyframes Yshake {
    0% {
      transform: translateY(-10px);
    }
    50% {
      transform: translateY(100px);
    }
    100% {
      transform: translateY(-10px);
    }
  }
  @keyframes Yshake {
    0% {
      transform: translateY(-10px);
    }
    50% {
      transform: translateY(100px);
    }
    100% {
      transform: translateY(-10px);
    }
  }
  main #check .self_check .self_check_list .item {
    font-size: 4.4vw;
    padding: 1.6vw 0;
  }
  main #check .self_check .self_check_list .item .circle_checkbox {
    width: 8vw;
    height: 8vw;
    margin: 0 2vw 0 0;
  }
  main #check .self_check_attention {
    font-size: 5.4vw;
    margin: 6vw 0;
  }
  main #check .self_check_attention figure {
    margin: 4vw auto;
  }
  main #check .self_check_bubble {
    width: 89%;
    margin: auto;
    position: relative;
  }
  main #check .self_check_bubble .self_check_bubble_inner {
    width: 74%;
    margin: 6vw 0 0 auto;
    background: url(../img/self_check_bubble.svg) no-repeat;
    background-size: 100% 100%;
    padding: 6.4vw 2.2vw 5.2vw 4.2vw;
    font-size: 3.6vw;
  }
  main #check .self_check_bubble .self_check_bubble_inner span {
    font-size: 3.6vw;
  }
  main #check .self_check_bubble:before {
    content: "";
    background: url(../img/self_check_bubble_illust.svg) no-repeat;
    background-size: 100%;
    width: 24vw;
    height: 28vw;
    top: 2vw;
  }
  main #check .check_message {
    font-size: 5.4vw;
    margin: 6vw auto 0;
  }
  main #howto .howto_faq {
    padding: 12vw 6vw 0;
  }
  main #howto .howto_faq .question {
    font-size: 4vw;
    margin: 0 2vw;
    padding: 4.8vw 2vw 4.8vw 30vw;
  }
  main #howto .howto_faq .question:before {
    content: "";
    background: url(../img/howto_question.svg) no-repeat;
    background-size: 100%;
    width: 26.4vw;
    height: 32vw;
    left: 4vw;
    top: -1.2vw;
  }
  main #howto .howto_faq .answer {
    width: 73%;
    margin: 6vw 0 0;
    background: url(../img/howto_answer_bubble.svg) no-repeat;
    background-size: 100% 100%;
    padding: 7.2vw 4.4vw 6vw 2vw;
    font-size: 3.6vw;
  }
  main #howto .howto_faq .answer:before {
    content: "";
    background: url(../img/howto_answer.svg) no-repeat;
    background-size: 100%;
    width: 23.6vw;
    height: 23.6vw;
    right: -37%;
  }
  main #howto .howto_faq .answer_message {
    margin: 8vw auto 0;
  }
  main #howto .howto_faq:before {
    content: "";
    background: url(../img/howto_faq_arrow.svg) no-repeat;
    background-size: 100%;
    height: 16vw;
    bottom: -15vw;
  }
  main #howto .howto_flow .howto_flow_item {
    padding: 22vw 6% 4vw;
  }
  main #howto .howto_flow .howto_flow_item .howto_flow_title {
    font-size: 7.6vw;
    margin: 0 0 4vw;
  }
  main #howto .howto_flow .howto_flow_item .flex .img {
    width: 32vw;
  }
  main #howto .howto_flow .howto_flow_item .flex .text {
    width: calc(100% - 32vw);
    padding: 0 0 0 6vw;
  }
  main #howto .howto_flow .howto_flow_item .flex .text .check {
    margin: 0 0 1.6vw;
  }
  main #howto .howto_flow .howto_flow_item .flex .text .check .check_item {
    font-size: 4.8vw;
  }
  main #howto .howto_flow .howto_flow_item .flex .text .check .check_item:before {
    content: "";
    background: url(../img/howto_check_icon.svg) no-repeat;
    background-size: 100%;
    width: 4.6vw;
    height: 5.2vw;
  }
  main #howto .howto_flow .howto_flow_item .flex .text p {
    font-size: 3.6vw;
    line-height: 1.3;
  }
  main #howto .howto_flow .howto_flow_item.howto_flow_last {
    padding: 22vw 6% 12vw;
  }
  main #howto .howto_flow .howto_flow_item:before {
    height: 16vw;
    bottom: -15vw;
  }
  main #howto .for_child_btns {
    padding: 10vw 0;
  }
  main #howto .for_child_btns .btn p {
    font-size: 5.6vw;
    margin: 0 0 2vw;
  }
  main #howto .for_child_btns .btn + .btn {
    margin: 10vw 0 0;
  }
  main #howto .howto_merit {
    padding: 12vw 6vw 8vw;
  }
  main #howto .howto_merit .question {
    font-size: 4vw;
    margin: 0 2vw;
    padding: 4.8vw 2vw 4.8vw 30vw;
  }
  main #howto .howto_merit .question:before {
    content: "";
    background: url(../img/howto_merit_question.svg) no-repeat;
    background-size: 100%;
    width: 26vw;
    height: 32.4vw;
    left: 4vw;
    top: -6.6vw;
  }
  main #howto .howto_merit .answer {
    margin: 6vw 0 0;
    background: url(../img/howto_merit_answer_bubble.svg) no-repeat;
    background-size: 100% 100%;
    padding: 6.4vw 7.8vw 5.6vw 6.6vw;
    font-size: 3.6vw;
  }
  main #howto .howto_merit .answer:before {
    content: "";
    background: url(../img/howto_answer.svg) no-repeat;
    background-size: 100%;
    width: 23.6vw;
    height: 23.6vw;
    right: -37%;
    top: 10vw;
  }
  main #merit {
    padding: 8vw 0 0;
  }
  main #merit .contents_title {
    width: 74.6vw;
  }
  main #merit .merit_list ul li {
    padding: 5vw 3.6vw;
    margin: 0 auto 3vw;
  }
  main #merit .merit_list ul li .num {
    font-size: 8vw;
    width: 11vw;
    height: 11vw;
  }
  main #merit .merit_list ul li .merit_list_title {
    font-size: 5.6vw;
    padding: 0 0 0 4vw;
  }
  main #merit .merit_list ul li p {
    margin: 2vw auto 0;
  }
  main #merit .merit_question {
    background: url(../img/merit_question_bg.svg) no-repeat;
    background-size: cover;
    padding: 24vw 0 20vw;
    position: relative;
  }
  main #merit .merit_question .merit_question_title {
    font-size: 6vw;
  }
  main #merit .merit_question .merit_question_list {
    width: 85%;
    padding: 31vw 0 0;
  }
  main #merit .merit_question .merit_question_list ul li {
    margin: 0 0 2vw;
    padding: 1vw 0 0;
    font-size: 4.2vw;
  }
  main #merit .merit_question .merit_question_list:before {
    content: "";
    background: url(../img/merit_question_illust.svg) no-repeat;
    background-size: 100%;
    width: 49.4vw;
    height: 32.8vw;
    top: 0.8vw;
  }
  main #merit .merit_answer {
    padding: 20vw 0;
    margin: -16vw auto 0;
  }
  main #merit .merit_answer .h2_before {
    font-size: 5.2vw;
  }
  main #merit .merit_answer .contents_title {
    margin: 4vw auto;
  }
  main #merit .merit_answer .h2_after {
    font-size: 6.6vw;
  }
  main #merit:after {
    content: "";
    background: url(../img/merit_answer_arrow.svg) no-repeat;
    background-size: 100%;
    width: 9.6vw;
    height: 12.4vw;
  }
  main #reason {
    padding: 0 0 4vw;
  }
  main #reason .contents_title {
    width: 87%;
    margin: 0 auto 6vw;
  }
  main #reason .reason_list {
    width: 94%;
    margin: auto;
  }
  main #reason .reason_list ul li {
    padding: 8vw 6vw;
  }
  main #reason .reason_list ul li .li_inner .reason_list_title {
    font-size: 5.8vw;
  }
  main #reason .reason_list ul li .li_inner p {
    margin: 4vw 0;
    font-size: 3.2vw;
  }
  main #reason .reason_list ul li .li_inner p .small {
    font-size: 0.85em;
  }
  main #reason .reason_list ul li:after {
    height: 0.8vw;
    top: -0.4vw;
  }
  main #reason .reason_list ul li:nth-of-type(1) .li_inner:before {
    background: url(../img/reason_01_img.png) no-repeat;
    background-size: 100%;
    width: 24.2vw;
    height: 24.8vw;
    top: -6vw;
    right: 4vw;
  }
  main #reason .reason_list ul li:nth-of-type(2) .li_inner:before {
    background: url(../img/reason_02_img.svg) no-repeat;
    background-size: 100%;
    width: 18.2vw;
    height: 15.8vw;
    top: -10vw;
  }
  main #reason .reason_list ul li:nth-of-type(3) .li_inner:before {
    background: url(../img/reason_03_img.png) no-repeat;
    background-size: 100%;
    width: 32.8vw;
    height: 25.6vw;
    top: -8vw;
    right: -6vw;
  }
  main #reason .reason_list ul li:nth-of-type(5) .li_inner:before {
    background: url(../img/reason_05_img.svg) no-repeat;
    background-size: 100%;
    width: 16.4vw;
    height: 16.8vw;
  }
  main #price {
    margin: 8vw 0;
  }
  main #price .contents_title {
    font-size: 6.6vw;
    margin: 0 0 8vw;
  }
  main #price .table_section {
    max-width: 100%;
    position: relative;
    background: #fff;
    padding: 0 4vw;
  }
  main #price .table_section .table_scroll_hint {
    position: absolute;
    top: -6vw;
  }
  main #price .table_section .table_scroll_hint span {
    background: url(../img/price_scroll_hint_icon.svg) no-repeat;
    background-size: 100%;
    width: 15.4vw;
    height: 19.4vw;
  }
  main #price .table_section .table_wrap {
    margin: 2vw 0 6vw;
  }
  main #price .table_section .table_wrap .scroll_table {
    min-width: 650px;
  }
  main #price .table_section .table_wrap .scroll_table tr th {
    width: 32%;
    font-family: "gothic_bold";
    background: #fac818;
    font-size: 3.6vw;
    padding: 2vw 1vw;
  }
  main #price .table_section .table_wrap .scroll_table tr th .th_title {
    padding: 0 3vw;
    min-height: 11.6vw;
  }
  main #price .table_section .table_wrap .scroll_table tr th .total {
    font-size: 2.8vw;
  }
  main #price .table_section .table_wrap .scroll_table tr th .num {
    font-size: 6.6vw;
  }
  main #price .table_section .table_wrap .scroll_table tr td {
    padding: 2vw 0.8vw;
    font-size: 3.6vw;
  }
  main #price .for_permanent p {
    font-size: 5.6vw;
    margin: 0 0 2vw;
  }
  main #payment {
    padding: 0 0 9.6vw;
  }
  main #payment .contents_title {
    font-size: 5.6vw;
    padding: 4vw 0;
  }
  main #payment .inner .payment_list {
    padding: 4vw 0;
  }
  main #payment .inner .payment_list ul li {
    width: 30%;
    background: #fac818;
    padding: 1.6vw;
    font-size: 4vw;
  }
  main #payment .inner .payment_list ul li figure {
    height: 16.6vw;
    margin: 0 0 2.6vw;
  }
  main #payment .inner .payment_list ul li:first-child {
    font-size: 5.4vw;
    padding: 3vw 0 0;
  }
  main #payment .inner .payment_list ul li:last-child span {
    top: -2.8vw;
  }
  main #payment .inner .payment_list ul li:last-child figure {
    padding: 0 0 0 4vw;
    margin: 0 0 3.4vw;
  }
  main #payment .inner .payment_list .loan {
    padding: 4vw;
    margin: 6vw auto 0;
    font-size: 1em;
  }
  main #payment .inner .payment_list .loan .loan_title {
    font-size: 7.2vw;
  }
  main #payment .inner .payment_list .loan .loan_pattern span {
    margin: 0 0.4vw;
  }
  main #payment .inner .payment_list .loan .loan_example .c_orange {
    font-size: 1.2em;
  }
  main #payment .inner .payment_list .loan .loan_example .num {
    font-size: 1.5em;
  }
  main #payment .inner .payment_list .loan:before {
    content: "";
    background: url(../img/loan_bubble.svg) no-repeat;
    background-size: 100%;
    width: 46px;
    height: 43px;
    top: -6.9vw;
    right: 7.4vw;
  }
  main #payment .inner .deduction {
    padding: 6vw 8vw;
  }
  main #payment .inner .deduction .deduction_title {
    font-size: 5.2vw;
    margin: 0 0 2vw;
  }
  main #payment .inner .deduction p {
    margin: 0 0 3vw;
  }
  main #free .question {
    padding: 7.2vw 5vw;
  }
  main #free .question .question_list {
    margin: -10vw auto 0;
  }
  main #free .question .question_list ul li {
    width: 28vw;
    height: 28vw;
    font-size: 3.2vw;
  }
  main #free .answer .answer_title {
    font-size: 8vw;
    margin: 0 0 22vw;
  }
  main #free .answer .answer_title:before {
    content: "";
    background: url(../img/free_bg_arrow.svg) no-repeat;
    background-size: 100%;
    width: 100%;
    height: 16vw;
    bottom: -15.8vw;
  }
  main #free .answer .answer_list {
    width: 88%;
    margin: 0 auto 8vw;
  }
  main #free .answer .answer_list ul li {
    font-size: 5.6vw;
    padding: 3.6vw 0 3.2vw 11vw;
    background: url(../img/free_answer_list_border.svg) no-repeat top;
  }
  main #free .answer .answer_list ul li:before {
    content: "";
    background: url(../img/free_answer_list_check.svg) no-repeat;
    background-size: 100%;
    width: 8.6vw;
    height: 8vw;
  }
  main #free .answer .staff .staff_title {
    font-size: 6vw;
    margin: 0 auto 20vw;
  }
  main #free .answer .staff .staff_message .staff_message_title {
    font-size: 5.6vw;
  }
  main #free .answer .staff .staff_message .staff_message_title:before {
    content: "";
    background: url(../img/staff_message_illust.svg) no-repeat;
    background-size: 100%;
    width: 12vw;
    height: 13.2vw;
    top: -3vw;
  }
  main #free .answer .staff .staff_message .flex {
    margin: 4vw auto 0;
  }
  main #free .answer .staff .staff_message .flex p {
    width: 77%;
  }
  main #free .answer .staff .staff_message .flex .photo:before {
    width: 5.2vw;
    height: 8.6vw;
    top: 10vw;
  }
  main #free .free_flow {
    width: 92%;
    margin: 12vw auto 2vw;
  }
  main #free .free_flow .free_flow_title {
    margin: 0 auto 8vw;
  }
  main #free .free_flow .free_flow_title .contents_title {
    font-size: 8.4vw;
    padding: 22vw 0 6vw;
  }
  main #free .free_flow .free_flow_title .dl_list dl {
    font-size: 4vw;
  }
  main #free .free_flow .free_flow_title .dl_list dl dt {
    padding: 0 1.6vw;
    margin: 0 1.6vw 0 0;
  }
  main #free .free_flow .free_flow_list ol li {
    padding: 0 0 3vw;
    margin: 0 0 4vw;
  }
  main #free .free_flow .free_flow_list ol li .free_flow_list_title {
    margin: 0 0 1.6vw;
    font-size: 6vw;
  }
  main #free:before {
    content: "";
    background: url(../img/free_contact_illust.svg) no-repeat;
    background-size: 100%;
    width: 71.2vw;
    height: 30.8vw;
    bottom: -34.6vw;
  }
  main #free:after {
    content: "";
    background: url(../img/free_contact_illust_hands.svg) no-repeat;
    background-size: 100%;
    width: 23vw;
    height: 6vw;
    bottom: -36vw;
    left: 17vw;
  }
  main #medical_zero {
    padding: 6vw 0 0;
  }
  main #medical_zero .detail {
    padding: 0 6vw;
  }
  main #medical_zero .detail .flex {
    margin: 4vw 0;
  }
  main #medical_zero .preortho_zero {
    margin: 7.2vw 6vw 8vw;
    padding: 6vw;
  }
  main #medical_zero .preortho_zero .flex .img {
    width: 30vw;
  }
  main #medical_zero .preortho_zero:before {
    content: "";
    background: url(../img/medical_zero_flag.svg) no-repeat;
    background-size: 100%;
    width: 25.6vw;
    height: 11.4vw;
    top: -2vw;
    left: 2.8vw;
  }
  main #medical_zero .preortho_about {
    padding: 7vw 4vw;
    margin: 0 0 10vw;
  }
  main #medical_zero .preortho_about .title {
    font-size: 5.2vw;
  }
  main #medical_zero .preortho_about .flex {
    margin: 6vw 0 0;
  }
  main #medical_zero .preortho_about .flex .item {
    width: 47.4%;
  }
  main #medical_zero .preortho_about .flex .item h4 {
    font-size: 4.2vw;
  }
  main #medical_zero .preortho_about .flex .item h4 .small {
    font-size: 2.8vw;
  }
  main #medical_zero .preortho_about .flex .item .img {
    margin: 1vw 0;
  }
  main #medical_zero .preortho_about .flex:before {
    left: 0.8vw;
    font-size: 6vw;
  }
  main #medical_zero .preortho_5_merit_slide_wrapper {
    margin: 0 10vw;
  }
  main #medical_zero .preortho_5_merit_slide_wrapper .preortho_5_merit_slide .item .num {
    font-size: 18.4vw;
    -webkit-text-stroke: 3px #fff;
    text-stroke: 3px #fff;
    top: -6.4vw;
  }
  main #medical_zero .preortho_5_merit_slide_wrapper .preortho_5_merit_slide .item .title {
    font-size: 4vw;
    transform: scale(1, 1.4);
    padding: 0 0 1vw 13.6vw;
  }
  main #medical_zero .preortho_5_merit_slide_wrapper .swiper-button-prev {
    left: -8vw;
  }
  main #medical_zero .preortho_5_merit_slide_wrapper .swiper-button-next {
    right: -8vw;
  }
  main #medical_zero .preortho_5_merit_slide_wrapper .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -8vw;
  }
  main #medical_zero .preortho_goal {
    margin: 12vw 0 0;
    padding: 8vw 4vw;
  }
  main #medical_zero .preortho_goal .title {
    margin: 0 0 14vw;
  }
  main #medical_zero .preortho_goal .preortho_goal_list {
    margin: 0 4vw;
  }
  main #medical_zero .preortho_goal .preortho_goal_list .item {
    margin: 8vw auto 0;
  }
  main #medical_zero .preortho_goal .preortho_goal_list .item .flex .text h4 {
    font-size: 5.6vw;
    margin: 0 0 1.6vw;
  }
  main #medical_zero .preortho_goal .preortho_goal_list .item:nth-of-type(1):before {
    top: -4.8vw;
    left: 16vw;
  }
  main #medical_zero .preortho_goal .preortho_goal_list .item:nth-of-type(2):before {
    width: 6vw;
    height: 6.8vw;
    top: -4vw;
    left: 22vw;
  }
  main #medical_zero .preortho_goal .preortho_goal_list .item:nth-of-type(3):before {
    bottom: 14vw;
    left: 14vw;
  }
  main #medical_zero .preortho_goal .preortho_goal_list:before {
    width: 10vw;
    height: 110%;
    top: -7vw;
    left: 2vw;
  }
  main #medical_zero .preortho_goal .preortho_goal_change {
    padding: 5vw 3.6vw 3.6vw;
    margin: 13vw auto 0;
  }
  main #medical_zero .preortho_goal .preortho_goal_change .title {
    font-size: 6.8vw;
    margin: 0 0 5.6vw;
    background: url(../img/white_wave.svg) no-repeat bottom right;
    background-size: 54%;
  }
  main #medical_zero .preortho_goal .preortho_goal_change .title .small {
    font-size: 4.8vw;
  }
  main #medical_zero .preortho_goal .preortho_goal_change p {
    width: 86%;
    margin: 2.8vw auto 0;
    font-size: 3.4vw;
  }
  main #medical_zero .preortho_goal_faq {
    padding: 12vw 6vw;
  }
  main #medical_zero .preortho_goal_faq .question {
    font-size: 4vw;
    margin: 0 2vw;
    padding: 4.8vw 0 4.8vw 30vw;
  }
  main #medical_zero .preortho_goal_faq .question:before {
    content: "";
    background: url(../img/preortho_goal_question.svg) no-repeat;
    background-size: 100%;
    width: 24.8vw;
    height: 30vw;
    left: 6vw;
    top: -1.2vw;
  }
  main #medical_zero .preortho_goal_faq .answer {
    width: 76%;
    margin: 6vw 0 0;
    background: url(../img/preortho_goal_faq_answer_bubble.svg) no-repeat;
    background-size: 100% 100%;
    padding: 7vw 8vw 6.2vw 4.4vw;
    font-size: 3.4vw;
  }
  main #medical_zero .preortho_goal_faq .answer:before {
    content: "";
    background: url(../img/preortho_goal_answer.svg) no-repeat;
    background-size: 100%;
    width: 23.6vw;
    height: 23.6vw;
    right: -32%;
    top: 7.2vw;
  }
  main #medical_term {
    padding: 6vw 6vw 14vw;
  }
  main #medical_term .detail .photo {
    margin: 8vw auto 0;
  }
  main #medical_term .invisaline_first {
    margin: 7.2vw 0 8vw;
    padding: 10vw 6vw 6vw;
  }
  main #medical_term .invisaline_first .flex .img {
    width: 32vw;
  }
  main #medical_term .invisaline_first p {
    margin: 4vw 0 0;
  }
  main #medical_term .invisaline_first:before {
    background: url(../img/medical_term_flag.svg) no-repeat;
    background-size: 100%;
    width: 25.6vw;
    height: 11.4vw;
    top: -2vw;
    left: 2.8vw;
  }
  main #medical_term .invisaline_6_merit_slide_wrapper {
    margin: 0 4vw;
  }
  main #medical_term .invisaline_6_merit_slide_wrapper .invisaline_6_merit_slide .item .num {
    font-size: 18.4vw;
    -webkit-text-stroke: 3px #fff;
    text-stroke: 3px #fff;
    top: -6.4vw;
  }
  main #medical_term .invisaline_6_merit_slide_wrapper .invisaline_6_merit_slide .item .title {
    font-size: 4vw;
    padding: 0 0 1vw 13.6vw;
  }
  main #medical_term .invisaline_6_merit_slide_wrapper .swiper-button-prev {
    left: -8vw;
  }
  main #medical_term .invisaline_6_merit_slide_wrapper .swiper-button-next {
    right: -8vw;
  }
  main #medical_term .invisaline_6_merit_slide_wrapper .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -8vw;
  }
  main #medical_item {
    margin: 16vw 5vw 0;
  }
  main #medical_item p {
    font-size: 5.2vw;
    margin: 2vw auto;
  }
  main #medical_flow {
    margin: 20vw 5vw 0;
    padding: 10vw 1vw 0;
    background: url(../img/line_rainbow.svg) no-repeat top;
  }
  main #medical_flow .medical_flow_area .item {
    padding: 6vw 4vw 2.8vw;
    margin: 10.4vw auto 0;
  }
  main #medical_flow .medical_flow_area .item .title {
    width: 64vw;
    font-size: 5vw;
    top: -6vw;
  }
  main #medical_flow .medical_flow_area .item p {
    font-size: 3.2vw;
  }
  main #medical_flow .medical_flow_area:before {
    width: 10vw;
  }
  main #message {
    padding: 20vw 0;
    margin: 0 5vw;
  }
  main #message .message_area .flex {
    margin: 8vw auto;
  }
  main #message .message_area .flex .photo .name {
    margin: 3vw 0 0;
    font-size: 2.6vw;
  }
  main #message .message_area p {
    font-size: 3.2vw;
  }
  main #message:before, main #message:after {
    content: "";
    background: url(../img/line_message.svg) no-repeat center;
    background-size: 90%;
    width: 100%;
    height: 6vw;
  }
  main #message:before {
    top: 8vw;
  }
  main #message:after {
    bottom: 8vw;
  }
  main .contact {
    padding: 6vw;
    margin: 0 5vw;
  }
  main .contact .holiday {
    font-size: 6vw;
    padding: 0.4vw 4vw;
  }
  main .contact .contact_title {
    font-size: 5vw;
    margin: 6vw 0;
  }
  main .contact .contact_title:before {
    content: "";
    background: url(../img/contact_illust.png) no-repeat;
    background-size: 100%;
    width: 20.2vw;
    height: 35.4vw;
    right: -4vw;
    top: -12vw;
  }
  main .contact .web {
    background: url(../img/line_contact.svg) no-repeat top;
    padding: 6vw 0 0;
    margin: 4vw 0 0;
  }
  main .contact.free_contact {
    margin: 33vw 5vw 8vw;
  }
  main .contact.free_contact .holiday {
    font-size: 4.8vw;
  }
  main .contact.free_contact p {
    margin: 4vw 0;
  }
  main .contact.merit_contact {
    padding: 4.8vw 6vw;
    margin: 0 5vw 12vw;
  }
  main .contact.merit_contact .holiday {
    font-size: 5.6vw;
    margin: 0 6vw;
  }
  main .contact.merit_contact .contact_title {
    font-size: 5.4vw;
    margin: 4vw 6vw;
  }
  main .contact.merit_contact .contact_title:before {
    right: -6vw;
    top: -20vw;
  }
  main .contact.check_contact {
    width: 94%;
    margin: 6vw auto 0;
    padding: 3vw;
  }
  main .contact.check_contact .contact_title {
    font-size: 5.6vw;
    margin: 3vw 0 4vw;
  }
  main .contact.check_contact p {
    font-size: 4vw;
  }
  main .contact.check_contact .web {
    margin: 2vw auto 0;
  }
  main #qa {
    margin: 10vw 5vw 0;
  }
  main #qa .qa_area ul li .box .question {
    padding: 2vw 8vw 1.4vw 12vw;
  }
  main #qa .qa_area ul li .box .question:before {
    background: url(../img/icon_q.svg) no-repeat;
    background-size: 100%;
    width: 4.2vw;
    height: 6vw;
    bottom: unset;
    top: 2vw;
    left: 4vw;
  }
  main #qa .qa_area ul li .box .question:after {
    background: url(../img/icon_qa_open.svg);
    background-size: 100%;
    width: 3.2vw;
    height: 2.8vw;
    right: 4vw;
  }
  main #qa .qa_area ul li .box.active .question:after {
    background: url(../img/icon_qa_close.svg);
    background-size: 100%;
    width: 2.6vw;
    height: 2.6vw;
  }
  main #qa .qa_area ul li .box .answer {
    padding: 0 4vw 0 10.4vw;
  }
  main #qa .qa_area ul li .box .answer:before {
    content: "";
    background: url(../img/icon_a.svg) no-repeat;
    background-size: 100%;
    width: 3.8vw;
    height: 6vw;
    left: 4vw;
  }
  main #qa .qa_area ul li .box.active .answer {
    max-height: 100vw;
    padding: 4vw 4vw 4vw 10.4vw;
  }
  main #qa .qa_area ul li + li {
    margin: 3vw auto 0;
  }
  footer {
    margin: 12vw auto 0;
    padding: 12vw 0 60vw;
    position: relative;
    background: url(../img/line_rainbow.svg) no-repeat top;
  }
  footer .contents_title {
    margin: 0 0 6vw;
  }
  footer .pref_btn {
    display: block;
    width: 92%;
    margin: 0 auto;
    padding: 0.4vw 12vw 0.4vw 2vw;
    font-size: 6vw;
  }
  footer .item .clinic {
    padding: 8vw 5.2vw 4.4vw;
    margin: 4vw auto 6vw;
  }
  footer .item .clinic .clinic_name {
    font-size: 6.6vw;
    margin: 0 0 6vw;
  }
  footer .item .clinic .clinic_features {
    gap: 1vw;
    font-size: 3.6vw;
    margin: 0 0 6vw;
  }
  footer .item .clinic .clinic_features li {
    padding: 0.4vw 1vw;
  }
  footer .item .clinic .clinic_access {
    gap: 3%;
    margin: 0 0 4vw;
  }
  footer .item .clinic .clinic_access .clinic_map iframe {
    width: 100%;
  }
  footer .item .clinic .clinic_detail {
    padding: 4vw;
    font-size: 3.2vw;
  }
  footer .item .clinic .clinic_detail p {
    margin: 0 0 4vw;
  }
  footer .item + .item {
    margin: 4vw auto 0;
  }
  #fixed {
    padding: 6vw 2vw 2vw;
  }
  #fixed .fixed_title {
    font-size: 4vw;
  }
  #fixed ul {
    margin: 2vw auto 0;
  }
  #gotop {
    bottom: 30vw;
  }
  #gotop .gotop_btn {
    width: 72px;
  }
}

@media screen and (max-width: 500px) {
  /* スタッフ挨拶 */
  main #free .answer .staff:before {
    content: "";
    background: url(../img/staff_bg.svg) no-repeat;
    background-size: 100%;
    width: 91%;
    height: 62%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
  }

/*# sourceMappingURL=style.css.map */