@charset "UTF-8";
:where(.slp) {
  /* カスタムプロパティ */
  --color-white: #fff;
  --color-black: #333;
  --contact-red: #da401c;
  --download-orange: #e56a23;
  --light-orange: #f4a06f;
  --light-orange: #e18956;
  --blue: #22448b;
  --dark-blue: #1e3c72;
  --light-blue: #b0b8c7;
  --bg-blue: #eef3fe;
  --yellow: #e6b738;
  --light-gray: #f8f8f8;
  --fontakshar: "Akshar", sans-serif;
  --max-width: 1300px;
  --padding-inline: 50px;
}
@media screen and (max-width: 768px) {
  :where(.slp) {
    --max-width: 580px;
    --padding-inline: 20px;
  }
}
:where(.slp) *,
:where(.slp) *::before,
:where(.slp) *::after {
  box-sizing: border-box;
}
:where(.slp) {
  /* リセット */
}
:where(.slp) img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
:where(.slp) iframe {
  display: block;
  max-width: 100%;
}
:where(.slp) address,
:where(.slp) em {
  font-style: normal;
}
:where(.slp) a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease-in-out;
}
@media (any-hover: hover) {
  :where(.slp) a:hover {
    opacity: 0.7;
  }
}
:where(.slp) a:focus-visible {
  opacity: 0.7;
}
:where(.slp) {
  /* ベーススタイル */
  container-type: inline-size;
  color: var(--color-black);
  min-width: 375px;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  :where(.slp) a[href^="tel:"] {
    pointer-events: none;
  }
}

.u-text-regular {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.text-bold {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.l-inner {
  margin-inline: auto;
  width: 100%;
  padding-inline: var(--padding-inline);
  max-width: var(--max-width);
}

.l-loto-about {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .l-loto-about {
    margin-top: 50px;
  }
}

.l-loto-case {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .l-loto-case {
    margin-top: 50px;
  }
}

.l-loto-faq {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .l-loto-faq {
    margin-top: 50px;
  }
}

.l-loto-flow {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .l-loto-flow {
    margin-top: 50px;
  }
}

.l-loto-gap {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .l-loto-gap {
    margin-top: 50px;
  }
}

.l-loto-merit {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .l-loto-merit {
    margin-top: 50px;
  }
}

.l-loto-point {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .l-loto-point {
    margin-top: 50px;
  }
}

.l-loto-service {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .l-loto-service {
    margin-top: 50px;
  }
}

.l-loto-step {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .l-loto-step {
    margin-top: 50px;
  }
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 360px;
  padding: 19px;
  background-color: var(--button-bg);
  color: var(--text-color);
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .c-button {
    width: 300px;
    max-width: 100%;
    font-size: 18px;
  }
}

.c-button--contact {
  --text-color: var(--color-white);
  --button-bg: var(--contact-red);
  --icon-image: url(../images/common/icon_mail.svg);
}

.c-button--download {
  --text-color: var(--color-white);
  --button-bg: var(--download-orange);
  --icon-image: url(../images/common/icon_download.svg);
}

.c-button::before {
  display: inline-block;
  width: 24px;
  aspect-ratio: 1;
  background: var(--icon-image) no-repeat center/contain;
  content: "";
}

.c-list__item {
  --icon-size: 3px;
  display: block grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: flex-start;
}

.c-list__item::before {
  margin-block: calc((1lh - var(--icon-size)) / 2);
  block-size: var(--icon-size);
  aspect-ratio: 1/1;
  background-color: currentColor;
  border-radius: 50%;
  content: "";
}

.c-section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  color: var(--dark-blue);
  font-size: 32px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .c-section-heading {
    font-size: 24px;
  }
}

.c-section-heading::after {
  width: 100px;
  height: 1px;
  background-color: var(--blue);
  content: "";
}

.c-table {
  border-collapse: collapse;
}

.c-table__th {
  padding: 12px;
  background-color: var(--dark-blue);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .c-table__th {
    font-size: 15px;
  }
}

.c-table__th + .c-table__th {
  border-left: 1px solid var(--color-white);
}

.c-table__th:nth-child(1) {
  width: 4.5%;
}

.c-table__th:nth-child(2) {
  width: 20%;
  min-width: 190px;
}

.c-table__th:nth-child(3) {
  width: 47.1666666667%;
  min-width: 300px;
}

.c-table__th:nth-child(4) {
  width: 7.5%;
}

.c-table__th:nth-child(5) {
  width: 7.5%;
}

.c-table__th:nth-child(6) {
  width: 13.25%;
  min-width: 140px;
}

.c-table__td {
  height: 36px;
  padding: 6px 12px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .c-table__td {
    font-size: 15px;
  }
}

.c-table__td:nth-child(1),
.c-table__td:nth-child(4),
.c-table__td:nth-child(5) {
  text-align: center;
}

.c-table__td + .c-table__td {
  border-left: 1px solid var(--light-blue);
}

.c-table__tbody .c-table__tr:nth-child(odd) {
  background-color: var(--bg-blue);
}

.c-table__tbody .c-table__tr:nth-child(even) {
  background-color: var(--light-gray);
}

.p-button-items {
  gap: 32px;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-button-items {
    gap: 8px;
  }
}

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

.p-cta--bg {
  padding-block: 42px;
  background-color: var(--dark-blue);
  color: var(--white);
}

.p-cta__text1 {
  display: flex;
  justify-content: center;
  gap: 4px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-cta__text1 {
    font-size: 16px;
  }
}

.p-cta__text1::before,
.p-cta__text1::after {
  width: 1px;
  height: 20px;
  background-color: currentColor;
  content: "";
  transform-origin: bottom;
}

.p-cta__text1::before {
  transform: rotate(-40deg);
}

.p-cta__text1::after {
  transform: rotate(40deg);
}

.p-cta__text2 {
  margin-top: -8px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-cta__text2 {
    margin-top: 0;
    font-size: 18px;
  }
}

.p-cta__buttons {
  margin-top: 7px;
}
@media screen and (max-width: 768px) {
  .p-cta__buttons {
    margin-top: 2px;
  }
}

.p-loto-about {
  --max-width: 1020px;
}
@media screen and (max-width: 768px) {
  .p-loto-about {
    --max-width: 580px;
  }
}

.p-loto-about__content {
  margin-top: 40px;
}

.p-loto-about__media {
  display: grid;
  grid-template-columns: 400fr 20fr 500fr;
  grid-template-areas: "wrap1 . wrap2";
}
@media screen and (max-width: 768px) {
  .p-loto-about__media {
    grid-template-columns: 1fr;
    grid-template-areas: "wrap1" "wrap2";
    gap: 16px;
  }
}

.p-loto-about__media-wrap1 {
  grid-area: wrap1;
}

.p-loto-about__media-heading {
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-loto-about__media-heading {
    font-size: 18px;
  }
}

.p-loto-about__media-descs {
  margin-top: 22px;
}

.p-loto-about__media-desc + .p-loto-about__media-desc {
  margin-top: 14px;
}

.p-loto-about__media-wrap2 {
  grid-area: wrap2;
}

.p-loto-about__media-image-desc {
  margin-top: 10px;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.p-loto-case__content {
  margin-top: 40px;
}

.p-loto-case__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media screen and (max-width: 1200px) {
  .p-loto-case__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .p-loto-case__items {
    grid-template-columns: 1fr;
  }
}

.p-loto-case__item {
  padding-block: 12px 26px;
  padding-inline: 22px;
  background-color: var(--bg-blue);
}

.p-loto-case__item-image {
  margin-inline: auto;
  width: 188px;
}

.p-loto-case__image img {
  aspect-ratio: 188/144;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-loto-case__item-body {
  margin-top: 8px;
}

.p-loto-case__item-heading {
  margin-inline: -8px;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-loto-case__item-heading {
    font-size: 18px;
  }
}

.p-loto-case__item-descs {
  margin-top: 8px;
}

.p-loto-faq__content {
  margin-block-start: 40px;
}

.p-loto-faq__item-dt {
  display: block grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 16px;
       column-gap: 16px;
  align-items: flex-start;
}

.p-loto-faq__item-dt:nth-of-type(n + 2) {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--light-blue);
}

.p-loto-faq__dt-q {
  display: grid;
  place-content: center;
  width: 40px;
  aspect-ratio: 1;
  background-color: var(--dark-blue);
  border-radius: 50%;
  color: var(--color-white);
  font-family: var(--fontakshar);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-loto-faq__dt-q {
    font-size: 18px;
  }
}

.p-loto-faq__dt-text {
  padding-top: 5px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-loto-faq__dt-text {
    font-size: 18px;
  }
}

.p-loto-faq__dd {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-loto-faq__dd {
    margin-top: 20px;
  }
}

.p-loto-flow__content {
  margin-top: 40px;
}

.p-loto-flow__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 10px;
}
@media screen and (max-width: 980px) {
  .p-loto-flow__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .p-loto-flow__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .p-loto-flow__items {
    grid-template-columns: 1fr;
  }
}

.p-loto-flow__item {
  --label-text-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .p-loto-flow__item {
    width: 100%;
  }
}

.p-loto-flow__item:nth-child(1) {
  --label-padding-left: 35px;
  --label-color: #42629e;
  --flow-image: url(../images/common/step_bg.svg);
}
@media screen and (max-width: 480px) {
  .p-loto-flow__item:nth-child(1) {
    --label-padding-left: 50px;
    --flow-image: url(../images/common/step_bg2.svg);
  }
}

.p-loto-flow__item:nth-child(2) {
  --label-color: #315391;
}

.p-loto-flow__item:nth-child(3) {
  --label-color: #254887;
}

.p-loto-flow__item:nth-child(4) {
  --label-color: #1E3C72;
}

.p-loto-flow__item:nth-child(n+2) {
  --label-padding-left: 54px;
  --flow-image: url(../images/common/step_bg2.svg);
}
@media screen and (max-width: 480px) {
  .p-loto-flow__item:nth-child(n+2) {
    --label-padding-left: 50px;
  }
}

.p-loto-flow__item-label {
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
}
@media screen and (max-width: 480px) {
  .p-loto-flow__item-label {
    width: 160px;
  }
}

.p-loto-flow__item-label-bg {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: var(--label-padding-left);
  aspect-ratio: 292/76;
  -webkit-mask-image: var(--flow-image);
          mask-image: var(--flow-image);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--label-color);
  color: var(--label-text-color);
  font-family: var(--fontakshar);
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.p-loto-flow__item-label-text {
  font-size: 18px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 83, 92, 0.3);
}
@media screen and (max-width: 480px) {
  .p-loto-flow__item-label-text {
    font-size: 15px;
  }
}

.p-loto-flow__item-label-number {
  font-size: 28px;
}
@media screen and (max-width: 480px) {
  .p-loto-flow__item-label-number {
    font-size: 20px;
  }
}

.p-loto-flow__item-body {
  position: relative;
  padding-top: 27px;
  padding-inline: 28px;
  background-color: var(--color-white);
  border-radius: 6px;
}
@media screen and (max-width: 480px) {
  .p-loto-flow__item-body {
    padding-top: 16px;
    padding-right: 0;
  }
}

.p-loto-flow__item-heading {
  display: block;
  color: var(--dark-blue);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.p-loto-flow__desc {
  margin-top: 10px;
}

.p-loto-gap__content {
  margin-top: 48px;
}

.p-loto-gap__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .p-loto-gap__items {
    gap: 10px;
  }
}

.p-loto-gap__item {
  display: flex;
  flex-direction: column;
  width: 452px;
}

.p-loto-gap__item--others {
  --desc-bg: #eaeaea;
  --font-size: 24px;
  --deco: url(../images/loto/loto_gap_deco.svg) no-repeat center / contain;
}
@media screen and (max-width: 768px) {
  .p-loto-gap__item--others {
    --font-size: 18px;
  }
}

.p-loto-gap__item--our {
  --desc-bg: var(--bg-blue);
  --font-size: 28px;
}
@media screen and (max-width: 768px) {
  .p-loto-gap__item--our {
    --font-size: 20px;
  }
}

.p-loto-gap__item-heading {
  font-size: var(--font-size);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
}

.p-loto-gap__item-content {
  margin-top: 20px;
  position: relative;
  flex: 1;
  display: grid;
  place-content: center;
  padding: 43px 1em;
  background-color: var(--desc-bg);
}
@media screen and (max-width: 768px) {
  .p-loto-gap__item-content {
    margin-top: 10px;
  }
}

.p-loto-gap__item-content::before,
.p-loto-gap__item-content::after {
  position: absolute;
  top: 25px;
  display: block;
  width: 24px;
  aspect-ratio: 24/28;
  content: "";
  background: var(--deco);
}

.p-loto-gap__item-content::before {
  left: 16px;
}

.p-loto-gap__item-content::after {
  right: 16px;
  transform: scaleX(-1);
}

.p-loto-gap__item-desc {
  font-size: var(--font-size);
  font-weight: 600;
  text-align: center;
}

.p-loto-gap__copy2 {
  margin-top: 60px;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-loto-gap__copy2 {
    margin-top: 30px;
    font-size: 20px;
    text-align: center;
  }
}

.p-loto-gap__data {
  margin-top: 87px;
}
@media screen and (max-width: 768px) {
  .p-loto-gap__data {
    margin-top: 30px;
  }
}

.p-loto-gap__table-heading {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-loto-gap__table-heading {
    font-size: 20px;
  }
}

.p-loto-gap__table-wrap {
  margin-top: 52px;
}
@media screen and (max-width: 768px) {
  .p-loto-gap__table-wrap {
    margin-top: 20px;
  }
}

.p-loto-merit__content {
  margin-top: 40px;
}

.p-loto-merit__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 5%;
       column-gap: 5%;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-loto-merit__items {
    grid-template-columns: 1fr;
  }
}

.p-loto-merit__item-image {
  margin-inline: auto;
  width: 120px;
}

.p-loto-merit__item-image img {
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-loto-merit__item-body {
  margin-top: 5px;
}

.p-loto-merit__item-heading {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-loto-merit__item-heading {
    font-size: 18px;
  }
}

.p-loto-merit__item-descs {
  margin-top: 5px;
  padding-left: 10px;
}

.p-loto-mv {
  position: relative;
  padding-block: 53px 10px;
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .p-loto-mv {
    padding-block: 24px 10px;
  }
}

.p-loto-mv__image {
  position: relative;
  position: absolute;
  inset: 0;
}

.p-loto-mv__image img {
  margin-left: auto;
  position: absolute;
  inset: 0 0 0 auto;
  width: 59.4444444444%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-loto-mv__image img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: bottom;
       object-position: bottom;
  }
}

.p-loto-mv__image::after {
  position: absolute;
  inset: 0;
  display: block;
  background-image: linear-gradient(to right, #1e3c72 55%, rgba(57, 114, 216, 0.7) 70%);
  content: "";
  clip-path: polygon(0 0, 80% 0%, 64% 100%, 0% 100%);
}
@media screen and (max-width: 768px) {
  .p-loto-mv__image::after {
    background-image: linear-gradient(to bottom, #1e3c72 55%, rgba(57, 114, 216, 0.7) 70%);
    clip-path: polygon(0 0, 100% 0, 100% 64%, 0 72%);
  }
}

.p-loto-mv__inner {
  position: relative;
}

.p-loto-mv__wrap {
  width: -moz-fit-content;
  width: fit-content;
}

.p-loto-mv__copy1 {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 8px;
  background-color: var(--color-white);
  color: var(--dark-blue);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .p-loto-mv__copy1 {
    padding-block: 8px;
    font-size: 20px;
  }
}

.p-loto-mv__copy-no {
  font-size: 53px;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .p-loto-mv__copy-no {
    font-size: 28px;
  }
}

.p-loto-mv__title {
  margin-top: 16px;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.4;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 768px) {
  .p-loto-mv__title {
    margin-top: 8px;
    font-size: 28px;
    line-height: 1.2;
  }
}

.p-loto-mv__copy2 {
  margin-top: 8px;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 8px;
  padding-block-end: 2px;
  background-color: var(--color-white);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-loto-mv__copy2 {
    padding-block: 1px;
    font-size: 18px;
    line-height: 1.2;
  }
}

.p-loto-mv__copy2-em {
  --dot-color-change: #f4a06f;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .p-loto-mv__copy2-em {
    font-size: 24px;
  }
}

.p-loto-mv__copy2-asterisk {
  display: inline-block;
  transform: translateY(-8px);
}

.p-loto-mv__desc {
  margin-top: 13px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .p-loto-mv__desc {
    font-size: 15px;
  }
}

.p-loto-mv__items {
  margin-top: 11px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 32px;
  align-items: center;
  justify-content: center;
  padding-inline-end: 66px;
}
@media screen and (max-width: 768px) {
  .p-loto-mv__items {
    gap: 8px;
    padding-inline-end: 0;
  }
}

.p-loto-mv__item {
  display: grid;
  place-content: center;
  gap: 2px;
  width: 128px;
  padding-block-start: 13px;
  aspect-ratio: 1;
  background: url(../images/common/3point.png) no-repeat center/contain;
  color: var(--download-orange);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-loto-mv__item {
    width: 100px;
  }
}

.p-loto-mv__item-note {
  font-size: 10px;
  line-height: 1.1;
}

.p-loto-mv__cta {
  margin-top: 12px;
  width: -moz-fit-content;
  width: fit-content;
}

.p-loto-mv__note {
  margin-top: 22px;
  position: relative;
  padding-inline-end: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .p-loto-point {
    --max-width: 580px;
  }
}

.p-loto-point__content {
  margin-top: 40px;
  container-type: inline-size;
}

.p-loto-point__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 58px;
}
@media screen and (max-width: 768px) {
  .p-loto-point__items {
    grid-template-columns: 1fr;
  }
  @supports (width: 1cqi) {
    .p-loto-point__items {
      gap: 6.3043478261cqi;
    }
  }
}

.p-loto-point__item {
  position: relative;
  padding-top: 16px;
}

.p-loto-point__item-body {
  padding: 80px 31px 24px;
  background-color: var(--bg-blue);
}
@media screen and (max-width: 768px) {
  .p-loto-point__item-body {
    padding-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .p-loto-point__item-heading {
    padding-left: 90px;
  }
}

.p-loto-point__item-heading-label {
  position: absolute;
  top: 0;
  left: 26px;
  display: grid;
  place-content: center;
  text-align: center;
  width: 84px;
  aspect-ratio: 84/83;
  background: url(../images/common/point_bg.svg) no-repeat center/contain;
  color: var(--color-white);
  font-family: var(--fontakshar);
}

.p-loto-point__item-heading-label-text {
  font-size: 10px;
  font-size: 9px;
  text-transform: uppercase;
}

.p-loto-point__item-heading-number {
  margin-top: -5px;
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .p-loto-point__item-heading-number {
    font-size: 20px;
  }
}

.p-loto-point__item-heading-text {
  color: var(--dark-blue);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-loto-point__item-heading-text {
    font-size: 18px;
  }
}

.p-loto-point__item-desc {
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .p-loto-point__item-desc {
    margin-top: 40px;
  }
}

.p-loto-service__content {
  margin-top: 40px;
}

.p-loto-service__items {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 36px;
}
@media screen and (max-width: 980px) {
  .p-loto-service__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .p-loto-service__items {
    grid-template-columns: 1fr;
  }
}

.p-loto-service__item {
  position: relative;
  padding-top: 12px;
  padding-left: 12px;
}

.p-loto-service__item::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 29px;
  aspect-ratio: 1;
  background: url(../images/common/icon_check.svg) no-repeat center/contain;
  content: "";
}

.p-loto-service__item-body {
  padding: 16px;
  background-color: var(--bg-blue);
  border-radius: 4px;
  height: 100%;
}

.p-loto-service__item-heading {
  color: var(--dark-blue);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-loto-service__item-heading {
    font-size: 18px;
  }
}

.p-loto-service__item-descs {
  margin-block-start: 4px;
  padding-inline-start: 14px;
}

.p-loto-step {
  --max-width: 1020px;
}
@media screen and (max-width: 768px) {
  .p-loto-step {
    --max-width: 580px;
  }
}

.p-loto-step__content {
  margin-top: 40px;
}

.p-loto-step__items {
  --gap: 20px;
  display: grid;
  gap: var(--gap);
}

.p-loto-step__item {
  position: relative;
  padding: 32px 19px;
  background-color: var(--bg-blue);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-loto-step__item {
    gap: 12px 24px;
    grid-template-areas: "image heading" "body body";
  }
}

.p-loto-step__item + .p-loto-step__item::before {
  margin-inline: auto;
  position: absolute;
  inset: calc(var(--gap) * -1) 0 auto;
  display: block;
  width: auto;
  height: var(--gap);
  aspect-ratio: 30/24;
  background-color: var(--light-blue);
  content: "";
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.p-loto-step__item-image {
  display: grid;
  place-content: center;
  width: 120px;
  background-color: var(--color-white);
  border-radius: 50%;
  aspect-ratio: 1;
}
@media screen and (max-width: 768px) {
  .p-loto-step__item-image {
    width: 80px;
    grid-area: image;
  }
}

.p-loto-step__item-image img {
  width: 70px;
  aspect-ratio: 1;
}

@media screen and (max-width: 768px) {
  .p-loto-step__item-body {
    display: contents;
  }
}

@media screen and (max-width: 768px) {
  .p-loto-step__item-heading {
    grid-area: heading;
  }
}

.p-loto-step__item-heading-number {
  color: var(--light-blue);
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .p-loto-step__item-heading-number {
    font-size: 15px;
  }
}

.p-loto-step__item-heading-text {
  margin-top: 12px;
  color: var(--dark-blue);
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-loto-step__item-heading-text {
    margin-top: 4px;
  }
}

.p-loto-step__item-desc {
  margin-top: 16px;
  color: var(--dark-blue);
  display: block;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .p-loto-step__item-desc {
    margin-top: 0;
    grid-area: body;
  }
}

.l-cta {
  margin-top: 80px;
}

/* 要素をinline-blockにして上部にドットの装飾をつける */
/* ドットのサイズを変えるときはdots.svgもあわせて修正する */
.u-dots {
  --dot-color: var(--dot-color-change, var(--light-orange));
  --dots-height: 4px;
  position: relative;
  display: inline-block;
  padding-top: var(--dots-height);
}

.u-dots::before {
  position: absolute;
  inset: 4px 0 auto;
  height: var(--dots-height);
  background-color: var(--dot-color);
  -webkit-mask-image: url(../images/common/dot.svg);
          mask-image: url(../images/common/dot.svg);
  -webkit-mask-repeat: space;
          mask-repeat: space;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 1em var(--dots-height);
          mask-size: 1em var(--dots-height);
  content: "";
}
@media screen and (max-width: 768px) {
  .u-dots::before {
    top: 0;
  }
}

.u-marker {
  --marker-color: var(--yellow);
  --marker-heigth: 8px;
  background-image: linear-gradient(to top, var(--marker-color) var(--marker-heigth), transparent var(--marker-heigth));
}

:where(div, figure):has(> .u-no-image) {
  background-color: var(--color-white);
}

.u-no-image {
  padding: 10% 20%;
  -o-object-fit: contain;
     object-fit: contain;
}

.u-orange {
  color: var(--download-orange);
}

/* 980px以下で非表示 */
@media screen and (max-width: 980px) {
  .u-pc {
    display: none;
  }
}

.u-scroll-hint {
  scrollbar-width: none;
}

.u-scroll-hint .scroll-hint-icon {
  top: 100px;
}

/* 768px以下で表示 */
.u-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp {
    display: block;
    display: revert;
  }
}

/* 768px以下で非表示 */
@media screen and (max-width: 768px) {
  .u-tab {
    display: none;
  }
}

.u-text-regular {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .u-text-regular {
    font-size: 15px;
  }
}

#sidecv {
  display: none;
}
/*# sourceMappingURL=style.css.map */
