*,
*::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 {
  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;
}

@media screen and (max-width: 1119px) and (min-width: 768px) {
  html {
    font-size: calc(16 / 1120 * 100vw);
  }
}
@media screen and (max-width: 374px) {
  html {
    font-size: calc(16 / 375 * 100vw);
  }
}

body {
  color: #1f1f1f;
  font-family: "Noto Sans JP", sans-serif;
}

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

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

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

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

input,
textarea,
select {
  font: inherit;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.l-main {
  min-height: 100vh;
}

.l-inner {
  position: relative;
  width: 100%;
  width: min(70rem, 100%);
  height: inherit;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    max-width: 640px;
  }
}

.l-inner__narrow {
  padding-inline: 2rem;
}
@media screen and (max-width: 767px) {
  .l-inner__narrow {
    padding-inline: 1rem;
    max-width: 600px;
  }
}

.c-animated__fadeIn {
  translate: 0 20px;
  opacity: 0;
}
.c-animated__fadeIn.js-show {
  translate: 0;
  opacity: 1;
}

.c-text {
  font-size: max(1.5rem, 19.2px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-text {
    font-size: max(1.125rem, 14.4px);
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .c-text {
    font-size: 1.125rem;
  }
}

.p-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding-inline: 2.5rem;
  background: #e7f482;
}

.p-header__inner {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 9.375rem 1fr;
  padding-block: 1.0625rem;
}

.p-header__logo {
  font-size: 1.25rem;
}

.p-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-column-gap: 3.75rem;
     -moz-column-gap: 3.75rem;
          column-gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
.p-header__list li a {
  font-size: 1.25rem;
}

.p-header__btn {
  padding: 0.5rem 1.625rem;
  background: #fff;
  border: 1px solid #fff;
  color: #001A75;
  font-size: 1.25rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-drawer__icon {
  position: fixed;
  z-index: 102;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  top: 17px;
  right: 20px;
  width: 24px;
  height: 16px;
}
@media (min-width: 768px) {
  .p-drawer__icon {
    display: none;
  }
}

.p-drawer__icon--bar {
  width: 100%;
  height: 1px;
  background: #000;
}

.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 7.5px;
}
.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -7.5px;
}

.p-drawer {
  position: fixed;
  z-index: 101;
  overflow-y: scroll;
  top: 0;
  right: 0;
  width: 278px;
  height: 100vh;
  height: 100svh;
  background: #b6e7f3;
}

.p-drawer__icon--bar {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.p-drawer {
  translate: 101%;
  -webkit-transition: translate 0.5s ease;
  transition: translate 0.5s ease;
}
.p-drawer.js-show {
  translate: 0;
}

.p-drawer__body {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 88px 40px;
  padding-left: 34px;
}

.p-drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 32px;
  margin-bottom: 40px;
}
.p-drawer__list li a {
  font-size: 20px;
  font-weight: 400;
}

.p-drawer__btn {
  display: inline-block;
  padding: 6px 30px;
  background: #fff;
  font-size: 20px;
  font-weight: 400;
}

.p-fv {
  background: #def3ff;
}

.p-fv__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1120/932;
}
@media screen and (max-width: 767px) {
  .p-fv__img {
    aspect-ratio: 360/304;
  }
}
.p-fv__img img {
  width: 100%;
  height: 100%;
}

.p-fv__head {
  background: url(../img/fv-head.png) no-repeat center center/cover;
  padding-block: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-fv__head--title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 170%;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 767px) {
  .p-fv__head--title {
    font-size: 1rem;
    letter-spacing: 0.8px;
  }
}
.p-fv__head--title span {
  line-height: 170%; /* 81.6px */
  letter-spacing: 2.4px;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .p-fv__head--title span {
    font-size: 1.375rem;
    line-height: 150%; /* 81.6px */
    letter-spacing: 1.1px;
  }
}
.p-fv__head--title .p-fv__gradation {
  background: var(--gradation-100, linear-gradient(60deg, #f055a8 14.61%, #37b4ff 50.07%, #1ccf82 85.52%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-fv__head--title .p-fv__gradation {
    font-size: 1.375rem;
  }
}

.fv {
  padding-block: 100px;
}

.p-challenge {
  padding-block: 2.5rem;
  background: url(../img/challenge-bg.png) no-repeat center center/cover;
}

.p-challenge__title + .p-challenge__title {
  -webkit-margin-before: 0.5rem;
          margin-block-start: 0.5rem;
}
.p-challenge__title span {
  padding-inline: 1.5rem;
  background: #3c3c3c;
  color: #fff;
  font-size: 3.25rem;
  font-weight: 700;
  letter-spacing: 2.08px;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .p-challenge__title span {
    font-size: 1.75rem;
    letter-spacing: 1.12px;
  }
}

.p-challenge--wrap {
  display: grid;
  grid-template-columns: 1fr 28rem;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  -webkit-padding-before: 1.5rem;
          padding-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-challenge--wrap {
    grid-template-columns: 1fr;
    -webkit-padding-before: 1rem;
            padding-block-start: 1rem;
    padding-inline: 1.25rem;
    row-gap: 2rem;
  }
}

.p-challenge__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-inline: 1rem 1.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (max-width: 767px) {
  .p-challenge__texts {
    padding-inline: 0;
  }
}

.p-challenge__text {
  font-size: max(1.75rem, 22.4px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-challenge__text {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-challenge__text {
    font-size: max(1.125rem, 14.4px);
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-challenge__text {
    font-size: 1.125rem;
  }
}

.p-challenge__img {
  width: 100%;
  height: auto;
  aspect-ratio: 600/381;
}
@media screen and (max-width: 767px) {
  .p-challenge__img {
    aspect-ratio: 328/208;
  }
}
.p-challenge__img img {
  width: 100%;
  height: 100%;
}

.p-challenge__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.5rem;
}

.p-challenge__btn {
  width: min(28rem, 100%);
  height: auto;
  aspect-ratio: 448/92;
}
.p-challenge__btn img {
  width: 100%;
  height: 100%;
}

.p-voice {
  padding-block: 2.5rem;
  background: rgba(173, 214, 232, 0.3);
}
@media screen and (max-width: 767px) {
  .p-voice {
    padding-block: 0.625rem 2.5rem;
  }
}

.p-voice__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.5rem;
  padding-inline: 2rem;
}
@media screen and (max-width: 767px) {
  .p-voice__inner {
    padding-inline: 1rem;
  }
}

.p-voice__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 4px solid #fb56ae;
  -webkit-padding-after: 1rem;
          padding-block-end: 1rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-voice__head {
    -webkit-padding-after: 0.75rem;
            padding-block-end: 0.75rem;
  }
}

.p-voice__title {
  color: #005bac;
  font-size: max(3.75rem, 48px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-voice__title {
    font-size: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-voice__title {
    font-size: max(1.5rem, 19.2px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-voice__title {
    font-size: 1.5rem;
  }
}

.p-voice__number {
  width: 12.6875rem;
  height: auto;
  translate: -0.5rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-voice__number {
    width: 8.5rem;
    translate: 0 0.625rem;
  }
}
.p-voice__number img {
  width: 100%;
  height: 100%;
}

.p-voice__text {
  text-align: center;
  font-size: max(1.75rem, 22.4px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-voice__text {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-voice__text {
    font-size: max(1.125rem, 14.4px);
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
    text-align: left;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-voice__text {
    font-size: 1.125rem;
  }
}
.p-voice__text span {
  color: #fb56ae;
  display: inline;
}

.p-voice__message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-voice__message {
    -webkit-column-gap: 0.25rem;
       -moz-column-gap: 0.25rem;
            column-gap: 0.25rem;
  }
}

.p-voice__svg {
  width: 2.25rem;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 1/2;
}
@media screen and (max-width: 767px) {
  .p-voice__svg {
    width: 1.75rem;
  }
}
.p-voice__svg svg {
  width: 100%;
  height: 100%;
}

.p-voice__message--text {
  font-size: max(2.5rem, 32px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-voice__message--text {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-voice__message--text {
    font-size: max(1.5rem, 19.2px);
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-voice__message--text {
    font-size: 1.5rem;
  }
}

.p-voice__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  -webkit-margin-before: 6rem;
          margin-block-start: 6rem;
}
@media screen and (max-width: 767px) {
  .p-voice__wrap {
    grid-template-columns: 1fr;
    gap: 5rem;
    -webkit-margin-before: 3rem;
            margin-block-start: 3rem;
  }
}

.p-voice__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5rem 1rem 1.5rem 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  position: relative;
  border-radius: 1rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-voice__card {
    padding: 1.5rem 1rem;
  }
}

.p-voice__card--img {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  width: 10rem;
  height: auto;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .p-voice__card--img {
    width: 7.5rem;
    left: 1.25rem;
    translate: 0 -50%;
  }
}
.p-voice__card--img img {
  width: 100%;
  height: 100%;
}

.p-voice__card--name {
  text-align: center;
  font-size: max(1.5rem, 19.2px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-voice__card--name {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-voice__card--name {
    -webkit-margin-start: auto;
            margin-inline-start: auto;
    font-size: max(1.125rem, 14.4px);
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-voice__card--name {
    font-size: 1.125rem;
  }
}

.p-voice__card--text {
  font-size: max(1.5rem, 19.2px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-voice__card--text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-voice__card--text {
    font-size: max(1.125rem, 14.4px);
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-voice__card--text {
    font-size: 1.125rem;
  }
}

.p-voice__comment {
  font-size: max(1.5rem, 19.2px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-voice__comment {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-voice__comment {
    font-size: max(1rem, 12.8px);
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-voice__comment {
    font-size: 1rem;
  }
}

.p-skill {
  padding-block: 3.5625rem 3.5rem;
  position: relative;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-skill {
    padding-block: 2.5rem;
  }
}

.p-skill__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-skill__bg-left {
  position: absolute;
  width: 22.2222222222%;
  top: 0;
  left: 0;
  height: 101%;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-skill__bg-left {
    height: auto;
    width: 100%;
  }
}
.p-skill__bg-left img {
  width: 100%;
  height: 100%;
}

.p-skill__bg-right {
  width: 88.1944444444%;
  height: 100%;
  top: 0;
  right: 0;
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-skill__bg-right {
    width: 100%;
  }
}

.p-skill__head {
  position: relative;
  z-index: 1;
  width: min(70rem, 100%);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-skill__head {
    -webkit-padding-after: 8.125rem;
            padding-block-end: 8.125rem;
    z-index: 3;
  }
}
@media (min-width: 640px) {
  .p-skill__head {
    -webkit-padding-after: 18.75rem;
            padding-block-end: 18.75rem;
  }
}
@media (min-width: 768px) {
  .p-skill__head {
    -webkit-padding-after: 0;
            padding-block-end: 0;
  }
}

.p-skill__img {
  padding-left: 4.0625rem;
  width: min(50.1875rem, 100%);
  height: auto;
  aspect-ratio: 803/445;
}
@media screen and (max-width: 767px) {
  .p-skill__img {
    padding-left: 0;
  }
}
.p-skill__img img {
  width: 100%;
  height: 100%;
}

.p-skill__title {
  position: absolute;
  top: 7.5rem;
  right: 0;
  width: 30.625rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-skill__title {
    top: 9.5rem;
    width: 18.125rem;
  }
}

.p-skill__title--text span {
  padding-inline: 1.5rem;
  background: #3c3c3c;
  color: #fff;
  font-size: 3.25rem;
  font-weight: 700;
  letter-spacing: 2.08px;
  line-height: 160%;
  /* lightblue */
  -webkit-box-shadow: -4px 4px 0px 0px #d4f1ff;
          box-shadow: -4px 4px 0px 0px #d4f1ff;
}
@media screen and (max-width: 767px) {
  .p-skill__title--text span {
    font-size: 1.75rem;
    letter-spacing: 1.12px;
  }
}
.p-skill__title--text + .p-skill__title--text {
  -webkit-margin-before: 0.5rem;
          margin-block-start: 0.5rem;
}

.p-skill__message {
  position: absolute;
  width: min(37.5rem, 100%);
  height: auto;
  aspect-ratio: 600/140;
  bottom: 1.625rem;
  right: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-skill__message {
    right: 0.5rem;
    width: 17.4375rem;
  }
}
@media (min-width: 640px) {
  .p-skill__message {
    right: 0.5rem;
    width: 25rem;
  }
}
.p-skill__message img {
  width: 100%;
  height: 100%;
}

.p-skill__body {
  position: relative;
  z-index: 1;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-skill__body {
    -webkit-margin-before: 1rem;
            margin-block-start: 1rem;
  }
}

.p-skill__body--text {
  width: 75.8928571429%;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  padding-inline: 1.25rem;
  font-size: max(1.75rem, 22.4px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-skill__body--text {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-skill__body--text {
    font-size: max(1.125rem, 14.4px);
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
    width: 100%;
    padding-inline: 1rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-skill__body--text {
    font-size: 1.125rem;
  }
}
.p-skill__body--text span {
  display: inline;
  color: #005bac;
}
.p-skill__body--text .--pinck {
  color: #fb56ae;
}

.p-skill__body--img {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
  width: 69.4444444444%;
  height: auto;
  aspect-ratio: 960/328;
  -webkit-margin-start: 24.3055555556%;
          margin-inline-start: 24.3055555556%;
}
@media screen and (max-width: 767px) {
  .p-skill__body--img {
    -webkit-margin-before: 1rem;
            margin-block-start: 1rem;
    width: 100%;
    aspect-ratio: 395/520;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
}
.p-skill__body--img img {
  width: 100%;
  height: 100%;
}

.p-group {
  padding-block: 3.5rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-group {
    padding-block: 2.5rem 7.625rem;
  }
}

.p-group__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.p-group__bg img {
  width: 100%;
  height: 100%;
}

.p-group__img {
  width: min(50.25rem, 100%);
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}
.p-group__img img {
  width: 100%;
  height: 100%;
}

.p-group__title {
  position: absolute;
  top: 11rem;
  left: 0;
  width: auto;
  height: auto;
}

.p-group__title--text span {
  padding-inline: 1.5rem;
  background: #3c3c3c;
  color: #fff;
  font-size: 3.25rem;
  font-weight: 700;
  letter-spacing: 2.08px;
  line-height: 160%;
  /* lightblue */
  -webkit-box-shadow: -4px 4px 0px 0px #d4f1ff;
          box-shadow: -4px 4px 0px 0px #d4f1ff;
}
@media screen and (max-width: 767px) {
  .p-group__title--text span {
    font-size: 1.625rem;
    letter-spacing: 1.08px;
    padding-inline: 0.5rem;
  }
}
.p-group__title--text + .p-group__title--text {
  -webkit-margin-before: 0.5rem;
          margin-block-start: 0.5rem;
}

.p-group__message {
  position: absolute;
  top: 20.875rem;
  left: 2.5rem;
  width: min(31rem, 100%);
  height: auto;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-group__message {
    width: 17.5rem;
    top: 16.25rem;
  }
}
.p-group__message img {
  width: 100%;
  height: 100%;
}

.p-benefits {
  padding: 2rem;
  background: url(../img/benefit-bg.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-benefits {
    padding: 2rem 1rem;
  }
}

.p-benefits__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-benefits__wrap {
    row-gap: 1rem;
  }
}

.p-benefits__card {
  border-radius: 16px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-benefits__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
}
.p-benefits__card.--2 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-benefits__card.--2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.p-benefits__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-benefits__boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    justify-self: start;
    row-gap: 0.5rem;
  }
}

.p-benefits__box {
  width: 11.25rem;
  height: auto;
  aspect-ratio: 180/220;
}
@media screen and (max-width: 767px) {
  .p-benefits__box {
    width: 100%;
    aspect-ratio: 296/96;
  }
}
.p-benefits__box img {
  width: 100%;
  height: 100%;
}

.p-benefits__img {
  width: min(36.1875rem, 100%);
  height: auto;
  aspect-ratio: 579/192;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-benefits__img {
    aspect-ratio: 296/152;
  }
}
.p-benefits__img img {
  width: 100%;
  height: 100%;
}
.p-benefits__img.--3 {
  width: min(328px, 100%);
  height: auto;
  aspect-ratio: 328/240;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-benefits__img.--3 {
    aspect-ratio: 296/152;
  }
}

.p-benefits__box--text {
  font-size: max(1.75rem, 22.4px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-benefits__box--text {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-benefits__box--text {
    font-size: max(1.125rem, 14.4px);
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-benefits__box--text {
    font-size: 1.125rem;
  }
}
.p-benefits__box--text span {
  display: inline;
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #f8abd4;
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.p-office {
  padding-block: 2rem 3.5rem;
  background: url(../img/office-bg.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-office {
    padding-block: 2.5rem;
  }
}

.p-office__head {
  text-align: center;
  -webkit-margin-after: 1.5rem;
          margin-block-end: 1.5rem;
}

.p-office__title {
  font-size: 3rem;
  font-weight: 700;
  color: #005bac;
  padding-inline: 1rem;
  background: #ffffff;
  line-height: 170%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-block: 0.0625rem;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
}
@media screen and (max-width: 767px) {
  .p-office__title {
    font-size: 1.75rem;
  }
}
.p-office__title span {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-office__title span {
    font-size: 1.25rem;
  }
}

.p-office__text {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 170%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-office__text {
    font-size: 1.125rem;
    text-align: left;
  }
}

.p-office__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  -webkit-margin-before: 2rem;
          margin-block-start: 2rem;
  max-width: 56.875rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-office__wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

.p-office__card {
  background: #ffffff;
  padding: 1rem 1rem 2.1875rem;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-office__card {
    padding: 0.5rem;
  }
}

.p-office__card--img {
  width: 100%;
  height: auto;
  aspect-ratio: 258/194;
}
@media screen and (max-width: 767px) {
  .p-office__card--img {
    aspect-ratio: 144/108;
  }
}
.p-office__card--img img {
  width: 100%;
  height: 100%;
}

.p-office__card--text {
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
  font-size: 2rem;
  font-weight: 700;
  color: #005bac;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-office__card--text {
    font-size: 1rem;
    -webkit-margin-before: 0.25rem;
            margin-block-start: 0.25rem;
    line-height: 150%; /* 24px */
  }
}

.p-japan {
  position: relative;
  background: url(../img/japan-bg.png) no-repeat center center/cover;
  padding-block: 5rem 1.875rem;
}

.p-japan__img {
  width: min(1080px, 100%);
  height: auto;
  aspect-ratio: 1080/920;
}
@media screen and (max-width: 767px) {
  .p-japan__img {
    aspect-ratio: 1;
  }
}
.p-japan__img img {
  width: 100%;
  height: 100%;
}

.p-japan__head {
  position: absolute;
  top: 0;
  left: 2rem;
}
@media screen and (max-width: 767px) {
  .p-japan__head {
    left: 1.5rem;
  }
}

.p-japan__title {
  color: #ffffff;
  font-size: max(3.75rem, 48px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-japan__title {
    font-size: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-japan__title {
    font-size: max(1.75rem, 22.4px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-japan__title {
    font-size: 1.75rem;
  }
}

.p-japan__text {
  color: #ffffff;
  font-size: max(1.5rem, 19.2px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-japan__text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-japan__text {
    font-size: max(1.125rem, 14.4px);
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-japan__text {
    font-size: 1.125rem;
  }
}

.p-japan__wrap {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-japan__wrap {
    display: block;
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-japan__card {
  width: 100%;
  height: auto;
  aspect-ratio: 330/128;
}
.p-japan__card + .p-japan__card {
  -webkit-margin-before: -1.875rem;
          margin-block-start: -1.875rem;
}
.p-japan__card.--1 {
  aspect-ratio: 330/344;
}
.p-japan__card img {
  width: 100%;
  height: 100%;
}

.p-gmo {
  padding-block: 3.5rem 15.75rem;
  background: url(../img/gmo-bg.png) no-repeat center center/cover;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-gmo {
    padding-block: 2.5rem;
  }
}

.p-gmo__right {
  top: 118px;
  left: calc(50% + 290px);
  position: absolute;
  width: 20rem;
  height: auto;
}
.p-gmo__right img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-gmo__right {
    width: 11.25rem;
    top: 175px;
    left: calc(50% + 5px);
  }
}
@media (min-width: 1120px) {
  .p-gmo__right {
    left: calc(50% + 370px);
  }
}

.p-gmo__left1 {
  top: 60.625rem;
  right: calc(50% - 76px);
  position: absolute;
  width: 29.6875rem;
  height: auto;
}
.p-gmo__left1 img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-gmo__left1 {
    top: 1507px;
    right: calc(50% - 42px);
    width: 15rem;
  }
}

.p-gmo__left2 {
  top: 125rem;
  left: calc(50% - 303px);
  position: absolute;
  width: 35rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-gmo__left2 {
    width: 13.5rem;
    top: 2840px;
    left: calc(50% - 28px);
  }
}
@media (min-width: 1120px) {
  .p-gmo__left2 {
    top: 128.125rem;
  }
}
.p-gmo__left2 img {
  width: 100%;
  height: 100%;
}

.p-gmo__circle {
  position: absolute;
  z-index: 0;
  width: 56.25rem;
  height: auto;
  aspect-ratio: 1;
  top: 140px;
  right: calc(50% + 130px);
}
@media screen and (max-width: 767px) {
  .p-gmo__circle {
    width: 25rem;
    top: 140px;
    right: calc(50% - 8px);
  }
}
.p-gmo__circle.--2 {
  top: 67.6875rem;
  left: calc(50% + 130px);
}
@media screen and (max-width: 767px) {
  .p-gmo__circle.--2 {
    top: 1455px;
    left: calc(50% - 20px);
  }
}
.p-gmo__circle.--3 {
  top: 124.375rem;
  right: calc(50% + 130px);
}
@media screen and (max-width: 767px) {
  .p-gmo__circle.--3 {
    top: 172.9375rem;
    right: calc(50% - 8px);
  }
}
.p-gmo__circle img {
  width: 100%;
  height: 100%;
}

.p-gmo__title {
  width: min(66rem, 100%);
  height: auto;
  position: relative;
  z-index: 1;
}
.p-gmo__title img {
  width: 100%;
  height: 100%;
}

.p-gmo__wrap {
  -webkit-padding-before: 5rem;
          padding-block-start: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15.125rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-gmo__wrap {
    -webkit-padding-before: 18.25rem;
            padding-block-start: 18.25rem;
    row-gap: 16.25rem;
    padding-inline: 1rem;
  }
}

.p-gmo__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.5rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.p-gmo__cards:nth-of-type(2) {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.p-gmo__cards:nth-of-type(2) .p-gmo__card:nth-of-type(odd) {
  margin-inline: 3rem 0;
}
@media screen and (max-width: 767px) {
  .p-gmo__cards:nth-of-type(2) .p-gmo__card:nth-of-type(odd) {
    margin-inline: 0;
  }
}
.p-gmo__cards:nth-of-type(3) {
  -webkit-margin-before: 7.125rem;
          margin-block-start: 7.125rem;
}
@media screen and (max-width: 767px) {
  .p-gmo__cards:nth-of-type(3) {
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
}

.p-gmo__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: min(48.125rem, 100%);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 999px;
  background: #ff93cd;
  /* circle_shadow */
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
  padding-block: 2.0625rem;
  padding-inline: 1rem;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-gmo__card {
    width: 100%;
    border-radius: 2.5rem;
    padding-block: 1rem 1.5rem;
    padding-inline: 0.75rem;
    row-gap: 0.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 20.0625rem;
  }
}
.p-gmo__card:nth-of-type(odd) {
  margin-inline: 0 3rem;
}
@media screen and (max-width: 767px) {
  .p-gmo__card:nth-of-type(odd) {
    margin-inline: 0;
  }
}
.p-gmo__card.--2 {
  background: #ffb5dd;
}
.p-gmo__card.--3 {
  background: #ffd7ed;
}
@media screen and (max-width: 767px) {
  .p-gmo__card.--3 {
    height: 21.75rem;
  }
}
.p-gmo__card.--4 {
  background: #81d0ff;
  width: min(50.625rem, 100%);
}
.p-gmo__card.--4 .p-gmo__card--number span {
  color: #81d0ff;
}
.p-gmo__card.--5 {
  background: #a1e0ff;
  width: min(51.875rem, 100%);
}
@media screen and (max-width: 767px) {
  .p-gmo__card.--5 {
    height: 21.75rem;
  }
}
.p-gmo__card.--5 .p-gmo__card--number span {
  color: #a1e0ff;
}
.p-gmo__card.--6 {
  background: #c3ebff;
  width: min(50.625rem, 100%);
}
@media screen and (max-width: 767px) {
  .p-gmo__card.--6 {
    height: 21.75rem;
  }
}
.p-gmo__card.--6 .p-gmo__card--number span {
  color: #c3ebff;
}
.p-gmo__card.--7 {
  background: #71deaf;
  width: min(50.625rem, 100%);
  margin-inline: 0 0;
}
.p-gmo__card.--7 .p-gmo__card--number span {
  color: #71deaf;
}
.p-gmo__card.--8 {
  background: #a8eed0;
  margin-inline: 0 3rem;
}
@media screen and (max-width: 767px) {
  .p-gmo__card.--8 {
    margin-inline: 0;
    height: 21.75rem;
  }
}
.p-gmo__card.--8 .p-gmo__card--number span {
  color: #a8eed0;
}

.p-gmo__card--number {
  width: 7.5rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 100vmax;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-gmo__card--number {
    width: 4rem;
  }
}
.p-gmo__card--number span {
  font-size: max(4rem, 51.2px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #ff93cd;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-gmo__card--number span {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-gmo__card--number span {
    font-size: 2rem;
  }
}

.p-gmo__card--title {
  font-size: max(2rem, 25.6px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-gmo__card--title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-gmo__card--title {
    font-size: max(1.5rem, 19.2px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-gmo__card--title {
    font-size: 1.5rem;
  }
}

.p-gmo__card--text {
  font-size: max(1.5rem, 19.2px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-gmo__card--text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-gmo__card--text {
    font-size: max(1rem, 12.8px);
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-gmo__card--text {
    font-size: 1rem;
  }
}

.p-cta {
  padding-block: 3.5rem 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding-block: 2.5rem 6.25rem;
  }
}

.p-cta__title {
  font-size: max(3rem, 38.4px);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.0583333333em;
  text-align: center;
  color: #005bac;
}
@media screen and (max-width: 767px) {
  .p-cta__title {
    font-size: 3rem;
  }
}
.p-cta__title span {
  font-size: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-cta__title span {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__title {
    font-size: max(1.5rem, 19.2px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-cta__title {
    font-size: 1.5rem;
  }
}

.p-cta__main {
  text-align: center;
}
.p-cta__main span {
  font-size: max(4.5rem, 57.6px);
  font-weight: 700;
  line-height: 1.4861111111;
  letter-spacing: 0.05em;
  color: #3c3c3c;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-cta__main span {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__main span {
    font-size: max(2.5rem, 32px);
    font-weight: 700;
    line-height: 1.49;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-cta__main span {
    font-size: 2.5rem;
  }
}
.p-cta__main span::after {
  content: "";
  position: absolute;
  background: linear-gradient(72deg, #fe57b0 12.37%, #4abbff 50%, #32df95 87.63%);
  background-blend-mode: multiply;
  width: 100%;
  height: 1rem;
  bottom: 0.25rem;
  left: 0;
  z-index: -1;
}

.p-cta__img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-padding-before: 2rem;
          padding-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-cta__img-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-padding-before: 1.5rem;
            padding-block-start: 1.5rem;
  }
}

.p-cta__logo {
  height: auto;
  width: 16.25rem;
  aspect-ratio: 260/64;
  -webkit-margin-before: 2rem;
          margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-cta__logo {
    width: 12.125rem;
    aspect-ratio: 194/48;
  }
}
.p-cta__logo.--2 {
  width: 20.125rem;
  aspect-ratio: 322/64;
}
@media screen and (max-width: 767px) {
  .p-cta__logo.--2 {
    width: 15rem;
    aspect-ratio: 240/48;
  }
}
.p-cta__logo img {
  width: 100%;
  height: 100%;
}

.p-cta__btn {
  position: fixed;
  z-index: 100;
  left: 50%;
  translate: -50%;
  bottom: 20px;
  width: 100%;
  max-width: 50rem;
  border-radius: 999px;
  background: var(--GMO_blue, #005bac);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.5rem 3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-cta__btn {
    -webkit-margin-before: 1.5rem;
            margin-block-start: 1.5rem;
    padding: 1rem 1.3125rem;
    gap: 1.25rem;
    width: min(22.25rem, 100%);
  }
}
.p-cta__btn span {
  color: #fff;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 32px */
  letter-spacing: 3.84px;
}
@media screen and (max-width: 767px) {
  .p-cta__btn span {
    font-size: 1.25rem;
    letter-spacing: 2.4px;
  }
}
.p-cta__btn svg {
  width: 14px;
  height: 24px;
  aspect-ratio: 7/12;
}

@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
.u-font {
  font-family: "Noto Sans JP", sans-serif;
}
.u-font__jp {
  font-family: "Noto Sans JP", sans-serif;
}
.u-font__en {
  font-family: "Poppins", sans-serif;
}

.u-text__center {
  text-align: center !important;
}
@media screen and (max-width: 767px) {
  .u-text__center--sp {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .u-text__center--pc {
    text-align: center !important;
  }
}

.u-text__left {
  text-align: left !important;
}
@media screen and (max-width: 767px) {
  .u-text__left--sp {
    text-align: left !important;
  }
}
@media (min-width: 768px) {
  .u-text__left--pc {
    text-align: left !important;
  }
}

.u-text__right {
  text-align: right !important;
}
@media screen and (max-width: 767px) {
  .u-text__right--sp {
    text-align: right !important;
  }
}
@media (min-width: 768px) {
  .u-text__right--pc {
    text-align: right !important;
  }
}

.u-text__nowrap {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .u-text__nowrap--sp {
    white-space: nowrap;
  }
}
@media (min-width: 768px) {
  .u-text__nowrap--pc {
    white-space: nowrap;
  }
}

.u-pointer__none {
  pointer-events: none !important;
}
@media screen and (max-width: 767px) {
  .u-pointer__none--sp {
    pointer-events: none !important;
  }
}
@media (min-width: 768px) {
  .u-pointer__none--pc {
    pointer-events: none !important;
  }
}