@charset "UTF-8";

/* Adobe Fonts: Century Gothic Pro Bold
---------------------- */
.ff-century-gothic {
  font-family: "century-gothic", sans-serif;
  font-weight: 700;
}

/* Color tokens
---------------------- */
:root {
  --lpfr-blue: #32b8de;
  --lpfr-blue-light: #d6edff;
  --lpfr-orange: #fbcb67;
  --lpfr-orange-dark: #c8860f;
  --lpfr-cream: #fcf8ed;
  --lpfr-txt-dark: #555354;
  --lpfr-txt-body: #605c5b;
  --lpfr-line-green: #06c755;
}

/* Common parts
---------------------- */
.c-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #4d4d4d;
  @media screen and (min-width: 768px) {
    font-size: 1.7rem;
  }
}

.c-badge--orange {
  background: var(--lpfr-orange);
}

.c-badge--blue {
  background: var(--lpfr-blue);
}

.c-badge--bubble {
  position: relative;
  padding: 8px 22px;
  font-size: 1.6rem;
}

.c-badge--bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: transparent;
}

.c-badge--bubble.c-badge--orange {
  color: var(--lpfr-blue);
}

.c-badge--bubble.c-badge--blue {
  color: var(--lpfr-orange);
}

.c-badge--bubble.c-badge--orange::after {
  border-top-color: var(--lpfr-orange);
}

.c-badge--bubble.c-badge--blue::after {
  border-top-color: var(--lpfr-blue);
}

.c-step-badge {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 100px;
  background: var(--lpfr-orange);
  color: var(--lpfr-blue);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  @media screen and (min-width: 768px) {
    font-size: 2rem;
  }
}

.c-step-divider {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 30px auto;
  width: 95%;
  border-top: 3px dashed var(--lpfr-orange);
}

.c-step-divider .c-step-badge {
  position: relative;
  top: -1.6rem;
}

.c-btn {
  display: block;
  width: 90%;
  padding: 15px 0;
  border-radius: 3px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  @media screen and (min-width: 768px) {
    font-size: 2.3rem;
  }
}

.c-btn::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent currentColor;
  vertical-align: middle;
  animation: lpfr-nudge 1.4s ease-in-out infinite;
}

@keyframes lpfr-nudge {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

.c-btn--orange {
  background: linear-gradient(180deg, #fceec1 0%, #fbcb67 20%, #fbcb67 80%, #f2c25e 100%);
  box-shadow: 0 5px 0 var(--lpfr-orange-dark);
  color: #4d4d4d;
}

/* lp-friend-referral
---------------------- */
#lp-friend-referral {
  width: 100%;
  max-width: 780px;
  margin: 40px auto 0;
  color: var(--lpfr-txt-dark);
  @media screen and (min-width: 768px) {
    margin: 53px auto 0;
  }
}

#lp-friend-referral img {
  display: block;
  max-width: 100%;
}

/* about
---------------------- */
.about {
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}

.about__label {
  font-size: 4rem;
  color: var(--lpfr-blue);
  letter-spacing: 0.05em;
  @media screen and (min-width: 768px) {
    font-size: 5rem;
  }
}

.about__label span {
  display: inline-block;
  animation: lpfr-bounce 1.4s ease-in-out infinite;
}

.about__label span:nth-child(1) { animation-delay: 0s; }
.about__label span:nth-child(2) { animation-delay: 0.1s; }
.about__label span:nth-child(3) { animation-delay: 0.2s; }
.about__label span:nth-child(4) { animation-delay: 0.3s; }
.about__label span:nth-child(5) { animation-delay: 0.4s; }

@keyframes lpfr-bounce {
  0%, 60%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-0.12em);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about__label span {
    animation: none;
  }
}

.about__ttl {
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: bold;
  @media screen and (min-width: 768px) {
    font-size: 3rem;
  }
}

.about__txt {
  font-size: 1.8rem;
  line-height: 1.8;
  @media screen and (min-width: 768px) {
    font-size: 2rem;
  }
}

/* share
---------------------- */
.share {
  padding-top: 50px;
  padding-bottom: 60px;
  background: var(--lpfr-cream);
}

.share__head {
  margin-bottom: 40px;
  text-align: center;
}

.share__chance {
  width: 250px;
  margin: 0 auto 10px;
  @media screen and (min-width: 768px) {
    width: 300px;
    margin: 0 auto;
  }
}

.share__label {
  font-size: 4rem;
  color: var(--lpfr-blue);
  letter-spacing: 0.05em;
  @media screen and (min-width: 768px) {
    font-size: 5rem;
  }
}

.share__ttl {
  font-size: 2.4rem;
  font-weight: bold;
  @media screen and (min-width: 768px) {
    font-size: 3rem;
  }
}

.share__badge {
  display: inline-block;
  padding: 6px 20px;
  margin-bottom: 15px;
  border-radius: 100px;
  background: var(--lpfr-blue);
  color: var(--lpfr-orange);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  @media screen and (min-width: 768px) {
    font-size: 2rem;
  }
}

.share__card {
  margin-bottom: 40px;
  text-align: center;
}

.share__card:last-child {
  margin-bottom: 0;
}

.share__card-ttl {
  margin: 0 0 20px;
  font-size: 2rem;
  font-weight: bold;
  @media screen and (min-width: 768px) {
    font-size: 2.3rem;
  }
}

.share__card-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px 20px;
  border: 3px solid var(--lpfr-txt-dark);
  border-radius: 24px;
  background: #fff;
  text-align: left;
  width: 95%;
  margin: auto;
  @media screen and (min-width: 768px) {
    padding: 25px 30px;
    width: 70%;
  }
}

.share__human {
  flex: none;
  width: 100px;
}

.share__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: underline;
  line-height: 1.4;
  @media screen and (min-width: 768px) {
    font-size: 2rem;
  }
}

.share__list li:last-child {
  margin-bottom: 0;
}

.share__list img {
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 20px;
}

/* teiki
---------------------- */
.teiki {
  padding: 0;
  background: var(--lpfr-cream);
}

.teiki__notch {
  position: relative;
  width: 100%;
  padding-top: 10.87%;
  background: var(--lpfr-cream);
}

.teiki__notch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--lpfr-blue);
  clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 0%, 50% 100%);
}

.teiki__body {
  padding: 20px 10px 80px;
  background: var(--lpfr-blue);
  text-align: center;
}

.teiki__frends {
  width: 260px;
  margin: 0 auto 10px;
  @media screen and (min-width: 768px) {
    width: 300px;
  }
}

.teiki__ttl {
  margin-bottom: 25px;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
  @media screen and (min-width: 768px) {
    font-size: 2.5rem;
  }
}

.teiki__ttl-large {
  font-size: 1.3em;
  @media screen and (min-width: 768px) {
    font-size: 3.5rem;
  }
}

.teiki__panel {
  position: relative;
  padding-bottom: 0;
  border-radius: 12px;
  background: #fff;
  @media screen and (min-width: 768px) {
    width: 90%;
    margin: 0 auto;
  }
}

.teiki__panel-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 0;
  margin-bottom: 25px;
  border-radius: 12px 12px 0 0;
  background: var(--lpfr-blue-light);
  font-size: 2.4rem;
  color: var(--lpfr-blue);
  @media screen and (min-width: 768px) {
    font-size: 3.5rem;
  }
}

.teiki__panel-ttl img {
  width: 130px;
  @media screen and (min-width: 768px) {
    width: 210px;
  }
}

.teiki__panel-ttl em {
  display: inline-block;
  font-size: 1.6em;
  font-style: normal;
  animation: lpfr-pop 1.8s ease-in-out infinite;
}

@keyframes lpfr-pop {
  0%, 40%, 100% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.25);
  }
}

.teiki__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 10px;
  padding: 0 20px;
}

.teiki__point img {
  width: 90px;
  margin: 0 auto 10px;
  @media screen and (min-width: 768px) {
    width: 150px;
  }
}

.teiki__point-ttl {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  color: var(--lpfr-blue);
  @media screen and (min-width: 768px) {
    font-size: 2rem;
  }
}

.teiki__point-sub {
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px dashed var(--lpfr-blue);
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--lpfr-txt-body);
  @media screen and (min-width: 768px) {
    font-size: 1.7rem;
    width: 80%;
    margin: 8px auto;
  }
}

.teiki__panel .c-btn {
  position: relative;
  width: calc(100% - 40px);
  margin: 25px auto 0;
  transform: translateY(50%);
  @media screen and (min-width: 768px) {
    width: 70%;
  }
}

/* step
---------------------- */
.step {
  padding-top: 50px;
  padding-bottom: 20px;
  text-align: center;
}

.step__label {
  font-size: 4rem;
  color: var(--lpfr-blue);
  letter-spacing: 0.05em;
  @media screen and (min-width: 768px) {
    font-size: 5rem;
  }
}

.step__label em {
  font-style: normal;
}

.step__ttl {
  margin-bottom: 30px;
  font-size: 2.4rem;
  font-weight: bold;
  @media screen and (min-width: 768px) {
    font-size: 3rem;
  }
}

.step__box {
  text-align: center;
}

.step__box-ttl {
  margin-bottom: 15px;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.4;
  @media screen and (min-width: 768px) {
    font-size: 2.5rem;
  }
}

.step__box-txt {
  margin-bottom: 20px;
  font-size: 1.8rem;
  line-height: 1.7;
  @media screen and (min-width: 768px) {
    font-size: 2rem;
  }
}

.step__box-txt-em {
  font-weight: bold;
  text-decoration: underline;
}

.step__box-btn {
  max-width: 460px;
  margin: 0 auto 25px;
}

.step__box-img {
  width: 80%;
  margin: 0 auto 50px;
  @media screen and (min-width: 768px) {
    width: 60%;
  }
}

.step__coupon {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 20px 20px 0 0;
  @media screen and (min-width: 768px) {
    gap: 45px;
    margin: 30px 20px 0 0;
  }
}

.step__coupon-item {
  text-align: center;
}

.step__coupon-item img {
  width: 110px;
  margin-top: 10px;
}

.step__coupon-note {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 90px;
  animation: lpfr-wobble 2.4s ease-in-out infinite;
  @media screen and (min-width: 768px) {
    width: 100px;
    right: 125px;
  }
}

@keyframes lpfr-wobble {
  0%, 100% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
}

/* login
---------------------- */
.login {
  padding-top: 20px;
  padding-bottom: 90px;
  text-align: center;
  @media screen and (min-width: 768px) {
    padding-bottom: 100px;
  }
}

.login__btn-login,
.login__btn-line {
  display: block;
  width: 90%;
  max-width: 450px;
  margin: 0 auto;
  padding: 16px 0;
  border-radius: 6px;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
}

.login__btn-login {
  background: #5ac3e0;
  color: #fff;
}

.login__note {
  margin: 30px 0 15px;
  font-size: 1.8rem;
  color: var(--lpfr-txt-body);
  @media screen and (min-width: 768px) {
    font-size: 2rem;
  }
}

.login__btn-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--lpfr-line-green);
  color: #fff;
}

.login__btn-line img {
  width: 26px;
}

/* よくあるご質問
---------------------- */
.faq {
  max-width: 780px;
  margin: 0 auto 60px;
  color: #454545;
}

.faq__ttl {
  position: relative;
  font-weight: bold;
  font-size: 2.5rem;
  text-align: center;
  line-height: 2;
  margin-bottom: 20px;
  @media screen and (min-width: 768px) {
    font-size: 3rem;
    margin-bottom: 30px;
  }
}

.faq__ttl::before {
  position: absolute;
  border-bottom: 2px solid #5ac1de;
  top: 55%;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  content: "";
}

.faq__ttl-sub {
  display: block;
  font-size: 2.5rem;
  color: #5ac1de;
}

.faq__link {
  color: #5ac1de;
  text-decoration: underline;
}

.faq__red {
  color: #e30316;
  font-weight: bold;
}

.faq__list {
  padding: 0 8px;
  @media screen and (min-width: 768px) {
    padding: 0 10px;
  }
}

.faq__list dt {
  position: relative;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 1.6rem;
  padding-left: 25px;
  @media screen and (min-width: 768px) {
    margin-bottom: 20px;
    font-size: 1.8rem;
    padding-left: 35px;
  }
}

.faq__list dt::before {
  position: absolute;
  left: 0;
  top: -6px;
  font-size: 2.4rem;
  font-weight: bold;
  content: "Q";
  color: #5ac1de;
  @media screen and (min-width: 768px) {
    top: -11px;
    font-size: 3rem;
  }
}

.faq__list dd {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
  padding-left: 25px;
  border-bottom: 1px dashed #ababab;
  font-size: 1.6rem;
  margin-left: inherit;
  @media screen and (min-width: 768px) {
    padding-left: 35px;
  }
}

.faq__list dd::before {
  position: absolute;
  left: 3px;
  top: -6px;
  font-size: 2.4rem;
  font-weight: bold;
  content: "A";
  color: #ff6700;
  @media screen and (min-width: 768px) {
    top: -11px;
    font-size: 3rem;
  }
}
