@charset "UTF-8";
/* 色定義 */
.sp_sm_display {
  display: none;
}
@media screen and (max-width: 375px) {
  .sp_sm_display {
    display: block;
  }
}

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

@keyframes dokundokun {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.2);
  }
  30% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.2);
  }
  70% {
    transform: scale(1);
  }
}
.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_yellow {
  background: #FFF144;
  background: linear-gradient(-45deg, #FFF144 50%, #fffbc4 60%, #FFF144 70%);
  background-size: 600% 100%;
  animation: shine 20s infinite;
  animation-delay: 0s;
  animation-timing-function: linear;
}

.animation_shiny_green {
  background: #06C755;
  background: linear-gradient(-45deg, #06C755 50%, #3af988 60%, #06C755 70%);
  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%;
  }
}
.animetion_poyoyon {
  animation: poyoyon 1.3s ease-in-out forwards;
  animation-delay: 0.8s;
}

@keyframes poyoyon {
  0% {
    transform: scale(1, 1) translate(0, 0);
  }
  15% {
    transform: scale(0.98, 0.9) translate(0, 5px);
  }
  30% {
    transform: scale(1.02, 1) translate(0, 8px);
  }
  50% {
    transform: scale(0.98, 1.05) translate(0, -8px);
  }
  70% {
    transform: scale(1, 0.9) translate(0, 5px);
  }
  100% {
    transform: scale(1, 1) translate(0, 0);
  }
  0%, 100% {
    opacity: 1;
  }
}
.animation_zoomin {
  animation: zoomin 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomin {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.animation_slide {
  animation: slide 0.5s cubic-bezier(0.12, 0, 0.39, 0) 1 forwards;
}

@keyframes slide {
  0% {
    transform: translateX(140px);
    opacity: 0;
  }
  50% {
    transform: translateX(0);
  }
  65% {
    transform: translateX(30px);
  }
  100% {
    transform: translateX(0);
  }
  20%, 100% {
    opacity: 1;
  }
}
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

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

body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  color: #283033;
  font-family: "m-plus-1p", sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 600px) {
  body {
    position: static;
  }
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

/* 固定背景切り替えクラス */
.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: all 1s;
}

.none {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
  pointer-events: none;
}

/* 上層固定背景 */
.bg-top {
  position: fixed;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  background-color: #EEF8FC;
}
@media screen and (max-width: 1000px) {
  .bg-top {
    z-index: 2;
  }
}
@media screen and (max-width: 375px) {
  .bg-top {
    display: none;
  }
}

/* 上層固定背景 内部 */
.bg-top_content {
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .bg-top_content {
    display: none;
  }
}

.bg-top_header {
  padding-left: 10.9vw;
  width: 100%;
  height: 7.8vw;
  background-color: #5DBCE2;
  margin-bottom: 1.25vw;
}
@media screen and (max-width: 1600px) {
  .bg-top_header {
    padding-left: 7vw;
    height: 7.2vw;
  }
}
@media screen and (max-width: 1400px) {
  .bg-top_header {
    padding-left: 5vw;
    height: 6.8vw;
  }
}

.bg-top_header_inner {
  display: grid;
  grid-template-columns: 18.8vw 1fr;
  gap: 2vw;
  align-items: center;
  height: 100%;
}

.bg-top_header_inner_left {
  color: #FFF;
  font-weight: 500;
  font-size: 1.67vw;
  line-height: 1.5;
}
@media screen and (max-width: 1400px) {
  .bg-top_header_inner_left {
    font-size: 1.4vw;
  }
}

.bg-top_header_inner_right {
  display: block;
  color: #FFF;
  font-weight: 500;
  font-size: 2.5vw;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .bg-top_header_inner_right {
    font-size: 2.1vw;
  }
}
.bg-top_header_inner_right::after {
  content: "";
  background-image: url(../lp3-img/effect_parts.webp);
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 24px;
  position: absolute;
  top: 0;
  left: -18px;
}
.bg-top_header_inner_right .remark_text {
  color: #FFF;
  font-size: 2.91vw;
  font-weight: 800;
  border: 3px solid #FFF;
  padding: 0 2%;
  margin: 0 8px;
}
@media screen and (max-width: 1400px) {
  .bg-top_header_inner_right .remark_text {
    font-size: 2.5vw;
  }
}

.bg-top_title {
  width: 63.2vw;
}
@media screen and (max-width: 1600px) {
  .bg-top_title {
    width: 59vw;
  }
}
@media screen and (max-width: 1400px) {
  .bg-top_title {
    width: 54vw;
  }
}
.bg-top_title span {
  display: block;
  color: #283033;
  font-size: 3.75vw;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-left: 10.9vw;
}
@media screen and (max-width: 1600px) {
  .bg-top_title span {
    font-size: 3.4vw;
    margin-left: 7vw;
  }
}
@media screen and (max-width: 1400px) {
  .bg-top_title span {
    margin-left: 5vw;
  }
}

.bg-top_line {
  width: 100%;
  height: 16px;
  background-color: #FFF144;
}
@media screen and (max-width: 1400px) {
  .bg-top_line {
    height: 12px;
  }
}
@media screen and (max-width: 1200px) {
  .bg-top_line {
    height: 9px;
  }
}

.bg-top_title_main {
  display: grid;
  grid-template-columns: 35.5vw 8vw;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 8;
}
@media screen and (max-width: 1600px) {
  .bg-top_title_main {
    grid-template-columns: 30vw 7vw;
  }
}
@media screen and (max-width: 1400px) {
  .bg-top_title_main {
    grid-template-columns: 26.8vw 5vw;
  }
}

.bg-top_title_main h2 {
  color: #283033;
  font-size: 6.5vw;
  font-weight: 900;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1600px) {
  .bg-top_title_main h2 {
    font-size: 5.5vw;
  }
}
@media screen and (max-width: 1400px) {
  .bg-top_title_main h2 {
    font-size: 4.8vw;
  }
}

.bg-top_title_main img {
  width: 6.5vw;
}
@media screen and (max-width: 1600px) {
  .bg-top_title_main img {
    width: 5.5vw;
  }
}
@media screen and (max-width: 1400px) {
  .bg-top_title_main img {
    width: 4.8vw;
  }
}

.bg-top_img {
  width: auto;
  position: absolute;
  bottom: 0;
  left: 17vw;
  height: 50%;
}
@media screen and (max-width: 1600px) {
  .bg-top_img {
    left: 15vw;
  }
}
@media screen and (max-width: 1400px) {
  .bg-top_img {
    left: 12vw;
  }
}
@media screen and (max-width: 1200px) {
  .bg-top_img {
    left: 10vw;
  }
}

.lp_body {
  position: absolute;
  z-index: 3;
  margin-inline: auto;
  width: 100%;
  max-width: 375px;
  top: 0;
  right: 10.9vw;
  background: #FFF;
}
@media screen and (max-width: 1600px) {
  .lp_body {
    right: 7vw;
  }
}
@media screen and (max-width: 1400px) {
  .lp_body {
    right: 5vw;
  }
}
@media screen and (max-width: 1000px) {
  .lp_body {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 375px) {
  .lp_body {
    position: static;
    transform: none;
    margin-inline: 0;
  }
}

/* 固定 ボタン */
.cta_fixed {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: flex-end;
  z-index: 9999;
}

#cta_fixed .cta_fixed_btn_left a {
  display: block;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  padding: 13px 0 8px;
  background-color: #06C755;
  border: 2px solid #048036;
  box-shadow: 0px 8px #048036;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 8px;
  box-sizing: border-box;
  transition: all 0.3s;
  text-decoration: none;
}
#cta_fixed .cta_fixed_btn_left a:hover {
  margin-bottom: 0;
  box-shadow: none;
}

#cta_fixed .cta_fixed_btn_right a {
  display: block;
  color: #283033;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  padding: 13px 0 8px;
  background-color: #FFF144;
  border: 2px solid #283033;
  box-shadow: 0px 8px #283033;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 8px;
  box-sizing: border-box;
  transition: all 0.3s;
  text-decoration: none;
}

#cta_fixed .cta_fixed_btn_right {
  position: relative;
}
#cta_fixed .cta_fixed_btn_right:hover a {
  margin-bottom: 0;
  box-shadow: none;
}
#cta_fixed .cta_fixed_btn_right span {
  display: block;
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 111px;
  font-size: 15px;
  padding: 2px 12px;
  text-align: center;
  background-color: #FFF;
  border: 2px solid #283033;
}

/* header */
#header {
  background-color: #EEF8FC;
  margin-bottom: 16px;
}

.header_content {
  font-weight: 700;
  font-size: 16px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.header_content img {
  width: 19.5px;
}

/* fv */
.fv_top {
  text-align: center;
}
.fv_top span {
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
}

.fv_top_bubble {
  position: relative;
  color: #FFF;
  background-color: #5DBCE2;
  height: 56px;
  width: 90%;
  padding-top: 6px;
  margin: 0 auto 10px;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 52% 90%, 50% 100%, 48% 90%, 0% 90%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 52% 90%, 50% 100%, 48% 90%, 0% 90%);
}
.fv_top_bubble span {
  font-size: 20px;
}
.fv_top_bubble span.remark_text {
  display: inline-block;
  font-size: 22px;
  font-weight: 800;
  padding: 0px 10px;
  margin: 0 4px;
  border: 2px solid #FFF;
}

.fv_top_bubble_text {
  display: block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.fv_top_bubble_text::after {
  content: "";
  background-image: url(../lp3-img/effect_parts.webp);
  background-repeat: no-repeat;
  background-size: cover;
  width: 10px;
  height: 12px;
  position: absolute;
  top: 2px;
  left: -9px;
}

.fv_heading {
  width: 90%;
  margin: 0 auto 8px;
  position: relative;
}
.fv_heading::after {
  content: "";
  background-image: url(../lp3-img/bg_dots.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 320px;
  height: 320px;
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.fv_heading span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 32px;
  margin: 0 auto;
}
@media screen and (max-width: 375px) {
  .fv_heading span {
    font-size: 8.53vw;
  }
}
.fv_heading .line_yellow {
  width: 100%;
  height: 6px;
  background-color: #FFF144;
}
.fv_heading .fv_heading_main {
  display: flex;
  grid-template-columns: 240px 45px;
  align-items: center;
  gap: 6px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.fv_heading .fv_heading_main h1 {
  font-size: 48px;
}
@media screen and (max-width: 375px) {
  .fv_heading .fv_heading_main h1 {
    font-size: 12.8vw;
  }
}
.fv_heading .fv_heading_main img {
  width: 45px;
}

.fv_img {
  width: 76.5%;
  margin: 0 auto 24px;
}

/* solution */
.section_heading {
  width: 90%;
  margin: 0 auto 24px;
  position: relative;
  text-align: center;
}
.section_heading .section_heading_bubble {
  aspect-ratio: 2.3/1;
}

.section_heading_text {
  font-size: 32px;
  font-weight: 800;
  display: block;
  position: absolute;
  width: 100%;
  top: 16px;
  left: 0;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 375px) {
  .section_heading_text {
    font-size: 8.53vw;
  }
}
.section_heading_text .remark_text {
  color: #5DBCE2;
}

.solution_content {
  font-size: 16px;
  padding: 24px 0;
  margin-bottom: 40px;
  width: 100%;
  background-color: #EEF8FC;
}

.solution_content_list {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: 500;
}
@media screen and (max-width: 375px) {
  .solution_content_list {
    width: 90%;
  }
}

.solution_content_list p {
  position: relative;
  padding-left: 28px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 16px;
}
.solution_content_list p::before {
  content: "";
  background-image: url(../lp3-img/checkbox_icon.webp);
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 16px;
  position: absolute;
  top: 4px;
  left: 0;
}

.solution_content_list p:last-child {
  margin-bottom: 0;
}

/* reasons */
.reasons_heading {
  height: 350px;
  position: relative;
}
.reasons_heading::after {
  content: "";
  background-image: url(../lp3-img/bg_dots.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 320px;
  height: 320px;
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.reasons_heading .section_heading {
  z-index: 4;
}

.remark_marker_text {
  color: #5DBCE2;
  background: linear-gradient(transparent 50%, #FFF144 50%);
  padding: 0 20px;
}

.reasons_heading_img {
  position: absolute;
  top: 78%;
  left: 50%;
  transform: translateX(-50%);
  width: 137px;
  z-index: 5;
}

.reasons_item {
  border: 2px solid #283033;
  width: 90%;
  padding: 24px 0;
  margin: 0 auto 30px;
  background-color: #FFF;
  position: relative;
  z-index: 2;
}

.reasons_list {
  padding-top: 14px;
}

.reasons_item h3 {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  color: #5DBCE2;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 60px;
  margin-bottom: 16px;
  text-shadow: 2px 2px 0 #EEF8FC;
}
@media screen and (max-width: 375px) {
  .reasons_item h3 {
    font-size: 6vw;
  }
}
.reasons_item p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  padding: 0 10px;
}

.reasons_item:nth-child(2) .reasons_item_top {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #5DBCE2;
  background: linear-gradient(transparent 50%, #FFF144 50%);
  padding: 0 12px;
  margin-left: 60px;
  margin-bottom: 16px;
  width: -moz-fit-content;
  width: fit-content;
  transform: rotate(-5deg);
}
.reasons_item:nth-child(2) h3 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 16px;
}

.reasons_item_number {
  width: 50px;
  height: 72px;
  background-color: #5DBCE2;
  text-align: center;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 90%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 90%, 0% 100%);
  position: absolute;
  top: -14px;
  left: -2.2px;
  z-index: 3;
}
.reasons_item_number span {
  color: #FFF;
  font-size: 40px;
  font-weight: 800;
}

.shadow_yellow {
  position: absolute;
  display: block;
  background-color: #FFF144;
  width: 4px;
  height: 12px;
  -webkit-clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
  top: -14px;
  left: 47.5px;
}

.reasons_item img {
  display: block;
  width: 300px;
  margin: 0 auto;
}

.reasons_bottom {
  background-image: url(../lp3-img/reasons_bottom_bg.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-top: 24px;
  margin-bottom: 40px;
}

.reasons_bottom_text p {
  font-size: 24px;
  font-weight: 700;
  background-color: #FFF;
  width: 90%;
  margin: 0 auto 8px;
  padding: 4px 0;
  text-align: center;
  transform: rotate(-5deg);
}
.reasons_bottom_text p:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
}
.reasons_bottom_text p:nth-child(3) {
  font-weight: 500;
}
.reasons_bottom_text .yellow_text {
  width: 100px;
}
.reasons_bottom_text .white_text {
  width: 108px;
}

.reasons_bottom_img {
  position: relative;
  z-index: 5;
}

/* success */
#success .section_heading {
  margin-bottom: 16px;
}
#success .section_heading_text .small_text {
  font-weight: 500;
  font-size: 24px;
}
#success .section_heading_text .black_text {
  font-weight: 900;
}

.success_top {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  width: 90%;
  margin: 0 auto 24px;
}
.success_top .lightblue_marker {
  background: linear-gradient(transparent 50%, #EEF8FC 50%);
}

.success_review {
  margin-bottom: 40px;
}

.success_review_top {
  color: #FFF;
  font-size: 24px;
  background-color: #5DBCE2;
  width: 90%;
  margin: 0 auto 24px;
  text-align: center;
  padding: 4px 0;
}

.success_review_item {
  border: 2px solid #283033;
  width: 90%;
  height: 540px;
  padding: 24px 0;
  margin: 16px auto;
  position: relative;
}
.success_review_item img {
  display: block;
  width: 46%;
  margin: 0 auto 8px;
}

.success_review_name {
  display: block;
  font-size: 16px;
  font-weight: 400;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 8px;
}

.success_review_item_number {
  width: 50px;
  height: 72px;
  background-color: #283033;
  text-align: center;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 90%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 90%, 0% 100%);
  position: absolute;
  top: -14px;
  left: -2.2px;
  z-index: 3;
}
.success_review_item_number span {
  font-size: 40px;
  font-weight: 800;
  color: #FFF;
}

.success_review_detail {
  display: grid;
  grid-template-columns: 1fr 2fr;
  row-gap: 8px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  width: 96%;
  margin: 0 auto 16px;
}
@media screen and (max-width: 375px) {
  .success_review_detail {
    font-size: 14px;
  }
}
.success_review_detail .gray_bg {
  color: #FFF;
  background-color: #73787A;
  position: relative;
}
.success_review_detail .gray_bg::after {
  position: absolute;
  content: "";
  border: solid 12px transparent;
  border-left: solid 12px #73787A;
  top: 0;
  right: -24px;
}
@media screen and (max-width: 375px) {
  .success_review_detail .gray_bg::after {
    border: solid 10px transparent;
    border-left: solid 10px #73787A;
    right: -20px;
  }
}
.success_review_detail .yellow_bg {
  background-color: #FFF144;
}
.success_review_detail .bold_text {
  font-weight: 700;
}

.success_review_text {
  font-size: 16px;
  font-weight: 400;
  width: 96%;
  margin: 0 auto;
}

.success_review .swiper-button-prev {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background-color: #73787A;
  color: #FFF;
  padding-left: 6px;
  top: 25%;
}
.success_review .swiper-button-prev::after {
  content: "";
  font-size: 14px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #FFF;
  border-left: 2px solid #FFF;
  transform: rotate(-45deg);
}

.success_review .swiper-button-prev:hover::after {
  opacity: 0.6;
}

.success_review .swiper-button-next {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background-color: #73787A;
  color: #FFF;
  padding-right: 6px;
  top: 25%;
}
.success_review .swiper-button-next::after {
  content: "";
  font-size: 14px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  transform: rotate(45deg);
}

.success_review .swiper-button-next:hover::after {
  opacity: 0.6;
}

.success_bottom {
  margin-bottom: 40px;
}

.success_bottom_bubble {
  display: grid;
  grid-template-columns: 2px 1fr 2px;
  gap: 24px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 8px;
}
.success_bottom_bubble .line_left {
  width: 2px;
  height: 34px;
  background-color: #283033;
  transform: rotate(-16deg);
}
.success_bottom_bubble .line_right {
  width: 2px;
  height: 34px;
  background-color: #283033;
  transform: rotate(16deg);
}

.success_bottom_bubble {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 375px) {
  .success_bottom_bubble {
    font-size: 6.4vw;
  }
}
.success_bottom_bubble span {
  text-align: center;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}

.success_bottom .remark_marker_text {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 32px;
  font-weight: 800;
  color: #5DBCE2;
  background: linear-gradient(transparent 50%, #FFF144 50%);
  padding: 0 20px;
}
@media screen and (max-width: 375px) {
  .success_bottom .remark_marker_text {
    font-size: 8.53vw;
  }
}

/* worries */
#worries {
  background-color: #E9EAEA;
  padding: 24px 0;
}

.worries_heading {
  font-size: 24px;
  font-weight: 700;
  color: #FFF;
  background-color: #73787A;
  padding: 6px 0px;
  margin: 0 auto 36px;
  width: 90%;
  border-radius: 11px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 375px) {
  .worries_heading {
    font-size: 6.4vw;
  }
}
.worries_heading::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -16px;
  left: 50%;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #73787A transparent transparent transparent;
  border-width: 16px 16px 0 1px;
}

.worries_content {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 16px;
}
@media screen and (max-width: 375px) {
  .worries_content {
    width: 90%;
  }
}

.worries_content p {
  font-size: 16px;
  padding-left: 28px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 16px;
}
.worries_content p::before {
  content: "";
  background-image: url(../lp3-img/checkbox_icon.webp);
  background-size: cover;
  background-repeat: no-repeat;
  width: 20px;
  height: 16px;
  position: absolute;
  top: 4px;
  left: 0;
}

.worries_img {
  width: 200px;
  margin: 0 auto;
}

/* support */
.support_heading {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  padding-top: 40px;
  position: relative;
  height: 460px;
}
@media screen and (max-width: 375px) {
  .support_heading {
    font-size: 13.9vw;
  }
}

@media screen and (max-width: 350px) {
  .support_heading {
    height: 440px;
  }
}
@media screen and (max-width: 330px) {
  .support_heading {
    height: 430px;
  }
}
.support_heading_top {
  display: block;
  width: 250px;
  margin: 0 auto;
  color: #5DBCE2;
  transform: rotate(-5deg);
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
}

.support_heading_bg {
  background-color: #5DBCE2;
  height: 120px;
  width: 100%;
  -webkit-clip-path: polygon(0% 26%, 100% 0%, 100% 74%, 0% 100%);
          clip-path: polygon(0% 26%, 100% 0%, 100% 74%, 0% 100%);
  position: absolute;
  top: 150px;
}
@media screen and (max-width: 375px) {
  .support_heading_bg {
    height: 32vw;
    top: 42vw;
  }
}

.support_heading_main {
  color: #FFF144;
  display: block;
  width: 90%;
  position: absolute;
  top: 180px;
  left: 52%;
  transform: translateX(-50%) rotate(-5deg);
}
@media screen and (max-width: 375px) {
  .support_heading_main {
    top: 50vw;
  }
}

.support_heading_img {
  position: absolute;
  top: 230px;
  left: 50%;
  transform: translateX(-50%);
  width: 270px;
}
@media screen and (max-width: 375px) {
  .support_heading_img {
    top: 61.3vw;
  }
}

.support_bottom {
  width: 88%;
  margin: 0 auto 40px;
}

/* flow */
.flow_heading {
  color: #FFF;
  font-size: 32px;
  font-weight: 800;
  width: 90%;
  margin: 0 auto 48px;
  padding: 16px 0;
  text-align: center;
  background-color: #5DBCE2;
  border-radius: 11px;
  position: relative;
}
@media screen and (max-width: 375px) {
  .flow_heading {
    font-size: 8.53vw;
  }
}
.flow_heading::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -16px;
  left: 50%;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #5DBCE2 transparent transparent transparent;
  border-width: 16px 16px 0 1px;
}

.flow_content {
  background-color: #5DBCE2;
  width: 90%;
  height: 1619px;
  margin: 0 auto 64px;
  position: relative;
}

.flow_item {
  width: 100%;
  margin: 0 auto;
  padding: 24px 0 48px;
  text-align: center;
  border-left: 3px solid #5DBCE2;
  border-right: 3px solid #5DBCE2;
}

.flow_item span {
  display: block;
  color: #5DBCE2;
  font-size: 24px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 8px;
}
.flow_item p {
  font-size: 16px;
  font-weight: 400;
}

.flow_item:first-child {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 32px), 50% 100%, 0% calc(100% - 32px));
          clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 32px), 50% 100%, 0% calc(100% - 32px));
}

.flow_item:not(:first-child) {
  padding: 48px 0 48px;
}

.flow_item:not(:first-of-type):not(:last-of-type) {
  -webkit-clip-path: polygon(0% 0%, 50% 32px, 100% 0%, 100% calc(100% - 32px), 50% 100%, 0% calc(100% - 32px));
          clip-path: polygon(0% 0%, 50% 32px, 100% 0%, 100% calc(100% - 32px), 50% 100%, 0% calc(100% - 32px));
}

.flow_item:first-child {
  border-top: 3px solid #5DBCE2;
}

.flow_item:nth-child(2) {
  position: absolute;
  top: 305.5px;
}

.flow_item:nth-child(3) {
  position: absolute;
  top: 632px;
}

.flow_item:nth-child(4) {
  position: absolute;
  top: 958.5px;
}

.flow_item:last-child {
  -webkit-clip-path: polygon(0% 0%, 50% 32px, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 50% 32px, 100% 0%, 100% 100%, 0% 100%);
  border-bottom: 3px solid #5DBCE2;
  position: absolute;
  top: 1285px;
}

.flow_item:nth-child(odd) {
  background-color: #FFF;
}

.flow_item:nth-child(even) {
  background-color: #EEF8FC;
}

.flow_item_img {
  width: 160px;
  height: 160px;
  margin: 0 auto 8px;
}

/* cta */
.section_heading_text {
  font-weight: 700;
}

.cta_heading {
  color: #FFF;
  font-size: 32px;
  font-weight: 800;
  width: 90%;
  margin: 0 auto 48px;
  padding: 16px 0;
  text-align: center;
  background-color: #5DBCE2;
  border-radius: 11px;
  position: relative;
}
@media screen and (max-width: 375px) {
  .cta_heading {
    font-size: 8.53vw;
  }
}
.cta_heading::after {
  content: "";
  position: absolute;
  right: 65%;
  bottom: -16px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #5DBCE2 transparent transparent transparent;
  border-width: 16px 1px 0 16px;
}

.cta_content {
  background-color: #EEF8FC;
  padding: 24px 0;
  width: 90%;
  margin: 0 auto 50px;
}
.cta_content .line_item {
  height: 2px;
  background-color: #283033;
}

.cta_content_top {
  display: grid;
  grid-template-columns: 15px 65px 15px;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}
.cta_content_top h5 {
  font-size: 16px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
}

.cta_icon {
  font-size: 14px;
  font-weight: 400;
  color: #FFF;
  display: inline-block;
  border-radius: 4px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta_required_icon {
  background-color: #FF448F;
}

.cta_any_icon {
  background-color: #73787A;
}

.cta_content_input_item {
  width: 95%;
  margin: 0 auto 24px;
}

.cta_content_input_title {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.cta_content_input_area input {
  color: #283033;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  background-color: #FFF;
  width: 100%;
  border: 1px solid #283033;
  padding: 3px 10px 2px;
  border-radius: 2px;
}
.cta_content_input_area input::-moz-placeholder {
  color: #73787A;
  font-weight: 400;
}
.cta_content_input_area input::placeholder {
  color: #73787A;
  font-weight: 400;
}

.select_area_class {
  color: #283033;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  background-color: #FFF;
  width: 100%;
  border: 1px solid #283033;
  padding: 3px 10px 2px;
  border-radius: 2px;
  position: relative;
}
.select_area_class::-moz-placeholder {
  color: #73787A;
  font-weight: 400;
}
.select_area_class::placeholder {
  color: #73787A;
  font-weight: 400;
}

.wpcf7-form-control {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}

.birthday_input_area .wpcf7-form-control {
  color: #283033;
  padding: 2px 10px 1px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  background-color: #FFF;
  border: 1px solid #283033;
  border-radius: 2px;
  padding: 0;
}
.birthday_input_area .wpcf7-not-valid-tip {
  display: none;
}

.wpcf7-custom-item-error {
  font-size: 16px;
  font-weight: 400;
  color: #DC3232;
}

.error_none {
  display: none;
}

.error_appear {
  display: block;
}

.birthday_input_area p {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.birth-year_select {
  width: 83px;
}
@media screen and (max-width: 375px) {
  .birth-year_select {
    width: 22.1vw;
  }
}

.birth-month_select,
.birth-day_select {
  width: 62px;
}
@media screen and (max-width: 375px) {
  .birth-month_select,
  .birth-day_select {
    width: 16.5vw;
  }
}

.cta_content_radio_area {
  margin-bottom: 8px;
}
.cta_content_radio_area .wpcf7-form-control {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.cta_content_radio_area input[type=radio] {
  display: none;
}
.cta_content_radio_area input[type=radio]:checked + .wpcf7-list-item-label {
  background: #5DBCE2;
  color: #ffffff;
  font-weight: 700;
}
.cta_content_radio_area .wpcf7-list-item-label {
  background-color: #FFF;
  border: 1px solid #283033;
  border-radius: 2px;
  padding: 3px 0 2px;
  width: 100%;
  display: block;
  text-align: center;
}
.cta_content_radio_area label {
  width: 100%;
  display: block;
}
.cta_content_radio_area .wpcf7-list-item {
  margin: 0;
}

.cta_content_input_bottom {
  font-size: 14px;
  font-weight: 400;
  display: grid;
  grid-template-columns: 16px 1fr;
  margin-top: 8px;
}
.cta_content_input_bottom p.pink_text {
  width: -moz-fit-content;
  width: fit-content;
  color: #FF448F;
}

.cta_content_input_bottom_confirm {
  font-size: 14px;
  font-weight: 400;
  margin-top: 8px;
}
.cta_content_input_bottom_confirm .confirm_area {
  font-weight: 700;
}

.cta_content_input_text {
  font-size: 14px;
  font-weight: 400;
}

.cta_content_foreign {
  display: grid;
  grid-template-columns: 15px 255px 15px;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  text-align: center;
}
@media screen and (max-width: 375px) {
  .cta_content_foreign {
    grid-template-columns: 15px 150px 15px;
  }
}
.cta_content_foreign h5 {
  font-size: 16px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
}

.cta_content_foreign_area {
  padding-left: 3px;
}
.cta_content_foreign_area .wpcf7-form-control {
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.cta_content_foreign_area input[type=checkbox] {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 8px;
  transform: scale(1.4);
}
.cta_content_foreign_area .wpcf7-list-item {
  margin: 0;
}

.cta_submit_btn input {
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  background-color: #5DBCE2;
  width: 95%;
  margin: 0 auto;
  padding: 8px 36px 8px 0;
  display: block;
  border-radius: 50px;
  transition: all 0.3s;
}
.cta_submit_btn input:hover {
  background: #346A80;
}

.cta_submit_btn {
  position: relative;
}
.cta_submit_btn::after {
  content: "";
  background-image: url(../lp3-img/submit_icon.webp);
  background-size: cover;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 8px;
  right: 38%;
}

.screen-reader-response {
  display: none;
}

#cta .cta_links p {
  width: 80%;
  margin: 0 auto 24px;
  font-size: 16px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
#cta .cta_links p a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #283033;
  border-bottom: 1px solid #283033;
  transition: all 0.3s;
  text-decoration: none;
}
#cta .cta_links p a:hover {
  opacity: 0.6;
}

/* footer */
#footer {
  background-color: #EEF8FC;
  padding: 8px 0 30px;
}

.footer_content {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 12px;
  font-weight: 400;
}/*# sourceMappingURL=lp3-index.css.map */