@charset "UTF-8";
.pc_LL_display {
  display: none;
}
@media screen and (max-width: 1600px) {
  .pc_LL_display {
    display: block;
  }
}

.pc_L_display {
  display: none;
}
@media screen and (max-width: 1400px) {
  .pc_L_display {
    display: block;
  }
}

.pc_M_display {
  display: none;
}
@media screen and (max-width: 1200px) {
  .pc_M_display {
    display: block;
  }
}

.pc_S_display {
  display: none;
}
@media screen and (max-width: 1000px) {
  .pc_S_display {
    display: block;
  }
}

.tab_display {
  display: none;
}
@media screen and (max-width: 800px) {
  .tab_display {
    display: block;
  }
}

.sp_LL_display {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp_LL_display {
    display: block;
  }
}

.sp_L_display {
  display: none;
}
@media screen and (max-width: 460px) {
  .sp_L_display {
    display: block;
  }
}

.sp_ML_display {
  display: none;
}
@media screen and (max-width: 400px) {
  .sp_ML_display {
    display: block;
  }
}

.sp_M_display {
  display: none;
}
@media screen and (max-width: 375px) {
  .sp_M_display {
    display: block;
  }
}

.sp_S_display {
  display: none;
}
@media screen and (max-width: 350px) {
  .sp_S_display {
    display: block;
  }
}

/* animation */
.animation_dokundokun {
  animation: dokundokun 1500ms ease infinite;
}

@keyframes dokundokun {
  0% {
    transform: scale(0.92);
  }
  15% {
    transform: scale(1.04);
  }
  30% {
    transform: scale(0.92);
  }
  45% {
    transform: scale(1.04);
  }
  70% {
    transform: scale(0.92);
  }
  100% {
    transform: scale(0.92);
  }
}
.animation_fuwafuwa {
  animation: fuwafuwa 2s linear infinite;
  scale: 1;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.animation_shiny {
  background-size: 600% 100%;
  animation: shine 20s infinite;
  animation-delay: 0s;
  animation-timing-function: linear;
}

@keyframes shine {
  0% {
    background-position-x: 400%;
  }
  50% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: -400%;
  }
}
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

.scrollin {
  opacity: 1;
  transform: translateY(0);
}

body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  color: #151515;
}
@media screen and (max-width: 600px) {
  body {
    position: static;
  }
}

img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
}

/* 上層固定背景 */
.bg {
  position: fixed;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  background-image: url(../img/bg.webp);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
@media screen and (max-width: 460px) {
  .bg {
    display: none;
  }
}

.lp_body {
  position: absolute;
  z-index: 3;
  margin-inline: auto;
  width: 375px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 460px) {
  .lp_body {
    width: 100%;
    position: static;
    transform: none;
    margin-inline: 0;
  }
}

.fixed-cta {
  position: fixed;
  z-index: 6;
  width: 375px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 460px) {
  .fixed-cta {
    width: 100%;
  }
}

.section_heading {
  width: 100%;
  padding: 10px 0;
  background-color: #34527F;
  position: relative;
  margin: 0 auto 30px;
}
.section_heading h2 {
  color: #fff;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 20px;
}
.section_heading::after {
  content: "";
  background-color: #34527F;
  width: 14px;
  height: 12px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
}

/*------------------- fv ------------------*/
.fv {
  background: linear-gradient(45deg, #F5F9FF 0%, #F5F9FF 50%, #E6E8EE 100%);
  position: relative;
}

.fv_wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 335px;
  padding-top: 30px;
}
@media screen and (max-width: 460px) {
  .fv_wrap {
    width: 90vw;
  }
}

.fv_bubble {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
}
.fv_bubble img {
  width: 25px;
}
@media screen and (max-width: 460px) {
  .fv_bubble img {
    width: 6.6666666667%;
  }
}
.fv_bubble img:last-child {
  transform: scale(-1, 1);
}
.fv_bubble span {
  text-align: center;
  font-weight: 500;
  line-height: 1.2;
  font-size: 16px;
}
@media screen and (max-width: 460px) {
  .fv_bubble span {
    font-size: min(16px, 4.2vw);
  }
}

.fv_item {
  margin-bottom: 12px;
}

.fv_txt {
  width: 285px;
}
@media screen and (max-width: 460px) {
  .fv_txt {
    width: 76%;
  }
}

.fv_img {
  position: absolute;
  z-index: 3;
  width: 256px;
  right: 26px;
  bottom: -40px;
}
@media screen and (max-width: 460px) {
  .fv_img {
    width: 68.2666666667%;
    right: 6.9333333333%;
    bottom: -9.6%;
  }
}

/*------------------- cta ------------------*/
.cta {
  padding: 22px 0;
  background: linear-gradient(90deg, #121B39 0%, #355584 50%, #121B39 100%);
}

.cta_wrap {
  width: 335px;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .cta_wrap {
    width: 90vw;
  }
}

.cta_heading {
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 16px;
}
@media screen and (max-width: 460px) {
  .cta_heading {
    font-size: min(24px, 6.4vw);
  }
}

.cta_btn {
  display: block;
  background-color: #fff;
  padding: 10px 0;
  color: #06C755;
  border: 2px solid #06C755;
  border-radius: 100px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  transition: all 0.4s;
}
@media screen and (max-width: 460px) {
  .cta_btn {
    font-size: min(20px, 5.2vw);
  }
}
.cta_btn::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-right: 1px solid #06C755;
  border-bottom: 1px solid #06C755;
  display: block;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(-45deg);
}

.cta_btn:hover {
  background-color: #06C755;
  color: #fff;
  border: 2px solid #fff;
}
.cta_btn:hover::after {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

/*------------------- trouble ------------------*/
.trouble {
  background-image: url(../img/trouble_bg.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 50px 0 0;
  width: 100%;
  overflow-x: hidden;
}

.trouble_wrap {
  width: 335px;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .trouble_wrap {
    width: 90vw;
  }
}

.trouble_list {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 20px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
}
@media screen and (max-width: 460px) {
  .trouble_list {
    padding: min(20px, 5.2vw);
  }
}
@media screen and (max-width: 375px) {
  .trouble_list {
    padding: 16px 4vw;
  }
}

.trouble_list li {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  position: relative;
  padding-left: 35px;
}
@media screen and (max-width: 375px) {
  .trouble_list li {
    padding-left: 24px;
  }
}
.trouble_list li::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url(../img/trouble_icon.webp);
  background-size: 100% 100%;
  top: 1px;
}
@media screen and (max-width: 375px) {
  .trouble_list li::after {
    width: 18px;
    height: 18px;
    top: 2px;
  }
}
.trouble_list li:not(:last-child) {
  margin-bottom: 18px;
}
@media screen and (max-width: 375px) {
  .trouble_list li:not(:last-child) {
    margin-bottom: 14px;
  }
}

.trouble_txt {
  margin-bottom: 28px;
}

.trouble_txt p {
  line-height: 1.2;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 460px) {
  .trouble_txt p {
    font-size: min(18px, 4.8vw);
  }
}

.trouble_txt_row {
  display: grid;
  grid-template-columns: 220fr 134fr;
  gap: 6px;
  margin: 10px auto;
}
.trouble_txt_row span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #34527F;
  height: 40px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
}
@media screen and (max-width: 460px) {
  .trouble_txt_row span {
    font-size: min(20px, 5.2vw);
  }
}

.trouble_bottom {
  position: relative;
  padding-bottom: 100px;
}
@media screen and (max-width: 375px) {
  .trouble_bottom {
    padding-bottom: 80px;
  }
}

.trouble_bottom span {
  display: block;
  color: #34527F;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 460px) {
  .trouble_bottom span {
    font-size: min(16px, 4.2vw);
  }
}

.trouble_bottom_txt {
  width: 240px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 460px) {
  .trouble_bottom_txt {
    width: min(240px, 68vw);
  }
}

.trouble_bottom_img {
  width: 172px;
  position: absolute;
  bottom: 0;
  right: -24px;
}
@media screen and (max-width: 460px) {
  .trouble_bottom_img {
    width: min(172px, 45vw);
  }
}

/*------------------- cause ------------------*/
.cause {
  position: relative;
}

.cause_bg {
  width: 100%;
  height: calc(100% + 76px);
  position: absolute;
  bottom: 0;
  left: 0;
  clip-path: polygon(0 0, 50% 60px, 100% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 375px) {
  .cause_bg {
    height: calc(100% + 60px);
    clip-path: polygon(0 0, 50% 48px, 100% 0, 100% 100%, 0 100%);
  }
}

.cause_wrap {
  position: relative;
  z-index: 3;
  width: 335px;
  margin: 0 auto;
  padding: 24px 0 50px;
}
@media screen and (max-width: 460px) {
  .cause_wrap {
    width: 90vw;
  }
}
@media screen and (max-width: 375px) {
  .cause_wrap {
    padding: 12px 0 40px;
  }
}

.cause_heading {
  text-align: center;
  font-size: 25px;
  color: #fff;
  line-height: 1.2;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  margin: 0 auto 20px;
}
@media screen and (max-width: 460px) {
  .cause_heading {
    font-size: min(25px, 6.4vw);
  }
}
.cause_heading span {
  color: #FDFE02;
  font-size: 30px;
}
@media screen and (max-width: 460px) {
  .cause_heading span {
    font-size: min(30px, 8vw);
  }
}

.cause_txt {
  color: #fff;
  text-align: center;
  line-height: 2;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 460px) {
  .cause_txt {
    font-size: min(16px, 4.2vw);
  }
}

/*------------------- reason ------------------*/
.reason_bg {
  background-color: #EDF6FA;
  padding: 50px 0 24px;
  position: relative;
}
.reason_bg::after {
  content: "";
  background-color: #EDF6FA;
  width: 14px;
  height: 12px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
}

.reason_wrap {
  width: 335px;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .reason_wrap {
    width: 90vw;
  }
}

.reason_top {
  margin-bottom: 20px;
}

.reason_top p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 18px;
}
@media screen and (max-width: 460px) {
  .reason_top p {
    font-size: min(17px, 4.6vw);
  }
}
.reason_top p span {
  color: #E85A8C;
}

.reason_top > img {
  margin-bottom: 20px;
}

.reason_copy {
  position: relative;
}

.reason_copy img {
  width: 158px;
  position: absolute;
  top: -30px;
  right: -4px;
}
@media screen and (max-width: 460px) {
  .reason_copy img {
    width: min(158px, 42vw);
  }
}

.reason_copy_row {
  display: block;
  padding: 12px 8px 12px 16px;
  background-color: #fff;
  font-size: 24px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 460px) {
  .reason_copy_row {
    font-size: min(24px, 6.4vw);
  }
}
.reason_copy_row:not(:last-child) {
  margin-bottom: 6px;
}
.reason_copy_row span {
  color: #E85A8C;
}

.reason_bottom p {
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 460px) {
  .reason_bottom p {
    font-size: min(18px, 4.8vw);
  }
}
.reason_bottom p span {
  color: #E85A8C;
}
.reason_bottom p:last-child {
  margin-left: auto;
  text-align: right;
}

.reason_bottom img {
  margin: 20px auto 10px;
}

.reason_result {
  background-color: #E85A8C;
  padding: 18px 0;
}
.reason_result p {
  font-size: 28px;
  line-height: 1.1;
  color: #fff;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .reason_result p {
    font-size: min(28px, 7.4vw);
  }
}
.reason_result p span {
  color: #FDFE02;
}

/*------------------- merit ------------------*/
.merit {
  background-color: #fff;
  padding: 50px 0;
  position: relative;
}

.merit_bg {
  position: absolute;
  bottom: 110px;
  left: 0;
}

.merit_wrap {
  position: relative;
  z-index: 3;
  width: 335px;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .merit_wrap {
    width: 90vw;
  }
}

.merit_top {
  margin-bottom: 20px;
}

.merit_top > h3 {
  font-size: 25px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto;
  padding-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 460px) {
  .merit_top > h3 {
    font-size: min(25px, 6.4vw);
  }
}
@media screen and (max-width: 375px) {
  .merit_top > h3 {
    margin: 16px auto;
    padding-bottom: 16px;
  }
}
.merit_top > h3 span {
  color: #E85A8C;
}
.merit_top > h3::after {
  content: "";
  width: 30px;
  height: 2px;
  background-color: #E85A8C;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.merit_top > p {
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 460px) {
  .merit_top > p {
    font-size: min(16px, 4.2vw);
  }
}
.merit_top > p:last-child {
  margin-left: auto;
  text-align: right;
}

.merit_middle {
  margin: 16px 0 10px;
}

.merit_bottom {
  margin-bottom: 28px;
}

.merit_copy {
  padding: 20px 0 10px;
  position: relative;
}

.merit_copy img:nth-child(2) {
  position: absolute;
  width: 132px;
  top: -32px;
  right: 24px;
}
@media screen and (max-width: 460px) {
  .merit_copy img:nth-child(2) {
    width: min(132px, 35vw);
  }
}
@media screen and (max-width: 375px) {
  .merit_copy img:nth-child(2) {
    top: -24px;
    right: 16px;
  }
}

/*------------------- purpose ------------------*/
.purpose {
  background-color: #EDF6FA;
  padding-top: 50px;
}

.purpose_wrap {
  width: 335px;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .purpose_wrap {
    width: 90vw;
  }
}

.purpose_copy {
  font-size: 25px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto;
  padding-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 460px) {
  .purpose_copy {
    font-size: min(25px, 6.4vw);
  }
}
@media screen and (max-width: 375px) {
  .purpose_copy {
    margin: 16px auto;
    padding-bottom: 16px;
  }
}
.purpose_copy span {
  color: #E85A8C;
}
.purpose_copy::after {
  content: "";
  width: 30px;
  height: 2px;
  background-color: #E85A8C;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.purpose_txt {
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
  margin: 0 auto 20px;
  font-weight: 500;
}

.purpose_content span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 500;
}

.purpose_list {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 16px 0 20px;
}

.purpose_list li:not(:last-child) {
  margin-bottom: 12px;
}

.purpose_list li img {
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.purpose_bottom img {
  clip-path: polygon(0 0, 50% 54px, 100% 0, 100% 100%, 0 100%);
}

/*------------------- concept ------------------*/
.concept {
  background-color: #fff;
  padding: 50px 0 0;
  width: 100%;
  overflow: hidden;
}

.concept_top {
  width: 335px;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .concept_top {
    width: 90vw;
  }
}

.concept_copy {
  font-size: 25px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto;
  padding-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 460px) {
  .concept_copy {
    font-size: min(25px, 6.4vw);
  }
}
@media screen and (max-width: 375px) {
  .concept_copy {
    margin: 16px auto;
    padding-bottom: 16px;
  }
}
.concept_copy::after {
  content: "";
  width: 30px;
  height: 2px;
  background-color: #E85A8C;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.concept_txt {
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
}

.concept_item {
  position: relative;
  padding-bottom: 30px;
}
.concept_item:not(:last-child) {
  margin-bottom: 30px;
}
.concept_item:last-child {
  padding-bottom: 54px;
}
.concept_item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 74%;
  background-color: #FFF3FB;
  bottom: 0;
  left: 0;
}

.concept_inner {
  width: 335px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 460px) {
  .concept_inner {
    width: 90vw;
  }
}
.concept_inner img {
  margin-bottom: 20px;
}
.concept_inner h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 460px) {
  .concept_inner h4 {
    font-size: min(20px, 5.2vw);
  }
}

.concept_num {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  color: #E85A8C;
  font-weight: 300;
  font-size: 70px;
  position: absolute;
  left: -10px;
  top: 164px;
  z-index: 4;
}
@media screen and (max-width: 460px) {
  .concept_num {
    font-size: min(70px, 18.6vw);
    top: 43vw;
    left: -2.6vw;
  }
}

/*------------------- worth ------------------*/
.worth {
  background-color: #fff;
  padding-top: 32px;
  position: relative;
}

.worth_bg {
  position: absolute;
  bottom: 256px;
  left: 0;
}

.worth_wrap {
  position: relative;
  z-index: 3;
}

.worth_top {
  width: 335px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 460px) {
  .worth_top {
    width: 90vw;
  }
}

.worth_top img {
  margin-bottom: 20px;
}

.worth_item {
  background-color: #FFF3FB;
  padding: 10px 10px 20px;
  display: grid;
  grid-template-columns: 48px 1fr;
}
@media screen and (max-width: 460px) {
  .worth_item {
    grid-template-columns: 12.8vw 1fr;
  }
}
.worth_item:not(:last-child) {
  margin-bottom: 10px;
}

.worth_num {
  font-size: 38px;
  color: #E85A8C;
}
@media screen and (max-width: 460px) {
  .worth_num {
    font-size: min(38px, 10vw);
  }
}

.worth_inner {
  padding-top: 10px;
}
@media screen and (max-width: 460px) {
  .worth_inner {
    padding-top: min(10px, 2.6vw);
  }
}

.worth_inner h3 {
  font-size: 20px;
  color: #E85A8C;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
@media screen and (max-width: 460px) {
  .worth_inner h3 {
    font-size: min(20px, 5.2vw);
    margin-bottom: min(12px, 3.2vw);
  }
}

.worth_inner span {
  line-height: 1.3;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 460px) {
  .worth_inner span {
    font-size: min(16px, 4.2vw);
  }
}

.worth_txt {
  margin-bottom: 30px;
}

.worth_txt p {
  width: 335px;
  margin: 0 auto 16px;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 460px) {
  .worth_txt p {
    width: 90vw;
  }
}

.worth_arrow {
  width: 138px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 460px) {
  .worth_arrow {
    width: min(138px, 36vw);
  }
}

.worth_bottom_bubble {
  font-weight: 700;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  letter-spacing: 0.2em;
}

.worth_bottom_img {
  position: relative;
}

.worth_bottom_txt {
  position: absolute;
  width: 88px;
  left: 20px;
  bottom: 40px;
}
@media screen and (max-width: 460px) {
  .worth_bottom_txt {
    width: min(88px, 23vw);
    left: min(20px, 5.3vw);
    bottom: min(40px, 10vw);
  }
}

/*------------------- price ------------------*/
.price {
  background-color: #EDF6FA;
}

.price_wrap {
  position: relative;
  z-index: 3;
  width: 335px;
  margin: 0 auto;
  padding: 50px 0 20px;
}
@media screen and (max-width: 460px) {
  .price_wrap {
    width: 90vw;
  }
}

.price_copy {
  font-size: 25px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto;
  padding-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 460px) {
  .price_copy {
    font-size: min(25px, 6.4vw);
  }
}
@media screen and (max-width: 375px) {
  .price_copy {
    margin: 16px auto;
    padding-bottom: 16px;
  }
}
.price_copy span {
  color: #E85A8C;
}
.price_copy::after {
  content: "";
  width: 30px;
  height: 2px;
  background-color: #E85A8C;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.price_txt {
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
}
.price_txt span {
  color: #E85A8C;
}

.price_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 30px;
}

.price_item {
  position: relative;
}

.price_item img:nth-child(1) {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
}

.price_item img:nth-child(2) {
  position: absolute;
  width: 84px;
  top: -36px;
  left: -20px;
}
@media screen and (max-width: 460px) {
  .price_item img:nth-child(2) {
    width: min(76px, 20vw);
    top: min(-36px, 9vw);
    left: max(-8px, -2vw);
  }
}

.price_bubble {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #34527F;
  font-weight: 700;
}
@media screen and (max-width: 460px) {
  .price_bubble {
    font-size: min(16px, 4.2vw);
  }
}

.price_bottom {
  background-color: #E85A8C;
  padding: 18px 0;
}

.price_bottom_wrap {
  width: 280px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 460px) {
  .price_bottom_wrap {
    width: 76vw;
  }
}

.price_bottom p {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
@media screen and (max-width: 460px) {
  .price_bottom p {
    font-size: min(25px, 6.6vw);
  }
}
.price_bottom p span {
  color: #FDFE02;
}

.price_bottom img {
  width: 30px;
  position: absolute;
  top: 14px;
  right: -20px;
}
@media screen and (max-width: 460px) {
  .price_bottom img {
    width: min(30px, 8vw);
    right: -4vw;
  }
}

/*------------------- flow ------------------*/
.flow {
  background: linear-gradient(180deg, #355582 0%, #141F3D 100%);
  padding: 50px 0;
}

.flow_wrap {
  width: 335px;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .flow_wrap {
    width: 90vw;
  }
}

.flow_heading {
  font-size: 25px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
  padding-bottom: 20px;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 460px) {
  .flow_heading {
    font-size: min(25px, 6.4vw);
  }
}
@media screen and (max-width: 375px) {
  .flow_heading {
    margin: 0 auto 24px;
    padding-bottom: 16px;
  }
}
.flow_heading::after {
  content: "";
  width: 30px;
  height: 2px;
  background-color: #fff;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.flow_list {
  margin-bottom: 20px;
}

.flow_item {
  background-color: #fff;
  border-radius: 5px;
  padding: 20px;
}
@media screen and (max-width: 460px) {
  .flow_item {
    padding: min(20px, 5.2vw);
  }
}
.flow_item:not(:last-child) {
  margin-bottom: 10px;
}

.flow_top {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 460px) {
  .flow_top {
    grid-template-columns: min(70px, 18.6vw) 1fr;
    gap: min(20px, 5.2vw);
  }
}
.flow_top h3 {
  font-size: 25px;
  font-weight: 700;
}
@media screen and (max-width: 460px) {
  .flow_top h3 {
    font-size: min(25px, 6.4vw);
  }
}

.flow_img {
  border-radius: 5px;
  margin-bottom: 18px;
}

.flow_desc {
  font-weight: 500;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .flow_desc {
    font-size: min(16px, 4.2vw);
  }
}

.flow_bottom {
  line-height: 1.5;
  color: #fff;
  font-size: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 460px) {
  .flow_bottom {
    font-size: min(20px, 5.2vw);
  }
}

/*------------------- goal ------------------*/
.goal {
  background-color: #fff;
  padding-bottom: 50px;
}

.goal_list {
  transform: translateY(-16px);
  margin-bottom: 8px;
}
@media screen and (max-width: 460px) {
  .goal_list {
    transform: none;
    margin-bottom: 16px;
  }
}

.goal_item {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.goal_item::after {
  content: "";
  position: absolute;
  background-color: #4FA3D1;
  width: calc(100% + 2px);
  height: 100%;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  bottom: -2px;
  left: 0;
}
.goal_item:not(:last-child) {
  margin-bottom: 12px;
}
.goal_item::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 45px;
  background-image: url(../img/goal_icon.webp);
  background-size: 100% 100%;
  top: 50%;
  transform: translateY(-50%);
  left: 40px;
  z-index: 4;
}
@media screen and (max-width: 460px) {
  .goal_item::before {
    width: min(30px, 8vw);
    left: min(40px, 10vw);
    height: min(45px, 12vw);
  }
}

.goal_inner {
  width: 358px;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  border: 2px solid #4FA3D1;
  border-left: none;
  position: relative;
  z-index: 3;
  background-color: #fff;
  padding: 24px 0 24px 104px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 460px) {
  .goal_inner {
    width: 94vw;
    font-size: min(16px, 4.2vw);
    padding: 24px 0 24px min(104px, 26vw);
  }
}

.goal_bubble {
  width: 264px;
  margin: 0 auto 16px;
}
@media screen and (max-width: 460px) {
  .goal_bubble {
    width: min(264px, 70vw);
  }
}

.goal_txt span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.goal_txt span:nth-child(1) {
  font-weight: 700;
  margin: 0 auto 10px;
}
@media screen and (max-width: 460px) {
  .goal_txt span:nth-child(1) {
    font-size: min(16px, 4.2vw);
  }
}
.goal_txt span:nth-child(2) {
  font-size: 24px;
  font-weight: 700;
  color: #34527F;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 460px) {
  .goal_txt span:nth-child(2) {
    font-size: min(24px, 6.4vw);
  }
}
.goal_txt span:nth-child(2)::after {
  content: "";
  width: calc(100% + 8px);
  background-color: #EDF6FA;
  height: 15px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  z-index: -1;
}

/*------------------- message ------------------*/
.message {
  background-image: url(../img/message_bg.webp);
  background-size: cover;
  padding: 50px 0;
}

.message_wrap {
  width: 335px;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .message_wrap {
    width: 90vw;
  }
}

.message_heading {
  font-weight: 700;
  color: #34527F;
  font-size: 33px;
  line-height: 1.3;
  margin-bottom: 24px;
}
@media screen and (max-width: 460px) {
  .message_heading {
    font-size: min(33px, 8.7vw);
  }
}

.message_txt {
  font-weight: 700;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 460px) {
  .message_txt {
    font-size: min(16px, 4.2vw);
  }
}
.message_txt.color_txt {
  color: #E85A8C;
}
.message_txt:last-child {
  margin-top: 12px;
}

/*------------------- footer ------------------*/
.footer {
  background-color: #34527F;
  padding: 20px 0 80px;
}

.footer_link {
  color: #fff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 460px) {
  .footer_link {
    font-size: min(16px, 4.2vw);
  }
}

/*-------------------  ------------------*/
/*-------------------  ------------------*//*# sourceMappingURL=index.css.map */