* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

html {
  color: #333;
  font-size: 10px;
  font-family: "Noto Serif JP", serif;
  scroll-behavior: smooth;
}

body {
  background: #f0faff;
}

.image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.image--h-auto {
  height: auto;
}

.footer {
  background-color: #fff;
  position: relative;
  padding-block: 75px 5px;
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer {
    max-width: 100%;
  }
}
.footer__bg {
  width: 100%;
  height: 275px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.8;
}
.footer__bg img {
  -o-object-position: top;
     object-position: top;
}
.footer__content {
  position: relative;
  z-index: 2;
}
.footer__button {
  background: #f0919b;
  color: #fff;
  font: 700 23px "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  width: 100%;
  max-width: 336px;
  height: 52px;
  margin: 0 auto 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #fff;
  border-radius: 25px;
  box-shadow: 0 2px 3px rgba(176, 120, 158, 0.8);
  transition: 0.3s ease;
}
.footer__button:hover {
  box-shadow: unset;
}
.footer__google-link {
  font: 400 12px "Noto Sans JP", sans-serif;
  letter-spacing: 0.12em;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
  transition: 0.3s ease;
}
.footer__google-link::before {
  content: "";
  background: url("./public/img/icons/external.svg") no-repeat center/contain;
  width: 10px;
  height: 10px;
  margin-bottom: -1px;
}
.footer__google-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer__logo {
  margin: 90px auto 20px;
  width: 100%;
  max-width: 216px;
}
.footer__copyright {
  display: block;
  font: 700 8px "Noto Sans JP", sans-serif;
  letter-spacing: 0.08em;
  text-align: center;
}

.lp {
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .lp {
    max-width: 100%;
  }
}
.lp__mv {
  position: relative;
  padding-block: 25px;
  overflow: hidden;
}
.lp__mv::before {
  content: "";
  background: url("./public/img/lp/mv-dots.png") no-repeat center/cover;
  width: 38px;
  height: 49px;
  position: absolute;
  bottom: 55px;
  left: 0;
  z-index: 2;
}
.lp__mv::after {
  content: "";
  background: url("./public/img/lp/mv-divider.png") no-repeat bottom/cover;
  width: 100%;
  height: 190px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.lp__mv-image {
  width: 100%;
  max-width: 210px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .lp__mv-image {
    max-width: 56%;
    height: 405px;
  }
}
.lp__mv-image img {
  -o-object-position: top center;
     object-position: top center;
}
.lp__mv-wrapper {
  position: relative;
  z-index: 2;
}
.lp__mv-logo-block {
  width: 100%;
  max-width: 148px;
  margin-bottom: 20px;
}
.lp__mv-logo-label {
  display: block;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-align: center;
  margin-bottom: 5px;
}
.lp__mv-heading {
  color: #0073d7;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2em;
  margin-bottom: 20px;
}
.lp__mv-heading .fs-28 {
  font-size: 28px;
}
.lp__mv-text {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.8181818182em;
}
.lp__mv-benefits {
  margin-block: 25px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 25px 15px;
}
.lp__mv-card {
  position: relative;
  width: 100%;
  max-width: 155px;
  background: #fff0f0;
  padding: 20px 10px 5px;
  border: 5px solid #fff;
  border-radius: 15px;
  box-shadow: 0 0 5px rgba(190, 140, 110, 0.1), 0 5px 5px -2px rgba(178, 120, 95, 0.15);
}
.lp__mv-card.yellow {
  background: #fffae6;
}
.lp__mv-ribbon {
  width: 100%;
  max-width: 152px;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}
.lp__mv-card-text {
  display: block;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}
.lp__mv-card-box {
  background: #fff;
  margin-block: 5px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding-bottom: 5px;
}
.lp__mv-card-box span {
  color: #f0919b;
  font-size: 34px;
  font-weight: 700;
  line-height: 1em;
}
.lp__mv-card-box span .fs-14 {
  font-size: 14px;
}
.lp__mv-card-box span.fs-28 {
  font-size: 28px;
}
.lp__mv-card-box span.yellow {
  color: #d79b19;
}
.lp__mv-gift {
  display: block;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
.lp__mv-deadline {
  display: block;
  color: #0f6eaa;
  font-size: 10px;
  text-align: center;
}
.lp__mv-date {
  display: block;
  color: #0f6eaa;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.lp__mv-date .fs-11 {
  font-size: 11px;
}
.lp__mv-date .fs-18 {
  font-size: 18px;
}
.lp__perks {
  padding-top: 45px;
}
.lp__perks-heading {
  color: #0f6eaa;
  font-size: 24px;
  font-weight: 500;
}
.lp__perks-heading .fs-22 {
  font-size: 22px;
}
.lp__perks-heading .fs-23 {
  font-size: 23px;
}
.lp__perks-heading .ls-80 {
  letter-spacing: 0.08em;
}
.lp__perks-subheading {
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4615384615em;
  margin-top: 5px;
  text-align: center;
}
.lp__perks-list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 155px));
  justify-content: center;
  gap: 25px 20px;
  counter-reset: perks;
}
.lp__perks-item {
  position: relative;
  width: 100%;
  height: 139px;
  padding: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 2px -2px 3px rgba(85, 200, 235, 0.15), -1px 4px 4px rgba(85, 200, 235, 0.15);
  border-radius: 6px;
}
.lp__perks-item::before {
  counter-increment: perks;
  content: counter(perks);
  color: #0f6eaa;
  font-size: 22px;
  font-weight: 700;
  line-height: 1em;
  text-align: center;
  position: absolute;
  top: 8px;
  left: 8px;
  width: 30px;
  height: 30px;
  border: 1px solid #8cdeff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp__perks-item:nth-child(1) .lp__perks-image {
  width: 68px;
}
.lp__perks-item:nth-child(2) .lp__perks-image {
  width: 91px;
}
.lp__perks-item:nth-child(3) .lp__perks-image {
  width: 50px;
}
.lp__perks-item:nth-child(4) .lp__perks-image {
  width: 90px;
}
.lp__perks-item:nth-child(5) .lp__perks-image {
  width: 59px;
}
.lp__perks-item:nth-child(6) .lp__perks-image {
  width: 79px;
}
.lp__perks-image {
  margin: 0 auto;
  height: auto;
}
.lp__perks-title {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2em;
  text-align: center;
}
.lp__perks-title.mt-5 {
  margin-top: 5px;
}
.lp__perks-note {
  margin: 25px auto 0;
  color: #0f6eaa;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  width: -moz-fit-content;
  width: fit-content;
}
.lp__special {
  position: relative;
  padding-top: 60px;
}
.lp__special::before, .lp__special::after {
  content: "";
  position: absolute;
  z-index: 1;
}
.lp__special::before {
  background: url("./public/img/lp/special-dots-l.png") no-repeat center/cover;
  width: 32px;
  height: 41px;
  bottom: 60px;
  left: 0;
}
.lp__special::after {
  background: url("./public/img/lp/special-dots-r.png") no-repeat center/cover;
  width: 48px;
  height: 63px;
  top: 129px;
  right: 0;
}
.lp__special-heading {
  color: #0f6eaa;
  font-size: 23px;
  font-weight: 500;
  margin-bottom: 25px;
}
.lp__special-heading .fs-18 {
  font-size: 18px;
}
.lp__special-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 108px));
  justify-content: center;
  gap: 5px;
  z-index: 2;
}
.lp__special-image {
  width: 100%;
  height: 127px;
  border-radius: 6px;
  margin: 0 auto 10px;
  overflow: hidden;
}
.lp__special-desc {
  text-align: center;
  font-size: 12px;
  line-height: 1.3333333333em;
  letter-spacing: 0.08em;
}
.lp__refer {
  position: relative;
  padding-block: 70px 60px;
}
.lp__refer-heading {
  color: #0f6eaa;
  font-size: 27px;
  font-weight: 500;
  margin-bottom: 40px;
}
.lp__refer-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 3;
}
.lp__refer-item {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 333px;
  margin: 0 auto;
  border: 1px solid #0f6eaa;
  border-radius: 10px;
  padding: 34px 12px 15px 15px;
}
.lp__refer-item:nth-child(1) .lp__refer-icon {
  width: 34px;
  height: 36px;
}
.lp__refer-item:nth-child(2) .lp__refer-icon {
  width: 37px;
  height: 33px;
}
.lp__refer-item:nth-child(3) .lp__refer-icon {
  width: 39px;
  height: 29px;
}
.lp__refer-item:nth-child(4) .lp__refer-icon {
  width: 38px;
  height: 42px;
}
.lp__refer-ribbon {
  display: flex;
  position: absolute;
  top: -18px;
  left: 0;
}
.lp__refer-ribbon.yellow .lp__refer-ribbon-num {
  background: url("./public/img/icons/ribbon-c-yellow.svg") no-repeat center/contain;
}
.lp__refer-ribbon.yellow .lp__refer-ribbon-title {
  background: url("./public/img/icons/ribbon-rect-yellow.svg") no-repeat right/cover;
}
.lp__refer-ribbon-num {
  color: #fff;
  font-size: 32px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("./public/img/icons/ribbon-c-pink.svg") no-repeat center/contain;
  width: 48px;
  height: 48px;
  padding-bottom: 3px;
  z-index: 3;
}
.lp__refer-ribbon-title {
  width: 145px;
  height: 29px;
  background: url("./public/img/icons/ribbon-rect-pink.svg") no-repeat right/cover;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 28px;
  padding-bottom: 1px;
  position: absolute;
  top: 50%;
  left: 28px;
  transform: translateY(-50%);
  z-index: 2;
}
.lp__refer-ribbon-title h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.lp__refer-ribbon-icon {
  width: 18px;
  height: 18px;
}
.lp__refer-icon {
  flex-shrink: 0;
}
.lp__refer-icon.mt-2 {
  margin-top: 2px;
}
.lp__refer-icon.mt-5 {
  margin-top: 5px;
}
.lp__refer-content {
  display: flex;
  gap: 12px;
}
.lp__refer-content.align-center {
  align-items: center;
}
.lp__refer-title {
  color: #0f6eaa;
  font: 500 16px "Noto Sans JP", sans-serif;
  margin-bottom: 5px;
}
.lp__refer-text {
  font: 400 14px "Noto Sans JP", sans-serif;
  letter-spacing: 0.12em;
  line-height: 1.5833333333em;
}
.lp__refer-dots {
  position: absolute;
  z-index: 1;
}
.lp__refer-dots.left {
  width: 42px;
  height: 55px;
  top: 225px;
  left: 2px;
}
.lp__refer-dots.left-btm {
  width: 40px;
  height: 50px;
  bottom: 46px;
  left: 2px;
}
.lp__refer-dots.right {
  width: 40px;
  height: 50px;
  bottom: 287px;
  right: 2px;
}
.lp__er {
  position: relative;
  padding-bottom: 50px;
}
.lp__er::after {
  content: "";
  background: url("./public/img/lp/er-dots.png") no-repeat center/contain;
  width: 37px;
  height: 48px;
  display: block;
  position: absolute;
  top: -10px;
  right: 0;
  z-index: 1;
}
.lp__er-box {
  position: relative;
  width: 100%;
  max-width: 333px;
  margin: 0 auto;
  background: #f0faff;
  padding: 25px 10px 30px;
  border-radius: 10px;
  z-index: 2;
}
.lp__er-heading {
  color: #0f6eaa;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
}
.lp__er-list {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.lp__er-item {
  position: relative;
  font: 400 13px "Noto Sans JP", sans-serif;
  line-height: 1.4615384615em;
  padding-left: 26px;
}
.lp__er-item::before {
  content: "";
  background: url("./public/img/icons/check.svg") no-repeat center/contain;
  width: 19px;
  height: 19px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.lp__er-item a {
  transition: 0.3s ease;
}
.lp__er-item a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.8;
}
.lp__er-item .fs-12 {
  font-size: 12px;
}
.lp__notes {
  position: relative;
}
.lp__notes-box {
  width: 100%;
  max-width: 333px;
  margin: 0 auto;
  background: #f7fafa;
  border-radius: 12px;
  padding: 25px 12px 35px;
}
.lp__notes-heading {
  color: #787878;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}
.lp__notes-heading::before {
  content: "";
  background: url("./public/img/icons/exclamation.svg") no-repeat center/contain;
  width: 27px;
  height: 23px;
  margin-bottom: -5px;
}
.lp__notes-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.lp__note-item .title {
  font: 500 15px "Noto Sans JP", sans-serif;
  letter-spacing: 0.08em;
  margin-right: 10px;
}
.lp__note-item .text {
  color: #505050;
  font: 400 11px "Noto Sans JP", sans-serif;
  line-height: 1.6363636364em;
}

.container {
  width: 100%;
  max-width: calc(1200px + 8%);
  padding: 0 5.3%;
  margin: 0 auto;
  box-sizing: border-box;
}

.bold {
  font-weight: 700;
}

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

.yellow-dc {
  color: #dcaa1e;
}

.blue {
  color: #0073d7;
}

.blue-55 {
  color: #55c8eb;
}