@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --zIndex: 100;
  --zIndex-cover: calc(var(--zIndex) * 4);
  --zIndex-fixedCta: calc(var(--zIndex) * 5);
  --zIndex-menu: calc(var(--zIndex) * 6);
  --zIndex-logo: calc(var(--zIndex) * 7);
  --zIndex-menuBtn: calc(var(--zIndex) * 8);
  --zIndex-overlay: calc(var(--zIndex) * 10);
  --zIndex-header: calc(var(--zIndex) * 11);
  --color-main: #005FB7;
  --color-accent: #FFCC00;
  --color-white: #fff;
  --color-black: #000;
  --color-text: #4A4A4A;
  --background-base-rgb: 5, 6, 6;
  --background-base: rgb(var(--background-base-rgb));
  --fontFamily-base: "Noto Sans JP", sans-serif;
  --lineHeight-base: 1.5;
  --lineHeight-tight: 1.2;
  --lineHeight-loose: 2;
  --fontSize-base: 1.8rem;
  --fontSize-base-sp: 1.4rem;
  --fontWeight-base: 400;
  --fontWeight-regular: 400;
  --fontWeight-medium: 500;
  --fontWeight-semiBold: 600;
  --fontWeight-bold: 700;
  --fontWeight-black: 900;
  --fontColor-base: #4A4A4A;
}

/* base */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}
@media screen and (max-width: 374px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-family: var(--fontFamily-base);
  font-size: var(--fontSize-base);
  font-weight: var(--fontWeight-base);
  line-height: var(--lineHeight-base);
  color: var(--fontColor-base);
}
@media screen and (max-width: 768px) {
  body {
    font-size: var(--fontSize-base-sp);
  }
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* l-body */
.l-body.noScroll {
  overflow: hidden;
}

/* l-header */
.l-header {
  height: 6rem;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: var(--zIndex-header);
  background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .l-header {
    height: 6rem;
  }
}
.l-header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--zIndex-header);
}
.l-header__inner {
  height: 100%;
  padding: 0 3.2rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    padding: 0 1.2rem;
  }
}
.l-header__logo {
  width: 18.2rem;
  position: relative;
  z-index: var(--zIndex-logo);
}
.l-header__logo img {
  width: 100%;
}
.l-header__gnav {
  width: 55rem;
  height: 100%;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: -120%;
  background-color: #D0EFFF;
  z-index: var(--zIndex-menu);
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  padding-top: 11.6rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .l-header__gnav {
    width: 100%;
    padding-top: 10rem;
  }
}
.l-header__gnav.menu_isOpen {
  right: 0;
}
.l-header__gnavInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.6rem;
}
@media screen and (max-width: 768px) {
  .l-header__gnavInner {
    gap: 4rem;
  }
}
.l-header__gnavBody {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 39rem;
  max-width: calc(100% - 4rem);
  margin: 0 auto;
}
.l-header__contactNav {
  margin-top: 5.6rem;
}
@media screen and (max-width: 768px) {
  .l-header__contactNav {
    margin-top: 4.6rem;
  }
}
.l-header__ctaNav {
  width: 39rem;
  max-width: calc(100% - 4rem);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-header__ctaNav {
    padding: 0 1.8rem;
  }
}
.l-header__btn {
  position: absolute;
  top: 0.7rem;
  right: 1.2rem;
  z-index: var(--zIndex-menuBtn);
}
@media screen and (max-width: 768px) {
  .l-header__btn {
    top: 0.8rem;
    right: 1.2rem;
  }
}

/* l-footer */
.l-footer {
  padding: 4rem 0;
  background-color: #D0EFFF;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 2.4rem 0.8rem 8.4rem;
  }
}
.l-footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .l-footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-footer__header {
  width: 34.5rem;
  max-width: 34.7782258065%;
}
@media screen and (max-width: 768px) {
  .l-footer__header {
    width: 100%;
    max-width: 100%;
  }
}
.l-footer__mymelody {
  width: 14.2rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-footer__mymelody {
    width: 13.1rem;
  }
}
.l-footer__mymelody img {
  width: 100%;
}
.l-footer__mymelodyTxt {
  font-size: 1.2rem;
  text-align: center;
  margin-top: 1.6rem;
}
.l-footer__company {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.l-footer__companyTtl {
  font-size: 2.2rem;
  font-weight: var(--fontWeight-bold);
}
@media screen and (max-width: 768px) {
  .l-footer__companyTtl {
    font-size: 1.8rem;
  }
}
.l-footer__companyTxt {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-top: 1.6rem;
}

/* l-inner */
.l-inner {
  width: 102.4rem;
  max-width: 100%;
  padding: 0 1.6rem;
  margin: auto;
}

/* c-site */
.c-site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}
.c-site__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.c-overlay {
  display: none;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--zIndex-cover);
}
.c-overlay.isOpen {
  display: block;
}

/* c-gnav*/
.c-gnav__list {
  border-top: 1px dashed #77777B;
}
.c-gnav__item {
  position: relative;
  border-bottom: 1px dashed #77777B;
}
.c-gnav__link {
  display: block;
  font-family: var(--fontFamily-accent);
  font-size: 1.8rem;
  font-weight: var(--fontWeight-bold);
  color: var(--color-black);
  padding: 1.8rem 0 1.2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-gnav__link {
    font-size: 1.6rem;
    padding: 1.6rem 0 1.2rem;
  }
}
.c-gnav__link::after {
  content: "";
  display: block;
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../../assets/images/i_arrow_menu.svg) center/contain no-repeat;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.c-gnav__link.active::after {
  -webkit-transform: translate(0, -100%) rotate(-90deg);
          transform: translate(0, -100%) rotate(-90deg);
}
.c-gnav__en {
  display: block;
  font-size: 1.2rem;
  font-weight: var(--fontWeight-semibold);
  color: var(--color-main);
  margin-bottom: 0.6rem;
}
@media screen and (max-width: 768px) {
  .c-gnav__en {
    font-size: 1rem;
  }
}
.c-gnav__subnav {
  padding-left: 6rem;
  padding-bottom: 1.6rem;
  display: none;
}
.c-gnav__subnav.open {
  display: block;
}
.c-gnav__subnavLink {
  display: block;
  font-size: 2.8rem;
  font-weight: var(--fontWeight-medium);
  color: var(--color-main);
  padding: 1.2rem 0;
}

/* c-btnMenu*/
.c-btnMenu {
  width: 4.6rem;
  height: 4.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  background: var(--color-main);
  border-radius: 4px;
  border-color: transparent;
}
.c-btnMenu span {
  display: inline-block;
  width: 58.6956521739%;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  position: relative;
}
.c-btnMenu span::before, .c-btnMenu span::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.c-btnMenu span::before {
  top: 0.8rem;
}
.c-btnMenu span::after {
  top: -0.8rem;
}

/* btnMenu_isOnがついた時のスタイル */
.c-btnMenu.btnMenu_isOn span {
  background-color: transparent;
}
.c-btnMenu.btnMenu_isOn span::before, .c-btnMenu.btnMenu_isOn span::after {
  top: 0;
}
.c-btnMenu.btnMenu_isOn span::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-btnMenu.btnMenu_isOn span::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* c-ttl*/
.c-ttl {
  font-size: 4rem;
  text-align: center;
  padding-bottom: 1.6rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-ttl {
    font-size: 2.6rem;
  }
}
.c-ttl::before {
  content: "";
  display: block;
  width: 8rem;
  height: 6px;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#005FB7), to(#00A2E3));
  background: linear-gradient(90deg, #005FB7 0%, #00A2E3 100%);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .c-ttl--step {
    font-size: 2.4rem;
  }
}
.c-ttl__num {
  display: inline-block;
  font-size: 6.4rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-ttl__num {
    font-size: 4.4rem;
  }
}

/* c-btn */
.c-btn {
  display: block;
  width: 100%;
  color: #0E2B4B;
  font-size: 1.8rem;
  font-weight: var(--fontWeight-bold);
  text-align: center;
  padding: 1.7rem;
  background-color: #FFBB00;
  border-radius: 20px;
  -webkit-box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .c-btn {
    padding: 1.2rem;
    border-radius: 10px;
  }
}
.c-btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  border-radius: 20px;
  background: #FFCC00;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-btn:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}
.c-btn--mv, .c-btn--cta {
  padding: 1.3194444444vw;
}
@media screen and (max-width: 768px) {
  .c-btn--mv, .c-btn--cta {
    padding: 3.2vw;
  }
}
.c-btn--mv .c-btn__txt, .c-btn--cta .c-btn__txt {
  font-size: 1.9444444444vw;
}
@media screen and (max-width: 768px) {
  .c-btn--mv .c-btn__txt, .c-btn--cta .c-btn__txt {
    font-size: 4.2666666667vw;
  }
}
.c-btn--step {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .c-btn--step {
    font-size: 1.3rem;
  }
}
.c-btn--large {
  padding: 1.9rem;
}
@media screen and (max-width: 768px) {
  .c-btn--large {
    padding: 1.2rem;
  }
}
.c-btn--large .c-btn__txt {
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  .c-btn--large .c-btn__txt {
    font-size: 1.6rem;
  }
}
.c-btn--large .c-btn__icon {
  right: 3.2rem;
}
.c-btn--small {
  font-size: 1.6rem;
}
.c-btn--fixedCta {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .c-btn--fixedCta {
    font-size: 1.1rem;
    padding-left: 1.7rem;
    padding-right: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .c-btn--fixedCta .c-btn__icon {
    width: 0.4rem;
    height: 0.8rem;
    right: 1.4rem;
  }
}
.c-btn__txt {
  position: relative;
  z-index: 2;
}
.c-btn__icon {
  position: absolute;
  right: 2.2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .c-btn__icon {
    right: 2rem;
  }
}

/* c-cardReason*/
.c-cardReason {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.2rem;
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 4rem 6.1403508772%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-cardReason {
    padding: 3.2rem 5.3333333333%;
    gap: 1.6rem;
  }
}
.c-cardReason--reverse .c-cardReason__body {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .c-cardReason--reverse .c-cardReason__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-cardReason__num {
  width: 11rem;
  height: 11rem;
  position: absolute;
  top: -2rem;
  left: -2rem;
  z-index: 1;
}
@media screen and (max-width: 1100px) {
  .c-cardReason__num {
    width: 8rem;
    height: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .c-cardReason__num {
    width: 6.4rem;
    height: 6.4rem;
    top: -1rem;
    left: -1rem;
  }
}
.c-cardReason__num img {
  width: 100%;
}
.c-cardReason__ttl {
  font-size: clamp(2.6rem, 2.7777777778vw, 4rem);
  font-weight: var(--fontWeight-bold);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-cardReason__ttl {
    font-size: 2.6rem;
    line-height: 1.4;
  }
}
.c-cardReason__ttl--num {
  font-size: 6rem;
}
@media screen and (max-width: 768px) {
  .c-cardReason__ttl--num {
    font-size: 3.8rem;
  }
}
.c-cardReason__ttl--large {
  font-size: 4.8rem;
}
@media screen and (max-width: 768px) {
  .c-cardReason__ttl--large {
    font-size: 2.8rem;
  }
}
.c-cardReason__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5.6rem;
}
@media screen and (max-width: 768px) {
  .c-cardReason__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem;
  }
}
.c-cardReason__img {
  width: 20rem;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .c-cardReason__img {
    width: 15rem;
    margin: 0 auto;
  }
}
.c-cardReason__img img {
  width: 100%;
}
.c-cardReason__txtArea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-cardReason__txt {
  line-height: 1.7;
}

/* c-cta */
.c-cta {
  color: var(--color-white);
  padding: 2.2rem 0 3.6rem;
  background: -webkit-gradient(linear, left bottom, left top, from(#005FB7), to(#00A2E3));
  background: linear-gradient(0deg, #005FB7 0%, #00A2E3 100%);
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-cta {
    padding: 3.2vw 0 6.4vw;
  }
}
.c-cta__deco {
  max-width: 8.5rem;
  width: 8.5vw;
  position: absolute;
  top: -3.9rem;
  left: calc(50% - 49rem);
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .c-cta__deco {
    top: -3.9vw;
    left: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .c-cta__deco {
    width: 13.0666666667vw;
    max-width: 100%;
    top: auto;
    bottom: 1.8666666667vw;
    left: 3.4666666667vw;
    z-index: 1;
  }
}
.c-cta__deco img {
  width: 100%;
}
.c-cta__ttl {
  width: 89.8rem;
  max-width: 87.8vw;
  padding: 0 1rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-cta__ttl {
    max-width: 100%;
    padding: 0;
    z-index: 2;
  }
}
.c-cta__btnArea {
  max-width: 64rem;
  margin: 1.2rem auto 0;
}
@media screen and (max-width: 768px) {
  .c-cta__btnArea {
    max-width: 76vw;
    margin: 1.6vw 0 0 auto;
  }
}

/* c-cardGroup*/
.c-cardGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-cardGroup__img {
  aspect-ratio: 220/147;
}
.c-cardGroup__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-cardGroup__logo {
  aspect-ratio: 220/133;
  background-color: var(--color-white);
}
.c-cardGroup__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* c-cardVoice*/
.c-cardVoice {
  height: 100%;
  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.6rem;
  padding: 4rem 7.5%;
  background-color: var(--color-white);
  border-radius: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-cardVoice {
    gap: 1.2rem;
    padding: 2rem 5.3333333333%;
  }
}
.c-cardVoice__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
.c-cardVoice__icon {
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background-color: #F5F5F5;
}
@media screen and (max-width: 768px) {
  .c-cardVoice__icon {
    width: 8.8rem;
    height: 8.8rem;
  }
}
.c-cardVoice__ttlArea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4rem;
}
.c-cardVoice__ttl {
  color: var(--color-main);
  font-size: 2.4rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .c-cardVoice__ttl {
    font-size: 1.8rem;
  }
}
.c-cardVoice__subTtl {
  font-weight: var(--fontWeight-bold);
}
@media screen and (max-width: 768px) {
  .c-cardVoice__subTtl {
    font-size: 1.6rem;
  }
}
.c-cardVoice__txtArea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-cardVoice__txtArea p {
  font-size: 1.6rem;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .c-cardVoice__txtArea p {
    font-size: 1.4rem;
  }
}

/* c-cardStep*/
.c-cardStep {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .c-cardStep {
    gap: 1.6rem;
  }
}
.c-cardStep__num {
  text-align: center;
}
.c-cardStep__num img {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-cardStep__num img {
    max-width: 7.1rem;
  }
}
.c-cardStep__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .c-cardStep__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
}
.c-cardStep__img {
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-cardStep__img {
    max-width: 10rem;
  }
}
.c-cardStep__img img {
  width: 100%;
}
.c-cardStep__content {
  display: contents;
}
@media screen and (max-width: 768px) {
  .c-cardStep__content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.c-cardStep__txtArea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.c-cardStep__ttl {
  font-size: 2.4rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-cardStep__ttl {
    font-size: 2rem;
    text-align: left;
  }
}
.c-cardStep__txt {
  line-height: 1.7;
}
.c-cardStep__note {
  font-size: 1.4rem;
  line-height: 1.7;
}

/* c-cardProject*/
.c-cardProject {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.c-cardProject__status {
  position: absolute;
  top: 1.4rem;
  left: -1rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-cardProject__status {
    left: -1rem;
  }
}
.c-cardProject__statusItem {
  display: inline-block;
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: var(--fontWeight-bold);
  padding: 0.2rem 1.6rem;
  border-radius: 0 4px 4px 0;
  position: relative;
}
.c-cardProject__statusItem::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 0.5rem solid black;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  bottom: -0.9rem;
  left: 0.1rem;
}
.c-cardProject__statusItem--active {
  background: -webkit-gradient(linear, left top, right top, from(#E94B2E), to(#FF8A3D));
  background: linear-gradient(90deg, #E94B2E 0%, #FF8A3D 100%);
}
.c-cardProject__statusItem--active:before {
  border-top-color: #991900;
  border-right-color: #991900;
}
.c-cardProject__statusItem--inactive {
  background-color: #4A4A4A;
}
.c-cardProject__statusItem--inactive:before {
  border-top-color: #000;
  border-right-color: #000;
}
.c-cardProject__statusItem--running {
  background: -webkit-gradient(linear, left top, right top, from(#005FB7), to(#00A2E3));
  background: linear-gradient(90deg, #005FB7 0%, #00A2E3 100%);
}
.c-cardProject__statusItem--running:before {
  border-top-color: #004380;
  border-right-color: #004380;
}
.c-cardProject__statusItem--finished, .c-cardProject__statusItem--before {
  background-color: #4A4A4A;
}
.c-cardProject__statusItem--finished:before, .c-cardProject__statusItem--before:before {
  border-top-color: #000;
  border-right-color: #000;
}
.c-cardProject__img {
  aspect-ratio: 310/175;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.c-cardProject__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-cardProject__txtArea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
  padding: 1.6rem 2.4rem;
  background-color: var(--color-white);
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}
.c-cardProject__ttl {
  font-size: 2rem;
  font-weight: var(--fontWeight-bold);
}
.c-cardProject__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
}
.c-cardProject__table tbody .large {
  font-size: 2rem;
  font-weight: var(--fontWeight-black);
}
.c-cardProject__table tbody tr th {
  text-align: left;
  font-weight: var(--fontWeight-regular);
  padding: 0.4rem 0;
}
.c-cardProject__table tbody tr td {
  text-align: right;
}
.c-cardProject__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8rem 1rem;
  margin-top: 1.6rem;
}
.c-cardProject__listItem:nth-child(1), .c-cardProject__listItem:nth-child(2) {
  width: calc(50% - 0.5rem);
}
.c-cardProject__listItem:nth-child(3) {
  width: 100%;
}
.c-cardProject__listItemTtl {
  font-size: 1.4rem;
  font-weight: var(--fontWeight-bold);
  text-align: center;
  background-color: #D0EFFF;
  padding: 0.2rem;
}
.c-cardProject__listItemTxt {
  font-weight: var(--fontWeight-black);
  text-align: center;
}

/* c-fixedCta */
.c-fixedCta {
  width: 40rem;
  max-width: 100%;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: var(--zIndex-fixedCta);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.25s ease, visibility 0s linear 0.25s;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}
@media screen and (max-width: 768px) {
  .c-fixedCta {
    width: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(#005FB7), to(#00A2E3));
    background: linear-gradient(0deg, #005FB7 0%, #00A2E3 100%);
    bottom: 0;
    right: 0;
    padding: 1rem 0.4rem;
  }
}
.c-fixedCta.isOn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transition: opacity 0.25s ease, visibility 0s linear 0s;
  transition: opacity 0.25s ease, visibility 0s linear 0s;
}
.c-fixedCta__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
}
@media screen and (max-width: 768px) {
  .c-fixedCta__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.6rem;
  }
}
@media screen and (max-width: 768px) {
  .c-fixedCta__txt {
    width: 19.9rem;
  }
}
.c-fixedCta__txt img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-fixedCta__btnArea {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

/* p-mv */
.p-mv {
  position: relative;
}
.p-mv__btnArea {
  width: calc(100% - 8rem);
  max-width: 44.4444444444vw;
  position: absolute;
  bottom: 2.3611111111vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-mv__btnArea {
    max-width: 78.6666666667vw;
    bottom: 4.2666666667vw;
  }
}

/* p-lead */
.p-lead {
  padding: 8rem 0;
  background-color: #F5F5F5;
}
@media screen and (max-width: 768px) {
  .p-lead {
    padding: 4rem 0;
  }
}
.p-lead__ttl {
  font-size: 3.4rem;
  font-weight: var(--fontWeight-bold);
  text-align: center;
  padding-bottom: 2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-lead__ttl {
    font-size: 1.8rem;
  }
}
.p-lead__ttl::before {
  content: "";
  display: block;
  width: 8rem;
  height: 6px;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#005FB7), to(#00A2E3));
  background: linear-gradient(90deg, #005FB7 0%, #00A2E3 100%);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
.p-lead__ttl--accent {
  display: inline-block;
  font-size: 3.8rem;
  padding: 0 1rem 0.2rem;
  border-radius: 4px;
  color: var(--color-white);
  background-color: var(--color-main);
  margin-right: 0.4rem;
  margin-top: 0.2rem;
}
@media screen and (max-width: 768px) {
  .p-lead__ttl--accent {
    font-size: 2rem;
  }
}
.p-lead__nayami {
  padding: 2.4rem 4rem 2.4rem 37.6rem;
  background-color: var(--color-white);
  border-radius: 25px;
  margin-top: 5.6rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-lead__nayami {
    max-width: 40rem;
    margin: 5rem auto 0;
    padding: 10rem 2rem 1.6rem;
  }
}
.p-lead__nayamiImg {
  width: 28.3rem;
  max-width: 100%;
  position: absolute;
  left: 4rem;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-lead__nayamiImg {
    width: 19rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: -3.2rem;
  }
}
.p-lead__nayamiTxt {
  font-size: 1.8rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .p-lead__nayamiTxt {
    font-size: 1.4rem;
  }
}
.p-lead__nayamiTxt span {
  display: inline;
  line-height: 1.3;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, rgba(98, 158, 214, 0.3)));
  background: linear-gradient(transparent 70%, rgba(98, 158, 214, 0.3) 70%);
}
.p-lead__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.2rem;
  margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-lead__body {
    max-width: 40rem;
    margin: 4rem auto 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 2.6rem;
    position: relative;
  }
}
.p-lead__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-lead__point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
  position: relative;
}
@media screen and (max-width: 1040px) {
  .p-lead__point {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .p-lead__point {
    display: block;
  }
}
.p-lead__pointImg {
  display: inline-block;
  width: 12.3rem;
}
@media screen and (max-width: 768px) {
  .p-lead__pointImg {
    width: 9rem;
    position: absolute;
    bottom: 3rem;
    left: 0.5rem;
  }
}
.p-lead__pointTxt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 2.2rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-lead__pointTxt {
    font-size: 1.6rem;
  }
}
.p-lead__pointTxt--space {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-lead__pointTxt--space {
    display: inline-block;
    width: 10rem;
  }
}
.p-lead__pointTxt--accent {
  display: inline;
  color: var(--color-main);
  font-size: 2.8rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #D0EFFF));
  background: linear-gradient(transparent 70%, #D0EFFF 70%);
}
@media screen and (max-width: 768px) {
  .p-lead__pointTxt--accent {
    font-size: 2rem;
  }
}
.p-lead__imgArea {
  width: 35.2rem;
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .p-lead__imgArea {
    width: 17.7rem;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
.p-lead__txtArea {
  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.7rem;
  margin-top: 1.7rem;
}
.p-lead__txtArea p {
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .p-lead__txt--spWidth {
    width: calc(100% - 17.7rem - 1.6rem);
  }
}

/* p-reason */
.p-reason {
  padding: 4.8rem 0 10rem;
  background-color: #D0EFFF;
}
@media screen and (max-width: 768px) {
  .p-reason {
    padding: 3.2rem 0 4rem;
  }
}
.p-reason__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3rem;
}
.p-reason__ttlTxt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .p-reason__ttlTxt {
    font-size: 2rem;
  }
}
.p-reason__ttlTxt .color {
  font-size: 4.8rem;
  line-height: 1;
  position: relative;
  top: -0.6rem;
}
@media screen and (max-width: 768px) {
  .p-reason__ttlTxt .color {
    font-size: 3.4rem;
  }
}
.p-reason__ttlTxt .large {
  font-size: 6.4rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-reason__ttlTxt .large {
    font-size: 4.8rem;
  }
}
.p-reason__ttlTxt .medium {
  font-size: 4.4rem;
  line-height: 1;
  position: relative;
  top: -0.6rem;
}
@media screen and (max-width: 768px) {
  .p-reason__ttlTxt .medium {
    font-size: 3rem;
  }
}
.p-reason__ttlTxt--second {
  margin-top: 2rem;
}
.p-reason__ttlImg {
  display: inline-block;
  width: 23.6rem;
  max-width: 100%;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  .p-reason__ttlImg {
    width: 15.7rem;
  }
}
.p-reason__list {
  max-width: 95.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.8rem;
  margin: 5.6rem auto 0;
  padding: 0 2rem;
}
@media screen and (max-width: 768px) {
  .p-reason__list {
    gap: 2rem;
    padding: 0;
    margin-top: 2.6rem;
  }
}

/* p-solution */
.p-solution {
  padding: 10rem 0;
  background-color: #EFF7FB;
}
@media screen and (max-width: 768px) {
  .p-solution {
    padding: 4rem 0;
  }
}
.p-solution__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4.8rem;
}
@media screen and (max-width: 1000px) {
  .p-solution__content {
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-solution__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.4rem;
  }
}
.p-solution__img {
  width: 54.4rem;
  max-width: 54.8387096774%;
}
@media screen and (max-width: 1000px) {
  .p-solution__img {
    max-width: calc(100% - 34rem);
  }
}
@media screen and (max-width: 768px) {
  .p-solution__img {
    max-width: 100%;
  }
}
.p-solution__img img {
  width: 100%;
}
.p-solution__txtArea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .p-solution__txtArea {
    max-width: 54.4rem;
    margin: 0 auto;
  }
}
.p-solution__ttl {
  font-size: 3.2rem;
  font-weight: var(--fontWeight-bold);
  padding-bottom: 1.6rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-solution__ttl {
    font-size: 2.2rem;
  }
}
.p-solution__ttl::before {
  content: "";
  display: block;
  width: 8rem;
  height: 6px;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#005FB7), to(#00A2E3));
  background: linear-gradient(90deg, #005FB7 0%, #00A2E3 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.p-solution__txt {
  margin-top: 3.2rem;
  line-height: 1.7;
}
.p-solution__swiper {
  margin-top: 12rem;
}
@media screen and (max-width: 768px) {
  .p-solution__swiper {
    margin-top: 4rem;
  }
}
.p-solution__swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.p-voice {
  padding: 8rem 0;
  background-color: #DFEEF8;
}
@media screen and (max-width: 768px) {
  .p-voice {
    padding: 4rem 0;
  }
}
.p-voice__body {
  margin-top: 4.8rem;
}
@media screen and (max-width: 768px) {
  .p-voice__body {
    margin-top: 3.2rem;
  }
}
.p-voice__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .p-voice__list {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}

/* p-step */
.p-step {
  padding: 10rem 0 14rem;
  background-color: #EFF7FB;
}
@media screen and (max-width: 768px) {
  .p-step {
    padding: 4rem 0;
  }
}
.p-step__subTtl {
  font-size: 2.4rem;
  font-weight: var(--fontWeight-bold);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-step__subTtl {
    font-size: 1.8rem;
  }
}
.p-step__prep {
  max-width: 91.2rem;
  margin: 4.8rem auto 0;
  border-radius: 20px;
  position: relative;
}
.p-step__deco {
  width: 11.4rem;
  position: absolute;
  top: -8.4rem;
  right: 4.1rem;
}
@media screen and (max-width: 768px) {
  .p-step__deco {
    width: 7rem;
    top: -4.5rem;
    right: 2rem;
  }
}
.p-step__prepTtl {
  color: var(--color-white);
  font-size: 2.4rem;
  font-weight: var(--fontWeight-bold);
  border-radius: 20px 20px 0 0;
  padding: 1.6rem 4rem;
  background: -webkit-gradient(linear, left top, right top, from(#005FB7), to(#00A2E3));
  background: linear-gradient(90deg, #005FB7 0%, #00A2E3 100%);
}
@media screen and (max-width: 768px) {
  .p-step__prepTtl {
    font-size: 1.6rem;
    padding: 1.2rem 2rem;
  }
}
.p-step__preplist {
  border-radius: 0 0 20px 20px;
  border-right: 2px solid var(--gradation_blue, #005FB7);
  border-bottom: 2px solid var(--gradation_blue, #005FB7);
  border-left: 2px solid var(--gradation_blue, #005FB7);
  background: var(--white, #FFF);
  padding: 2.4rem 7.0175438596%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7.8947368421%;
}
@media screen and (max-width: 768px) {
  .p-step__preplist {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.6rem;
    padding: 1.6rem 5.9701492537%;
  }
}
.p-step__preplistItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-step__preplistItem {
    gap: 1.2rem;
  }
}
.p-step__preplistItemImg--id {
  width: 8.9rem;
}
@media screen and (max-width: 768px) {
  .p-step__preplistItemImg--id {
    width: 4.7rem;
  }
}
.p-step__preplistItemImg--bank {
  width: 9.7rem;
}
@media screen and (max-width: 768px) {
  .p-step__preplistItemImg--bank {
    width: 5.2rem;
  }
}
.p-step__preplistTxt p {
  font-size: 2.2rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .p-step__preplistTxt p {
    font-size: 1.8rem;
  }
}
.p-step__preplistTxt p span {
  display: block;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-step__preplistTxt p span {
    font-size: 1.2rem;
  }
}
.p-step__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8.2rem;
  margin-top: 6.4rem;
}
@media screen and (max-width: 768px) {
  .p-step__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 5.4rem;
    margin-top: 3.2rem;
    padding: 0 0.4rem;
  }
}
.p-step__item {
  position: relative;
}
.p-step__item:not(:first-child)::before {
  content: "";
  display: block;
  width: 1.8rem;
  height: 3.2rem;
  background: url(../../assets/images/i_arrow_step.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -5rem;
}
@media screen and (max-width: 768px) {
  .p-step__item:not(:first-child)::before {
    width: 1.3rem;
    height: 2.4rem;
    top: -2em;
    left: 50%;
    -webkit-transform: rotate(90deg) translateX(-50%);
            transform: rotate(90deg) translateX(-50%);
  }
}

/* p-project */
.p-project {
  padding: 8rem 0;
  background-color: #DFEEF8;
}
@media screen and (max-width: 768px) {
  .p-project {
    padding: 4rem 0;
  }
}
.p-project__lead {
  text-align: center;
  margin-top: 4.8rem;
}
@media screen and (max-width: 768px) {
  .p-project__lead {
    margin-top: 3.2rem;
  }
}
.p-project__inner {
  max-width: 100.6rem;
  margin: 0 auto;
  padding: 0 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-project__inner {
    padding: 0;
  }
}
.p-project__swiper {
  margin-top: 4.8rem;
}
@media screen and (max-width: 768px) {
  .p-project__swiper {
    margin-top: 3.2rem;
  }
}
.p-project__swiper .swiper {
  padding-left: 1.4rem;
  padding-bottom: 4.8rem;
}
@media screen and (max-width: 768px) {
  .p-project__swiper .swiper {
    padding-left: 0;
  }
}
.p-project__swiper .swiper .swiper-slide {
  height: auto;
}
.p-project__swiperPagination {
  top: auto;
  bottom: 0 !important;
}
.p-project__swiperPagination .swiper-pagination-bullet {
  width: 1.4rem;
  height: 1.4rem;
  margin: 0 0.8rem !important;
  background-color: var(--color-white);
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .p-project__swiperPagination .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
  }
}
.p-project__swiperPagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #4087C9;
}

/* p-note */
.p-note {
  padding: 2.8rem 0 6rem;
  background-color: #F5F5F5;
}
@media screen and (max-width: 768px) {
  .p-note {
    padding: 4rem 0;
  }
}
.p-note__ttl {
  font-weight: var(--fontWeight-bold);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  border-bottom: 1px dashed var(--fontColor-base);
  margin: 3.2rem 0 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-note__ttl {
    font-size: 1.6rem;
  }
}
.p-note__ttl::before {
  content: "";
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  background: url("../../assets/images/i_note.svg") no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .p-note__ttl::before {
    width: 4rem;
    height: 4rem;
  }
}
.p-note__list {
  font-size: 1.4rem;
}
.p-note__list li {
  padding-left: 1.4rem;
  position: relative;
}
.p-note__list li::before {
  content: "・";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}
.p-note__list li a {
  color: var(--color-main);
  text-decoration: underline;
}
.p-note__list--risk li {
  padding-left: 0;
}
.p-note__list--risk li::before {
  content: "※";
  position: relative;
}

/* u-align */
.u-align--center {
  text-align: center !important;
}
.u-align--right {
  text-align: right !important;
}

/* u-txt */
.u-txt--mainColor {
  color: var(--color-main);
}
.u-txt--gradiation {
  background: var(--gradation_blue, linear-gradient(90deg, #005FB7 0%, #00A2E3 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.u-txt--underlineYellow {
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(80%, #FFE990));
  background: linear-gradient(transparent 80%, #FFE990 80%);
  line-height: 1.4;
}
.u-txt--bold {
  font-weight: var(--fontWeight-bold);
}

/* u-display */
.u-display--pcNone {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u-display--pcNone {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .u-display--spNone {
    display: none !important;
  }
}
.u-display--inlineBlock {
  display: inline-block;
}