@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&family=Roboto:wght@400;700&display=swap");

html {
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  /* アンカーリンク時ヘッダー分の余白を追加 */
  html {
    scroll-padding-top: 63px;
  }
}

/* -------------------
wrapper
------------------- */
.l-wrapper {
  position: relative;
  overflow: clip;
  width: 100%;
}

/* -------------------
main
------------------- */
.l-main {
  margin: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .l-main {
    padding-top: 64px;
    min-height: calc(100vh - 258px);
  }
}

/* -------------------
l-contents
------------------- */
.l-contents {
  padding: 16px 0 0 0;
}
@media (min-width: 768px) {
  .l-contents {
    padding: 32px 0 0 0;
  }
}

/* -------------------
l-inner
------------------- */
.l-inner {
  padding: 0 16px;
  margin-inline: auto;
  /* max-width: 648px; */
  box-sizing: content-box;
}
@media (min-width: 768px) {
  .l-inner {
    max-width: 648px;
  }
}

/* -------------------
fv
------------------- */
.c-fv {
  width: 100%;
}
@media (min-width: 768px) {
  .c-fv {
    margin-inline: auto;
    max-width: 767px;
  }
}

/* -------------------
c-register-simple-block
------------------- */
.c-register-simple-block {
  background: var(--primitive-mono-000);
}

.c-register-simple-block__logo-area {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 16px;
  width: 100%;
  max-width: 343px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .c-register-simple-block__logo-area {
    gap: 12px 16px;
  }
}

.c-register-simple-block__logo {
  flex-shrink: 0;
}
.c-register-simple-block__logo.rnn {
  width: 84px;
}
.c-register-simple-block__logo.rds {
  width: 112px;
}
.c-register-simple-block__logo.beauty {
  width: 70px;
}
.c-register-simple-block__logo.jalan {
  width: 58px;
}
.c-register-simple-block__logo.hpg {
  width: 65px;
}

.c-register-simple-block__button-area {
  margin-top: 24px;
  padding: 16px 0;
}

.c-register-simple-block__button + .c-register-simple-block__button {
  margin-top: 16px;
}

.c-register-simple-block__button .button {
  margin-inline: auto;
  min-height: 56px;
  max-width: 343px;
}

/* -------------------
c-list-note
------------------- */
.c-list-note {
  padding-left: 2em;
  text-indent: -2em;
  color: var(--primitive-mono-700);
  font-size: 10px;
  font-weight: 300;
  line-height: 1.4;
}

ul.c-list-note {
  padding-left: 1.3em;
  text-indent: -1.3em;
  word-break: break-all;
}

ul.c-list-note > .c-list-note__item::before {
  content: "※ ";
}

ol.c-list-note {
  counter-reset: number 0;
}

ol.c-list-note > .c-list-note__item {
  counter-increment: number 1;
}

ol.c-list-note > .c-list-note__item::before {
  content: "※" counter(number) " ";
}

/* -------------------
button
------------------- */
.button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0 24px;
  min-height: 48px;
  min-width: 140px;
  max-width: 220px;
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
  border: none;
}

.button.new {
  background: var(--Surface-Interactive-Primary);
  box-shadow: 0px 1px 2px 0px rgba(134, 55, 4, 0.3);
  color: var(--Object-White, #fff);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.button.new:hover {
  background: var(--Surface-Interactive-Primary-hover);
}

.button.border {
  border: 1px solid var(--Stroke-Divider);
  background: var(--Surface-Interactive-White);
  box-shadow: 0px 1px 2px 0px rgba(166, 166, 166, 0.2);
  color: var(--Surface-Interactive-Secondary);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.button.border:hover {
  border-color: var(--Surface-Interactive-Secondary);
  background: var(--InteractiveSurface-Button-White-White_Hover);
}

/* button-balloon */
.button .button-balloon {
  position: absolute;
  top: -14px;
  left: 50%;
  display: block;
  padding: 0 22px;
  border-radius: 8px;
  border: 2px solid #d84001;
  background: var(--primitive-mono-000);
  transform: translateX(-50%);
  color: var(--PrimitiveColors-Orange-700, #d84001);
  text-align: center;
  color: #d84001;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.button .button-balloon span {
  padding-inline: 2px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.button:hover .button-balloon {
  border-color: var(--Surface-Interactive-Primary-hover);
  color: var(--Surface-Interactive-Primary-hover);
}

/* -------------------
logo-area
------------------- */
.logo-area {
  padding: 24px 16px;
  border-radius: 16px;
  border: 1px solid #1f3566;
  background: var(--primitive-mono-000);
}
.logo-area__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .logo-area__inner {
    gap: 16px 7px;
  }
}
.logo-area__img {
  width: 100%;
  max-width: 147px;
}
@media (min-width: 768px) {
  .logo-area__img {
    max-width: 190px;
  }
}

.logo-area__note {
  margin-top: 16px;
  text-align: center;
  color: var(--primitive-mono-700);
  font-size: 10px;
  font-weight: 300;
  line-height: 1.5;
}

/* -------------------
c-band
------------------- */
.c-band {
  position: relative;
  padding: 24px 0 40px;
  background-color: var(--primitive-blue-600);
}
@media (min-width: 768px) {
  .c-band {
    padding: 40px 0 72px;
  }
}
.c-band__inner {
  padding: 0 16px;
}
.c-band__bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .c-band__bg {
    max-width: 760px;
  }
}
.c-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* -------------------
c-band-heading
------------------- */
.c-band-heading {
  font-size: 24px;
  color: var(--primitive-mono-000);
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}
@media (min-width: 768px) {
  .c-band-heading {
    font-size: 32px;
  }
}
.c-band-heading__small {
  font-size: 14px;
}
@media (min-width: 768px) {
  .c-band-heading__small {
    font-size: 24px;
  }
}
.c-band-heading span {
  position: relative;
}
.c-band-heading small {
  position: absolute;
  top: 1px;
  right: -16px;
  font-size: 8px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
}
.windows .c-band-heading small {
  top: 15%;
}

/* -------------------
content-point
------------------- */
.content-point {
  background-color: #daebf7;
}

.content-point__inner {
  margin-top: -18px;
  margin-inline: auto;
  max-width: 560px;
  padding: 0 16px;
  box-sizing: content-box;
}
@media (min-width: 768px) {
  .content-point__inner {
    margin-top: -32px;
  }
}

.content-point__card-wrap {
  padding-top: 20px;
  padding-bottom: 6px;
  max-width: 540px;
  margin-inline: auto;
}

/* -------------------
c-card-point
------------------- */
.c-card-point {
  padding: 24px 23px;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #1f3566;
  position: relative;
  min-width: 305px;
}
@media (min-width: 768px) {
  .c-card-point__inner {
    display: grid;
    grid-template-areas:
      "img title"
      "img detail";
    grid-template-rows: auto;
    grid-template-columns: 170px 1fr;
    column-gap: 32px;
  }
}

.c-card-point.point1 {
  box-shadow: 6px 6px 0px 0px #a5baf2;
}

.c-card-point.point2 {
  box-shadow: 6px 6px 0px 0px #2899a6;
}

.c-card-point.point3 {
  box-shadow: 6px 6px 0px 0px #f09c95;
}
.c-card-point + .c-card-point {
  margin-top: 36px;
}

/* .c-card-point__tab */
.c-card-point__tab {
  position: relative;
  width: 300px;
  position: absolute;
  top: -21px;
  left: -1px;
}

/* .c-card-point__title */
.c-card-point__title {
  grid-area: title;
  color: #1f3566;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}
@media (min-width: 768px) {
  .c-card-point__title {
    text-align: left;
  }
}

.c-card-point__title b {
  color: #d84001;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-color: #faf3b4;
  text-decoration-thickness: 35%;
  text-underline-offset: -15%;
  text-underline-position: from-font;
}
@media (min-width: 768px) {
  .c-card-point__title b {
    font-size: 32px;
  }
}
.c-card-point__title b.has-mr {
  margin-right: 4px;
}
@media (min-width: 768px) {
  .c-card-point__title b.has-mr {
    margin-right: 6px;
  }
}

.c-card-point__title span {
  display: inline-block;
  position: relative;
}
.c-card-point__title small {
  position: absolute;
  top: 6px;
  right: -19px;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .c-card-point__title small {
    top: 13px;
    right: -19px;
    font-size: 10px;
  }
}

/* .c-card-point__img */
.c-card-point__img {
  grid-area: img;
  margin-top: 8px;
  margin-inline: auto;
  width: 100%;
  max-width: 400px;
}
@media (min-width: 768px) {
  .c-card-point__img {
    display: flex;
    align-items: center;
    margin-top: 0;
    width: 170px;
  }
}

/* .c-card-point__detail */
.c-card-point__detail {
  grid-area: detail;
  margin-top: 16px;
  text-align: justify;
}
@media (min-width: 768px) {
  .c-card-point__detail {
    margin-top: 12px;
  }
}

.c-card-point__detail > p {
  color: #1f3566;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .c-card-point__detail > p {
    font-size: 14px;
  }
}

.c-card-point__detail > p > span {
  color: #1156bd;
  font-weight: 600;
}

/* -------------------
content-feature
------------------- */
.content-feature {
  background: var(--Surface-Interactive-White);
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .content-feature {
    padding-bottom: 56px;
  }
}
.content-feature__inner {
  margin-top: -19px;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .content-feature__inner {
    margin-top: -32px;
  }
}

/* -------------------
card-feature
------------------- */
.card-feature {
  position: relative;
  padding-block: 24px 32px;
  padding-inline: 16px;
  background-color: var(--Surface-Interactive-White);
  border-radius: 16px;
  border: 1px solid #1f3566;
}
@media (min-width: 768px) {
  .card-feature {
    width: 648px;
    margin-inline: auto;
    padding-block: 32px 32px;
    padding-inline: 32px;
  }
}
.card-feature.has-carousel {
  padding-inline: 0;
}

.card-feature + .card-feature {
  margin-block-start: 24px;
}
@media (min-width: 768px) {
  .card-feature + .card-feature {
    margin-block-start: 32px;
  }
}

.card-feature__title {
  position: relative;
  text-align: center;
  margin-block: 0 16px;
  padding-block-end: 10px;
  color: #1f3566;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .card-feature__title {
    font-size: 24px;
    margin-block: 0 24px;
    padding-block-end: 16px;
  }
}

.card-feature__title::after {
  content: "";
  width: 22px;
  height: 2px;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  background: #1f3566;
}

.card-feature__title img {
  width: 24px;
  height: 24px;
  display: block;
  margin-inline: auto;
  margin-block-end: 4px;
}
@media (min-width: 768px) {
  .card-feature__title img {
    width: 28px;
    height: 28px;
    margin-block-end: 8px;
  }
}
.card-feature__title > span.orange {
  color: #eb6505;
}
.card-feature__body {
}
.card-feature__bottom {
  margin-top: 16px;
  padding: 0 16px;
}
.card-feature__notice {
  padding-left: 1.3em;
  text-indent: -1.3em;
  color: var(--primitive-mono-700);
  font-size: 10px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .card-feature__notice {
    text-align: center;
  }
}

/* -------------------
job-category
------------------- */
.job-category {
}
@media (min-width: 768px) {
  .job-category {
    padding: 0 10px;
  }
}

.job-category__labels {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
@media (min-width: 768px) {
  .job-category__labels {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 24px;
  }
}

.job-category__label {
  color: #1156bd;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-color: #dcf5f5;
  text-decoration-thickness: 35%;
  text-underline-offset: -15%;
  text-underline-position: from-font;
}

.job-category__text {
  color: #1f3566;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* -------------------
c-card-job
------------------- */
.c-card-job {
  width: 260px;
  height: 100%;
  border-radius: 8px;
  background: #f0f3ff;
  overflow: clip;
}
@media (max-width: 767px) {
  .c-card-job {
    width: clamp(260px, (260 / 375) * 100vw, 390px);
  }
}

.c-card-job__head {
  padding: 12px 8px;
  background-color: #1f3566;
}
@media (max-width: 767px) {
  .c-card-job__head {
    padding: clamp(12px, (12 / 375) * 100vw, 18px) clamp(8px, (8 / 375) * 100vw, 12px);
  }
}
.c-card-job__heading {
  color: var(--primitive-mono-000);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 767px) {
  .c-card-job__heading {
    font-size: clamp(16px, (16 / 375) * 100vw, 24px);
  }
}

.c-card-job__body {
  padding: 16px;
}
@media (max-width: 767px) {
  .c-card-job__body {
    padding: clamp(16px, (16 / 375) * 100vw, 24px);
  }
}

.c-card-job__img {
}

.c-card-job__label {
  margin-top: 16px;
  color: var(--primitive-mono-000);
  padding: 2px 8px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  border-radius: 999rem;
  background: #2899a6;
}
@media (max-width: 767px) {
  .c-card-job__label {
    margin-top: clamp(16px, (16 / 375) * 100vw, 24px);
    padding: clamp(2px, (2 / 375) * 100vw, 3px) clamp(8px, (8 / 375) * 100vw, 12px);
    font-size: clamp(16px, (16 / 375) * 100vw, 24px);
  }
}

.c-card-job__tags {
  margin-top: 12px;
}
@media (max-width: 767px) {
  .c-card-job__tags {
    margin-top: clamp(12px, (12 / 375) * 100vw, 18px);
  }
}

.c-card-job__tags > * + * {
  margin-top: 4px;
}
@media (max-width: 767px) {
  .c-card-job__tags > * + * {
    margin-top: clamp(4px, (4 / 375) * 100vw, 6px);
  }
}

.c-card-job__tag {
  position: relative;
  color: #1f3566;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-left: 16px;
}
@media (max-width: 767px) {
  .c-card-job__tag {
    font-size: clamp(12px, (12 / 375) * 100vw, 18px);
    margin-left: clamp(16px, (16 / 375) * 100vw, 24px);
  }
}
.c-card-job__tag::before {
  content: "";
  position: absolute;
  top: calc(0.5em - 2px);
  left: -1em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #ff6400;
}
@media (max-width: 767px) {
  .c-card-job__tag::before {
    width: clamp(4px, (4 / 375) * 100vw, 6px);
    height: clamp(4px, (4 / 375) * 100vw, 6px);
    top: calc(0.5em - clamp(2px, (2 / 375) * 100vw, 3px));
  }
}

.c-card-job__box {
  margin-top: 16px;
  border-radius: 4px;
  background: var(--primitive-mono-000);
}
@media (max-width: 767px) {
  .c-card-job__box {
    margin-top: clamp(16px, (16 / 375) * 100vw, 24px);
  }
}

.c-card-job__box-head {
  padding: 4px 8px;
  border-bottom: 1px solid #e0e4f8;
  text-align: center;
}
@media (max-width: 767px) {
  .c-card-job__box-head {
    padding: clamp(4px, (4 / 375) * 100vw, 6px) clamp(8px, (8 / 375) * 100vw, 12px);
  }
}

.c-card-job__box-heading {
  color: #1f3566;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .c-card-job__box-heading {
    font-size: clamp(12px, (12 / 375) * 100vw, 18px);
  }
}

.c-card-job__box-body {
  padding: 8px 4px;
}
@media (max-width: 767px) {
  .c-card-job__box-body {
    padding: clamp(8px, (8 / 375) * 100vw, 12px) clamp(4px, (4 / 375) * 100vw, 6px);
  }
}

.c-card-job__income {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1f3566;
  font-size: 12px;
}
@media (max-width: 767px) {
  .c-card-job__income {
    font-size: clamp(12px, (12 / 375) * 100vw, 18px);
  }
}

.c-card-job__income .number {
  font-family: "Roboto Condensed";
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .c-card-job__income .number {
    font-size: clamp(44px, (44 / 375) * 100vw, 66px);
  }
}

.c-card-job__income .dash {
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}
@media (max-width: 767px) {
  .c-card-job__income .dash {
    font-size: clamp(18px, (18 / 375) * 100vw, 27px);
  }
}

.c-card-job__income .unit {
  align-self: flex-end;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}
@media (max-width: 767px) {
  .c-card-job__income .unit {
    font-size: clamp(12px, (12 / 375) * 100vw, 18px);
  }
}

.c-card-job__income .comma {
  letter-spacing: -0.07em;
  font-family: inherit;
}

/* -------------------
c-card-income
------------------- */

.c-card-income {
  width: 272px;
  padding: 16px;
  border-radius: 4px;
  background: #f0f3ff;
}
@media (max-width: 767px) {
  .c-card-income {
    width: clamp(272px, (272 / 375) * 100vw, 408px);
    padding: clamp(16px, (16 / 375) * 100vw, 24px);
  }
}

.c-card-income__heading {
  display: inline-block;
  color: #1f3566;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  border-left: 4px solid #2899a6;
  margin: 0;
  padding-left: 12px;
}
@media (max-width: 767px) {
  .c-card-income__heading {
    font-size: clamp(18px, (18 / 375) * 100vw, 27px);
    border-left: clamp(4px, (4 / 375) * 100vw, 6px) solid #2899a6;
    padding-left: clamp(12px, (12 / 375) * 100vw, 18px);
  }
}

.c-card-income__heading span {
  display: block;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .c-card-income__heading span {
    font-size: clamp(14px, (14 / 375) * 100vw, 21px);
  }
}

.c-card-income__heading small {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .c-card-income__heading small {
    font-size: clamp(12px, (12 / 375) * 100vw, 18px);
  }
}

.c-card-income__box {
  margin-top: 16px;
  background-color: var(--primitive-mono-000);
  border-radius: 4px;
  padding: 0 16px;
}
@media (max-width: 767px) {
  .c-card-income__box {
    margin-top: clamp(16px, (16 / 375) * 100vw, 24px);
    padding: 0 clamp(16px, (16 / 375) * 100vw, 24px);
  }
}

.c-card-income__box-head {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #e0e4f8;
  padding: 4px 0;
}
@media (max-width: 767px) {
  .c-card-income__box-head {
    padding: clamp(4px, (4 / 375) * 100vw, 6px) 0;
  }
}

.c-card-income__box-label {
  color: #1f3566;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .c-card-income__box-label {
    font-size: clamp(12px, (12 / 375) * 100vw, 18px);
  }
}

.c-card-income__box-body {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  padding: 2px 0 8px;
}
@media (max-width: 767px) {
  .c-card-income__box-body {
    gap: clamp(5px, (5 / 375) * 100vw, 7px);
    padding: clamp(2px, (2 / 375) * 100vw, 3px) 0 clamp(8px, (8 / 375) * 100vw, 12px);
  }
}

.c-card-income__income {
}
.c-card-income__arrow {
  align-self: center;
  margin-top: 15px;
  width: 18px;
  height: 20px;
}
@media (max-width: 767px) {
  .c-card-income__arrow {
    margin-top: clamp(15px, (15 / 375) * 100vw, 22px);
    width: clamp(18px, (18 / 375) * 100vw, 27px);
    height: clamp(20px, (20 / 375) * 100vw, 30px);
  }
}

.c-card-income__income.before {
  color: #757c85;
}
.c-card-income__income.after {
  color: #1f3566;
}
.c-card-income__income-label {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .c-card-income__income-label {
    font-size: clamp(12px, (12 / 375) * 100vw, 18px);
  }
}

.c-card-income__income.after .c-card-income__income-label {
  position: relative;
  bottom: -4px;
}
@media (max-width: 767px) {
  .c-card-income__income.after .c-card-income__income-label {
    bottom: clamp(-4px, (-4 / 375) * 100vw, -6px);
  }
}

.c-card-income__income-number {
  display: flex;
  align-items: flex-end;
}
.c-card-income__income-number .number {
  font-family: "Roboto Condensed";
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .c-card-income__income-number .number {
    font-size: clamp(32px, (32 / 375) * 100vw, 48px);
  }
}

.c-card-income__income.after .c-card-income__income-number .number {
  position: relative;
  bottom: -4px;
  font-size: 40px;
}
@media (max-width: 767px) {
  .c-card-income__income.after .c-card-income__income-number .number {
    bottom: clamp(-4px, (-4 / 375) * 100vw, -6px);
    font-size: clamp(40px, (40 / 375) * 100vw, 60px);
  }
}

.c-card-income__income-number .unit {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .c-card-income__income-number .unit {
    font-size: clamp(12px, (12 / 375) * 100vw, 18px);
  }
}

.c-card-income__income-number .comma {
  letter-spacing: -0.07em;
  font-family: inherit;
}

/* -------------------
content_qa
------------------- */
.content_qa {
  background-color: #1156bd;
  padding-block: 40px;
  padding-inline: 16px;
}
@media (min-width: 768px) {
  .content_qa {
    padding-block: 32px;
  }
}

.content_qa__title {
  color: var(--Surface-Interactive-White);
  position: relative;
  margin-inline: 16px;
  margin-block: 0 24px;
  text-align: center;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .content_qa__title {
    font-size: 32px;
    margin-block: 0 24px;
  }
}

.card_qa {
  background-color: var(--Surface-Interactive-White);
  padding-block: 16px;
  padding-inline: 16px;
  border-radius: 16px;
}

@media (min-width: 768px) {
  .card_qa {
    max-width: 540px;
    margin-inline: auto;
  }
}

.qa_detail {
  border-bottom: 1px solid #e5e5e5;
  margin-block-end: 16px;
}

.qa_detail:last-of-type {
  margin-block-end: 0;
}

.qa_detail > h2 {
  display: flex;
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #1f3566;
  background-color: #f0f3ff;
  border-radius: 4px 4px 0 0;
  padding-block: 8px;
  padding-inline: 8px;
}

.qa_detail > h2 > span {
  font-family: Roboto;
  font-weight: 700;
  font-style: Bold;
  line-height: 140%;
  color: #244dc7;
  padding-inline-end: 6px;
}

.qa_detail > p {
  font-size: 12px;
  color: #333333;
  padding-block: 8px 16px;
  padding-inline: 8px;
}

/* -------------------
c-carousel
------------------- */
.c-carousel {
}
.c-carousel__contents {
  position: relative;
}

/* ページネーションの調整 */
.c-carousel .splide__pagination {
  display: flex;
  justify-content: center;
  column-gap: 16px;
}

.c-carousel .splide__pagination li {
  line-height: 0;
}
.c-carousel .splide__pagination .splide__pagination__page {
  padding: 0;
  border: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #f0f3ff;
  cursor: pointer;
  border: 1px solid #f0f3ff;
}

.c-carousel .splide__pagination .splide__pagination__page:hover {
  border-color: var(--primitive-blue-600);
}
.c-carousel .splide__pagination .splide__pagination__page.is-active {
  background-color: var(--primitive-blue-600);
  border-color: var(--primitive-blue-600);
}

/* ボタンの調整 */
.c-carousel .splide__arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 16px;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .c-carousel .splide__arrows {
    margin-top: 16px;
  }
}
.c-carousel .splide__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999rem;
  border: 1px solid #1f3566;
  background: var(--primitive-mono-000);
  box-shadow: 0 1px 2px 0 rgba(166, 166, 166, 0.2);
  cursor: pointer;
}

.c-carousel .splide__arrow:hover {
  background: #f5f6fa;
}

.c-carousel .splide__arrow img {
  width: 24px;
  height: 24px;
}

/* 個別の調整 */
.splide-income.c-carousel .splide__slide {
  padding-bottom: 4px;
}

.dialog {
  padding-top: 42px;
  background-color: var(--primitive-mono-000);
}
.dialog__register {
  padding: 24px 16px;
}
@media (min-width: 768px) {
  .dialog__register {
    padding: 20px 12px 24px;
  }
}

.content-notice {
  padding: 24px 0 32px;
}

/* -------------------
c-notice
------------------- */
.c-notice {
  background: var(--primitive-mono-050);
  padding-block: 24px;
}
.c-notice__title {
  color: var(--primitive-mono-700);
  font-size: 10px;
  font-weight: 300;
  line-height: 150%;
}

.c-notice__list {
  padding-left: 2em;
  text-indent: -2em;
  color: var(--primitive-mono-700);
  font-size: 10px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.02em;
  padding-left: 1.3em;
  text-indent: -1.3em;
  word-break: break-all;
}

.c-notice__list > li::before {
  content: "※ ";
}