/* animation
----------------------------------------- */
.inview {
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem);
  opacity: 0;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}
.inview.is-anim {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* breadcrumbs
----------------------------------------- */
.c-breadcrumbs {
  margin: 2.4rem 0 0;
}

.c-breadcrumbs__list {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -webkit-box-pack: end;
  display: -webkit-box;
  display: flex;
          flex-direction: row;
          align-items: center;
          justify-content: flex-end;
}

.c-breadcrumbs__item {
  position: relative;
}
.c-breadcrumbs__item:last-child .c-breadcrumbs__link {
  color: #3d424b;
}
.c-breadcrumbs__item:not(:first-child) {
  padding: 0 0 0 3rem;
}
.c-breadcrumbs__item:not(:first-child)::before {
  -webkit-transform: translate(0%, -50%);
  position: absolute;
  top: calc(50% + 0.1rem);
  left: 1.15rem;
          transform: translate(0%, -50%);
  content: "/";
  color: #babfd0;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0em;
}

.c-breadcrumbs__link {
  color: #babfd0;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0em;
}
.c-breadcrumbs__link.-inactive {
  pointer-events: none;
}

/* button
----------------------------------------- */
.c-button {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  display: block;
  display: -webkit-box;
  display: flex;
  position: relative;
          flex-direction: row;
          align-items: center;
          justify-content: flex-start;
  width: 13.3rem;
  margin: 0 0 0 auto;
  padding: 1.4rem 0.7rem 1.4rem 2.4rem;
  border-radius: 6rem;
  background-color: #28a4df;
}
.c-button:hover .c-button__arrow {
  -webkit-transform: translate(0%, -50%) scale(0.9);
          transform: translate(0%, -50%) scale(0.9);
}
.c-button:hover .c-button__arrow::before {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}

.c-button__text {
  color: #fff;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
}

.c-button__arrow {
  -webkit-transition: -webkit-transform 0.2s ease;
  -webkit-transform: translate(0%, -50%);
  position: absolute;
  top: 50%;
  right: 0.7rem;
  width: 2.7rem;
  height: 2.7rem;
          transform: translate(0%, -50%);
  border-radius: 50%;
  background-color: #fff;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.c-button__arrow::before {
  -webkit-transition: -webkit-transform 0.5s ease;
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9rem;
  height: 0.9rem;
          transform: translate(-50%, -50%);
  background-image: url(../images/common/button_arrow.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

/* pagination
----------------------------------------- */

.c-pagination__inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: flex;
          flex-direction: row;
          align-items: center;
          justify-content: center;
}

.c-pagination__prev {
  margin: 0 2.8rem 0 0;
}

.c-pagination__next {
  margin: 0 0 0 2.8rem;
}

.c-pagination__prev,
.c-pagination__next {
  position: relative;
  color: #28a4df;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
}
.c-pagination__prev::before,
.c-pagination__next::before {
  -webkit-transform: translate(-50%, 0%);
  position: absolute;
  bottom: -0.2rem;
  left: 50%;
  width: 100%;
  height: 1px;
          transform: translate(-50%, 0%);
  background-color: #28a4df;
  content: "";
}

.c-pagination__numbers {
  display: inline-block;
  margin: 0 0.8rem;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
}
.c-pagination__numbers.-current {
  position: relative;
  color: #0387c6;
  pointer-events: none;
}
.c-pagination__numbers.-current::before {
  -webkit-transform: translate(-50%, 0%);
  position: absolute;
  bottom: -0.2rem;
  left: 50%;
  width: 100%;
  height: 1px;
          transform: translate(-50%, 0%);
  background-color: #28a4df;
  content: "";
}
.c-pagination__numbers.-ellipsis {
  pointer-events: none;
}

/* swiper
----------------------------------------- */
.e-swiper {
  margin-bottom: 0 !important;
}
.e-swiper .swiper-pagination {
  -webkit-transform: translate(-50%, 0%);
  z-index: 2;
  position: absolute;
  bottom: calc(9.6% + 3rem) !important;
  left: 50% !important;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding-right: 8rem;
  padding-left: 8rem;
          transform: translate(-50%, 0%);
  text-align: left;
}
.e-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 8.2px;
  height: 8.2px;
  margin: 0 7px !important;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: #fff;
  opacity: 1;
}
.e-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: rgba(0, 0, 0, 0);
  opacity: 1;
}
.e-swiper .swiper-slide img {
  -o-object-position: bottom;
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 720px;
     object-fit: cover;
     object-position: bottom;
  font-family: "object-fit: cover;";
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  -webkit-text-size-adjust: 100%; /* 2 */
  line-height: 1.15; /* 1 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-size: 1em; /* 2 */
  font-family: monospace, monospace; /* 1 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-size: 1em; /* 2 */
  font-family: monospace, monospace; /* 1 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0; /* 2 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  font-family: inherit; /* 1 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible; /* 1 */
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none; /* 1 */
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  color: inherit; /* 2 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: inherit;
  margin: 0;
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
}
*::before,
* ::after {
  box-sizing: inherit;
  margin: 0;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
input,
textarea,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  -webkit-font-kerning: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  height: 100%;
  overflow-x: hidden;
  overscroll-behavior: none;
  background-color: #f2f7fe;
  color: #3d424b;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.15;
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
          font-kerning: normal;
  letter-spacing: 0.1em;
  counter-reset: number 0;
}

h1 {
  margin: 0;
}

img {
  width: 100%;
  height: auto;
  border: none;
  vertical-align: top;
}

img,
iframe,
video {
  max-width: 100%;
}

button {
  -webkit-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

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

a {
  -webkit-transition: 0.5s;
  color: inherit;
  text-decoration: none;
  transition: 0.5s;
}

.js-focus-visible:focus:not(.focus-visible) {
  outline: 0;
}

*:focus-visible {
  outline: none;
}

@font-face {
  src: url("../assets/font/Objective-Bold.otf") format("otf"), url("../assets/font/Objective-Bold.woff2") format("woff2");
  font-family: "Objective";
}
@font-face {
  src: url("../assets/font/Objective-Medium.otf") format("otf"), url("../assets/font/Objective-Medium.woff2.woff2") format("woff2");
  font-family: "Objective";
}
/* container
----------------------------------------- */
.l-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.8rem;
}

/* footer
----------------------------------------- */
.l-footer {
  position: relative;
  background: -webkit-linear-gradient(334.29deg, #2293ca 0%, #ea93cc 100%);
  background: linear-gradient(115.71deg, #2293ca 0%, #ea93cc 100%);
}
.l-footer::before {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
          transform: translate(-50%, -50%);
  background-image: url(../images/common/bg_img_sp.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.l-footer .l-container {
  position: relative;
}

.l-footer__contact {
  padding: 10rem 0 5.9rem;
}
.l-footer__contact .l-section__heading .l-section__headingEng {
  color: #9bdfff;
}
.l-footer__contact .l-section__heading .l-section__headingText {
  -webkit-background-clip: inherit;
  -webkit-text-fill-color: inherit;
  background-image: none;
  color: #fff;
}

.l-footer__contactInner {
  margin: 4rem 0 0;
}
.l-footer__contactBlock:not(:last-child) {
  margin: 0 0 3.7rem;
}

.l-footer__contactTitle {
  margin: 0 0 2rem;
  color: #fff;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0em;
}
.l-footer__contactTel .-text {
  color: #fff;
  font-weight: 500;
  font-size: 2.1rem;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
}
.l-footer__contactTel .-no {
  color: #fff;
  font-weight: 500;
  font-size: 3.4rem;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
}

.l-footer__contactLink {
  -webkit-transition: background-color 0.2s ease, border 0.2s ease;
  display: block;
  position: relative;
  width: 27.1rem;
  padding: 1.85rem 6.8rem 1.85rem 4.3rem;
  border: 1px solid #fff;
  border-radius: 7rem;
  background-color: rgba(255, 255, 255, 0);
  transition: background-color 0.2s ease, border 0.2s ease;
}

.l-footer__contactLinkText {
  color: #fff;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.375;
  letter-spacing: 0em;
  white-space: nowrap;
}

.l-footer__contactLinkArrow {
  -webkit-transform: translate(0%, -50%);
  position: absolute;
  top: 50%;
  right: 2.2rem;
  width: 2rem;
  height: 2rem;
          transform: translate(0%, -50%);
  background-image: url(../images/common/contact_arrow_sp.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.l-footer__bottom {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-align: start;
  -webkit-box-pack: start;
  display: -webkit-box;
  display: flex;
          flex-direction: row;
          align-items: flex-start;
          justify-content: flex-start;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

.l-footer__bottomInner {
  width: 79.4666666667%;
  background-color: #f2f7fe;
}

.l-footer__nav {
  display: none;
}
.l-footer__navLink:hover {
  opacity: 0.5;
}

.l-footer__info {
  padding: 3rem 1.9rem 2rem;
}

.l-footer__infoLogo {
  display: none;
}

.l-footer__infoLogoOther {
  width: 15.6rem;
}
.l-footer__infoLogoOther img {
  width: 100%;
}

.l-footer__infoLinkWrap {
  margin: 3.1rem 0 0;
}

.l-footer__infoLink {
  display: block;
  margin: 0 0 2.3rem;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.l-footer__copy {
  color: #babfd0;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.2727272727;
  letter-spacing: 0em;
}
.l-footer__copy.u-only-sp {
  display: block;
}
.l-footer__copy.u-only-pc {
  display: none;
}

.l-footer__return {
  -webkit-transition: opacity 0.2s cubic-bezier(0.33, 1, 0.68, 1);
  position: fixed;
  right: 0;
  bottom: 7.8rem;
  width: 20.5333333333%;
  height: 6.4rem;
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.33, 1, 0.68, 1);
}
.l-footer__return a {
  -webkit-transform: translate(-50%, 0%);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  display: -webkit-box;
  display: flex;
  position: absolute;
  top: 0;
  left: 50%;
          flex-direction: column;
          align-items: center;
          justify-content: flex-start;
  padding: 3.1rem 0 0;
          transform: translate(-50%, 0%);
}
.l-footer__return.is-active {
  opacity: 1;
}
.l-footer__return.is-inactive {
  mix-blend-mode: unset;
}

.l-footer__returnArrow {
  -webkit-transform: translate(-50%, 0%);
  position: absolute;
  top: 0;
  left: 50%;
  width: 1.6rem;
  height: 2.1rem;
          transform: translate(-50%, 0%);
  background-image: url(../images/common/return_arrow_sp.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.l-footer__returnText {
  -webkit-writing-mode: vertical-rl;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
          writing-mode: vertical-rl;
}
.l-footer__subMenuLink:hover {
  opacity: 0.5;
}

/* form
----------------------------------------- */
.l-form {
  margin: 6rem 0 0;
}
.l-form .mw_wp_form .error {
  margin: 0.6rem 0 0;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0em;
}

.l-form__item:not(:last-child) {
  margin: 0 0 2rem;
}

.l-form__dt {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0em;
}
.l-form__dt span.-required {
  display: inline-block;
  color: #df97cb;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0em;
}

.l-form__dd {
  margin: 1rem 0 0;
}
.l-form__dd span br {
  display: none;
}
.l-form__dd span input {
  width: 100%;
  padding: 1.1rem;
  border-radius: 0.5rem;
  background: #fff;
  color: #3d424b;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0em;
}
.l-form__dd span textarea {
  width: 100%;
  height: 20rem;
  padding: 1.1rem;
  border-radius: 0.5rem;
  background: #fff;
  color: #3d424b;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0em;
}

.l-form__privacy {
  height: 14rem;
  margin: 3rem 0 3.7rem;
  padding: 2rem 1.3rem;
  overflow-y: scroll;
  background-color: #fff;
}
.l-form__privacy::-webkit-scrollbar {
  width: 0.45rem;
}
.l-form__privacy::-webkit-scrollbar-track {
  background: #babfd0;
}
.l-form__privacy::-webkit-scrollbar-thumb {
  background-color: #3d424b;
}
.l-form__privacy h2 {
  margin: 0 0 1.8rem;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0em;
}
.l-form__privacy h3 {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0em;
}
.l-form__privacy h4 {
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0em;
}
.l-form__privacy p {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0em;
}

.l-form__agree {
  text-align: center;
  pointer-events: none;
}
.l-form__agree input:checked + .l-form__agreeText::after {
  opacity: 1;
}
.l-form__agree label {
  opacity: 0.4;
}
.l-form__agree label input {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  white-space: nowrap;
  clip-path: inset(50%);
}
.l-form__agree label input:checked + .l-form__agreeText::after {
  opacity: 1;
}
.l-form__agree.is-active {
  pointer-events: all;
}
.l-form__agree.is-active label {
  opacity: 1;
}
.l-form__agree.is-active .l-form__agreeText {
  cursor: pointer;
  pointer-events: all;
}

.l-form__agreeText {
  display: inline-block;
  position: relative;
  padding: 0 0 0 3.3rem;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0em;
  text-align: left;
  text-indent: 0.5rem;
  pointer-events: none;
}
.l-form__agreeText::before {
  -webkit-transform: translate(0%, -50%);
  display: block;
  position: absolute;
  top: calc(50% - 1.2rem);
  left: 0%;
  width: 2.5rem;
  height: 2.5rem;
          transform: translate(0%, -50%);
  background-color: #df97cb;
  content: "";
}
.l-form__agreeText:after {
  -webkit-transform: translate(0%, -50%);
  display: block;
  position: absolute;
  top: calc(50% - 1.2rem);
  left: 0.5rem;
  width: 1.6rem;
  height: 1.33rem;
          transform: translate(0%, -50%);
  border-radius: 0;
  background-image: url(../images/contact/checkbox_icon.svg);
  background-position: center;
  background-position: center;
  background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0);
  content: "";
  opacity: 0;
}
.l-form__agreeText span {
  display: inline-block;
}
.l-form__agreeText span:first-of-type {
  margin-left: -0.8em;
}
.l-form__agreeText span.-required {
  display: inline-block;
  color: #df97cb;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0em;
}

.l-form__agreeLink {
  display: inline;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0em;
  pointer-events: none;
}

.l-form__buttonInner {
  margin: 2.3rem 0 0;
  text-align: center;
}

.l-form__btnBlock {
  -webkit-box-pack: center;
  display: -webkit-inline-box;
  display: inline-flex;
  position: relative;
          justify-content: center;
  pointer-events: none;
}
.l-form__btnBlock:hover .c-button__arrow {
  -webkit-transform: translate(0%, -50%) scale(0.9);
          transform: translate(0%, -50%) scale(0.9);
}
.l-form__btnBlock:hover .c-button__arrow::before {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}
.l-form__btnBlock .c-button__arrow::before {
  background-image: url(../images/contact/button_arrow_gray.svg);
}
.l-form__btnBlock.is-active {
  pointer-events: all;
}
.l-form__btnBlock.is-active .c-button__arrow::before {
  background-image: url(../images/common/button_arrow.svg);
}

.l-form__btn {
  margin: 0 auto;
  padding: 1.4rem 0.7rem 1.4rem 4.4rem;
  color: #fff;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
  text-align: left;
  cursor: pointer;
}

.l-form__btnSubmit:disabled {
  background-color: #babfd0;
}

/* hamburger
----------------------------------------- */
.l-hamburger__toggle {
  -webkit-backdrop-filter: blur(0.71429rem);
  -webkit-transition: all 0.5s ease;
  display: block;
  z-index: 3;
  width: 5rem;
  height: 5rem;
  border: 1px solid #3d424b;
  border-radius: 50%;
          backdrop-filter: blur(0.71429rem);
  background: -webkit-linear-gradient(bottom, rgba(249, 249, 249, 0.6) 0, rgba(255, 255, 255, 0) 100%), rgba(255, 255, 255, 0.7);
  background: linear-gradient(360deg, rgba(249, 249, 249, 0.6) 0, rgba(255, 255, 255, 0) 100%), rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.5s ease;
}
.l-hamburger__toggle.is-active {
  -webkit-backdrop-filter: unset;
  border: 1px solid #fff;
          backdrop-filter: unset;
  background: none;
}
.l-hamburger__toggle.is-active .l-hamburger__toggleWrap .l-hamburger__toggleDot {
  background-color: #fff;
}
.l-hamburger__toggle.is-active .l-hamburger__toggleWrap .l-hamburger__toggleDot:nth-of-type(1) {
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}
.l-hamburger__toggle.is-active .l-hamburger__toggleWrap .l-hamburger__toggleDot:nth-of-type(3) {
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}
.l-hamburger__toggle:hover {
  opacity: 1;
}
.l-hamburger__toggle:hover .l-hamburger__toggleWrap .l-hamburger__toggleDot:nth-of-type(1) {
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}
.l-hamburger__toggle:hover .l-hamburger__toggleWrap .l-hamburger__toggleDot:nth-of-type(3) {
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}

.l-hamburger__toggleWrap {
  -webkit-transition: all 0.5s ease;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: flex;
  position: relative;
          flex-direction: column;
          align-items: center;
          justify-content: center;
  width: 0.5rem;
  height: 2.15rem;
  margin: 0 auto;
  transition: all 0.5s ease;
}
.l-hamburger__toggleWrap .l-hamburger__toggleDot {
  -webkit-transition: all 0.5s ease;
  -webkit-transform: translate(-50%, 0%);
  display: inline-block;
  position: absolute;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
          transform: translate(-50%, 0%);
  border-radius: 50%;
  background-color: #3d424b;
  transition: all 0.5s ease;
}
.l-hamburger__toggleWrap .l-hamburger__toggleDot:nth-of-type(1) {
  -webkit-transform: translate(-50%, -0.85rem);
          transform: translate(-50%, -0.85rem);
}
.l-hamburger__toggleWrap .l-hamburger__toggleDot:nth-of-type(2) {
  -webkit-transform: translate(-50%, -50%);
  top: 50%;
          transform: translate(-50%, -50%);
}
.l-hamburger__toggleWrap .l-hamburger__toggleDot:nth-of-type(3) {
  -webkit-transform: translate(-50%, 0.8rem);
          transform: translate(-50%, 0.8rem);
}

/* header
----------------------------------------- */
.l-header {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: flex;
  z-index: 3;
  position: fixed;
  top: 0;
  left: 0;
          flex-direction: row;
          align-items: center;
          justify-content: space-between;
  width: 100%;
  height: 8rem;
  padding: 1.9rem 1.3rem;
  background-color: rgba(0, 0, 0, 0);
}

.l-header__inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: flex;
          flex-direction: row;
          align-items: center;
          justify-content: space-between;
  width: 100%;
}

.l-header__logo {
  z-index: 1;
  width: 17rem;
}

/* menu
----------------------------------------- */
.l-menu {
  -webkit-transition: all 0.5s ease;
  display: block;
  visibility: hidden;
  z-index: -1;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  padding: 5rem 8%;
  overflow-y: scroll;
  background-color: #28a4df;
  opacity: 0;
  transition: all 0.5s ease;
}
.l-menu.is-active {
  -webkit-animation-duration: 0.5s;
  visibility: visible;
  z-index: 2;
          animation-duration: 0.5s;
  opacity: 1;
}

.l-menu__item:not(:last-child) {
  margin: 0 0 3rem 0;
}
.l-menu__item.js-submenu-trigger {
  position: relative;
}
.l-menu__item.js-submenu-trigger .l-menu__link {
  position: relative;
}
.l-menu__item.js-submenu-trigger .l-menu__link::before {
  -webkit-transform: translate(0%, -50%);
  position: absolute;
  top: 50%;
  right: -4rem;
  width: 2.4rem;
  height: 1.2rem;
          transform: translate(0%, -50%);
  background-image: url(../images/common/menu_arrow.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

.l-menu__link {
  color: #fff;
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1.52;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
  white-space: nowrap;
}
.l-menu__link.-sub {
  pointer-events: none;
}

.l-menu-sub {
  margin: 1.9rem 0 0;
}
.l-menu-sub__item:not(:last-child) {
  margin: 0 0 1rem;
}

.l-menu-sub__linkTitle {
  margin: 0 0 0 1.5rem;
  color: #fff;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0em;
  white-space: nowrap;
}

.l-menu-sub__linkTitleEng {
  display: none;
}

.l-menu__bg {
  -webkit-transition: visibility 0.5s ease, opacity 0.5s ease;
  visibility: hidden;
  z-index: 3;
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #3d424b;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: visibility 0.5s ease, opacity 0.5s ease;
}
.l-menu__bg.is-active {
  visibility: visible;
  opacity: 1;
}

/* section
----------------------------------------- */
.l-section__headingEng {
  display: block;
  margin: 0 0 0.5rem;
  color: #babfd0;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
}

.l-section__headingText {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: -webkit-linear-gradient(334.29deg, #2293ca 0%, #ea93cc 100%);
  background-image: linear-gradient(115.71deg, #2293ca 0%, #ea93cc 100%);
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1.3076923077;
  letter-spacing: 0.05em;
}
.l-section__headingText span.u-only-sp {
  display: inline-block;
}

.l-section__text {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
}

/* home-business
----------------------------------------- */
.p-home-business {
  padding: 0 0 10rem;
  overflow-x: hidden;
}

.p-home-business__slider {
  margin: 4rem 0 0;
}
.p-home-business__slider .splide__track {
  overflow: inherit;
}

.p-home-business__sliderItem {
  border-bottom: 1px solid #babfd0;
}

.p-home-business__sliderItemLink {
  display: block;
  padding: 0 0 3rem;
}

.p-home-business__sliderNo {
  color: #28a4df;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
}

.p-home-business__sliderTitleEng {
  display: block;
  margin: 1rem 0 0;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
}

.p-home-business__sliderTitleJp {
  position: relative;
  margin: 4.1rem 0 0;
}
.p-home-business__sliderTitleJp .-text {
  color: #babfd0;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.p-home-business__sliderTitleJp .-arrow {
  -webkit-transform: translate(0%, -50%);
  position: absolute;
  top: 50%;
  right: 0;
  width: 2rem;
  height: 2.4rem;
          transform: translate(0%, -50%);
  background-image: url(../images/home/business_arrow.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* home-case
----------------------------------------- */
.p-home-case {
  padding: 10rem 0;
}
.p-home-case .l-container {
  padding: 0 2rem;
}

.p-home-case__fixedNavList {
  display: none;
}

.p-home-case__fixedNavItem:not(:last-child) {
  margin: 0 0 0.8rem;
}
.p-home-case__fixedNavItem.-current .p-home-case__fixedNavLink::before {
  width: 0.8rem;
  height: 0.8rem;
  background-color: #28a4df;
}

.p-home-case__fixedNavLink {
  position: relative;
  padding: 0 0 0 1.6rem;
}
.p-home-case__fixedNavLink span {
  font-weight: 500;
  font-size: max(1.6rem, 12px);
  line-height: 2.1875;
  letter-spacing: 0em;
}
.p-home-case__fixedNavLink::before {
  -webkit-transform: translate(0%, -50%);
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
          transform: translate(0%, -50%);
  border-radius: 50%;
  background: #babfd0;
  content: "";
}

.p-home-case__listWrap {
  margin: 4rem 0 0;
}

.p-home-case__list {
  margin: 0 0 1.9rem;
}
.p-home-case__list:not(.-current) {
  display: none;
}

.p-home-case__item:not(:last-child) {
  margin: 0 0 2rem;
}

.p-home-case__itemLink {
  display: block;
  position: relative;
  padding: 0 0 1.7rem;
  border-bottom: 1px solid #babfd0;
}
.p-home-case__itemLink time {
  color: #babfd0;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
}

.p-home-case__itemTitle {
  margin: 0.5rem 0 2rem;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0em;
}

.p-home-case__tagList {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  display: -webkit-box;
  display: flex;
  position: relative;
          flex-direction: row;
  flex-wrap: wrap;
          align-items: center;
          justify-content: flex-start;
  padding: 0 3.2rem 0 0;
}
.p-home-case__tagList::before {
  -webkit-transform: translate(0%, -50%);
  position: absolute;
  top: calc(50% - 0.7rem);
  right: 0;
  width: 2rem;
  height: 2.4rem;
          transform: translate(0%, -50%);
  background-image: url(../images/home/case_arrow.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

.p-home-case__tagItem {
  margin-bottom: 1.4rem;
  color: #28a4df;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0em;
}
.p-home-case__tagItem:not(:last-child) {
  margin: 0 2rem 1.4rem 0;
}

/* home-kv
----------------------------------------- */
canvas {
  z-index: -1 !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  max-width: 100vw !important;
  min-height: auto !important;
}

.p-home-kv {
  position: relative;
  padding: 4.1rem 0 0;
  overflow-x: hidden;
}

.p-home-kv__inner {
  position: relative;
  margin: -12rem 0 0;
}

.p-home-kv__catchEng {
  color: #2e3138;
  font-weight: 500;
  font-size: 4.6rem;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
}

.p-home-kv__catchJp {
  margin: 0.9rem 0 0;
}
.p-home-kv__catchJp span {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: -webkit-linear-gradient(334.29deg, #2293ca 0%, #ea93cc 100%);
  background-image: linear-gradient(115.71deg, #2293ca 0%, #ea93cc 100%);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0em;
}
.p-home-kv__catchJp span.u-only-sp {
  display: inline-block;
}
.p-home-kv__catchJp span.u-only-pc {
  display: none;
}

.p-home-kv__circleWrap {
  -webkit-transform: scale(-1, 1);
  position: relative;
  right: -3.5rem;
  width: 109.0666666667vw;
  height: 109.0666666667vw;
          transform: scale(-1, 1);
  border-radius: 100%;
  background: #f2f8fe;
  box-shadow: inset -20px -20px 40px rgba(255, 255, 255, 0.5), inset 20px 20px 40px rgba(209, 205, 199, 0.5);
}
.p-home-kv__circleWrap::before {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 104vw;
  height: 104vw;
          transform: translate(-50%, -50%);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.p-home-kv__circleCenter {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 89.3333333333vw;
  height: 89.3333333333vw;
          transform: translate(-50%, -50%);
  border-radius: 100%;
  background: #f2f8fe;
  box-shadow: -20px -20px 40px rgba(255, 255, 255, 0.5), 20px 20px 40px rgba(209, 205, 199, 0.5);
}

.p-home-kv__circleGlay,
.p-home-kv__circlePink,
.p-home-kv__circleBlue {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 109.8666666667vw;
  height: 109.8666666667vw;
          transform: translate(-50%, -50%);
}

.p-home-kv__circleGlay #circle {
  -webkit-animation: none;
          animation: none;
}
.p-home-kv__circleGlay #circle #circleInner {
  -webkit-animation: none;
  stroke: #dadada;
  stroke-dashoffset: 424;
  stroke-dasharray: 412;
          animation: none;
}

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

.p-home-kv__circleBlue {
  z-index: 3;
}
.p-home-kv__circleBlue #circle {
  -webkit-animation: loading 4.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
          animation: loading 4.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.p-home-kv__circleBlue #circle #circleInner {
  -webkit-animation: none;
  stroke: #28a4df;
  stroke-dashoffset: 1150;
  stroke-dasharray: 1236;
          animation: none;
}

#circle {
  -webkit-animation: loading 3.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  display: block;
  width: 109.8666666667vw;
  height: 109.8666666667vw;
          animation: loading 3.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
#circle #circleInner {
  stroke-width: 20;
  stroke-dashoffset: 200;
  stroke-dasharray: 824;
  stroke-miterlimit: 0;
  stroke-linecap: round;
  stroke: #df97cb;
  fill: transparent;
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes loading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
@-webkit-keyframes loading-circle {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -1648;
  }
}
@keyframes loading-circle {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -1648;
  }
}
.p-home-kv__circleImgWrap {
  -webkit-transform: translate(-50%, -50%) scale(-1, 1);
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 82.4vw;
          transform: translate(-50%, -50%) scale(-1, 1);
  border-radius: 100%;
}

.p-home-kv__circleImg {
  position: relative;
  overflow: hidden;
  border-radius: 100%;
}
.p-home-kv__circleImg::before {
  display: block;
  padding-top: 100%;
  content: "";
}
.p-home-kv__circleImg img {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.p-home-kv__news {
  margin: 4rem 0 0;
}

.p-home-kv__newsHeading {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
}

.p-home-kv__newsInfo {
  margin: 1rem 0 0;
}
.p-home-kv__newsInfo time {
  color: #babfd0;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.25;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
}

.p-home-kv__newsTitle {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  width: 85.5457227139%;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-home-kv__newsLink {
  display: block;
  position: relative;
  padding: 0 0 1.5rem;
  border-bottom: 1px solid #babfd0;
}
.p-home-kv__newsLink:hover .p-home-kv__newsLinkArrow {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.p-home-kv__newsLink:hover .p-home-kv__newsLinkArrow::before {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}

.p-home-kv__newsLinkArrow {
  -webkit-transition: -webkit-transform 0.2s ease;
  -webkit-transform: translate(0%, 0%);
  position: absolute;
  right: 0;
  bottom: 1.5rem;
  width: 3rem;
  height: 3rem;
          transform: translate(0%, 0%);
  border-radius: 50%;
  background-color: #28a4df;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.p-home-kv__newsLinkArrow::before {
  -webkit-transition: -webkit-transform 0.5s ease;
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1rem;
          transform: translate(-50%, -50%);
  background-image: url(../images/common/news_arrow.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

/* home-mission
----------------------------------------- */
.p-home-mission {
  padding: 10rem 0 9.1rem;
}

.p-home-mission__img {
  position: relative;
  width: 51.9174041298%;
  margin: 0 auto 2.5rem;
  overflow: hidden;
}
.p-home-mission__img::before {
  display: block;
  padding-top: 121.02%;
  content: "";
}
.p-home-mission__img img {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.p-home-mission__contentText {
  margin: 1.5rem 0 2rem;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
}

/* home-push
----------------------------------------- */
.p-home-push {
  -webkit-transition: background-color 1.2s ease;
  transition: background-color 1.2s ease;
}
.p-home-push.bgColor.is-anim {
  background-color: #28a4df;
}
.p-home-push.bgColor.is-anim .p-home-push__engTitle {
  color: #9bdfff;
}
.p-home-push.bgColor.is-anim .p-home-push__contentTitle span {
  color: #fff;
}
.p-home-push.bgColor.is-anim .p-home-push__contentText span {
  color: #fff;
}

.p-home-push__wrap {
  z-index: 1;
  position: relative;
  height: 100vh;
}

.p-home-push__area {
  display: block;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 9rem 0 9.2rem;
}
.p-home-push__area:first-child .p-home-push__listItem:nth-child(2) {
  opacity: 0;
}
.p-home-push__area:first-child.is-active .p-home-push__listItem:first-child .-circle {
  border: 1px solid #fff;
  background-color: #0387c6;
}
.p-home-push__area:first-child.is-active .p-home-push__listItem:first-child .-circle::before {
  opacity: 1;
}
.p-home-push__area:first-child.is-active .p-home-push__listItem:nth-child(2) {
  opacity: 1;
}
.p-home-push__area:nth-child(2) {
  z-index: 0;
}
.p-home-push__area:nth-child(2) .p-home-push__listItem {
  opacity: 0;
}
.p-home-push__area:nth-child(2).is-active .p-home-push__listItem:nth-child(2) {
  -webkit-transform: translate(-50%, -0.6rem);
          transform: translate(-50%, -0.6rem);
  opacity: 1;
}
.p-home-push__area:nth-child(2).is-active .p-home-push__listItem:nth-child(2) .-circle {
  border: 1px solid #fff;
  background-color: #0387c6;
}
.p-home-push__area:nth-child(2).is-active .p-home-push__listItem:nth-child(2) .-circle::before {
  opacity: 1;
}
.p-home-push__area:nth-child(3) {
  z-index: -1;
}
.p-home-push__area:nth-child(3) .p-home-push__listItem:nth-child(2) {
  -webkit-transform: translate(-50%, -0.6rem);
          transform: translate(-50%, -0.6rem);
  opacity: 0;
}
.p-home-push__area:nth-child(3).is-active .p-home-push__listItem:nth-child(2) {
  -webkit-transform: translate(-50%, -0.6rem);
          transform: translate(-50%, -0.6rem);
  opacity: 1;
}
.p-home-push__area:nth-child(3).is-active .p-home-push__listItem:nth-child(3) .-circle {
  border: 1px solid #fff;
  background-color: #0387c6;
}
.p-home-push__area:nth-child(3).is-active .p-home-push__listItem:nth-child(3) .-circle::before {
  opacity: 1;
}
.p-home-push__area.is-active {
  z-index: 1;
}
.p-home-push__area.is-active .p-home-push__content {
  opacity: 1;
}
.p-home-push__area.is-active .p-home-push__content.inviewUp.is-anim .p-home-push__contentTitle span {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
.p-home-push__area.is-active .p-home-push__content.inviewUp.is-anim .p-home-push__contentText span {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.p-home-push__content {
  opacity: 0;
}

.p-home-push__engTitle {
  -webkit-transition: color 1.2s ease;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
  transition: color 1.2s ease;
}

.p-home-push__contentTitle {
  margin: 1.7rem 0 0;
  overflow: hidden;
}
.p-home-push__contentTitle span {
  -webkit-transition: color 1.2s ease, -webkit-transform 0.5s ease;
  -webkit-transform: translateY(100%);
  display: inline-block;
          transform: translateY(100%);
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  transition: color 1.2s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, color 1.2s ease;
  transition: transform 0.5s ease, color 1.2s ease, -webkit-transform 0.5s ease;
}

.p-home-push__contentText {
  height: 4.2rem;
  margin: 0.3rem 0 0;
  overflow: hidden;
}
.p-home-push__contentText span {
  -webkit-transition: color 1.2s ease, -webkit-transform 0.5s ease;
  -webkit-transform: translateY(100%);
  display: inline-block;
          transform: translateY(100%);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  transition: color 1.2s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, color 1.2s ease;
  transition: transform 0.5s ease, color 1.2s ease, -webkit-transform 0.5s ease;
}

.p-home-push__list {
  -webkit-transform: translate(0%, -50%);
  position: absolute;
  top: calc(50% - 1.7rem);
  right: -5.5rem;
  width: 1.3rem;
  height: 10rem;
  padding: 0 0 0 1.4rem;
          transform: translate(0%, -50%);
}
.p-home-push__list::before {
  -webkit-transform: translate(0%, -50%);
  position: absolute;
  top: 50%;
  left: 0.65rem;
  width: 0.1rem;
  height: 9rem;
          transform: translate(0%, -50%);
  background-color: #fff;
  content: "";
}

.p-home-push__listItem {
  -webkit-transition: -webkit-transform 0.5s ease;
  -webkit-transform: translate(-50%, 0%);
  width: 1.3rem;
  height: 1.3rem;
          transform: translate(-50%, 0%);
  color: #fff;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.p-home-push__listItem .-circle {
  -webkit-transform: translate(-50%, -50%);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.3rem;
  height: 1.3rem;
          transform: translate(-50%, -50%);
  border-radius: 5rem;
  background-color: rgba(255, 255, 255, 0);
}
.p-home-push__listItem .-circle::before {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.45rem;
  height: 0.45rem;
          transform: translate(-50%, -50%);
  border-radius: 5rem;
  background-color: #fff;
  content: "";
}
.p-home-push__listItem:first-child {
  position: absolute;
  top: 0%;
  left: 50%;
}
.p-home-push__listItem:nth-child(2) {
  -webkit-transform: translate(-50%, 0.8rem);
  position: absolute;
  top: 50%;
  left: 50%;
          transform: translate(-50%, 0.8rem);
}
.p-home-push__listItem:nth-child(3) {
  position: absolute;
  bottom: 0;
  left: 50%;
}

.p-home-push__imgWrap {
  position: relative;
  width: 66.3716814159%;
  margin: 4.75rem auto 0;
}
.p-home-push__imgBlock:first-child .p-home-push__img {
  margin: 0 auto 2.3rem;
}

.p-home-push__img {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}
.p-home-push__img::before {
  display: block;
  padding-top: 133.33%;
  content: "";
}
.p-home-push__img::after {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
          transform: translate(-50%, -50%);
  content: "";
}
.p-home-push__img img {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

/* home-staffing
----------------------------------------- */

.p-home-staffing__img {
  position: relative;
  overflow: hidden;
}
.p-home-staffing__img::before {
  display: block;
  padding-top: 66.67%;
  content: "";
}
.p-home-staffing__img img {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.p-home-staffing__content {
  padding: 6rem 0;
}
.p-home-staffing__content .l-section__headingEng {
  margin: 0;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.2857142857;
  letter-spacing: 0em;
}

.p-home-staffing__contentText {
  margin: 1.5rem 0 1.9rem;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

/* company
----------------------------------------- */
.p-company-purpose {
  margin: 4.2rem 0 0;
  overflow-x: hidden;
}
.p-company-purpose .l-section__heading {
  margin: 0 0 3rem;
}

.p-company-purpose__slider {
  position: relative;
  margin: 0 0 6rem;
}

.p-company-purpose__sliderItem {
  pointer-events: none;
}
.p-company-purpose__sliderItem figure {
  position: relative;
  overflow: hidden;
}
.p-company-purpose__sliderItem figure::before {
  display: block;
  padding-top: 138.99%;
  content: "";
}
.p-company-purpose__sliderItem figure img {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.p-company-purpose__sliderTextBlock {
  -webkit-transform: translate(0%, 0%);
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  width: 28.5333333333%;
  height: 100%;
  margin: 0 13.3333333333% 0 58.1333333333%;
          transform: translate(0%, 0%);
  background-color: #f2f7fe;
}

.p-company-purpose__sliderTextWrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-box-align: start;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: flex;
          flex-direction: row-reverse;
          align-items: flex-start;
          justify-content: center;
}

.p-company-purpose__sliderTextEng {
  -webkit-writing-mode: vertical-rl;
  display: block;
  margin: 0 0 0 1.6vw;
  color: #babfd0;
  font-weight: 500;
  font-size: 3.2vw;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
          writing-mode: vertical-rl;
}

.p-company-purpose__sliderText {
  -webkit-background-clip: text;
  -webkit-font-feature-settings: "vert" on;
          font-feature-settings: "vert" on;
  -webkit-writing-mode: vertical-rl;
  -webkit-text-fill-color: transparent;
  background-image: -webkit-linear-gradient(334.29deg, #2293ca 0%, #ea93cc 100%);
  background-image: linear-gradient(115.71deg, #2293ca 0%, #ea93cc 100%);
  font-weight: 600;
  font-size: 8vw;
  line-height: 1.1666666667;
  letter-spacing: 0.18em;
          writing-mode: vertical-rl;
}

.p-company-spirit {
  margin: 7.9rem 0 0;
}

.p-company-spirit__img {
  position: relative;
  overflow: hidden;
}
.p-company-spirit__img::before {
  display: block;
  padding-top: 66.93%;
  content: "";
}
.p-company-spirit__img img {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.p-company-spirit__container {
  padding: 7rem 0 7.7rem;
  background-color: #28a4df;
}
.p-company-spirit__body .l-section__heading .l-section__headingEng {
  color: #9bdfff;
}
.p-company-spirit__body .l-section__heading .l-section__headingText {
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-image: none;
  color: #fff;
}

.p-company-spirit__content {
  margin: 2rem 0 0;
}
.p-company-spirit__content .l-section__text {
  color: #fff;
}

.p-company-profile {
  padding: 6rem 0 10rem;
}

.p-company-profile__list {
  margin: 1.1rem 0 0;
}

.p-company-profile__row {
  padding: 1.9rem 0;
  border-bottom: 1px solid #babfd0;
}

.p-company-profile__item {
  margin: 0 0 0.5rem;
  color: #babfd0;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-company-profile__desc {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.p-company-profile__desc.-wrap {
  white-space: inherit;
}

/* contact
----------------------------------------- */
.p-contact-form {
  margin: 4rem 0 10rem;
  overflow-x: hidden;
}

.p-contact-form__headProgressWrap {
  text-align: center;
}

.p-contact-form__headProgress {
  -webkit-box-align: start;
  -webkit-box-pack: center;
  display: -webkit-inline-box;
  display: inline-flex;
  position: relative;
          align-items: flex-start;
          justify-content: center;
  padding: 2.9rem 0 0;
}
.p-contact-form__headProgress::before {
  -webkit-transform: translate(-50%, 0%);
  position: absolute;
  top: 1.3rem;
  left: 50%;
  width: 68.9655172414%;
  height: 0.1rem;
          transform: translate(-50%, 0%);
  background-color: #3d424b;
  content: "";
}

.p-contact-form__headProgressText {
  display: block;
  position: relative;
  color: #babfd0;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.0155em;
}
.p-contact-form__headProgressText:not(:last-child) {
  margin: 0 5.1rem 0 0;
}
.p-contact-form__headProgressText .-circle {
  -webkit-transform: translate(-50%, 0%);
  position: absolute;
  top: -2rem;
  left: 50%;
  width: 1rem;
  height: 1rem;
          transform: translate(-50%, 0%);
  border: 1px solid #3d424b;
  border-radius: 50%;
  background-color: #eaeaea;
  content: "";
}
.p-contact-form__headProgressText.-current {
  color: #3d424b;
}
.p-contact-form__headProgressText.-current .-circle::before {
  -webkit-transform: translate(-50%, -50%);
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1rem;
          transform: translate(-50%, -50%);
  border: 1px solid #28a4df;
  border-radius: 50%;
  background-color: #28a4df;
  content: "";
}
.p-contact-form__headProgressText.-current .-circle:after {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.7rem;
  height: 2.7rem;
          transform: translate(-50%, -50%);
  border: 1px solid #3d424b;
  border-radius: 50%;
  background-color: #f2f7fe;
  content: "";
}

.p-contact-form__headText {
  margin: 2.2rem 0 0;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0em;
}
.p-contact-form__headText span {
  display: inline-block;
  color: #df97cb;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0em;
}

.p-contact-form__back {
  display: inline-block;
  margin: 4rem 0 0;
  text-align: left;
}
.p-contact-form__back span {
  display: inline-block;
  position: relative;
  padding: 0 0 0.3rem;
  color: #28a4df;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
}
.p-contact-form__back span::before {
  -webkit-transform: translate(-50%, 0%);
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 0.1rem;
          transform: translate(-50%, 0%);
  background-color: #28a4df;
  content: "";
}

/* news
----------------------------------------- */
.p-news-summary {
  margin: 5rem 0 10.4rem;
}

.p-news-summary__catList {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-align: start;
  -webkit-box-pack: start;
  display: -webkit-box;
  display: flex;
          flex-direction: row;
  flex-wrap: wrap;
          align-items: flex-start;
          justify-content: flex-start;
}

.p-news-summary__catItem:not(:last-child) {
  margin: 0 1rem 1rem 0;
}

.p-news-summary__catLink {
  display: block;
  padding: 0.9rem 2.45rem;
  border: 1px solid #28a4df;
  border-radius: 4rem;
  background-color: rgba(255, 255, 255, 0);
  color: #0f0f0f;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
}
.p-news-summary__catLink.-current {
  background-color: #28a4df;
  color: #fff;
}

.p-news-summary__list {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-align: start;
  -webkit-box-pack: start;
  display: -webkit-box;
  display: flex;
          flex-direction: row;
  flex-wrap: wrap;
          align-items: flex-start;
          justify-content: flex-start;
  margin: 4rem 0 3.3rem;
}

.p-news-summary__item {
  width: 47.197640118%;
}
.p-news-summary__item:not(:nth-child(2n)) {
  margin: 0 5.604719764% 8.8495575221% 0;
}
.p-news-summary__item:nth-child(2n) {
  margin: 0 0 8.8495575221% 0;
}

.p-news-summary__link {
  display: block;
}

.p-news-summary__img {
  position: relative;
  overflow: hidden;
}
.p-news-summary__img::before {
  display: block;
  padding-top: 62.5%;
  content: "";
}
.p-news-summary__img img {
  -webkit-transition: -webkit-transform 0.4s ease;
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
     object-fit: cover;
  font-family: "object-fit: cover;";
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.p-news-summary__content {
  margin: 1rem 0 0;
}
.p-news-summary__content time {
  display: block;
  color: #c1c1c1;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
}

.p-news-summary__title {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  margin: 0.5rem 0 0.7rem;
  padding: 0 0 1rem;
  overflow: hidden;
  border-bottom: 1px solid #babfd0;
  color: #0b0b0b;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.2142857143;
  letter-spacing: 0.05em;
}

.p-news-summary__tag {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border: 1px solid #0387c6;
  border-radius: 4rem;
  color: #0f0f0f;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
}

/* news-detail
----------------------------------------- */
.p-news-detail {
  margin: 3.5rem 0 10.4rem;
}
.p-news-detail__info time {
  display: block;
  color: #28a4df;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.2857142857;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
}

.p-news-detail__infoWrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: flex;
          flex-direction: row;
          align-items: center;
          justify-content: space-between;
  margin: 1.5rem 0 2rem;
}

.p-news-detail__tag {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border: 1px solid #28a4df;
  border-radius: 4rem;
  color: #0f0f0f;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
}

.p-news-detail__social {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  display: -webkit-box;
  display: flex;
          flex-direction: row;
          align-items: center;
          justify-content: flex-start;
}

.p-news-detail__socialItem:not(:last-child) {
  margin: 0 2.7rem 0 0;
}

.p-news-detail__socialLink {
  display: block;
}
.p-news-detail__socialLink img {
  width: 100%;
}
.p-news-detail__socialLink.-facebook {
  width: 1.07rem;
}
.p-news-detail__socialLink.-instagram {
  width: 2rem;
}
.p-news-detail__socialLink.-twitter {
  width: 2.4rem;
}

.p-news-detail__title {
  margin: 0 0 3rem;
  color: #0b0b0b;
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-news-detail__img {
  position: relative;
  overflow: hidden;
}
.p-news-detail__img::before {
  display: block;
  padding-top: 58.82%;
  content: "";
}
.p-news-detail__img img {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.p-news-detail__contentDetail {
  margin: 2rem 0 5rem;
}
.p-news-detail__contentDetail p {
  color: #0f0f0f;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2.0714285714;
  letter-spacing: 0em;
}
.p-news-detail__contentDetail p:not(:last-child) {
  margin: 0 0 2rem;
}
.p-news-detail__contentDetail ul li {
  color: #0f0f0f;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2.0714285714;
  letter-spacing: 0em;
  list-style: disc;
  list-style-position: inside;
}
.p-news-detail__contentDetail h2 {
  margin: 5rem 0 2rem;
  padding: 0 0 0.9rem;
  border-bottom: 1px solid #3d424b;
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 1.5454545455;
  letter-spacing: 0em;
}
.p-news-detail__contentDetail h3 {
  margin: 4rem 0 1.2rem;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.5555555556;
  letter-spacing: 0em;
}
.p-news-detail__contentDetail a {
  text-decoration: underline;
}

.p-news-detail__back {
  display: block;
  width: 100%;
  text-align: center;
}
.p-news-detail__back span {
  display: inline-block;
  position: relative;
  color: #28a4df;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
}
.p-news-detail__back span::before {
  -webkit-transform: translate(-50%, 0%);
  position: absolute;
  bottom: -0.4rem;
  left: 50%;
  width: 100%;
  height: 1px;
          transform: translate(-50%, 0%);
  background-color: #28a4df;
  content: "";
}

/* privacy
----------------------------------------- */
.p-privacy {
  margin: 0 0 10rem;
}

.p-privacy__sec:not(:first-child) .p-hero {
  padding: 10rem 0 0;
}

.p-privacy__inner {
  margin: 4rem 0 0;
}

.p-privacy__head {
  padding: 0 0 4rem;
  border-bottom: 1px solid #babfd0;
}

.p-privacy__headTitle {
  margin: 0 0 2rem;
  color: #000;
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-privacy__headText {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5333333333;
  letter-spacing: 0em;
}

.p-privacy__content {
  margin: 4rem 0 0;
}

.p-privacy__contentTitle {
  margin: 0 0 1rem;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2.1875;
  letter-spacing: 0em;
}

.p-privacy__contentText {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.p-privacy__contentText:not(:last-child) {
  margin: 0 0 3rem;
}
.p-privacy__contentText.-contact {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0em;
}
.p-privacy__contentText.-contact span.-gray {
  color: #babfd0;
}
.p-privacy__contentText.-other {
  margin: 4rem 0 !important;
}

.p-privacy__contentList {
  margin: 0 -1.8rem 3rem 0;
  overflow-x: scroll;
}

.p-privacy__contentRow {
  -webkit-box-pack: start;
  display: -webkit-box;
  display: flex;
          justify-content: flex-start;
  width: 89.6rem;
}
.p-privacy__contentRow:first-child .p-privacy__contentDt {
  border-top: 1px solid #babfd0;
}
.p-privacy__contentRow:first-child .p-privacy__contentDd {
  border-top: 1px solid #babfd0;
}

.p-privacy__contentDt {
  width: 28.8rem;
  padding: 1.35rem 2rem;
  border-right: 1px solid #babfd0;
  border-bottom: 1px solid #babfd0;
  border-left: 1px solid #babfd0;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0em;
}

.p-privacy__contentDd {
  width: 60.8rem;
  padding: 1.35rem 2rem;
  border-right: 1px solid #babfd0;
  border-bottom: 1px solid #babfd0;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0em;
}

/* recruit
----------------------------------------- */
.p-recruit-lead {
  margin: 5rem 0 0;
}

.p-recruit-lead__img {
  position: relative;
  overflow: hidden;
}
.p-recruit-lead__img::before {
  display: block;
  padding-top: 66.67%;
  content: "";
}
.p-recruit-lead__img img {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.p-recruit-lead__body {
  padding: 6rem 0 7.5rem;
  background-color: #28a4df;
}
.p-recruit-lead__body .l-section__text {
  color: #fff;
}

.p-recruit-lead__title {
  margin: 0 0 2.1rem;
  color: #fff;
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-recruit-culture {
  padding: 5.8rem 0 10rem;
}

.p-recruit-culture__list {
  margin: 1.4rem 0 0;
}

.p-recruit-culture__item {
  padding: 2.6rem 0 3.9rem;
  border-bottom: 1px solid #babfd0;
}

.p-recruit-culture__itemNo {
  display: block;
  margin: 0 0 0.4rem;
  color: #28a4df;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.2857142857;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
}

.p-recruit-culture__itemTitle {
  margin: 0 0 2rem;
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-recruit-culture__itemText {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.1875;
  letter-spacing: 0em;
}

.p-recruit-culture__button {
  margin: 5rem 0 0;
}
.p-recruit-culture__button .c-button {
  width: 17.7rem;
  margin: 0 auto;
  padding: 0.95rem 0.7rem 0.95rem 2.7rem;
}
.p-recruit-culture__button .c-button .c-button__text {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-recruit-culture__buttonText {
  margin: 0 0 2rem;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0em;
  text-align: center;
}

/* security
----------------------------------------- */
.p-security-sec {
  margin: 4rem 0 9.1rem;
}

.p-security__head {
  margin: 0 0 4rem;
  padding: 0 0 4rem;
  border-bottom: 1px solid #babfd0;
}

.p-security__headTitle {
  margin: 0 0 2rem;
  color: #000;
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-security__headText {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5333333333;
  letter-spacing: 0em;
}

.p-security__contentText {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.p-security__contentText:not(:last-child) {
  margin: 0 0 4rem;
}
.p-security__contentText span {
  display: block;
  padding-left: 1em;
  text-indent: -1.4em;
}

/* service
----------------------------------------- */
.p-service-lead {
  padding: 0 0 8rem;
}
.p-service-lead.-system {
  margin: 4.8rem 0 0;
}
.p-service-lead.-system .p-service-lead__img {
  position: relative;
  width: 87.0746666667%;
  margin: 0 0 0 auto;
  overflow: hidden;
}
.p-service-lead.-system .p-service-lead__img::before {
  display: block;
  padding-top: 98%;
  content: "";
}
.p-service-lead.-system .p-service-lead__desc {
  margin: 4rem 0 0;
}
.p-service-lead.-algorithm {
  margin: 5.7rem 0 0;
}
.p-service-lead.-algorithm .p-service-lead__img {
  position: relative;
  width: 84.5333333333%;
  margin: 0 3.2% 0 auto;
  overflow: hidden;
}
.p-service-lead.-algorithm .p-service-lead__img::before {
  display: block;
  padding-top: 92.11%;
  content: "";
}
.p-service-lead.-algorithm .p-service-lead__desc {
  margin: 5.9rem 0 0;
}
.p-service-lead.-staffing {
  margin: 6.6rem 0 0;
}
.p-service-lead.-staffing .p-service-lead__img {
  position: relative;
  width: 89.6%;
  margin: 0 5.3333333333% 0 auto;
  overflow: hidden;
}
.p-service-lead.-staffing .p-service-lead__img::before {
  display: block;
  padding-top: 80.06%;
  content: "";
}
.p-service-lead.-staffing .p-service-lead__img img {
  -o-object-fit: contain;
     object-fit: contain;
}
.p-service-lead.-staffing .p-service-lead__desc {
  margin: 7.1rem 0 0;
}
.p-service-lead.-staffing .p-service-lead__desc .l-section__headingText {
  white-space: inherit;
}
.p-service-lead.-staffing .p-service-lead__desc .c-button {
  margin: 3rem auto 0 0;
}

.p-service-lead__imgWrap {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

.p-service-lead__img img {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.p-service-lead__desc .l-section__heading {
  margin: 0 0 1.5rem;
}
.p-service-lead__desc .l-section__headingText {
  white-space: nowrap;
}

.p-service-feature {
  padding: 8rem 0 5rem;
  background-color: #28a4df;
}
.p-service-feature.-algorithm .p-service-feature__desc {
  margin: 2.7rem 0 3rem;
}
.p-service-feature.-algorithm .p-service-feature__descTitle {
  margin: 0 0 2rem;
}
.p-service-feature.-staffing {
  padding: 7.8rem 0 9.5rem;
}
.p-service-feature__body .l-section__headingEng {
  color: #9bdfff;
}
.p-service-feature__body .l-section__headingText {
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-image: none;
  color: #fff;
}

.p-service-feature__desc {
  margin: 2.7rem 0 2rem;
}
.p-service-feature__desc .l-section__text {
  color: #fff;
}

.p-service-feature__descTitle {
  margin: 0 0 3rem;
  color: #fff;
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-service-feature__list {
  width: 79.0560471976%;
  margin: 0 0 0 auto;
}

.p-service-feature__item {
  padding: 3rem 0 3.9rem;
  border-bottom: 1px solid #fff;
}
.p-service-feature__item:last-child {
  padding: 3rem 0;
}

.p-service-feature__itemTitle {
  margin: 0 0 1rem;
  color: #fff;
  font-weight: 600;
  font-size: 2.1rem;
  line-height: 2;
  letter-spacing: 0em;
}

.p-service-feature__itemText {
  color: #fff;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-service-feature__graph {
  margin: 7.4rem 0 0;
}
.p-service-feature__graphItem:first-child .p-service-feature__graphItemImg {
  position: relative;
  width: 92.3303834808%;
  margin: 0 0 4.4rem auto;
  overflow: hidden;
}
.p-service-feature__graphItem:first-child .p-service-feature__graphItemImg::before {
  display: block;
  padding-top: 105.75%;
  content: "";
}
.p-service-feature__graphItem:nth-child(2) .p-service-feature__graphItemImg {
  position: relative;
  width: 82.8908554572%;
  margin: 0 9.7345132743% 0 7.3746312684%;
  overflow: hidden;
}
.p-service-feature__graphItem:nth-child(2) .p-service-feature__graphItemImg::before {
  display: block;
  padding-top: 99.64%;
  content: "";
}

.p-service-feature__graphItemImg img {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
     object-fit: cover;
}

.p-service-case {
  padding: 5rem 0 7rem;
  overflow-x: hidden;
  background-color: #28a4df;
}
.p-service-case .l-section__headingEng {
  color: #fff;
}
.p-service-case .l-section__headingText {
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-image: none;
  color: #fff;
}

.p-service-case__slider {
  position: relative;
  margin: 3rem 0 0;
  padding: 0 0 9rem;
}
.p-service-case__slider .splide__track {
  overflow: inherit;
}
.p-service-case__slider .splide__arrows {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-align: start;
  -webkit-box-pack: start;
  display: -webkit-box;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
          flex-direction: row;
          align-items: flex-start;
          justify-content: flex-start;
}
.p-service-case__slider .splide__arrows .splide__arrow {
  -webkit-transform: translate(0%);
  position: unset;
  width: 5rem;
  height: 5rem;
          transform: translate(0%);
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0);
  opacity: 1;
}
.p-service-case__slider .splide__arrows .splide__arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.9rem;
  height: 1.6rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.p-service-case__slider .splide__arrows .splide__arrow svg {
  display: none;
}
.p-service-case__slider .splide__arrows .splide__arrow.splide__arrow--prev {
  margin: 0 1rem 0 0;
}
.p-service-case__slider .splide__arrows .splide__arrow.splide__arrow--prev::before {
  -webkit-transform: translate(-50%, -50%) scale(-1, 1);
          transform: translate(-50%, -50%) scale(-1, 1);
  background-image: url(../images/service/slider_arrow.svg);
}
.p-service-case__slider .splide__arrows .splide__arrow.splide__arrow--next::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(../images/service/slider_arrow.svg);
}

.p-service-case__sliderItemLink {
  display: block;
  padding: 0 0 2.7rem;
  border-bottom: 1px solid #fff;
}

.p-service-case__sliderItemImg {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
}
.p-service-case__sliderItemImg::before {
  display: block;
  padding-top: 71.02%;
  content: "";
}
.p-service-case__sliderItemImg img {
  -webkit-transition: -webkit-transform 0.2s ease;
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
     object-fit: cover;
  font-family: "object-fit: cover;";
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.p-service-case__sliderItemTitle {
  position: relative;
  margin: 1.5rem 0 0;
  padding: 0 3.2rem 0 0;
  color: #fff;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0em;
}
.p-service-case__sliderItemTitle::before {
  -webkit-transform: translate(0%, -50%);
  position: absolute;
  top: 50%;
  right: 0;
  width: 2.1rem;
  height: 1.6rem;
          transform: translate(0%, -50%);
  background-image: url(../images/service/slider_title_arrow.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

.p-service-value {
  padding: 6rem 0 8rem;
  background-color: #fff;
}

.p-service-value__list {
  margin: 1rem 0 0;
}

.p-service-value__item {
  padding: 3rem 0 2.9rem;
  border-bottom: 1px solid #babfd0;
}

.p-service-value__itemNo {
  display: block;
  margin: 0 0 1rem;
  color: #babfd0;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
}

.p-service-value__itemTitle {
  margin: 0 0 2rem;
  color: #28a4df;
  font-weight: 600;
  font-size: 2.1rem;
  line-height: 1.380952381;
  letter-spacing: 0em;
}

.p-service-guide {
  padding: 6.2rem 0 13.4rem;
  overflow-x: hidden;
}
.p-service-guide.-staffing {
  padding: 5.8rem 0 8rem;
}
.p-service-guide.-staffing .p-service-guide__flow {
  margin: 5.127rem 0 0;
}
.p-service-guide.-staffing .p-service-guide__flowImgWrap {
  padding: 0 4.8vw 0 5.0666666667vw;
}

.p-service-guide__flow {
  margin: 6.6rem 0 0;
}

.p-service-guide__flowImgWrap {
  padding: 0 0 0 4.8vw;
}

.p-service-guide__flowImg img {
  width: 100%;
}

.p-service-guide__flowDesc {
  margin: 4.75rem 0 0;
  padding: 0 1.8rem;
}

.p-service-guide__flowTitle {
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2.1875;
  letter-spacing: 0em;
  text-align: center;
}

.p-service-guide__flowList {
  margin: 1.1rem 0 0;
  padding: 1.9rem 1.8rem 1.8rem 1.4rem;
  background-color: #fff;
}

.p-service-guide__flowItem {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.p-service-guide__flowItem:not(:last-child) {
  margin: 0 0 1.7rem;
}

.p-service-method {
  padding: 0 0 10rem;
}

.p-service-method__item {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid #babfd0;
}

.p-service-method__itemNo {
  display: block;
  margin: 0 0 1rem;
  color: #babfd0;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
}

.p-service-method__itemTitle {
  margin: 0 0 2rem;
  color: #28a4df;
  font-weight: 600;
  font-size: 2.1rem;
  line-height: 1.380952381;
  letter-spacing: 0em;
}

/* works
----------------------------------------- */
.p-works-summary {
  margin: 2.5rem 0 10rem;
}

.p-works-summary__catWrap {
  position: relative;
}
.p-works-summary__catWrap::before {
  -webkit-transform: translate(0%, -50%);
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.5rem;
  height: 0.8rem;
          transform: translate(0%, -50%);
  background-image: url(../images/works/select_arrow.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

.p-works-summary__catList {
  -webkit-appearance: none;
  display: block;
  appearance: none;
  width: 100%;
  padding: 1rem;
  border: none;
  background-color: #f2f7fe;
  color: #0f0f0f;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
  direction: rtl;
  text-indent: 1.4rem;
}

.p-works-summary__content {
  margin: 2rem 0 7rem;
}

.p-works-summary__contentList {
  -webkit-transform: translate(0, 1.5rem);
  visibility: hidden;
  height: 0;
  margin: 0;
          transform: translate(0, 1.5rem);
  opacity: 0;
}
.p-works-summary__contentList.-current {
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform: translate(0, 0);
  visibility: visible;
  height: auto;
          transform: translate(0, 0);
  opacity: 1;
  transition: opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

.p-works-summary__contentItem {
  border-bottom: 1px solid #babfd0;
}

.p-works-summary__contentLink {
  display: block;
  position: relative;
  padding: 2rem 0;
}
.p-works-summary__contentLink time {
  display: block;
  color: #babfd0;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
}

.p-works-summary__contentTitle {
  margin: 2rem 0;
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-works-summary__contentTabList {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-align: start;
  -webkit-box-pack: start;
  display: -webkit-box;
  display: flex;
  position: relative;
          flex-direction: row;
          align-items: flex-start;
          justify-content: flex-start;
}
.p-works-summary__contentTabList::before {
  -webkit-transform: translate(0%, -50%);
  position: absolute;
  top: calc(50% - 0.6rem);
  right: 0;
  width: 2.5rem;
  height: 2.4rem;
          transform: translate(0%, -50%);
  background-image: url(../images/works/summary_arrow.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

.p-works-summary__contentTabItem {
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0em;
}
.p-works-summary__contentTabItem:not(:last-child) {
  margin: 0 2rem 0 0;
}

.p-works-summary__nothing.l-section__text {
  margin: 4rem 0 0;
}

/* works-detail
----------------------------------------- */
.p-works-detail {
  margin: 9.4rem 0 10rem;
}

.p-works-detail__head {
  padding: 0 0 0.6rem;
  border-bottom: 1px solid #babfd0;
}
.p-works-detail__head time {
  display: block;
  color: #babfd0;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
}

.p-works-detail__title {
  margin: 2rem 0;
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-works-detail__tagList {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-align: start;
  -webkit-box-pack: start;
  display: -webkit-box;
  display: flex;
  position: relative;
          flex-direction: row;
  flex-wrap: wrap;
          align-items: flex-start;
          justify-content: flex-start;
}

.p-works-detail__tag {
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0em;
}
.p-works-detail__tag:not(:last-child) {
  margin: 0 2rem 1.4rem 0;
}
.p-works-detail__tag:last-child {
  margin: 0 2rem 1.4rem 0;
}

.p-works-detail__content {
  margin: 4rem 0 7rem;
  padding: 0 0 5rem;
  border-bottom: 1px solid #babfd0;
}
.p-works-detail__contentBlock:not(:last-child) {
  margin: 0 0 6rem;
}

.p-works-detail__contentTitle {
  margin: 0 0 2rem;
  color: #0b0b0b;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 2;
  letter-spacing: 0em;
}
.p-works-detail__contentTitle span {
  display: block;
  margin-top: -0.2rem 0 0;
  color: #28a4df;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.25;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
}

.p-works-detail__contentText {
  color: #0f0f0f;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2.0714285714;
  letter-spacing: 0em;
}

.p-works-detail__back {
  display: block;
  text-align: center;
}
.p-works-detail__back span {
  display: inline-block;
  position: relative;
  color: #28a4df;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
}
.p-works-detail__back span::before {
  -webkit-transform: translate(-50%, 0%);
  position: absolute;
  bottom: -0.4rem;
  left: 50%;
  width: 100%;
  height: 0.1rem;
          transform: translate(-50%, 0%);
  background-color: #28a4df;
  content: "";
}

/* page-hero
----------------------------------------- */
.p-hero {
  padding: 15rem 0 0;
}
.p-hero.is-anim .p-hero__title span.-jp span {
  opacity: 1;
}
.p-hero.is-anim .p-hero__title span.-eng span {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.p-hero .l-container {
  position: relative;
}
.p-hero__title span {
  display: block;
}
.p-hero__title span.-jp {
  overflow: hidden;
}
.p-hero__title span.-jp span {
  -webkit-transition: opacity 0.6s ease;
  -webkit-transition-delay: 0.4s;
  color: #babfd0;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0em;
  opacity: 0;
  transition: opacity 0.6s ease;
          transition-delay: 0.4s;
}
.p-hero__title span.-eng {
  margin: 1rem 0 0;
  overflow: hidden;
}
.p-hero__title span.-eng span {
  -webkit-transition: -webkit-transform 0.4s ease;
  -webkit-transform: translate(0, 100%);
  display: block;
          transform: translate(0, 100%);
  color: #3d424b;
  color: #2e3138;
  font-weight: 500;
  font-size: 3.8rem;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0em;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.u-only-sp {
  display: block;
}

.u-only-pc {
  display: none;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
  display: -webkit-box;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  backface-visibility: hidden;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -webkit-box-align: center;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
          align-items: center;
          justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  margin: 0;
  line-height: 1;
  list-style-type: none;
  pointer-events: auto;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  visibility: hidden;
  position: relative;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
  box-sizing: border-box;
  position: relative;
  flex-shrink: 0;
  margin: 0;
  backface-visibility: hidden;
  list-style-type: none !important;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  -webkit-animation: splide-loading 1s linear infinite;
  contain: strict;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  border: 2px solid #999;
  border-radius: 50%;
  border-left-color: transparent;
          animation: splide-loading 1s linear infinite;
}

.splide__sr {
  clip: rect(0 0 0 0);
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  z-index: 0;
  position: relative;
  overflow: hidden;
}

@-webkit-keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list {
  display: block;
}

.splide__track--fade > .splide__list > .splide__slide {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  z-index: 1;
  position: relative;
  opacity: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -webkit-transform: translateY(-50%);
  display: -webkit-box;
  display: flex;
  z-index: 1;
  position: absolute;
  top: 50%;
          align-items: center;
          justify-content: center;
  width: 2em;
  height: 2em;
  padding: 0;
          transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  opacity: 0.7;
}

.splide__arrow svg {
  fill: #000;
  width: 1.2em;
  height: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
}

.splide__pagination__page {
  -webkit-transition: -webkit-transform 0.2s linear;
  display: inline-block;
  position: relative;
  width: 8px;
  height: 8px;
  margin: 3px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ccc;
  opacity: 0.7;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

.splide__pagination__page.is-active {
  -webkit-transform: scale(1.4);
  z-index: 1;
          transform: scale(1.4);
  background: #fff;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  height: 3px;
  background: #ccc;
}

.splide__slide {
  -webkit-tap-highlight-color: transparent;
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  right: 1em;
  left: auto;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  right: auto;
  left: 1em;
}

.splide__arrows--rtl .splide__arrow--next svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  -webkit-transform: translate(-50%);
  left: 50%;
          transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  top: auto;
  bottom: 1em;
}

.splide__arrows--ttb .splide__arrow--next svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.splide__pagination--ttb {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: flex;
  top: 0;
  right: 0.5em;
  bottom: 0;
  left: auto;
          flex-direction: column;
  padding: 1em 0;
}

@media screen and (min-width: 768px) {
  .c-breadcrumbs {
    position: absolute;
    top: -5.4rem;
    right: 16.2rem;
    margin: 0;
  }
  .c-button {
    width: 30rem;
    padding: 2.4rem 1rem 2rem 3rem;
  }
  .c-button__text {
    font-weight: 500;
    font-size: max(1.6rem, 12px);
    line-height: 1;
    letter-spacing: 0em;
  }
  .c-button__arrow {
    right: 1rem;
    width: 4rem;
    height: 4rem;
  }
  .c-button__arrow::before {
    width: 1.4rem;
    height: 1.4rem;
  }
  .c-pagination {
    width: 72.972972973%;
    margin: 0 0 0 auto;
  }
  .c-pagination__prev {
    margin: 0 8.6rem 0 0;
  }
  .c-pagination__next {
    margin: 0 0 0 8.6rem;
  }
  .c-pagination__prev,
  .c-pagination__next {
    font-weight: 500;
    font-size: 3rem;
    line-height: 1.2666666667;
    letter-spacing: 0em;
  }
  .c-pagination__prev::before,
  .c-pagination__next::before {
    bottom: 0.6rem;
  }
  .c-pagination__numbers {
    margin: 0 1.5rem;
    font-weight: 500;
    font-size: 3rem;
    line-height: 1.2666666667;
    letter-spacing: 0em;
  }
  .c-pagination__numbers.-current::before {
    bottom: 0.2rem;
    height: 1px;
  }
  .e-swiper .swiper-pagination {
    bottom: 7.2rem !important;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .e-swiper .swiper-slide img {
    min-height: unset;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  *:focus-visible {
    outline-color: -webkit-focus-ring-color;
    outline-style: auto;
  }
  .l-container {
    padding: 0 12.8rem;
  }
  .l-footer::before {
    background-image: url(../images/common/bg_img_pc.png);
  }
  .l-footer__contact .l-section__heading .l-section__headingEng {
    color: #fff;
  }
  .l-footer__contactTitle {
    margin: 0 0 1.7rem;
    font-weight: 500;
    font-size: max(1.6rem, 12px);
    line-height: 2.1875;
    letter-spacing: 0em;
  }
  .l-footer__contactTel .-text {
    font-weight: 500;
    font-size: 2.1rem;
    line-height: 1;
    letter-spacing: 0em;
  }
  .l-footer__contactTel .-no {
    font-weight: 500;
    font-size: 6.4rem;
    line-height: 1;
    letter-spacing: 0em;
  }
  .l-footer__contactLink:hover {
    border: 1px solid rgba(255, 255, 255, 0);
    background-color: rgba(255, 255, 255, 0.2);
  }
  .l-footer__contactLinkText {
    -webkit-transition: color 0.5s ease;
    font-weight: 600;
    font-size: 2.1rem;
    line-height: 1.380952381;
    letter-spacing: 0em;
    transition: color 0.5s ease;
  }
  .l-footer__contactLinkArrow {
    right: 3.6rem;
    width: 3.2rem;
    height: 2.4rem;
    background-image: url(../images/common/contact_arrow_pc.svg);
  }
  .l-footer__bottomInner {
    width: 88.8888888889%;
    padding: 10rem 0 0;
    background-color: #f2f7fe;
  }
  .l-footer__nav {
    display: block;
    padding: 0 10rem 0 10rem;
  }
  .l-footer__navItem {
    margin: 0 6.4rem 3.2rem 0;
  }
  .l-footer__navItem:last-child {
    margin: 0 0 3.2rem 0;
  }
  .l-footer__navItem:nth-child(2) {
    margin: 0 4rem 3.2rem 0;
  }
  .l-footer__navLink {
    -webkit-transition: opacity 0.2s ease;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2.1875;
    letter-spacing: 0em;
    white-space: nowrap;
    transition: opacity 0.2s ease;
  }
  .l-footer__navLink.-sub {
    position: relative;
    padding: 0 1.9rem 0 0;
    pointer-events: none;
  }
  .l-footer__navLink.-sub::before {
    -webkit-transform: translate(0%, -50%);
    position: absolute;
    top: 50%;
    right: 0;
    width: 1.2rem;
    height: 0.7rem;
            transform: translate(0%, -50%);
    background-image: url(../images/common/footer_menu_arrow.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
  }
  .l-footer__info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: end;
    -webkit-box-pack: justify;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
            align-items: flex-end;
            justify-content: space-between;
    padding: 5.9rem 10rem 8.5rem;
  }
  .l-footer__infoLogoWrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -webkit-box-pack: start;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
    width: 44.4444444444%;
    margin: 0 4rem 0 0;
  }
  .l-footer__infoLogo {
    display: block;
    width: 28.5rem;
    margin: 0 4rem 0 0;
  }
  .l-footer__infoLinkWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: end;
    -webkit-box-pack: start;
    display: -webkit-box;
    display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: flex-start;
    margin: 0;
  }
  .l-footer__infoLink {
    margin: 0 0 2rem;
    font-weight: 600;
    font-size: max(1.4rem, 12px);
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  .l-footer__copy {
    font-weight: 500;
    font-size: max(1.4rem, 12px);
    line-height: 1.2857142857;
    letter-spacing: 0em;
  }
  .l-footer__copy.u-only-sp {
    display: none;
  }
  .l-footer__copy.u-only-pc {
    display: block;
  }
  .l-footer__return {
    right: -0.5rem;
    bottom: 14rem;
    width: 11.1111111111%;
    height: 11.8rem;
  }
  .l-footer__return a {
    top: 0;
    padding: 5.5rem 0 0;
  }
  .l-footer__returnArrow {
    width: 2.4rem;
    height: 3.2rem;
    background-image: url(../images/common/return_arrow_pc.svg);
  }
  .l-footer__returnText {
    font-weight: 500;
    font-size: 3.4rem;
    line-height: 1.0294117647;
    letter-spacing: 0em;
  }
  .l-footer__subMenu {
    margin: 1rem 0 0;
  }
  .l-footer__subMenuItem:not(:last-child) {
    margin: 0 0 0.6rem;
  }
  .l-footer__subMenuLink {
    -webkit-transition: opacity 0.2s ease;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0em;
    transition: opacity 0.2s ease;
  }
  .l-form {
    width: 64.8648648649%;
    margin: 0;
  }
  .l-form .mw_wp_form .error {
    font-weight: 500;
    font-size: max(1.6rem, 12px);
    line-height: 1.375;
    letter-spacing: 0em;
  }
  .l-form__item:not(:last-child) {
    margin: 0 0 4.1rem;
  }
  .l-form__item.-textarea .l-form__dd {
    width: 100%;
  }
  .l-form__dt {
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 2;
    letter-spacing: 0em;
  }
  .l-form__dt span.-required {
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 2;
    letter-spacing: 0em;
  }
  .l-form__dd {
    width: 70.8333333333%;
  }
  .l-form__dd span input {
    padding: 1.4rem;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 2;
    letter-spacing: 0em;
  }
  .l-form__dd span textarea {
    height: 40rem;
    padding: 1.4rem;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 2;
    letter-spacing: 0em;
  }
  .l-form__privacy {
    height: 18rem;
    margin: 3.8rem 0 3.7rem;
    padding: 1.8rem 3rem;
  }
  .l-form__privacy::-webkit-scrollbar {
    width: 1rem;
  }
  .l-form__privacy h2 {
    margin: 0 0 2.2rem;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 2;
    letter-spacing: 0em;
  }
  .l-form__privacy h3 {
    font-weight: 500;
    font-size: max(1.2rem, 12px);
    line-height: 2;
    letter-spacing: 0em;
  }
  .l-form__privacy h4 {
    font-weight: 600;
    font-size: max(1.2rem, 12px);
    line-height: 2;
    letter-spacing: 0em;
  }
  .l-form__privacy p {
    font-weight: 500;
    font-size: max(1.2rem, 12px);
    line-height: 2;
    letter-spacing: 0em;
  }
  .l-form__agree {
    padding: 0 1.5rem 0 0;
  }
  .l-form__agreeText {
    padding: 0 0 0 3.5rem;
  }
  .l-form__agreeText::before {
    top: 50%;
  }
  .l-form__agreeText:after {
    top: 50%;
  }
  .l-form__agreeText span.-required {
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: 0em;
  }
  .l-form__agreeLink {
    display: inline-block;
  }
  .l-form__buttonInner {
    margin: 4rem 0 0;
    padding: 0 4.8rem 0 0;
  }
  .l-form__btn {
    padding: 1.85rem 1rem 1.85rem 6.6rem;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1.2777777778;
    letter-spacing: 0em;
  }
  .l-hamburger__toggle {
    display: none;
  }
  .l-header.is-active .js-submenu-trigger .l-menu__link {
    -webkit-transition: color 0.5s ease;
    color: #babfd0;
    transition: color 0.5s ease;
  }
  .l-header::before {
    -webkit-backdrop-filter: blur(0.71429rem);
    -webkit-transform: translate(-50%, 0%);
    -webkit-transition: opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
            transform: translate(-50%, 0%);
            backdrop-filter: blur(0.71429rem);
    background: -webkit-linear-gradient(bottom, rgba(249, 249, 249, 0.6) 0, rgba(255, 255, 255, 0) 100%), rgba(255, 255, 255, 0.7);
    background: linear-gradient(360deg, rgba(249, 249, 249, 0.6) 0, rgba(255, 255, 255, 0) 100%), rgba(255, 255, 255, 0.7);
    content: "";
    transition: opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .l-header__logo {
    flex-shrink: 0;
    width: 20.4rem;
  }
  .l-menu {
    visibility: visible;
    z-index: 1;
    position: unset;
    width: auto;
    height: auto;
    padding: 0;
    overflow-y: inherit;
    background-color: rgba(255, 255, 255, 0);
    opacity: 1;
  }
  .l-menu__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -webkit-box-pack: start;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
  }
  .l-menu__item:not(:last-child) {
    margin: 0 3.2rem 0 0;
  }
  .l-menu__item.js-submenu-trigger {
    padding: 0 1.6rem 0 0;
  }
  .l-menu__item.js-submenu-trigger::before {
    -webkit-transform: translate(0%, -50%);
    position: absolute;
    top: calc(50% + 0.15rem);
    right: -0.3rem;
    width: 1.2rem;
    height: 0.7rem;
            transform: translate(0%, -50%);
    background-image: url(../images/common/submenu_arrow.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
  }
  .l-menu__item.js-submenu-trigger .l-menu__link::before {
    display: none;
  }
  .l-menu__item.-contact {
    margin: 0;
  }
  .l-menu__link {
    color: #3d424b;
    font-weight: 500;
    font-size: max(1.4rem, 11px);
    line-height: 1.2857142857;
    letter-spacing: 0em;
  }
  .l-menu__link.-home {
    display: none;
  }
  .l-menu-sub.is-none {
    -webkit-transition: opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1), visibility 0.5s cubic-bezier(0.33, 1, 0.68, 1), -webkit-transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1), visibility 0.5s cubic-bezier(0.33, 1, 0.68, 1), -webkit-transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1), visibility 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1), visibility 0.5s cubic-bezier(0.33, 1, 0.68, 1), -webkit-transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .l-menu-sub.is-active {
    -webkit-transition: opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1), visibility 0.5s cubic-bezier(0.33, 1, 0.68, 1), -webkit-transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    transition: opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1), visibility 0.5s cubic-bezier(0.33, 1, 0.68, 1), -webkit-transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1), visibility 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1), visibility 0.5s cubic-bezier(0.33, 1, 0.68, 1), -webkit-transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .l-menu-sub__inner {
    padding: 3rem 2rem 3rem 3rem;
    background-color: #fff;
  }
  .l-menu-sub__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -webkit-box-pack: start;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: flex-start;
  }
  .l-menu-sub__list:hover > .l-menu-sub__item {
    opacity: 0.3;
  }
  .l-menu-sub__list > .l-menu-sub__item:hover {
    opacity: 1;
  }
  .l-menu-sub__item {
    -webkit-transition: opacity 0.5s ease;
    width: 30.7692307692%;
    transition: opacity 0.5s ease;
  }
  .l-menu-sub__linkTitle .-arrow {
    -webkit-transform: translate(0%, -50%);
    position: absolute;
    top: 50%;
    right: 2rem;
    width: 1.6rem;
    height: 1.6rem;
            transform: translate(0%, -50%);
    background-image: url(../images/common/submenu_arrow_right.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
  }
  .l-menu-sub__linkTitleEng {
    display: block;
    font-weight: 500;
    font-size: 2.1rem;
    line-height: 1;
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: 0em;
  }
  .l-menu-sub__linkTitleEng .-no {
    display: block;
    margin: 0 0 1rem;
    color: #28a4df;
    font-weight: 500;
    font-size: max(1.2rem, 12px);
    line-height: 1;
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: 0em;
  }
  .l-section__headingEng {
    margin: 0 0 1rem;
    font-weight: 500;
    font-size: max(1.6rem, 12px);
    line-height: 1;
    letter-spacing: 0em;
  }
  .l-section__headingText {
    font-weight: 600;
    font-size: 4.2rem;
    line-height: 1.3095238095;
    letter-spacing: 0.05em;
  }
  .l-section__headingText span.u-only-sp {
    display: none;
  }
  .l-section__text {
    font-weight: 500;
    font-size: max(1.8rem, 12px);
    line-height: 1.9444444444;
    letter-spacing: 0em;
  }
  .p-home-business {
    padding: 0 0 15rem;
  }
  .p-home-business__inner .l-section__heading {
    text-align: center;
  }
  .p-home-business__slider {
    margin: 6rem 0 0;
  }
  .p-home-business__sliderList {
    -webkit-box-align: start;
    -webkit-box-pack: justify;
    display: -webkit-box !important;
    display: flex !important;
            align-items: flex-start;
            justify-content: space-between;
  }
  .p-home-business__sliderList:hover > .p-home-business__sliderItem {
    opacity: 0.3;
  }
  .p-home-business__sliderList > .p-home-business__sliderItem:hover {
    opacity: 1;
  }
  .p-home-business__sliderItem {
    -webkit-transition: opacity 0.5s ease;
    width: 31.25%;
    transition: opacity 0.5s ease;
  }
  .p-home-business__sliderItemLink {
    padding: 0 0 2.4rem;
  }
  .p-home-business__sliderNo {
    display: block;
    font-weight: 500;
    font-size: max(1.2rem, 12px);
    line-height: 1;
    letter-spacing: 0em;
  }
  .p-home-business__sliderTitleEng {
    font-weight: 500;
    font-size: 3.8rem;
    line-height: 1;
    letter-spacing: 0em;
  }
  .p-home-business__sliderTitleJp {
    margin: 8rem 0 0;
  }
  .p-home-case {
    padding: 15rem 0 15.3rem;
  }
  .p-home-case .l-container {
    padding: 0 12.8rem;
  }
  .p-home-case__inner {
    -webkit-box-pack: justify;
    display: -webkit-box;
    display: flex;
    position: relative;
    flex-wrap: wrap;
            justify-content: space-between;
  }
  .p-home-case__fixedNavList {
    display: block;
    margin: 5.4rem 0 0;
    padding: 0 0 0 1rem;
  }
  .p-home-case__list {
    -webkit-transform: translate(0, 1.5rem);
    visibility: hidden;
    height: 0;
    margin: 0;
            transform: translate(0, 1.5rem);
    opacity: 0;
  }
  .p-home-case__list.-current {
    -webkit-transition: opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
    -webkit-transform: translate(0, 0);
    visibility: visible;
    height: auto;
    margin: 0 0 4rem;
            transform: translate(0, 0);
    opacity: 1;
    transition: opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .p-home-case__list:not(.-current) {
    display: block;
  }
  .p-home-case__item:not(:last-child) {
    -webkit-transition: opacity 0.5s ease;
    margin: 0 0 4rem;
    transition: opacity 0.5s ease;
  }
  .p-home-case__itemLink {
    padding: 0 0 4.7rem;
  }
  .p-home-case__itemLink time {
    font-weight: 500;
    font-size: max(1.4rem, 12px);
    line-height: 1.2857142857;
    letter-spacing: 0em;
  }
  .p-home-case__itemLink::before {
    -webkit-transition: width 0.8s ease;
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: #28a4df;
    content: "";
    transition: width 0.8s ease;
  }
  .p-home-case__itemLink:hover::before {
    width: 100%;
  }
  .p-home-case__itemTitle {
    width: 96.3541666667%;
    margin: 2rem 0 2.3rem;
    font-weight: 500;
    font-size: 2.6rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  .p-home-case__tagList {
    padding: 0 4rem 0 0;
  }
  .p-home-case__tagList::before {
    top: 50%;
    width: 2.5rem;
    height: 2.4rem;
    background-image: url(../images/home/case_arrow_pc.svg);
  }
  .p-home-case__tagItem {
    margin-bottom: 0rem;
    color: #3d424b;
    font-weight: 600;
    font-size: max(1.4rem, 12px);
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  .p-home-case__tagItem:not(:last-child) {
    margin: 0 1.6rem 0 0;
  }
  .p-home-kv {
    overflow: hidden;
  }
  .p-home-kv__catchEng {
    font-weight: 500;
    font-size: 10rem;
    line-height: 1;
    letter-spacing: 0em;
  }
  .p-home-kv__catchJp {
    margin: 2rem 0 0;
  }
  .p-home-kv__catchJp span {
    font-weight: 600;
    font-size: 2.6rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  .p-home-kv__catchJp span.u-only-sp {
    display: none;
  }
  .p-home-kv__catchJp span.u-only-pc {
    display: inline-block;
  }
  .p-home-kv__circleCenter {
    width: 58.75vw;
    max-width: 846px;
    height: 58.75vw;
    max-height: 846px;
  }
  .p-home-kv__circleGlay,
  .p-home-kv__circlePink,
  .p-home-kv__circleBlue {
    width: 74.5833333333vw;
    max-width: 1074px;
    height: 74.5833333333vw;
    max-height: 1074px;
  }
  #circle {
    width: 74.5833333333vw;
    max-width: 1074px;
    height: 74.5833333333vw;
    max-height: 1074px;
  }
  #circle #circleInner {
    stroke-width: 16;
  }
  .p-home-kv__circleImgWrap {
    width: 47vw;
    max-width: 770px;
  }
  .p-home-kv__news {
    width: 70.6713780919%;
    margin: 19.3rem auto 0 0;
  }
  .p-home-kv__newsHeading {
    font-weight: 500;
    font-size: max(1.2rem, 12px);
    line-height: 1;
    letter-spacing: 0em;
  }
  .p-home-kv__newsInfo {
    margin: 1.2rem 0 0;
  }
  .p-home-kv__newsInfo time {
    font-weight: 500;
    font-size: max(1.4rem, 12px);
    line-height: 1.2857142857;
    letter-spacing: 0em;
  }
  .p-home-kv__newsTitle {
    margin: 0.4rem 0 0;
    overflow: hidden;
    font-weight: 600;
    font-size: max(1.4rem, 12px);
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .p-home-kv__newsLink {
    padding: 0 0 1.8rem;
  }
  .p-home-kv__newsLinkArrow {
    bottom: 2rem;
    width: 4rem;
    height: 4rem;
  }
  .p-home-mission {
    margin: -2.3rem 0 0;
    padding: 0 0 15rem;
  }
  .p-home-mission__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -webkit-box-pack: justify;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: space-between;
  }
  .p-home-mission__img {
    position: relative;
    width: 41.3851351351%;
    margin: 3.2rem 0 0;
    overflow: hidden;
  }
  .p-home-mission__img::before {
    display: block;
    padding-top: 97.35%;
    content: "";
  }
  .p-home-mission__img img {
    -o-object-fit: unset;
    width: 80.8163265306%;
    margin: 0 auto;
       object-fit: unset;
  }
  .p-home-mission__content {
    width: 48.5641891892%;
  }
  .p-home-mission__content .l-section__headingText {
    white-space: nowrap;
  }
  .p-home-mission__contentText {
    margin: 4rem 0 11.2rem;
    font-weight: 500;
    font-size: max(1.8rem, 12px);
    line-height: 2;
    letter-spacing: 0em;
  }
  .p-home-push__area {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -webkit-box-pack: center;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
    padding: 21.6rem 0 19.3rem;
  }
  .p-home-push__area:nth-child(2).is-active .p-home-push__listItem:nth-child(2) {
    -webkit-transform: translate(-50%, -1.4rem);
            transform: translate(-50%, -1.4rem);
  }
  .p-home-push__area:nth-child(3) .p-home-push__listItem:nth-child(2) {
    -webkit-transform: translate(-50%, -1.4rem);
            transform: translate(-50%, -1.4rem);
  }
  .p-home-push__area:nth-child(3).is-active .p-home-push__listItem:nth-child(2) {
    -webkit-transform: translate(-50%, -1.4rem);
            transform: translate(-50%, -1.4rem);
  }
  .p-home-push__content {
    width: 41.722972973%;
    margin: -9.8rem 9.375% 0 0;
  }
  .p-home-push__engTitle {
    font-weight: 500;
    font-size: max(1.6rem, 12px);
    line-height: 1;
    letter-spacing: 0em;
  }
  .p-home-push__contentTitle {
    margin: 2.4rem 0 0 1rem;
  }
  .p-home-push__contentTitle span {
    font-weight: 600;
    font-size: 4.2rem;
    line-height: 1.3095238095;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
  .p-home-push__contentText {
    height: auto;
    margin: 3.5rem 0 0 1rem;
  }
  .p-home-push__contentText span {
    font-weight: 600;
    font-size: 2.6rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  .p-home-push__list {
    top: calc(50% + 2.6rem);
    right: -10.8rem;
    height: 21rem;
    padding: 0 0 0 2.35rem;
  }
  .p-home-push__list::before {
    left: 1.15rem;
    height: 18rem;
  }
  .p-home-push__listItem {
    width: 2.7rem;
    height: 2.7rem;
  }
  .p-home-push__listItem .-circle {
    width: 2.75rem;
    height: 2.75rem;
  }
  .p-home-push__listItem .-circle::before {
    width: 1rem;
    height: 1rem;
  }
  .p-home-push__listItem:nth-child(2) {
    -webkit-transform: translate(-50%, 1.8rem);
            transform: translate(-50%, 1.8rem);
  }
  .p-home-push__imgWrap {
    width: 46.1993243243%;
    margin: -13rem 2.7027027027% 0 0;
  }
  .p-home-push__imgBlock {
    -webkit-transform: translate(-50%, -50%);
    position: absolute;
    top: calc(50% + 7.4rem);
    left: 50%;
    width: 82.2669104205%;
            transform: translate(-50%, -50%);
  }
  .p-home-push__img {
    position: relative;
    overflow: hidden;
  }
  .p-home-push__img::before {
    display: block;
    padding-top: 133.33%;
    content: "";
  }
  .p-home-staffing__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: end;
    -webkit-box-pack: start;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
            align-items: flex-end;
            justify-content: flex-start;
  }
  .p-home-staffing__content .l-section__headingEng {
    margin: 0 0 0.8rem;
    font-weight: 500;
    font-size: max(1.4rem, 12px);
    line-height: 1.2857142857;
    letter-spacing: 0em;
  }
  .p-home-staffing__contentText {
    margin: 4rem 0 3.1rem;
    font-weight: 500;
    font-size: max(1.6rem, 12px);
    line-height: 2.1875;
    letter-spacing: 0em;
  }
  .p-company-purpose {
    margin: 7rem 0 0;
  }
  .p-company-purpose .l-section__heading {
    margin: 0 0 6rem;
    text-align: center;
  }
  .p-company-purpose .l-section__heading .l-section__headingText {
    font-weight: 600;
    font-size: 3.6rem;
    line-height: 1.4444444444;
    letter-spacing: 0.03em;
  }
  .p-company-purpose .l-section__text {
    width: 62.0777027027%;
    margin: 0 auto;
  }
  .p-company-purpose__slider {
    margin: 0 0 15rem;
  }
  .p-company-purpose__sliderItem figure {
    position: relative;
    overflow: hidden;
  }
  .p-company-purpose__sliderItem figure::before {
    display: block;
    padding-top: 67.75%;
    content: "";
  }
  .p-company-purpose__sliderTextBlock {
    width: 15.7638888889%;
    margin: 0 15.5555555556% 0 68.6805555556%;
  }
  .p-company-purpose__sliderTextWrap {
    margin: 3.4rem 0 0;
  }
  .p-company-purpose__sliderTextEng {
    margin: 0.6rem 0 0 0.4rem;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 0em;
  }
  .p-company-purpose__sliderText {
    font-weight: 600;
    font-size: 6rem;
    line-height: 1.1666666667;
    letter-spacing: 0.17em;
    white-space: nowrap;
  }
  .p-company-spirit {
    margin: 15rem 0 0;
  }
  .p-company-spirit__img {
    position: relative;
    overflow: hidden;
  }
  .p-company-spirit__img::before {
    display: block;
    padding-top: 38.26%;
    content: "";
  }
  .p-company-spirit__container {
    padding: 10rem 0 15.6rem;
  }
  .p-company-spirit__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -webkit-box-pack: start;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: flex-start;
    width: 97.2972972973%;
    margin: 0 auto 0 0;
  }
  .p-company-spirit__body .l-section__heading {
    width: 34.7222222222%;
    margin: 0 15.2777777778% 0 0;
  }
  .p-company-spirit__content {
    width: 49.4791666667%;
    margin: 2.6rem 0 0;
  }
  .p-company-profile {
    padding: 15rem 0;
  }
  .p-company-profile__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -webkit-box-pack: justify;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: space-between;
    width: 97.2972972973%;
    margin: 0 auto;
  }
  .p-company-profile__body .l-section__heading {
    margin: 0 0 0 -1.6rem;
  }
  .p-company-profile__list {
    width: 51.3888888889%;
    margin: 0.6rem 0 0;
    padding: 0 1.6rem 0 0;
  }
  .p-company-profile__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -webkit-box-pack: start;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: flex-start;
    padding: 2rem 0 1.9rem;
  }
  .p-company-profile__row:nth-last-child(2) {
    padding: 2rem 0 2.5rem;
  }
  .p-company-profile__item {
    width: 33.3333333333%;
    margin: 0;
    font-weight: 500;
    font-size: max(1.6rem, 12px);
    line-height: 2.1875;
    letter-spacing: 0em;
  }
  .p-company-profile__desc {
    width: 66.6666666667%;
    font-weight: 500;
    font-size: max(1.6rem, 12px);
    line-height: 2.1875;
    letter-spacing: 0em;
    white-space: nowrap;
  }
  .p-company-profile__desc a.-tel {
    pointer-events: none;
  }
  .p-contact-form {
    margin: 9.1rem 0 14.7rem;
  }
  .p-contact-form__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -webkit-box-pack: justify;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: space-between;
  }
  .p-contact-form__head {
    width: 27.027027027%;
    margin: 0.5rem 0 0;
  }
  .p-contact-form__headProgressWrap {
    padding: 0 0 0 0.9rem;
    text-align: left;
  }
  .p-contact-form__headText {
    margin: 6rem 0 0;
  }
  .p-contact-form__back {
    margin: 11rem 0 0;
    padding: 0 0 0 1rem;
  }
  .p-contact-form__back span {
    padding: 0 0 1rem;
    font-weight: 500;
    font-size: 3rem;
    line-height: 1.2666666667;
    letter-spacing: 0em;
  }
  body.contact-thanks .p-contact-form {
    margin: 9.1rem 0 20rem;
  }
  body.contact-thanks .p-contact-form__head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -webkit-box-pack: justify;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: space-between;
    width: 100%;
    margin: 0;
  }
  body.contact-thanks .p-contact-form__headProgressWrap {
    margin: 0.5rem 0 0;
  }
  body.contact-thanks .p-contact-form__headText {
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 2;
    letter-spacing: 0em;
  }
  .p-contact-form__headTextWrap {
    width: 64.8648648649%;
  }
  .p-contact-form__headTextWrap .p-contact-form__headText {
    margin: 0;
  }
  .p-news-summary {
    margin: 10rem 0 20rem;
  }
  .p-news-summary__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -webkit-box-pack: justify;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: space-between;
  }
  .p-news-summary__catList {
    display: block;
    width: 16.8918918919%;
  }
  .p-news-summary__catItem:not(:last-child) {
    margin: 0 0 1rem;
  }
  .p-news-summary__catLink {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    font-weight: 500;
    font-size: max(1.4rem, 12px);
    line-height: 1;
    letter-spacing: 0em;
  }
  .p-news-summary__list {
    width: 72.972972973%;
    margin: 0 0 5rem;
  }
  .p-news-summary__item {
    width: 48.6111111111%;
  }
  .p-news-summary__item:not(:nth-child(2n)) {
    margin: 0 2.7777777778% 5.5555555556% 0;
  }
  .p-news-summary__item:nth-child(2n) {
    margin: 0 0 5.5555555556% 0;
  }
  .p-news-summary__link:hover .p-news-summary__img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .p-news-summary__img {
    position: relative;
    overflow: hidden;
  }
  .p-news-summary__img::before {
    display: block;
    padding-top: 60.24%;
    content: "";
  }
  .p-news-summary__content {
    margin: 3rem 0 0;
  }
  .p-news-summary__content time {
    font-weight: 500;
    font-size: max(1.4rem, 12px);
    line-height: 1.2857142857;
    letter-spacing: 0em;
  }
  .p-news-summary__title {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    margin: 1rem 0 2rem;
    padding: 0 0 0.9rem;
    overflow: hidden;
    font-weight: 500;
    font-size: max(1.6rem, 12px);
    line-height: 2;
    letter-spacing: 0em;
  }
  .p-news-summary__tag {
    padding: 0.7rem 1.4rem;
    font-weight: 500;
    font-size: max(1.1rem, 11px);
    line-height: 1;
    letter-spacing: 0em;
  }
  .p-news-detail {
    margin: 9.1rem 0 21rem;
  }
  .p-news-detail__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -webkit-box-pack: justify;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: space-between;
  }
  .p-news-detail__info {
    width: 12.6689189189%;
    padding: 0.8rem 0 0;
  }
  .p-news-detail__info time {
    font-weight: 500;
    font-size: max(1.4rem, 12px);
    line-height: 1.2857142857;
    letter-spacing: 0em;
  }
  .p-news-detail__infoWrap {
    display: block;
    margin: 2rem 0 0;
  }
  .p-news-detail__tag {
    font-weight: 500;
    font-size: max(1.4rem, 12px);
    line-height: 1;
    letter-spacing: 0em;
  }
  .p-news-detail__social {
    display: block;
    width: 5rem;
    margin: 5rem 0 0;
    padding: 0 0 0 2rem;
  }
  .p-news-detail__socialItem:not(:last-child) {
    margin: 0 0 3rem;
  }
  .p-news-detail__socialLink {
    margin: 0 auto;
  }
  .p-news-detail__socialLink.-facebook {
    width: 1.6rem;
  }
  .p-news-detail__socialLink.-instagram {
    width: 3rem;
  }
  .p-news-detail__socialLink.-twitter {
    width: 3rem;
  }
  .p-news-detail__content {
    width: 72.972972973%;
  }
  .p-news-detail__title {
    margin: 0 0 5rem;
    font-weight: 600;
    font-size: 4.2rem;
    line-height: 1.5238095238;
    letter-spacing: 0em;
  }
  .p-news-detail__img {
    position: relative;
    overflow: hidden;
  }
  .p-news-detail__img::before {
    display: block;
    padding-top: 60.19%;
    content: "";
  }
  .p-news-detail__contentDetail {
    margin: 4rem 0 10.8rem;
  }
  .p-news-detail__contentDetail p {
    font-weight: 500;
    font-size: max(1.6rem, 12px);
    line-height: 2.125;
    letter-spacing: 0em;
  }
  .p-news-detail__contentDetail p:not(:last-child) {
    margin: 0 0 4rem;
  }
  .p-news-detail__contentDetail ul li {
    font-weight: 500;
    font-size: max(1.6rem, 12px);
    line-height: 2.125;
    letter-spacing: 0em;
  }
  .p-news-detail__contentDetail h2 {
    margin: 10rem 0 4rem;
    padding: 0 0 1rem;
    font-weight: 600;
    font-size: 3.2rem;
    line-height: 1.5625;
    letter-spacing: 0em;
  }
  .p-news-detail__contentDetail h3 {
    margin: 5.4rem 0 1.6rem;
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 1.52;
    letter-spacing: 0em;
  }
  .p-news-detail__back span {
    font-weight: 500;
    font-size: 3rem;
    line-height: 1.2666666667;
    letter-spacing: 0em;
  }
  .p-news-detail__back span::before {
    display: none;
  }
  .p-privacy {
    margin: 0 0 28.2rem;
  }
  .p-privacy__sec:not(:first-child) .p-hero {
    padding: 15rem 0 0;
  }
  .p-privacy__inner {
    margin: 10rem 0 0 auto;
  }
  .p-privacy__block {
    width: 75.6756756757%;
    margin: 0 8.1081081081% 0 auto;
  }
  .p-privacy__head {
    padding: 0 0 6rem;
  }
  .p-privacy__headTitle {
    margin: 0 0 4rem;
    color: #3d424b;
    font-weight: 600;
    font-size: 3.2rem;
    line-height: 1.3125;
    letter-spacing: 0em;
  }
  .p-privacy__headText {
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0em;
  }
  .p-privacy__content {
    margin: 6rem 0 0;
  }
  .p-privacy__content.-notice {
    margin: 6rem 0 0;
  }
  .p-privacy__content.-notice .p-privacy__contentTitle {
    margin: 0;
  }
  .p-privacy__content.-notice:nth-of-type(2) .p-privacy__contentTitle:nth-child(2) {
    margin: 4rem 0 1.9rem;
  }
  .p-privacy__content.-notice:last-of-type {
    margin: 9rem 0 0;
  }
  .p-privacy__content.-notice:last-of-type .p-privacy__contentTitle {
    margin: 0 0 1.5rem;
  }
  .p-privacy__contentTitle {
    margin: 0;
    font-weight: 600;
    font-size: 2.1rem;
    line-height: 2;
    letter-spacing: 0em;
  }
  .p-privacy__contentTitle.-other {
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0em;
  }
  .p-privacy__contentTitle.-last {
    margin: 6rem 0 0;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0em;
  }
  .p-privacy__contentText {
    width: 99%;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0em;
  }
  .p-privacy__contentText:not(:last-child) {
    margin: 0 0 3.3rem;
  }
  .p-privacy__contentText.-other {
    margin: 6rem 0 !important;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0em;
  }
  .p-privacy__contentList {
    margin: 0 0 4rem;
    overflow-x: inherit;
  }
  .p-privacy__contentList:nth-of-type(2) {
    margin: 0 0 8rem;
  }
  .p-privacy__contentRow {
    width: 100%;
  }
  .p-privacy__contentDt {
    width: 32.1428571429%;
    padding: 1.7rem 2rem;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1.75;
    letter-spacing: 0em;
  }
  .p-privacy__contentDd {
    width: 67.8571428571%;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1.75;
    letter-spacing: 0em;
  }
  .p-recruit-lead {
    margin: 7rem 0 0;
  }
  .p-recruit-lead__img {
    position: relative;
    overflow: hidden;
  }
  .p-recruit-lead__img::before {
    display: block;
    padding-top: 46.53%;
    content: "";
  }
  .p-recruit-lead__body {
    padding: 15rem 0 16rem;
  }
  .p-recruit-lead__body .l-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -webkit-box-pack: justify;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: space-between;
    max-width: 1376px;
  }
  .p-recruit-lead__body .l-section__text {
    width: 57.0535714286%;
  }
  .p-recruit-lead__title {
    width: 31.25%;
    margin: 0;
    font-weight: 600;
    font-size: 3.2rem;
    line-height: 1.3125;
    letter-spacing: 0.05em;
  }
  .p-recruit-culture {
    padding: 15rem 0 23.6rem;
  }
  .p-recruit-culture .l-section__heading {
    text-align: center;
  }
  .p-recruit-culture__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: start;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
    flex-wrap: wrap;
            justify-content: flex-start;
    width: 98.8175675676%;
    margin: 6rem auto 0 0;
  }
  .p-recruit-culture__item {
    width: 31.6239316239%;
    padding: 0 0 4rem;
  }
  .p-recruit-culture__item:not(:nth-child(3n)) {
    margin: 0 2.5641025641% 6.8376068376% 0;
  }
  .p-recruit-culture__item:nth-child(3n) {
    margin: 0 0 6.8376068376% 0;
  }
  .p-recruit-culture__button {
    margin: 3rem 0 0;
  }
  .p-recruit-culture__button .c-button {
    width: 33rem;
    padding: 1.2rem 1rem 1.2rem 3.4rem;
  }
  .p-recruit-culture__button .c-button .c-button__text {
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 2;
    letter-spacing: 0em;
  }
  .p-recruit-culture__buttonText {
    margin: 0 0 3rem;
    font-weight: 500;
    font-size: max(1.6rem, 12px);
    line-height: 2;
    letter-spacing: 0em;
  }
  .p-security-sec {
    margin: 10rem 0 22.8rem;
  }
  .p-security__inner {
    width: 75.6756756757%;
    margin: 0 8.1081081081% 0 auto;
  }
  .p-security__head {
    margin: 0 0 6.6rem;
    padding: 0 0 6rem;
  }
  .p-security__headTitle {
    margin: 0 0 4rem;
    font-weight: 600;
    font-size: 3.2rem;
    line-height: 1.3125;
    letter-spacing: 0.05em;
  }
  .p-security__headText {
    font-weight: 500;
    font-size: max(1.6rem, 12px);
    line-height: 2;
    letter-spacing: 0em;
  }
  .p-security__contentText {
    font-weight: 600;
    font-size: 2.1rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
  .p-security__contentText:not(:last-child) {
    margin: 0 0 6rem;
  }
  .p-security__contentText span {
    padding-left: 1em;
    text-indent: -1.3em;
  }
  .p-service-lead {
    padding: 0 0 25.9rem;
  }
  .p-service-lead.-system {
    margin: 10rem 0 0;
    padding: 0 0 14.2rem;
  }
  .p-service-lead.-system .p-service-lead__imgWrap {
    width: 45.9888888889vw;
    margin: -22.8rem calc(50% - 50vw) 0;
  }
  .p-service-lead.-system .p-service-lead__img {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .p-service-lead.-system .p-service-lead__img::before {
    display: block;
    padding-top: 98%;
    content: "";
  }
  .p-service-lead.-system .p-service-lead__desc {
    margin: 0 6.25% 0 0;
  }
  .p-service-lead.-algorithm {
    margin: 10rem 0 0;
    padding: 0 0 16.8rem;
  }
  .p-service-lead.-algorithm .p-service-lead__imgWrap {
    width: 42.8472222222vw;
    margin: -11.1rem calc(50% - 50vw) 0;
    padding: 0 5.6587837838% 0 0;
  }
  .p-service-lead.-algorithm .p-service-lead__img {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .p-service-lead.-algorithm .p-service-lead__img::before {
    display: block;
    padding-top: 92.18%;
    content: "";
  }
  .p-service-lead.-algorithm .p-service-lead__desc {
    margin: 0 10.0506756757% 0 0;
  }
  .p-service-lead.-staffing {
    margin: 10rem 0 0;
    padding: 0 0 14.7rem;
  }
  .p-service-lead.-staffing .p-service-lead__imgWrap {
    width: 46.9444444444vw;
    margin: -16.4rem calc(50% - 50vw) 0;
  }
  .p-service-lead.-staffing .p-service-lead__img {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
  }
  .p-service-lead.-staffing .p-service-lead__img::before {
    display: block;
    padding-top: 86.83%;
    content: "";
  }
  .p-service-lead.-staffing .p-service-lead__desc {
    width: 48.6486486486%;
    margin: 0 5.0675675676% 0 0;
  }
  .p-service-lead.-staffing .p-service-lead__desc .c-button {
    margin: 4rem auto 0 0;
  }
  .p-service-lead.-staffing .p-service-lead__desc .l-section__heading .l-section__headingText {
    font-weight: 600;
    font-size: 4.2rem;
    line-height: 1.3095238095;
    letter-spacing: 0.05em;
  }
  .p-service-lead__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-box-align: start;
    -webkit-box-pack: justify;
    display: -webkit-box;
    display: flex;
            flex-direction: row-reverse;
            align-items: flex-start;
            justify-content: space-between;
  }
  .p-service-lead__desc {
    width: 48.6486486486%;
  }
  .p-service-lead__desc .l-section__heading {
    margin: 0 0 1.9rem;
  }
  .p-service-lead__desc .l-section__heading .l-section__headingText {
    font-weight: 600;
    font-size: 3.6rem;
    line-height: 1.5277777778;
    letter-spacing: 0.03em;
  }
  .p-service-feature {
    padding: 15rem 0 5.5rem;
  }
  .p-service-feature.-algorithm .p-service-feature__desc {
    margin: 0;
  }
  .p-service-feature.-algorithm .p-service-feature__descTitle {
    margin: 0 0 2rem;
  }
  .p-service-feature.-algorithm .p-service-feature__list {
    margin: 11.8rem 0 0;
  }
  .p-service-feature.-staffing {
    padding: 14.4rem 0 25.15rem;
  }
  .p-service-feature.-staffing .p-service-feature__list {
    margin: 6rem 0 0;
  }
  .p-service-feature.-staffing .p-service-feature__item {
    padding: 0 0 3.8rem;
  }
  .p-service-feature.-staffing .p-service-feature__itemTitle {
    margin: 0 0 2rem;
    font-weight: 600;
    font-size: 2.6rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  .p-service-feature.-staffing .p-service-feature__itemText {
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  .p-service-feature__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -webkit-box-pack: justify;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: space-between;
  }
  .p-service-feature__body .l-section__heading {
    margin: 0.7rem 0 0;
  }
  .p-service-feature__desc {
    width: 53%;
    margin: 0;
  }
  .p-service-feature__desc .l-section__text {
    width: 98%;
    font-weight: 500;
    font-size: max(1.6rem, 12px);
    line-height: 2.2;
    letter-spacing: 0em;
  }
  .p-service-feature__descTitle {
    margin: 0 0 3.1rem;
    font-weight: 600;
    font-size: 4.2rem;
    line-height: 1.3095238095;
    letter-spacing: 0.05em;
  }
  .p-service-feature__list {
    -webkit-box-pack: justify;
    display: -webkit-box;
    display: flex;
            justify-content: space-between;
    width: 100%;
    margin: 9.3rem 0 0;
  }
  .p-service-feature__item {
    width: 29.5608108108%;
    padding: 0 0 4rem;
  }
  .p-service-feature__item:last-child {
    padding: 0 0 4rem;
  }
  .p-service-feature__itemTitle {
    margin: 0 0 1.8rem;
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 1.6;
    letter-spacing: 0em;
  }
  .p-service-feature__itemText {
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0em;
  }
  .p-service-feature__graph {
    margin: 9.1rem 2.6182432432% 0 1.097972973%;
  }
  .p-service-feature__graphList {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -webkit-box-pack: justify;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: space-between;
  }
  .p-service-feature__graphItem:first-child {
    width: 51.1403508772%;
  }
  .p-service-feature__graphItem:first-child .p-service-feature__graphItemImg {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
  }
  .p-service-feature__graphItem:first-child .p-service-feature__graphItemImg::before {
    display: block;
    padding-top: 104.72%;
    content: "";
  }
  .p-service-feature__graphItem:nth-child(2) {
    width: 45.2631578947%;
  }
  .p-service-feature__graphItem:nth-child(2) .p-service-feature__graphItemImg {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
  }
  .p-service-feature__graphItem:nth-child(2) .p-service-feature__graphItemImg::before {
    display: block;
    padding-top: 99.13%;
    content: "";
  }
  .p-service-feature__graphItemImg img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .p-service-case {
    padding: 5.5rem 0 15rem;
  }
  .p-service-case.-algorithm {
    padding: 9.5rem 0 15rem;
  }
  .p-service-case__slider {
    margin: 5.9rem 0 0;
    padding: 0 0 14.1rem;
  }
  .p-service-case__slider .splide__arrows {
    right: 0;
    left: auto;
  }
  .p-service-case__slider .splide__arrows .splide__arrow {
    width: 9rem;
    height: 9rem;
  }
  .p-service-case__slider .splide__arrows .splide__arrow::before {
    width: 3.2rem;
    height: 2.4rem;
  }
  .p-service-case__slider .splide__arrows .splide__arrow.splide__arrow--prev::before {
    background-image: url(../images/service/slider_arrow_pc.svg);
  }
  .p-service-case__slider .splide__arrows .splide__arrow.splide__arrow--next::before {
    background-image: url(../images/service/slider_arrow_pc.svg);
  }
  .p-service-case__sliderItemLink {
    padding: 0 0 2.9rem;
  }
  .p-service-case__sliderItemLink:hover .p-service-case__sliderItemImg img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .p-service-case__sliderItemTitle {
    margin: 5rem 0 0;
    font-weight: 600;
    font-size: 2.6rem;
    line-height: 1.6153846154;
    letter-spacing: 0em;
  }
  .p-service-case__sliderItemTitle::before {
    right: 0.5rem;
    width: 2.5rem;
    height: 2.4rem;
    background-image: url(../images/service/slider_title_arrow_pc.svg);
  }
  .p-service-value {
    padding: 15rem 0 18.4rem;
  }
  .p-service-value.-algorithm {
    padding: 15rem 0 14.7rem;
  }
  .p-service-value__list {
    margin: 2.1rem 0 0;
  }
  .p-service-value__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -webkit-box-pack: justify;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: space-between;
    padding: 3.5rem 0 2.2rem;
  }
  .p-service-value__itemHead {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -webkit-box-pack: start;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: flex-start;
    width: 30.9121621622%;
  }
  .p-service-value__itemNo {
    margin: 0.3rem 1.6rem 0 0;
    font-weight: 500;
    font-size: max(1.4rem, 12px);
    line-height: 1;
    letter-spacing: 0em;
  }
  .p-service-value__itemTitle {
    margin: 0;
    font-weight: 600;
    font-size: 2.1rem;
    line-height: 1.380952381;
    letter-spacing: 0em;
  }
  .p-service-value__itemDesc {
    width: 59.1216216216%;
  }
  .p-service-value__itemDesc .l-section__text {
    font-weight: 500;
    font-size: max(1.6rem, 12px);
    line-height: 2.2;
    letter-spacing: 0em;
  }
  .p-service-guide {
    padding: 21.1rem 0 13.5rem;
  }
  .p-service-guide.-algorithm {
    padding: 12rem 0 13.5rem;
  }
  .p-service-guide.-staffing {
    padding: 15.2rem 0 10.1rem;
  }
  .p-service-guide.-staffing .p-service-guide__flow {
    margin: 8.9rem 0 0;
  }
  .p-service-guide.-staffing .p-service-guide__flowImgWrap {
    padding: 0 16.1111111111vw 0 15vw;
  }
  .p-service-guide__flow {
    margin: 9rem 0 0;
  }
  .p-service-guide__flowImgWrap {
    padding: 0 0 0 4.6527777778vw;
  }
  .p-service-guide__flowDesc {
    width: 68.8888888889%;
    margin: 7.8rem auto 0;
    padding: 0;
  }
  .p-service-guide__flowTitle {
    font-weight: 600;
    font-size: 2.6rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-align: left;
  }
  .p-service-guide__flowList {
    margin: 1.5rem 0 0;
    padding: 4.4rem 3.5rem 4.3rem;
  }
  .p-service-guide__flowItem {
    color: #000;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 2;
    letter-spacing: 0em;
  }
  .p-service-guide__flowItem:not(:last-child) {
    margin: 0 0 0.8rem;
  }
  .p-service-method {
    padding: 0 0 14rem;
  }
  .p-service-method__list {
    margin: 2.1rem 0 0;
  }
  .p-service-method__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -webkit-box-pack: justify;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: space-between;
    padding: 3.5rem 0 2.1rem;
  }
  .p-service-method__itemHead {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -webkit-box-pack: start;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: flex-start;
    width: 30.9121621622%;
  }
  .p-service-method__itemNo {
    margin: 0.3rem 1.6rem 0 0;
    font-weight: 500;
    font-size: max(1.4rem, 12px);
    line-height: 1;
    letter-spacing: 0em;
  }
  .p-service-method__itemTitle {
    margin: 0;
    font-weight: 600;
    font-size: 2.1rem;
    line-height: 1.380952381;
    letter-spacing: 0em;
  }
  .p-service-method__itemDesc {
    width: 59.1216216216%;
  }
  .p-service-method__itemDesc .l-section__text br {
    display: none;
  }
  .p-works-summary {
    margin: 9.1rem 0 22.3rem;
  }
  .p-works-summary .c-pagination {
    width: 64.8648648649%;
  }
  .p-works-summary__inner {
    -webkit-box-pack: justify;
    display: -webkit-box;
    display: flex;
    position: relative;
    flex-wrap: wrap;
            justify-content: space-between;
    margin: 0 0 10rem;
  }
  .p-works-summary__catList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: start;
    display: -webkit-box;
    display: flex;
    position: sticky;
    top: 0;
            flex-direction: column;
            justify-content: flex-start;
    width: 26.097972973%;
    height: 100vh;
    margin: -15rem 0 0;
    padding: 15rem 0 0 0.9rem;
    text-indent: 0;
  }
  .p-works-summary__catItem {
    position: relative;
    padding: 0 0 0 2.5rem;
    text-align: left;
  }
  .p-works-summary__catItem:not(:last-child) {
    margin: 0 0 2rem;
  }
  .p-works-summary__catItem::before {
    -webkit-transform: translate(0%, 0%);
    position: absolute;
    top: 0.9rem;
    left: 0;
    width: 0.4rem;
    height: 0.4rem;
            transform: translate(0%, 0%);
    border-radius: 50%;
    background-color: #babfd0;
    content: "";
  }
  .p-works-summary__catItem.-current {
    color: #3d424b;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.095em;
  }
  .p-works-summary__catItem.-current::before {
    -webkit-transform: translate(0%, -50%);
    position: absolute;
    top: 50%;
    left: 0;
    width: 0.8rem;
    height: 0.8rem;
            transform: translate(0%, -50%);
    border-radius: 50%;
    background-color: #28a4df;
    content: "";
  }
  .p-works-summary__catItemLink {
    display: block;
    color: #3d424b;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.375;
    letter-spacing: 0em;
    text-align: left;
  }
  .p-works-summary__content {
    width: 64.8648648649%;
    margin: -4rem 0 0;
  }
  .p-works-summary__contentItem {
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
  }
  .p-works-summary__contentLink {
    padding: 4rem 0 4.7rem;
  }
  .p-works-summary__contentLink time {
    font-weight: 500;
    font-size: max(1.4rem, 12px);
    line-height: 1.2857142857;
    letter-spacing: 0em;
  }
  .p-works-summary__contentLink::before {
    -webkit-transition: width 0.8s ease;
    display: block;
    z-index: 1;
    position: absolute;
    bottom: -0.1rem;
    left: 0;
    width: 0;
    height: 1px;
    background: #28a4df;
    content: "";
    transition: width 0.8s ease;
  }
  .p-works-summary__contentLink:hover::before {
    width: 100%;
  }
  .p-works-summary__contentTitle {
    margin: 2rem 0 2.3rem;
  }
  .p-works-summary__contentTabList {
    padding: 0 4rem 0 0;
  }
  .p-works-summary__contentTabList::before {
    top: calc(50% + 0.2rem);
  }
  .p-works-summary__contentTabItem {
    font-weight: 600;
    font-size: max(1.4rem, 12px);
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  .p-works-summary__contentTabItem:not(:last-child) {
    margin: 0 1.6rem 0 0;
  }
  .p-works-detail {
    margin: 10.7rem 0 21rem;
  }
  .p-works-detail__inner {
    width: 75.6756756757%;
    margin: 0 8.1081081081% 0 auto;
  }
  .p-works-detail__head {
    padding: 0 0 3.8rem;
  }
  .p-works-detail__head time {
    font-weight: 500;
    font-size: max(1.4rem, 12px);
    line-height: 1.2857142857;
    letter-spacing: 0em;
  }
  .p-works-detail__title {
    margin: 1.8rem 0 2rem;
    font-weight: 600;
    font-size: 4.2rem;
    line-height: 1.5238095238;
    letter-spacing: 0em;
  }
  .p-works-detail__tag {
    font-weight: 500;
    font-size: max(1.4rem, 12px);
    line-height: 2;
    letter-spacing: 0em;
  }
  .p-works-detail__tag:not(:last-child) {
    margin: 0 3.65rem 0 0;
  }
  .p-works-detail__tag:last-child {
    margin: 0;
  }
  .p-works-detail__content {
    margin: 5rem 0 6rem;
    padding: 0 0 7rem;
  }
  .p-works-detail__contentBlock {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -webkit-box-pack: justify;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: space-between;
  }
  .p-works-detail__contentTitle {
    width: 22.3214285714%;
    font-weight: 500;
    font-size: 2.4rem;
    line-height: 2;
    letter-spacing: 0em;
  }
  .p-works-detail__contentTitle span {
    font-weight: 500;
    font-size: max(1.2rem, 12px);
    line-height: 1.25;
    letter-spacing: 0em;
  }
  .p-works-detail__contentText {
    width: 67.5223214286%;
    font-weight: 500;
    font-size: max(1.6rem, 12px);
    line-height: 1.8125;
    letter-spacing: 0em;
  }
  .p-works-detail__back span {
    font-weight: 500;
    font-size: 3rem;
    line-height: 1.2666666667;
    letter-spacing: 0em;
  }
  .p-works-detail__back span::before {
    bottom: -1rem;
  }
  .p-hero {
    padding: 25rem 0 0;
  }
  .p-hero__title {
    z-index: 1;
    position: relative;
  }
  .p-hero__title span.-jp span {
    font-weight: 500;
    font-size: max(1.6rem, 12px);
    line-height: 1;
    letter-spacing: 0em;
  }
  .p-hero__title span.-eng {
    margin: 1.5rem 0 0;
  }
  .p-hero__title span.-eng span {
    font-weight: 500;
    font-size: 8rem;
    line-height: 1;
    letter-spacing: 0em;
  }
  .u-only-sp {
    display: none;
  }
  .u-only-pc {
    display: block;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  html {
    font-size: 0.9765625vw;
  }
  .l-footer__contact {
    padding: 15rem 0;
  }
  .l-footer__contactBlock:not(:last-child) {
    margin: 0 0 5.6rem;
  }
  .l-footer__contactTel {
    display: block;
  }
  .l-footer__contactLink {
    width: 40rem;
    padding: 2.5rem 11.1rem 2.4rem 7.9rem;
  }
  .l-footer__navList {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -webkit-box-pack: start;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
    flex-wrap: wrap;
            align-items: flex-start;
            justify-content: flex-start;
  }
  .l-header {
    height: 12rem;
    padding: 3.5rem 4.8rem 3.5rem;
  }
  .l-menu-sub {
    -webkit-transform: translate(-50%, 0%);
    position: absolute;
    top: 0;
    left: 50%;
    width: 87.890625vw;
    max-width: 900px;
    margin: 0;
    padding: 3.9rem 0 0;
            transform: translate(-50%, 0%);
    cursor: pointer;
  }
  .p-home-business__sliderTitleJp .-text {
    font-weight: 600;
    font-size: max(1.3rem, 10px);
    line-height: 2.1538461538;
    letter-spacing: 0em;
  }
  .p-home-business__sliderTitleJp .-arrow {
    top: calc(50% - 0.25rem);
    width: 2.5rem;
    height: 2.4rem;
    background-image: url(../images/home/business_arrow_pc.svg);
  }
  .p-home-case__fixed {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: start;
    display: -webkit-box;
    display: flex;
    position: sticky;
    top: 0;
            flex-direction: column;
            justify-content: flex-start;
    width: 34.7222222222%;
    height: 100vh;
    margin: -15rem 0 0;
    padding: 15rem 0 0;
  }
  .p-home-case__listWrap {
    width: 60.7638888889%;
    margin: 2.2rem 0 0;
  }
  .p-home-kv__inner {
    position: absolute;
    top: 34.9rem;
    left: 6.8rem;
    margin: 0;
  }
  .p-home-kv__circleWrap {
    top: -50px;
    right: -25.6944444444vw;
    width: 76.8055555556vw;
    max-width: 1106px;
    height: 76.8055555556vw;
    max-height: 1106px;
  }
  .p-home-staffing__img {
    position: relative;
    width: 44.4444444444%;
    max-height: 724px;
    margin: -5rem 0 0;
    overflow: hidden;
  }
  .p-home-staffing__img::before {
    display: block;
    padding-top: 114.92%;
    content: "";
  }
  .p-home-staffing__content {
    width: 55.5555555556%;
    padding: 6rem 0 4.2rem;
    background-color: #fff;
  }
  .p-home-staffing__content .l-container {
    padding: 0 6rem 0 6.4rem;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}

@media screen and (min-width: 1025px) {
  .l-footer__contact {
    padding: 15rem 0 20.9rem;
  }
  .l-footer__contactInner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -webkit-box-pack: start;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: flex-start;
    margin: 6.8rem 0 0;
  }
  .l-footer__contactBlock {
    width: 50%;
    padding: 0 0 2rem;
  }
  .l-footer__contactBlock:not(:first-child) {
    padding: 0 0 0 7.1rem;
  }
  .l-footer__contactBlock:not(:last-child) {
    position: relative;
    margin: 0;
  }
  .l-footer__contactBlock:not(:last-child)::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #ededed;
    content: "";
  }
  .l-footer__contactTel {
    display: block;
    margin: 3.1rem 0 0;
  }
  .l-footer__contactLink {
    width: 40rem;
    margin: 0 0 0 2.5rem;
    padding: 2.5rem 11.1rem 2.4rem 7.9rem;
  }
  .l-footer__navList {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -webkit-box-pack: start;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
    flex-wrap: wrap;
            align-items: flex-start;
            justify-content: flex-start;
    margin: 0 -3.8rem 0 0;
  }
  .l-header {
    height: 12rem;
    padding: 3.5rem 5.4rem 3.5rem 6.4rem;
  }
  .p-home-business__sliderTitleJp .-text {
    font-weight: 600;
    font-size: max(1.6rem, 12px);
    line-height: 2.1875;
    letter-spacing: 0em;
  }
  .p-home-business__sliderTitleJp .-arrow {
    top: 50%;
    width: 2.5rem;
    height: 2.4rem;
    background-image: url(../images/home/business_arrow_pc.svg);
  }
  .p-home-case__fixed {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: start;
    display: -webkit-box;
    display: flex;
    position: sticky;
    top: 0;
            flex-direction: column;
            justify-content: flex-start;
    width: 24.3243243243%;
    height: 100vh;
    margin: -15rem 0 0;
    padding: 15rem 0 0;
  }
  .p-home-case__listWrap {
    width: 64.8648648649%;
    margin: 2.2rem 0 0;
  }
  .p-home-kv__inner {
    position: absolute;
    top: 34.9rem;
    left: 12.8rem;
    margin: 0;
  }
  .p-home-kv__circleWrap {
    top: -100px;
    right: -25.6944444444vw;
    width: 76.8055555556vw;
    max-width: 1106px;
    height: 76.8055555556vw;
    max-height: 1106px;
  }
  .p-home-staffing__img {
    position: relative;
    width: 50%;
    max-height: 724px;
    margin: -5rem 0 0;
    overflow: hidden;
  }
  .p-home-staffing__img::before {
    display: block;
    padding-top: 100.56%;
    content: "";
  }
  .p-home-staffing__content {
    width: 50%;
    padding: 16rem 0 14.2rem;
    background-color: #fff;
  }
  .p-home-staffing__content .l-container {
    padding: 0 12rem 0 12.8rem;
  }
  .p-service-lead.-staffing .p-service-lead__desc .l-section__headingText {
    white-space: nowrap;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1439px) {
  .l-menu-sub {
    -webkit-transform: translate(-50%, 0%);
    position: absolute;
    top: 0;
    left: 50%;
    width: 62.5434329395vw;
    max-width: 900px;
    margin: 0;
    padding: 3.9rem 0 0;
            transform: translate(-50%, 0%);
    cursor: pointer;
  }
}

@media screen and (min-width: 1440px) {
  .l-menu-sub {
    -webkit-transform: translate(-50%, 0%);
    position: absolute;
    top: 0;
    left: 50%;
    width: 48.6111111111vw;
    max-width: 700px;
    margin: 0;
    padding: 3.9rem 0 0;
            transform: translate(-50%, 0%);
    cursor: pointer;
  }
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .l-menu-sub__item:not(:last-child) {
    margin: 0 1.6rem 0 0;
  }
  .l-menu-sub__linkTitle {
    position: relative;
    margin: 2rem 0 0;
    color: #babfd0;
    font-weight: 500;
    font-size: max(1.1rem, 11px);
    line-height: 2.1818181818;
    letter-spacing: 0em;
  }
}

@media screen and (min-width: 1000px) {
  .l-menu-sub__item:not(:last-child) {
    margin: 0 3rem 0 0;
  }
  .l-menu-sub__linkTitle {
    position: relative;
    margin: 2rem 0 0;
    color: #babfd0;
    font-weight: 500;
    font-size: max(1.2rem, 12px);
    line-height: 2;
    letter-spacing: 0em;
  }
}

@media screen and (min-width: 1280px) {
  .p-company-profile__desc.-wrap {
    white-space: nowrap;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
/*# sourceMappingURL=style.css.map */