@charset "UTF-8";
@font-face {
  font-family: "SignPainter";
  src: url("SignPainterHouseScript.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.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_left {
  animation: dokundokun_left 2500ms ease infinite;
}

@keyframes dokundokun_left {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.2) rotate(-8deg);
  }
  30% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.2) rotate(8deg);
  }
  70% {
    transform: scale(1);
  }
}
.animation_dokundokun_right {
  animation: dokundokun_right 2500ms ease infinite;
}

@keyframes dokundokun_right {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.2) rotate(8deg);
  }
  30% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.2) rotate(-8deg);
  }
  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 {
  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;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.03em;
}
@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-lp/bg.webp);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1000px) {
  .bg {
    z-index: 2;
  }
}
@media screen and (max-width: 600px) {
  .bg {
    display: none;
  }
}

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

.bg_inner {
  position: absolute;
  width: 34vw;
  top: 50%;
  transform: translateY(-50%);
  left: 6vw;
}

.bg_main {
  margin-bottom: 3vw;
}

.bg_bottom {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2vw auto 0;
  font-size: 1.2vw;
  color: #600422;
  font-weight: 600;
}

.lp_body {
  position: absolute;
  z-index: 3;
  margin-inline: auto;
  width: 100%;
  max-width: 640px;
  top: 0;
  right: 15%;
  background-color: #FFEBF1;
}
@media screen and (max-width: 1600px) {
  .lp_body {
    right: 10%;
  }
}
@media screen and (max-width: 1400px) {
  .lp_body {
    max-width: 600px;
    right: 5%;
  }
}
@media screen and (max-width: 1200px) {
  .lp_body {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 600px) {
  .lp_body {
    position: static;
    transform: none;
    margin-inline: 0;
    overflow-x: hidden;
  }
}

/*---------------- fv ----------------*/
.fv {
  position: relative;
  z-index: 40;
}
@media screen and (max-width: 600px) {
  .fv {
    background-image: url(../img-lp/fv.webp);
    background-size: cover;
    background-repeat: no-repeat;
    height: 136vw;
  }
}

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

.fv_content {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.fv_top {
  width: 100%;
  position: absolute;
  top: 32px;
  left: 0;
}
@media screen and (max-width: 600px) {
  .fv_top {
    top: 4.6vw;
  }
}

.fv_top_inner {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 16px;
  padding: 10px 16px;
}
@media screen and (max-width: 600px) {
  .fv_top_inner {
    padding: 1.6vw 2.4vw;
  }
}

.fv_top_txt {
  color: #FF588B;
  font-weight: 900;
  font-size: 24px;
}
@media screen and (max-width: 1400px) {
  .fv_top_txt {
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .fv_top_txt {
    font-size: 4vw;
  }
}
.fv_top_txt span {
  font-size: 20px;
  color: #600422;
}
@media screen and (max-width: 1400px) {
  .fv_top_txt span {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .fv_top_txt span {
    font-size: 3.6vw;
  }
}

.fv_txt {
  position: absolute;
  left: 5%;
  bottom: 120px;
}
@media screen and (max-width: 1400px) {
  .fv_txt {
    bottom: 108px;
  }
}
@media screen and (max-width: 600px) {
  .fv_txt {
    bottom: 17vw;
    width: 94%;
    left: 3%;
  }
}

.fv_txt_top {
  width: 288px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1400px) {
  .fv_txt_top {
    width: 260px;
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 600px) {
  .fv_txt_top {
    width: 62%;
    margin-bottom: 30vw;
  }
}

.fv_txt_bottom {
  width: 563px;
}
@media screen and (max-width: 1400px) {
  .fv_txt_bottom {
    width: 520px;
  }
}
@media screen and (max-width: 600px) {
  .fv_txt_bottom {
    width: 100%;
  }
}

.fv_bottom {
  background-image: url(../img-lp/fv_bottom_bg.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 8px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .fv_bottom {
    padding: 4px 0;
  }
}
@media screen and (max-width: 600px) {
  .fv_bottom {
    padding: 0.2vw 0;
  }
}
.fv_bottom img {
  width: 400px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .fv_bottom img {
    width: 68vw;
  }
}

.kiran {
  height: 100%;
  width: 30px;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #fff;
  opacity: 0;
  z-index: 2;
  transform: rotate(45deg);
  animation: reflection 3s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflection 2s ease-in-out infinite;
  -moz-transform: rotate(45deg);
  -moz-animation: reflection 2s ease-in-out infinite;
  -ms-transform: rotate(45deg);
  -ms-animation: reflection 2s ease-in-out infinite;
  -o-transform: rotate(45deg);
  -o-animation: reflection 2s ease-in-out infinite;
}

@keyframes reflection {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  30% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  31% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
/*---------------- present ----------------*/
.present {
  background-image: url(../img-lp/present_bg.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 32px 0;
  position: relative;
}
@media screen and (max-width: 600px) {
  .present {
    padding: 24px 0;
  }
}

.present_wrap {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .present_wrap {
    width: 94%;
  }
}

.present_heading {
  width: 85%;
  margin: 0 auto 70px;
  transform: translateY(-500px);
  transition: all 0.7s;
  z-index: 0;
  position: relative;
}
@media screen and (max-width: 600px) {
  .present_heading {
    width: 94%;
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 375px) {
  .present_heading {
    width: 100%;
  }
}

.move .present_heading {
  transform: translateY(0);
}

.present_item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 28px;
}
@media screen and (max-width: 1400px) {
  .present_item {
    padding-left: 42px;
  }
}
@media screen and (max-width: 600px) {
  .present_item {
    padding-left: 30px;
  }
}
.present_item:last-child {
  margin-bottom: 0;
}
.present_item::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 46px;
  background-image: url(../img-lp/check_icon.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 1400px) {
  .present_item::after {
    width: 36px;
    height: 42px;
  }
}
@media screen and (max-width: 600px) {
  .present_item::after {
    width: 24px;
    height: 28px;
  }
}
.present_item span {
  color: #FF588B;
  font-weight: 900;
  font-size: 24px;
}
@media screen and (max-width: 1400px) {
  .present_item span {
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .present_item span {
    font-size: 18px;
  }
}

.present_img {
  position: absolute;
  width: 189px;
  bottom: 0;
  right: 5%;
}
@media screen and (max-width: 1400px) {
  .present_img {
    width: 168px;
  }
}
@media screen and (max-width: 600px) {
  .present_img {
    width: 31vw;
    right: 2%;
  }
}

.present_heart {
  width: 92px;
  position: absolute;
  right: 190px;
  bottom: 140px;
}
@media screen and (max-width: 1400px) {
  .present_heart {
    width: 80px;
  }
}
@media screen and (max-width: 600px) {
  .present_heart {
    width: 14vw;
    right: 30vw;
    bottom: 30vw;
  }
}

/*---------------- cta ----------------*/
.cta-top {
  background-image: url(../img-lp/cta_bg1.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 50px 0;
}
@media screen and (max-width: 600px) {
  .cta-top {
    padding: 36px 0;
  }
}

.cta-bottom {
  background-image: url(../img-lp/cta_bg3.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 68px 0;
}

.cta_wrap {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .cta_wrap {
    width: 94%;
  }
}

.cta_heading img {
  width: 90%;
  margin: 0 auto 12px;
}
@media screen and (max-width: 600px) {
  .cta_heading img {
    width: 100%;
  }
}

.cta_heading_top {
  padding: 10px 90px 12px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #F74F82;
  border-radius: 100px;
  margin: 0 auto 18px;
}
@media screen and (max-width: 600px) {
  .cta_heading_top {
    padding: 10px 40px 12px;
  }
}
.cta_heading_top span {
  font-size: 32px;
  color: #fff;
  font-weight: 900;
}
@media screen and (max-width: 1400px) {
  .cta_heading_top span {
    font-size: 28px;
  }
}
@media screen and (max-width: 600px) {
  .cta_heading_top span {
    font-size: 22px;
  }
}

.cta_heading_main {
  position: relative;
}

.cta_heading_main > img {
  position: absolute;
}
.cta_heading_main > img:nth-child(1) {
  width: 64px;
  left: 0;
  top: 8px;
}
@media screen and (max-width: 600px) {
  .cta_heading_main > img:nth-child(1) {
    width: 10vw;
    top: 1.4vw;
  }
}
.cta_heading_main > img:nth-child(2) {
  width: 64px;
  right: 0;
  top: 8px;
}
@media screen and (max-width: 600px) {
  .cta_heading_main > img:nth-child(2) {
    width: 10vw;
    top: 1.4vw;
  }
}
.cta_heading_main > img:nth-child(3) {
  width: 68px;
  left: 40px;
  bottom: 0;
}
@media screen and (max-width: 600px) {
  .cta_heading_main > img:nth-child(3) {
    width: 11vw;
    left: 6.8vw;
  }
}
.cta_heading_main > img:nth-child(4) {
  width: 68px;
  right: 40px;
  bottom: 0;
}
@media screen and (max-width: 600px) {
  .cta_heading_main > img:nth-child(4) {
    width: 11vw;
    right: 6.8vw;
  }
}
.cta_heading_main > img:last-child {
  position: relative;
}

.cta_btn {
  display: block;
  position: relative;
}
.cta_btn::after {
  content: "";
  position: absolute;
  display: block;
  top: 6px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #003E05;
  border-radius: 20px;
}
.cta_btn img {
  position: relative;
  z-index: 2;
  border-radius: 20px;
}

.cta_btn:hover {
  top: 6px;
}
.cta_btn:hover::after {
  top: 0;
}

.cta_btn_inner {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.cta_bottom {
  width: -moz-fit-content;
  width: fit-content;
  margin: 24px auto 0;
  display: block;
  color: #600422;
  font-weight: 600;
  font-size: 24px;
}
@media screen and (max-width: 1400px) {
  .cta_bottom {
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .cta_bottom {
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  .cta_bottom {
    font-size: 14px;
  }
}

/*---------------- benefit ----------------*/
.benefit_heading {
  background-color: rgba(255, 255, 255, 0.3);
  padding: 40px 0 132px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .benefit_heading {
    padding: 24px 0 26vw;
  }
}

.benefit_wrap {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .benefit_wrap {
    width: 94%;
  }
}

.benefit_heading_top {
  margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
  .benefit_heading_top {
    margin-bottom: 16px;
  }
}
.benefit_heading_top img {
  width: 326px;
  margin: 0 auto 8px;
}
@media screen and (max-width: 600px) {
  .benefit_heading_top img {
    width: 54vw;
  }
}
.benefit_heading_top span {
  font-size: 40px;
  font-weight: 900;
  color: #FF588B;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .benefit_heading_top span {
    font-size: 6.7vw;
  }
}

.benefit_heading_main {
  width: 500px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .benefit_heading_main {
    width: 100%;
  }
}

.benefit_heading_effect {
  position: absolute;
  width: 60px;
  top: 98px;
}
@media screen and (max-width: 600px) {
  .benefit_heading_effect {
    width: 10vw;
    top: 16vw;
  }
}
.benefit_heading_effect:nth-child(1) {
  left: 40px;
}
@media screen and (max-width: 600px) {
  .benefit_heading_effect:nth-child(1) {
    left: 4vw;
  }
}
.benefit_heading_effect:nth-child(2) {
  right: 40px;
}
@media screen and (max-width: 600px) {
  .benefit_heading_effect:nth-child(2) {
    right: 4vw;
  }
}

.benefit_heading_arrow {
  position: absolute;
  width: 296px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  bottom: 78px;
  animation: benefit_heading_arrow 0.8s linear infinite;
  scale: 1;
}
@media screen and (max-width: 600px) {
  .benefit_heading_arrow {
    width: 56vw;
    bottom: 16vw;
  }
}

@keyframes benefit_heading_arrow {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}
.benefit_content {
  background: linear-gradient(180deg, #FFECBA 0%, #F7E3B1 33%, #F7E3B1 67%, #F0CE7D 100%);
  padding: 90px 0 80px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .benefit_content {
    padding: 16vw 0 10vw;
  }
}

.benefit_ribbon_top {
  position: absolute;
  top: -86px;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .benefit_ribbon_top {
    top: -14vw;
  }
}

.benefit_ribbon_bottom {
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .benefit_ribbon_bottom {
    bottom: -2.6vw;
    z-index: 2;
  }
}

.benefit_item {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 12px;
}
.benefit_item:last-child {
  margin-bottom: 0;
}

/*---------------- voice ----------------*/
.voice {
  background-image: url(../img-lp/voice_bg.webp);
  background-size: contain;
  background-repeat: repeat-y;
}

.voice_heading {
  padding: 72px 0 70px;
  background: linear-gradient(180deg, #FFF0F3 0%, #FFF0F3 85%, rgba(255, 222, 232, 0.16));
  position: relative;
}
@media screen and (max-width: 1400px) {
  .voice_heading {
    padding: 64px 0;
  }
}
@media screen and (max-width: 600px) {
  .voice_heading {
    padding: 12vw 0;
  }
}

.voice_heading_main {
  width: 500px;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .voice_heading_main {
    width: 460px;
  }
}
@media screen and (max-width: 600px) {
  .voice_heading_main {
    width: 94%;
  }
}

.voice_heading_effect {
  width: 60px;
  position: absolute;
  top: 188px;
}
@media screen and (max-width: 1400px) {
  .voice_heading_effect {
    width: 52px;
  }
}
@media screen and (max-width: 600px) {
  .voice_heading_effect {
    width: 8.6vw;
    top: 32vw;
  }
}
.voice_heading_effect:nth-child(1) {
  left: 48px;
  transform: scale(-1, 1);
}
@media screen and (max-width: 600px) {
  .voice_heading_effect:nth-child(1) {
    left: 4vw;
  }
}
.voice_heading_effect:nth-child(2) {
  right: 48px;
}
@media screen and (max-width: 600px) {
  .voice_heading_effect:nth-child(2) {
    right: 4vw;
  }
}

.voice_wrap {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .voice_wrap {
    width: 94%;
  }
}

.voice_list {
  padding-bottom: 70px;
}
@media screen and (max-width: 600px) {
  .voice_list {
    padding-bottom: 48px;
  }
}

.voice_item {
  background-color: #fff;
  padding: 42px 24px;
  position: relative;
  margin-bottom: 120px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 1400px) {
  .voice_item {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 600px) {
  .voice_item {
    padding: 40px 12px 32px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 375px) {
  .voice_item {
    margin-bottom: 40px;
  }
}
.voice_item:last-child {
  margin-bottom: 0;
}

.voice_item:nth-child(even) .voice_item_img {
  left: 32px;
  right: auto;
}
@media screen and (max-width: 600px) {
  .voice_item:nth-child(even) .voice_item_img {
    left: 24px;
  }
}
@media screen and (max-width: 375px) {
  .voice_item:nth-child(even) .voice_item_img {
    left: 12px;
  }
}
.voice_item:nth-child(even) .voice_item_prof {
  margin-left: auto;
  margin-right: 40px;
}
@media screen and (max-width: 600px) {
  .voice_item:nth-child(even) .voice_item_prof {
    margin-right: 12px;
  }
}
@media screen and (max-width: 375px) {
  .voice_item:nth-child(even) .voice_item_prof {
    margin-right: 0;
  }
}

.voice_item_img {
  position: absolute;
  width: 160px;
  right: 32px;
  top: -68px;
}
@media screen and (max-width: 1400px) {
  .voice_item_img {
    width: 140px;
    top: -54px;
  }
}
@media screen and (max-width: 600px) {
  .voice_item_img {
    width: 23vw;
    top: -5vw;
    right: 24px;
  }
}
@media screen and (max-width: 375px) {
  .voice_item_img {
    right: 12px;
  }
}

.voice_item_prof {
  color: #FC1D61;
  font-size: 28px;
  font-family: "vdl-penletter", sans-serif;
  font-weight: 500;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 34px;
  margin-left: 40px;
}
@media screen and (max-width: 1400px) {
  .voice_item_prof {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .voice_item_prof {
    margin-left: 12px;
    font-size: 20px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 375px) {
  .voice_item_prof {
    margin-left: 0;
  }
}

.voice_item_txt {
  background-color: #FFEBF1;
  border-radius: 16px;
  padding: 42px 22px;
}
@media screen and (max-width: 600px) {
  .voice_item_txt {
    padding: 24px 12px;
  }
}
.voice_item_txt p {
  letter-spacing: 0.04em;
  font-size: max(1.2vw, 18px);
  font-weight: 600;
  color: #600422;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .voice_item_txt p {
    font-size: 16px;
    text-align: justify;
  }
}

/*---------------- trouble ----------------*/
.trouble_heading img {
  width: 90%;
  margin: 0 auto;
  transform: translateY(28px);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .trouble_heading img {
    width: 94%;
    transform: translateY(20px);
  }
}

.trouble_content {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 56px 0 42px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), 50% 100%, 0 calc(100% - 28px));
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), 50% 100%, 0 calc(100% - 28px));
}
@media screen and (max-width: 600px) {
  .trouble_content {
    padding: 48px 0;
  }
}

.trouble_list {
  max-width: 90%;
  margin: 0 auto 52px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 600px) {
  .trouble_list {
    margin: 0 auto 32px;
    max-width: 94%;
  }
}

.trouble_item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 36px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1400px) {
  .trouble_item {
    padding-left: 42px;
  }
}
@media screen and (max-width: 600px) {
  .trouble_item {
    padding-left: 30px;
    margin-bottom: 20px;
  }
}
.trouble_item:last-child {
  margin-bottom: 0;
}
.trouble_item::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 46px;
  background-image: url(../img-lp/check_icon.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 1400px) {
  .trouble_item::after {
    width: 36px;
    height: 42px;
  }
}
@media screen and (max-width: 600px) {
  .trouble_item::after {
    width: 24px;
    height: 28px;
  }
}

.trouble_item span {
  color: #600422;
  font-size: 26px;
  font-weight: 800;
}
@media screen and (max-width: 600px) {
  .trouble_item span {
    font-size: 18px;
  }
}
.trouble_item span span {
  color: #FF588B;
}

.trouble_bottom {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: 900;
  font-size: 32px;
  color: #600422;
}
@media screen and (max-width: 600px) {
  .trouble_bottom {
    font-size: 20px;
  }
}

/*---------------- solution ----------------*/
.solution_content {
  padding: 24px 64px 50px;
  background: linear-gradient(180deg, rgba(255, 222, 232, 0) 0%, #fff 50%, rgba(255, 222, 232, 0.5) 100%);
  position: relative;
}
@media screen and (max-width: 1400px) {
  .solution_content {
    padding: 24px 58px 50px;
  }
}
@media screen and (max-width: 600px) {
  .solution_content {
    padding: 24px 3vw 50px;
  }
}

.solution_txt {
  width: 300px;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .solution_txt {
    width: 280px;
  }
}
@media screen and (max-width: 600px) {
  .solution_txt {
    width: 58vw;
  }
}

.solution_txt_effect {
  position: absolute;
  width: 52px;
  top: 20px;
}
@media screen and (max-width: 1400px) {
  .solution_txt_effect {
    width: 42px;
  }
}
@media screen and (max-width: 600px) {
  .solution_txt_effect {
    width: 8vw;
    top: 4.2vw;
  }
}
.solution_txt_effect:nth-child(1) {
  left: 20px;
}
@media screen and (max-width: 600px) {
  .solution_txt_effect:nth-child(1) {
    left: 5.2vw;
  }
}
.solution_txt_effect:nth-child(2) {
  right: 20px;
}
@media screen and (max-width: 600px) {
  .solution_txt_effect:nth-child(2) {
    right: 5.2vw;
  }
}

.solution_img {
  position: absolute;
  width: 174px;
  bottom: 0;
  right: 40px;
}
@media screen and (max-width: 1400px) {
  .solution_img {
    width: 162px;
    right: 32px;
  }
}
@media screen and (max-width: 600px) {
  .solution_img {
    width: 30vw;
    right: 1vw;
  }
}

.solution_arrow {
  position: absolute;
  width: 0;
  left: 360px;
  bottom: 120px;
  transition: all 0.5s;
  transform-origin: left bottom;
}
@media screen and (max-width: 1400px) {
  .solution_arrow {
    left: 330px;
    bottom: 110px;
  }
}
@media screen and (max-width: 600px) {
  .solution_arrow {
    left: 60vw;
  }
}

.solution_arrow.move {
  width: 100px;
}
@media screen and (max-width: 600px) {
  .solution_arrow.move {
    width: 16vw;
  }
}

/*---------------- flow ----------------*/
.flow {
  padding: 32px 0;
}
@media screen and (max-width: 600px) {
  .flow {
    padding: 24px 0;
  }
}

.flow_wrap {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .flow_wrap {
    width: 94%;
  }
}

.flow_top {
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .flow_top {
    margin-bottom: 24px;
  }
}

.flow_top_img {
  width: 140px;
  margin: 0 auto 8px;
}
@media screen and (max-width: 1400px) {
  .flow_top_img {
    width: 120px;
  }
}
@media screen and (max-width: 600px) {
  .flow_top_img {
    width: 90px;
  }
}

.flow_bubble {
  display: flex;
  align-items: center;
  gap: 16px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 16px;
}
@media screen and (max-width: 600px) {
  .flow_bubble {
    gap: 8px;
  }
}
.flow_bubble img {
  width: 44px;
}
@media screen and (max-width: 1400px) {
  .flow_bubble img {
    width: 38px;
  }
}
@media screen and (max-width: 600px) {
  .flow_bubble img {
    width: 24px;
  }
}
.flow_bubble span {
  font-size: 32px;
  color: #600422;
  font-weight: 600;
}
@media screen and (max-width: 1400px) {
  .flow_bubble span {
    font-size: 28px;
  }
}
@media screen and (max-width: 600px) {
  .flow_bubble span {
    font-size: 20px;
  }
}

.flow_item {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 32px;
}
@media screen and (max-width: 600px) {
  .flow_item {
    margin-bottom: 16px;
  }
}
.flow_item:last-child {
  margin-bottom: 0;
}

/*---------------- reason ----------------*/
.reason {
  background: linear-gradient(90deg, rgba(255, 222, 232, 0.5) 0%, rgba(255, 222, 232, 0.5) 20%, #fff 50%, rgba(255, 222, 232, 0.5) 80%, rgba(255, 222, 232, 0.5) 100%);
}

.reason_heading {
  background: linear-gradient(180deg, rgba(255, 222, 232, 0.5) 0%, #fff 50%, rgba(255, 222, 232, 0.5) 100%);
  padding: 28px 0 46px;
}
@media screen and (max-width: 600px) {
  .reason_heading {
    padding: 28px 0 28px;
  }
}

.reason_heading_wrap {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .reason_heading_wrap {
    width: 94%;
  }
}

.reason_heading_inner {
  display: flex;
  align-items: center;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.reason_heading_top {
  margin: 0 auto 28px;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .reason_heading_top {
    margin: 0 auto 18px;
  }
}
@media screen and (max-width: 600px) {
  .reason_heading_top {
    margin: 0 auto 12vw;
  }
}
.reason_heading_top span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 36px;
  color: #FF588B;
  font-weight: 800;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .reason_heading_top span {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .reason_heading_top span {
    font-size: 24px;
  }
}
@media screen and (max-width: 375px) {
  .reason_heading_top span {
    font-size: 22px;
  }
}
.reason_heading_top img {
  width: 165px;
}
@media screen and (max-width: 1400px) {
  .reason_heading_top img {
    width: 150px;
  }
}
@media screen and (max-width: 600px) {
  .reason_heading_top img {
    width: 68px;
  }
}
.reason_heading_top img.reason_heading_middle {
  width: 100%;
  position: absolute;
  bottom: -58px;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 1400px) {
  .reason_heading_top img.reason_heading_middle {
    bottom: -48px;
  }
}
@media screen and (max-width: 600px) {
  .reason_heading_top img.reason_heading_middle {
    bottom: -15vw;
  }
}

.reason_heading_bottom {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .reason_heading_bottom {
    gap: 8px;
    flex-direction: column;
  }
}
.reason_heading_bottom span {
  font-size: 33px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 900;
  color: #FF588B;
}
@media screen and (max-width: 1400px) {
  .reason_heading_bottom span {
    font-size: 28px;
  }
}
@media screen and (max-width: 600px) {
  .reason_heading_bottom span {
    font-size: 22px;
  }
}
@media screen and (max-width: 375px) {
  .reason_heading_bottom span {
    font-size: 20px;
  }
}
.reason_heading_bottom img {
  width: 280px;
}
@media screen and (max-width: 1400px) {
  .reason_heading_bottom img {
    width: 260px;
  }
}
@media screen and (max-width: 600px) {
  .reason_heading_bottom img {
    width: 220px;
  }
}

.reason_content {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .reason_content {
    width: 94%;
    padding-bottom: 40px;
  }
}

.reason_item {
  background-color: #fff;
  border: 8px solid #FFA0BD;
  border-radius: 32px;
  margin-bottom: 64px;
  padding: 54px 42px;
}
@media screen and (max-width: 600px) {
  .reason_item {
    padding: 32px 16px;
    border: 3px solid #FFA0BD;
    margin-bottom: 32px;
    border-radius: 18px;
  }
}
.reason_item:last-child {
  margin-bottom: 0;
}

.reason_item_title {
  display: flex;
  align-items: center;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 46px;
}
@media screen and (max-width: 600px) {
  .reason_item_title {
    gap: 12px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 24px;
  }
}
@media screen and (max-width: 375px) {
  .reason_item_title {
    gap: 6px;
  }
}
.reason_item_title span {
  font-family: "vdl-penletter", sans-serif;
  font-weight: 500;
  color: #FF588B;
  font-size: 60px;
}
@media screen and (max-width: 1400px) {
  .reason_item_title span {
    font-size: 54px;
  }
}
@media screen and (max-width: 600px) {
  .reason_item_title span {
    font-size: 32px;
  }
}
@media screen and (max-width: 375px) {
  .reason_item_title span {
    font-size: 26px;
  }
}
.reason_item_title h3 {
  font-size: 38px;
  font-weight: 900;
  color: #FF588B;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1400px) {
  .reason_item_title h3 {
    font-size: 34px;
  }
}
@media screen and (max-width: 600px) {
  .reason_item_title h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 375px) {
  .reason_item_title h3 {
    font-size: 22px;
  }
}
.reason_item_title h3::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 24px;
  bottom: 0;
  left: 0;
  background-image: url(../img-lp/yellow_band.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 1400px) {
  .reason_item_title h3::after {
    height: 20px;
  }
}
@media screen and (max-width: 600px) {
  .reason_item_title h3::after {
    height: 12px;
  }
}

.reason_item_img {
  width: 270px;
  margin: 0 auto 32px;
}
@media screen and (max-width: 600px) {
  .reason_item_img {
    width: 100%;
    margin: 0 auto 24px;
    max-width: 240px;
  }
}

.reason_item_txt {
  font-size: 18px;
  font-weight: 600;
  color: #600422;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .reason_item_txt {
    font-size: 16px;
    text-align: justify;
    font-weight: 500;
  }
}

/*---------------- merit ----------------*/
.merit {
  position: relative;
  padding-bottom: 60px;
}

.merit_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img-lp/merit_bg.webp);
  position: absolute;
  background-size: contain;
  background-repeat: repeat-y;
}

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

.merit_heading {
  margin-bottom: 40px;
}

.merit_heading_top {
  background: linear-gradient(180deg, #FFE6EE 0%, #FFFFFF 60%, rgba(255, 255, 255, 0) 100%);
  padding: 60px 0 24px;
}
@media screen and (max-width: 600px) {
  .merit_heading_top {
    padding: 40px 0 20px;
  }
}

.merit_heading_top_txt {
  display: block;
  max-width: 90%;
  margin: 0 auto;
  font-size: 26px;
  font-weight: 900;
  color: #FF588B;
}
@media screen and (max-width: 600px) {
  .merit_heading_top_txt {
    max-width: 94%;
    font-size: 18px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
@media screen and (max-width: 375px) {
  .merit_heading_top_txt {
    font-size: 16px;
  }
}
.merit_heading_top_txt span {
  font-family: "vdl-penletter", sans-serif;
  font-weight: 500;
  font-size: 36px;
  color: #FF588B;
  display: inline-block;
  background-color: #fff;
  padding: 8px 20px;
  border-radius: 6px;
  box-shadow: 0 3px 2px #FFC7D8;
  margin: 0 6px;
}
@media screen and (max-width: 1400px) {
  .merit_heading_top_txt span {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .merit_heading_top_txt span {
    font-size: 20px;
    padding: 8px 6px;
  }
}
@media screen and (max-width: 375px) {
  .merit_heading_top_txt span {
    padding: 8px 2px;
    margin: 0 4px;
  }
}
.merit_heading_top_txt span:nth-child(1) {
  margin-left: 0;
}

.merit_heading_wrap {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .merit_heading_wrap {
    width: 94%;
  }
}

.merit_heading_insta {
  width: 500px;
  margin: 0 auto 12px;
}
@media screen and (max-width: 600px) {
  .merit_heading_insta {
    width: 100%;
    margin: 0 auto;
  }
}

.merit_heading_middle {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 10px;
  font-size: 32px;
  font-weight: 900;
  color: #600422;
}
@media screen and (max-width: 600px) {
  .merit_heading_middle {
    font-size: 20px;
  }
}

.merit_content {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .merit_content {
    width: 94%;
  }
}

.merit_item {
  margin-bottom: 12px;
  position: relative;
}
.merit_item:last-child {
  margin-bottom: 0;
}
.merit_item::after {
  content: "";
  position: absolute;
  width: 172px;
  height: 170px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img-lp/merit_heart.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1400px) {
  .merit_item::after {
    width: 162px;
    height: 160px;
  }
}
@media screen and (max-width: 600px) {
  .merit_item::after {
    width: 26vw;
    height: 26vw;
  }
}

.merit_item.move::after {
  animation: heart 0.8s linear forwards;
}

@keyframes heart {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  25% {
    transform: translateY(-50%) rotate(10deg);
  }
  50% {
    transform: translateY(-50%) rotate(0deg);
  }
  75% {
    transform: translateY(-50%) rotate(-10deg);
  }
  100% {
    transform: translateY(-50%) rotate(0deg);
  }
}
.merit_item:nth-child(odd) .merit_item_txt {
  margin-left: auto;
}
.merit_item:nth-child(odd)::after {
  left: 0;
}

.merit_item:nth-child(even)::after {
  right: 0;
}

.merit_item_txt {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  color: #600422;
  font-size: 24px;
  line-height: 1.8;
  text-align: center;
  width: 450px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../img-lp/bg_item.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1400px) {
  .merit_item_txt {
    width: 420px;
    height: 190px;
  }
}
@media screen and (max-width: 600px) {
  .merit_item_txt {
    width: 70vw;
    height: 31vw;
    font-size: 4.4vw;
  }
}

/*---------------- message ----------------*/
.message {
  padding: 60px 0;
}
@media screen and (max-width: 600px) {
  .message {
    padding: 32px 0;
  }
}

.message_wrap {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .message_wrap {
    width: 94%;
  }
}

.message_heading {
  margin: 0 auto 60px;
}
@media screen and (max-width: 1400px) {
  .message_heading {
    max-width: 500px;
    margin: 0 auto 48px;
  }
}
@media screen and (max-width: 600px) {
  .message_heading {
    margin-bottom: 32px;
  }
}

.message_top {
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 1400px) {
  .message_top {
    grid-template-columns: 150px 1fr;
  }
}
@media screen and (max-width: 600px) {
  .message_top {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
@media screen and (max-width: 600px) {
  .message_top img {
    max-width: 160px;
    margin: 0 auto;
    order: 2;
  }
}

.message_txt_top {
  font-size: 26px;
  line-height: 2;
  text-align: center;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: 800;
  color: #FF588B;
}
@media screen and (max-width: 1400px) {
  .message_txt_top {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .message_txt_top {
    font-size: 20px;
  }
}

.message_txt_bottom {
  font-family: "vdl-penletter", sans-serif;
  font-weight: 500;
  font-size: 34px;
  color: #FF588B;
  line-height: 1.5;
  text-align: center;
  padding: 38px 38px;
  background-image: url(../img-lp/bg_item.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .message_txt_bottom {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) {
  .message_txt_bottom {
    font-size: 28px;
  }
}
@media screen and (max-width: 375px) {
  .message_txt_bottom {
    font-size: 24px;
    padding: 32px;
  }
}

.message_des {
  font-size: 18px;
  font-weight: 600;
  line-height: 2;
  color: #600422;
  width: 480px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .message_des {
    width: 100%;
    text-align: justify;
    font-size: 16px;
  }
}

/*---------------- qa ----------------*/
.qa {
  padding: 60px 0;
}
@media screen and (max-width: 600px) {
  .qa {
    padding: 40px 0;
  }
}

.qa_heading {
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .qa_heading {
    margin-bottom: 24px;
  }
}

.qa_bubble {
  display: flex;
  align-items: center;
  gap: 16px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 16px;
}
@media screen and (max-width: 600px) {
  .qa_bubble {
    gap: 8px;
  }
}
.qa_bubble img {
  width: 44px;
}
@media screen and (max-width: 1400px) {
  .qa_bubble img {
    width: 38px;
  }
}
@media screen and (max-width: 600px) {
  .qa_bubble img {
    width: 24px;
  }
}
.qa_bubble span {
  font-size: 32px;
  color: #600422;
  font-weight: 600;
}
@media screen and (max-width: 1400px) {
  .qa_bubble span {
    font-size: 28px;
  }
}
@media screen and (max-width: 600px) {
  .qa_bubble span {
    font-size: 20px;
  }
}

.qa_heading_main {
  width: 465px;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .qa_heading_main {
    width: 430px;
  }
}
@media screen and (max-width: 600px) {
  .qa_heading_main {
    width: 82%;
  }
}

.qa_content {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .qa_content {
    width: 94%;
  }
}

.qa_item {
  background-color: #fff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 32px;
}
@media screen and (max-width: 600px) {
  .qa_item {
    padding: 20px 16px;
    margin-bottom: 24px;
  }
}
.qa_item:last-child {
  margin-bottom: 0;
}

.qa_item_title {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 4px dotted #FF588B;
  margin-bottom: 32px;
}
@media screen and (max-width: 600px) {
  .qa_item_title {
    gap: 12px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px dotted #FF588B;
  }
}
.qa_item_title img {
  width: 24px;
}
@media screen and (max-width: 600px) {
  .qa_item_title img {
    width: 16px;
  }
}
.qa_item_title span {
  font-size: 24px;
  font-weight: 700;
  color: #FF588B;
  line-height: 1.5;
}
@media screen and (max-width: 1400px) {
  .qa_item_title span {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .qa_item_title span {
    font-size: 18px;
    text-align: justify;
  }
}

.qa_item_txt {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
@media screen and (max-width: 600px) {
  .qa_item_txt {
    gap: 12px;
  }
}
.qa_item_txt img {
  width: 24px;
  margin-top: 10px;
}
@media screen and (max-width: 600px) {
  .qa_item_txt img {
    width: 16px;
  }
}
.qa_item_txt span {
  font-size: 18px;
  font-weight: 600;
  color: #600422;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .qa_item_txt span {
    font-size: 16px;
    text-align: justify;
  }
}

/*---------------- profile ----------------*/
.profile_heading {
  background-color: #FFA0BD;
  padding: 16px 0 8px;
}
.profile_heading img {
  width: 240px;
  margin: 0 auto;
}

.profile_content {
  background: linear-gradient(180deg, rgba(255, 222, 232, 0.56) 0%, #FFF0F3 30%, #FFFFFF 50%, #FFF0F3 70%, rgba(255, 222, 232, 0.56) 100%);
  padding: 24px 0 60px;
}
@media screen and (max-width: 600px) {
  .profile_content {
    padding: 24px 0 40px;
  }
}

.profile_top {
  display: grid;
  grid-template-columns: 210px 1fr;
  width: 522px;
  margin: 0 auto 10px;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .profile_top {
    display: block;
    width: 94%;
    max-width: 360px;
    margin: 0 auto 16px;
  }
}

@media screen and (max-width: 600px) {
  .profile_img {
    width: 210px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 600px) {
  .profile_top_txt img {
    transform: translateY(12px);
    width: 240px;
    margin: 0 auto;
  }
}

.profile_top_txt span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.profile_top_txt span:nth-child(2) {
  color: #FF588B;
  font-size: 88px;
  margin: 0 auto 8px;
  font-family: "vdl-penletter", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .profile_top_txt span:nth-child(2) {
    font-size: 60px;
    margin: 0 auto 2px;
  }
}
.profile_top_txt span:nth-child(3) {
  font-size: 18px;
  font-weight: 600;
  color: #600422;
  margin: 0 auto;
}

.profile_bottom {
  width: 522px;
  margin: 0 auto;
  color: 18px;
  font-weight: 600;
  color: #600422;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .profile_bottom {
    width: 94%;
    font-size: 16px;
    text-align: justify;
  }
}

.footer {
  background-color: #FF588B;
  padding: 12px 0;
}
@media screen and (max-width: 600px) {
  .footer {
    padding: 12px 0 80px;
  }
}

.footer_wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 600px) {
  .footer_wrap {
    flex-direction: column;
    gap: 12px;
  }
}

.footer a {
  font-size: 14px;
  color: #fff;
  transition: all 0.4s;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.footer a:hover {
  opacity: 0.6;
}/*# sourceMappingURL=index-lp.css.map */