*,
*::before,
*::after {
  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,
strong {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

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

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

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

[type=text],
[type=email],
[type=tel] {
  margin: 0;
  padding: 0;
  background: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  box-shadow: none;
}

button,
[type=submit],
input[type=button i] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}

[type=radio],
[type=checkbox],
input[type=file] {
  display: none;
}

select,
[type=date] {
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  padding: 0;
  border: 0;
  background-color: inherit;
  color: inherit;
}

html {
  font-size: calc(1000 / 1920 * 1vw);
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(1000 / 375 * 1vw);
  }
}

body {
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  background: #ffffff;
}
body.no-scroll {
  overflow: hidden;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.l-header {
  padding-inline: 2rem;
  width: 100%;
  height: 8.1rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  z-index: 2;
}
@media screen and (max-width: 1440px) {
  .l-header {
    height: 81px;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 4.4rem;
  }
}
.l-header.fixed {
  transition: transform 0.3s ease-in-out;
  transform: translate(-50%, -101%);
  position: fixed;
}

.l-header__wrap {
  width: 100%;
  height: inherit;
  position: relative;
}

.l-main__bg {
  margin-top: -17.3rem;
  padding: 29.8rem 6rem 6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-main__bg {
    margin-top: -3.2rem;
    padding: 19.3rem 2rem 2rem;
  }
}
.l-main__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0D2D41 0%, #1837A0 100%);
  z-index: -1;
}

.l-main__container {
  background-color: #fff;
  border-radius: 2rem;
  padding-block: 15rem 9.6rem;
}
@media screen and (max-width: 767px) {
  .l-main__container {
    padding-block: 4rem;
  }
}

.l-inner {
  position: relative;
  width: 100%;
  max-width: 132rem;
  height: inherit;
  padding: 0 2rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    max-width: 100%;
    padding: 0 2rem;
  }
}

.l-footer {
  margin-top: -15rem;
  background: linear-gradient(180deg, #3499FF 0%, #3A3985 100%);
  padding-block: 18.4rem 1.9rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    margin-top: -3.3rem;
    padding-block: 8.05rem 2rem;
  }
}

.c-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 40.7rem;
  height: 14.4rem;
  border-radius: 2rem;
  box-shadow: 1rem 1rem 0 #000;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .c-btn {
    flex-direction: row;
    justify-content: center;
    width: 32rem;
    height: 6rem;
    box-shadow: none;
  }
}
.c-btn .text {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-btn .text {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2.2142857143;
    letter-spacing: 0.05em;
  }
}
.c-btn .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-btn.dowload {
  background: linear-gradient(135deg, #FED524 0%, #F95A57 100%);
  gap: 1.6rem;
  padding-top: 2.6rem;
}
@media screen and (max-width: 767px) {
  .c-btn.dowload {
    gap: 0.7rem;
    padding-top: 0;
  }
}
.c-btn.dowload .icon {
  width: 4.7rem;
  height: 4.1rem;
}
@media screen and (max-width: 767px) {
  .c-btn.dowload .icon {
    width: 2.6rem;
    height: 2.3rem;
  }
}
.c-btn.contact {
  background: linear-gradient(135deg, #3499FF 0%, #3A3985 100%);
  gap: 2rem;
  padding-top: 3rem;
}
@media screen and (max-width: 767px) {
  .c-btn.contact {
    gap: 0.7rem;
    padding-top: 0;
  }
}
.c-btn.contact .icon {
  width: 4rem;
  height: 3.1rem;
}
@media screen and (max-width: 767px) {
  .c-btn.contact .icon {
    width: 2.3rem;
    height: 1.7rem;
  }
}
@media (hover: hover) {
  .c-btn:hover {
    transform: translate(1rem, 1rem);
    box-shadow: none;
  }
}
@media screen and (hover: hover) and (max-width: 767px) {
  .c-btn:hover {
    transform: none;
  }
}

.c-bar__wrap {
  padding-block: 14.9rem;
}
@media screen and (max-width: 767px) {
  .c-bar__wrap {
    padding-block: 2.8rem 3.6rem;
  }
}

.c-bar {
  margin-block: 0;
  border-width: 0.2rem;
  border-color: rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .c-bar {
    border-width: 0.1rem;
  }
}

.c-section__title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-section__title {
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}
.c-section__title .accent {
  font-size: 7rem;
  color: #0DB2E7;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-section__title .accent {
    font-size: 2.5rem;
  }
}

.c-section__title--simple {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.46;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-section__title--simple {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}

.c-section__title--plan {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.5909090909;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-section__title--plan {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.625;
    letter-spacing: 0.05em;
    text-align: center;
    width: calc(100% + 1rem);
    margin-left: 0.8rem;
  }
}

.p-header__list {
  display: flex;
  justify-content: flex-end;
  gap: 2.1rem;
  position: absolute;
  top: -3.2rem;
  right: 0;
  height: 10.8rem;
}
@media screen and (max-width: 1440px) {
  .p-header__list {
    top: -24px;
    height: 76px;
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .p-header__list {
    top: -2.3rem;
    gap: 0.5rem;
    height: 6.5rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

.p-header__item {
  height: 100%;
  width: 30rem;
}
@media screen and (max-width: 1440px) {
  .p-header__item {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .p-header__item {
    width: 16.5rem;
  }
}

.p-header__link {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 0 0 2rem 2rem;
  box-shadow: 0.5rem 0.5rem 0 #000;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 1440px) {
  .p-header__link {
    border-radius: 0 0 20px 20px;
    box-shadow: 5px 5px 0 #000;
  }
}
@media screen and (max-width: 767px) {
  .p-header__link {
    box-shadow: none;
  }
}
.p-header__link .text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #fff;
  position: relative;
  margin-top: 3.2rem;
}
@media screen and (max-width: 1440px) {
  .p-header__link .text {
    margin-top: 24px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .p-header__link .text {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.5555555556;
    letter-spacing: 0.05em;
    margin-top: 2rem;
  }
}
.p-header__link .text::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.p-header__link.download {
  background: linear-gradient(135deg, #FED524 0%, #F95A57 100%);
}
.p-header__link.download .text {
  padding-left: 7.1rem;
}
@media screen and (max-width: 1440px) {
  .p-header__link.download .text {
    padding-left: 38px;
  }
}
@media screen and (max-width: 767px) {
  .p-header__link.download .text {
    padding-left: 2.7rem;
  }
}
.p-header__link.download .text::before {
  width: 4.6rem;
  height: 4rem;
  background: url("../img/icon_download.svg") no-repeat center/contain;
}
@media screen and (max-width: 1440px) {
  .p-header__link.download .text::before {
    width: 25px;
    height: 21px;
  }
}
@media screen and (max-width: 767px) {
  .p-header__link.download .text::before {
    width: 2.2rem;
    height: 1.9rem;
  }
}
.p-header__link.contact {
  background: linear-gradient(135deg, #3499FF 0%, #3A3985 100%);
}
.p-header__link.contact .text {
  padding-left: 6.2rem;
}
@media screen and (max-width: 1440px) {
  .p-header__link.contact .text {
    padding-left: 33px;
  }
}
@media screen and (max-width: 767px) {
  .p-header__link.contact .text {
    padding-left: 2.6rem;
  }
}
.p-header__link.contact .text::before {
  width: 3.9rem;
  height: 2.9rem;
  background: url("../img/icon_mail.svg") no-repeat center/contain;
}
@media screen and (max-width: 1440px) {
  .p-header__link.contact .text::before {
    width: 21px;
    height: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-header__link.contact .text::before {
    width: 1.9rem;
    height: 1.4rem;
  }
}
@media (hover: hover) {
  .p-header__link:hover {
    box-shadow: none;
    transform: translate(0.5rem, 0.5rem);
  }
}
@media screen and (hover: hover) and (max-width: 1440px) {
  .p-header__link:hover {
    transform: translate(5px, 5px);
  }
}

.p-fv {
  position: relative;
  z-index: 1;
}

.p-fv__bg {
  width: 100%;
  height: auto;
  aspect-ratio: 1920/910;
}
@media screen and (max-width: 767px) {
  .p-fv__bg {
    aspect-ratio: 375/556;
  }
}
.p-fv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-fv__textWrap {
  position: absolute;
  top: 12.6rem;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-fv__textWrap {
    top: 6.2rem;
  }
}
.p-fv__textWrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: -5.8rem;
  background: url("../img/logo_bg.svg") no-repeat center/cover;
  width: 113.7rem;
  height: 59.8rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-fv__textWrap::before {
    width: 38rem;
    height: 16.7rem;
    left: -2.3rem;
    background: url("../img/logo_bg_sp.svg") no-repeat center/cover;
  }
}

.p-fv__title {
  /*
  width: rm(632);
  height: auto;
  aspect-ratio: 632 / 279;
  margin-left: rm(131);
  margin-top: rm(64);
  */
  width: 76.2rem;
  height: auto;
  aspect-ratio: 794/322;
  margin-left: 8.1rem;
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-fv__title {
    width: 29.7rem;
    aspect-ratio: 277/36;
    margin-left: 1.3rem;
    margin-top: 2.8rem;
  }
}
.p-fv__title svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-fv__text {
  margin-top: 0rem;
  margin-left: 13.1rem;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.6944444444;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-fv__text {
    margin-top: 1.7rem;
    margin-left: 2.3rem;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}

.p-fv__btnWrap {
  position: absolute;
  bottom: -6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-fv__btnWrap {
    bottom: -8rem;
    flex-direction: column;
    gap: 1rem;
  }
}

.p-recommend__list {
  margin-top: 5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4rem;
  padding-bottom: 6.7rem;
}
@media screen and (max-width: 767px) {
  .p-recommend__list {
    margin-top: 1.8rem;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 0;
  }
}

.p-recommend__item {
  background-color: #F7F7F7;
  border-radius: 2rem;
  width: 62rem;
  height: 34rem;
  padding-top: 8.3rem;
  padding-left: 6.85rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recommend__item {
    margin-bottom: 4.3rem;
    width: 100%;
    height: 16.6rem;
    padding-top: 3rem;
    padding-left: 2rem;
  }
}
.p-recommend__item:nth-child(2) .p-recommend__img {
  right: 2.7rem;
  width: 26.2rem;
  height: 19.7rem;
}
@media screen and (max-width: 767px) {
  .p-recommend__item:nth-child(2) .p-recommend__img {
    right: 2.3rem;
    width: 14.5rem;
    height: 11rem;
  }
}

.p-recommend__lead {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #0A1888;
}
@media screen and (max-width: 767px) {
  .p-recommend__lead {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.625;
    letter-spacing: 0.05em;
  }
}

.p-recommend__img {
  position: absolute;
  bottom: -5.7rem;
  right: 3.7rem;
  width: 22.9rem;
  height: 22.7rem;
}
@media screen and (max-width: 767px) {
  .p-recommend__img {
    bottom: -4.2rem;
    right: 2.15rem;
    width: 12.7rem;
    height: 12.6rem;
  }
}
.p-recommend__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-about {
  margin-top: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-about {
    margin-top: 0;
  }
}

.p-about__figureWrap {
  margin-top: 5.4rem;
  border: 0.4rem solid #ACACAC;
  border-radius: 2rem;
  height: 58.1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about__figureWrap {
    margin-top: 1.7rem;
    border-width: 0.2rem;
    height: 39.6rem;
  }
}

.p-about__figure {
  position: absolute;
}
.p-about__figure.figure1 {
  top: 6.75rem;
  left: 15.2rem;
}
@media screen and (max-width: 767px) {
  .p-about__figure.figure1 {
    top: 3.8rem;
    left: 2.8rem;
  }
}
.p-about__figure.figure2 {
  top: 5.6rem;
  right: 17rem;
}
@media screen and (max-width: 767px) {
  .p-about__figure.figure2 {
    top: 3.2rem;
    right: 2.2rem;
    width: 11.6rem;
  }
}
.p-about__figure.figure3 {
  top: 5.6rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-about__figure.figure3 {
    top: 11.65rem;
  }
}
.p-about__figure.figure4 {
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-about__figure.figure4 {
    bottom: 2.6rem;
  }
}

.p-about__img {
  height: auto;
}
.p-about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-about__img.img1 {
  width: 28.6rem;
  aspect-ratio: 286/110;
}
@media screen and (max-width: 767px) {
  .p-about__img.img1 {
    width: 11rem;
  }
}
.p-about__img.img2 {
  width: 26.7rem;
  aspect-ratio: 267/122;
}
@media screen and (max-width: 767px) {
  .p-about__img.img2 {
    width: 10.2rem;
    margin-inline: auto;
  }
}
.p-about__img.img3 {
  width: 33.6rem;
  aspect-ratio: 336/324;
}
@media screen and (max-width: 767px) {
  .p-about__img.img3 {
    width: 15.3rem;
    aspect-ratio: 153/187;
  }
}
.p-about__img.img4 {
  width: 69.2rem;
  aspect-ratio: 692/163;
}
@media screen and (max-width: 767px) {
  .p-about__img.img4 {
    width: 25.7rem;
  }
}

.p-about__text {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5909090909;
  letter-spacing: 0.05em;
  color: #0A1888;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about__text {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}
.p-about__text.text1 {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-about__text.text1 {
    margin-top: 1.5rem;
  }
}
.p-about__text.text2 {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-about__text.text2 {
    margin-top: 1.5rem;
  }
}
.p-about__text.text4, .p-about__text.text5 {
  position: absolute;
  top: 5.9rem;
  left: 3.8rem;
}
@media screen and (max-width: 767px) {
  .p-about__text.text4, .p-about__text.text5 {
    top: 2.4rem;
    left: 0.6rem;
  }
}
.p-about__text.text5 {
  left: auto;
  right: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-about__text.text5 {
    right: 0.5rem;
  }
}

.p-about__text--accent {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.0882352941;
  letter-spacing: 0.05em;
  color: #FF7602;
  text-align: center;
  width: 40rem;
}
@media screen and (max-width: 767px) {
  .p-about__text--accent {
    font-size: 1.6rem;
    width: 20rem;
  }
}
.p-about__text--accent.text3 {
  position: absolute;
  bottom: 8.8rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-about__text--accent.text3 {
    bottom: 5.2rem;
  }
}

.p-about__lead {
  margin-top: 3.6rem;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.6363636364;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about__lead {
    margin-top: 2rem;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.8571428571;
    letter-spacing: 0.05em;
    text-align: left;
    width: calc(100% + 0.6rem);
  }
}

.p-feature {
  margin-top: 1.1rem;
}
@media screen and (max-width: 767px) {
  .p-feature {
    margin-top: -0.8rem;
  }
}

/*
.p-feature__list {
    margin-top: rm(50);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: rm(19);

    @include mq('sp') {
        margin-top: rm(32);
        grid-template-columns: 1fr;
        gap: rm(13);
    }
}
*/
.p-feature__list {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.p-feature__list > * {
  width: 32%;
  margin-bottom: 20px;
}
.p-feature__list > * + * {
  margin-left: 1.5%;
}
.p-feature__list > *:nth-child(4) {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .p-feature__list > * {
    width: 100%;
    margin-bottom: 15px;
  }
  .p-feature__list > * + * {
    margin-left: 0;
  }
}

.p-feature__item {
  background-color: #F7F7F7;
  border-radius: 2rem;
  display: grid;
  grid-template-rows: subgrid;
  gap: 0;
  grid-row: span 3;
  padding: 5.3rem 4rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-feature__item {
    padding: 3rem 1.8rem 2.6rem;
  }
}

.p-feature__title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #0A1888;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 9rem;
}
@media screen and (max-width: 767px) {
  .p-feature__title {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: 0.05em;
    min-height: inherit;
  }
}

.p-feature__img {
  margin-top: 3rem;
  width: 23rem;
  height: auto;
  aspect-ratio: 230/170;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-feature__img {
    margin-top: 1.6rem;
    width: 13rem;
    aspect-ratio: 130/114;
  }
}
.p-feature__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-feature__text {
  margin-top: 2.2rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-feature__text {
    margin-top: 0.9rem;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.8571428571;
    letter-spacing: 0.05em;
  }
}

@media screen and (max-width: 767px) {
  .p-develop {
    margin-top: -0.8rem;
  }
}

.p-develop__list {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-develop__list {
    margin-top: 3rem;
  }
}

.p-develop__item {
  background-color: #F7F7F7;
  border-radius: 2rem;
  display: flex;
  gap: 2.75rem;
  padding: 2.2rem 3rem 2.2rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-develop__item {
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 0;
  }
}
.p-develop__item:nth-child(n+2) {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-develop__item:nth-child(n+2) {
    margin-top: 1rem;
  }
}

.p-develop__textWrap {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  justify-content: center;
  width: calc(100% - 30rem - 2.75rem);
}
@media screen and (max-width: 767px) {
  .p-develop__textWrap {
    display: contents;
    width: 100%;
  }
}

.p-develop__title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #0A1888;
}
@media screen and (max-width: 767px) {
  .p-develop__title {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: 0.05em;
    order: 1;
    text-align: center;
  }
}

.p-develop__text {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-develop__text {
    margin-top: 0.4rem;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.8571428571;
    letter-spacing: 0.05em;
    order: 3;
  }
}

.p-develop__img {
  width: 30rem;
  height: auto;
  aspect-ratio: 300/266;
}
@media screen and (max-width: 767px) {
  .p-develop__img {
    margin-top: 2rem;
    width: 16.5rem;
    aspect-ratio: 1/1;
    order: 2;
    margin-inline: auto;
  }
}
.p-develop__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-plan {
  margin-top: -6rem;
}
@media screen and (max-width: 767px) {
  .p-plan {
    margin-top: -0.8rem;
  }
}

.p-plan__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-plan__wrap {
    margin-top: 3rem;
    flex-direction: column;
    gap: 1.8rem;
  }
}

.p-plan__img {
  width: 19.5rem;
  height: auto;
  aspect-ratio: 195/188;
}
@media screen and (max-width: 767px) {
  .p-plan__img {
    width: 13.4rem;
    aspect-ratio: 134/129;
  }
}
.p-plan__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-cta {
  padding-block: 10.8rem 11.8rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding-block: 6.3rem 5.3rem;
  }
}
.p-cta::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 218.2rem;
  height: 57.1rem;
  border-radius: 50%;
  background-color: #fff;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-cta::before {
    width: 42.7rem;
    height: 12.4rem;
  }
}

.p-cta__wrap {
  position: relative;
  z-index: 2;
}

.p-cta__title {
  width: 88.3rem;
  height: auto;
  aspect-ratio: 896/133;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-cta__title {
    width: 37rem;
    aspect-ratio: 300/39;
  }
}
.p-cta__title img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-cta__btnWrap {
  margin-top: 5.8rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-cta__btnWrap {
    margin-top: 4rem;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

.p-footer__wrap {
  display: flex;
  padding-inline: 2.7rem;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-footer__wrap {
    flex-direction: column;
    align-items: center;
    padding-inline: 0;
    gap: 3.8rem;
  }
}

.p-footer__nav {
  display: flex;
  gap: 9.8rem;
  align-items: flex-end;
  padding-left: 1.3rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    flex-direction: column;
    align-items: center;
    gap: 3.2rem;
    padding-left: 0;
  }
}

.p-footer__logoWrap {
  display: block;
  transition: all 0.3s ease 0s;
}
@media (hover: hover) {
  .p-footer__logoWrap:hover {
    opacity: 0.7;
  }
}

.p-footer__logo {
  width: 151px;
  height: auto;
  aspect-ratio: 151/31;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: 15.1rem;
  }
}
.p-footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__logoText {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  font-size: 12px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-footer__logoText {
    margin-top: 1.6rem;
    font-size: 1rem;
    text-align: center;
  }
}

.p-footer__copy {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  font-size: 12px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-footer__copy {
    font-size: 1rem;
    text-align: center;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block !important;
  }
}

.u-pc {
  display: none !important;
}
@media (min-width: 768px) {
  .u-pc {
    display: block !important;
  }
}

.u-sp--inline {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp--inline {
    display: inline-block !important;
  }
}/*# sourceMappingURL=style.css.map */