.flex {
  display: flex;
}

.justify-start {
  justify-content: start;
}

.justify-end {
  justify-content: end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.items-stretch {
  align-items: stretch;
}

.items-start {
  align-items: start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: end;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.Sp {
  display: none;
}

.Pc {
  display: block;
}

.Tb {
  display: none;
}

@media (max-width: 1100px) {
  .Tb {
    display: block;
  }
}

@media (max-width: 768px) {
  .Sp {
    display: block;
  }

  .Pc {
    display: none;
  }
}

.subTitle {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}

.subTitle-marginT {
  margin-top: 50px;
}

.subTitle_text {
  margin: 0 auto;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  color: #FF6C00;
  padding: 0 1.5px;
  line-height: 1.2;
}

.subTitle_text-padding20 {
  padding: 0 25px 20px;
}

.subTitle_text-padding15 {
  padding: 0 25px 15px;
}

.subTitle_text-big {
  font-size: 3.6rem;
  padding-bottom: 25px;
}

.subTitle_img {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
}

.title {
  text-align: center;
}

.title_heading {
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.07em;
}

.title_text {
  font-weight: bold;
  color: #FF6C00;
}

@media (max-width: 768px) {
  .subTitle_text {
    font-size: 2.4rem;
    padding: 0;
  }

  .subTitle_text-padding {
    padding: 0 25px;
  }

  .subTitle_text-big {
    font-size: 2.2rem;
    padding-bottom: 17.5px;
  }

  .subTitle_text-padding20 {
    padding: 0 20px 20px;
    line-height: 1.2;
  }

  .subTitle_text-padding15 {
    padding: 0 20px 15px;
  }

  .title_heading {
    font-size: 3.2rem;
  }

  .title_text {
    font-size: 1.6rem;
  }
}

.cta {
  background-image: url("../img/lp/cta_background.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  padding: 50px 0;
}

.cta_btn {
  display: block;
  max-width: 384px;
  width: calc(50% - 25px);
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.0862745098);
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 30px;
  padding: 15px 0;
  position: relative;
}

.cta_btn-white {
  background: white;
  color: #FF6C00;
}

.cta_btn-green {
  background: #01B202;
  color: white;
  font-size: 1.8rem;
}

.cta_btn-orange {
  background: #4182E2;
  /* background: #1BAE93; */
  /* background: linear-gradient(to right, #1BAE93, #178981); */
}

.cta_btn-green span {
  position: absolute;
  content: "";
  left: 50%;
  width: 85%;
  padding: 5px 15px;
  left: 50%;
  top: -45px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background: white;
  border: 2px solid #01B202;
  color: #01B202;
  display: block;
}

.cta_btn-green span:after,
.cta_btn-green span:before {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
}

.cta_btn-green span:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-width: 11px;
  border-bottom-width: 11px;
  border-left-width: 13px;
  border-right-width: 13px;
  margin-left: -13px;
  border-top-color: #FFFFFF;
}

.cta_btn-green span:before {
  border-color: rgba(255, 0, 0, 0);
  border-top-width: 13.5px;
  border-bottom-width: 13.5px;
  border-left-width: 16px;
  border-right-width: 16px;
  margin-left: -16px;
  border-top-color: #01B202;
}

.cta_wrap {
  gap: 25px;
  margin-top: 60px;
}

.cta_wrap-orange {
  margin-top: 20px;
}

.cta_heading {
  font-size: 2.8rem;
  font-weight: bold;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 37.5px;
  line-height: 1.1;
  text-align: center;
}

.cta_heading-big,
.cta_heading-middle {
  font-weight: bold;
  font-size: 4rem;
  color: #FC4E00;
}

.cta_heading::before,
.cta_heading::after {
  content: "";
  position: absolute;
  height: 75px;
  width: 3px;
  background: black;
  bottom: 0px;
  border-radius: 10px;
}

.cta_heading::before {
  left: -20px;
  transform: rotate(-20deg);
}

.cta_heading::after {
  right: -20px;
  transform: rotate(20deg);
}

@media (max-width: 768px) {
  .cta {
    background-image: url("../img/lp/cta_background-sp.png");
    width: 100%;
    padding: 40px 0;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.0862745098);
  }

  .cta_btn {
    max-width: 350px;
    width: 87.5%;
    font-size: 1.8rem;
    padding: 15px 0;
  }

  .cta_btn-green span {
    font-size: 1.6rem;
    width: 90%;
    top: -42.5px;
  }

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

  .cta_heading {
    font-size: 1.6rem;
    font-weight: bold;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 30px;
    line-height: 1.1;
    text-align: center;
  }

  .cta_heading-big {
    font-size: 3.1rem;
  }

  .cta_heading-middle {
    font-size: 2.7rem;
  }

  .cta_heading-small {
    font-size: 1.8rem;
  }

  .cta_heading::before,
  .cta_heading::after {
    height: 55px;
  }

  .cta_heading::before {
    transform: rotate(-25deg);
  }

  .cta_heading::after {
    transform: rotate(25deg);
  }
}

.inner-l {
  margin: 50px auto 75px;
  width: 90%;
  max-width: 1000px;
}

.inner-m {
  width: 87.5%;
  margin: 60px auto 75px;
  max-width: 800px;
}

.wrap-gray {
  padding: 1px 0;
  background: #FAFAFA;
}

@media (max-width: 1100px) {
  .inner-l {
    width: 95%;
    max-width: 800px;
  }

  .inner-m {
    width: 95%;
  }
}

@media (max-width: 768px) {
  .inner-l {
    margin: 40px auto 65px;
    width: 92%;
    max-width: 425px;
  }

  .inner-m {
    width: 92%;
    margin: 60px auto 65px;
    max-width: 425px;
  }
}

.recommend_list {
  display: flex;
  gap: 50px;
  margin: 50px auto 0;
}

.recommend_item {
  width: 33%;
}

.recommend_img {
  width: 100%;
  margin-bottom: 7.5px;
}

.recommend_text {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}

.recommend_inner-bottom {
  background-image: url(../img/lp/recommend_background.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  padding: 50px 0 40px;
  position: relative;
}

.recommend_inner-bottom::before {
  content: "";
  position: absolute;
  top: -1px;
  background: white;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  height: 30px;
  width: 100px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.recommend_coution {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  color: white;
}

@media (max-width: 768px) {
  .recommend_list {
    gap: 17.5px;
    margin: 35px auto 0;
    flex-direction: column;
  }

  .recommend_item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12.5px;
  }

  .recommend_img {
    width: 45%;
    margin-bottom: 0px;
  }

  .recommend_text {
    width: 55%;
    font-size: 1.6rem;
    text-align: left;

    & .pc {
      display: none;
    }
  }

  .recommend_coution {
    font-size: 2.4rem;
  }

  .recommend_inner-bottom {
    padding: 50px 0 30px;
  }
}

.fv {
  position: relative;
  margin-bottom: 125px;
}

.fv_wrap {
  background-image: url("../img/lp/fv_wrap.png");
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px 0 30px;
  position: absolute;
  bottom: -75px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  margin-bottom: 0;
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.0862745098);
}

.fv_heading {
  font-size: 2.2rem;
  font-weight: bold;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 10px;
}

.fv_heading-big {
  font-weight: bold;
  font-size: 3.7rem;
  color: #FC4E00;
}

.fv_heading-middle {
  font-weight: bold;
  font-size: 3.2rem;
  color: #FC4E00;
}

.fv_heading::before,
.fv_heading::after {
  content: "";
  position: absolute;
  height: 40px;
  width: 3px;
  background: black;
  bottom: 5px;
  border-radius: 10px;
}

.fv_heading::before {
  left: -20px;
  transform: rotate(-30deg);
}

.fv_heading::after {
  right: -20px;
  transform: rotate(30deg);
}

@media (max-width: 768px) {
  .fv {
    margin-bottom: 175px;
  }

  .fv_wrap {
    background-image: url("../img/lp/cta_background-sp.png");
    padding: 30px 0;
    bottom: auto;
    top: 80%;
  }

  .fv_heading {
    font-size: 1.6rem;
    margin: 0 auto 15px;
    line-height: 1.1;
    text-align: center;
  }

  .fv_heading-big {
    font-size: 3.1rem;
  }

  .fv_heading-middle {
    font-size: 2.7rem;
  }

  .fv_heading-small {
    font-size: 1.8rem;
  }

  .fv_heading::before,
  .fv_heading::after {
    height: 50px;
  }

  .fv_heading::before {
    transform: rotate(-25deg);
  }

  .fv_heading::after {
    transform: rotate(25deg);
  }
}

.reason_item {
  background: #FAFAFA;
  border-radius: 10px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.0862745098);
  padding: 25px 17.5px 15px;
  width: calc(33% - 10px);
}

.reason_list {
  gap: 20px;
}

.reason_img {
  width: 50%;
  margin: 0 30% 10px auto;
  display: block;
}

.reason_heading {
  font-size: 2.2rem;
  font-weight: bold;
  color: #FC4E00;
  text-align: center;
  margin-bottom: 10px;
}

@media (max-width: 1100px) {
  .reason_list {
    flex-wrap: wrap;
  }

  .reason_item {
    width: calc(40% - 10px);
  }
}

@media (max-width: 768px) {
  .reason_item {
    padding: 20px 15px 15px;
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 15px;
  }

  .reason_list {
    gap: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .reason_img {
    width: calc(37% - 7.5px);
    margin: 0 auto;
  }

  .reason_heading {
    font-size: 1.8rem;
    text-align: left;
    margin-bottom: 5px;
    line-height: 1.4;
  }
}

.comparison_content {
  margin-top: 35px;
}

.comparison_text {
  margin-top: 12.5px;
}

@media (max-width: 400px) {
  .comparison_content {
    margin-top: 35px;
  }

  .comparison_img {
    width: 402px;
    max-width: none;
  }

  .comparison_wrap {
    padding-bottom: 25px;
  }

  .comparison_text {
    margin-top: 15px;
  }

  .simplebar-scrollbar::before {
    background-color: #FDE7B6 !important;
    border-radius: 5px;
    height: 10px;
    width: 100%;
  }

  .simplebar-track {
    background-color: #FCF5E7;
    border-radius: 5px;
  }

  .simplebar-scrollbar.simplebar-visible:before {
    opacity: 1 !important;
  }

  .simplebar-track {
    margin-top: 12.5px !important;
  }
}

#plan {
  margin-top: -30px;
  padding-top: 30px;
  display: block;
}

.plan_content {
  margin-top: 40px;
}

.plan_text {
  text-align: center;
  margin: 30px auto 35px;
}

.plan_coution {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin: 50px auto 5px;
  position: relative;
}

.plan_arrow {
  width: 32px;
  display: block;
  margin: 0 auto 50px;
}

@media (max-width: 768px) {
  #plan {
    margin-top: -20px;
    padding-top: 20px;
    display: block;
  }

  .plan_content {
    margin-top: 40px;
  }

  .plan_text {
    font-size: 1.6rem;
    letter-spacing: -0.05em;
    margin: 30px auto 25px;
  }

  .plan_coution {
    font-size: 2rem;
    margin: 25px auto 5px;
  }

  .plan_arrow {
    margin: 0 auto 35px;
  }
}

.price {
  margin: 0 auto;
  border: 2px solid #FF6C00;
}

.price_listImg {
  width: 17px;
  margin-right: 5px;
}

.price_wrap {
  padding: 25px 0;
}

.price_wrap-left {
  width: 45%;
  background: linear-gradient(90deg, #FF6C00 0%, #FF6C00 52.7%, #FF9300 100%);
}

.price_wrap-right {
  width: 55%;
}

.price_heading {
  font-size: 2rem;
  font-weight: bold;
  border-radius: 18px;
  text-align: center;
  padding: 3.5px 0px;
  line-height: 1.4;
  max-width: 205px;
  width: 14.2857142857vw;
  margin: 0 auto 15px;
}

.price_heading-white {
  color: #FF6C00;
  background: white;
}

.price_heading-orange {
  color: white;
  background: linear-gradient(90deg, #FF6C00 0%, #FF6C00 52.7%, #FF9300 100%);
}

.price_text {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
}

.price_list {
  margin: 10px auto 0;
}

.price_title {
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  color: #FF6C00;
}

.price_title span {
  font-size: 4.8rem;
}

.price_title-big {
  font-size: 4.1rem;
  line-height: 1;
}

.price_title-big span {
  font-size: 6.1rem;
}

.price_texts {
  margin-bottom: 10px;
  gap: 10px;
}

.price_coution {
  font-weight: 500;
  text-align: left;
}

.price_subTitle {
  font-size: 2rem;
  font-weight: 500;
  position: relative;
  margin-bottom: 35px;
}

.price_subTitle span {
  font-size: 3rem;
}

.price_subTitle::before {
  position: absolute;
  content: "";
  height: 2px;
  background: #FF6C00;
  left: -5px;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
}

.price_subTitle::after {
  content: "";
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  color: #FFDCC1;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 20px 15px;
  border-top-color: currentColor;
  border-bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: -25px;
}

.price_feature {
  color: #FFFF00;
  font-size: 1.8rem;
  font-weight: bold;
  background: #4D86F4;
  padding: 10px 15px;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .price {
    width: 100%;
  }

  .price_heading {
    max-width: 205px;
    width: 50vw;
  }
}

@media (max-width: 768px) {
  .price {
    flex-direction: column;
    width: 100%;
    max-width: 415px;
  }

  .price_wrap {
    justify-content: center;
  }

  .price_wrap-left {
    width: 100%;
  }

  .price_wrap-right {
    width: 100%;
  }

  .price_heading {
    width: 65%;
    margin: 0 auto 7.5px;
  }

  .price_title-big {
    font-size: 3.4rem;
    letter-spacing: -.05em;
  }

  .price_title-big span {
    font-size: 5rem;
  }

  .price_texts {
    gap: 7.5px;
    margin-bottom: 12.5px;
  }

  .price_feature {
    font-size: 1.4rem;
    padding: 10px 5px;
  }

  .price_coution {
    margin-top: 0px;
    text-align: center;
  }
}

.flow_item {
  width: calc(25% - 25px);
  overflow: visible;
  position: relative;
}

.flow_item-line {
  position: relative;
}

.flow_item-line::after {
  content: "";
  position: absolute;
  right: -50%;
  top: 37.5%;
  width: 120px;
  height: 4px;
  background: #FF6C00;
  z-index: 1;
}

.flow_img {
  position: relative;
  z-index: 2;
}

.flow_imgs {
  position: relative;
}

.flow_num {
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  z-index: 2;
}

.flow_list {
  display: flex;
  gap: 50px;
  margin: 45px auto 0;
  width: 100%;
}

.flow_text {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
  width: -moz-max-content;
  width: max-content;
  margin: 10px auto 0;
}

.flow_bottomImg {
  width: 62.5%;
  margin: auto;
}

@media (max-width: 1100px) {
  .flow_item-line::after {
    top: 35%;
  }
}

@media (max-width: 768px) {
  .flow {
    position: relative;
  }

  .flow_item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
  }

  .flow_item-line::after {
    content: "";
    position: absolute;
    left: 17.5%;
    top: auto;
    bottom: -120px;
    width: 4px;
    height: 120px;
    z-index: 1;
  }

  .flow_img {
    width: 100%;
  }

  .flow_imgs {
    width: 39%;
  }

  .flow_num {
    position: absolute;
    top: 0px;
    left: -17.5px;
    width: 45%;
  }

  .flow_list {
    gap: 30px;
    margin: 35px auto 0;
    flex-direction: column;
    position: relative;
    padding-left: 10%;
  }

  .flow_list-1 {
    padding-left: 17.5%;
    gap: 15px;
  }

  .flow_text {
    font-size: 1.6rem;
    text-align: left;
    margin: 0 auto 0 0;
  }

  .flow_bottomImg {
    height: 60%;
    position: absolute;
    top: 20%;
    left: -26%;
    z-index: 3;
  }
}

.voice_list {
  margin-top: 65px;
}

.voice_item {
  border: 2px solid #FF6C00;
  position: relative;
  padding: 0px 40px 30px;
  background: white;
}

.voice_item:first-child {
  margin: 0 auto 50px;
}

.voice_content {
  gap: 20px;
}

.voice_title {
  font-size: 2rem;
  font-weight: bold;
  color: #FF6C00;
  border: 2px solid #FF6C00;
  padding: 5px 50px;
  line-height: 1.4;
  background: white;
  width: -moz-fit-content;
  width: fit-content;
  margin: -25px auto 35px;
  border-radius: 20px;
}

.voice_texts {
  width: 61%;
  margin-top: 5px;
}

.voice_wrap {
  width: 39%;
}

.voice_name {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-top: 7.5px;
}

.voice_heading {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 7.5px;
}

.voice_text {
  font-size: 1.4rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .voice_item {
    padding: 0 17.5px 22.5px;
    margin: 65px auto 40px;
  }

  .voice_content {
    flex-direction: column;
  }

  .voice_title {
    text-align: center;
    padding: 5px 30px;
    margin-bottom: 25px;
  }

  .voice_title-2line {
    margin: -35px auto 25px;
  }

  .voice_texts {
    width: 100%;
    margin-top: 0px;
  }

  .voice_wrap {
    border-bottom: 1px solid black;
    width: 92.5%;
    margin: 0 auto;
    padding: 0 15px 15px;
  }
}

.faq_list {
  margin-top: 50px;
}

.faq_qWrap,
.faq_aWrap {
  gap: 15px;
  padding: 10px 27.5px;
}

.faq_qWrap {
  background: white;
  color: #FF6C00;
  font-weight: bold;
  font-size: 1.8rem;
}

.faq_a {
  font-size: 1.8rem;
  font-weight: bold;
}

.faq_item:not(:last-child) {
  margin-bottom: 12.5px;
}

@media (min-width: 769px) {
  .faq_aText span {
    display: none;
  }
}
@media (max-width: 768px) {
  .faq_list {
    margin-top: 40px;
  }

  .faq_qWrap,
  .faq_aWrap {
    gap: 12.5px;
    padding: 10px 15px;
    align-items: start;
  }

  .faq_a {
    font-size: 1.8rem;
    font-weight: bold;
  }

  .faq_aText {
    font-size: 1.6rem;
  }

  .faq_aText span {
    font-size: 1.8rem;
    font-weight: bold;
    padding-right: 12.5px;
  }

  .faq_item:not(:last-child) {
    margin-bottom: 12.5px;
  }
}

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

#customPopup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}

#customPopup.show {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width: 767px) {
  #customPopup {
    width: 90%;
  }
}

#customPopup .back-btn {
  position: absolute;
  top: -10px;
  right: -10px;
}

@media only screen and (max-width: 767px) {
  #customPopup .back-btn {
    width: 24px;
    height: 24px;
    top: -6px;
    right: 0;
  }
}

#customPopup .link-btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60px;
}

#customPopupOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

#customPopupOverlay.show {
  display: block;
}
