@charset "UTF-8";
*,
*::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: 1279px) and (min-width: 768px) {
  html {
    font-size: calc(16 / 1280 * 100vw);
  }
}
@media screen and (max-width: 374px) {
  html {
    font-size: calc(16 / 375 * 100vw);
  }
}

body {
  color: #363636;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 200%; /* 32px */
  letter-spacing: 0.32px;
}

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;
  position: relative;
  overflow: hidden;
  background: #fafafa;
}

.l-gray {
  position: relative;
  background: #f0f1f5;
  border-radius: 60px 0px 0px 60px;
  margin-inline: 5rem;
}
@media screen and (max-width: 767px) {
  .l-gray {
    margin-inline: 0;
  }
  .l-gray::before {
    display: none;
  }
}
.l-gray::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 100%;
  width: calc(50vw - 50%);
  height: 100%;
  background: #f0f1f5;
}

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

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

.l-inner__narrow--page {
  max-width: 75rem;
}
@media screen and (max-width: 767px) {
  .l-inner__narrow--page {
    max-width: 34.375rem;
  }
}

.c-btn {
  border-radius: 117.578px;
  border: 1px solid #fafafa;
  padding: 0.53125rem 1rem 0.55rem 1.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 13.75rem;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.c-btn span {
  color: #fafafa;
  font-weight: 700;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.c-btn svg {
  width: 13.438px;
  height: 16.682px;
  aspect-ratio: 13.44/16.68;
  fill: #fafafa;
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}
@media (any-hover: hover) {
  .c-btn:hover {
    background: #fafafa;
  }
  .c-btn:hover span {
    color: #005bac;
  }
  .c-btn:hover svg {
    fill: #005bac;
  }
}

.c-btn-black {
  border-radius: 117.578px;
  border: 1px solid #363636;
  padding: 0.5rem 1.25rem 0.5rem 1.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 13.75rem;
  -webkit-transition: border 0.3s ease, background 0.3s ease;
  transition: border 0.3s ease, background 0.3s ease;
}
.c-btn-black span {
  font-weight: 700;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.c-btn-black svg {
  width: 13.438px;
  height: 16.682px;
  aspect-ratio: 13.44/16.68;
  rotate: -45deg;
  fill: #363636;
  margin-top: -0.1875rem;
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}
@media (any-hover: hover) {
  .c-btn-black:hover {
    border: 1px solid #005bac;
    background: #005bac;
  }
  .c-btn-black:hover span {
    color: #fafafa;
  }
  .c-btn-black:hover svg {
    fill: #fafafa;
  }
}

.c-btn__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 0.75rem;
  -moz-column-gap: 0.75rem;
  column-gap: 0.75rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-btn__link.--position {
  -webkit-margin-start: auto;
  margin-inline-start: auto;
}
.c-btn__link.--position .c-btn__link-arrow {
  rotate: -45deg;
}
@media (any-hover: hover) {
  .c-btn__link:hover .c-btn__link-arrow {
    background: #005bac;
    border: 1px solid #005bac;
  }
  .c-btn__link:hover .c-btn__link-arrow svg {
    fill: #fafafa;
  }
  .c-btn__link:hover .c-btn__link-text {
    color: #363636;
  }
}
.c-btn__link .c-btn__link-arrow {
  width: 2.75rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #363636;
  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-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.c-btn__link .c-btn__link-arrow svg {
  width: 0.84rem;
  height: auto;
  aspect-ratio: 13.44/16.68;
  fill: #363636;
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}
.c-btn__link .c-btn__link-text {
  color: #666666;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-size: max(1rem, 12.8px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .c-btn__link .c-btn__link-text {
    font-size: 1rem;
  }
}

.c-animated__fadeIn {
  translate: 0 40px;
  opacity: 0;
  -webkit-transition: translate 0.5s ease, opacity 0.5s ease;
  transition: translate 0.5s ease, opacity 0.5s ease;
}
.c-animated__fadeIn.js-show {
  translate: 0 0;
  opacity: 1;
}

.c-animated__slideIn {
  translate: calc(-101% + 50vw - 50%);
  -webkit-transition: translate 1s ease;
  transition: translate 1s ease;
}
.c-animated__slideIn.js-show {
  translate: 0;
}

.c-animation__text-fadIn {
  overflow: hidden;
}
.c-animation__text-fadIn span {
  -webkit-animation: 1s 2s ease forwards fv-text-fadIn;
  animation: 1s 2s ease forwards fv-text-fadIn;
  translate: 0 100%;
}
@-webkit-keyframes fv-text-fadIn {
  0% {
    translate: 0 100%;
    opacity: 0;
  }
  100% {
    translate: 0 0;
  }
}
@keyframes fv-text-fadIn {
  0% {
    translate: 0 100%;
    opacity: 0;
  }
  100% {
    translate: 0 0;
  }
}

.c-animation__text1 .char {
  translate: 0 100%;
}
.c-animation__text1 span {
  overflow: hidden;
}

@-webkit-keyframes slide {
  0% {
    -webkit-mask-size: 0% 100%;
    mask-size: 0% 100%;
  }
  100% {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
}

@keyframes slide {
  0% {
    -webkit-mask-size: 0% 100%;
    mask-size: 0% 100%;
  }
  100% {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
}
@-webkit-keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.c-title__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.25rem;
  -moz-column-gap: 0.25rem;
  column-gap: 0.25rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-title__head {
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
  }
}
.c-title__head svg {
  width: 0.875rem;
  height: 1rem;
  fill: #005bac;
}
.c-title__head span {
  font-size: 2.5rem;
  font-weight: 700;
  color: #005bac;
  font-family: "Roboto", sans-serif;
}
.c-title__head.--white svg {
  fill: #fafafa;
}
.c-title__head.--white .c-title__en {
  color: #fafafa;
}

.c-title__en {
  color: #005bac;
  font-family: "Roboto", sans-serif;
  font-size: max(1rem, 12.8px);
  font-weight: 900;
  line-height: 2;
  letter-spacing: 0.04em;
  -webkit-padding-start: 0.125rem;
  padding-inline-start: 0.125rem;
}
@media screen and (max-width: 767px) {
  .c-title__en {
    font-size: 1rem;
  }
}
.c-title__en.--white {
  color: #fafafa;
}

.c-title__jp {
  font-size: max(3rem, 38.4px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.01em;
  margin-top: -0.3125rem;
}
@media screen and (max-width: 767px) {
  .c-title__jp {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title__jp {
    font-size: max(2.25rem, 28.8px);
    font-weight: 700;
    line-height: 2;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .c-title__jp {
    font-size: 2.25rem;
  }
}
.c-title__jp.--white {
  color: #fafafa;
}

.c-text span {
  font-size: 1.125rem;
  font-weight: 700;
  display: inline;
}
.c-text .--blue {
  color: #005bac;
}
.c-text.--white {
  color: #fafafa;
}

.c-title__page-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.25rem;
  -moz-column-gap: 0.25rem;
  column-gap: 0.25rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-title__page-head {
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
  }
}
.c-title__page-head span {
  font-size: 2.5rem;
  font-weight: 700;
  color: #005bac;
  font-family: "Roboto", sans-serif;
  -webkit-padding-start: 0.4375rem;
  padding-inline-start: 0.4375rem;
}

.c-title__page-en {
  color: #005bac;
  font-family: "Roboto", sans-serif;
  font-size: max(1rem, 12.8px);
  font-weight: 900;
  line-height: 2;
  letter-spacing: 0.04em;
  -webkit-padding-start: 1.25rem;
  padding-inline-start: 1.25rem;
  position: relative;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-title__page-en {
    font-size: 1rem;
  }
}
.c-title__page-en::before {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='15' viewBox='0 0 20 15' fill='none'%3E%3Cpath d='M19.302 0.475694L10.8812 14.2448L0.00118697 5.43433L19.302 0.475694Z' fill='%23005BAC'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 1rem;
  height: 0.875rem;
  top: 2.5625rem;
  left: 0;
}

.p-title-page {
  font-size: max(1.625rem, 20.8px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.01em;
  -webkit-padding-after: 0.5rem;
  padding-block-end: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-title-page {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-title-page {
    font-size: max(1.5rem, 19.2px);
    font-weight: 700;
    line-height: 2;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-title-page {
    font-size: 1.5rem;
  }
}

.c-voices {
  width: calc(100% + (50vw - 50%) * 2);
  padding-block: 5rem 11.5rem;
  border-radius: 0 12.5rem;
  -webkit-margin-start: calc(50% - 50vw);
  margin-inline-start: calc(50% - 50vw);
  position: relative;
  z-index: 1;
  background: var(
    --2,
    linear-gradient(
      254deg,
      #e5f7ff -6.09%,
      #43b9f0 11.34%,
      #005bac 43.9%,
      #003270 80.43%,
      #036 100%
    )
  );
}
@media screen and (max-width: 767px) {
  .c-voices {
    padding-block: 5rem 8.375rem;
    border-radius: 0 6.25rem;
    -webkit-margin-after: 3.3125rem;
    margin-block-end: 3.3125rem;
  }
}

.c-voices__title--text {
  padding-inline: 2.625rem;
}
@media screen and (max-width: 767px) {
  .c-voices__title--text {
    padding-inline: 0;
  }
}

.c-voices__swiper-container,
.c-voices__swiper,
.c-voices__swiper-wrapper,
.c-voices__swiper-slide {
  position: relative;
}

.c-voices__swiper-container {
  width: calc(100% + 50vw - 50%);
  -webkit-margin-before: 2.6875rem;
  margin-block-start: 2.6875rem;
}

.c-voices__swiper-slide {
  width: 20rem;
  height: 28.75rem;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}

.swiper-button-prev,
.swiper-button-next {
  top: calc(100% + 3.75rem);
  width: 2.75rem;
  height: 2.75rem;
  aspect-ratio: 1;
  border: 1px solid #fafafa;
  border-radius: 100vmax;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 13.438px;
  height: 16.682px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  aspect-ratio: 13.44/16.68;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev,
  .swiper-button-next {
    opacity: 0;
    visibility: hidden;
  }
}

.swiper-button-prev {
  right: calc(4rem + 50vw - 50%);
}

.swiper-button-next {
  right: calc(50vw - 50%);
}

.swiper-pagination-bullets.swiper-pagination-horizontal.--swiper5 {
  top: calc(100% + 2.5rem);
}

.swiper-pagination-bullets.swiper-pagination-horizontal
  .swiper-pagination-bullet {
  opacity: 1;
  width: 0.875rem;
  height: 0.875rem;
  aspect-ratio: 1;
  border-radius: 100vmax;
  border: 1px solid #fafafa;
  background: transparent;
  margin-inline: 0.875rem;
}

.swiper-pagination-bullets.swiper-pagination-horizontal
  .swiper-pagination-bullet-active {
  background: #fafafa;
}

.c-voices__card {
  background: #fafafa;
  width: 100%;
  height: 100%;
  padding-left: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 0.75rem;
  row-gap: 1.5rem;
}

.c-voices__card--img {
  width: 100%;
  height: auto;
  aspect-ratio: 280/168;
  position: relative;
}
.c-voices__card--img img {
  width: 100%;
  height: 100%;
}

.c-voices__label {
  position: absolute;
  bottom: -0.0625rem;
  left: -0.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fafafa;
  border-radius: 0 0.25rem 0 0;
}
.c-voices__label span {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

.c-voices__body {
  -webkit-padding-end: 1.25rem;
  padding-inline-end: 1.25rem;
}

.c-voices__body--title {
  color: #005bac;
  font-size: max(1.5rem, 19.2px);
  font-weight: 700;
  line-height: 1.4166666667;
  letter-spacing: 0.01em;
  -webkit-padding-after: 0.75rem;
  padding-block-end: 0.75rem;
}
@media screen and (max-width: 767px) {
  .c-voices__body--title {
    font-size: 1.5rem;
  }
}

.c-voices__body--text + .c-voices__body--text {
  -webkit-margin-before: 1rem;
  margin-block-start: 1rem;
}

.c-fv {
  padding-block: 9.5rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .c-fv {
    padding-block: 6.3125rem 1.375rem;
  }
}

.c-fv__inner {
  padding-inline: 5rem;
}
@media screen and (max-width: 767px) {
  .c-fv__inner {
    padding-inline: 2.5rem 1.25rem;
  }
}

.c-fv__title--text {
  -webkit-padding-start: 5rem;
  padding-inline-start: 5rem;
}
@media screen and (max-width: 767px) {
  .c-fv__title--text {
    -webkit-padding-start: 0;
    padding-inline-start: 0;
  }
}

.c-fv__img {
  width: calc(100% + 50vw - 50%);
}
@media screen and (max-width: 767px) {
  .c-fv__img {
    -webkit-margin-before: 0.5rem;
    margin-block-start: 0.5rem;
  }
}
.c-fv__img img {
  width: 100%;
  height: 100%;
}

.c-fv__under--text {
  text-align: center;
  -webkit-padding-before: 1.875rem;
  padding-block-start: 1.875rem;
}
@media screen and (max-width: 767px) {
  .c-fv__under--text {
    text-align: left;
    -webkit-padding-before: 1.25rem;
    padding-block-start: 1.25rem;
  }
}

.c-page-body {
  -webkit-padding-after: 6.25rem;
  padding-block-end: 6.25rem;
}
@media screen and (max-width: 767px) {
  .c-page-body {
    -webkit-padding-after: 5rem;
    padding-block-end: 5rem;
  }
}

.c-page-body__items {
  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: 6.25rem;
}
@media screen and (max-width: 767px) {
  .c-page-body__items {
    row-gap: 3.75rem;
  }
}

.c-page-body__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-page-body__item {
    -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;
    row-gap: 1.0625rem;
  }
}
.c-page-body__item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .c-page-body__item:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1.0625rem;
  }
}

.c-page-body__img {
  width: min(30rem, 100%);
  height: auto;
  aspect-ratio: 480/340;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.c-page-body__img.--1 {
  width: min(28.75rem, 100%);
  height: auto;
  aspect-ratio: 460/360;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.c-page-body__img.--2 {
  width: min(29.3125rem, 100%);
  height: auto;
  aspect-ratio: 469/409;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.c-page-body__item--title {
  color: #363636;
  font-size: max(2.625rem, 33.6px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.01em;
  border-bottom: 1px solid #363636;
  -webkit-padding-after: 0.5rem;
  padding-block-end: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-page-body__item--title {
    font-size: 2.625rem;
  }
}
@media screen and (max-width: 767px) {
  .c-page-body__item--title {
    font-size: max(1.875rem, 24px);
    font-weight: 700;
    line-height: 2;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .c-page-body__item--title {
    font-size: 1.875rem;
  }
}

.c-page-body__item--body {
  -webkit-padding-before: 1.875rem;
  padding-block-start: 1.875rem;
}

.c-page-body__lists {
  -webkit-padding-after: 1.25rem;
  padding-block-end: 1.25rem;
  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;
}
@media screen and (max-width: 767px) {
  .c-page-body__lists {
    row-gap: 1.125rem;
  }
}

.c-page-body__list {
  position: relative;
  -webkit-padding-start: 1.375rem;
  padding-inline-start: 1.375rem;
}
.c-page-body__list span {
  font-size: max(1.125rem, 14.4px);
  font-weight: 700;
  line-height: 11.1111111111%;
  letter-spacing: 0.02em;
  display: inline;
}
@media screen and (max-width: 767px) {
  .c-page-body__list span {
    font-size: 1.125rem;
  }
}
.c-page-body__list::before {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M7.6 10.4L5.45 8.25C5.26667 8.06667 5.03333 7.975 4.75 7.975C4.46667 7.975 4.23333 8.06667 4.05 8.25C3.86667 8.43333 3.775 8.66667 3.775 8.95C3.775 9.23333 3.86667 9.46667 4.05 9.65L6.9 12.5C7.1 12.7 7.33333 12.8 7.6 12.8C7.86667 12.8 8.1 12.7 8.3 12.5L13.95 6.85C14.1333 6.66667 14.225 6.43333 14.225 6.15C14.225 5.86667 14.1333 5.63333 13.95 5.45C13.7667 5.26667 13.5333 5.175 13.25 5.175C12.9667 5.175 12.7333 5.26667 12.55 5.45L7.6 10.4ZM2 18C1.45 18 0.979333 17.8043 0.588 17.413C0.196667 17.0217 0.000666667 16.5507 0 16V2C0 1.45 0.196 0.979333 0.588 0.588C0.98 0.196667 1.45067 0.000666667 2 0H16C16.55 0 17.021 0.196 17.413 0.588C17.805 0.98 18.0007 1.45067 18 2V16C18 16.55 17.8043 17.021 17.413 17.413C17.0217 17.805 16.5507 18.0007 16 18H2Z' fill='%23005BAC'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 1.125rem;
  height: 1.125rem;
  top: 0.4375rem;
  left: 0;
}

.c-page-body__item--text {
  color: #005bac;
  font-size: max(1.625rem, 20.8px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .c-page-body__item--text {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .c-page-body__item--text {
    font-size: max(1.375rem, 17.6px);
    font-weight: 700;
    line-height: 2;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .c-page-body__item--text {
    font-size: 1.375rem;
  }
}

.c-page-message {
  margin-block: 6.25rem;
  padding-block: 6.25rem 6.25rem;
  position: relative;
  background: #f0f1f5;
  border-radius: 0 60px 60px 0;
  margin-inline: 5rem;
}
@media screen and (max-width: 767px) {
  .c-page-message {
    margin-inline: 0;
    padding-block: 5rem 6.25rem;
    margin-block: 5rem 6.25rem;
  }
  .c-page-message::before {
    display: none;
  }
}
.c-page-message::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 100%;
  width: calc(50vw - 50%);
  height: 100%;
  background: #f0f1f5;
}

.c-page-message__inner {
  max-width: 75rem;
}

.c-page-message__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 5.625rem;
  -moz-column-gap: 5.625rem;
  column-gap: 5.625rem;
  -webkit-margin-before: 3.75rem;
  margin-block-start: 3.75rem;
}
@media screen and (max-width: 767px) {
  .c-page-message__wrap {
    -webkit-margin-before: 2.5rem;
    margin-block-start: 2.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    row-gap: 2.5rem;
  }
}

.c-page-message__texts {
  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.9375rem;
}

.c-page-message__text-title {
  font-size: max(1.5rem, 19.2px);
  font-weight: 700;
  line-height: 1.4166666667;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .c-page-message__text-title {
    font-size: 1.5rem;
  }
}

.c-page-message__text {
  font-size: max(1rem, 12.8px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .c-page-message__text {
    font-size: 1rem;
  }
}
.c-page-message__text span {
  display: inline;
}
.c-page-message__text.--blue span {
  color: #005bac;
  font-size: max(1.125rem, 14.4px);
  font-weight: 700;
  line-height: 11.1111111111%;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .c-page-message__text.--blue span {
    font-size: 1.125rem;
  }
}
.c-page-message__text.--normal span {
  font-size: 1rem;
  font-weight: 700;
}
.c-page-message__text + .c-page-message__text {
  -webkit-margin-before: 2.25rem;
  margin-block-start: 2.25rem;
}

.c-page-message__texts--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: 0.625rem;
}

.c-page-message__img {
  width: 28rem;
  height: auto;
  aspect-ratio: 448/270;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .c-page-message__img {
    width: 100%;
  }
}
.c-page-message__img img {
  width: 100%;
  height: 100%;
}

.c-fv-page {
  -webkit-margin-before: 5rem;
  margin-block-start: 5rem;
  position: relative;
  padding-block: 14.1875rem 2.5rem;
  width: 100%;
  height: 25%;
}
@media screen and (max-width: 767px) {
  .c-fv-page {
    padding-block: 5.8125rem 1.25rem;
    -webkit-margin-before: 3.9375rem;
    margin-block-start: 3.9375rem;
  }
}
@media (min-width: 1500px) {
  .c-fv-page {
    padding-block: 18.75rem 5rem;
  }
}

.c-fv-page__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-fv-page__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-fv-page__bg picture {
  width: 100%;
  height: 100%;
}

.c-fv-page__title-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media screen and (max-width: 767px) {
  .c-fv-page__title-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.c-fv-page__title {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  font-size: max(3rem, 38.4px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .c-fv-page__title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .c-fv-page__title {
    font-size: max(2.25rem, 28.8px);
    font-weight: 700;
    line-height: 2;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .c-fv-page__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 1500px) {
  .c-fv-page__title {
    font-size: 3.75rem;
  }
}

.c-fv-page__logo {
  height: 5.3125rem;
}
.c-fv-page__logo img {
  width: 100%;
  height: 100%;
}
.c-fv-page__logo.--1 {
  width: 23.6875rem;
}
@media screen and (max-width: 767px) {
  .c-fv-page__logo.--1 {
    width: 11.875rem;
  }
}
.c-fv-page__logo.--2 {
  width: 30.625rem;
}
@media screen and (max-width: 767px) {
  .c-fv-page__logo.--2 {
    width: 15.3125rem;
  }
}
.c-fv-page__logo.--3 {
  width: 10.4375rem;
}
@media screen and (max-width: 767px) {
  .c-fv-page__logo.--3 {
    width: 5.25rem;
  }
}
@media screen and (max-width: 767px) {
  .c-fv-page__logo {
    height: auto;
  }
}

.c-structure {
  padding-block: 6.25rem;
}
@media screen and (max-width: 767px) {
  .c-structure {
    padding-block: 5rem 6.25rem;
  }
}

.c-structure__title {
  color: #363636;
  font-size: max(2.625rem, 33.6px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .c-structure__title {
    font-size: 2.625rem;
  }
}
@media screen and (max-width: 767px) {
  .c-structure__title {
    font-size: max(1.875rem, 24px);
    font-weight: 700;
    line-height: 2;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .c-structure__title {
    font-size: 1.875rem;
  }
}

.c-structure__items {
  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: 3.75rem;
  -webkit-padding-before: 2.5rem;
  padding-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-structure__items {
    -webkit-padding-before: 1.25rem;
    padding-block-start: 1.25rem;
  }
}

.p-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding-inline: 5rem;
  background: #fafafa;
  height: 5rem;
  -webkit-transition: translate 0.5s ease;
  transition: translate 0.5s ease;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 4rem;
    padding-inline: 1.25rem;
    background: #fafafa;
  }
}

.p-header__inner {
  display: grid;
  grid-template-columns: 21.875rem 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: inherit;
}

.p-header__logo {
  width: 16.25rem;
  height: auto;
  aspect-ratio: 260/22;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 12.5rem;
    aspect-ratio: 200/17;
  }
}
.p-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (any-hover: hover) {
  .p-header__logo:hover {
    opacity: 0.7;
  }
}

.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;
}
@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: 2.5rem;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
}
.p-header__list > li {
  position: relative;
  padding-block: 1.5rem;
  padding-inline: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-header__list > li {
    padding-block: 1.1875rem;
  }
}
@media (any-hover: hover) {
  .p-header__list > li:hover .p-dropdown__lists,
  .p-header__list > li:hover .p-dropdown__lists:hover .p-dropdown__lists {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.p-header__list > li a {
  font-size: 1rem;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}
@media (any-hover: hover) {
  .p-header__list > li a:hover {
    color: #005bac;
    font-weight: 600;
  }
}

.p-dropdown__lists {
  pointer-events: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  z-index: 5;
  top: 4.875rem;
  left: 50%;
  translate: -50%;
  background: #fafafa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 5rem 1.25rem 2.5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0px 0px 30px 30px;
  gap: 3.75rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (max-width: 1400px) {
  .p-dropdown__lists {
    gap: 1.25rem;
  }
}
.p-dropdown__lists::before {
  content: "";
  position: absolute;
  top: -1.25rem;
  left: 0;
  width: 100%;
  height: 1.25rem;
  background: transparent;
}
@media (any-hover: hover) {
  .p-dropdown__lists:hover {
    opacity: 1;
    visibility: visible;
    cursor: pointer;
    pointer-events: auto;
  }
}

.p-dropdown__list {
  height: 2rem;
}
.p-dropdown__list.--top a {
  margin-top: 0.3125rem;
}
.p-dropdown__list a {
  color: #666666;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-dropdown__list a svg {
  -webkit-margin-start: -0.3125rem;
  margin-inline-start: -0.3125rem;
  width: 40px;
  height: auto;
  aspect-ratio: 1/1;
  fill: #666666;
}
@media (any-hover: hover) {
  .p-dropdown__list:hover a {
    color: #005bac;
    font-weight: 600;
  }
  .p-dropdown__list:hover a svg {
    fill: #005bac;
  }
}

.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: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 0.4375rem;
  top: 0rem;
  right: 0;
  width: 4.375rem;
  height: 4rem;
  background: rgba(0, 91, 172, 0.7);
}
@media (min-width: 768px) {
  .p-drawer__icon {
    display: none;
  }
}

.p-drawer__icon--bar {
  width: 1.875rem;
  height: 0.125rem;
  background: #ffffff;
}

.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 0.3375rem;
}
.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 -0.3375rem;
}

.p-drawer {
  position: fixed;
  z-index: 101;
  overflow-y: scroll;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: rgba(250, 250, 250, 0.8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.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__logo__box {
  background: #fafafa;
  width: 100%;
  height: 4rem;
}

.p-drawer__logo {
  position: fixed;
  top: 1.1875rem;
  left: 1.25rem;
  width: 12.4375rem;
  height: auto;
  aspect-ratio: 199/26;
}
.p-drawer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-drawer__body {
  width: 100%;
  height: inherit;
  padding-block: 3.75rem 2.5rem;
  padding-inline: 1.25rem;
  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-drawer__list-link {
  padding: 0.625rem 1.25rem;
  border-bottom: 1px solid rgba(102, 102, 102, 0.6);
}
.p-drawer__list-link a {
  font-weight: 500;
  color: #666666;
}

.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: 0.125rem;
}
.p-drawer__list li a {
  font-weight: 500;
  color: #666666;
  padding: 0.625rem 1.25rem 0.625rem 3.75rem;
}

.p-drawer__sns {
  margin-bottom: 3.75rem;
  width: 2.5rem;
  height: auto;
  aspect-ratio: 1;
  color: #005bac;
}

.p-footer {
  padding-block: 6.25rem 3.75rem;
  background: #fafafa;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-block: 3.75rem 2.5rem;
  }
}

.p-footer__nav {
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    row-gap: 2.5rem;
  }
}

.p-footer__list {
  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;
  gap: 1.5rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-footer__list {
    max-width: 18.75rem;
  }
}
.p-footer__list li a {
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  padding-inline: 0.3125rem;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}
@media screen and (max-width: 767px) {
  .p-footer__list li a {
    font-size: 1rem;
  }
}
@media (any-hover: hover) {
  .p-footer__list li a:hover {
    color: #e58d00;
  }
}

.p-footer__sns {
  width: 2.5rem;
  height: auto;
  aspect-ratio: 1;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}
@media (any-hover: hover) {
  .p-footer__sns:hover {
    color: #e58d00;
  }
}

.p-footer__copy {
  color: #f0f1f5;
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 3.75rem;
  display: block;
  text-align: center;
}

.p-fv {
  width: 100%;
  -webkit-padding-before: 7.5rem;
  padding-block-start: 7.5rem;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-fv {
    -webkit-padding-before: 4rem;
    padding-block-start: 4rem;
  }
}

.p-fv__inner {
  position: relative;
  width: 100%;
  height: inherit;
  padding-inline: 5rem;
}
@media screen and (max-width: 767px) {
  .p-fv__inner {
    width: 100%;
    padding-inline: 2.5rem;
  }
}

.p-fv__head {
  position: absolute;
  top: 3.3125rem;
  left: 9.9375rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-fv__head {
    top: 2.9375rem;
    left: 1.25rem;
  }
}

.p-fv__head--title {
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-fv__head--title {
    font-size: max(1.875rem, 24px);
    font-weight: 900;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-fv__head--title {
    font-size: 1.875rem;
  }
}
@media (min-width: 700px) {
  .p-fv__head--title {
    font-size: max(2.75rem, 35.2px);
    font-weight: 900;
    line-height: 1.0865227273;
  }
}
@media screen and (min-width: 700px) and (max-width: 767px) {
  .p-fv__head--title {
    font-size: 2.75rem;
  }
}
@media (min-width: 1100px) {
  .p-fv__head--title {
    font-size: max(3.375rem, 43.2px);
    font-weight: 900;
    line-height: 1.607537037;
  }
}
@media screen and (min-width: 1100px) and (max-width: 767px) {
  .p-fv__head--title {
    font-size: 3.375rem;
  }
}
@media (min-width: 1400px) {
  .p-fv__head--title {
    font-size: max(4rem, 51.2px);
    font-weight: 900;
    line-height: 1.356359375;
  }
}
@media screen and (min-width: 1400px) and (max-width: 767px) {
  .p-fv__head--title {
    font-size: 4rem;
  }
}
@media (min-width: 1800px) {
  .p-fv__head--title {
    font-size: max(4.625rem, 59.2px);
    font-weight: 900;
    line-height: 1.1730675676;
  }
}
@media screen and (min-width: 1800px) and (max-width: 767px) {
  .p-fv__head--title {
    font-size: 4.625rem;
  }
}
.p-fv__head--title span {
  background: var(
    --2,
    linear-gradient(
      254deg,
      #e5f7ff -6.09%,
      #43b9f0 11.34%,
      #005bac 43.9%,
      #003270 80.43%,
      #036 100%
    )
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .p-fv__head--title span {
    font-size: max(2.5rem, 32px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-fv__head--title span {
    font-size: 2.5rem;
  }
}
@media (min-width: 700px) {
  .p-fv__head--title span {
    font-size: max(3.125rem, 40px);
    font-weight: 900;
    line-height: 0.95614;
  }
}
@media screen and (min-width: 700px) and (max-width: 767px) {
  .p-fv__head--title span {
    font-size: 3.125rem;
  }
}
@media (min-width: 1100px) {
  .p-fv__head--title span {
    font-size: max(4.125rem, 52.8px);
    font-weight: 900;
    line-height: 0.9090909091;
  }
}
@media screen and (min-width: 1100px) and (max-width: 767px) {
  .p-fv__head--title span {
    font-size: 4.125rem;
  }
}
@media (min-width: 1400px) {
  .p-fv__head--title span {
    font-size: max(5.125rem, 65.6px);
    font-weight: 900;
    line-height: 1.0586219512;
  }
}
@media screen and (min-width: 1400px) and (max-width: 767px) {
  .p-fv__head--title span {
    font-size: 5.125rem;
  }
}
@media (min-width: 1800px) {
  .p-fv__head--title span {
    font-size: max(5.75rem, 73.6px);
    font-weight: 900;
    line-height: 0.9435543478;
  }
}
@media screen and (min-width: 1800px) and (max-width: 767px) {
  .p-fv__head--title span {
    font-size: 5.75rem;
  }
}
.p-fv__head--title + .p-fv__head--title {
  -webkit-margin-before: 0.625rem;
  margin-block-start: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-fv__head--title + .p-fv__head--title {
    -webkit-margin-before: 0;
    margin-block-start: 0;
  }
}

.p-fv__scrolldown--text {
  position: absolute;
  color: #666666;
  font-family: "Roboto", sans-serif;
  font-size: max(1rem, 12.8px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  rotate: 90deg;
  top: 21.6875rem;
  left: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .p-fv__scrolldown--text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__scrolldown--text {
    left: -1rem;
    top: 21.25rem;
  }
}

.p-fv__scrolldown-bar {
  position: absolute;
  width: 0.0625rem;
  height: 8.125rem;
  background: rgba(187, 187, 187, 0.7333333333);
  top: 25.625rem;
  left: 2.375rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-fv__scrolldown-bar {
    left: 1.1875rem;
    height: 6.25rem;
    top: 24.9375rem;
  }
}

.p-fv__scrolldown-bar--active {
  position: absolute;
  bottom: 100%;
  left: 0;
  background: #666666;
  width: 0.125rem;
  height: 3.125rem;
  -webkit-animation: 3s 0s ease-in-out backwards infinite scrollDown;
  animation: 3s 0s ease-in-out backwards infinite scrollDown;
}
@-webkit-keyframes scrollDown {
  0% {
    bottom: 100%;
  }
  100% {
    bottom: -3.125rem;
  }
}
@keyframes scrollDown {
  0% {
    bottom: 100%;
  }
  100% {
    bottom: -3.125rem;
  }
}

.p-fv__swiper-container {
  width: calc(100% + 50vw - 50%);
  -webkit-margin-end: calc(50vw - 50%);
  margin-inline-end: calc(50vw - 50%);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-fv__swiper-container {
    -webkit-padding-before: 8.5625rem;
    padding-block-start: 8.5625rem;
  }
}

.p-fv,
.p-fv__swiper,
.p-fv__swiper-wrapper,
.p-fv__swiper-slide {
  position: relative;
}

.p-fv__swiper-slide {
  width: 100%;
  height: 41.25rem;
}
@media screen and (max-width: 767px) {
  .p-fv__swiper-slide {
    height: 26.375rem;
  }
}

.p-fv__img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.p-fv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-fv__img picture {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-fv__img {
    width: 100%;
    height: auto;
    aspect-ratio: 335/422;
  }
}

.p-fv__img-person {
  width: auto;
  height: 100%;
  position: absolute;
  z-index: 3;
  bottom: 0;
  right: 0;
}
.p-fv__img-person img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-fv__img-person picture {
  width: 100%;
  height: 100%;
}
@media (min-width: 1600px) {
  .p-fv__img-person {
    right: auto;
    left: 15rem;
  }
}

.p-fv__scroll-infinity {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-fv__scroll-infinity {
    z-index: 4;
  }
}

.p-fv__scroll-infinity__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-animation: infinity-scroll-left 20s linear infinite;
  animation: infinity-scroll-left 20s linear infinite;
}

@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.p-fv__scroll--img {
  width: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 108.125rem;
  height: auto;
  margin-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-fv__scroll--img {
    width: 57.8125rem;
  }
}
.p-fv__scroll--img img {
  width: 100%;
  height: 100%;
}

.p-fv-employee {
  position: relative;
  -webkit-margin-before: 6.25rem;
  margin-block-start: 6.25rem;
  padding-block: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-fv-employee {
    -webkit-margin-before: 4rem;
    margin-block-start: 4rem;
    padding-block: 8rem 5.5625rem;
  }
}

.p-fv-employee__inner {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  padding-inline: 20px;
  margin-inline: auto;
}

.p-fv-employee__head {
  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: 3rem;
  font-family: "BIZ UDPGothic", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-fv-employee__head {
    row-gap: 1.5rem;
  }
}

.p-fv-employee__title {
  color: #fafafa;
  text-shadow: 0px 0px 10px #55c0ff;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 180%; /* 72px */
  letter-spacing: 6.4px;
}
@media screen and (max-width: 767px) {
  .p-fv-employee__title {
    font-size: 1.25rem;
    line-height: 150%; /* 30px */
    letter-spacing: 3.2px;
  }
}

.p-fv-employee__text {
  color: #fafafa;
  text-shadow: 0px 0px 10px #55c0ff;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 150%; /* 36px */
  letter-spacing: 3.84px;
}
@media screen and (max-width: 767px) {
  .p-fv-employee__text {
    font-size: 1rem;
    line-height: 150%; /* 24px */
    letter-spacing: 2.56px;
  }
}

.p-fv-employee__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.p-fv-employee__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

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

.p-employee-profile__head {
  position: relative;
  z-index: 0;
  overflow: visible;
}

.p-employee-profile__jp {
  position: relative;
  text-align: center;
}
.p-employee-profile__jp span {
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 8.64px;
  background: var(
    ---gradation-pink,
    linear-gradient(90deg, #ef6a85 0%, #ffbecb 100%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .p-employee-profile__jp span {
    font-size: 20px;
    letter-spacing: 4.8px;
  }
}
.p-employee-profile__jp::before {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  text-transform: uppercase;
  content: "PROFILE";
  z-index: -1;
  color: #fffbfd;
  font-family: "Poppins", sans-serif;
  font-size: 6.25rem;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 20px;
}
@media screen and (max-width: 767px) {
  .p-employee-profile__jp::before {
    font-size: 3rem;
    line-height: normal;
    letter-spacing: 9.6px;
  }
}

.p-employee-profile__wrap {
  -webkit-margin-before: 7.5rem;
  margin-block-start: 7.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;
}
@media screen and (max-width: 767px) {
  .p-employee-profile__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-margin-before: 3.125rem;
    margin-block-start: 3.125rem;
    row-gap: 1rem;
  }
}

.p-employee-profile__img {
  width: 30.625rem;
  height: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  aspect-ratio: 443.23/448;
}
@media screen and (max-width: 767px) {
  .p-employee-profile__img {
    width: 14.875rem;
    height: auto;
    aspect-ratio: 119/120;
  }
}
.p-employee-profile__img img {
  width: 100%;
  height: 100%;
}

.p-employee-profile__box {
  width: 100%;
  border-radius: 1.5rem;
  background: #fafafa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2.625rem 3.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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-employee-profile__box {
    padding: 1.5rem 1rem;
    gap: 1.5rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.p-employee-profile__box-img {
  position: absolute;
  bottom: -1.5625rem;
  right: -2.8125rem;
  width: 8.125rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-employee-profile__box-img {
    width: 3.375rem;
    height: auto;
    right: -0.4375rem;
    bottom: -0.375rem;
  }
}
.p-employee-profile__box-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-employee-profile__name {
  color: #464a4d;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 4.8px;
}
@media screen and (max-width: 767px) {
  .p-employee-profile__name {
    font-size: 1rem;
    letter-spacing: 3.84px;
  }
}
.p-employee-profile__name span {
  color: #ef6a85;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 9.6px;
}
@media screen and (max-width: 767px) {
  .p-employee-profile__name span {
    font-size: 1.5rem;
    letter-spacing: 5.76px;
  }
}

.p-employee-profile__body {
  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.25rem;
}
@media screen and (max-width: 767px) {
  .p-employee-profile__body {
    row-gap: 1rem;
    padding-inline: 1.5625rem;
  }
}

.p-employee-profile__list {
  font-size: 1.25rem;
  letter-spacing: 1.6px;
  font-family: "BIZ UDPGothic", sans-serif;
  display: grid;
  grid-template-columns: 7rem 1fr;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-employee-profile__list {
    font-size: 1rem;
    letter-spacing: 1.28px;
    grid-template-columns: 5.4375rem 1fr;
  }
}
.p-employee-profile__list .--q {
  color: #ffb3c9;
  font-weight: 700;
}
.p-employee-profile__list .--a {
  color: #464a4d;
  font-weight: 400;
}

.p-employee-reason {
  padding-block: 3.5rem;
  background: #ef6a85;
}

.p-employee-reason__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-column-gap: 3.5rem;
  -moz-column-gap: 3.5rem;
  column-gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-employee-reason__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1.5rem;
  }
}

.p-employee-reason__body {
  -webkit-padding-start: 8.3333333333%;
  padding-inline-start: 8.3333333333%;
  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: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-employee-reason__body {
    row-gap: 3.75rem;
    width: 100%;
    -webkit-padding-start: 0;
    padding-inline-start: 0;
  }
}

.p-employee-reason__title {
  color: #fafafa;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2.88px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-employee-reason__title {
    text-align: center;
    font-size: 1.25rem;
    letter-spacing: 2.4px;
  }
}
.p-employee-reason__title::before {
  content: "";
  position: absolute;
  top: 14px;
  right: calc(100% + 16px);
  width: 7.5694444444%;
  height: 1px;
  background: #fafafa;
}
@media screen and (max-width: 767px) {
  .p-employee-reason__title::before {
    width: 4.375rem;
    right: 50%;
    translate: 50%;
    top: calc(100% + 24px);
  }
}

.p-employee-reason__text {
  color: #fafafa;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 150%; /* 30px */
  letter-spacing: 2.4px;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-employee-reason__text {
    font-size: 1rem;
    letter-spacing: 1.92px;
  }
}

.p-employee-reason__profile {
  font-family: "BIZ UDPGothic", sans-serif;
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-employee-reason__profile {
    row-gap: 0.5rem;
  }
}

.p-employee-reason__img {
  width: 12.5rem;
  height: auto;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .p-employee-reason__img {
    width: 8.375rem;
  }
}
.p-employee-reason__img img {
  width: 100%;
  height: 100%;
}

.p-employee-reason__name {
  color: #fafafa;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 150%; /* 30px */
  letter-spacing: 2.4px;
}

.p-employee-reason__profile--text {
  color: #fafafa;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 200%; /* 32px */
  letter-spacing: 1.92px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.p-employee-interview {
  padding-block: 5.625rem;
  background: url(../img/topnew05/employee/interview-bg.png) no-repeat center
    center/cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-employee-interview {
    padding-block: 6rem;
  }
}

.p-employee-interview__head {
  position: relative;
  text-align: center;
  z-index: 1;
}
.p-employee-interview__head span {
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 4.32px;
}
@media screen and (max-width: 767px) {
  .p-employee-interview__head span {
    font-size: 1.25rem;
    letter-spacing: 2.4px;
  }
}
.p-employee-interview__head::before {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  width: 25.6875rem;
  height: 8.1875rem;
  background: url(../img/employee/interview.png) no-repeat center center/contain;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-employee-interview__head::before {
    width: 17.125rem;
    height: 5.4375rem;
  }
}

.p-employee-interview__icons {
  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: 0.5rem;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
  position: absolute;
  right: 0;
  top: -50px;
}
@media screen and (max-width: 767px) {
  .p-employee-interview__icons {
    position: relative;
    -webkit-margin-before: 5.625rem;
    margin-block-start: 5.625rem;
  }
}

.p-employee-interview__icon {
  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;
  row-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-employee-interview__icon {
    row-gap: 1.5rem;
  }
}

.p-employee-interview__img {
  width: 6.25rem;
  height: auto;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .p-employee-interview__img {
    width: 3.75rem;
  }
}
.p-employee-interview__img img {
  width: 100%;
  height: 100%;
}

.p-employee-interview__text {
  color: #464a4d;
  text-align: center;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2.56px;
}

.p-employee-interview__container {
  -webkit-margin-before: 5.625rem;
  margin-block-start: 5.625rem;
  border-radius: 32px;
  background: #fafafa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5.625rem 4rem;
  -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: 2rem;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-employee-interview__container {
    -webkit-margin-before: 0rem;
    margin-block-start: 0rem;
    padding: 4rem 0px 2.5rem 0px;
    gap: 2.5rem;
  }
}

.p-employee-interview__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3.75rem 4.375rem;
  -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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.5rem;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-employee-interview__card {
    padding: 0.625rem 1rem;
  }
}

.p-employee-interview__card--number {
  position: absolute;
  top: -38px;
  left: 0;
  width: auto;
  height: auto;
  font-size: 10rem;
  color: #fde9eb;
  text-align: justify;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  line-height: 100%; /* 160px */
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-employee-interview__card--number {
    font-size: 5rem;
    top: -32px;
  }
}

.p-employee-interview__card--q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 0.625rem;
  -moz-column-gap: 0.625rem;
  column-gap: 0.625rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-employee-interview__card--q {
    -webkit-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
  }
}

.p-employee-interview__card--a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-column-gap: 0.625rem;
  -moz-column-gap: 0.625rem;
  column-gap: 0.625rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-employee-interview__card--a {
    -webkit-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
  }
}

.p-employee-interview__card--icon {
  width: 3.125rem;
  height: auto;
  aspect-ratio: 1/1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-employee-interview__card--icon {
    width: 2.5rem;
  }
}
.p-employee-interview__card--icon img {
  width: 100%;
  height: 100%;
}

.p-employee-interview__card--title {
  color: #ef6a85;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2.88px;
}
@media screen and (max-width: 767px) {
  .p-employee-interview__card--title {
    font-size: 18px;
    line-height: 120%; /* 21.6px */
    letter-spacing: 1.44px;
  }
}

.p-employee-interview__card--text {
  color: #464a4d;
  text-align: justify;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: 2.4px;
}
.p-employee-interview__card--text span {
  font-weight: 700;
  display: inline;
}

.p-employee-interview__card-cherry {
  position: absolute;
  bottom: -1.5625rem;
  right: -2.8125rem;
  width: 8.125rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-employee-interview__card-cherry {
    width: 3.375rem;
    height: auto;
    right: -0.4375rem;
    bottom: -0.375rem;
  }
}
.p-employee-interview__card-cherry img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-employee-story {
  padding-block: 5.625rem;
  background: url(../img/employee/employee-story-top.png) no-repeat center
    center/cover;
  position: relative;
  overflow: hidden;
  background: #f8f8f8;
}
@media screen and (max-width: 767px) {
  .p-employee-story {
    padding-block: 6rem;
  }
}

.p-employee-story__inner {
  max-width: 57.5rem;
}

.p-employee-story__head {
  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: 0.5625rem;
  -moz-column-gap: 0.5625rem;
  column-gap: 0.5625rem;
  position: relative;
  text-align: center;
  z-index: 1;
}
.p-employee-story__head span {
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 4.32px;
}
@media screen and (max-width: 767px) {
  .p-employee-story__head span {
    font-size: 1.25rem;
    letter-spacing: 2.4px;
  }
}
.p-employee-story__head svg {
  width: 57px;
  height: 57px;
  aspect-ratio: 1/1;
}
.p-employee-story__head::before {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  width: 30.0625rem;
  height: 11.0625rem;
  background: url(../img/employee/story.png) no-repeat center center/contain;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-employee-story__head::before {
    width: 22.5625rem;
    height: 6rem;
  }
}

.p-employee-story__wrap {
  -webkit-margin-before: 5.625rem;
  margin-block-start: 5.625rem;
  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: 3.6875rem;
  -moz-column-gap: 3.6875rem;
  column-gap: 3.6875rem;
}

.p-employee-story__card {
  border-radius: 24px;
  background: #ffffff;
  position: relative;
  -webkit-margin-before: 6.6875rem;
  margin-block-start: 6.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 11.875rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-employee-story__card-top {
  position: absolute;
  top: -110px;
  right: -59px;
  width: 302px;
  height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -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;
  background: url(../img/employee/employee-story-top.png) no-repeat center
    center/cover;
  color: #6a6e73;
  text-align: center;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 110%; /* 26.4px */
  letter-spacing: 2.88px;
}
.p-employee-story__card-top span {
  font-size: 1rem;
  line-height: 130%; /* 20.8px */
  letter-spacing: 1.92px;
}
.p-employee-story__card-top.--1 {
  -webkit-padding-before: 37px;
  padding-block-start: 37px;
}
.p-employee-story__card-top.--2 {
  -webkit-padding-before: 44px;
  padding-block-start: 44px;
}

.p-employee-story__card-main {
  color: #ee7f9f;
  text-align: justify;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 130%; /* 52px */
  letter-spacing: 4.8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.p-employee-story__card-main span {
  font-size: 4rem;
}

.p-recruit__item {
  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;
}
@media screen and (max-width: 767px) {
  .p-recruit__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 2.5rem;
  }
}

.p-recruit__item1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
  overflow: hidden;
  min-width: 0;
}
@media (max-width: 999px) {
  .p-recruit__item1 {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
  }
}

.p-recruit__text--text {
  width: min(32.5rem, 100%);
}

.p-recruit__box--title {
  font-size: max(1rem, 12.8px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-recruit__box--title {
    font-size: 1rem;
  }
}

.p-recruit__item--img {
  width: min(28rem, 100%);
  height: auto;
  aspect-ratio: 448/270;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.p-recruit__item--img img {
  width: 100%;
  height: 100%;
}

.p-recruit__item2 {
  -webkit-padding-before: 2.5rem;
  padding-block-start: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-recruit__item2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    row-gap: 0.625rem;
    padding-inline: 1.71875rem;
  }
}

.p-recruit__item2__box {
  width: 17.5rem;
  height: 22.5rem;
  padding-block: 2.5rem;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.25rem;
  background: #fafafa;
  border-radius: 0.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruit__item2__box {
    width: 100%;
    height: auto;
    padding-block: 1.875rem 1.25rem;
    gap: 1.25rem;
  }
}

.p-recruit__item2--arrow {
  width: 1.4375rem;
  height: auto;
  aspect-ratio: 23/34;
}
@media screen and (max-width: 767px) {
  .p-recruit__item2--arrow {
    rotate: 90deg;
  }
}
.p-recruit__item2--arrow svg {
  width: 100%;
  height: 100%;
}

.p-recruit__item2--img {
  width: 6.875rem;
  height: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.p-recruit__item2--img svg {
  width: 100%;
  height: 100%;
}

.p-recruit__item2--box-head {
  width: 100%;
  background: #649bcb;
  padding: 0.625rem;
  text-align: center;
  color: #fafafa;
  font-size: 1.5rem;
  font-weight: 900;
}
.p-recruit__item2--box-head.--1 {
  background: #2b97d7;
}
.p-recruit__item2--box-head.--2 {
  background: #005bac;
}
.p-recruit__item2--box-head.--3 {
  background: #036;
}
@media screen and (max-width: 767px) {
  .p-recruit__item2--box-head {
    padding: 0.4375rem;
  }
}

.p-recruit__item2--box-text {
  text-align: center;
}

.p-recruit__items4 {
  -webkit-padding-before: 2.5rem;
  padding-block-start: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__items4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-inline: 1.71875rem;
    row-gap: 1.875rem;
    -webkit-padding-before: 0.5rem;
    padding-block-start: 0.5rem;
  }
}

.p-recruit__item4 {
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fafafa;
  width: 100%;
}

.p-recruit__item4--head {
  padding: 0.625rem 1.25rem;
  background: var(
    --2,
    linear-gradient(
      254deg,
      #e5f7ff -6.09%,
      #43b9f0 11.34%,
      #005bac 43.9%,
      #003270 80.43%,
      #036 100%
    )
  );
}

.p-recruit__head--title {
  color: #fafafa;
  font-weight: 700;
  text-align: center;
}

.p-recruit__item4--lists {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-block: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__item4--lists {
    row-gap: 0;
  }
}

.p-recruit__item4--list {
  display: grid;
  grid-template-columns: 4.375rem 1fr;
  row-gap: 0.5rem;
  -webkit-column-gap: 0.375rem;
  -moz-column-gap: 0.375rem;
  column-gap: 0.375rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-recruit__item4--img {
  height: auto;
}
.p-recruit__item4--img.--1 {
  width: 4.375rem;
  aspect-ratio: 1;
}
.p-recruit__item4--img.--2 {
  width: 3.5625rem;
  height: 3.5rem;
}
.p-recruit__item4--img.--3 {
  width: 3rem;
  height: 3.5rem;
}
.p-recruit__item4--img.--4 {
  width: 4.3125rem;
  height: 2.625rem;
}
.p-recruit__item4--img svg {
  width: 100%;
  height: 100%;
}

.p-recruit__item4--text {
  font-weight: 700;
}

.p-recruit__item4--number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #005bac;
  font-family: "Roboto", sans-serif;
}
.p-recruit__item4--number p {
  font-size: 1.125rem;
  font-weight: 900;
}
.p-recruit__item4--number span {
  font-size: 2.5rem;
  font-weight: 900;
}
.p-recruit__item4--number svg {
  width: 1.625rem;
  height: 1.625rem;
  aspect-ratio: 1/1;
}

.p-introduction {
  -webkit-padding-before: 5rem;
  padding-block-start: 5rem;
}

.p-introduction__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-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-introduction__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 2.25rem;
  }
}

.p-introduction__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.875rem 1.25rem;
  -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: 1.25rem;
  border-radius: 1.875rem;
  background: #fafafa;
}

.p-introduction__card--img {
  width: min(18.75rem, 100%);
  height: auto;
  aspect-ratio: 300/180;
}

.p-introduction__card--body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-introduction__title {
  color: #005bac;
  font-size: max(1.625rem, 20.8px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.01em;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-introduction__title {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-introduction__title {
    text-align: center;
  }
}

.p-introduction__text {
  -webkit-padding-after: 1.25rem;
  padding-block-end: 1.25rem;
}

@media screen and (max-width: 767px) {
  .p-introduction--btn {
    margin-inline: auto;
  }
}

.p-development__box {
  border-radius: 1.875rem;
  background: #fafafa;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.25rem 1.875rem 1.875rem;
}
.p-development__box.--1 {
  row-gap: 1.125rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-development__box.--1 {
    row-gap: 0.75rem;
    -webkit-padding-after: 1.25rem;
    padding-block-end: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-development__box {
    height: auto;
    row-gap: 1.25rem;
    padding: 1.875rem 1.25rem;
  }
}

.p-development__item1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
  overflow: hidden;
  min-width: 0;
}
@media (max-width: 999px) {
  .p-development__item1 {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
  }
}

.p-development__box--title {
  font-size: max(1rem, 12.8px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-development__box--title {
    font-size: 1rem;
  }
}
.p-development__box--title.--bottom {
  padding-bottom: 2.6875rem;
}

.p-development__box--wrap {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  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: 1.5rem;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
}

.p-development__box-pmo {
  position: absolute;
  top: -51px;
  left: 66px;
}
@media (max-width: 1100px) {
  .p-development__box-pmo {
    top: -42px;
    left: 57px;
  }
}
@media screen and (max-width: 767px) {
  .p-development__box-pmo {
    top: -48px;
    left: 52px;
  }
}

.p-development__box-pm {
  position: absolute;
  top: -40px;
  right: 37px;
}
@media (max-width: 1100px) {
  .p-development__box-pm {
    top: -34px;
    right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-development__box-pm {
    top: -48px;
    right: 27px;
  }
}

.p-development__box-pl {
  position: absolute;
  top: 63px;
  right: 0;
}
@media (max-width: 1100px) {
  .p-development__box-pl {
    top: 51px;
  }
}
@media screen and (max-width: 767px) {
  .p-development__box-pl {
    top: 40px;
  }
}

.p-development__box-se {
  position: absolute;
  bottom: 0;
  right: 21px;
}
@media (max-width: 1100px) {
  .p-development__box-se {
    right: 17px;
  }
}
@media screen and (max-width: 767px) {
  .p-development__box-se {
    right: 15px;
    bottom: -3px;
  }
}

.p-development__box-pg {
  position: absolute;
  top: 64px;
  left: 0;
}
@media (max-width: 1100px) {
  .p-development__box-pg {
    top: 51px;
  }
}
@media screen and (max-width: 767px) {
  .p-development__box-pg {
    top: 41px;
  }
}

.p-development__box--img1 {
  height: auto;
}
.p-development__box--img1 img {
  width: 100%;
  height: 100%;
}
.p-development__box--img1.--1 {
  width: 18.75rem;
}
.p-development__box--img1.--2 {
  width: 372px;
}
@media (max-width: 1100px) {
  .p-development__box--img1.--2 {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .p-development__box--img1.--2 {
    width: 289px;
  }
}
.p-development__box--img1.--3 {
  width: 8.125rem;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .p-development__box--img1.--3 {
    display: none;
  }
}
.p-development__box--img1.--4 {
  width: 11.25rem;
  aspect-ratio: 1;
}

.p-development__box--text span {
  color: #005bac;
  font-size: max(1.125rem, 14.4px);
  font-weight: 700;
  line-height: 11.1111111111%;
  letter-spacing: 0.02em;
  display: inline;
}
@media screen and (max-width: 767px) {
  .p-development__box--text span {
    font-size: 1.125rem;
  }
}

.p-development__box--btn {
  -webkit-margin-start: auto;
  margin-inline-start: auto;
}
@media screen and (max-width: 767px) {
  .p-development__box--btn {
    margin-inline: auto;
  }
}

.p-development__box--post {
  color: #005bac;
  font-size: max(1.125rem, 14.4px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-development__box--post {
    font-size: 1.125rem;
  }
}

.p-development__box--data {
  font-size: max(0.875rem, 11.2px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.0142857143em;
  -webkit-margin-before: -0.5rem;
  margin-block-start: -0.5rem;
}
@media screen and (max-width: 767px) {
  .p-development__box--data {
    font-size: 0.875rem;
  }
}

.p-development__flame {
  -webkit-margin-before: 2.5rem;
  margin-block-start: 2.5rem;
  border-radius: 1.875rem;
  overflow: hidden;
  background: #fafafa;
}

.p-development__flame--head {
  padding-block: 0.875rem;
  background: var(
    --2,
    linear-gradient(
      254deg,
      #e5f7ff -6.09%,
      #43b9f0 11.34%,
      #005bac 43.9%,
      #003270 80.43%,
      #036 100%
    )
  );
}

.p-development__flame--title {
  text-align: center;
  font-size: max(1.125rem, 14.4px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.02em;
  color: #fafafa;
}
@media screen and (max-width: 767px) {
  .p-development__flame--title {
    font-size: 1.125rem;
  }
}

.p-development__body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding-block: 2.5rem 1.25rem;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-development__body {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 1000px) {
  .p-development__body {
    padding-inline: 1.25rem;
  }
}

.p-development__card {
  width: 100%;
}

.p-development__card--img {
  width: 100%;
  height: auto;
  aspect-ratio: 210/180;
  -webkit-margin-after: 1.25rem;
  margin-block-end: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-development__card--img {
    aspect-ratio: 295/180;
    -webkit-margin-after: 0.625rem;
    margin-block-end: 0.625rem;
  }
}
.p-development__card--img img {
  width: 100%;
  height: 100%;
}
.p-development__card--img picture {
  width: 100%;
  height: 100%;
}

.p-sales-point__item1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-sales-point__item1 {
    grid-template-columns: 1fr;
  }
}

.p-sales-point__box {
  border-radius: 1.875rem;
  background: #fafafa;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 17.5rem;
  -webkit-padding-before: 1.25rem;
  padding-block-start: 1.25rem;
}
.p-sales-point__box.--1 {
  row-gap: 1.125rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-sales-point__box.--1 {
    row-gap: 0.75rem;
    -webkit-padding-after: 1.25rem;
    padding-block-end: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-sales-point__box {
    height: auto;
    row-gap: 1.25rem;
  }
}

.p-sales-point__box--title {
  font-size: max(1rem, 12.8px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-sales-point__box--title {
    font-size: 1rem;
  }
}

.p-sales-point__box--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.875rem;
  -moz-column-gap: 1.875rem;
  column-gap: 1.875rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-sales-point__box--wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 0.75rem;
  }
}

.p-sales-point__box--img1 {
  height: auto;
}
.p-sales-point__box--img1 img {
  width: 100%;
  height: 100%;
}
.p-sales-point__box--img1.--1 {
  width: 11.25rem;
  aspect-ratio: 1;
}
.p-sales-point__box--img1.--2 {
  width: 18.75rem;
}
.p-sales-point__box--img1.--3 {
  width: 13.75rem;
}

.p-sales-point__box--lists {
  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.125rem;
}
@media screen and (max-width: 767px) {
  .p-sales-point__box--lists {
    row-gap: 0;
  }
}

.p-sales-point__box--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-sales-point__box--list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-column-gap: 0.3125rem;
    -moz-column-gap: 0.3125rem;
    column-gap: 0.3125rem;
  }
}

.p-sales-point__box--row {
  font-size: max(0.875rem, 11.2px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
  -webkit-padding-start: 1rem;
  padding-inline-start: 1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sales-point__box--row {
    font-size: 0.875rem;
  }
}
.p-sales-point__box--row::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  background: #005bac;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 100vmax;
  aspect-ratio: 1/1;
}
.p-sales-point__box--row.--2::before {
  background: #2070b6;
}
.p-sales-point__box--row.--3::before {
  background: #bfbfbf;
}

.p-sales-point__box--row--text {
  -webkit-padding-start: 1rem;
  padding-inline-start: 1rem;
  font-size: max(0.875rem, 11.2px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-sales-point__box--row--text {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-sales-point__box--row--text {
    -webkit-padding-start: 0;
    padding-inline-start: 0;
  }
}

.p-sales-point__box--texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 6.5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-sales-point__box--text {
  font-size: max(1rem, 12.8px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.02em;
  -webkit-padding-before: 0.9375rem;
  padding-block-start: 0.9375rem;
  -webkit-padding-end: 0.25rem;
  padding-inline-end: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-sales-point__box--text {
    font-size: 1rem;
  }
}
.p-sales-point__box--text span {
  font-size: max(1.5rem, 19.2px);
  font-weight: 900;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-sales-point__box--text span {
    font-size: 1.5rem;
  }
}

.p-sales-point__box--text--blue {
  color: #005bac;
  font-size: max(1.625rem, 20.8px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-sales-point__box--text--blue {
    font-size: 1.625rem;
  }
}
.p-sales-point__box--text--blue span {
  font-size: max(3.25rem, 41.6px);
  font-weight: 900;
  line-height: 2;
  letter-spacing: -0.01em;
  font-family: "Roboto", sans-serif;
  padding-inline: 0.125rem;
}
@media screen and (max-width: 767px) {
  .p-sales-point__box--text--blue span {
    font-size: 3.25rem;
  }
}

.p-sales-point__item--top {
  -webkit-padding-after: 2.5rem;
  padding-block-end: 2.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: 0.5rem;
}

.p-sales-point__item2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5625rem;
}
@media (max-width: 1100px) {
  .p-sales-point__item2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .p-sales-point__item2 {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}

.p-sales-point__item2--box {
  background: #fafafa;
  border-radius: 0.625rem;
  overflow: hidden;
}

.p-sales-point__item2__box--head {
  color: #fafafa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.625rem 1.25rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: max(1.25rem, 16px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-sales-point__item2__box--head {
    font-size: 1.25rem;
  }
}
.p-sales-point__item2__box--head.--1 {
  background: #2b97d7;
}
.p-sales-point__item2__box--head.--2 {
  background: #005bac;
}
.p-sales-point__item2__box--head.--3 {
  background: #036;
}

.p-sales-point__item2--body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 26.5625rem;
  padding: 1.4375rem 1.25rem 1.875rem 1.25rem;
  -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;
}
@media screen and (max-width: 767px) {
  .p-sales-point__item2--body {
    height: auto;
    row-gap: 1.25rem;
  }
}

.p-sales-point__item2--title {
  font-size: max(1.125rem, 14.4px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-sales-point__item2--title {
    font-size: 1.125rem;
  }
}

.p-sales-point__item2--text.--1 span {
  color: #2b97d7;
  font-weight: 700;
  display: inline;
}
.p-sales-point__item2--text.--2 span {
  color: #005bac;
  font-weight: 700;
  display: inline;
}
.p-sales-point__item2--text.--3 span {
  color: #036;
  display: inline;
  font-weight: 700;
}

.p-sales-point__item3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-sales-point__item3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    row-gap: 0.5rem;
    padding-inline: 1.71875rem;
  }
}

.p-sales-point__item3__box {
  width: 17.5rem;
  height: 22.5rem;
  padding-block: 2.5rem;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.875rem;
  background: #fafafa;
  border-radius: 0.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sales-point__item3__box {
    width: 100%;
    max-width: 21.875rem;
    padding-block: 1.5625rem;
  }
}

.p-sales-point__item3--arrow {
  width: 1.4375rem;
  height: auto;
  aspect-ratio: 23/34;
}
@media screen and (max-width: 767px) {
  .p-sales-point__item3--arrow {
    rotate: 90deg;
  }
}
.p-sales-point__item3--arrow svg {
  width: 100%;
  height: 100%;
}

.p-sales-point__item3__box--number {
  position: absolute;
  top: 0;
  left: 0;
  width: 3.125rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 0.625rem 0px 0px 0px;
  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;
  color: #fafafa;
  font-size: 1.75rem;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
}
.p-sales-point__item3__box--number.--1 {
  background: #2b97d7;
}
.p-sales-point__item3__box--number.--2 {
  background: #005bac;
}
.p-sales-point__item3__box--number.--3 {
  background: #036;
}

.p-sales-point__item3--img {
  width: 6.875rem;
  height: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.p-sales-point__item3--img svg {
  width: 100%;
  height: 100%;
}

.p-sales-point__item3--box-head {
  width: 100%;
  padding: 0.625rem;
  text-align: center;
  color: #fafafa;
  font-size: max(1.125rem, 14.4px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-sales-point__item3--box-head {
    font-size: 1.125rem;
  }
}
.p-sales-point__item3--box-head.--1 {
  background: #2b97d7;
}
.p-sales-point__item3--box-head.--2 {
  background: #005bac;
}
.p-sales-point__item3--box-head.--3 {
  background: #036;
}
@media screen and (max-width: 767px) {
  .p-sales-point__item3--box-head {
    padding: 0.4375rem;
  }
}

.p-sales-point__item3--box-text {
  text-align: center;
}

.p-aim {
  overflow: hidden;
  -webkit-margin-before: -7.0625rem;
  margin-block-start: -7.0625rem;
}
@media screen and (max-width: 767px) {
  .p-aim {
    -webkit-margin-before: -3.75rem;
    margin-block-start: -3.75rem;
  }
}

.p-aim__inner {
  padding-inline: 5rem;
}
@media screen and (max-width: 767px) {
  .p-aim__inner {
    padding-inline: 1.25rem;
  }
}

.p-aim__contents {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .p-aim__contents {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 3.75rem;
    -webkit-padding-before: 6.25rem;
    padding-block-start: 6.25rem;
    -webkit-padding-start: 0rem;
    padding-inline-start: 0rem;
    -webkit-padding-after: 5rem;
    padding-block-end: 5rem;
  }
}
@media (min-width: 768px) {
  .p-aim__contents {
    -webkit-padding-start: 5rem;
    padding-inline-start: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-column-gap: 4.375rem;
    -moz-column-gap: 4.375rem;
    column-gap: 4.375rem;
    height: 51.25rem;
  }
}
@media (min-width: 1280px) {
  .p-aim__contents {
    -webkit-padding-start: 11.1111111111%;
    padding-inline-start: 11.1111111111%;
  }
}
@media (min-width: 1500px) {
  .p-aim__contents {
    -webkit-padding-start: 12.5%;
    padding-inline-start: 12.5%;
  }
}
@media (min-width: 1600px) {
  .p-aim__contents {
    -webkit-padding-start: 15.2777777778%;
    padding-inline-start: 15.2777777778%;
  }
}
.p-aim__contents::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: calc(100% + 50vw - 50%);
  height: 100%;
  border-radius: 0px 0px 60px 0px;
  background: var(
    --2,
    linear-gradient(
      254deg,
      #e5f7ff -6.09%,
      #43b9f0 11.34%,
      #005bac 43.9%,
      #003270 80.43%,
      #036 100%
    )
  );
}

.p-aim__swiper--wrap {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-column-gap: 0.625rem;
  -moz-column-gap: 0.625rem;
  column-gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-aim__swiper--wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 0.25rem;
  }
}

.p-aim__swiper-container,
.p-aim__swiper,
.p-aim__swiper-wrapper,
.p-aim__swiper-slide {
  position: relative;
}

.p-aim__swiper {
  height: 100%;
}

.p-aim__swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  height: 100%;
}

.p-aim__swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 15rem;
  height: 15rem;
  aspect-ratio: 1;
  border-radius: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-aim__swiper-slide {
    width: 7.5rem;
    height: 7.5rem;
    aspect-ratio: 1/1;
  }
}
.p-aim__swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}

.p-aim__text-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: 2.5rem;
  position: relative;
  z-index: 1;
  -webkit-margin-before: 7.5rem;
  margin-block-start: 7.5rem;
  -webkit-padding-end: 1.25rem;
  padding-inline-end: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-aim__text-wrap {
    -webkit-margin-before: 0;
    margin-block-start: 0;
    row-gap: 2.0625rem;
  }
}

.p-aim__title {
  color: #fafafa;
  font-size: max(2.625rem, 33.6px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-aim__title {
    font-size: 2.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-aim__title {
    font-size: max(1.75rem, 22.4px);
    font-weight: 700;
    line-height: 2.4285714286;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-aim__title {
    font-size: 1.75rem;
  }
}
@media (min-width: 768px) {
  .p-aim__title {
    font-size: max(1.875rem, 24px);
    font-weight: 700;
    line-height: 2.2666666667;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  .p-aim__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 1280px) {
  .p-aim__title {
    font-size: max(2.625rem, 33.6px);
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.01em;
  }
}
@media screen and (min-width: 1280px) and (max-width: 767px) {
  .p-aim__title {
    font-size: 2.625rem;
  }
}

.p-aim__text {
  color: #fafafa;
}
.p-aim__text span {
  font-size: max(1.125rem, 14.4px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-aim__text span {
    font-size: 1.125rem;
  }
}

.p-business {
  padding-block: 7.5rem 8.125rem;
}
@media screen and (max-width: 767px) {
  .p-business {
    padding-block: 5rem 7.1875rem;
  }
}

.p-business__title--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 7.5rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-business__title--wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 2.5rem;
    margin-bottom: 4.5625rem;
  }
}

.p-business__title--text {
  width: 55.5555555556%;
}
@media screen and (max-width: 767px) {
  .p-business__title--text {
    width: 100%;
  }
}

.p-business__title-jp {
  -webkit-padding-after: 1.4375rem;
  padding-block-end: 1.4375rem;
}

.p-business__text--text {
  -webkit-margin-before: 1.25rem;
  margin-block-start: 1.25rem;
}

.p-business__title--img {
  width: 36.2037037037%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-business__title--img {
    width: 100%;
    max-width: 24.5rem;
    margin-inline: auto;
  }
}
.p-business__title--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-business__items__inner {
  position: relative;
  width: 100%;
  height: inherit;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-business__items__inner {
    width: 100%;
    max-width: 640px;
  }
}

.p-business__items {
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-business__items {
    padding-inline: 0;
  }
}

.p-business__item {
  padding-block: 5rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-image: radial-gradient(circle, #aeaeae 2px, transparent 2px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 20px 4px;
}
@media screen and (max-width: 767px) {
  .p-business__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    row-gap: 0.75rem;
    padding-block: 3.75rem 8.375rem;
  }
}
.p-business__item:first-child {
  -webkit-padding-before: 0;
  padding-block-start: 0;
}
.p-business__item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .p-business__item:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .p-business__item:nth-of-type(even) {
    -webkit-column-gap: 1.875rem;
    -moz-column-gap: 1.875rem;
    column-gap: 1.875rem;
  }
}
@media (min-width: 1280px) {
  .p-business__item:nth-of-type(even) {
    -webkit-column-gap: 3.75rem;
    -moz-column-gap: 3.75rem;
    column-gap: 3.75rem;
  }
}
@media (min-width: 1280px) {
  .p-business__item:nth-of-type(even) {
    -webkit-column-gap: 7.5rem;
    -moz-column-gap: 7.5rem;
    column-gap: 7.5rem;
  }
}
.p-business__item:last-child {
  -webkit-padding-after: 0;
  padding-block-end: 0;
  background: none;
}

@media screen and (max-width: 767px) {
  .p-business__item--texts {
    width: 100%;
  }
}

.p-business__item--title {
  color: #005bac;
  font-size: max(2.625rem, 33.6px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.01em;
  -webkit-margin-after: 0.25rem;
  margin-block-end: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-business__item--title {
    font-size: 2.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-business__item--title {
    font-size: max(1.875rem, 24px);
    font-weight: 700;
    line-height: 2;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-business__item--title {
    font-size: 1.875rem;
  }
}

.p-business__item--tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.25rem;
  -webkit-margin-after: 2.5rem;
  margin-block-end: 2.5rem;
}

.p-business__tag {
  border-radius: 1.875rem;
  background: #005bac;
  height: 1.875rem;
  padding-inline: 1rem;
  color: #fafafa;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
}
.p-business__item--text {
  -webkit-margin-after: 3.75rem;
  margin-block-end: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-business__item--text {
    -webkit-margin-after: 0.75rem;
    margin-block-end: 0.75rem;
  }
}

.p-business__item--texts-logo {
  position: absolute;
  z-index: 0;
  top: 50%;
  translate: 0 -50%;
  left: 12.5rem;
  height: 5.3125rem;
}
.p-business__item--texts-logo img {
  width: 100%;
  height: 100%;
}
.p-business__item--texts-logo.--1 {
  width: 23.6875rem;
}
@media screen and (max-width: 767px) {
  .p-business__item--texts-logo.--1 {
    width: 15.8125rem;
  }
}
.p-business__item--texts-logo.--2 {
  width: 10.4375rem;
}
@media screen and (max-width: 767px) {
  .p-business__item--texts-logo.--2 {
    width: 6.9375rem;
  }
}
.p-business__item--texts-logo.--3 {
  width: 30.625rem;
}
@media screen and (max-width: 767px) {
  .p-business__item--texts-logo.--3 {
    width: 20.4375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-business__item--texts-logo {
    height: auto;
    top: 19.0625rem;
    translate: 0 0;
    left: auto;
    right: 0;
  }
}

.p-business__item--btn {
  position: relative;
  padding-block: 1.3125rem 1.25rem;
}

.p-business__item--img {
  border-radius: 1.25rem;
  width: min(33.125rem, 100%);
  height: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-business__item--img {
    width: 20.9375rem;
    margin-inline: auto;
  }
}
.p-business__item--img img {
  width: 100%;
  height: 100%;
}

.p-clients {
  padding-block: 6.25rem 4.625rem;
}
@media screen and (max-width: 767px) {
  .p-clients {
    padding-block: 5rem;
  }
}

.p-clients__bg {
  position: absolute;
  width: 23.75rem;
  height: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  aspect-ratio: 7/8;
  top: -3.5rem;
  right: -0.0625rem;
}
@media screen and (max-width: 767px) {
  .p-clients__bg {
    display: none;
  }
}
.p-clients__bg svg {
  width: 100%;
  height: 100%;
}

.p-clients__head {
  margin-bottom: 0;
}

.p-clients__title--jp {
  margin-bottom: 1.5625rem;
}

.p-clients__title--text {
  padding-inline: 2.625rem;
}
@media screen and (max-width: 767px) {
  .p-clients__title--text {
    padding-inline: 0;
  }
}

.p-clients__title-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(1.125rem, 14.4px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-clients__title-text {
    font-size: 1.125rem;
  }
}
.p-clients__title-text span {
  font-size: max(1.5rem, 19.2px);
  font-weight: 700;
  line-height: 8.3333333333%;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-clients__title-text span {
    font-size: 1.5rem;
  }
}

.p-clients__boxes {
  border-radius: 1.875rem;
  background: #ffffff;
  padding: 2.5rem;
  width: 100%;
  -webkit-margin-before: 3.75rem;
  margin-block-start: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-clients__boxes {
    -webkit-margin-before: 2.5rem;
    margin-block-start: 2.5rem;
    padding: 1.875rem 1.25rem;
  }
}

.p-clients__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 2.6875rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.p-clients__box img {
  width: calc((100% - 80px) / 6); /* gap含めて6分割 */
  height: 5rem;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-clients__box {
    row-gap: 0.9375rem;
  }
  .p-clients__box img {
    width: calc((100% - 32px) / 3);
    height: 3rem;
    -o-object-fit: contain;
    object-fit: contain;
  }
}
@media (min-width: 640px) {
  .p-clients__box {
    row-gap: 0.625rem;
  }
  .p-clients__box img {
    width: calc((100% - 48px) / 4);
    height: 3rem;
    -o-object-fit: contain;
    object-fit: contain;
  }
}
@media (min-width: 768px) {
  .p-clients__box {
    row-gap: 2.6875rem;
  }
  .p-clients__box img {
    width: calc((100% - 80px) / 6); /* gap含めて6分割 */
    height: 5rem;
    -o-object-fit: contain;
    object-fit: contain;
  }
}
.p-clients__box:nth-of-type(2) {
  -webkit-margin-before: 2.6875rem;
  margin-block-start: 2.6875rem;
}
.p-clients__box:nth-of-type(2) img {
  width: calc((100% - 96px) / 7); /* gap含めて6分割 */
  height: 5rem;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-clients__box:nth-of-type(2) {
    -webkit-margin-before: 0.9375rem;
    margin-block-start: 0.9375rem;
  }
  .p-clients__box:nth-of-type(2) img {
    width: calc((100% - 32px) / 3);
    height: 3rem;
    -o-object-fit: contain;
    object-fit: contain;
  }
}
@media (min-width: 640px) {
  .p-clients__box:nth-of-type(2) img {
    width: calc((100% - 48px) / 4);
    height: 3rem;
    -o-object-fit: contain;
    object-fit: contain;
  }
}
@media (min-width: 768px) {
  .p-clients__box:nth-of-type(2) img {
    width: calc((100% - 96px) / 7); /* gap含めて6分割 */
    height: 5rem;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

.p-position {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-position {
    padding-inline: 0;
    -webkit-margin-end: 1.25rem;
    margin-inline-end: 1.25rem;
  }
}
.p-position::after {
  border-radius: 0px 60px 60px 0px;
  content: "";
  position: absolute;
  background: url(../img/topnew05/blue-bg.png) no-repeat center center/cover;
  z-index: 0;
  top: 0;
  right: 0;
  width: calc(100% + 50vw - 50%);
  height: 100%;
}

.p-position__bg--img {
  position: absolute;
  top: 0;
  right: 5rem;
  width: 15.1875rem;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-position__bg--img {
    width: 100%;
    height: auto;
    top: auto;
    bottom: 0;
    right: 0;
    z-index: -1;
  }
  .p-position__bg--img img {
    border-radius: 0 0 3.75rem 0;
  }
}
@media (min-width: 768px) {
  .p-position__bg--img {
    top: 0;
    right: 2.5rem;
    width: 15.1875rem;
    height: 100%;
  }
}
@media (min-width: 1280px) {
  .p-position__bg--img {
    right: 5rem;
  }
}
.p-position__bg--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-position__bg--img picture {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-position__bg--img picture {
    height: auto;
  }
}

.p-position__inner {
  position: relative;
  z-index: 1;
  max-width: 81.25rem;
  margin-inline: auto;
  padding-block: 5rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-position__inner {
    padding-block: 5rem 13.0625rem;
    padding-inline: 1.25rem;
  }
}

.p-position__boxes {
  border-radius: 1.25rem;
  background: rgba(250, 250, 250, 0.2);
  padding: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: min(46.25rem, 100%);
  -webkit-margin-before: 3.75rem;
  margin-block-start: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-position__boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-margin-before: 2.5rem;
    margin-block-start: 2.5rem;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    row-gap: 1.5rem;
  }
}

.p-position__box {
  background: #fafafa;
  padding: 1.25rem 1.25rem 1.875rem 1.25rem;
  width: min(20.625rem, 100%);
  height: 17.5rem;
  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;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-position__box {
    height: auto;
    row-gap: 2.1875rem;
    width: 100%;
  }
}

.p-position__box--title {
  font-size: max(1.5rem, 19.2px);
  font-weight: 700;
  line-height: 2.2916666667;
}
@media screen and (max-width: 767px) {
  .p-position__box--title {
    font-size: 1.5rem;
  }
}

.p-position__box2 {
  -webkit-margin-before: 2.3125rem;
  margin-block-start: 2.3125rem;
  background: #fafafa;
  padding: 1.875rem 2.5rem 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 3.75rem;
  -moz-column-gap: 3.75rem;
  column-gap: 3.75rem;
  width: min(46.25rem, 100%);
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-position__box2 {
    padding: 1.25rem 1.25rem 2.3125rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1.25rem;
    -webkit-margin-before: 2.8125rem;
    margin-block-start: 2.8125rem;
    border-radius: 0.625rem;
  }
}

.p-position__box--img {
  width: 18.125rem;
  height: auto;
  aspect-ratio: 290/165;
}
@media screen and (max-width: 767px) {
  .p-position__box--img {
    width: 100%;
    aspect-ratio: 275/165;
  }
}
.p-position__box--img img {
  width: 100%;
  height: 100%;
}

.p-position__right {
  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.875rem;
}

.p-position__right--text span {
  font-weight: 700;
  display: inline;
}

.c-text-small {
  color: #fafafa;
  font-size: max(0.875rem, 11.2px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.02em;
  -webkit-margin-before: 1.25rem;
  margin-block-start: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-text-small {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .c-text-small {
    font-size: max(0.75rem, 9.6px);
    font-weight: 400;
    line-height: 2.3333333333;
    letter-spacing: 0.02em;
    -webkit-margin-before: 0.75rem;
    margin-block-start: 0.75rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .c-text-small {
    font-size: 0.75rem;
  }
}

.p-location {
  padding-block: 7.75rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-location {
    padding-block: 5rem 3.75rem;
  }
}

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

.p-location__message {
  width: min(40rem, 100%);
}

.p-location__message--title__text {
  padding-inline: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-location__message--title__text {
    padding-inline: 0;
  }
}

.p-location__img {
  -webkit-margin-before: 7.5rem;
  margin-block-start: 7.5rem;
  width: min(37.5rem, 100%);
  height: auto;
  aspect-ratio: 600/473;
}
@media screen and (max-width: 767px) {
  .p-location__img {
    -webkit-margin-before: 0;
    margin-block-start: 0;
  }
}
.p-location__img img {
  width: 100%;
  height: 100%;
}

.p-location__lists {
  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.3125rem;
}

.p-location__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-location__list {
    -webkit-column-gap: 0.625rem;
    -moz-column-gap: 0.625rem;
    column-gap: 0.625rem;
  }
}

.p-location__list--img {
  width: 6.9375rem;
  height: 7.25rem;
  aspect-ratio: 111/116;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-location__list--img {
    width: 6.375rem;
    width: 102.778px;
    height: 107.407px;
    aspect-ratio: 101/107;
  }
}
.p-location__list--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.25rem;
}

.p-location__list--title {
  color: #005bac;
  font-size: max(1.625rem, 20.8px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-location__list--title {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-location__list--title {
    font-size: max(1.375rem, 17.6px);
    font-weight: 700;
    line-height: 2;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-location__list--title {
    font-size: 1.375rem;
  }
}

.p-location__list--text {
  font-size: max(1rem, 12.8px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-location__list--text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-location__list--text {
    font-size: max(0.875rem, 11.2px);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-location__list--text {
    font-size: 0.875rem;
  }
}

.p-cta {
  padding-block: 5rem 5.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding-block: 5.9375rem 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta.--page {
    padding-block: 7.5rem 5rem;
  }
  .p-cta.--page .p-cta__top-img {
    top: 2.125rem;
  }
}

.p-cta__inner {
  padding-inline: 5rem;
}
@media screen and (max-width: 767px) {
  .p-cta__inner {
    padding-inline: 1.25rem;
  }
}

.p-cta__top-img {
  position: absolute;
  left: 8.8125rem;
  top: 2.125rem;
  width: 108.125rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-cta__top-img {
    width: 57.8125rem;
  }
}
.p-cta__top-img img {
  width: 100%;
  height: 100%;
}

.p-cta__infinity {
  position: absolute;
  left: 8.8125rem;
  top: 2.125rem;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-cta__infinity {
    z-index: 4;
    left: 1.75rem;
    top: 0.9375rem;
  }
}

.p-cta__scroll-infinity__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-animation: infinity-scroll-left 20s linear infinite;
  animation: infinity-scroll-left 20s linear infinite;
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.p-cta__scroll--img {
  width: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 108.125rem;
  height: auto;
  margin-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-cta__scroll--img {
    width: 57.8125rem;
  }
}
.p-cta__scroll--img img {
  width: 100%;
  height: 100%;
}

.p-cta__box {
  -webkit-margin-before: 8.75rem;
  margin-block-start: 8.75rem;
  border-radius: 1.875rem;
  background: url(../img/topnew05/cta-bg.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-cta__box {
    background: url(../img/topnew05/cta-bg-sp.png) no-repeat center center/cover;
    -webkit-margin-before: 0rem;
    margin-block-start: 0rem;
  }
}

.p-cta__body {
  padding-block: 5rem 5.8125rem;
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-cta__body {
    padding-block: 3.125rem 3.75rem;
  }
}
@media (min-width: 1500px) {
  .p-cta__body {
    padding-block: 9.375rem 10.1875rem;
  }
}

.p-cta__title {
  color: #ffffff;
  font-size: max(2.625rem, 33.6px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.01em;
  -webkit-margin-after: 1.875rem;
  margin-block-end: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-cta__title {
    font-size: 2.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__title {
    font-size: max(1.5rem, 19.2px);
    font-weight: 700;
    line-height: 1.95;
    letter-spacing: 0.0108333333em;
    -webkit-margin-after: 6.25rem;
    margin-block-end: 6.25rem;
    white-space: nowrap;
    text-align: center;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-cta__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .p-cta__title {
    font-size: max(1.875rem, 24px);
    font-weight: 700;
    line-height: 2.52;
    letter-spacing: 0.014em;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  .p-cta__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 1280px) {
  .p-cta__title {
    font-size: max(2.625rem, 33.6px);
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.01em;
  }
}
@media screen and (min-width: 1280px) and (max-width: 767px) {
  .p-cta__title {
    font-size: 2.625rem;
  }
}

.p-cta__text {
  -webkit-margin-after: 0.5rem;
  margin-block-end: 0.5rem;
  color: #fafafa;
  font-size: max(1rem, 12.8px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-cta__text {
    font-size: 1rem;
  }
}

.p-cta__btn {
  border-radius: 148.03px;
  border: 2px solid #ffffff;
  background: #e58d00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: min(22.5rem, 100%);
  height: 3.375rem;
  padding: 0px 1.625rem 0px 2rem;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-cta__btn {
    width: min(18.4375rem, 100%);
  }
}
.p-cta__btn span {
  color: #fafafa;
  font-size: max(1.25rem, 16px);
  font-weight: 700;
  line-height: 0.05;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-cta__btn span {
    font-size: 1.25rem;
  }
}
.p-cta__btn svg {
  width: 1.0625rem;
  height: 1.3125rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  aspect-ratio: 17/21;
  fill: #fafafa;
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}
@media (any-hover: hover) {
  .p-cta__btn:hover {
    background: #fafafa;
  }
  .p-cta__btn:hover span {
    color: #005bac;
  }
  .p-cta__btn:hover svg {
    fill: #005bac;
  }
}

.p-team {
  padding-block: 5rem 11.5rem;
  border-radius: 0 12.5rem;
  -webkit-margin-after: 6.25rem;
  margin-block-end: 6.25rem;
  background: var(
    --2,
    linear-gradient(
      254deg,
      #e5f7ff -6.09%,
      #43b9f0 11.34%,
      #005bac 43.9%,
      #003270 80.43%,
      #036 100%
    )
  );
}
@media screen and (max-width: 767px) {
  .p-team {
    padding-block: 5rem 8.375rem;
    border-radius: 0 6.25rem;
    -webkit-margin-after: 3.3125rem;
    margin-block-end: 3.3125rem;
  }
}

.p-team__title--text {
  padding-inline: 2.625rem;
}
@media screen and (max-width: 767px) {
  .p-team__title--text {
    padding-inline: 0;
  }
}

.p-team__swiper-container,
.p-team__swiper,
.p-team__swiper-wrapper,
.p-team__swiper-slide {
  position: relative;
}

.p-team__swiper-container {
  width: calc(100% + 50vw - 50%);
  -webkit-margin-before: 2.6875rem;
  margin-block-start: 2.6875rem;
}

.p-team__swiper-slide {
  width: 22.5rem;
  height: 38.75rem;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}

.swiper-button-prev,
.swiper-button-next {
  top: calc(100% + 3.75rem);
  width: 2.75rem;
  height: 2.75rem;
  aspect-ratio: 1;
  border: 1px solid #fafafa;
  border-radius: 100vmax;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 13.438px;
  height: 16.682px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  aspect-ratio: 13.44/16.68;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev,
  .swiper-button-next {
    opacity: 0;
    visibility: hidden;
  }
}

.swiper-button-prev {
  right: calc(4rem + 50vw - 50%);
}

.swiper-button-next {
  right: calc(50vw - 50%);
}

.swiper-pagination-bullets.swiper-pagination-horizontal.--swiper4 {
  top: calc(100% + 3.75rem);
}
@media screen and (max-width: 767px) {
  .swiper-pagination-bullets.swiper-pagination-horizontal.--swiper4 {
    top: calc(100% + 2.5rem);
  }
}

.swiper-pagination-bullets.swiper-pagination-horizontal
  .swiper-pagination-bullet {
  opacity: 1;
  width: 0.875rem;
  height: 0.875rem;
  aspect-ratio: 1;
  border-radius: 100vmax;
  border: 1px solid #fafafa;
  background: transparent;
  margin-inline: 0.875rem;
}

.swiper-pagination-bullets.swiper-pagination-horizontal
  .swiper-pagination-bullet-active {
  background: #fafafa;
}

.p-team__card {
  background: #fafafa;
  width: 100%;
  height: 100%;
  padding-left: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 0.75rem;
  row-gap: 0.75rem;
}

.p-team__card--img {
  width: 100%;
  height: auto;
  aspect-ratio: 360/280;
  position: relative;
}
.p-team__card--img img {
  width: 100%;
  height: 100%;
}

.p-team__label {
  position: absolute;
  bottom: -0.0625rem;
  left: 0;
  width: auto;
  height: auto;
  background: #fafafa;
  border-radius: 0px 4.729px 0px 0px;
  -webkit-padding-end: 0.75rem;
  padding-inline-end: 0.75rem;
}
.p-team__label span {
  padding-block: 0.5rem 0.25rem;
  font-size: 1.625rem;
  font-weight: 700;
  color: #005bac;
}

.p-team__name {
  font-size: max(1.625rem, 20.8px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.01em;
  position: relative;
  -webkit-padding-start: 1.25rem;
  padding-inline-start: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-team__name {
    font-size: 1.625rem;
  }
}
.p-team__name::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.25rem;
  height: 100%;
  background: #005bac;
}

.p-team__lists {
  -webkit-margin-before: 0.75rem;
  margin-block-start: 0.75rem;
}

.p-team__list {
  display: grid;
  grid-template-columns: 4.375rem 1fr;
  -webkit-column-gap: 0.5625rem;
  -moz-column-gap: 0.5625rem;
  column-gap: 0.5625rem;
}

.p-contact {
  padding-block: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-block: 5rem 6.25rem;
  }
}

.p-contact__head--text {
  -webkit-padding-after: 2.5rem;
  padding-block-end: 2.5rem;
  text-align: center;
}
.p-contact__head--text span {
  color: #005bac;
  font-size: max(1.125rem, 14.4px);
  font-weight: 700;
  line-height: 11.1111111111%;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-contact__head--text span {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__head--text {
    text-align: left;
  }
}

.p-contact__box {
  border-radius: 3.75rem;
  background: #f0f1f5;
  padding-block: 5rem;
  padding-inline: 3.75rem;
  max-width: 75rem;
}
@media screen and (max-width: 767px) {
  .p-contact__box {
    border-radius: 1.875rem;
    padding-block: 2.5rem 5rem;
    padding-inline: 1.25rem;
  }
}

.p-contact__box--text {
  text-align: center;
  -webkit-padding-after: 2.5rem;
  padding-block-end: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact__box--text {
    text-align: left;
  }
}

.p-contact__form {
  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.625rem;
}
@media screen and (max-width: 767px) {
  .p-contact__form {
    row-gap: 0.4375rem;
  }
}

.p-contact__row {
  border-bottom: 1px solid rgba(102, 102, 102, 0.6);
  display: grid;
  grid-template-columns: 13.75rem 1fr;
  -webkit-column-gap: 10rem;
  -moz-column-gap: 10rem;
  column-gap: 10rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-padding-after: 0.75rem;
  padding-block-end: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-contact__row {
    grid-template-columns: 1fr;
    row-gap: 0.6875rem;
  }
}
@media (min-width: 768px) {
  .p-contact__row {
    grid-template-columns: 16.25rem 1fr;
    -webkit-column-gap: 5rem;
    -moz-column-gap: 5rem;
    column-gap: 5rem;
  }
}
@media (min-width: 1280px) {
  .p-contact__row {
    grid-template-columns: 13.75rem 1fr;
    -webkit-column-gap: 10rem;
    -moz-column-gap: 10rem;
    column-gap: 10rem;
  }
}
.p-contact__row.--top {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.p-contact__row.--top .p-contact__head {
  -webkit-margin-before: 0.4375rem;
  margin-block-start: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .p-contact__row.--top .p-contact__head {
    -webkit-margin-before: 0;
    margin-block-start: 0;
  }
}

.p-contact__head span {
  font-size: max(1.125rem, 14.4px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.02em;
  padding-left: 3.8125rem;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-contact__head span {
    font-size: 1.125rem;
  }
}
.p-contact__head span::before {
  content: "任意";
  position: absolute;
  top: calc(50% + 1px);
  translate: 0 -50%;
  left: 0;
  border-radius: 0.25rem;
  background: #666666;
  color: #fafafa;
  padding-inline: 0.625rem;
  font-size: max(0.875rem, 11.2px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-contact__head span::before {
    font-size: 0.875rem;
  }
}
.p-contact__head span.--must::before {
  content: "必須";
  background: #e58d00;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  border-radius: 0;
  width: 100%;
  border: none;
  padding: 0.5625rem 1.5rem;
  background: #fafafa;
}
input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: rgba(102, 102, 102, 0.6);
}
input[type="text"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
textarea::-moz-placeholder {
  color: rgba(102, 102, 102, 0.6);
}
input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: rgba(102, 102, 102, 0.6);
}
input[type="text"]::-ms-input-placeholder,
input[type="email"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: rgba(102, 102, 102, 0.6);
}
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
  color: rgba(102, 102, 102, 0.6);
}

textarea {
  resize: vertical;
  height: 12.5rem;
}

.wpcf7-form-control.wpcf7-radio {
  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.875rem;
}

.p-contact__data-radio {
  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.875rem;
  padding-block: 0.625rem;
}
.p-contact__data-radio .wpcf7-list-item {
  margin: 0;
}
.p-contact__data-radio .wpcf7-list-item-label {
  display: inline-block;
  -webkit-padding-start: 2.75rem;
  padding-inline-start: 2.75rem;
  position: relative;
  cursor: pointer;
}
.p-contact__data-radio .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  width: 1.875rem;
  height: 1.875rem;
  background: #fafafa;
  border-radius: 100vmax;
  border: 1px solid #fafafa;
  -webkit-transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.p-contact__data-radio .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0.5rem;
  width: 0.875rem;
  height: 0.875rem;
  background: #005bac;
  border-radius: 100vmax;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-contact__data-radio input[type="radio"] {
  opacity: 0;
  position: absolute;
}
.p-contact__data-radio
  input[type="radio"]:checked
  + .wpcf7-list-item-label::after {
  opacity: 1;
}

.p-contact__data-checkbox {
  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;
  text-align: center;
}
.p-contact__data-checkbox .wpcf7-form-control-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-contact__data-checkbox .wpcf7-list-item {
  position: relative;
}
.p-contact__data-checkbox .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 1.875rem;
  cursor: pointer;
}
.p-contact__data-checkbox .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 0.875rem;
  height: 0.875rem;
  border: 1px solid #363636;
  background: #fafafa;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-contact__data-checkbox .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.3125rem;
  rotate: 45deg;
  width: 6px;
  height: 12px;
  border-right: 2px solid #005bac;
  border-bottom: 2px solid #005bac;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-contact__data-checkbox input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  width: 16px;
  height: 16px;
  margin: 0;
  z-index: 1;
  cursor: pointer;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.p-contact__data-checkbox
  input[type="checkbox"]:checked
  + .wpcf7-list-item-label::before {
  opacity: 0;
}
.p-contact__data-checkbox
  input[type="checkbox"]:checked
  + .wpcf7-list-item-label::after {
  opacity: 1;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  background: transparent;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

.row.jc-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-contact__submit {
  text-align: center;
}
.p-contact__submit input[type="submit"] {
  display: inline-block;
  color: #fafafa;
  font-size: max(1rem, 12.8px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.02em;
  border-radius: 117.578px;
  background: #005bac;
  padding: 0.5rem 1.625rem;
  text-align: left;
  width: 13.75rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-contact__submit input[type="submit"] {
    font-size: 1rem;
  }
}
@media (any-hover: hover) {
  .p-contact__submit input[type="submit"]:hover {
    opacity: 0.7;
  }
}
.p-contact__submit .p-contact__submit-btn {
  position: relative;
  display: inline-block;
}
.p-contact__submit .p-contact__submit-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 1rem;
  width: 13.438px;
  height: 16.682px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIxNCIgdmlld0JveD0iMCAwIDE3IDE0IiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNMTcgNy4wMDAwNEwxMC42NzQ3IDAuNjc0NzgxQzEwLjU1IDAuNTUwMDE2IDEwLjQwMTkgMC40NTEwNDcgMTAuMjM4OCAwLjM4MzUyNUMxMC4wNzU4IDAuMzE2MDAzIDkuOTAxMTEgMC4yODEyNSA5LjcyNDY3IDAuMjgxMjVDOS41NDgyMyAwLjI4MTI1IDkuMzczNTEgMC4zMTYwMDMgOS4yMTA1IDAuMzgzNTI1QzkuMDQ3NDkgMC40NTEwNDcgOC44OTkzNyAwLjU1MDAxNiA4Ljc3NDYxIDAuNjc0NzgxQzguNjQ5ODQgMC43OTk1NDUgOC41NTA4NyAwLjk0NzY2MiA4LjQ4MzM1IDEuMTEwNjdDOC40MTU4MyAxLjI3MzY5IDguMzgxMDcgMS40NDg0IDguMzgxMDcgMS42MjQ4NUM4LjM4MTA3IDEuODAxMjkgOC40MTU4MyAxLjk3NjAxIDguNDgzMzUgMi4xMzkwMkM4LjU1MDg3IDIuMzAyMDMgOC42NDk4NCAyLjQ1MDE1IDguNzc0NjEgMi41NzQ5MUwxMS44NTU5IDUuNjU2MjRMMi42NjE4OCA1LjY1NjI0QzEuMzA1NDggNS42NTYyNCAwLjk2MzY3OCA1Ljc5NzgyIDAuNzExNjY2IDYuMDQ5ODNDMC40NTk2NTYgNi4zMDE4NCAwLjMxODA3OSA2LjY0MzY1IDAuMzE4MDc5IDcuMDAwNDRDMC4zMTgwNzkgNy4zNTY0NCAwLjQ1OTY1NiA3LjY5ODI0IDAuNzExNjY2IDcuOTUwMjVDMC45NjM2NzggOC4yMDIyNiAxLjMwNTQ4IDguMzQzODQgMi42NjE4OCA4LjM0Mzg0TDExLjg1NTkgOC4zNDM4NEw4Ljc3NDYxIDExLjQyNTJDOC42NDkzOCAxMS41NDk3IDguNTUwMDEgMTEuNjk3NyA4LjQ4MjIgMTEuODYwOEM4LjQxNDM5IDEyLjAyMzggOC4zNzk0OCAxMi4xOTg3IDguMzc5NDggMTIuMzc1MkM4LjM3OTQ4IDEyLjU1MTggOC40MTQzOSAxMi43MjY3IDguNDgyMiAxMi44ODk3QzguNTUwMDEgMTMuMDUyOCA4LjY0OTM4IDEzLjIwMDggOC43NzQ2MSAxMy4zMjUzQzkuMDI2NjEgMTMuNTc3MiA5LjM2ODM0IDEzLjcxODggOS43MjQ2NyAxMy43MTg4QzEwLjA4MSAxMy43MTg4IDEwLjQyMjcgMTMuNTc3MiAxMC42NzQ3IDEzLjMyNTNMMTcgNy4wMDAwNFoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.p-contact__submit .p-contact__submit-btn .wpcf7-submit {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: #fafafa;
  background-color: #005bac;
  padding: 0.5rem 1.625rem;
  width: 13.75rem;
  border-radius: 117.578px;
  border: none;
  cursor: pointer;
  text-align: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.p-contact__submit .wpcf7-spinner {
  display: none !important;
}

.p-contact__acceptance {
  margin-block: 3.125rem 1.875rem;
  font-size: max(1rem, 12.8px);
  font-weight: 500;
  line-height: 1.8125;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__acceptance {
    font-size: 1rem;
  }
}
.p-contact__acceptance a {
  color: #005bac;
}
@media screen and (max-width: 767px) {
  .p-contact__acceptance {
    text-align: left;
    margin-block: 2.5rem;
  }
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.p-banner {
  position: fixed;
  top: 11.25rem;
  right: 0;
  z-index: 5;
  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.25rem;
}
@media screen and (max-width: 767px) {
  .p-banner {
    display: none;
  }
}

.p-banner__blue {
  border-radius: 20px 0px 0px 20px;
  background: #005bac;
  padding: 40px 20px 40px 22px;
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
  border-top: 2px solid #005bac;
  border-bottom: 2px solid #005bac;
  border-left: 2px solid #005bac;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media (any-hover: hover) {
  .p-banner__blue:hover {
    background: #fafafa;
  }
  .p-banner__blue:hover .p-banner__blue--text {
    color: #005bac;
  }
}

.p-banner__blue--text {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #fafafa;
  font-size: max(1.125rem, 14.4px);
  font-weight: 600;
  line-height: 1.14;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-banner__blue--text {
    font-size: 1.125rem;
  }
}

.p-banner__white {
  position: relative;
}

.p-banner__white-body {
  position: relative;
  z-index: 5;
  border-radius: 20px 0px 0px 20px;
  border-top: 2px solid #005bac;
  border-bottom: 2px solid #005bac;
  border-left: 2px solid #005bac;
  background: #fafafa;
  padding: 40px 20px 40px 22px;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
  height: 15.3125rem;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  position: relative;
}
@media (any-hover: hover) {
  .p-banner__white-body:hover {
    background: #005bac;
  }
  .p-banner__white-body:hover .p-banner__icon--bar {
    background: #fafafa;
  }
  .p-banner__white-body:hover .p-banner__white--text span {
    color: #fafafa;
  }
}

.p-banner__icon {
  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.3125rem;
  width: 1.25rem;
  height: 1.25rem;
}

.p-banner__icon--bar {
  width: 1.25rem;
  height: 0.125rem;
  background: #005bac;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-banner__white--text span {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #005bac;
  font-size: max(1.125rem, 14.4px);
  font-weight: 600;
  line-height: 1.14;
  white-space: nowrap;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-banner__white--text span {
    font-size: 1.125rem;
  }
}
.p-banner__white--text span.close {
  display: block;
}
.p-banner__white--text span.open {
  display: none;
  color: #fafafa;
}

.p-banner-drawer {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  width: 17.5rem;
  height: 100%;
  border-radius: 20px 0px 0px 20px;
  background: rgba(0, 91, 172, 0.8);
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.5rem;
  padding-block: 2.5rem;
  padding-inline: 1.375rem 1.25rem;
}

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

.p-banner__white.js-show .p-banner__white-body {
  background: #005bac;
}
.p-banner__white.js-show .p-banner__icon .p-banner__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 0.25rem;
  background: #fafafa;
}
.p-banner__white.js-show .p-banner__icon .p-banner__icon--bar:nth-of-type(2) {
  display: none;
}
.p-banner__white.js-show .p-banner__icon .p-banner__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -0.25rem;
  background: #fafafa;
}

.p-banner__white--text.js-show span.close {
  display: none;
}
.p-banner__white--text.js-show span.open {
  display: block;
}

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

.p-banner-drawer__list-link {
  width: 10.625rem;
  padding-inline: 1.25rem;
  padding-block: 0.3125rem 0rem;
  border-bottom: 1px solid #fafafa;
}
.p-banner-drawer__list-link a {
  font-weight: 500;
  color: #fafafa;
}

.p-banner-sp {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 103;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #fafafa;
  background: #005bac;
}
@media (min-width: 768px) {
  .p-banner-sp {
    display: none;
  }
}

.p-banner__ask,
.p-banner__recruit {
  padding-block: 0.625rem;
}

.p-banner-sp__text {
  text-align: center;
  font-size: max(1.125rem, 14.4px);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.02em;
  color: #fafafa;
}
@media screen and (max-width: 767px) {
  .p-banner-sp__text {
    font-size: 1.125rem;
  }
}

.p-banner__ask {
  border-right: 1px solid #fafafa;
}

.p-fv-contact {
  -webkit-margin-before: 5rem;
  margin-block-start: 5rem;
  position: relative;
  padding-block: 13.375rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-fv-contact {
    padding-block: 8.625rem 1.25rem;
    -webkit-margin-before: 3.9375rem;
    margin-block-start: 3.9375rem;
  }
}
@media (min-width: 1500px) {
  .p-fv-contact {
    padding-block: 18.75rem 6.25rem;
  }
}

.p-fv-contact__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-fv-contact__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-fv-contact__bg picture {
  width: 100%;
  height: 100%;
}

.p-fv-contact__title {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  font-size: max(3rem, 38.4px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-fv-contact__title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-fv-contact__title {
    font-size: max(2.25rem, 28.8px);
    font-weight: 700;
    line-height: 2;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-fv-contact__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 1500px) {
  .p-fv-contact__title {
    font-size: 3.75rem;
  }
}

.p-about {
  padding-block: 6.25rem;
  position: relative;
  background: #f0f1f5;
  border-radius: 0 60px 60px 0;
  margin-inline: 5rem;
}
@media screen and (max-width: 767px) {
  .p-about {
    margin-inline: 0;
    padding-block: 3.75rem;
  }
  .p-about::before {
    display: none;
  }
}
.p-about::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 100%;
  width: calc(50vw - 50%);
  height: 100%;
  background: #f0f1f5;
}

.p-about__container {
  background: #fafafa;
  width: min(860px, 100%);
  padding-inline: 60px;
  margin-inline: auto;
  padding-block: 3.75rem 2.5rem;
  border-radius: 1.875rem;
  -webkit-margin-before: 1.125rem;
  margin-block-start: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-about__container {
    -webkit-margin-before: 2.5rem;
    margin-block-start: 2.5rem;
    width: 100%;
    padding-inline: 1.25rem;
    padding-block: 2.5rem;
  }
}

.p-about__lists {
  width: min(36.5625rem + 8px, 100%);
  margin-inline: auto;
  -webkit-padding-after: 1.25rem;
  padding-block-end: 1.25rem;
  padding-inline: 4px;
}
@media screen and (max-width: 767px) {
  .p-about__lists {
    width: 100%;
    padding-inline: 0;
  }
}

.p-about__list {
  display: grid;
  grid-template-columns: 4.375rem 1fr;
  -webkit-column-gap: 4.25rem;
  -moz-column-gap: 4.25rem;
  column-gap: 4.25rem;
  border-bottom: 1px solid rgba(102, 102, 102, 0.4);
  padding: 0.46875rem 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-about__list {
    -webkit-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
    column-gap: 0.75rem;
    padding: 0.34375rem 0.25rem;
  }
}

.p-about__list--data p + p {
  -webkit-margin-before: 0.25rem;
  margin-block-start: 0.25rem;
}
.p-about__list--data a {
  color: #005bac;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-about__list--data .--small {
    font-size: max(0.875rem, 11.2px);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-about__list--data .--small {
    font-size: 0.875rem;
  }
}

.p-about__list--text {
  text-align: center;
}
.p-about__list--text a {
  font-size: max(1rem, 12.8px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.02em;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-about__list--text a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about__list--text {
    text-align: left;
  }
}

.p-company {
  padding-block: 6.25rem 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-company {
    padding-block: 6.25rem 5.125rem;
  }
}

.p-company__inner {
  max-width: 75rem;
}

.p-company__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-company__container {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 31.25rem;
    margin-inline: auto;
  }
}

.p-company__texts {
  width: max(32.5rem, 50%);
}
@media screen and (max-width: 767px) {
  .p-company__texts {
    display: contents;
  }
}

.p-company__title {
  color: #005bac;
  font-size: max(1.625rem, 20.8px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.01em;
  -webkit-margin-after: 0.5rem;
  margin-block-end: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-company__title {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-company__title {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

.p-company__text {
  -webkit-margin-after: 2.5rem;
  margin-block-end: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-company__text {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}

.p-company__img {
  width: 43.0769230769%;
  height: 16.875rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-company__img {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    height: auto;
    -webkit-margin-after: 2.5rem;
    margin-block-end: 2.5rem;
  }
}
.p-company__img img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .p-company__btn {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}

.p-message {
  padding-block: 6.25rem 4.5rem;
  position: relative;
  background: #f0f1f5;
  border-radius: 0 60px 60px 0;
  margin-inline: 5rem;
}
@media screen and (max-width: 767px) {
  .p-message {
    margin-inline: 0;
    padding-block: 3.75rem;
  }
  .p-message::before {
    display: none;
  }
}
.p-message::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 100%;
  width: calc(50vw - 50%);
  height: 100%;
  background: #f0f1f5;
}

.p-message__inner {
  max-width: 75rem;
}

.p-message__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
  -webkit-margin-before: 3.75rem;
  margin-block-start: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-message__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-margin-before: 2.5rem;
    margin-block-start: 2.5rem;
    row-gap: 2.5rem;
  }
}

.p-message__images {
  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.25rem;
}

.p-message__img {
  width: 30rem;
  height: auto;
  aspect-ratio: 480/500;
}
@media screen and (max-width: 767px) {
  .p-message__img {
    width: 100%;
  }
}
.p-message__img img {
  width: 100%;
  height: 100%;
}

.p-message__name {
  -webkit-margin-before: -0.5rem;
  margin-block-start: -0.5rem;
  font-size: max(1.625rem, 20.8px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-message__name {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-message__name {
    font-size: max(1.5rem, 19.2px);
    font-weight: 700;
    line-height: 2;
    -webkit-margin-before: -0.625rem;
    margin-block-start: -0.625rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-message__name {
    font-size: 1.5rem;
  }
}

.p-message__text {
  font-size: max(1rem, 12.8px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-message__text {
    font-size: 1rem;
  }
}
.p-message__text span {
  display: inline;
}
.p-message__text.--blue span {
  color: #005bac;
  font-size: max(1.125rem, 14.4px);
  font-weight: 700;
  line-height: 11.1111111111%;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-message__text.--blue span {
    font-size: 1.125rem;
  }
}
.p-message__text + .p-message__text {
  -webkit-margin-before: 2.25rem;
  margin-block-start: 2.25rem;
}

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

.p-mission__inner {
  max-width: 75rem;
}

.p-mission__title {
  color: #005bac;
  text-align: center;
  font-size: max(2.625rem, 33.6px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-mission__title {
    font-size: 2.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mission__title {
    font-size: max(1.875rem, 24px);
    font-weight: 700;
    line-height: 2;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-mission__title {
    font-size: 1.875rem;
  }
}

.p-mission__img {
  width: 100%;
  height: auto;
  -webkit-margin-before: 2.5rem;
  margin-block-start: 2.5rem;
}
.p-mission__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 30px 30px 0px 0px;
}
.p-mission__img picture {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-mission__img {
    -webkit-margin-before: 1.25rem;
    margin-block-start: 1.25rem;
  }
}

.p-mission__box {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3.75rem 0rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-margin-before: -10rem;
  margin-block-start: -10rem;
  border-radius: 0.625rem;
  background: #fafafa;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  width: min(42.5rem, 80%);
}
@media screen and (max-width: 767px) {
  .p-mission__box {
    border-radius: 0.25rem;
    -webkit-margin-before: -5rem;
    margin-block-start: -5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 2.5rem 1.25rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: max(18.4375rem, 80%);
  }
}

.p-mission__box--mission {
  -webkit-padding-end: 1.875rem;
  padding-inline-end: 1.875rem;
  position: relative;
  width: 17.5rem;
}
@media screen and (max-width: 767px) {
  .p-mission__box--mission {
    -webkit-padding-after: 1.875rem;
    padding-block-end: 1.875rem;
    -webkit-padding-end: 0;
    padding-inline-end: 0;
    width: 16.1875rem;
    text-align: center;
  }
  .p-mission__box--mission::after {
    content: "";
    position: absolute;
    width: 1.875rem;
    height: 1px;
    background: rgba(0, 91, 172, 0.6);
    bottom: 0;
    left: 50%;
    translate: -50%;
  }
}

.p-mission__box--title {
  font-size: max(1.875rem, 24px);
  font-weight: 700;
  line-height: 1.8;
  background: linear-gradient(
    64deg,
    #003366 22.25%,
    #005bac 49.34%,
    rgba(37, 114, 176, 0.94) 60.67%,
    rgba(247, 243, 238, 0.6) 101.39%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-mission__box--title {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mission__box--title {
    margin-inline: auto;
  }
}

.p-mission__box--text {
  font-size: max(1.125rem, 14.4px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-mission__box--text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mission__box--text {
    text-align: center;
  }
}

.p-mission__box--vision {
  -webkit-padding-start: 1.875rem;
  padding-inline-start: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-mission__box--vision {
    -webkit-padding-before: 1.875rem;
    padding-block-start: 1.875rem;
    -webkit-padding-start: 0;
    padding-inline-start: 0;
    width: 16.1875rem;
  }
}

.p-breadcrumb__wrap {
  position: absolute;
  top: 16.4375rem;
  left: -3.125rem;
  rotate: 90deg;
}
@media (max-width: 1000px) {
  .p-breadcrumb__wrap {
    display: none;
  }
}

.p-breadcrumb {
  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;
  gap: 0 0.625rem;
  list-style: none;
  border-radius: 3px;
  overflow: hidden;
}
.p-breadcrumb span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-size: 0.75rem;
  font-weight: 400;
}
.p-breadcrumb span:first-child {
  position: relative;
  color: #666666;
}
.p-breadcrumb span:first-child a::before {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  display: inline-block;
  width: 1rem;
  aspect-ratio: 16/18;
  margin-right: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='18' viewBox='0 0 16 18' fill='none'%3E%3Cpath d='M0 18V6L8 0L16 6V18H10V11H6V18H0Z' fill='%23666666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  vertical-align: text-bottom;
  content: "";
}
.p-breadcrumb span:nth-of-type(1) span {
  -webkit-padding-start: 1.25rem;
  padding-inline-start: 1.25rem;
}
.p-breadcrumb a {
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 400;
}

.p-fv-service {
  padding-block: 9.5rem 5.625rem;
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-fv-service {
    padding-block: 6.3125rem 1.0625rem;
  }
}

@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: "BIZ UDPGothic", sans-serif;
}
.u-font__en {
  font-family: "Roboto", 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-text__nowrap {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .u-text__nowrap {
    white-space: wrap;
  }
}
@media (min-width: 768px) {
  .u-text__nowrap {
    white-space: nwrap;
  }
}
@media (min-width: 1280px) {
  .u-text__nowrap {
    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;
  }
}

/* Header対策 */

header {
  margin-top: 26px;
}

@media screen and (max-width: 768px) {
  header {
    margin-top: 0px;
  }
}

/* サイトシール対策 */

.corporate_logo {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 20px 10px;
  display: flex;
  justify-content: start;
}

.corporate_logo img {
  height: 18px;
  width: auto;
}

@media only screen and (max-width: 768px) {
  .corporate_logo {
    justify-content: center;
  }
}

.site_seal {
  display: flex;
  justify-content: center;
  flex-direction: row;
}

.site_seal img {
  width: 115px;
  height: 57px;
}
.site_seal div.site_seal_left {
  padding: 40px 5px 40px 115px;
}
.site_seal div.site_seal_center {
  padding: 40px 5px 0px 5px;
}
.site_seal div.site_seal_right {
  padding: 40px 115px 40px 5px;
}

@media only screen and (max-width: 768px) {
  .site_seal {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
  }

  .site_seal a {
    display: block !important;
  }

  .site_seal div.site_seal_left {
    padding: 40px 5px 40px 0px;
  }
  .site_seal div.site_seal_center {
    padding: 0px 5px 0px 5px;
  }
  .site_seal div.site_seal_right {
    padding: 40px 0px 40px 5px;
  }
}

.footer_area_bg {
  background-color: #fff;
}
