@charset "UTF-8";
html {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul,
summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  vertical-align: middle;
  text-align: inherit;
  text-transform: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:root {
  --color-text: #000;
  --color-bg: #fff;
  --color-black: #000;
  --color-white: #fff;
  --color-blue: #026ab5;
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
}

@media screen and (max-width: 1239px) and (min-width: 768px) {
  html {
    font-size: calc(16 / 1240 * 100vw);
  }
}
@media screen and (max-width: 374px) {
  html {
    font-size: calc(16 / 375 * 100vw);
  }
}
html {
  -webkit-font-smoothing: antialiased; /* macOS Safari / Chrome */
  -moz-osx-font-smoothing: grayscale; /* macOS Firefox */
  font-smooth: antialiased; /* Windows系ブラウザ用（非標準） */
  -webkit-font-feature-settings: "hwid" on, "palt" on;
          font-feature-settings: "hwid" on, "palt" on;
  leading-trim: both;
  text-edge: cap;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: "M PLUS Rounded 1c", sans-serif;
}

body:has(.p-drawer.js-show) {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a,
span {
  display: inline-block;
}

picture {
  display: contents;
}

video,
img,
svg {
  width: 100%;
  height: auto;
}

button {
  border: none;
  background: transparent;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

summary {
  cursor: pointer;
}

input,
textarea,
select {
  font: inherit;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    text-decoration: none;
    cursor: default;
    pointer-events: none;
  }
}
.l-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: max(4.6875rem, 60px);
  background-color: var(--color-white);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .l-header {
    height: 3rem;
  }
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767.9px) {
  .l-header__inner {
    padding-inline: 1.25rem;
  }
}
@media screen and (max-width: 767.9px) {
  .l-header__inner {
    gap: 0.25rem;
  }
}

.l-header__logo {
  margin-inline: auto;
  -webkit-transition: opacity 0.3s var(--ease-out-quint);
  transition: opacity 0.3s var(--ease-out-quint);
}
@media (any-hover: hover) {
  .l-header__logo:hover {
    opacity: 0.5;
  }
}

.l-header__logo-img {
  width: max(25rem, 320px);
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .l-header__logo-img {
    width: 15rem;
  }
}

.l-inner {
  position: relative;
  width: 100%;
  height: inherit;
  max-width: 1240px;
  margin-inline: auto;
  padding: 0 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .l-inner {
    width: 100%;
    max-width: 640px;
    padding: 0 1.25rem;
  }
}

.l-inner__narrow {
  max-width: 50rem;
}
@media screen and (max-width: 767.9px) {
  .l-inner__narrow {
    max-width: 600px;
    padding: 0 1.25rem;
  }
}

.l-footer {
  width: 100%;
  height: 100%;
  padding-block: 3.4375rem;
}
@media screen and (max-width: 767.9px) {
  .l-footer {
    padding-block: 2.75rem;
  }
}

.l-footer__logo {
  width: 18.75rem;
  height: auto;
  margin-inline: auto;
  -webkit-transition: opacity 0.3s var(--ease-out-quint);
  transition: opacity 0.3s var(--ease-out-quint);
}
@media (any-hover: hover) {
  .l-footer__logo:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767.9px) {
  .l-footer__logo {
    width: 10rem;
  }
}

.l-main {
  z-index: 2;
  position: relative;
}

.l-scroll-mouse-hover {
  position: relative;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.l-scroll-mouse-hover__img {
  position: fixed;
  inset: 0;
  z-index: -1;
  inline-size: 100lvi;
  block-size: 100lvb;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-fv {
  position: relative;
  overflow: hidden;
  padding-top: 19.75rem;
  padding-bottom: 5.375rem;
  color: var(--color-white);
}
@media screen and (max-width: 767.9px) {
  .p-fv {
    padding-top: 13.5625rem;
    padding-bottom: 7.625rem;
  }
}

.p-fv__content {
  width: 100%;
  max-width: max(50rem, 640px);
  margin-inline: auto;
}

.p-fv__logo-wrap {
  width: 100%;
  max-width: 550px;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .p-fv__logo-wrap {
    max-width: 18.75rem;
  }
}

.p-fv__logo {
  width: 100%;
  height: auto;
}

.p-fv__catchcopy-wrap {
  position: relative;
  z-index: 1;
  margin-top: 8.375rem;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .p-fv__catchcopy-wrap {
    margin-top: 5.875rem;
  }
}

.p-fv__catchcopy-text {
  font-size: max(2.5rem, 32px);
}
@media screen and (max-width: 767.9px) {
  .p-fv__catchcopy-text {
    font-size: 2.5rem;
  }
}
.p-fv__catchcopy-text {
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.05em;
}
.p-fv__catchcopy-text .--big {
  font-size: max(4rem, 51.2px);
}
@media screen and (max-width: 767.9px) {
  .p-fv__catchcopy-text .--big {
    font-size: 4rem;
  }
}
.p-fv__catchcopy-text .--big {
  font-weight: 700;
  line-height: 1.171875;
  letter-spacing: 0.05em;
}

.p-fv__catchcopy-img {
  width: 16.1875rem;
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .p-fv__catchcopy-img {
    width: 11.25rem;
  }
}

.p-fv__sentence-wrap {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767.9px) {
  .p-fv__sentence-wrap {
    margin-top: 3rem;
  }
}

.p-fv__sentence {
  font-size: max(1.25rem, 16px);
}
@media screen and (max-width: 767.9px) {
  .p-fv__sentence {
    font-size: 1.25rem;
  }
}
.p-fv__sentence {
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 1lh;
  text-align: center;
}
.p-fv__sentence:first-of-type {
  margin-top: 0;
}
@media screen and (max-width: 767.9px) {
  .p-fv__sentence {
    font-size: max(1rem, 12.8px);
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767.9px) and (max-width: 767.9px) {
  .p-fv__sentence {
    font-size: 1rem;
  }
}

.p-fv__btn-wrap {
  --card-items: 2;
  --card-gap: 40;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(var(--card-gap) / 16 * 1rem);
  margin-top: 2.6875rem;
}
@media screen and (max-width: 767.9px) {
  .p-fv__btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 2.5rem;
    --card-gap: 20;
  }
}

.p-fv__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: calc((100% - var(--card-gap) / 16 * 1rem * (var(--card-items) - 1)) / var(--card-items));
      flex-basis: calc((100% - var(--card-gap) / 16 * 1rem * (var(--card-items) - 1)) / var(--card-items));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: max(5rem, 64px);
  border: 4px solid transparent;
  border-radius: calc(infinity * 1px);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)), -webkit-gradient(linear, left top, right top, from(#8fc41e), color-stop(20%, #ffe455), to(#e7382b));
  background-image: linear-gradient(#fff, #fff), linear-gradient(to right, #8fc41e 0%, #ffe455 20%, #e7382b 100%);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  background-color: var(--color-white);
  color: var(--color-blue);
  -webkit-transition: opacity 0.3s var(--ease-out-quint);
  transition: opacity 0.3s var(--ease-out-quint);
}
@media (any-hover: hover) {
  .p-fv__btn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767.9px) {
  .p-fv__btn {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    width: 100%;
    min-height: 3.75rem;
    max-width: 18.75rem;
    margin-inline: auto;
  }
}

.p-fv__btn-text {
  font-size: max(1.25rem, 16px);
}
@media screen and (max-width: 767.9px) {
  .p-fv__btn-text {
    font-size: 1.25rem;
  }
}
.p-fv__btn-text {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media screen and (max-width: 767.9px) {
  .p-fv__btn-text {
    text-align: center;
    font-size: max(1rem, 12.8px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767.9px) and (max-width: 767.9px) {
  .p-fv__btn-text {
    font-size: 1rem;
  }
}

.p-scout {
  overflow-x: clip;
  padding-top: 35px;
}
@media screen and (max-width: 767.9px) {
  .p-scout {
    padding-top: 0;
  }
}

.p-scout__title {
  font-size: max(2rem, 25.6px);
}
@media screen and (max-width: 767.9px) {
  .p-scout__title {
    font-size: 2rem;
  }
}
.p-scout__title {
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
  color: var(--color-white);
  text-align: center;
}
.p-scout__title .--big {
  font-size: max(2.5rem, 32px);
}
@media screen and (max-width: 767.9px) {
  .p-scout__title .--big {
    font-size: 2.5rem;
  }
}
.p-scout__title .--big {
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.9px) {
  .p-scout__title {
    translate: 0 -20px;
  }
}

.p-scout__title-img {
  width: 31.25rem;
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .p-scout__title-img {
    width: 20rem;
  }
}

.p-scout__articles-container {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767.9px) {
  .p-scout__articles-container {
    margin-top: 1.125rem;
  }
}

.p-scout__articles-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(22.5rem, 100%), 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .p-scout__articles-list {
    grid-template-columns: repeat(auto-fill, minmax(min(15.625rem, 100%), 1fr));
    gap: 0.625rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0;
    padding-inline: 0.5rem;
  }
}

@media screen and (max-width: 767.9px) {
  .p-scout__articles-list-item {
    max-width: 20rem;
    margin-inline: auto;
  }
}

.p-article-card {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
}

.p-article-card__top-wrap {
  position: relative;
  height: 11.75rem;
}
@media screen and (max-width: 767.9px) {
  .p-article-card__top-wrap {
    height: 7.5rem;
  }
}

.p-article-card__thumnail-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-article-card__logo-img-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 9.375rem;
  height: 2.6875rem;
  background-color: #fff;
}
@media screen and (max-width: 767.9px) {
  .p-article-card__logo-img-wrap {
    width: 8.33125rem;
    height: 2.44375rem;
  }
}

.p-article-card__logo-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-article-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-block: 1rem 1.1875rem;
  padding-inline: 2rem;
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 767.9px) {
  .p-article-card__body {
    padding-block: 1.0625rem 1rem;
    padding-inline: 1.75rem;
  }
}

.p-article-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-article-card__company {
  font-size: max(0.75rem, 9.6px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.9px) {
  .p-article-card__company {
    font-size: 0.75rem;
  }
}

.p-article-card__job {
  font-size: max(0.75rem, 9.6px);
}
@media screen and (max-width: 767.9px) {
  .p-article-card__job {
    font-size: 0.75rem;
  }
}
.p-article-card__job {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.9px) {
  .p-article-card__job {
    font-size: max(0.75rem, 9.6px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767.9px) and (max-width: 767.9px) {
  .p-article-card__job {
    font-size: 0.75rem;
  }
}

.p-article-card__name {
  font-size: max(0.9375rem, 12px);
}
@media screen and (max-width: 767.9px) {
  .p-article-card__name {
    font-size: 0.9375rem;
  }
}
.p-article-card__name {
  font-weight: 700;
  line-height: 1.7333333333;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.9px) {
  .p-article-card__name {
    margin-top: 0.25rem;
  }
}

.p-article-card__message-wrap {
  margin-top: 0.625rem;
  margin-bottom: 1.5625rem;
}
@media screen and (max-width: 767.9px) {
  .p-article-card__message-wrap {
    margin-top: 0.375rem;
    margin-bottom: 0.625rem;
  }
}

.p-article-card__message {
  font-size: max(0.75rem, 9.6px);
}
@media screen and (max-width: 767.9px) {
  .p-article-card__message {
    font-size: 0.75rem;
  }
}
.p-article-card__message {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 767.9px) {
  .p-article-card__message {
    font-size: max(0.75rem, 9.6px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.0916666667em;
  }
}
@media screen and (max-width: 767.9px) and (max-width: 767.9px) {
  .p-article-card__message {
    font-size: 0.75rem;
  }
}

.p-article-card__btn-wrap {
  margin-top: auto;
}

.p-article-card__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.1875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 12.8125rem;
  min-height: 2.375rem;
  padding: 0.625rem 1.25rem 0.625rem 1.5rem;
  border: 1px solid #0d7dc0;
  border-radius: 0.5rem;
  background-color: var(--color-white);
  color: #0d7dc0;
  -webkit-transition: opacity 0.3s var(--ease-out-quint);
  transition: opacity 0.3s var(--ease-out-quint);
}
@media (any-hover: hover) {
  .p-article-card__btn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767.9px) {
  .p-article-card__btn {
    min-width: 11.5rem;
    min-height: 2.1316875rem;
  }
}

.p-article-pickup-card__btn {
  min-width: 12.8125rem;
  min-height: 2.375rem;
  padding: 0.625rem 1.25rem 0.625rem 1.5rem;
}
@media screen and (max-width: 767.9px) {
  .p-article-pickup-card__btn {
    min-width: 11.5rem;
    min-height: 2.1316875rem;
  }
}

.p-article-card__btn-icon {
  width: 0.8125rem;
  aspect-ratio: 13/15;
}
@media screen and (max-width: 767.9px) {
  .p-article-card__btn-icon {
    width: 0.6875rem;
  }
}

.p-article-card__btn-text {
  font-size: max(0.75rem, 9.6px);
}
@media screen and (max-width: 767.9px) {
  .p-article-card__btn-text {
    font-size: 0.75rem;
  }
}
.p-article-card__btn-text {
  font-weight: 700;
  line-height: 1.1666666667;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.9px) {
  .p-article-card__btn-text {
    font-size: max(0.6875rem, 8.8px);
    font-weight: 700;
    line-height: 1.0909090909;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.9px) and (max-width: 767.9px) {
  .p-article-card__btn-text {
    font-size: 0.6875rem;
  }
}

.p-step {
  overflow: hidden;
  padding-top: 7.5rem;
  padding-bottom: 4.0625rem;
  color: var(--color-white);
}
@media screen and (max-width: 767.9px) {
  .p-step {
    padding-top: 6.1875rem;
    padding-bottom: 0.875rem;
  }
}

.p-step__header {
  margin-top: 7.75rem;
}
@media screen and (max-width: 767.9px) {
  .p-step__header {
    margin-top: 3.125rem;
  }
}

.p-step__header-title {
  font-size: max(2.5rem, 32px);
}
@media screen and (max-width: 767.9px) {
  .p-step__header-title {
    font-size: 2.5rem;
  }
}
.p-step__header-title {
  font-weight: 700;
  line-height: 1.475;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .p-step__header-title {
    font-size: max(1.5rem, 19.2px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767.9px) and (max-width: 767.9px) {
  .p-step__header-title {
    font-size: 1.5rem;
  }
}

.p-step__content {
  width: 100%;
  max-width: max(50rem, 640px);
  margin-inline: auto;
}
.p-step__dl {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767.9px) {
  .p-step__dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    margin-inline: auto;
    padding-inline: 0.5rem;
  }
}

.p-step__dl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  margin-top: 1lh;
}
.p-step__dl-item:first-of-type {
  margin-top: 0;
}
@media screen and (max-width: 767.9px) {
  .p-step__dl-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
    margin-top: 0;
  }
}

.p-step__dl-ttl {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-step__dl-ttl-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(1.25rem, 16px);
}
@media screen and (max-width: 767.9px) {
  .p-step__dl-ttl-text {
    font-size: 1.25rem;
  }
}
.p-step__dl-ttl-text {
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.9px) {
  .p-step__dl-ttl-text {
    font-size: max(1rem, 12.8px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767.9px) and (max-width: 767.9px) {
  .p-step__dl-ttl-text {
    font-size: 1rem;
  }
}

.p-step__dl-content:has(br) {
  margin-top: 6px;
}
@media screen and (max-width: 767.9px) {
  .p-step__dl-content:has(br) {
    margin-top: 0;
  }
}
.p-step__dl-content:not(:has(br)) {
  -ms-flex-item-align: center;
      align-self: center;
}
@media screen and (max-width: 767.9px) {
  .p-step__dl-content:not(:has(br)) {
    -ms-flex-item-align: start;
        align-self: start;
  }
}

.p-step__dl-content-text {
  font-size: max(1.25rem, 16px);
}
@media screen and (max-width: 767.9px) {
  .p-step__dl-content-text {
    font-size: 1.25rem;
  }
}
.p-step__dl-content-text {
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.9px) {
  .p-step__dl-content-text {
    font-size: max(1rem, 12.8px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767.9px) and (max-width: 767.9px) {
  .p-step__dl-content-text {
    font-size: 1rem;
  }
}
.p-step__dl-content-text a {
  display: inline;
  color: var(--color-white);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

.p-step__period {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.1875rem;
}
@media screen and (max-width: 767.9px) {
  .p-step__period {
    margin-top: 1.25rem;
    padding-inline: 0.5rem;
  }
}

.p-step__period-text {
  font-size: max(1.25rem, 16px);
}
@media screen and (max-width: 767.9px) {
  .p-step__period-text {
    font-size: 1.25rem;
  }
}
.p-step__period-text {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.9px) {
  .p-step__period-text {
    font-size: max(1rem, 12.8px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767.9px) and (max-width: 767.9px) {
  .p-step__period-text {
    font-size: 1rem;
  }
}

.p-step__attention {
  margin-top: 2.8125rem;
  font-size: max(0.875rem, 11.2px);
}
@media screen and (max-width: 767.9px) {
  .p-step__attention {
    font-size: 0.875rem;
  }
}
.p-step__attention {
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.9px) {
  .p-step__attention {
    font-size: max(0.6875rem, 8.8px);
    font-weight: 700;
    line-height: 1.2727272727;
    letter-spacing: 0.05em;
    margin-top: 1.25rem;
    padding-inline: 0.5rem;
  }
}
@media screen and (max-width: 767.9px) and (max-width: 767.9px) {
  .p-step__attention {
    font-size: 0.6875rem;
  }
}

.p-step__attention-top a {
  display: inline;
  text-decoration: underline;
}

.p-step__attention-lists {
  margin-top: 1.1lh;
}
@media screen and (max-width: 767.9px) {
  .p-step__attention-lists {
    margin-top: 1.25rem;
  }
}

.p-step__attention-lists-item {
  margin-top: 24px;
}
.p-step__attention-lists-item:first-of-type {
  margin-top: 0;
}
.p-step__attention-lists-item.--big {
  font-size: max(1.25rem, 16px);
}
@media screen and (max-width: 767.9px) {
  .p-step__attention-lists-item.--big {
    font-size: 1.25rem;
  }
}
.p-step__attention-lists-item.--big {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.9px) {
  .p-step__attention-lists-item.--big {
    font-size: max(1rem, 12.8px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767.9px) and (max-width: 767.9px) {
  .p-step__attention-lists-item.--big {
    font-size: 1rem;
  }
}
.p-step__attention-lists-item.--big {
  margin-top: 5rem;
}
.p-step__attention-lists-item.--big .p-step__attention-list {
  margin-top: 1.25rem;
  line-height: 1.5;
}
@media screen and (max-width: 767.9px) {
  .p-step__attention-lists-item {
    font-size: max(0.6875rem, 8.8px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.05em;
    margin-top: 1.0625rem;
  }
}
@media screen and (max-width: 767.9px) and (max-width: 767.9px) {
  .p-step__attention-lists-item {
    font-size: 0.6875rem;
  }
}

.p-step__attention-list-ttl:not(:is(.--big .p-step__attention-list-ttl)) {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.p-step__attention-list-ttl--small {
  font-size: max(0.875rem, 11.2px);
}
@media screen and (max-width: 767.9px) {
  .p-step__attention-list-ttl--small {
    font-size: 0.875rem;
  }
}
.p-step__attention-list-ttl--small {
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.p-step__attention-list {
  margin-top: 1.1lh;
}
.p-step__attention-list:first-of-type {
  margin-top: 0;
}

.p-step__attention-list-item {
  margin-top: 2px;
  padding-left: 2px;
  padding-left: 15px;
  text-indent: -15px;
}
.p-step__attention-list-item::before {
  content: "・";
}
@media screen and (max-width: 767.9px) {
  .p-step__attention-list-item {
    padding-left: 12px;
    text-indent: -12px;
  }
}
.p-step__attention-list-item:first-of-type {
  margin-top: 0;
}
.p-step__attention-list-item a {
  text-decoration: underline;
  display: inline;
}

.p-step__steps-item {
  margin-top: 5rem;
}
.p-step__steps-item:first-of-type {
  margin-top: 0;
}
@media screen and (max-width: 767.9px) {
  .p-step__steps-item:first-of-type .p-step__steps-item-img {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
@media screen and (max-width: 767.9px) {
  .p-step__steps-item {
    margin-top: 3.4375rem;
    padding-inline: 0.5rem;
  }
}

.p-step__steps-item-no {
  font-family: "Readex Pro", sans-serif;
  text-align: center;
  font-size: max(3rem, 38.4px);
}
@media screen and (max-width: 767.9px) {
  .p-step__steps-item-no {
    font-size: 3rem;
  }
}
.p-step__steps-item-no {
  font-weight: 700;
  line-height: 1.2291666667;
  letter-spacing: 0.0416666667em;
}

.p-step__steps-item-no-img {
  width: 17.5rem;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .p-step__steps-item-no-img {
    width: 10rem;
  }
}

.p-step__steps-item-img-wrap {
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .p-step__steps-item-img-wrap {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
    position: relative;
  }
}

.p-step__steps-item-img-video {
  position: absolute;
  top: 4.25rem;
  top: 51.4%;
  left: 13.8%;
  width: 73%;
  translate: 0 -50%;
}
@media screen and (max-width: 767.9px) {
  .p-step__steps-item-img-video {
    width: 86%;
    border-radius: 1.25rem;
    left: 7%;
    translate: 0 0%;
    top: 8%;
  }
}

.p-step__steps-item-img {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .p-step__steps-item-img {
    margin-top: 1.25rem;
    position: relative;
    z-index: 4;
  }
}

.p-step__steps-item-sub-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 31.25rem;
  height: auto;
  margin-top: 3.375rem;
  margin-inline: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 767.9px) {
  .p-step__steps-item-sub-img {
    width: 15rem;
    margin-top: 1.6875rem;
  }
}

.p-step__carousel {
  margin-top: 4.125rem;
  -webkit-transform: scale(1.25);
          transform: scale(1.25);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}
@media screen and (max-width: 767.9px) {
  .p-step__carousel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transform: none;
            transform: none;
    gap: 1rem;
    margin-top: 2rem;
  }
}

.p-step__carousel-arrow {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
}
.p-step__carousel-arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767.9px) {
  .p-step__carousel-arrow {
    display: block;
    width: 1.625rem;
    height: 1.625rem;
  }
}

@media screen and (max-width: 767.9px) {
  .p-step__carousel-track-wrap {
    overflow: hidden;
    width: 100%;
  }
}

.p-step__steps-item-sub-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767.9px) {
  .p-step__steps-item-sub-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}
@media screen and (max-width: 767.9px) {
  .p-step__steps-item-sub-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    min-width: 0;
  }
}
.p-step__steps-item-sub-item img {
  width: 100%;
  height: auto;
  display: block;
}

.p-step__steps-item-ttl {
  margin-top: 2.5rem;
  text-align: center;
  font-size: max(1.5rem, 19.2px);
}
@media screen and (max-width: 767.9px) {
  .p-step__steps-item-ttl {
    font-size: 1.5rem;
  }
}
.p-step__steps-item-ttl {
  font-weight: 700;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.9px) {
  .p-step__steps-item-ttl {
    font-size: max(1.25rem, 16px);
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.05em;
    margin-top: 0.6875rem;
  }
}
@media screen and (max-width: 767.9px) and (max-width: 767.9px) {
  .p-step__steps-item-ttl {
    font-size: 1.25rem;
  }
}

.p-step__steps-item-sentence {
  font-size: max(1.25rem, 16px);
}
@media screen and (max-width: 767.9px) {
  .p-step__steps-item-sentence {
    font-size: 1.25rem;
  }
}
.p-step__steps-item-sentence {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: 2.5rem;
  text-align: center;
}
.p-step__steps-item-sentence a {
  text-decoration: underline;
}
@media screen and (max-width: 767.9px) {
  .p-step__steps-item-sentence {
    font-size: max(0.9375rem, 12px);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.0533333333em;
    margin-top: 1.25rem;
  }
}
@media screen and (max-width: 767.9px) and (max-width: 767.9px) {
  .p-step__steps-item-sentence {
    font-size: 0.9375rem;
  }
}

.p-step__btn-wrap {
  margin-top: 2.5rem;
}

.p-step__btn-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767.9px) {
  .p-step__btn-row {
    display: contents;
  }
}
@media screen and (max-width: 767.9px) {
  .p-step__btn-wrap {
    margin-top: 1.25rem;
  }
}

.p-step__btn {
  display: grid;
  place-content: center;
  width: max(25rem, 320px);
  min-height: 6.25rem;
  margin-inline: auto;
  border: 4px solid transparent;
  border-radius: calc(infinity * 1px);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)), -webkit-gradient(linear, left top, right top, from(#8fc41e), color-stop(20%, #ffe455), to(#e7382b));
  background-image: linear-gradient(#fff, #fff), linear-gradient(to right, #8fc41e 0%, #ffe455 20%, #e7382b 100%);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  background-color: var(--color-white);
  -webkit-transition: opacity 0.3s var(--ease-out-quint);
  transition: opacity 0.3s var(--ease-out-quint);
}
@media (any-hover: hover) {
  .p-step__btn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767.9px) {
  .p-step__btn.mt {
    margin-top: 0.9375rem;
  }
}
@media screen and (max-width: 767.9px) {
  .p-step__btn {
    width: 18.75rem;
    min-height: 3.75rem;
  }
}

.p-step__btn-text {
  display: block;
  padding: 1rem 0;
  color: var(--color-blue);
  text-align: center;
  font-size: max(1.5rem, 19.2px);
}
@media screen and (max-width: 767.9px) {
  .p-step__btn-text {
    font-size: 1.5rem;
  }
}
.p-step__btn-text {
  font-weight: 700;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.9px) {
  .p-step__btn-text {
    font-size: max(1rem, 12.8px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767.9px) and (max-width: 767.9px) {
  .p-step__btn-text {
    font-size: 1rem;
  }
}

.p-step__btn-note {
  margin-top: 1.25rem;
  text-align: center;
  font-size: max(0.875rem, 11.2px);
}
@media screen and (max-width: 767.9px) {
  .p-step__btn-note {
    font-size: 0.875rem;
  }
}
.p-step__btn-note {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.0642857143em;
}
@media screen and (max-width: 767.9px) {
  .p-step__btn-note {
    font-size: max(0.6875rem, 8.8px);
    font-weight: 700;
    line-height: 1.4545454545;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767.9px) and (max-width: 767.9px) {
  .p-step__btn-note {
    font-size: 0.6875rem;
  }
}
.p-step__btn-note a {
  text-decoration: underline;
}

.p-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.p-bg canvas,
.p-bg .p-fv__bg-video {
  position: absolute;
  top: 0;
  height: 100vh;
  left: 0;
  width: 100%;
}
.p-bg canvas {
  z-index: 1;
}
.p-bg .p-fv__bg-video {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  z-index: 2;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-bg.active .p-fv__bg-video {
  opacity: 0;
}

.p-fv__bg-video img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 60% 50%;
     object-position: 60% 50%;
}

@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767.9px) {
  .u-pc {
    display: none !important;
  }
}
@media screen and (max-width: 1199.9px) {
  .u-header-pc {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .u-header-sp {
    display: none !important;
  }
}
.u-animated__fadeIn {
  opacity: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  translate: 0 10px;
  will-change: opacity, translate;
  -webkit-transition: opacity 0.6s var(--ease-out-quint, cubic-bezier(0.22, 1, 0.36, 1)), translate 1.2s var(--ease-out-quint, cubic-bezier(0.22, 1, 0.36, 1)), -webkit-filter 0.3s var(--ease-out-quint, cubic-bezier(0.22, 1, 0.36, 1));
  transition: opacity 0.6s var(--ease-out-quint, cubic-bezier(0.22, 1, 0.36, 1)), translate 1.2s var(--ease-out-quint, cubic-bezier(0.22, 1, 0.36, 1)), -webkit-filter 0.3s var(--ease-out-quint, cubic-bezier(0.22, 1, 0.36, 1));
  transition: opacity 0.6s var(--ease-out-quint, cubic-bezier(0.22, 1, 0.36, 1)), filter 0.3s var(--ease-out-quint, cubic-bezier(0.22, 1, 0.36, 1)), translate 1.2s var(--ease-out-quint, cubic-bezier(0.22, 1, 0.36, 1));
  transition: opacity 0.6s var(--ease-out-quint, cubic-bezier(0.22, 1, 0.36, 1)), filter 0.3s var(--ease-out-quint, cubic-bezier(0.22, 1, 0.36, 1)), translate 1.2s var(--ease-out-quint, cubic-bezier(0.22, 1, 0.36, 1)), -webkit-filter 0.3s var(--ease-out-quint, cubic-bezier(0.22, 1, 0.36, 1));
  -webkit-transition-delay: var(--delay, 0s);
          transition-delay: var(--delay, 0s);
}
@media screen and (max-width: 767.9px) {
  .u-animated__fadeIn {
    -webkit-transition-delay: var(--delay-sp, 0s);
            transition-delay: var(--delay-sp, 0s);
  }
}
.u-animated__fadeIn.is-to-bottom {
  translate: 0 -20px;
}
.u-animated__fadeIn.is-to-left {
  translate: 20px 0;
}
.u-animated__fadeIn.is-to-right {
  translate: -20px 0;
}
.u-animated__fadeIn.is-to-bottom-left {
  translate: 20px -20px;
}
.u-animated__fadeIn.is-to-bottom-right {
  translate: -20px -20px;
}
.u-animated__fadeIn.is-to-top-left {
  translate: 20px 20px;
}
.u-animated__fadeIn.is-to-top-right {
  translate: -20px 20px;
}
.u-animated__fadeIn.is-active {
  opacity: 1;
  translate: 0;
  will-change: auto;
}

.u-animated__clipReveal {
  clip-path: inset(0 100% 0 0);
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: clip-path;
  -webkit-transition: clip-path 0.8s var(--ease-out-quint, cubic-bezier(0.22, 1, 0.36, 1));
  transition: clip-path 0.8s var(--ease-out-quint, cubic-bezier(0.22, 1, 0.36, 1));
  -webkit-transition-delay: var(--delay, 0s);
          transition-delay: var(--delay, 0s);
}
@media screen and (max-width: 767.9px) {
  .u-animated__clipReveal {
    -webkit-transition-delay: var(--delay-sp, 0s);
            transition-delay: var(--delay-sp, 0s);
  }
}
.u-animated__clipReveal.is-left-to-right {
  clip-path: inset(0 100% 0 0);
}
.u-animated__clipReveal.is-right-to-left {
  clip-path: inset(0 0 0 100%);
}
.u-animated__clipReveal.is-top-to-bottom {
  clip-path: inset(0 0 100% 0);
}
.u-animated__clipReveal.is-bottom-to-top {
  clip-path: inset(100% 0 0 0);
}
.u-animated__clipReveal.is-center-horizontal {
  clip-path: inset(0 50% 0 50%);
}
.u-animated__clipReveal.is-center-vertical {
  clip-path: inset(50% 0 50% 0);
}
.u-animated__clipReveal.is-center-expand {
  clip-path: inset(50% 50% 50% 50%);
}
.u-animated__clipReveal.is-active {
  clip-path: inset(0 0 0 0);
  will-change: auto;
}

.u-animated__clipCircle {
  clip-path: circle(0% at 50% 50%);
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: clip-path;
  -webkit-transition: clip-path 1s var(--ease-out-quint, cubic-bezier(0.22, 1, 0.36, 1));
  transition: clip-path 1s var(--ease-out-quint, cubic-bezier(0.22, 1, 0.36, 1));
  -webkit-transition-delay: var(--delay, 0s);
          transition-delay: var(--delay, 0s);
}
@media screen and (max-width: 767.9px) {
  .u-animated__clipCircle {
    -webkit-transition-delay: var(--delay-sp, 0s);
            transition-delay: var(--delay-sp, 0s);
  }
}
.u-animated__clipCircle.is-from-center {
  clip-path: circle(0% at 50% 50%);
}
.u-animated__clipCircle.is-from-top-left {
  clip-path: circle(0% at 0% 0%);
}
.u-animated__clipCircle.is-from-top-right {
  clip-path: circle(0% at 100% 0%);
}
.u-animated__clipCircle.is-from-bottom-left {
  clip-path: circle(0% at 0% 100%);
}
.u-animated__clipCircle.is-from-bottom-right {
  clip-path: circle(0% at 100% 100%);
}
.u-animated__clipCircle.is-active {
  clip-path: circle(150% at 50% 50%);
  will-change: auto;
}
.u-animated__clipCircle.is-active.is-from-top-left {
  clip-path: circle(150% at 0% 0%);
}
.u-animated__clipCircle.is-active.is-from-top-right {
  clip-path: circle(150% at 100% 0%);
}
.u-animated__clipCircle.is-active.is-from-bottom-left {
  clip-path: circle(150% at 0% 100%);
}
.u-animated__clipCircle.is-active.is-from-bottom-right {
  clip-path: circle(150% at 100% 100%);
}