@charset "UTF-8";
@keyframes fluffy {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 15px);
  }
}
@keyframes fluffy-sp {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 15px);
  }
}
.lp-page {
  font-size: 16px;
  line-height: 1.6;
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}
.lp-page img {
  max-width: 100%;
  height: auto;
}
.lp-page a {
  display: block;
}
.lp-page .text-blue {
  color: #2882C8;
}
.lp-page .text-pink {
  color: #D26EA0;
}
.lp-page .text-white {
  color: #fff;
}
.lp-page .bg-pink {
  background: #D26EA0;
  border-radius: 10px;
  padding: 0 5px 5px;
  margin-right: 5px;
}
.lp-page .bg-blue {
  background: #2882C8;
  border-radius: 10px;
  padding: 0 5px 5px;
  margin-right: 5px;
}
.lp-page .marker {
  display: inline;
  padding: 0 4px 2px 4px;
  background: linear-gradient(transparent 70%, #fff000 0%);
}
.lp-page .pc_hide {
  display: none;
}
.lp-page .lp-wrap {
  margin-top: 120px;
}
.lp-page .inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 100px 15px;
}
.lp-page .section--choices {
  background: #DFECF7;
}
.lp-page .section--merit {
  padding: 40px 0 50px;
  padding: 90px 0 100px;
}
.lp-page .section--flow {
  background: #F8E9F1;
}
.lp-page .section-title {
  font-size: 30px;
  padding-bottom: 20px;
  position: relative;
  text-align: center;
  font-weight: bold;
  margin-bottom: 45px;
  font-size: clamp(26px, 4vw, 40px);
}
.lp-page .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, #D26EA0, #2882C8);
  width: 100px;
  height: 5px;
  border-radius: 3px;
}
.lp-page .section-catch {
  text-align: center;
  font-size: 18px;
  margin-bottom: 45px;
}
.lp-page .hero {
  position: relative;
}
.lp-page .hero::before, .lp-page .hero::after {
  content: "";
  position: absolute;
  bottom: -30px;
  width: 367px;
  height: 238px;
  z-index: 2;
}
.lp-page .hero::before {
  background: url(../img/pb/hero_left.png) no-repeat;
  background-size: cover;
  left: 0;
}
.lp-page .hero::after {
  background: url(../img/pb/hero_right.png) no-repeat;
  background-size: cover;
  right: 0;
}
.lp-page .hero__wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 40px;
}
.lp-page .hero__img {
  border-radius: 500px;
  display: block;
  overflow: hidden;
}
.lp-page .hero__read {
  position: absolute;
/* top: 10%; */
  top: 15%;
  padding: 0;
  background: none;
  left: 100px;
  font-weight: bold;
  z-index: 5;
}
.lp-page .hero__title {
  line-height: 1.4;
  font-size: clamp(26px, 4vw, 52px);
  margin-bottom: 10px;
}
.lp-page .hero__button {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 450px;
  width: 100%;
  z-index: 5;
}
.lp-page .hero__button::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(to right, #9d5179, #206095);
  z-index: -1;
}
.lp-page .hero__link {
  background: linear-gradient(to right, #D26EA0, #2882C8);
  padding: 15px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  border-radius: 50px;
  font-size: clamp(18px, 4vw, 20px);
  position: relative;
}
.lp-page .hero__link:hover {
  transform: translateY(10px);
  transition: all 0.5s ease-in-out;
}
.lp-page .hero__link::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  background: url(../img/pb/icon_arrow.svg) no-repeat;
  width: 20px;
  height: 16px;
  display: block;
  background-size: cover;
}
.lp-page .hero__mark {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100px;
  max-width: 136px;
  animation: fluffy 3s infinite;
}
.lp-page .point__list {
  display: flex;
  gap: 20px;
}
.lp-page .point__item {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
  width: 33.3333333333%;
  padding: 20px;
  gap: 20px;
}
.lp-page .point__icon {
  background: #f5f5f5;
  aspect-ratio: 1/1;
  background: none;
  padding: 0;
  min-width: 80px;
  max-width: 80px;
}
.lp-page .point__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.lp-page .point__label {
  background: linear-gradient(90deg, #F8E9F1 0%, #F8E9F1 50%, #DFECF7 50%, #DFECF7 100%);
  border-radius: 30px;
  padding: 5px 20px 5px 10px;
  text-align: center;
  position: relative;
  font-size: 12px;
  font-weight: bold;
}
.lp-page .point__text {
  margin-right: 10px;
}
.lp-page .point__number {
  background: #fff;
  aspect-ratio: 1/1;
  width: 100%;
  display: inline-block;
  max-width: 20px;
  border-radius: 50%;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.lp-page .point__title {
  font-size: clamp(18px, 4vw, 22px);
  color: #2882C8;
  font-weight: bold;
}
.lp-page .choices {
  display: flex;
  gap: 20px;
}
.lp-page .choices__item {
  background: #fff;
  border-radius: 380px 380px 0 0;
  width: 33.3333333333%;
  display: flex;
  flex-direction: column;
}
.lp-page .choices__wrap {
  padding: 30px 20px;
  text-align: center;
  flex-grow: 1;
}
.lp-page .choices__icon {
  max-height: 50px;
  margin-bottom: 20px;
}
.lp-page .choices__title {
  font-weight: bold;
  font-size: clamp(22px, 4vw, 28px);
  border-bottom: solid 1px #ccc;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.lp-page .choices__text {
  text-align: left;
}
.lp-page .merit {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
.lp-page .merit__item {
  display: flex;
  align-items: center;
  gap: 30px;
}
.lp-page .merit__item:nth-child(2) {
  flex-direction: row-reverse;
}
.lp-page .merit__item:nth-child(2) .merit__photo {
  margin: 0 0 30px auto;
}
.lp-page .merit__item:nth-child(2) .merit__img {
  border-radius: 380px 0 0 380px;
}
.lp-page .merit__item:nth-child(2) .merit__label {
  right: auto;
  left: 0;
}
.lp-page .merit__item:nth-child(2) .merit__title, .lp-page .merit__item:nth-child(2) .merit__text {
  text-align: right;
}
.lp-page .merit__item:nth-child(2) .merit__wrap {
  margin: 0 0 0 10%;
}
.lp-page .merit__photo {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
  max-width: 800px;
}
.lp-page .merit__wrap {
  width: calc(100% - 800px);
  margin-right: 10%;
}
.lp-page .merit__img {
  border-radius: 0 380px 380px 0;
  display: block;
  overflow: hidden;
}
.lp-page .merit__label {
  background: linear-gradient(to right, #D26EA0, #2882C8);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 120px;
  border-radius: 60px;
  font-weight: bold;
  font-size: clamp(12px, 4vw, 24px);
  position: absolute;
  top: 30px;
  right: 0;
}
.lp-page .merit__number {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
}
.lp-page .merit__title {
  font-weight: bold;
  font-size: clamp(22px, 4vw, 36px);
  margin-bottom: 20px;
}
.lp-page .flow {
  display: flex;
  gap: 20px;
}
.lp-page .flow__item {
  background: #fff;
  border-radius: 10px;
  position: relative;
  width: 33.3333333333%;
}
.lp-page .flow__item::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 0 30px 20px;
  border-color: transparent transparent transparent #D26EA0;
}
.lp-page .flow__item:last-child::after {
  display: none;
}
.lp-page .flow__label {
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #2882C8;
  color: #fff;
  font-weight: bold;
  padding: 5px 36px 5px 20px;
  line-height: 1;
  display: inline-block;
  font-size: 18px;
  border-radius: 0 0 10px 10px;
}
.lp-page .flow__number {
  background: #fff;
  color: #2882C8;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 26px;
  height: calc(100% - 4px);
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 10px 0;
}
.lp-page .flow__wrap {
  display: flex;
  gap: 10px;
  text-align: center;
  padding: 10px 15px 15px;
  padding: 10px 20px 20px;
  align-items: center;
}
.lp-page .flow__icon {
  aspect-ratio: 1/1;
  min-width: 80px;
  max-width: 80px;
  height: 100%;
  width: 100%;
}
.lp-page .flow__block {
  text-align: left;
}
.lp-page .flow__title {
  font-weight: bold;
  font-size: 22px;
}
.lp-page .recommend {
  padding-bottom: 60px;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #DFECF7 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #DFECF7 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
}
.lp-page .recommend__title {
  background: linear-gradient(to right, #D26EA0, #2882C8);
  color: #fff;
  font-size: clamp(30px, 4vw, 40px);
  text-align: center;
  font-weight: bold;
  padding: 30px 10px;
  line-height: 1.4;
  position: relative;
}
.lp-page .recommend__title::after {
  content: "";
  position: absolute;
  bottom: -23px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 15px 0 15px;
  border-color: #8f7db5 transparent transparent transparent;
}
.lp-page .recommend__inner {
  max-width: 800px;
  width: 90%;
  margin: 45px auto 0;
  position: relative;
  z-index: 2;
}
.lp-page .recommend__comment {
  padding: 10px 25px;
  background: #fff;
  border: solid 1px #ccc;
  border-radius: 50px;
  display: inline-block;
  position: relative;
  width: 50%;
  text-align: center;
  font-size: clamp(16px, 4vw, 20px);
}
.lp-page .recommend__comment::before, .lp-page .recommend__comment::after {
  content: "";
  position: absolute;
}
.lp-page .recommend__comment::before {
  bottom: -10px;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: #ccc;
  z-index: -1;
}
.lp-page .recommend__comment::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 10px 0 10px;
  border-color: #ccc transparent transparent transparent;
  bottom: -20px;
  right: 30px;
}
.lp-page .recommend__comment:nth-child(2) {
  margin: 0 0 0 auto;
}
.lp-page .recommend__comment:nth-child(2)::after {
  right: auto;
  left: 30px;
}
.lp-page .recommend__comment:nth-child(2) .recommend__text::after {
  right: auto;
  left: 30px;
}
.lp-page .recommend__text {
  position: relative;
  display: contents;
  z-index: 2;
}
.lp-page .recommend__text::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 10px 0 10px;
  border-color: #fff transparent transparent transparent;
  bottom: -10px;
  right: 30px;
  z-index: 3;
}
.lp-page .recommend__img {
  position: relative;
  z-index: -1;
  margin: -30px auto;
  display: block;
  width: 50%;
}
.lp-page .recommend__top, .lp-page .recommend__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 2;
}
.lp-page .recommend__bottom .recommend__comment::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 15px 10px;
  border-color: transparent transparent #ccc transparent;
  bottom: auto;
  top: -11px;
  right: 30px;
  z-index: -1;
}
.lp-page .recommend__bottom .recommend__text::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 15px 10px;
  border-color: transparent transparent #fff transparent;
  bottom: auto;
  top: -10px;
  right: 30px;
  z-index: 3;
}
.lp-page .faq {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lp-page .faq__item {
  padding-bottom: 20px;
  border-bottom: solid 1px #ccc;
}
.lp-page .faq__question, .lp-page .faq__answer {
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.lp-page .faq__question {
  margin-bottom: 15px;
  font-size: clamp(16px, 4vw, 18px);
}
.lp-page .faq__q-icon, .lp-page .faq__a-icon {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  font-family: "Montserrat", serif;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.lp-page .faq__q-icon {
  border: solid 1px #2882C8;
  color: #2882C8;
}
.lp-page .faq__a-icon {
  background: #D26EA0;
  color: #fff;
}
.lp-page .cta {
  background: linear-gradient(to bottom, #D26EA0, #2882C8);
}
.lp-page .cta-text {
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: clamp(18px, 4vw, 30px);
  margin-bottom: 30px;
}
.lp-page .cta-button {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.lp-page .cta-button:hover {
  transform: translateY(10px);
  transition: all 0.5s ease-in-out;
}
.lp-page .cta-button:hover .cta-button__wrap::before {
  transform: translateY(-10px);
  transition: all 0.5s ease-in-out;
}
.lp-page .cta-button__wrap {
  position: relative;
}
.lp-page .cta-button__wrap::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background: #6e4902;
  z-index: 1;
}
.lp-page .cta-button__img {
  width: 30%;
  margin: 0 auto;
  display: block;
}
.lp-page .cta-button__link {
  background: linear-gradient(120deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
  padding: 5px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  border-radius: 100px;
  position: relative;
  z-index: 2;
}
.lp-page .cta-button__link::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  background: url(../img/pb/icon_arrow_br.svg) no-repeat;
  width: 20px;
  height: 16px;
  display: block;
  background-size: cover;
  z-index: 3;
}
.lp-page .cta-button__text {
  padding: 10px;
  margin: 0 auto;
  display: block;
  background: #fff;
  border-radius: 100px;
  position: relative;
  color: #333;
  z-index: 3;
  font-size: clamp(18px, 4vw, 20px);
}
.lp-page .text-big {
  font-size: 150%;
  line-height: 1.8;
  margin: 0 5px;
}
.lp-page .text-big--yellow {
  color: #fff000;
}
.lp-page .text-big--blue {
  color: #2882C8;
}
.lp-page .text-big--pink {
  color: #D26EA0;
}
.lp-page .text-big--bg {
  background: #fff;
  padding: 0 10px 5px;
}
.lp-page .lp-form {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-top: 60px;
}
.lp-page .lp-form .inner {
  padding: 0;
  width: 100%;
}

/* ========================================
  レスポンシブデザイン（モバイル）
======================================== */
@media screen and (max-width: 1200px) {
  .lp-page .inner {
    padding: 60px 0;
    width: 95%;
  }
  .lp-page .section--merit {
    padding: 50px 0 60px;
  }
  .lp-page .hero__wrap {
    width: 95%;
  }
  .lp-page .hero::before, .lp-page .hero::after {
    width: 245px;
    height: 159px;
  }
  .lp-page .merit {
    gap: 60px;
    margin-bottom: 30px;
  }
  .lp-page .merit__item {
    flex-direction: column;
    align-items: baseline;
    gap: 0;
  }
  .lp-page .merit__item:nth-child(2) {
    flex-direction: column;
  }
  .lp-page .merit__item:nth-child(2) .merit__wrap {
    margin: 0 auto;
  }
  .lp-page .merit__item:nth-child(2) .merit__title, .lp-page .merit__item:nth-child(2) .merit__text {
    text-align: center;
  }
  .lp-page .merit__wrap {
    width: 95%;
    margin: 0 auto;
    text-align: center;
  }
}
@media screen and (max-width: 820px) {
  .lp-page .section--merit .cta-button {
    width: 90%;
  }
  .lp-page .section-title {
    margin-bottom: 30px;
  }
  .lp-page .hero__read {
    top: 30px;
  }
  .lp-page .hero::before, .lp-page .hero::after {
    display: none;
  }
  .lp-page .hero__mark {
    display: none;
  }
  .lp-page .choices {
    flex-direction: column;
  }
  .lp-page .choices__item {
    width: 70%;
    margin: 0 auto;
  }
  .lp-page .flow {
    flex-direction: column;
    gap: 30px;
  }
  .lp-page .flow__item {
    width: 100%;
  }
  .lp-page .flow__item::after {
    top: auto;
    bottom: -25px;
    left: 50%;
    right: auto;
    transform: translate(-50%, 0);
    border-width: 20px 30px 0 30px;
    border-color: #D26EA0 transparent transparent transparent;
  }
  .lp-page .recommend__comment {
    width: 70%;
  }
  .lp-page .cta .pc_hide {
    display: block;
  }
  .lp-page .cta-button__img {
    width: 50%;
  }
}
/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .lp-page .inner {
    padding: 40px 0;
  }
  .lp-page .pc_hide {
    display: block;
  }
  .lp-page .point__icon {
    padding: 15px;
    min-width: 100px;
    max-width: 100px;
  }
  .lp-page .hero__wrap {
    width: 100%;
  }
  .lp-page .hero__img {
    border-radius: 0;
  }
  .lp-page .hero__read {
    padding: 20px 15px 60px;
    background: rgba(255, 255, 255, 0.5019607843);
    bottom: 0;
    top: auto;
    left: 0;
    border-radius: 0 30px 0 0;
  }
  .lp-page .hero__button {
    width: 90%;
  }
  .lp-page .choices {
    flex-direction: column;
    gap: 30px;
  }
  .lp-page .choices__item {
    width: 70%;
    margin: 0 auto;
  }
  .lp-page .merit__title, .lp-page .merit__text {
    width: 90%;
    margin: 0 auto 20px;
  }
  .lp-page .recommend {
    background: none;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 600px) {
  .lp-page .lp-wrap {
    margin-top: 70px;
  }
  .lp-page .inner {
    width: 90%;
  }
  .lp-page .hero__mark {
    display: block;
    bottom: auto;
    top: 60px;
    left: 30px;
    transform: none;
    max-width: 100px;
    animation: fluffy-sp 3s infinite;
  }
  .lp-page .hero__link {
    padding: 10px 15px;
  }
  .lp-page .point__list {
    flex-direction: column;
  }
  .lp-page .point__item {
    flex-direction: row;
    width: 100%;
    padding: 0;
  }
  .lp-page .point__icon {
    background: #f5f5f5;
  }
  .lp-page .point__wrap {
    align-items: baseline;
  }
  .lp-page .choices__item {
    width: 100%;
  }
  .lp-page .merit__label {
    max-width: 80px;
    right: 10px;
  }
  .lp-page .merit__img {
    width: 90%;
  }
  .lp-page .merit__item:nth-child(2) .merit__img {
    margin: 0 0 0 auto;
  }
  .lp-page .merit__item:nth-child(2) .merit__label {
    right: auto;
    left: 10px;
  }
  .lp-page .merit__item:nth-child(2) .merit__text {
    text-align: left;
  }
  .lp-page .merit__text {
    text-align: left;
  }
  .lp-page .recommend__comment {
    width: auto;
  }
  .lp-page .recommend__img {
    width: 100%;
  }
}
.header {
  top: 0;
  z-index: 10;
}/*# sourceMappingURL=style.css.map */